less copy protection, more size visualization
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

37057 lignes
932 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon"
  226. },
  227. "cougar": {
  228. name: "Cougar",
  229. parents: [
  230. "cat"
  231. ]
  232. },
  233. "goat": {
  234. name: "Goat",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "lion": {
  240. name: "Lion",
  241. parents: [
  242. "cat"
  243. ]
  244. },
  245. "harpy-eager": {
  246. name: "Harpy Eagle",
  247. parents: [
  248. "avian"
  249. ]
  250. },
  251. "deer": {
  252. name: "Deer",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "phoenix": {
  258. name: "Phoenix",
  259. parents: [
  260. "avian"
  261. ]
  262. },
  263. "aeromorph": {
  264. name: "Aeromorph",
  265. parents: [
  266. "machine"
  267. ]
  268. },
  269. "machine": {
  270. name: "Machine",
  271. },
  272. "android": {
  273. name: "Android",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "jackal": {
  279. name: "Jackal",
  280. parents: [
  281. "canine"
  282. ]
  283. },
  284. "corvid": {
  285. name: "Corvid",
  286. parents: [
  287. "avian"
  288. ]
  289. },
  290. "pharaoh-hound": {
  291. name: "Pharaoh Hound",
  292. parents: [
  293. "dog"
  294. ]
  295. },
  296. "skunk": {
  297. name: "Skunk",
  298. parents: [
  299. "mammal"
  300. ]
  301. },
  302. "shark": {
  303. name: "Shark",
  304. parents: [
  305. "fish"
  306. ]
  307. },
  308. "black-panther": {
  309. name: "Black Panther",
  310. parents: [
  311. "cat"
  312. ]
  313. },
  314. "umbra": {
  315. name: "Umbra",
  316. parents: [
  317. "animal"
  318. ]
  319. },
  320. "raven": {
  321. name: "Raven",
  322. parents: [
  323. "corvid"
  324. ]
  325. },
  326. "snow-leopard": {
  327. name: "Snow Leopard",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "barbary-lion": {
  333. name: "Barbary Lion",
  334. parents: [
  335. "lion"
  336. ]
  337. },
  338. "dra'gal": {
  339. name: "Dra'Gal",
  340. parents: [
  341. "mammal"
  342. ]
  343. },
  344. "german-shepherd": {
  345. name: "German Shepherd",
  346. parents: [
  347. "dog"
  348. ]
  349. },
  350. "bayleef": {
  351. name: "Bayleef",
  352. parents: [
  353. "pokemon"
  354. ]
  355. },
  356. "mouse": {
  357. name: "Mouse",
  358. parents: [
  359. "rodent"
  360. ]
  361. },
  362. "rat": {
  363. name: "Rat",
  364. parents: [
  365. "mammal"
  366. ]
  367. },
  368. "hoshiko-beast": {
  369. name: "Hoshiko Beast",
  370. parents: ["animal"]
  371. },
  372. "snow-jugani": {
  373. name: "Snow Jugani",
  374. parents: ["cat"]
  375. },
  376. "patamon": {
  377. name: "Patamon",
  378. parents: ["digimon"]
  379. },
  380. "digimon": {
  381. name: "Digimon",
  382. },
  383. "jugani": {
  384. name: "Jugani",
  385. parents: ["cat"]
  386. },
  387. "luxray": {
  388. name: "Luxray",
  389. parents: ["pokemon"]
  390. },
  391. "mech": {
  392. name: "Mech",
  393. parents: ["machine"]
  394. },
  395. "zoid": {
  396. name: "Zoid",
  397. parents: ["mech"]
  398. },
  399. "monster": {
  400. name: "Monster",
  401. parents: ["animal"]
  402. },
  403. "foo-dog": {
  404. name: "Foo Dog",
  405. parents: ["mammal"]
  406. },
  407. "elephant": {
  408. name: "Elephant",
  409. parents: ["mammal"]
  410. },
  411. "eagle": {
  412. name: "Eagle",
  413. parents: ["avian"]
  414. },
  415. "cow": {
  416. name: "Cow",
  417. parents: ["mammal"]
  418. },
  419. "crocodile": {
  420. name: "Crocodile",
  421. parents: ["reptile"]
  422. },
  423. "borzoi": {
  424. name: "Borzoi",
  425. parents: ["dog"]
  426. },
  427. "snake": {
  428. name: "Snake",
  429. parents: ["reptile"]
  430. },
  431. "horned-bush-viper": {
  432. name: "Horned Bush Viper",
  433. parents: ["snake"]
  434. },
  435. "cobra": {
  436. name: "Cobra",
  437. parents: ["snake"]
  438. },
  439. "harpy-eagle": {
  440. name: "Harpy Eagle",
  441. parents: ["eagle"]
  442. },
  443. "raptor": {
  444. name: "Raptor",
  445. parents: ["dinosaur"]
  446. },
  447. "dinosaur": {
  448. name: "Dinosaur",
  449. parents: ["reptile"]
  450. },
  451. "veilhound": {
  452. name: "Veilhound",
  453. parents: ["hellhound", "demon"]
  454. },
  455. "hellhound": {
  456. name: "Hellhound",
  457. parents: ["canine"]
  458. },
  459. "insect": {
  460. name: "Insect",
  461. parents: ["animal"]
  462. },
  463. "beetle": {
  464. name: "Beetle",
  465. parents: ["insect"]
  466. },
  467. "moth": {
  468. name: "Moth",
  469. parents: ["insect"]
  470. },
  471. "eastern-dragon": {
  472. name: "Eastern Dragon",
  473. parents: ["dragon"]
  474. },
  475. "jaguar": {
  476. name: "Jaguar",
  477. parents: ["cat"]
  478. },
  479. "horse": {
  480. name: "Horse",
  481. parents: ["mammal"]
  482. },
  483. "sergal": {
  484. name: "Sergal",
  485. parents: ["mammal"]
  486. },
  487. "gryphon": {
  488. name: "Gryphon",
  489. parents: ["lion", "eagle"]
  490. },
  491. "robot": {
  492. name: "Robot",
  493. parents: ["machine"]
  494. },
  495. "medihound": {
  496. name: "Medihound",
  497. parents: ["robot", "dog"]
  498. },
  499. "sylveon": {
  500. name: "Sylveon",
  501. parents: ["pokemon"]
  502. },
  503. "catgirl": {
  504. name: "Catgirl",
  505. parents: ["mammal"]
  506. },
  507. "cowgirl": {
  508. name: "Cowgirl",
  509. parents: ["mammal"]
  510. },
  511. "pony": {
  512. name: "Pony",
  513. parents: ["horse"]
  514. },
  515. "rabbit": {
  516. name: "Rabbit",
  517. parents: ["mammal"]
  518. },
  519. "fennec-fox": {
  520. name: "Fennec Fox",
  521. parents: ["fox"]
  522. },
  523. "azodian": {
  524. name: "Azodian",
  525. parents: ["mouse"]
  526. },
  527. "shiba-inu": {
  528. name: "Shiba Inu",
  529. parents: ["dog"]
  530. },
  531. "changeling": {
  532. name: "Changeling",
  533. parents: ["insect"]
  534. },
  535. "cheetah": {
  536. name: "Cheetah",
  537. parents: ["cat"]
  538. },
  539. "golden-jackal": {
  540. name: "Golden Jackal",
  541. parents: ["jackal"]
  542. },
  543. "manectric": {
  544. name: "Manectric",
  545. parents: ["pokemon"]
  546. },
  547. "rat": {
  548. name: "Rat",
  549. parents: ["rodent"]
  550. },
  551. "rodent": {
  552. name: "Rodent",
  553. parents: ["mammal"]
  554. },
  555. "octocoon": {
  556. name: "Octocoon",
  557. parents: ["raccoon", "octopus"]
  558. },
  559. "octopus": {
  560. name: "Octopus",
  561. parents: ["fish"]
  562. },
  563. "werewolf": {
  564. name: "Werewolf",
  565. parents: ["wolf"]
  566. },
  567. "meerkat": {
  568. name: "Meerkat",
  569. parents: ["mammal"]
  570. },
  571. "human": {
  572. name: "Human",
  573. parents: ["mammal"]
  574. },
  575. "geth": {
  576. name: "Geth",
  577. parents: ["android"]
  578. },
  579. "husky": {
  580. name: "Husky",
  581. parents: ["dog"]
  582. },
  583. "long-eared-bat": {
  584. name: "Long Eared Bat",
  585. parents: ["bat"]
  586. },
  587. "lizard": {
  588. name: "Lizard",
  589. parents: ["reptile"]
  590. },
  591. "salamander": {
  592. name: "Salamander",
  593. parents: ["lizard"]
  594. },
  595. "chameleon": {
  596. name: "Chameleon",
  597. parents: ["lizard"]
  598. },
  599. "gecko": {
  600. name: "Gecko",
  601. parents: ["lizard"]
  602. },
  603. "kobold": {
  604. name: "Kobold",
  605. parents: ["reptile"]
  606. },
  607. "charizard": {
  608. name: "Charizard",
  609. parents: ["pokemon"]
  610. },
  611. "lugia": {
  612. name: "Lugia",
  613. parents: ["pokemon"]
  614. },
  615. "cerberus": {
  616. name: "Cerberus",
  617. parents: ["dog"]
  618. },
  619. "tyrantrum": {
  620. name: "Tyrantrum",
  621. parents: ["pokemon"]
  622. },
  623. "lemur": {
  624. name: "Lemur",
  625. parents: ["mammal"]
  626. },
  627. "kelpie": {
  628. name: "Kelpie",
  629. parents: ["horse", "monster"]
  630. },
  631. "labrador": {
  632. name: "Labrador",
  633. parents: ["dog"]
  634. },
  635. "sylveon": {
  636. name: "Sylveon",
  637. parents: ["eeveelution"]
  638. },
  639. "eeveelution": {
  640. name: "Eeveelution",
  641. parents: ["pokemon"]
  642. },
  643. "polar-bear": {
  644. name: "Polar Bear",
  645. parents: ["bear"]
  646. },
  647. "bear": {
  648. name: "Bear",
  649. parents: ["mammal"]
  650. },
  651. "absol": {
  652. name: "Absol",
  653. parents: ["pokemon"]
  654. },
  655. "wolver": {
  656. name: "Wolver",
  657. parents: ["mammal"]
  658. },
  659. "rottweiler": {
  660. name: "Rottweiler",
  661. parents: ["dog"]
  662. },
  663. "zebra": {
  664. name: "Zebra",
  665. parents: ["horse"]
  666. },
  667. "yoshi": {
  668. name: "Yoshi",
  669. parents: ["lizard"]
  670. },
  671. "lynx": {
  672. name: "Lynx",
  673. parents: ["cat"]
  674. },
  675. "unknown": {
  676. name: "Unknown",
  677. parents: []
  678. },
  679. "thylacine": {
  680. name: "Thylacine",
  681. parents: ["mammal"]
  682. },
  683. "gabumon": {
  684. name: "Gabumon",
  685. parents: ["digimon"]
  686. },
  687. "border-collie": {
  688. name: "Border Collie",
  689. parents: ["dog"]
  690. },
  691. "imp": {
  692. name: "Imp",
  693. parents: ["demon"]
  694. },
  695. "kangaroo": {
  696. name: "Kangaroo",
  697. parents: ["mammal"]
  698. },
  699. "renamon": {
  700. name: "Renamon",
  701. parents: ["digimon"]
  702. },
  703. "candy-orca-dragon": {
  704. name: "Candy Orca Dragon",
  705. parents: ["fish", "dragon", "candy"]
  706. },
  707. "sabertooth-tiger": {
  708. name: "Sabertooth Tiger",
  709. parents: ["cat"]
  710. },
  711. "espurr": {
  712. name: "Espurr",
  713. parents: ["pokemon"]
  714. },
  715. "otter": {
  716. name: "Otter",
  717. parents: ["mammal"]
  718. },
  719. "elemental": {
  720. name: "Elemental",
  721. parents: ["mammal"]
  722. },
  723. "mew": {
  724. name: "Mew",
  725. parents: ["pokemon"]
  726. },
  727. "goodra": {
  728. name: "Goodra",
  729. parents: ["pokemon"]
  730. },
  731. "fairy": {
  732. name: "Fairy",
  733. parents: ["magical"]
  734. },
  735. "typhlosion": {
  736. name: "Typhlosion",
  737. parents: ["pokemon"]
  738. },
  739. "magical": {
  740. name: "Magical",
  741. parents: []
  742. },
  743. "xenomorph": {
  744. name: "Xenomorph",
  745. parents: ["monster", "alien"]
  746. },
  747. "charr": {
  748. name: "Charr",
  749. parents: ["cat"]
  750. },
  751. "siberian-husky": {
  752. name: "Siberian Husky",
  753. parents: ["husky"]
  754. },
  755. "alligator": {
  756. name: "Alligator",
  757. parents: ["reptile"]
  758. },
  759. "bernese-mountain-dog": {
  760. name: "Bernese Mountain Dog",
  761. parents: ["dog"]
  762. },
  763. "reshiram": {
  764. name: "Reshiram",
  765. parents: ["pokemon"]
  766. },
  767. "grizzly-bear": {
  768. name: "Grizzly Bear",
  769. parents: ["bear"]
  770. },
  771. "water-monitor": {
  772. name: "Water Monitor",
  773. parents: ["lizard"]
  774. },
  775. "banchofossa": {
  776. name: "Banchofossa",
  777. parents: ["mammal"]
  778. },
  779. "kirin": {
  780. name: "Kirin",
  781. parents: ["monster"]
  782. },
  783. "quilava": {
  784. name: "Quilava",
  785. parents: ["pokemon"]
  786. },
  787. "seviper": {
  788. name: "Seviper",
  789. parents: ["pokemon"]
  790. },
  791. "flying-fox": {
  792. name: "Flying Fox",
  793. parents: ["bat"]
  794. },
  795. "keynain": {
  796. name: "Keynain",
  797. parents: ["avian"]
  798. },
  799. "lucario": {
  800. name: "Lucario",
  801. parents: ["pokemon"]
  802. },
  803. "siamese-cat": {
  804. name: "Siamese Cat",
  805. parents: ["cat"]
  806. },
  807. "spider": {
  808. name: "Spider",
  809. parents: ["insect"]
  810. },
  811. "samurott": {
  812. name: "Samurott",
  813. parents: ["pokemon"]
  814. },
  815. "megalodon": {
  816. name: "Megalodon",
  817. parents: ["shark"]
  818. },
  819. "unicorn": {
  820. name: "Unicorn",
  821. parents: ["horse"]
  822. },
  823. "greninja": {
  824. name: "Greninja",
  825. parents: ["pokemon"]
  826. },
  827. "water-dragon": {
  828. name: "Water Dragon",
  829. parents: ["dragon"]
  830. },
  831. "cross-fox": {
  832. name: "Cross Fox",
  833. parents: ["fox"]
  834. },
  835. "synth": {
  836. name: "Synth",
  837. parents: ["machine"]
  838. },
  839. "construct": {
  840. name: "Construct",
  841. parents: []
  842. },
  843. "mexican-wolf": {
  844. name: "Mexican Wolf",
  845. parents: ["wolf"]
  846. },
  847. "leopard": {
  848. name: "Leopard",
  849. parents: ["cat"]
  850. },
  851. "pig": {
  852. name: "Pig",
  853. parents: ["mammal"]
  854. },
  855. "ampharos": {
  856. name: "Ampharos",
  857. parents: ["pokemon"]
  858. },
  859. "orca": {
  860. name: "Orca",
  861. parents: ["fish"]
  862. },
  863. "lycanroc": {
  864. name: "Lycanroc",
  865. parents: ["pokemon"]
  866. },
  867. "surkanu": {
  868. name: "Surkanu",
  869. parents: ["monster"]
  870. },
  871. "seal": {
  872. name: "Seal",
  873. parents: ["mammal"]
  874. },
  875. "keldeo": {
  876. name: "Keldeo",
  877. parents: ["pokemon"]
  878. },
  879. "great-dane": {
  880. name: "Great Dane",
  881. parents: ["dog"]
  882. },
  883. "black-backed-jackal": {
  884. name: "Black Backed Jackal",
  885. parents: ["jackal"]
  886. },
  887. "sheep": {
  888. name: "Sheep",
  889. parents: ["mammal"]
  890. },
  891. "leopard-seal": {
  892. name: "Leopard Seal",
  893. parents: ["seal"]
  894. },
  895. "zoroark": {
  896. name: "Zoroark",
  897. parents: ["pokemon"]
  898. },
  899. "maned-wolf": {
  900. name: "Maned Wolf",
  901. parents: ["canine"]
  902. },
  903. "dracha": {
  904. name: "Dracha",
  905. parents: ["dragon"]
  906. },
  907. "wolxi": {
  908. name: "Wolxi",
  909. parents: ["mammal", "alien"]
  910. },
  911. "dratini": {
  912. name: "Dratini",
  913. parents: ["pokemon", "dragon"]
  914. },
  915. "skaven": {
  916. name: "Skaven",
  917. parents: ["rat"]
  918. },
  919. "mongoose": {
  920. name: "Mongoose",
  921. parents: ["mammal"]
  922. },
  923. "lopunny": {
  924. name: "Lopunny",
  925. parents: ["pokemon", "rabbit"]
  926. },
  927. "feraligatr": {
  928. name: "Feraligatr",
  929. parents: ["pokemon", "alligator"]
  930. },
  931. "houndoom": {
  932. name: "Houndoom",
  933. parents: ["pokemon", "dog"]
  934. },
  935. "protogen": {
  936. name: "Protogen",
  937. parents: ["machine"]
  938. },
  939. "saint-bernard": {
  940. name: "Saint Bernard",
  941. parents: ["dog"]
  942. },
  943. "crow": {
  944. name: "Crow",
  945. parents: ["corvid"]
  946. },
  947. "delphox": {
  948. name: "Delphox",
  949. parents: ["pokemon", "fox"]
  950. },
  951. "moose": {
  952. name: "Moose",
  953. parents: ["mammal"]
  954. },
  955. "joraxian": {
  956. name: "Joraxian",
  957. parents: ["monster", "canine", "demon"]
  958. },
  959. "nimbat": {
  960. name: "Nimbat",
  961. parents: ["mammal"]
  962. },
  963. "aardwolf": {
  964. name: "Aardwolf",
  965. parents: ["canine"]
  966. },
  967. "fluudrani": {
  968. name: "Fluudrani",
  969. parents: ["animal"]
  970. },
  971. "arcanine": {
  972. name: "Arcanine",
  973. parents: ["pokemon", "dog"]
  974. },
  975. "inteleon": {
  976. name: "Inteleon",
  977. parents: ["pokemon", "fish"]
  978. },
  979. "ninetales": {
  980. name: "Ninetales",
  981. parents: ["pokemon", "kitsune"]
  982. },
  983. "tigrex": {
  984. name: "Tigrex",
  985. parents: ["tiger"]
  986. },
  987. "zorua": {
  988. name: "Zorua",
  989. parents: ["pokemon", "fox"]
  990. },
  991. "vulpix": {
  992. name: "Vulpix",
  993. parents: ["pokemon", "fox"]
  994. },
  995. "barghest": {
  996. name: "Barghest",
  997. parents: ["monster"]
  998. },
  999. "gray-wolf": {
  1000. name: "Gray Wolf",
  1001. parents: ["wolf"]
  1002. },
  1003. "ruppells-fox": {
  1004. name: "Rüppell's Fox",
  1005. parents: ["fox"]
  1006. },
  1007. "bull-terrier": {
  1008. name: "Bull Terrier",
  1009. parents: ["dog"]
  1010. },
  1011. "european-honey-buzzard": {
  1012. name: "European Honey Buzzard",
  1013. parents: ["avian"]
  1014. },
  1015. "t-rex": {
  1016. name: "T Rex",
  1017. parents: ["dinosaur"]
  1018. },
  1019. "mactarian": {
  1020. name: "Mactarian",
  1021. parents: ["shark", "monster"]
  1022. },
  1023. "mewtwo-y": {
  1024. name: "Mewtwo Y",
  1025. parents: ["mewtwo"]
  1026. },
  1027. "mewtwo": {
  1028. name: "Mewtwo",
  1029. parents: ["pokemon"]
  1030. },
  1031. "mew": {
  1032. name: "Mew",
  1033. parents: ["pokemon"]
  1034. },
  1035. "eevee": {
  1036. name: "Eevee",
  1037. parents: ["eeveelution"]
  1038. },
  1039. "mienshao": {
  1040. name: "Mienshao",
  1041. parents: ["pokemon"]
  1042. },
  1043. "sugar-glider": {
  1044. name: "Sugar Glider",
  1045. parents: ["opossum"]
  1046. },
  1047. "spectral-bat": {
  1048. name: "Spectral Bat",
  1049. parents: ["bat"]
  1050. },
  1051. "scolipede": {
  1052. name: "Scolipede",
  1053. parents: ["pokemon", "insect"]
  1054. },
  1055. "jackalope": {
  1056. name: "Jackalope",
  1057. parents: ["rabbit", "antelope"]
  1058. },
  1059. "caracal": {
  1060. name: "Caracal",
  1061. parents: ["cat"]
  1062. },
  1063. "stoat": {
  1064. name: "Stoat",
  1065. parents: ["mammal"]
  1066. },
  1067. "african-golden-cat": {
  1068. name: "African Golden Cat",
  1069. parents: ["cat"]
  1070. },
  1071. "gigantosaurus": {
  1072. name: "Gigantosaurus",
  1073. parents: ["dinosaur"]
  1074. },
  1075. "zorgoia": {
  1076. name: "Zorgoia",
  1077. parents: ["mammal"]
  1078. },
  1079. "monitor-lizard": {
  1080. name: "Monitor Lizard",
  1081. parents: ["lizard"]
  1082. },
  1083. "ziralkia": {
  1084. name: "Ziralkia",
  1085. parents: ["mammal"]
  1086. },
  1087. "kiiasi": {
  1088. name: "Kiiasi",
  1089. parents: ["animal"]
  1090. },
  1091. "synx": {
  1092. name: "Synx",
  1093. parents: ["monster"]
  1094. },
  1095. "panther": {
  1096. name: "Panther",
  1097. parents: ["cat"]
  1098. },
  1099. "azumarill": {
  1100. name: "Azumarill",
  1101. parents: ["pokemon"]
  1102. },
  1103. "river-snaptail": {
  1104. name: "River Snaptail",
  1105. parents: ["otter", "crocodile"]
  1106. },
  1107. "great-blue-heron": {
  1108. name: "Great Blue Heron",
  1109. parents: ["avian"]
  1110. },
  1111. "smeargle": {
  1112. name: "Smeargle",
  1113. parents: ["pokemon"]
  1114. },
  1115. "vendeilen": {
  1116. name: "Vendeilen",
  1117. parents: ["monster"]
  1118. },
  1119. "ventura": {
  1120. name: "Ventura",
  1121. parents: ["canine"]
  1122. },
  1123. "clouded-leopard": {
  1124. name: "Clouded Leopard",
  1125. parents: ["leopard"]
  1126. },
  1127. "argonian": {
  1128. name: "Argonian",
  1129. parents: ["lizard"]
  1130. },
  1131. "salazzle": {
  1132. name: "Salazzle",
  1133. parents: ["pokemon", "lizard"]
  1134. },
  1135. "je-stoff-drachen": {
  1136. name: "Je-Stoff Drachen",
  1137. parents: ["dragon"]
  1138. },
  1139. "finnish-spitz-dog": {
  1140. name: "Finnish Spitz Dog",
  1141. parents: ["dog"]
  1142. },
  1143. "gray-fox": {
  1144. name: "Gray Fox",
  1145. parents: ["fox"]
  1146. },
  1147. "opossum": {
  1148. name: "opossum",
  1149. parents: ["mammal"]
  1150. },
  1151. "antelope": {
  1152. name: "Antelope",
  1153. parents: ["mammal"]
  1154. },
  1155. "weavile": {
  1156. name: "Weavile",
  1157. parents: ["pokemon"]
  1158. },
  1159. "pikachu": {
  1160. name: "Pikachu",
  1161. parents: ["pokemon", "mouse"]
  1162. },
  1163. "grovyle": {
  1164. name: "Grovyle",
  1165. parents: ["pokemon", "plant"]
  1166. },
  1167. "sthara": {
  1168. name: "Sthara",
  1169. parents: ["snow-leopard", "reptile"]
  1170. },
  1171. "star-warrior": {
  1172. name: "Star Warrior",
  1173. parents: ["magical"]
  1174. },
  1175. "dragonoid": {
  1176. name: "Dragonoid",
  1177. parents: ["dragon"]
  1178. },
  1179. "suicune": {
  1180. name: "Suicune",
  1181. parents: ["pokemon"]
  1182. },
  1183. "vole": {
  1184. name: "Vole",
  1185. parents: ["mammal"]
  1186. },
  1187. "blaziken": {
  1188. name: "Blaziken",
  1189. parents: ["pokemon", "avian"]
  1190. },
  1191. "buizel": {
  1192. name: "Buizel",
  1193. parents: ["pokemon", "fish"]
  1194. },
  1195. "floatzel": {
  1196. name: "Floatzel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "umok": {
  1200. name: "Umok",
  1201. parents: ["avian"]
  1202. },
  1203. "sea-monster": {
  1204. name: "Sea Monster",
  1205. parents: ["monster", "fish"]
  1206. },
  1207. "egyptian-vulture": {
  1208. name: "Egyptian Vulture",
  1209. parents: ["avian"]
  1210. },
  1211. "doberman": {
  1212. name: "Doberman",
  1213. parents: ["dog"]
  1214. },
  1215. "zangoose": {
  1216. name: "Zangoose",
  1217. parents: ["pokemon", "mongoose"]
  1218. },
  1219. "mongoose": {
  1220. name: "Mongoose",
  1221. parents: ["mammal"]
  1222. },
  1223. "wickerbeast": {
  1224. name: "Wickerbeast",
  1225. parents: ["monster"]
  1226. },
  1227. "zenari": {
  1228. name: "Zenari",
  1229. parents: ["lizard"]
  1230. },
  1231. "plant": {
  1232. name: "Plant",
  1233. parents: []
  1234. },
  1235. "raskatox": {
  1236. name: "Raskatox",
  1237. parents: ["raccoon", "skunk", "cat", "fox"]
  1238. },
  1239. "mikromare": {
  1240. name: "mikromare",
  1241. parents: ["alien"]
  1242. },
  1243. "alien": {
  1244. name: "Alien",
  1245. parents: ["animal"]
  1246. },
  1247. "deity": {
  1248. name: "Deity",
  1249. parents: []
  1250. },
  1251. "skarlan": {
  1252. name: "Skarlan",
  1253. parents: ["slug", "dragon"]
  1254. },
  1255. "slug": {
  1256. name: "Slug",
  1257. parents: ["mollusk"]
  1258. },
  1259. "mollusk": {
  1260. name: "Mollusk",
  1261. parents: ["animal"]
  1262. },
  1263. "chimera": {
  1264. name: "Chimera",
  1265. parents: ["monster"]
  1266. },
  1267. "gestalt": {
  1268. name: "Gestalt",
  1269. parents: ["construct"]
  1270. },
  1271. "mimic": {
  1272. name: "Mimic",
  1273. parents: ["monster"]
  1274. },
  1275. "calico-rat": {
  1276. name: "Calico Rat",
  1277. parents: ["rat"]
  1278. },
  1279. "panda": {
  1280. name: "Panda",
  1281. parents: ["mammal"]
  1282. },
  1283. "oni": {
  1284. name: "Oni",
  1285. parents: ["monster"]
  1286. },
  1287. "pegasus": {
  1288. name: "Pegasus",
  1289. parents: ["horse"]
  1290. },
  1291. "vulpera": {
  1292. name: "Vulpera",
  1293. parents: ["fennec-fox"]
  1294. },
  1295. "ceratosaurus": {
  1296. name: "Ceratosaurus",
  1297. parents: ["dinosaur"]
  1298. },
  1299. "nykur": {
  1300. name: "Nykur",
  1301. parents: ["horse", "monster"]
  1302. },
  1303. "giraffe": {
  1304. name: "Giraffe",
  1305. parents: ["mammal"]
  1306. },
  1307. "tauren": {
  1308. name: "Tauren",
  1309. parents: ["cow"]
  1310. },
  1311. "draconi": {
  1312. name: "Draconi",
  1313. parents: ["alien", "cat", "cyborg"]
  1314. },
  1315. "dire-wolf": {
  1316. name: "Dire Wolf",
  1317. parents: ["wolf"]
  1318. },
  1319. "ferromorph": {
  1320. name: "Ferromorph",
  1321. parents: ["construct"]
  1322. },
  1323. "meowth": {
  1324. name: "Meowth",
  1325. parents: ["cat", "pokemon"]
  1326. },
  1327. "pavodragon": {
  1328. name: "Pavodragon",
  1329. parents: ["dragon"]
  1330. },
  1331. "aaltranae": {
  1332. name: "Aaltranae",
  1333. parents: ["dragon"]
  1334. },
  1335. "cyborg": {
  1336. name: "Cyborg",
  1337. parents: ["machine"]
  1338. },
  1339. "draptor": {
  1340. name: "Draptor",
  1341. parents: ["dragon"]
  1342. },
  1343. "candy": {
  1344. name: "Candy",
  1345. parents: []
  1346. },
  1347. "drenath": {
  1348. name: "Drenath",
  1349. parents: ["dragon", "snake", "rabbit"]
  1350. },
  1351. "coyju": {
  1352. name: "Coyju",
  1353. parents: ["coyote", "kaiju"]
  1354. },
  1355. "kaiju": {
  1356. name: "Kaiju",
  1357. parents: ["monster"]
  1358. },
  1359. "nickit": {
  1360. name: "Nickit",
  1361. parents: ["pokemon", "cat"]
  1362. },
  1363. "lopunny": {
  1364. name: "Lopunny",
  1365. parents: ["pokemon", "rabbit"]
  1366. },
  1367. "korean-jindo-dog": {
  1368. name: "Korean Jindo Dog",
  1369. parents: ["dog"]
  1370. },
  1371. "naga": {
  1372. name: "Naga",
  1373. parents: ["snake", "monster"]
  1374. },
  1375. "undead": {
  1376. name: "Undead",
  1377. parents: ["monster"]
  1378. },
  1379. "whale": {
  1380. name: "Whale",
  1381. parents: ["fish"]
  1382. },
  1383. "gelato-bee": {
  1384. name: "Gelato Bee",
  1385. parents: ["bee"]
  1386. },
  1387. "bee": {
  1388. name: "Bee",
  1389. parents: ["insect"]
  1390. },
  1391. "gardevoir": {
  1392. name: "Gardevoir",
  1393. parents: ["pokemon"]
  1394. },
  1395. "ant": {
  1396. name: "Ant",
  1397. parents: ["insect"]
  1398. },
  1399. "frog": {
  1400. name: "Frog",
  1401. parents: ["amphibian"]
  1402. },
  1403. "amphibian": {
  1404. name: "Amphibian",
  1405. parents: ["animal"]
  1406. },
  1407. "pangolin": {
  1408. name: "Pangolin",
  1409. parents: ["mammal"]
  1410. },
  1411. "uragi'viidorn": {
  1412. name: "Uragi'viidorn",
  1413. parents: ["avian", "bear"]
  1414. },
  1415. "gryphdelphais": {
  1416. name: "Gryphdelphais",
  1417. parents: ["dolphin", "gryphon"]
  1418. },
  1419. "plush": {
  1420. name: "Plush",
  1421. parents: ["construct"]
  1422. },
  1423. "draiger": {
  1424. name: "Draiger",
  1425. parents: ["dragon","tiger"]
  1426. },
  1427. "foxsky": {
  1428. name: "Foxsky",
  1429. parents: ["fox", "husky"]
  1430. },
  1431. "umbreon": {
  1432. name: "Umbreon",
  1433. parents: ["eeveelution"]
  1434. },
  1435. "slime-dragon": {
  1436. name: "Slime Dragon",
  1437. parents: ["dragon"]
  1438. },
  1439. "enderman": {
  1440. name: "Enderman",
  1441. parents: ["monster"]
  1442. },
  1443. "gremlin": {
  1444. name: "Gremlin",
  1445. parents: ["monster"]
  1446. },
  1447. "dragonsune": {
  1448. name: "Dragonsune",
  1449. parents: ["dragon", "kitsune"]
  1450. },
  1451. "ghost": {
  1452. name: "Ghost",
  1453. parents: ["monster"]
  1454. },
  1455. "false-vampire-bat": {
  1456. name: "False Vampire Bat",
  1457. parents: ["bat"]
  1458. },
  1459. "succubus": {
  1460. name: "Succubus",
  1461. parents: ["demon"]
  1462. },
  1463. "mia": {
  1464. name: "Mia",
  1465. parents: ["canine"]
  1466. },
  1467. "rainbow": {
  1468. name: "Rainbow",
  1469. parents: ["monster"]
  1470. },
  1471. "solgaleo": {
  1472. name: "Solgaleo",
  1473. parents: ["pokemon"]
  1474. },
  1475. "lucent-nargacuga": {
  1476. name: "Lucent Nargacuga",
  1477. parents: ["monster-hunter"]
  1478. },
  1479. "monster-hunter": {
  1480. name: "Monster Hunter",
  1481. parents: ["monster"]
  1482. },
  1483. "leviathan": {
  1484. "name": "Leviathan",
  1485. "url": "sea-monster"
  1486. },
  1487. "bull": {
  1488. name: "Bull",
  1489. parents: ["mammal"]
  1490. },
  1491. "tanuki": {
  1492. name: "Tanuki",
  1493. parents: ["monster"]
  1494. },
  1495. "chakat": {
  1496. name: "Chakat",
  1497. parents: ["cat"]
  1498. },
  1499. "hydra": {
  1500. name: "Hydra",
  1501. parents: ["monster"]
  1502. },
  1503. "zigzagoon": {
  1504. name: "Zigzagoon",
  1505. parents: ["raccoon", "pokemon"]
  1506. },
  1507. "vulture": {
  1508. name: "Vulture",
  1509. parents: ["avian"]
  1510. },
  1511. "eastern-dragon": {
  1512. name: "Eastern Dragon",
  1513. parents: ["dragon"]
  1514. },
  1515. "gryffon": {
  1516. name: "Gryffon",
  1517. parents: ["phoenix", "red-panda"]
  1518. },
  1519. "amtsvane": {
  1520. name: "Amtsvane",
  1521. parents: ["reptile"]
  1522. },
  1523. "kigavi": {
  1524. name: "Kigavi",
  1525. parents: ["avian"]
  1526. },
  1527. "turian": {
  1528. name: "Turian",
  1529. parents: ["avian"]
  1530. },
  1531. "zeraora": {
  1532. name: "Zeraora",
  1533. parents: ["pokemon"]
  1534. },
  1535. "sandshrew": {
  1536. name: "Sandshrew",
  1537. parents: ["pokemon", "pangolin"]
  1538. },
  1539. "valais-blacknose-sheep": {
  1540. name: "Valais Blacknose Sheep",
  1541. parents: ["sheep"]
  1542. },
  1543. "novaleit": {
  1544. name: "Novaleit",
  1545. parents: ["mammal"]
  1546. },
  1547. "dunnoh": {
  1548. name: "Dunnoh",
  1549. parents: ["mammal"]
  1550. },
  1551. "lunaral-dragon": {
  1552. name: "Lunaral Dragon",
  1553. parents: ["dragon"]
  1554. },
  1555. "arctic-wolf": {
  1556. name: "Arctic Wolf",
  1557. parents: ["wolf"]
  1558. },
  1559. "donkey": {
  1560. name: "Donkey",
  1561. parents: ["horse"]
  1562. },
  1563. "chinchilla": {
  1564. name: "Chinchilla",
  1565. parents: ["rodent"]
  1566. },
  1567. "felkin": {
  1568. name: "Felkin",
  1569. parents: ["dragon"]
  1570. },
  1571. "tykeriel": {
  1572. name: "Tykeriel",
  1573. parents: ["avian"]
  1574. },
  1575. "folf": {
  1576. name: "Folf",
  1577. parents: ["fox", "wolf"]
  1578. },
  1579. "pooltoy": {
  1580. name: "Pooltoy",
  1581. parents: ["construct"]
  1582. },
  1583. "demi": {
  1584. name: "Demi",
  1585. parents: ["human"]
  1586. },
  1587. "stegosaurus": {
  1588. name: "Stegosaurus",
  1589. parents: ["dinosaur"]
  1590. },
  1591. "computer-virus": {
  1592. name: "Computer Virus",
  1593. parents: ["program"]
  1594. },
  1595. "program": {
  1596. name: "Program",
  1597. parents: ["construct"]
  1598. },
  1599. }
  1600. //species
  1601. function getSpeciesInfo(speciesList) {
  1602. let result = new Set();
  1603. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1604. result.add(entry)
  1605. });
  1606. return Array.from(result);
  1607. };
  1608. function getSpeciesInfoHelper(species) {
  1609. if (!speciesData[species]) {
  1610. console.warn(species + " doesn't exist");
  1611. return [];
  1612. }
  1613. if (speciesData[species].parents) {
  1614. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1615. } else {
  1616. return [species];
  1617. }
  1618. }
  1619. characterMakers.push(() => makeCharacter(
  1620. {
  1621. name: "Fen",
  1622. species: ["crux"],
  1623. description: {
  1624. title: "Bio",
  1625. text: "Very furry. Sheds on everything."
  1626. },
  1627. tags: [
  1628. "anthro",
  1629. "goo"
  1630. ]
  1631. },
  1632. {
  1633. back: {
  1634. height: math.unit(2.2428, "meter"),
  1635. weight: math.unit(124.738, "kg"),
  1636. name: "Back",
  1637. image: {
  1638. source: "./media/characters/fen/back.svg",
  1639. extra: 2024 / 1867,
  1640. bottom: 13 / 2037
  1641. },
  1642. info: {
  1643. description: {
  1644. mode: "append",
  1645. text: "\n\nHe is not currently looking at you."
  1646. }
  1647. }
  1648. },
  1649. full: {
  1650. height: math.unit(1.34, "meter"),
  1651. weight: math.unit(225, "kg"),
  1652. name: "Full",
  1653. image: {
  1654. source: "./media/characters/fen/full.svg"
  1655. },
  1656. info: {
  1657. description: {
  1658. mode: "append",
  1659. text: "\n\nMunch."
  1660. }
  1661. }
  1662. },
  1663. kneeling: {
  1664. height: math.unit(5.4, "feet"),
  1665. weight: math.unit(124.738, "kg"),
  1666. name: "Kneeling",
  1667. image: {
  1668. source: "./media/characters/fen/kneeling.svg",
  1669. extra: 563 / 507
  1670. }
  1671. },
  1672. goo: {
  1673. height: math.unit(2.8, "feet"),
  1674. weight: math.unit(125, "kg"),
  1675. capacity: math.unit(1, "people"),
  1676. name: "Goo",
  1677. image: {
  1678. source: "./media/characters/fen/goo.svg",
  1679. bottom: 116 / 613
  1680. }
  1681. },
  1682. lounging: {
  1683. height: math.unit(6.5, "feet"),
  1684. weight: math.unit(125, "kg"),
  1685. name: "Lounging",
  1686. image: {
  1687. source: "./media/characters/fen/lounging.svg"
  1688. }
  1689. },
  1690. },
  1691. [
  1692. {
  1693. name: "Normal",
  1694. height: math.unit(2.2428, "meter")
  1695. },
  1696. {
  1697. name: "Big",
  1698. height: math.unit(12, "feet")
  1699. },
  1700. {
  1701. name: "Minimacro",
  1702. height: math.unit(40, "feet"),
  1703. default: true,
  1704. info: {
  1705. description: {
  1706. mode: "append",
  1707. text: "\n\nTOO DAMN BIG"
  1708. }
  1709. }
  1710. },
  1711. {
  1712. name: "Macro",
  1713. height: math.unit(100, "feet"),
  1714. info: {
  1715. description: {
  1716. mode: "append",
  1717. text: "\n\nTOO DAMN BIG"
  1718. }
  1719. }
  1720. },
  1721. {
  1722. name: "Macro+",
  1723. height: math.unit(300, "feet")
  1724. },
  1725. {
  1726. name: "Megamacro",
  1727. height: math.unit(2, "miles")
  1728. }
  1729. ]
  1730. ))
  1731. characterMakers.push(() => makeCharacter(
  1732. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1733. {
  1734. front: {
  1735. height: math.unit(183, "cm"),
  1736. weight: math.unit(80, "kg"),
  1737. name: "Front",
  1738. image: {
  1739. source: "./media/characters/sofia-fluttertail/front.svg",
  1740. bottom: 0.01,
  1741. extra: 2154 / 2081
  1742. }
  1743. },
  1744. frontAlt: {
  1745. height: math.unit(183, "cm"),
  1746. weight: math.unit(80, "kg"),
  1747. name: "Front (alt)",
  1748. image: {
  1749. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1750. }
  1751. },
  1752. back: {
  1753. height: math.unit(183, "cm"),
  1754. weight: math.unit(80, "kg"),
  1755. name: "Back",
  1756. image: {
  1757. source: "./media/characters/sofia-fluttertail/back.svg"
  1758. }
  1759. },
  1760. kneeling: {
  1761. height: math.unit(125, "cm"),
  1762. weight: math.unit(80, "kg"),
  1763. name: "Kneeling",
  1764. image: {
  1765. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1766. extra: 1033 / 977,
  1767. bottom: 23.7 / 1057
  1768. }
  1769. },
  1770. maw: {
  1771. height: math.unit(183 / 5, "cm"),
  1772. name: "Maw",
  1773. image: {
  1774. source: "./media/characters/sofia-fluttertail/maw.svg"
  1775. }
  1776. },
  1777. mawcloseup: {
  1778. height: math.unit(183 / 5 * 0.41, "cm"),
  1779. name: "Maw (Closeup)",
  1780. image: {
  1781. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1782. }
  1783. },
  1784. paws: {
  1785. height: math.unit(1.17, "feet"),
  1786. name: "Paws",
  1787. image: {
  1788. source: "./media/characters/sofia-fluttertail/paws.svg",
  1789. extra: 851 / 851,
  1790. bottom: 17 / 868
  1791. }
  1792. },
  1793. },
  1794. [
  1795. {
  1796. name: "Normal",
  1797. height: math.unit(1.83, "meter")
  1798. },
  1799. {
  1800. name: "Size Thief",
  1801. height: math.unit(18, "feet")
  1802. },
  1803. {
  1804. name: "50 Foot Collie",
  1805. height: math.unit(50, "feet")
  1806. },
  1807. {
  1808. name: "Macro",
  1809. height: math.unit(96, "feet"),
  1810. default: true
  1811. },
  1812. {
  1813. name: "Megamerger",
  1814. height: math.unit(650, "feet")
  1815. },
  1816. ]
  1817. ))
  1818. characterMakers.push(() => makeCharacter(
  1819. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1820. {
  1821. front: {
  1822. height: math.unit(7, "feet"),
  1823. weight: math.unit(100, "kg"),
  1824. name: "Front",
  1825. image: {
  1826. source: "./media/characters/march/front.svg",
  1827. extra: 1,
  1828. bottom: 0.015
  1829. }
  1830. },
  1831. foot: {
  1832. height: math.unit(0.9, "feet"),
  1833. name: "Foot",
  1834. image: {
  1835. source: "./media/characters/march/foot.svg"
  1836. }
  1837. },
  1838. },
  1839. [
  1840. {
  1841. name: "Normal",
  1842. height: math.unit(7.9, "feet")
  1843. },
  1844. {
  1845. name: "Macro",
  1846. height: math.unit(220, "meters")
  1847. },
  1848. {
  1849. name: "Megamacro",
  1850. height: math.unit(2.98, "km"),
  1851. default: true
  1852. },
  1853. {
  1854. name: "Gigamacro",
  1855. height: math.unit(15963, "km")
  1856. },
  1857. {
  1858. name: "Teramacro",
  1859. height: math.unit(2980000000, "km")
  1860. },
  1861. {
  1862. name: "Examacro",
  1863. height: math.unit(250, "parsecs")
  1864. },
  1865. ]
  1866. ))
  1867. characterMakers.push(() => makeCharacter(
  1868. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1869. {
  1870. front: {
  1871. height: math.unit(6, "feet"),
  1872. weight: math.unit(60, "kg"),
  1873. name: "Front",
  1874. image: {
  1875. source: "./media/characters/noir/front.svg",
  1876. extra: 1,
  1877. bottom: 0.032
  1878. }
  1879. },
  1880. },
  1881. [
  1882. {
  1883. name: "Normal",
  1884. height: math.unit(6.6, "feet")
  1885. },
  1886. {
  1887. name: "Macro",
  1888. height: math.unit(500, "feet")
  1889. },
  1890. {
  1891. name: "Megamacro",
  1892. height: math.unit(2.5, "km"),
  1893. default: true
  1894. },
  1895. {
  1896. name: "Gigamacro",
  1897. height: math.unit(22500, "km")
  1898. },
  1899. {
  1900. name: "Teramacro",
  1901. height: math.unit(2500000000, "km")
  1902. },
  1903. {
  1904. name: "Examacro",
  1905. height: math.unit(200, "parsecs")
  1906. },
  1907. ]
  1908. ))
  1909. characterMakers.push(() => makeCharacter(
  1910. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1911. {
  1912. front: {
  1913. height: math.unit(7, "feet"),
  1914. weight: math.unit(100, "kg"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/okuri/front.svg",
  1918. extra: 1,
  1919. bottom: 0.037
  1920. }
  1921. },
  1922. back: {
  1923. height: math.unit(7, "feet"),
  1924. weight: math.unit(100, "kg"),
  1925. name: "Back",
  1926. image: {
  1927. source: "./media/characters/okuri/back.svg",
  1928. extra: 1,
  1929. bottom: 0.007
  1930. }
  1931. },
  1932. },
  1933. [
  1934. {
  1935. name: "Megamacro",
  1936. height: math.unit(100, "miles"),
  1937. default: true
  1938. },
  1939. ]
  1940. ))
  1941. characterMakers.push(() => makeCharacter(
  1942. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1943. {
  1944. front: {
  1945. height: math.unit(7, "feet"),
  1946. weight: math.unit(100, "kg"),
  1947. name: "Front",
  1948. image: {
  1949. source: "./media/characters/manny/front.svg",
  1950. extra: 1,
  1951. bottom: 0.06
  1952. }
  1953. },
  1954. back: {
  1955. height: math.unit(7, "feet"),
  1956. weight: math.unit(100, "kg"),
  1957. name: "Back",
  1958. image: {
  1959. source: "./media/characters/manny/back.svg",
  1960. extra: 1,
  1961. bottom: 0.014
  1962. }
  1963. },
  1964. },
  1965. [
  1966. {
  1967. name: "Normal",
  1968. height: math.unit(7, "feet"),
  1969. },
  1970. {
  1971. name: "Macro",
  1972. height: math.unit(78, "feet"),
  1973. default: true
  1974. },
  1975. {
  1976. name: "Macro+",
  1977. height: math.unit(300, "meters")
  1978. },
  1979. {
  1980. name: "Macro++",
  1981. height: math.unit(2400, "meters")
  1982. },
  1983. {
  1984. name: "Megamacro",
  1985. height: math.unit(5167, "meters")
  1986. },
  1987. {
  1988. name: "Gigamacro",
  1989. height: math.unit(41769, "miles")
  1990. },
  1991. ]
  1992. ))
  1993. characterMakers.push(() => makeCharacter(
  1994. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1995. {
  1996. front: {
  1997. height: math.unit(7, "feet"),
  1998. weight: math.unit(100, "kg"),
  1999. name: "Front",
  2000. image: {
  2001. source: "./media/characters/adake/front-1.svg"
  2002. }
  2003. },
  2004. frontAlt: {
  2005. height: math.unit(7, "feet"),
  2006. weight: math.unit(100, "kg"),
  2007. name: "Front (Alt)",
  2008. image: {
  2009. source: "./media/characters/adake/front-2.svg",
  2010. extra: 1,
  2011. bottom: 0.01
  2012. }
  2013. },
  2014. back: {
  2015. height: math.unit(7, "feet"),
  2016. weight: math.unit(100, "kg"),
  2017. name: "Back",
  2018. image: {
  2019. source: "./media/characters/adake/back.svg",
  2020. }
  2021. },
  2022. kneel: {
  2023. height: math.unit(5.385, "feet"),
  2024. weight: math.unit(100, "kg"),
  2025. name: "Kneeling",
  2026. image: {
  2027. source: "./media/characters/adake/kneel.svg",
  2028. bottom: 0.052
  2029. }
  2030. },
  2031. },
  2032. [
  2033. {
  2034. name: "Normal",
  2035. height: math.unit(7, "feet"),
  2036. },
  2037. {
  2038. name: "Macro",
  2039. height: math.unit(78, "feet"),
  2040. default: true
  2041. },
  2042. {
  2043. name: "Macro+",
  2044. height: math.unit(300, "meters")
  2045. },
  2046. {
  2047. name: "Macro++",
  2048. height: math.unit(2400, "meters")
  2049. },
  2050. {
  2051. name: "Megamacro",
  2052. height: math.unit(5167, "meters")
  2053. },
  2054. {
  2055. name: "Gigamacro",
  2056. height: math.unit(41769, "miles")
  2057. },
  2058. ]
  2059. ))
  2060. characterMakers.push(() => makeCharacter(
  2061. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2062. {
  2063. front: {
  2064. height: math.unit(1.65, "meters"),
  2065. weight: math.unit(50, "kg"),
  2066. name: "Front",
  2067. image: {
  2068. source: "./media/characters/elijah/front.svg",
  2069. extra: 858 / 830,
  2070. bottom: 95.5 / 953.8559
  2071. }
  2072. },
  2073. back: {
  2074. height: math.unit(1.65, "meters"),
  2075. weight: math.unit(50, "kg"),
  2076. name: "Back",
  2077. image: {
  2078. source: "./media/characters/elijah/back.svg",
  2079. extra: 895 / 850,
  2080. bottom: 5.3 / 897.956
  2081. }
  2082. },
  2083. frontNsfw: {
  2084. height: math.unit(1.65, "meters"),
  2085. weight: math.unit(50, "kg"),
  2086. name: "Front (NSFW)",
  2087. image: {
  2088. source: "./media/characters/elijah/front-nsfw.svg",
  2089. extra: 858 / 830,
  2090. bottom: 95.5 / 953.8559
  2091. }
  2092. },
  2093. backNsfw: {
  2094. height: math.unit(1.65, "meters"),
  2095. weight: math.unit(50, "kg"),
  2096. name: "Back (NSFW)",
  2097. image: {
  2098. source: "./media/characters/elijah/back-nsfw.svg",
  2099. extra: 895 / 850,
  2100. bottom: 5.3 / 897.956
  2101. }
  2102. },
  2103. dick: {
  2104. height: math.unit(1, "feet"),
  2105. name: "Dick",
  2106. image: {
  2107. source: "./media/characters/elijah/dick.svg"
  2108. }
  2109. },
  2110. beakOpen: {
  2111. height: math.unit(1.25, "feet"),
  2112. name: "Beak (Open)",
  2113. image: {
  2114. source: "./media/characters/elijah/beak-open.svg"
  2115. }
  2116. },
  2117. beakShut: {
  2118. height: math.unit(1.25, "feet"),
  2119. name: "Beak (Shut)",
  2120. image: {
  2121. source: "./media/characters/elijah/beak-shut.svg"
  2122. }
  2123. },
  2124. footFlexing: {
  2125. height: math.unit(1.61, "feet"),
  2126. name: "Foot (Flexing)",
  2127. image: {
  2128. source: "./media/characters/elijah/foot-flexing.svg"
  2129. }
  2130. },
  2131. footStepping: {
  2132. height: math.unit(1.44, "feet"),
  2133. name: "Foot (Stepping)",
  2134. image: {
  2135. source: "./media/characters/elijah/foot-stepping.svg"
  2136. }
  2137. },
  2138. plantigradeLeg: {
  2139. height: math.unit(2.34, "feet"),
  2140. name: "Plantigrade Leg",
  2141. image: {
  2142. source: "./media/characters/elijah/plantigrade-leg.svg"
  2143. }
  2144. },
  2145. plantigradeFootLeft: {
  2146. height: math.unit(0.9, "feet"),
  2147. name: "Plantigrade Foot (Left)",
  2148. image: {
  2149. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2150. }
  2151. },
  2152. plantigradeFootRight: {
  2153. height: math.unit(0.9, "feet"),
  2154. name: "Plantigrade Foot (Right)",
  2155. image: {
  2156. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(1.65, "meters")
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(55, "meters"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(105, "meters")
  2173. },
  2174. ]
  2175. ))
  2176. characterMakers.push(() => makeCharacter(
  2177. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2178. {
  2179. front: {
  2180. height: math.unit(11, "feet"),
  2181. weight: math.unit(320, "kg"),
  2182. name: "Front",
  2183. image: {
  2184. source: "./media/characters/rai/front.svg",
  2185. extra: 1802/1696,
  2186. bottom: 68/1870
  2187. }
  2188. },
  2189. frontDressed: {
  2190. height: math.unit(11, "feet"),
  2191. weight: math.unit(320, "kg"),
  2192. name: "Front (Dressed)",
  2193. image: {
  2194. source: "./media/characters/rai/front-dressed.svg",
  2195. extra: 1802/1696,
  2196. bottom: 68/1870
  2197. }
  2198. },
  2199. side: {
  2200. height: math.unit(11, "feet"),
  2201. weight: math.unit(320, "kg"),
  2202. name: "Side",
  2203. image: {
  2204. source: "./media/characters/rai/side.svg",
  2205. extra: 1789/1710,
  2206. bottom: 115/1904
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(11, "feet"),
  2211. weight: math.unit(320, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/rai/back.svg",
  2215. extra: 1770/1707,
  2216. bottom: 28/1798
  2217. }
  2218. },
  2219. feral: {
  2220. height: math.unit(11, "feet"),
  2221. weight: math.unit(640, "kg"),
  2222. name: "Feral",
  2223. image: {
  2224. source: "./media/characters/rai/feral.svg",
  2225. extra: 1035/642,
  2226. bottom: 86/1121
  2227. }
  2228. },
  2229. dragon: {
  2230. height: math.unit(23, "feet"),
  2231. weight: math.unit(50000, "lb"),
  2232. name: "Dragon",
  2233. image: {
  2234. source: "./media/characters/rai/dragon.svg",
  2235. extra: 2498 / 2030,
  2236. bottom: 85.2 / 2584
  2237. }
  2238. },
  2239. maw: {
  2240. height: math.unit(6 / 3.81416, "feet"),
  2241. name: "Maw",
  2242. image: {
  2243. source: "./media/characters/rai/maw.svg"
  2244. }
  2245. },
  2246. },
  2247. [
  2248. {
  2249. name: "Normal",
  2250. height: math.unit(11, "feet")
  2251. },
  2252. {
  2253. name: "Macro",
  2254. height: math.unit(302, "feet"),
  2255. default: true
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2261. {
  2262. frontDressed: {
  2263. height: math.unit(216, "feet"),
  2264. weight: math.unit(7000000, "lb"),
  2265. name: "Front (Dressed)",
  2266. image: {
  2267. source: "./media/characters/jazzy/front-dressed.svg",
  2268. extra: 2738 / 2651,
  2269. bottom: 41.8 / 2786
  2270. }
  2271. },
  2272. backDressed: {
  2273. height: math.unit(216, "feet"),
  2274. weight: math.unit(7000000, "lb"),
  2275. name: "Back (Dressed)",
  2276. image: {
  2277. source: "./media/characters/jazzy/back-dressed.svg",
  2278. extra: 2775 / 2673,
  2279. bottom: 36.8 / 2817
  2280. }
  2281. },
  2282. front: {
  2283. height: math.unit(216, "feet"),
  2284. weight: math.unit(7000000, "lb"),
  2285. name: "Front",
  2286. image: {
  2287. source: "./media/characters/jazzy/front.svg",
  2288. extra: 2738 / 2651,
  2289. bottom: 41.8 / 2786
  2290. }
  2291. },
  2292. back: {
  2293. height: math.unit(216, "feet"),
  2294. weight: math.unit(7000000, "lb"),
  2295. name: "Back",
  2296. image: {
  2297. source: "./media/characters/jazzy/back.svg",
  2298. extra: 2775 / 2673,
  2299. bottom: 36.8 / 2817
  2300. }
  2301. },
  2302. maw: {
  2303. height: math.unit(20, "feet"),
  2304. name: "Maw",
  2305. image: {
  2306. source: "./media/characters/jazzy/maw.svg"
  2307. }
  2308. },
  2309. paws: {
  2310. height: math.unit(27.5, "feet"),
  2311. name: "Paws",
  2312. image: {
  2313. source: "./media/characters/jazzy/paws.svg"
  2314. }
  2315. },
  2316. eye: {
  2317. height: math.unit(4.4, "feet"),
  2318. name: "Eye",
  2319. image: {
  2320. source: "./media/characters/jazzy/eye.svg"
  2321. }
  2322. },
  2323. droneOffense: {
  2324. height: math.unit(9.5, "inches"),
  2325. name: "Drone (Offense)",
  2326. image: {
  2327. source: "./media/characters/jazzy/drone-offense.svg"
  2328. }
  2329. },
  2330. droneRecon: {
  2331. height: math.unit(9.5, "inches"),
  2332. name: "Drone (Recon)",
  2333. image: {
  2334. source: "./media/characters/jazzy/drone-recon.svg"
  2335. }
  2336. },
  2337. droneDefense: {
  2338. height: math.unit(9.5, "inches"),
  2339. name: "Drone (Defense)",
  2340. image: {
  2341. source: "./media/characters/jazzy/drone-defense.svg"
  2342. }
  2343. },
  2344. },
  2345. [
  2346. {
  2347. name: "Macro",
  2348. height: math.unit(216, "feet"),
  2349. default: true
  2350. },
  2351. ]
  2352. ))
  2353. characterMakers.push(() => makeCharacter(
  2354. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2355. {
  2356. front: {
  2357. height: math.unit(9 + 6/12, "feet"),
  2358. weight: math.unit(700, "lb"),
  2359. name: "Front",
  2360. image: {
  2361. source: "./media/characters/flamm/front.svg",
  2362. extra: 1751/1632,
  2363. bottom: 46/1797
  2364. }
  2365. },
  2366. buff: {
  2367. height: math.unit(9 + 6/12, "feet"),
  2368. weight: math.unit(950, "lb"),
  2369. name: "Buff",
  2370. image: {
  2371. source: "./media/characters/flamm/buff.svg",
  2372. extra: 3018/2874,
  2373. bottom: 221/3239
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(9.5, "feet")
  2381. },
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(200, "feet"),
  2385. default: true
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(5 + 3/12, "feet"),
  2394. weight: math.unit(60, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/zephiro/front.svg",
  2398. extra: 2309 / 2162,
  2399. bottom: 0.069
  2400. }
  2401. },
  2402. side: {
  2403. height: math.unit(5 + 3/12, "feet"),
  2404. weight: math.unit(60, "kg"),
  2405. name: "Side",
  2406. image: {
  2407. source: "./media/characters/zephiro/side.svg",
  2408. extra: 2403 / 2279,
  2409. bottom: 0.015
  2410. }
  2411. },
  2412. back: {
  2413. height: math.unit(5 + 3/12, "feet"),
  2414. weight: math.unit(60, "kg"),
  2415. name: "Back",
  2416. image: {
  2417. source: "./media/characters/zephiro/back.svg",
  2418. extra: 2373 / 2244,
  2419. bottom: 0.013
  2420. }
  2421. },
  2422. hand: {
  2423. height: math.unit(0.68, "feet"),
  2424. name: "Hand",
  2425. image: {
  2426. source: "./media/characters/zephiro/hand.svg"
  2427. }
  2428. },
  2429. paw: {
  2430. height: math.unit(1, "feet"),
  2431. name: "Paw",
  2432. image: {
  2433. source: "./media/characters/zephiro/paw.svg"
  2434. }
  2435. },
  2436. beans: {
  2437. height: math.unit(0.93, "feet"),
  2438. name: "Beans",
  2439. image: {
  2440. source: "./media/characters/zephiro/beans.svg"
  2441. }
  2442. },
  2443. },
  2444. [
  2445. {
  2446. name: "Micro",
  2447. height: math.unit(3, "inches")
  2448. },
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(5 + 3 / 12, "feet"),
  2452. default: true
  2453. },
  2454. {
  2455. name: "Macro",
  2456. height: math.unit(118, "feet")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(5, "feet"),
  2465. weight: math.unit(90, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/fory/front.svg",
  2469. extra: 2862 / 2674,
  2470. bottom: 180 / 3043.8
  2471. }
  2472. },
  2473. back: {
  2474. height: math.unit(5, "feet"),
  2475. weight: math.unit(90, "kg"),
  2476. name: "Back",
  2477. image: {
  2478. source: "./media/characters/fory/back.svg",
  2479. extra: 2962 / 2791,
  2480. bottom: 106 / 3071.8
  2481. }
  2482. },
  2483. foot: {
  2484. height: math.unit(2.14, "feet"),
  2485. name: "Foot",
  2486. image: {
  2487. source: "./media/characters/fory/foot.svg"
  2488. }
  2489. },
  2490. },
  2491. [
  2492. {
  2493. name: "Normal",
  2494. height: math.unit(5, "feet")
  2495. },
  2496. {
  2497. name: "Macro",
  2498. height: math.unit(50, "feet"),
  2499. default: true
  2500. },
  2501. {
  2502. name: "Megamacro",
  2503. height: math.unit(10, "miles")
  2504. },
  2505. {
  2506. name: "Gigamacro",
  2507. height: math.unit(5, "earths")
  2508. },
  2509. ]
  2510. ))
  2511. characterMakers.push(() => makeCharacter(
  2512. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2513. {
  2514. front: {
  2515. height: math.unit(7, "feet"),
  2516. weight: math.unit(90, "kg"),
  2517. name: "Front",
  2518. image: {
  2519. source: "./media/characters/kurrikage/front.svg",
  2520. extra: 1,
  2521. bottom: 0.035
  2522. }
  2523. },
  2524. back: {
  2525. height: math.unit(7, "feet"),
  2526. weight: math.unit(90, "lb"),
  2527. name: "Back",
  2528. image: {
  2529. source: "./media/characters/kurrikage/back.svg"
  2530. }
  2531. },
  2532. paw: {
  2533. height: math.unit(1.5, "feet"),
  2534. name: "Paw",
  2535. image: {
  2536. source: "./media/characters/kurrikage/paw.svg"
  2537. }
  2538. },
  2539. staff: {
  2540. height: math.unit(6.7, "feet"),
  2541. name: "Staff",
  2542. image: {
  2543. source: "./media/characters/kurrikage/staff.svg"
  2544. }
  2545. },
  2546. peek: {
  2547. height: math.unit(1.05, "feet"),
  2548. name: "Peeking",
  2549. image: {
  2550. source: "./media/characters/kurrikage/peek.svg",
  2551. bottom: 0.08
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Normal",
  2558. height: math.unit(12, "feet"),
  2559. default: true
  2560. },
  2561. {
  2562. name: "Big",
  2563. height: math.unit(20, "feet")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(500, "feet")
  2568. },
  2569. {
  2570. name: "Megamacro",
  2571. height: math.unit(20, "miles")
  2572. },
  2573. ]
  2574. ))
  2575. characterMakers.push(() => makeCharacter(
  2576. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2577. {
  2578. front: {
  2579. height: math.unit(6, "feet"),
  2580. weight: math.unit(75, "kg"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/shingo/front.svg",
  2584. extra: 706/681,
  2585. bottom: 11/717
  2586. }
  2587. },
  2588. frontAlt: {
  2589. height: math.unit(6, "feet"),
  2590. weight: math.unit(75, "kg"),
  2591. name: "Front (Alt)",
  2592. image: {
  2593. source: "./media/characters/shingo/front-alt.svg",
  2594. extra: 3511 / 3338,
  2595. bottom: 0.005
  2596. }
  2597. },
  2598. paw: {
  2599. height: math.unit(1, "feet"),
  2600. name: "Paw",
  2601. image: {
  2602. source: "./media/characters/shingo/paw.svg"
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Micro",
  2609. height: math.unit(4, "inches")
  2610. },
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(6, "feet"),
  2614. default: true
  2615. },
  2616. {
  2617. name: "Macro",
  2618. height: math.unit(108, "feet")
  2619. },
  2620. {
  2621. name: "Macro+",
  2622. height: math.unit(1500, "feet")
  2623. },
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2628. {
  2629. side: {
  2630. height: math.unit(6, "feet"),
  2631. weight: math.unit(75, "kg"),
  2632. name: "Side",
  2633. image: {
  2634. source: "./media/characters/aigey/side.svg"
  2635. }
  2636. },
  2637. },
  2638. [
  2639. {
  2640. name: "Macro",
  2641. height: math.unit(200, "feet"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Megamacro",
  2646. height: math.unit(100, "miles")
  2647. },
  2648. ]
  2649. )
  2650. )
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2653. {
  2654. front: {
  2655. height: math.unit(5 + 5 / 12, "feet"),
  2656. weight: math.unit(75, "kg"),
  2657. name: "Front",
  2658. image: {
  2659. source: "./media/characters/natasha/front.svg",
  2660. extra: 859 / 824,
  2661. bottom: 23 / 879.6
  2662. }
  2663. },
  2664. frontNsfw: {
  2665. height: math.unit(5 + 5 / 12, "feet"),
  2666. weight: math.unit(75, "kg"),
  2667. name: "Front (NSFW)",
  2668. image: {
  2669. source: "./media/characters/natasha/front-nsfw.svg",
  2670. extra: 859 / 824,
  2671. bottom: 23 / 879.6
  2672. }
  2673. },
  2674. frontErect: {
  2675. height: math.unit(5 + 5 / 12, "feet"),
  2676. weight: math.unit(75, "kg"),
  2677. name: "Front (Erect)",
  2678. image: {
  2679. source: "./media/characters/natasha/front-erect.svg",
  2680. extra: 859 / 824,
  2681. bottom: 23 / 879.6
  2682. }
  2683. },
  2684. back: {
  2685. height: math.unit(5 + 5 / 12, "feet"),
  2686. weight: math.unit(75, "kg"),
  2687. name: "Back",
  2688. image: {
  2689. source: "./media/characters/natasha/back.svg",
  2690. extra: 887.9 / 852.6,
  2691. bottom: 9.7 / 896.4
  2692. }
  2693. },
  2694. backAlt: {
  2695. height: math.unit(5 + 5 / 12, "feet"),
  2696. weight: math.unit(75, "kg"),
  2697. name: "Back (Alt)",
  2698. image: {
  2699. source: "./media/characters/natasha/back-alt.svg",
  2700. extra: 1236.7 / 1192,
  2701. bottom: 22.3 / 1258.2
  2702. }
  2703. },
  2704. dick: {
  2705. height: math.unit(1.772, "feet"),
  2706. name: "Dick",
  2707. image: {
  2708. source: "./media/characters/natasha/dick.svg"
  2709. }
  2710. },
  2711. paw: {
  2712. height: math.unit(0.250, "meters"),
  2713. name: "Paw",
  2714. image: {
  2715. source: "./media/characters/natasha/paw.svg"
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Normal",
  2722. height: math.unit(5 + 5 / 12, "feet")
  2723. },
  2724. {
  2725. name: "Large",
  2726. height: math.unit(12, "feet")
  2727. },
  2728. {
  2729. name: "Macro",
  2730. height: math.unit(100, "feet"),
  2731. default: true
  2732. },
  2733. {
  2734. name: "Macro+",
  2735. height: math.unit(260, "feet")
  2736. },
  2737. {
  2738. name: "Macro++",
  2739. height: math.unit(1, "mile")
  2740. },
  2741. ]
  2742. ))
  2743. characterMakers.push(() => makeCharacter(
  2744. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2745. {
  2746. front: {
  2747. height: math.unit(6, "feet"),
  2748. weight: math.unit(75, "kg"),
  2749. name: "Front",
  2750. image: {
  2751. source: "./media/characters/malik/front.svg"
  2752. }
  2753. },
  2754. side: {
  2755. height: math.unit(6, "feet"),
  2756. weight: math.unit(75, "kg"),
  2757. name: "Side",
  2758. image: {
  2759. source: "./media/characters/malik/side.svg",
  2760. extra: 1.1539
  2761. }
  2762. },
  2763. back: {
  2764. height: math.unit(6, "feet"),
  2765. weight: math.unit(75, "kg"),
  2766. name: "Back",
  2767. image: {
  2768. source: "./media/characters/malik/back.svg"
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Macro",
  2775. height: math.unit(156, "feet"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "Macro+",
  2780. height: math.unit(1188, "feet")
  2781. },
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2786. {
  2787. front: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/sefer/front.svg",
  2793. extra: 848 / 659,
  2794. bottom: 28.3 / 876.442
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/sefer/back.svg",
  2803. extra: 864 / 695,
  2804. bottom: 10 / 871
  2805. }
  2806. },
  2807. frontDressed: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(75, "kg"),
  2810. name: "Front (Dressed)",
  2811. image: {
  2812. source: "./media/characters/sefer/front-dressed.svg",
  2813. extra: 839 / 653,
  2814. bottom: 37.6 / 878
  2815. }
  2816. },
  2817. },
  2818. [
  2819. {
  2820. name: "Normal",
  2821. height: math.unit(6, "feet"),
  2822. default: true
  2823. },
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2828. {
  2829. body: {
  2830. height: math.unit(2.2428, "meter"),
  2831. weight: math.unit(124.738, "kg"),
  2832. name: "Body",
  2833. image: {
  2834. extra: 1225 / 1050,
  2835. source: "./media/characters/north/front.svg"
  2836. }
  2837. }
  2838. },
  2839. [
  2840. {
  2841. name: "Micro",
  2842. height: math.unit(4, "inches")
  2843. },
  2844. {
  2845. name: "Macro",
  2846. height: math.unit(63, "meters")
  2847. },
  2848. {
  2849. name: "Megamacro",
  2850. height: math.unit(101, "miles"),
  2851. default: true
  2852. }
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2857. {
  2858. angled: {
  2859. height: math.unit(4, "meter"),
  2860. weight: math.unit(150, "kg"),
  2861. name: "Angled",
  2862. image: {
  2863. source: "./media/characters/talan/angled-sfw.svg",
  2864. bottom: 29 / 3734
  2865. }
  2866. },
  2867. angledNsfw: {
  2868. height: math.unit(4, "meter"),
  2869. weight: math.unit(150, "kg"),
  2870. name: "Angled (NSFW)",
  2871. image: {
  2872. source: "./media/characters/talan/angled-nsfw.svg",
  2873. bottom: 29 / 3734
  2874. }
  2875. },
  2876. frontNsfw: {
  2877. height: math.unit(4, "meter"),
  2878. weight: math.unit(150, "kg"),
  2879. name: "Front (NSFW)",
  2880. image: {
  2881. source: "./media/characters/talan/front-nsfw.svg",
  2882. bottom: 29 / 3734
  2883. }
  2884. },
  2885. sideNsfw: {
  2886. height: math.unit(4, "meter"),
  2887. weight: math.unit(150, "kg"),
  2888. name: "Side (NSFW)",
  2889. image: {
  2890. source: "./media/characters/talan/side-nsfw.svg",
  2891. bottom: 29 / 3734
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(4, "meter"),
  2896. weight: math.unit(150, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/talan/back.svg"
  2900. }
  2901. },
  2902. dickBottom: {
  2903. height: math.unit(0.621, "meter"),
  2904. name: "Dick (Bottom)",
  2905. image: {
  2906. source: "./media/characters/talan/dick-bottom.svg"
  2907. }
  2908. },
  2909. dickTop: {
  2910. height: math.unit(0.621, "meter"),
  2911. name: "Dick (Top)",
  2912. image: {
  2913. source: "./media/characters/talan/dick-top.svg"
  2914. }
  2915. },
  2916. dickSide: {
  2917. height: math.unit(0.305, "meter"),
  2918. name: "Dick (Side)",
  2919. image: {
  2920. source: "./media/characters/talan/dick-side.svg"
  2921. }
  2922. },
  2923. dickFront: {
  2924. height: math.unit(0.305, "meter"),
  2925. name: "Dick (Front)",
  2926. image: {
  2927. source: "./media/characters/talan/dick-front.svg"
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(4, "meters")
  2935. },
  2936. {
  2937. name: "Macro",
  2938. height: math.unit(100, "meters")
  2939. },
  2940. {
  2941. name: "Megamacro",
  2942. height: math.unit(2, "miles"),
  2943. default: true
  2944. },
  2945. {
  2946. name: "Gigamacro",
  2947. height: math.unit(5000, "miles")
  2948. },
  2949. {
  2950. name: "Teramacro",
  2951. height: math.unit(100, "parsecs")
  2952. }
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2957. {
  2958. front: {
  2959. height: math.unit(2, "meter"),
  2960. weight: math.unit(90, "kg"),
  2961. name: "Front",
  2962. image: {
  2963. source: "./media/characters/gael'rathus/front.svg"
  2964. }
  2965. },
  2966. frontAlt: {
  2967. height: math.unit(2, "meter"),
  2968. weight: math.unit(90, "kg"),
  2969. name: "Front (alt)",
  2970. image: {
  2971. source: "./media/characters/gael'rathus/front-alt.svg"
  2972. }
  2973. },
  2974. frontAlt2: {
  2975. height: math.unit(2, "meter"),
  2976. weight: math.unit(90, "kg"),
  2977. name: "Front (alt 2)",
  2978. image: {
  2979. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2980. }
  2981. }
  2982. },
  2983. [
  2984. {
  2985. name: "Normal",
  2986. height: math.unit(9, "feet"),
  2987. default: true
  2988. },
  2989. {
  2990. name: "Large",
  2991. height: math.unit(25, "feet")
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(0.25, "miles")
  2996. },
  2997. {
  2998. name: "Megamacro",
  2999. height: math.unit(10, "miles")
  3000. }
  3001. ]
  3002. ))
  3003. characterMakers.push(() => makeCharacter(
  3004. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3005. {
  3006. side: {
  3007. height: math.unit(2, "meter"),
  3008. weight: math.unit(140, "kg"),
  3009. name: "Side",
  3010. image: {
  3011. source: "./media/characters/sosha/side.svg",
  3012. bottom: 0.042
  3013. }
  3014. },
  3015. },
  3016. [
  3017. {
  3018. name: "Normal",
  3019. height: math.unit(12, "feet"),
  3020. default: true
  3021. }
  3022. ]
  3023. ))
  3024. characterMakers.push(() => makeCharacter(
  3025. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3026. {
  3027. side: {
  3028. height: math.unit(5 + 5 / 12, "feet"),
  3029. weight: math.unit(170, "kg"),
  3030. name: "Side",
  3031. image: {
  3032. source: "./media/characters/runnola/side.svg",
  3033. extra: 741 / 448,
  3034. bottom: 0.05
  3035. }
  3036. },
  3037. },
  3038. [
  3039. {
  3040. name: "Small",
  3041. height: math.unit(3, "feet")
  3042. },
  3043. {
  3044. name: "Normal",
  3045. height: math.unit(5 + 5 / 12, "feet"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Big",
  3050. height: math.unit(10, "feet")
  3051. },
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3056. {
  3057. front: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(50, "kg"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/kurribird/front.svg",
  3063. bottom: 0.015
  3064. }
  3065. },
  3066. frontAlt: {
  3067. height: math.unit(1.5, "meter"),
  3068. weight: math.unit(50, "kg"),
  3069. name: "Front (Alt)",
  3070. image: {
  3071. source: "./media/characters/kurribird/front-alt.svg",
  3072. extra: 1.45
  3073. }
  3074. },
  3075. },
  3076. [
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(7, "feet")
  3080. },
  3081. {
  3082. name: "Big",
  3083. height: math.unit(12, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Macro",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. {
  3091. name: "Megamacro",
  3092. height: math.unit(2, "miles")
  3093. }
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3098. {
  3099. front: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(80, "kg"),
  3102. name: "Front",
  3103. image: {
  3104. source: "./media/characters/elbial/front.svg",
  3105. extra: 1643 / 1556,
  3106. bottom: 60.2 / 1696
  3107. }
  3108. },
  3109. side: {
  3110. height: math.unit(2, "meter"),
  3111. weight: math.unit(80, "kg"),
  3112. name: "Side",
  3113. image: {
  3114. source: "./media/characters/elbial/side.svg",
  3115. extra: 1630 / 1565,
  3116. bottom: 71.5 / 1697
  3117. }
  3118. },
  3119. back: {
  3120. height: math.unit(2, "meter"),
  3121. weight: math.unit(80, "kg"),
  3122. name: "Back",
  3123. image: {
  3124. source: "./media/characters/elbial/back.svg",
  3125. extra: 1668 / 1595,
  3126. bottom: 5.6 / 1672
  3127. }
  3128. },
  3129. frontDressed: {
  3130. height: math.unit(2, "meter"),
  3131. weight: math.unit(80, "kg"),
  3132. name: "Front (Dressed)",
  3133. image: {
  3134. source: "./media/characters/elbial/front-dressed.svg",
  3135. extra: 1653 / 1584,
  3136. bottom: 57 / 1708
  3137. }
  3138. },
  3139. genitals: {
  3140. height: math.unit(2 / 3.367, "meter"),
  3141. name: "Genitals",
  3142. image: {
  3143. source: "./media/characters/elbial/genitals.svg"
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Large",
  3150. height: math.unit(100, "feet")
  3151. },
  3152. {
  3153. name: "Macro",
  3154. height: math.unit(500, "feet"),
  3155. default: true
  3156. },
  3157. {
  3158. name: "Megamacro",
  3159. height: math.unit(10, "miles")
  3160. },
  3161. {
  3162. name: "Gigamacro",
  3163. height: math.unit(25000, "miles")
  3164. },
  3165. {
  3166. name: "Full-Size",
  3167. height: math.unit(8000000, "gigaparsecs")
  3168. }
  3169. ]
  3170. ))
  3171. characterMakers.push(() => makeCharacter(
  3172. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3173. {
  3174. front: {
  3175. height: math.unit(2, "meter"),
  3176. weight: math.unit(60, "kg"),
  3177. name: "Front",
  3178. image: {
  3179. source: "./media/characters/noah/front.svg"
  3180. }
  3181. },
  3182. talons: {
  3183. height: math.unit(0.315, "meter"),
  3184. name: "Talons",
  3185. image: {
  3186. source: "./media/characters/noah/talons.svg"
  3187. }
  3188. }
  3189. },
  3190. [
  3191. {
  3192. name: "Large",
  3193. height: math.unit(50, "feet")
  3194. },
  3195. {
  3196. name: "Macro",
  3197. height: math.unit(750, "feet"),
  3198. default: true
  3199. },
  3200. {
  3201. name: "Megamacro",
  3202. height: math.unit(50, "miles")
  3203. },
  3204. {
  3205. name: "Gigamacro",
  3206. height: math.unit(100000, "miles")
  3207. },
  3208. {
  3209. name: "Full-Size",
  3210. height: math.unit(3000000000, "miles")
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3216. {
  3217. front: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(80, "kg"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/natalya/front.svg"
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(2, "meter"),
  3227. weight: math.unit(80, "kg"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/natalya/back.svg"
  3231. }
  3232. }
  3233. },
  3234. [
  3235. {
  3236. name: "Normal",
  3237. height: math.unit(150, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Megamacro",
  3242. height: math.unit(5, "miles")
  3243. },
  3244. {
  3245. name: "Full-Size",
  3246. height: math.unit(600, "kiloparsecs")
  3247. }
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(2, "meter"),
  3255. weight: math.unit(50, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/erestrebah/front.svg",
  3259. extra: 208 / 193,
  3260. bottom: 0.055
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(2, "meter"),
  3265. weight: math.unit(50, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/erestrebah/back.svg",
  3269. extra: 1.3
  3270. }
  3271. }
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(10, "feet")
  3277. },
  3278. {
  3279. name: "Large",
  3280. height: math.unit(50, "feet"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(300, "feet")
  3286. },
  3287. {
  3288. name: "Macro+",
  3289. height: math.unit(750, "feet")
  3290. },
  3291. {
  3292. name: "Megamacro",
  3293. height: math.unit(3, "miles")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(80, "kg"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/jennifer/front.svg",
  3306. bottom: 0.11,
  3307. extra: 1.16
  3308. }
  3309. },
  3310. frontAlt: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(80, "kg"),
  3313. name: "Front (Alt)",
  3314. image: {
  3315. source: "./media/characters/jennifer/front-alt.svg"
  3316. }
  3317. }
  3318. },
  3319. [
  3320. {
  3321. name: "Canon Height",
  3322. height: math.unit(120, "feet"),
  3323. default: true
  3324. },
  3325. {
  3326. name: "Macro+",
  3327. height: math.unit(300, "feet")
  3328. },
  3329. {
  3330. name: "Megamacro",
  3331. height: math.unit(20000, "feet")
  3332. }
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(50, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/kalista/front.svg",
  3344. extra: 1947 / 1700,
  3345. bottom: 76.6 / 1412.98
  3346. }
  3347. },
  3348. back: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(50, "kg"),
  3351. name: "Back",
  3352. image: {
  3353. source: "./media/characters/kalista/back.svg",
  3354. extra: 1366 / 1156,
  3355. bottom: 33.9 / 1362.78
  3356. }
  3357. }
  3358. },
  3359. [
  3360. {
  3361. name: "Uncomfortably Small",
  3362. height: math.unit(10, "feet")
  3363. },
  3364. {
  3365. name: "Small",
  3366. height: math.unit(30, "feet")
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(100, "feet"),
  3371. default: true
  3372. },
  3373. {
  3374. name: "Macro+",
  3375. height: math.unit(2000, "feet")
  3376. },
  3377. {
  3378. name: "True Form",
  3379. height: math.unit(8924, "miles")
  3380. }
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(2, "meter"),
  3388. weight: math.unit(120, "kg"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/ggv/front.svg"
  3392. }
  3393. },
  3394. side: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(120, "kg"),
  3397. name: "Side",
  3398. image: {
  3399. source: "./media/characters/ggv/side.svg"
  3400. }
  3401. }
  3402. },
  3403. [
  3404. {
  3405. name: "Extremely Puny",
  3406. height: math.unit(9 + 5 / 12, "feet")
  3407. },
  3408. {
  3409. name: "Horribly Small",
  3410. height: math.unit(47.7, "miles"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Reasonably Sized",
  3415. height: math.unit(25000, "parsecs")
  3416. },
  3417. {
  3418. name: "Slightly Uncompressed",
  3419. height: math.unit(7.77e31, "parsecs")
  3420. },
  3421. {
  3422. name: "Omniversal",
  3423. height: math.unit(1e300, "meters")
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(2, "meter"),
  3432. weight: math.unit(75, "lb"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/napalm/front.svg"
  3436. }
  3437. },
  3438. back: {
  3439. height: math.unit(2, "meter"),
  3440. weight: math.unit(75, "lb"),
  3441. name: "Back",
  3442. image: {
  3443. source: "./media/characters/napalm/back.svg"
  3444. }
  3445. }
  3446. },
  3447. [
  3448. {
  3449. name: "Standard",
  3450. height: math.unit(55, "feet"),
  3451. default: true
  3452. }
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3457. {
  3458. front: {
  3459. height: math.unit(7 + 5 / 6, "feet"),
  3460. weight: math.unit(325, "lb"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/asana/front.svg",
  3464. extra: 1133 / 1060,
  3465. bottom: 15.2 / 1148.6
  3466. }
  3467. },
  3468. back: {
  3469. height: math.unit(7 + 5 / 6, "feet"),
  3470. weight: math.unit(325, "lb"),
  3471. name: "Back",
  3472. image: {
  3473. source: "./media/characters/asana/back.svg",
  3474. extra: 1114 / 1043,
  3475. bottom: 5 / 1120
  3476. }
  3477. },
  3478. dressedDark: {
  3479. height: math.unit(7 + 5 / 6, "feet"),
  3480. weight: math.unit(325, "lb"),
  3481. name: "Dressed (Dark)",
  3482. image: {
  3483. source: "./media/characters/asana/dressed-dark.svg",
  3484. extra: 1133 / 1060,
  3485. bottom: 15.2 / 1148.6
  3486. }
  3487. },
  3488. dressedLight: {
  3489. height: math.unit(7 + 5 / 6, "feet"),
  3490. weight: math.unit(325, "lb"),
  3491. name: "Dressed (Light)",
  3492. image: {
  3493. source: "./media/characters/asana/dressed-light.svg",
  3494. extra: 1133 / 1060,
  3495. bottom: 15.2 / 1148.6
  3496. }
  3497. },
  3498. },
  3499. [
  3500. {
  3501. name: "Standard",
  3502. height: math.unit(7 + 5 / 6, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Large",
  3507. height: math.unit(10, "meters")
  3508. },
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(2500, "meters")
  3512. },
  3513. {
  3514. name: "Megamacro",
  3515. height: math.unit(5e6, "meters")
  3516. },
  3517. {
  3518. name: "Examacro",
  3519. height: math.unit(5e12, "lightyears")
  3520. },
  3521. {
  3522. name: "Max Size",
  3523. height: math.unit(1e31, "lightyears")
  3524. }
  3525. ]
  3526. ))
  3527. characterMakers.push(() => makeCharacter(
  3528. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3529. {
  3530. front: {
  3531. height: math.unit(2, "meter"),
  3532. weight: math.unit(60, "kg"),
  3533. name: "Front",
  3534. image: {
  3535. source: "./media/characters/ebony/front.svg",
  3536. bottom: 0.03,
  3537. extra: 1045 / 810 + 0.03
  3538. }
  3539. },
  3540. side: {
  3541. height: math.unit(2, "meter"),
  3542. weight: math.unit(60, "kg"),
  3543. name: "Side",
  3544. image: {
  3545. source: "./media/characters/ebony/side.svg",
  3546. bottom: 0.03,
  3547. extra: 1045 / 810 + 0.03
  3548. }
  3549. },
  3550. back: {
  3551. height: math.unit(2, "meter"),
  3552. weight: math.unit(60, "kg"),
  3553. name: "Back",
  3554. image: {
  3555. source: "./media/characters/ebony/back.svg",
  3556. bottom: 0.01,
  3557. extra: 1045 / 810 + 0.01
  3558. }
  3559. },
  3560. },
  3561. [
  3562. // TODO check why I did this lol
  3563. {
  3564. name: "Standard",
  3565. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3566. default: true
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(200, "feet")
  3571. },
  3572. {
  3573. name: "Gigamacro",
  3574. height: math.unit(13000, "km")
  3575. }
  3576. ]
  3577. ))
  3578. characterMakers.push(() => makeCharacter(
  3579. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3580. {
  3581. front: {
  3582. height: math.unit(6, "feet"),
  3583. weight: math.unit(175, "lb"),
  3584. name: "Front",
  3585. image: {
  3586. source: "./media/characters/mountain/front.svg",
  3587. extra: 972 / 955,
  3588. bottom: 64 / 1036.6
  3589. }
  3590. },
  3591. back: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(175, "lb"),
  3594. name: "Back",
  3595. image: {
  3596. source: "./media/characters/mountain/back.svg",
  3597. extra: 970 / 950,
  3598. bottom: 28.25 / 999
  3599. }
  3600. },
  3601. },
  3602. [
  3603. {
  3604. name: "Large",
  3605. height: math.unit(20, "meters")
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(300, "meters")
  3610. },
  3611. {
  3612. name: "Gigamacro",
  3613. height: math.unit(10000, "km"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "Examacro",
  3618. height: math.unit(10e9, "lightyears")
  3619. }
  3620. ]
  3621. ))
  3622. characterMakers.push(() => makeCharacter(
  3623. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3624. {
  3625. front: {
  3626. height: math.unit(8, "feet"),
  3627. weight: math.unit(500, "lb"),
  3628. name: "Front",
  3629. image: {
  3630. source: "./media/characters/rick/front.svg"
  3631. }
  3632. }
  3633. },
  3634. [
  3635. {
  3636. name: "Normal",
  3637. height: math.unit(8, "feet"),
  3638. default: true
  3639. },
  3640. {
  3641. name: "Macro",
  3642. height: math.unit(5, "km")
  3643. }
  3644. ]
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(8, "feet"),
  3651. weight: math.unit(120, "lb"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/ona/front.svg"
  3655. }
  3656. },
  3657. frontAlt: {
  3658. height: math.unit(8, "feet"),
  3659. weight: math.unit(120, "lb"),
  3660. name: "Front (Alt)",
  3661. image: {
  3662. source: "./media/characters/ona/front-alt.svg"
  3663. }
  3664. },
  3665. back: {
  3666. height: math.unit(8, "feet"),
  3667. weight: math.unit(120, "lb"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/ona/back.svg"
  3671. }
  3672. },
  3673. foot: {
  3674. height: math.unit(1.1, "feet"),
  3675. name: "Foot",
  3676. image: {
  3677. source: "./media/characters/ona/foot.svg"
  3678. }
  3679. }
  3680. },
  3681. [
  3682. {
  3683. name: "Megamacro",
  3684. height: math.unit(70, "km"),
  3685. default: true
  3686. },
  3687. {
  3688. name: "Gigamacro",
  3689. height: math.unit(681818, "miles")
  3690. },
  3691. {
  3692. name: "Examacro",
  3693. height: math.unit(3800000, "lightyears")
  3694. },
  3695. ]
  3696. ))
  3697. characterMakers.push(() => makeCharacter(
  3698. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3699. {
  3700. front: {
  3701. height: math.unit(12, "feet"),
  3702. weight: math.unit(3000, "lb"),
  3703. name: "Front",
  3704. image: {
  3705. source: "./media/characters/mech/front.svg",
  3706. extra: 2900 / 2770,
  3707. bottom: 110 / 3010
  3708. }
  3709. },
  3710. back: {
  3711. height: math.unit(12, "feet"),
  3712. weight: math.unit(3000, "lb"),
  3713. name: "Back",
  3714. image: {
  3715. source: "./media/characters/mech/back.svg",
  3716. extra: 3011 / 2890,
  3717. bottom: 94 / 3105
  3718. }
  3719. },
  3720. maw: {
  3721. height: math.unit(3.07, "feet"),
  3722. name: "Maw",
  3723. image: {
  3724. source: "./media/characters/mech/maw.svg"
  3725. }
  3726. },
  3727. head: {
  3728. height: math.unit(2.82, "feet"),
  3729. name: "Head",
  3730. image: {
  3731. source: "./media/characters/mech/head.svg"
  3732. }
  3733. },
  3734. dick: {
  3735. height: math.unit(1.43, "feet"),
  3736. name: "Dick",
  3737. image: {
  3738. source: "./media/characters/mech/dick.svg"
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(12, "feet")
  3746. },
  3747. {
  3748. name: "Macro",
  3749. height: math.unit(300, "feet"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Macro+",
  3754. height: math.unit(1500, "feet")
  3755. },
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(1.3, "meter"),
  3763. weight: math.unit(30, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/gregory/front.svg",
  3767. }
  3768. }
  3769. },
  3770. [
  3771. {
  3772. name: "Normal",
  3773. height: math.unit(1.3, "meter"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Macro",
  3778. height: math.unit(20, "meter")
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(2.8, "meter"),
  3787. weight: math.unit(200, "kg"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/elory/front.svg",
  3791. }
  3792. }
  3793. },
  3794. [
  3795. {
  3796. name: "Normal",
  3797. height: math.unit(2.8, "meter"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(38, "meter")
  3803. }
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(470, "feet"),
  3811. weight: math.unit(924, "tons"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/angelpatamon/front.svg",
  3815. }
  3816. }
  3817. },
  3818. [
  3819. {
  3820. name: "Normal",
  3821. height: math.unit(470, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Deity Size I",
  3826. height: math.unit(28651.2, "km")
  3827. },
  3828. {
  3829. name: "Deity Size II",
  3830. height: math.unit(171907.2, "km")
  3831. }
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3836. {
  3837. side: {
  3838. height: math.unit(7.2, "meter"),
  3839. weight: math.unit(8.2, "tons"),
  3840. name: "Side",
  3841. image: {
  3842. source: "./media/characters/cryae/side.svg",
  3843. extra: 3500 / 1500
  3844. }
  3845. }
  3846. },
  3847. [
  3848. {
  3849. name: "Normal",
  3850. height: math.unit(7.2, "meter"),
  3851. default: true
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(6, "feet"),
  3860. weight: math.unit(175, "lb"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/xera/front.svg",
  3864. extra: 2377 / 1972,
  3865. bottom: 75.5 / 2452
  3866. }
  3867. },
  3868. side: {
  3869. height: math.unit(6, "feet"),
  3870. weight: math.unit(175, "lb"),
  3871. name: "Side",
  3872. image: {
  3873. source: "./media/characters/xera/side.svg",
  3874. extra: 2345 / 2019,
  3875. bottom: 39.7 / 2384
  3876. }
  3877. },
  3878. back: {
  3879. height: math.unit(6, "feet"),
  3880. weight: math.unit(175, "lb"),
  3881. name: "Back",
  3882. image: {
  3883. source: "./media/characters/xera/back.svg",
  3884. extra: 2095 / 1984,
  3885. bottom: 67 / 2166
  3886. }
  3887. },
  3888. },
  3889. [
  3890. {
  3891. name: "Small",
  3892. height: math.unit(10, "feet")
  3893. },
  3894. {
  3895. name: "Macro",
  3896. height: math.unit(500, "meters"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Macro+",
  3901. height: math.unit(10, "km")
  3902. },
  3903. {
  3904. name: "Gigamacro",
  3905. height: math.unit(25000, "km")
  3906. },
  3907. {
  3908. name: "Teramacro",
  3909. height: math.unit(3e6, "km")
  3910. }
  3911. ]
  3912. ))
  3913. characterMakers.push(() => makeCharacter(
  3914. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3915. {
  3916. front: {
  3917. height: math.unit(6, "feet"),
  3918. weight: math.unit(175, "lb"),
  3919. name: "Front",
  3920. image: {
  3921. source: "./media/characters/nebula/front.svg",
  3922. extra: 2566 / 2362,
  3923. bottom: 81 / 2644
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Small",
  3930. height: math.unit(4.5, "meters")
  3931. },
  3932. {
  3933. name: "Macro",
  3934. height: math.unit(1500, "meters"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(150, "km")
  3940. },
  3941. {
  3942. name: "Gigamacro",
  3943. height: math.unit(27000, "km")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(225, "lb"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/abysgar/front.svg"
  3956. }
  3957. }
  3958. },
  3959. [
  3960. {
  3961. name: "Small",
  3962. height: math.unit(4.5, "meters")
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(1250, "meters"),
  3967. default: true
  3968. },
  3969. {
  3970. name: "Megamacro",
  3971. height: math.unit(125, "km")
  3972. },
  3973. {
  3974. name: "Gigamacro",
  3975. height: math.unit(26000, "km")
  3976. }
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(180, "lb"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/yakuz/front.svg"
  3988. }
  3989. }
  3990. },
  3991. [
  3992. {
  3993. name: "Small",
  3994. height: math.unit(5, "meters")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(1500, "meters"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Megamacro",
  4003. height: math.unit(200, "km")
  4004. },
  4005. {
  4006. name: "Gigamacro",
  4007. height: math.unit(100000, "km")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(175, "lb"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/mirova/front.svg",
  4020. extra: 3334 / 3071,
  4021. bottom: 42 / 3375.6
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Small",
  4028. height: math.unit(5, "meters")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(900, "meters"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Megamacro",
  4037. height: math.unit(135, "km")
  4038. },
  4039. {
  4040. name: "Gigamacro",
  4041. height: math.unit(20000, "km")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4047. {
  4048. side: {
  4049. height: math.unit(28.35, "feet"),
  4050. weight: math.unit(99.75, "tons"),
  4051. name: "Side",
  4052. image: {
  4053. source: "./media/characters/asana-mech/side.svg",
  4054. extra: 923 / 699,
  4055. bottom: 50 / 975
  4056. }
  4057. },
  4058. chaingun: {
  4059. height: math.unit(7, "feet"),
  4060. weight: math.unit(2400, "lb"),
  4061. name: "Chaingun",
  4062. image: {
  4063. source: "./media/characters/asana-mech/chaingun.svg"
  4064. }
  4065. },
  4066. laser: {
  4067. height: math.unit(7.12, "feet"),
  4068. weight: math.unit(2000, "lb"),
  4069. name: "Laser",
  4070. image: {
  4071. source: "./media/characters/asana-mech/laser.svg"
  4072. }
  4073. },
  4074. },
  4075. [
  4076. {
  4077. name: "Normal",
  4078. height: math.unit(28.35, "feet"),
  4079. default: true
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(2500, "feet")
  4084. },
  4085. {
  4086. name: "Megamacro",
  4087. height: math.unit(25, "miles")
  4088. },
  4089. {
  4090. name: "Examacro",
  4091. height: math.unit(6e8, "lightyears")
  4092. },
  4093. ]
  4094. ))
  4095. characterMakers.push(() => makeCharacter(
  4096. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4097. {
  4098. front: {
  4099. height: math.unit(5, "meters"),
  4100. weight: math.unit(1000, "kg"),
  4101. name: "Front",
  4102. image: {
  4103. source: "./media/characters/asche/front.svg",
  4104. extra: 1258 / 1190,
  4105. bottom: 47 / 1305
  4106. }
  4107. },
  4108. frontUnderwear: {
  4109. height: math.unit(5, "meters"),
  4110. weight: math.unit(1000, "kg"),
  4111. name: "Front (Underwear)",
  4112. image: {
  4113. source: "./media/characters/asche/front-underwear.svg",
  4114. extra: 1258 / 1190,
  4115. bottom: 47 / 1305
  4116. }
  4117. },
  4118. frontDressed: {
  4119. height: math.unit(5, "meters"),
  4120. weight: math.unit(1000, "kg"),
  4121. name: "Front (Dressed)",
  4122. image: {
  4123. source: "./media/characters/asche/front-dressed.svg",
  4124. extra: 1258 / 1190,
  4125. bottom: 47 / 1305
  4126. }
  4127. },
  4128. frontArmor: {
  4129. height: math.unit(5, "meters"),
  4130. weight: math.unit(1000, "kg"),
  4131. name: "Front (Armored)",
  4132. image: {
  4133. source: "./media/characters/asche/front-armored.svg",
  4134. extra: 1374 / 1308,
  4135. bottom: 23 / 1397
  4136. }
  4137. },
  4138. mp724: {
  4139. height: math.unit(0.96, "meters"),
  4140. weight: math.unit(38, "kg"),
  4141. name: "H&K MP724",
  4142. image: {
  4143. source: "./media/characters/asche/h&k-mp724.svg"
  4144. }
  4145. },
  4146. side: {
  4147. height: math.unit(5, "meters"),
  4148. weight: math.unit(1000, "kg"),
  4149. name: "Side",
  4150. image: {
  4151. source: "./media/characters/asche/side.svg",
  4152. extra: 1717 / 1609,
  4153. bottom: 0.005
  4154. }
  4155. },
  4156. back: {
  4157. height: math.unit(5, "meters"),
  4158. weight: math.unit(1000, "kg"),
  4159. name: "Back",
  4160. image: {
  4161. source: "./media/characters/asche/back.svg",
  4162. extra: 1570 / 1501
  4163. }
  4164. },
  4165. },
  4166. [
  4167. {
  4168. name: "DEFCON 5",
  4169. height: math.unit(5, "meters")
  4170. },
  4171. {
  4172. name: "DEFCON 4",
  4173. height: math.unit(500, "meters"),
  4174. default: true
  4175. },
  4176. {
  4177. name: "DEFCON 3",
  4178. height: math.unit(5, "km")
  4179. },
  4180. {
  4181. name: "DEFCON 2",
  4182. height: math.unit(500, "km")
  4183. },
  4184. {
  4185. name: "DEFCON 1",
  4186. height: math.unit(500000, "km")
  4187. },
  4188. {
  4189. name: "DEFCON 0",
  4190. height: math.unit(3, "gigaparsecs")
  4191. },
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4196. {
  4197. front: {
  4198. height: math.unit(2, "meters"),
  4199. weight: math.unit(76, "kg"),
  4200. name: "Front",
  4201. image: {
  4202. source: "./media/characters/gale/front.svg"
  4203. }
  4204. },
  4205. frontAlt1: {
  4206. height: math.unit(2, "meters"),
  4207. weight: math.unit(76, "kg"),
  4208. name: "Front (Alt 1)",
  4209. image: {
  4210. source: "./media/characters/gale/front-alt-1.svg"
  4211. }
  4212. },
  4213. frontAlt2: {
  4214. height: math.unit(2, "meters"),
  4215. weight: math.unit(76, "kg"),
  4216. name: "Front (Alt 2)",
  4217. image: {
  4218. source: "./media/characters/gale/front-alt-2.svg"
  4219. }
  4220. },
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(7, "feet")
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(150, "feet"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Macro+",
  4234. height: math.unit(300, "feet")
  4235. },
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(2, "meters"),
  4243. weight: math.unit(76, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/draylen/front.svg"
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Macro",
  4253. height: math.unit(150, "feet"),
  4254. default: true
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4260. {
  4261. front: {
  4262. height: math.unit(7 + 9 / 12, "feet"),
  4263. weight: math.unit(379, "lbs"),
  4264. name: "Front",
  4265. image: {
  4266. source: "./media/characters/chez/front.svg"
  4267. }
  4268. },
  4269. side: {
  4270. height: math.unit(7 + 9 / 12, "feet"),
  4271. weight: math.unit(379, "lbs"),
  4272. name: "Side",
  4273. image: {
  4274. source: "./media/characters/chez/side.svg"
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(7 + 9 / 12, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "God King",
  4286. height: math.unit(9750000, "meters")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(6, "feet"),
  4295. weight: math.unit(275, "lbs"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/kaylum/front.svg",
  4299. bottom: 0.01,
  4300. extra: 1166 / 1031
  4301. }
  4302. },
  4303. frontWingless: {
  4304. height: math.unit(6, "feet"),
  4305. weight: math.unit(275, "lbs"),
  4306. name: "Front (Wingless)",
  4307. image: {
  4308. source: "./media/characters/kaylum/front-wingless.svg",
  4309. bottom: 0.01,
  4310. extra: 1117 / 1031
  4311. }
  4312. }
  4313. },
  4314. [
  4315. {
  4316. name: "Normal",
  4317. height: math.unit(3.05, "meters")
  4318. },
  4319. {
  4320. name: "Master",
  4321. height: math.unit(5.5, "meters")
  4322. },
  4323. {
  4324. name: "Rampage",
  4325. height: math.unit(19, "meters")
  4326. },
  4327. {
  4328. name: "Macro Lite",
  4329. height: math.unit(37, "meters")
  4330. },
  4331. {
  4332. name: "Hyper Predator",
  4333. height: math.unit(61, "meters")
  4334. },
  4335. {
  4336. name: "Macro",
  4337. height: math.unit(138, "meters"),
  4338. default: true
  4339. }
  4340. ]
  4341. ))
  4342. characterMakers.push(() => makeCharacter(
  4343. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4344. {
  4345. front: {
  4346. height: math.unit(6, "feet"),
  4347. weight: math.unit(150, "lbs"),
  4348. name: "Front",
  4349. image: {
  4350. source: "./media/characters/geta/front.svg"
  4351. }
  4352. }
  4353. },
  4354. [
  4355. {
  4356. name: "Micro",
  4357. height: math.unit(3, "inches"),
  4358. default: true
  4359. },
  4360. {
  4361. name: "Normal",
  4362. height: math.unit(5 + 5 / 12, "feet")
  4363. }
  4364. ]
  4365. ))
  4366. characterMakers.push(() => makeCharacter(
  4367. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4368. {
  4369. front: {
  4370. height: math.unit(6, "feet"),
  4371. weight: math.unit(300, "lbs"),
  4372. name: "Front",
  4373. image: {
  4374. source: "./media/characters/tyrnn/front.svg"
  4375. }
  4376. }
  4377. },
  4378. [
  4379. {
  4380. name: "Main Height",
  4381. height: math.unit(355, "feet"),
  4382. default: true
  4383. },
  4384. {
  4385. name: "Fave. Height",
  4386. height: math.unit(2400, "feet")
  4387. }
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4392. {
  4393. front: {
  4394. height: math.unit(6, "feet"),
  4395. weight: math.unit(300, "lbs"),
  4396. name: "Front",
  4397. image: {
  4398. source: "./media/characters/appledectomy/front.svg"
  4399. }
  4400. }
  4401. },
  4402. [
  4403. {
  4404. name: "Macro",
  4405. height: math.unit(2500, "feet")
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(50, "miles"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Gigamacro",
  4414. height: math.unit(5000, "miles")
  4415. },
  4416. {
  4417. name: "Teramacro",
  4418. height: math.unit(250000, "miles")
  4419. },
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4424. {
  4425. front: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(200, "lbs"),
  4428. name: "Front",
  4429. image: {
  4430. source: "./media/characters/vulpes/front.svg",
  4431. extra: 573 / 543,
  4432. bottom: 0.033
  4433. }
  4434. },
  4435. side: {
  4436. height: math.unit(6, "feet"),
  4437. weight: math.unit(200, "lbs"),
  4438. name: "Side",
  4439. image: {
  4440. source: "./media/characters/vulpes/side.svg",
  4441. extra: 577 / 549,
  4442. bottom: 11 / 588
  4443. }
  4444. },
  4445. back: {
  4446. height: math.unit(6, "feet"),
  4447. weight: math.unit(200, "lbs"),
  4448. name: "Back",
  4449. image: {
  4450. source: "./media/characters/vulpes/back.svg",
  4451. extra: 573 / 549,
  4452. bottom: 20 / 593
  4453. }
  4454. },
  4455. feet: {
  4456. height: math.unit(1.276, "feet"),
  4457. name: "Feet",
  4458. image: {
  4459. source: "./media/characters/vulpes/feet.svg"
  4460. }
  4461. },
  4462. maw: {
  4463. height: math.unit(1.18, "feet"),
  4464. name: "Maw",
  4465. image: {
  4466. source: "./media/characters/vulpes/maw.svg"
  4467. }
  4468. },
  4469. },
  4470. [
  4471. {
  4472. name: "Micro",
  4473. height: math.unit(2, "inches")
  4474. },
  4475. {
  4476. name: "Normal",
  4477. height: math.unit(6.3, "feet")
  4478. },
  4479. {
  4480. name: "Macro",
  4481. height: math.unit(850, "feet")
  4482. },
  4483. {
  4484. name: "Megamacro",
  4485. height: math.unit(7500, "feet"),
  4486. default: true
  4487. },
  4488. {
  4489. name: "Gigamacro",
  4490. height: math.unit(570000, "miles")
  4491. }
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4496. {
  4497. front: {
  4498. height: math.unit(6, "feet"),
  4499. weight: math.unit(210, "lbs"),
  4500. name: "Front",
  4501. image: {
  4502. source: "./media/characters/rain-fallen/front.svg"
  4503. }
  4504. },
  4505. side: {
  4506. height: math.unit(6, "feet"),
  4507. weight: math.unit(210, "lbs"),
  4508. name: "Side",
  4509. image: {
  4510. source: "./media/characters/rain-fallen/side.svg"
  4511. }
  4512. },
  4513. back: {
  4514. height: math.unit(6, "feet"),
  4515. weight: math.unit(210, "lbs"),
  4516. name: "Back",
  4517. image: {
  4518. source: "./media/characters/rain-fallen/back.svg"
  4519. }
  4520. },
  4521. feral: {
  4522. height: math.unit(9, "feet"),
  4523. weight: math.unit(700, "lbs"),
  4524. name: "Feral",
  4525. image: {
  4526. source: "./media/characters/rain-fallen/feral.svg"
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Meddling with Mortals",
  4533. height: math.unit(8 + 8/12, "feet")
  4534. },
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(5, "meter")
  4538. },
  4539. {
  4540. name: "Macro",
  4541. height: math.unit(150, "meter"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(278e6, "meter")
  4547. },
  4548. {
  4549. name: "Gigamacro",
  4550. height: math.unit(2e9, "meter")
  4551. },
  4552. {
  4553. name: "Teramacro",
  4554. height: math.unit(8e12, "meter")
  4555. },
  4556. {
  4557. name: "Devourer",
  4558. height: math.unit(14, "zettameters")
  4559. },
  4560. {
  4561. name: "Scarlet King",
  4562. height: math.unit(18, "yottameters")
  4563. },
  4564. {
  4565. name: "Void",
  4566. height: math.unit(1e88, "yottameters")
  4567. }
  4568. ]
  4569. ))
  4570. characterMakers.push(() => makeCharacter(
  4571. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4572. {
  4573. standing: {
  4574. height: math.unit(6, "feet"),
  4575. weight: math.unit(180, "lbs"),
  4576. name: "Standing",
  4577. image: {
  4578. source: "./media/characters/zaakira/standing.svg",
  4579. extra: 1599/1504,
  4580. bottom: 39/1638
  4581. }
  4582. },
  4583. laying: {
  4584. height: math.unit(3, "feet"),
  4585. weight: math.unit(180, "lbs"),
  4586. name: "Laying",
  4587. image: {
  4588. source: "./media/characters/zaakira/laying.svg"
  4589. }
  4590. },
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(12, "feet")
  4596. },
  4597. {
  4598. name: "Macro",
  4599. height: math.unit(279, "feet"),
  4600. default: true
  4601. }
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4606. {
  4607. femSfw: {
  4608. height: math.unit(8, "feet"),
  4609. weight: math.unit(350, "lb"),
  4610. name: "Fem",
  4611. image: {
  4612. source: "./media/characters/sigvald/fem-sfw.svg",
  4613. extra: 182 / 164,
  4614. bottom: 8.7 / 190.5
  4615. }
  4616. },
  4617. femNsfw: {
  4618. height: math.unit(8, "feet"),
  4619. weight: math.unit(350, "lb"),
  4620. name: "Fem (NSFW)",
  4621. image: {
  4622. source: "./media/characters/sigvald/fem-nsfw.svg",
  4623. extra: 182 / 164,
  4624. bottom: 8.7 / 190.5
  4625. }
  4626. },
  4627. maleNsfw: {
  4628. height: math.unit(8, "feet"),
  4629. weight: math.unit(350, "lb"),
  4630. name: "Male (NSFW)",
  4631. image: {
  4632. source: "./media/characters/sigvald/male-nsfw.svg",
  4633. extra: 182 / 164,
  4634. bottom: 8.7 / 190.5
  4635. }
  4636. },
  4637. hermNsfw: {
  4638. height: math.unit(8, "feet"),
  4639. weight: math.unit(350, "lb"),
  4640. name: "Herm (NSFW)",
  4641. image: {
  4642. source: "./media/characters/sigvald/herm-nsfw.svg",
  4643. extra: 182 / 164,
  4644. bottom: 8.7 / 190.5
  4645. }
  4646. },
  4647. dick: {
  4648. height: math.unit(2.36, "feet"),
  4649. name: "Dick",
  4650. image: {
  4651. source: "./media/characters/sigvald/dick.svg"
  4652. }
  4653. },
  4654. eye: {
  4655. height: math.unit(0.31, "feet"),
  4656. name: "Eye",
  4657. image: {
  4658. source: "./media/characters/sigvald/eye.svg"
  4659. }
  4660. },
  4661. mouth: {
  4662. height: math.unit(0.92, "feet"),
  4663. name: "Mouth",
  4664. image: {
  4665. source: "./media/characters/sigvald/mouth.svg"
  4666. }
  4667. },
  4668. paws: {
  4669. height: math.unit(2.2, "feet"),
  4670. name: "Paws",
  4671. image: {
  4672. source: "./media/characters/sigvald/paws.svg"
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(8, "feet")
  4680. },
  4681. {
  4682. name: "Large",
  4683. height: math.unit(12, "feet")
  4684. },
  4685. {
  4686. name: "Larger",
  4687. height: math.unit(20, "feet")
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(150, "feet")
  4692. },
  4693. {
  4694. name: "Macro+",
  4695. height: math.unit(200, "feet"),
  4696. default: true
  4697. },
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4702. {
  4703. side: {
  4704. height: math.unit(12, "feet"),
  4705. weight: math.unit(2000, "kg"),
  4706. name: "Side",
  4707. image: {
  4708. source: "./media/characters/scott/side.svg",
  4709. extra: 754 / 724,
  4710. bottom: 0.069
  4711. }
  4712. },
  4713. upright: {
  4714. height: math.unit(12, "feet"),
  4715. weight: math.unit(2000, "kg"),
  4716. name: "Upright",
  4717. image: {
  4718. source: "./media/characters/scott/upright.svg",
  4719. extra: 3881 / 3722,
  4720. bottom: 0.05
  4721. }
  4722. },
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(12, "feet"),
  4728. default: true
  4729. },
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4734. {
  4735. side: {
  4736. height: math.unit(8, "meters"),
  4737. weight: math.unit(84755, "lbs"),
  4738. name: "Side",
  4739. image: {
  4740. source: "./media/characters/tobias/side.svg",
  4741. extra: 1474 / 1096,
  4742. bottom: 38.9 / 1513.1235
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Normal",
  4749. height: math.unit(8, "meters"),
  4750. default: true
  4751. },
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4756. {
  4757. front: {
  4758. height: math.unit(5.5, "feet"),
  4759. weight: math.unit(400, "lbs"),
  4760. name: "Front",
  4761. image: {
  4762. source: "./media/characters/kieran/front.svg",
  4763. extra: 2694 / 2364,
  4764. bottom: 217 / 2908
  4765. }
  4766. },
  4767. side: {
  4768. height: math.unit(5.5, "feet"),
  4769. weight: math.unit(400, "lbs"),
  4770. name: "Side",
  4771. image: {
  4772. source: "./media/characters/kieran/side.svg",
  4773. extra: 875 / 777,
  4774. bottom: 84.6 / 959
  4775. }
  4776. },
  4777. },
  4778. [
  4779. {
  4780. name: "Normal",
  4781. height: math.unit(5.5, "feet"),
  4782. default: true
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4788. {
  4789. side: {
  4790. height: math.unit(2, "meters"),
  4791. weight: math.unit(70, "kg"),
  4792. name: "Side",
  4793. image: {
  4794. source: "./media/characters/sanya/side.svg",
  4795. bottom: 0.02,
  4796. extra: 1.02
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Small",
  4803. height: math.unit(2, "meters")
  4804. },
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3, "meters")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(16, "meters"),
  4812. default: true
  4813. },
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(2, "meters"),
  4821. weight: math.unit(120, "kg"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/miranda/front.svg",
  4825. extra: 195 / 185,
  4826. bottom: 10.9 / 206.5
  4827. }
  4828. },
  4829. back: {
  4830. height: math.unit(2, "meters"),
  4831. weight: math.unit(120, "kg"),
  4832. name: "Back",
  4833. image: {
  4834. source: "./media/characters/miranda/back.svg",
  4835. extra: 201 / 193,
  4836. bottom: 2.3 / 203.7
  4837. }
  4838. },
  4839. },
  4840. [
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(10, "feet"),
  4844. default: true
  4845. }
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "James", species: ["deer"], tags: ["anthro"] },
  4850. {
  4851. side: {
  4852. height: math.unit(2, "meters"),
  4853. weight: math.unit(100, "kg"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/james/front.svg",
  4857. extra: 10 / 8.5
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Normal",
  4864. height: math.unit(8.5, "feet"),
  4865. default: true
  4866. }
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4871. {
  4872. side: {
  4873. height: math.unit(9.5, "feet"),
  4874. weight: math.unit(2500, "lbs"),
  4875. name: "Side",
  4876. image: {
  4877. source: "./media/characters/heather/side.svg"
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Normal",
  4884. height: math.unit(9.5, "feet"),
  4885. default: true
  4886. }
  4887. ]
  4888. ))
  4889. characterMakers.push(() => makeCharacter(
  4890. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4891. {
  4892. side: {
  4893. height: math.unit(6.5, "feet"),
  4894. weight: math.unit(400, "lbs"),
  4895. name: "Side",
  4896. image: {
  4897. source: "./media/characters/lukas/side.svg",
  4898. extra: 7.25 / 6.5
  4899. }
  4900. },
  4901. },
  4902. [
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(6.5, "feet"),
  4906. default: true
  4907. }
  4908. ]
  4909. ))
  4910. characterMakers.push(() => makeCharacter(
  4911. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4912. {
  4913. side: {
  4914. height: math.unit(5, "feet"),
  4915. weight: math.unit(3000, "lbs"),
  4916. name: "Side",
  4917. image: {
  4918. source: "./media/characters/louise/side.svg"
  4919. }
  4920. },
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(5, "feet"),
  4926. default: true
  4927. }
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4932. {
  4933. side: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(150, "lbs"),
  4936. name: "Side",
  4937. image: {
  4938. source: "./media/characters/ramona/side.svg"
  4939. }
  4940. },
  4941. },
  4942. [
  4943. {
  4944. name: "Normal",
  4945. height: math.unit(5.3, "meters"),
  4946. default: true
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(20, "stories")
  4951. },
  4952. {
  4953. name: "Macro+",
  4954. height: math.unit(50, "stories")
  4955. },
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4960. {
  4961. standing: {
  4962. height: math.unit(5.75, "feet"),
  4963. weight: math.unit(160, "lbs"),
  4964. name: "Standing",
  4965. image: {
  4966. source: "./media/characters/deerpuff/standing.svg",
  4967. extra: 682 / 624
  4968. }
  4969. },
  4970. sitting: {
  4971. height: math.unit(5.75 / 1.79, "feet"),
  4972. weight: math.unit(160, "lbs"),
  4973. name: "Sitting",
  4974. image: {
  4975. source: "./media/characters/deerpuff/sitting.svg",
  4976. bottom: 44 / 400,
  4977. extra: 1
  4978. }
  4979. },
  4980. taurLaying: {
  4981. height: math.unit(6, "feet"),
  4982. weight: math.unit(400, "lbs"),
  4983. name: "Taur (Laying)",
  4984. image: {
  4985. source: "./media/characters/deerpuff/taur-laying.svg"
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Puffball",
  4992. height: math.unit(6, "inches")
  4993. },
  4994. {
  4995. name: "Normalpuff",
  4996. height: math.unit(5.75, "feet")
  4997. },
  4998. {
  4999. name: "Macropuff",
  5000. height: math.unit(1500, "feet"),
  5001. default: true
  5002. },
  5003. {
  5004. name: "Megapuff",
  5005. height: math.unit(500, "miles")
  5006. },
  5007. {
  5008. name: "Gigapuff",
  5009. height: math.unit(250000, "miles")
  5010. },
  5011. {
  5012. name: "Omegapuff",
  5013. height: math.unit(1000, "lightyears")
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5019. {
  5020. stomping: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(170, "lbs"),
  5023. name: "Stomping",
  5024. image: {
  5025. source: "./media/characters/vivian/stomping.svg"
  5026. }
  5027. },
  5028. sitting: {
  5029. height: math.unit(6 / 1.75, "feet"),
  5030. weight: math.unit(170, "lbs"),
  5031. name: "Sitting",
  5032. image: {
  5033. source: "./media/characters/vivian/sitting.svg",
  5034. bottom: 1 / 6.4,
  5035. extra: 1,
  5036. }
  5037. },
  5038. },
  5039. [
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(7, "feet"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(10, "stories")
  5048. },
  5049. {
  5050. name: "Macro+",
  5051. height: math.unit(30, "stories")
  5052. },
  5053. {
  5054. name: "Megamacro",
  5055. height: math.unit(10, "miles")
  5056. },
  5057. {
  5058. name: "Megamacro+",
  5059. height: math.unit(2750000, "meters")
  5060. },
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5065. {
  5066. front: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(160, "lbs"),
  5069. name: "Front",
  5070. image: {
  5071. source: "./media/characters/prince/front.svg",
  5072. extra: 3400 / 3000
  5073. }
  5074. },
  5075. jumping: {
  5076. height: math.unit(6, "feet"),
  5077. weight: math.unit(160, "lbs"),
  5078. name: "Jumping",
  5079. image: {
  5080. source: "./media/characters/prince/jump.svg",
  5081. extra: 2555 / 2134
  5082. }
  5083. },
  5084. },
  5085. [
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(7.75, "feet"),
  5089. default: true
  5090. },
  5091. {
  5092. name: "Not cute",
  5093. height: math.unit(17, "feet")
  5094. },
  5095. {
  5096. name: "I said NOT",
  5097. height: math.unit(91, "feet")
  5098. },
  5099. {
  5100. name: "Please stop",
  5101. height: math.unit(560, "feet")
  5102. },
  5103. {
  5104. name: "What have you done",
  5105. height: math.unit(2200, "feet")
  5106. },
  5107. {
  5108. name: "Deer God",
  5109. height: math.unit(3.6, "miles")
  5110. },
  5111. ]
  5112. ))
  5113. characterMakers.push(() => makeCharacter(
  5114. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5115. {
  5116. standing: {
  5117. height: math.unit(6, "feet"),
  5118. weight: math.unit(300, "lbs"),
  5119. name: "Standing",
  5120. image: {
  5121. source: "./media/characters/psymon/standing.svg",
  5122. extra: 1888 / 1810,
  5123. bottom: 0.05
  5124. }
  5125. },
  5126. slithering: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(300, "lbs"),
  5129. name: "Slithering",
  5130. image: {
  5131. source: "./media/characters/psymon/slithering.svg",
  5132. extra: 1330 / 1224
  5133. }
  5134. },
  5135. slitheringAlt: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(300, "lbs"),
  5138. name: "Slithering (Alt)",
  5139. image: {
  5140. source: "./media/characters/psymon/slithering-alt.svg",
  5141. extra: 1330 / 1224
  5142. }
  5143. },
  5144. },
  5145. [
  5146. {
  5147. name: "Normal",
  5148. height: math.unit(11.25, "feet"),
  5149. default: true
  5150. },
  5151. {
  5152. name: "Large",
  5153. height: math.unit(27, "feet")
  5154. },
  5155. {
  5156. name: "Giant",
  5157. height: math.unit(87, "feet")
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(365, "feet")
  5162. },
  5163. {
  5164. name: "Megamacro",
  5165. height: math.unit(3, "miles")
  5166. },
  5167. {
  5168. name: "World Serpent",
  5169. height: math.unit(8000, "miles")
  5170. },
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5175. {
  5176. front: {
  5177. height: math.unit(6, "feet"),
  5178. weight: math.unit(180, "lbs"),
  5179. name: "Front",
  5180. image: {
  5181. source: "./media/characters/daimos/front.svg",
  5182. extra: 4160 / 3897,
  5183. bottom: 0.021
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(8, "feet"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Big Dog",
  5195. height: math.unit(22, "feet")
  5196. },
  5197. {
  5198. name: "Macro",
  5199. height: math.unit(127, "feet")
  5200. },
  5201. {
  5202. name: "Megamacro",
  5203. height: math.unit(3600, "feet")
  5204. },
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5209. {
  5210. side: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(180, "lbs"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/blake/side.svg",
  5216. extra: 1212 / 1120,
  5217. bottom: 0.05
  5218. }
  5219. },
  5220. crouched: {
  5221. height: math.unit(6 * 0.57, "feet"),
  5222. weight: math.unit(180, "lbs"),
  5223. name: "Crouched",
  5224. image: {
  5225. source: "./media/characters/blake/crouched.svg",
  5226. extra: 840 / 587,
  5227. bottom: 0.04
  5228. }
  5229. },
  5230. bent: {
  5231. height: math.unit(6 * 0.75, "feet"),
  5232. weight: math.unit(180, "lbs"),
  5233. name: "Bent",
  5234. image: {
  5235. source: "./media/characters/blake/bent.svg",
  5236. extra: 592 / 544,
  5237. bottom: 0.035
  5238. }
  5239. },
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(8 + 1 / 6, "feet"),
  5245. default: true
  5246. },
  5247. {
  5248. name: "Big Backside",
  5249. height: math.unit(37, "feet")
  5250. },
  5251. {
  5252. name: "Subway Shredder",
  5253. height: math.unit(72, "feet")
  5254. },
  5255. {
  5256. name: "City Carver",
  5257. height: math.unit(1675, "feet")
  5258. },
  5259. {
  5260. name: "Tectonic Tweaker",
  5261. height: math.unit(2300, "miles")
  5262. },
  5263. ]
  5264. ))
  5265. characterMakers.push(() => makeCharacter(
  5266. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5267. {
  5268. front: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(180, "lbs"),
  5271. name: "Front",
  5272. image: {
  5273. source: "./media/characters/guisetto/front.svg",
  5274. extra: 856 / 817,
  5275. bottom: 0.06
  5276. }
  5277. },
  5278. airborne: {
  5279. height: math.unit(6, "feet"),
  5280. weight: math.unit(180, "lbs"),
  5281. name: "Airborne",
  5282. image: {
  5283. source: "./media/characters/guisetto/airborne.svg",
  5284. extra: 584 / 525
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(10 + 11 / 12, "feet"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Large",
  5296. height: math.unit(35, "feet")
  5297. },
  5298. {
  5299. name: "Macro",
  5300. height: math.unit(475, "feet")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5306. {
  5307. front: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(180, "lbs"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/luxor/front.svg",
  5313. extra: 2940 / 2152
  5314. }
  5315. },
  5316. back: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(180, "lbs"),
  5319. name: "Back",
  5320. image: {
  5321. source: "./media/characters/luxor/back.svg",
  5322. extra: 1083 / 960
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(5 + 5 / 6, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Lamp",
  5334. height: math.unit(50, "feet")
  5335. },
  5336. {
  5337. name: "Lämp",
  5338. height: math.unit(300, "feet")
  5339. },
  5340. {
  5341. name: "The sun is a lamp",
  5342. height: math.unit(250000, "miles")
  5343. },
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5348. {
  5349. front: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(50, "lbs"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/huoyan/front.svg"
  5355. }
  5356. },
  5357. side: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(180, "lbs"),
  5360. name: "Side",
  5361. image: {
  5362. source: "./media/characters/huoyan/side.svg"
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Chef",
  5369. height: math.unit(9, "feet")
  5370. },
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(65, "feet"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(780, "feet")
  5379. },
  5380. {
  5381. name: "Flaming Mountain",
  5382. height: math.unit(4.8, "miles")
  5383. },
  5384. {
  5385. name: "Celestial",
  5386. height: math.unit(765000, "miles")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(5 + 3 / 4, "feet"),
  5395. weight: math.unit(120, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/tails/front.svg"
  5399. }
  5400. }
  5401. },
  5402. [
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(5 + 3 / 4, "feet"),
  5406. default: true
  5407. }
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5412. {
  5413. front: {
  5414. height: math.unit(4, "feet"),
  5415. weight: math.unit(50, "lbs"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/rainy/front.svg"
  5419. }
  5420. }
  5421. },
  5422. [
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(800, "feet"),
  5426. default: true
  5427. }
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5432. {
  5433. front: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(150, "lbs"),
  5436. name: "Front",
  5437. image: {
  5438. source: "./media/characters/rainier/front.svg"
  5439. }
  5440. }
  5441. },
  5442. [
  5443. {
  5444. name: "Micro",
  5445. height: math.unit(2, "mm"),
  5446. default: true
  5447. }
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5452. {
  5453. front: {
  5454. height: math.unit(6, "feet"),
  5455. weight: math.unit(180, "lbs"),
  5456. name: "Front",
  5457. image: {
  5458. source: "./media/characters/andy/front.svg"
  5459. }
  5460. }
  5461. },
  5462. [
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(8, "feet"),
  5466. default: true
  5467. },
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(1000, "feet")
  5471. },
  5472. {
  5473. name: "Megamacro",
  5474. height: math.unit(5, "miles")
  5475. },
  5476. {
  5477. name: "Gigamacro",
  5478. height: math.unit(5000, "miles")
  5479. },
  5480. ]
  5481. ))
  5482. characterMakers.push(() => makeCharacter(
  5483. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5484. {
  5485. front: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(210, "lbs"),
  5488. name: "Front",
  5489. image: {
  5490. source: "./media/characters/cimmaron/front-sfw.svg",
  5491. extra: 701 / 676,
  5492. bottom: 0.046
  5493. }
  5494. },
  5495. back: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(210, "lbs"),
  5498. name: "Back",
  5499. image: {
  5500. source: "./media/characters/cimmaron/back-sfw.svg",
  5501. extra: 701 / 676,
  5502. bottom: 0.046
  5503. }
  5504. },
  5505. frontNsfw: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(210, "lbs"),
  5508. name: "Front (NSFW)",
  5509. image: {
  5510. source: "./media/characters/cimmaron/front-nsfw.svg",
  5511. extra: 701 / 676,
  5512. bottom: 0.046
  5513. }
  5514. },
  5515. backNsfw: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(210, "lbs"),
  5518. name: "Back (NSFW)",
  5519. image: {
  5520. source: "./media/characters/cimmaron/back-nsfw.svg",
  5521. extra: 701 / 676,
  5522. bottom: 0.046
  5523. }
  5524. },
  5525. dick: {
  5526. height: math.unit(1.714, "feet"),
  5527. name: "Dick",
  5528. image: {
  5529. source: "./media/characters/cimmaron/dick.svg"
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(6, "feet"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Macro Mayor",
  5541. height: math.unit(350, "meters")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(200, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/akari/front.svg",
  5554. extra: 962 / 901,
  5555. bottom: 0.04
  5556. }
  5557. }
  5558. },
  5559. [
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(5, "inches"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(7, "feet")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(140, "lbs"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/cynosura/front.svg",
  5580. extra: 896 / 847
  5581. }
  5582. },
  5583. back: {
  5584. height: math.unit(6, "feet"),
  5585. weight: math.unit(140, "lbs"),
  5586. name: "Back",
  5587. image: {
  5588. source: "./media/characters/cynosura/back.svg",
  5589. extra: 1365 / 1250
  5590. }
  5591. },
  5592. },
  5593. [
  5594. {
  5595. name: "Micro",
  5596. height: math.unit(4, "inches")
  5597. },
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(5.75, "feet"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Tall",
  5605. height: math.unit(10, "feet")
  5606. },
  5607. {
  5608. name: "Big",
  5609. height: math.unit(20, "feet")
  5610. },
  5611. {
  5612. name: "Macro",
  5613. height: math.unit(50, "feet")
  5614. },
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(13 + 2/12, "feet"),
  5622. weight: math.unit(800, "kg"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/gin/front.svg",
  5626. extra: 1312/1191,
  5627. bottom: 45/1357
  5628. }
  5629. },
  5630. mouth: {
  5631. height: math.unit(2.39 * 1.8, "feet"),
  5632. name: "Mouth",
  5633. image: {
  5634. source: "./media/characters/gin/mouth.svg"
  5635. }
  5636. },
  5637. hand: {
  5638. height: math.unit(1.57 * 2.19, "feet"),
  5639. name: "Hand",
  5640. image: {
  5641. source: "./media/characters/gin/hand.svg"
  5642. }
  5643. },
  5644. foot: {
  5645. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5646. name: "Foot",
  5647. image: {
  5648. source: "./media/characters/gin/foot.svg"
  5649. }
  5650. },
  5651. sole: {
  5652. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5653. name: "Sole",
  5654. image: {
  5655. source: "./media/characters/gin/sole.svg"
  5656. }
  5657. },
  5658. },
  5659. [
  5660. {
  5661. name: "Very Small",
  5662. height: math.unit(13 + 2 / 12, "feet")
  5663. },
  5664. {
  5665. name: "Micro",
  5666. height: math.unit(600, "miles")
  5667. },
  5668. {
  5669. name: "Regular",
  5670. height: math.unit(20, "earths"),
  5671. default: true
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(2.2, "solarradii")
  5676. },
  5677. {
  5678. name: "Teramacro",
  5679. height: math.unit(1.2, "galaxies")
  5680. },
  5681. {
  5682. name: "Omegamacro",
  5683. height: math.unit(200, "universes")
  5684. },
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5689. {
  5690. front: {
  5691. height: math.unit(6 + 1 / 6, "feet"),
  5692. weight: math.unit(178, "lbs"),
  5693. name: "Front",
  5694. image: {
  5695. source: "./media/characters/guy/front.svg"
  5696. }
  5697. }
  5698. },
  5699. [
  5700. {
  5701. name: "Normal",
  5702. height: math.unit(6 + 1 / 6, "feet"),
  5703. default: true
  5704. },
  5705. {
  5706. name: "Large",
  5707. height: math.unit(25 + 7 / 12, "feet")
  5708. },
  5709. {
  5710. name: "Macro",
  5711. height: math.unit(60 + 9 / 12, "feet")
  5712. },
  5713. {
  5714. name: "Macro+",
  5715. height: math.unit(246, "feet")
  5716. },
  5717. {
  5718. name: "Macro++",
  5719. height: math.unit(878, "feet")
  5720. }
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5725. {
  5726. front: {
  5727. height: math.unit(9, "feet"),
  5728. weight: math.unit(800, "lbs"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/tiberius/front.svg",
  5732. extra: 2295 / 2071
  5733. }
  5734. },
  5735. back: {
  5736. height: math.unit(9, "feet"),
  5737. weight: math.unit(800, "lbs"),
  5738. name: "Back",
  5739. image: {
  5740. source: "./media/characters/tiberius/back.svg",
  5741. extra: 2373 / 2160
  5742. }
  5743. },
  5744. },
  5745. [
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(9, "feet"),
  5749. default: true
  5750. }
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5755. {
  5756. front: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(600, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/surgo/front.svg",
  5762. extra: 3591 / 2227
  5763. }
  5764. },
  5765. back: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(600, "lbs"),
  5768. name: "Back",
  5769. image: {
  5770. source: "./media/characters/surgo/back.svg",
  5771. extra: 3557 / 2228
  5772. }
  5773. },
  5774. laying: {
  5775. height: math.unit(6 * 0.85, "feet"),
  5776. weight: math.unit(600, "lbs"),
  5777. name: "Laying",
  5778. image: {
  5779. source: "./media/characters/surgo/laying.svg"
  5780. }
  5781. },
  5782. },
  5783. [
  5784. {
  5785. name: "Normal",
  5786. height: math.unit(6, "feet"),
  5787. default: true
  5788. }
  5789. ]
  5790. ))
  5791. characterMakers.push(() => makeCharacter(
  5792. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5793. {
  5794. side: {
  5795. height: math.unit(6, "feet"),
  5796. weight: math.unit(150, "lbs"),
  5797. name: "Side",
  5798. image: {
  5799. source: "./media/characters/cibus/side.svg",
  5800. extra: 800 / 400
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(6, "feet"),
  5808. default: true
  5809. }
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(6, "feet"),
  5817. weight: math.unit(240, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/nibbles/front.svg"
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(6, "feet"),
  5825. weight: math.unit(240, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/nibbles/side.svg"
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(9, "feet"),
  5836. default: true
  5837. }
  5838. ]
  5839. ))
  5840. characterMakers.push(() => makeCharacter(
  5841. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5842. {
  5843. side: {
  5844. height: math.unit(5 + 1 / 6, "feet"),
  5845. weight: math.unit(130, "lbs"),
  5846. name: "Side",
  5847. image: {
  5848. source: "./media/characters/rikky/side.svg",
  5849. extra: 851 / 801
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(5 + 1 / 6, "feet")
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(152, "feet"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Megamacro",
  5865. height: math.unit(7, "miles")
  5866. }
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5871. {
  5872. side: {
  5873. height: math.unit(370, "cm"),
  5874. weight: math.unit(350, "lbs"),
  5875. name: "Side",
  5876. image: {
  5877. source: "./media/characters/malfressa/side.svg"
  5878. }
  5879. },
  5880. walking: {
  5881. height: math.unit(370, "cm"),
  5882. weight: math.unit(350, "lbs"),
  5883. name: "Walking",
  5884. image: {
  5885. source: "./media/characters/malfressa/walking.svg"
  5886. }
  5887. },
  5888. feral: {
  5889. height: math.unit(2500, "cm"),
  5890. weight: math.unit(100000, "lbs"),
  5891. name: "Feral",
  5892. image: {
  5893. source: "./media/characters/malfressa/feral.svg",
  5894. extra: 2108 / 837,
  5895. bottom: 0.02
  5896. }
  5897. },
  5898. },
  5899. [
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(370, "cm")
  5903. },
  5904. {
  5905. name: "Macro",
  5906. height: math.unit(300, "meters"),
  5907. default: true
  5908. }
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(6, "feet"),
  5916. weight: math.unit(60, "kg"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/jaro/front.svg"
  5920. }
  5921. },
  5922. back: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(60, "kg"),
  5925. name: "Back",
  5926. image: {
  5927. source: "./media/characters/jaro/back.svg"
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Micro",
  5934. height: math.unit(7, "inches")
  5935. },
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(5.5, "feet"),
  5939. default: true
  5940. },
  5941. {
  5942. name: "Minimacro",
  5943. height: math.unit(20, "feet")
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(200, "meters")
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(195, "lb"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/rogue/front.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(90, "feet"),
  5967. default: true
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(5 + 8 / 12, "feet"),
  5976. weight: math.unit(140, "lb"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/piper/front.svg",
  5980. extra: 3948/3655,
  5981. bottom: 0/3948
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Micro",
  5988. height: math.unit(2, "inches")
  5989. },
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(5 + 8 / 12, "feet")
  5993. },
  5994. {
  5995. name: "Macro",
  5996. height: math.unit(250, "feet"),
  5997. default: true
  5998. },
  5999. {
  6000. name: "Megamacro",
  6001. height: math.unit(7, "miles")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6007. {
  6008. front: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(220, "lb"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/gemini/front.svg"
  6014. }
  6015. },
  6016. back: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(220, "lb"),
  6019. name: "Back",
  6020. image: {
  6021. source: "./media/characters/gemini/back.svg"
  6022. }
  6023. },
  6024. kneeling: {
  6025. height: math.unit(6 / 1.5, "feet"),
  6026. weight: math.unit(220, "lb"),
  6027. name: "Kneeling",
  6028. image: {
  6029. source: "./media/characters/gemini/kneeling.svg",
  6030. bottom: 0.02
  6031. }
  6032. },
  6033. },
  6034. [
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(300, "meters"),
  6038. default: true
  6039. },
  6040. {
  6041. name: "Megamacro",
  6042. height: math.unit(6900, "meters")
  6043. },
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6048. {
  6049. anthro: {
  6050. height: math.unit(2.35, "meters"),
  6051. weight: math.unit(73, "kg"),
  6052. name: "Anthro",
  6053. image: {
  6054. source: "./media/characters/alicia/anthro.svg",
  6055. extra: 2571 / 2385,
  6056. bottom: 75 / 2648
  6057. }
  6058. },
  6059. paw: {
  6060. height: math.unit(1.32, "feet"),
  6061. name: "Paw",
  6062. image: {
  6063. source: "./media/characters/alicia/paw.svg"
  6064. }
  6065. },
  6066. feral: {
  6067. height: math.unit(1.69, "meters"),
  6068. weight: math.unit(73, "kg"),
  6069. name: "Feral",
  6070. image: {
  6071. source: "./media/characters/alicia/feral.svg",
  6072. extra: 2123 / 1715,
  6073. bottom: 222 / 2349
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(2.35, "meters")
  6081. },
  6082. {
  6083. name: "Macro",
  6084. height: math.unit(60, "meters"),
  6085. default: true
  6086. },
  6087. {
  6088. name: "Megamacro",
  6089. height: math.unit(10000, "kilometers")
  6090. },
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6095. {
  6096. front: {
  6097. height: math.unit(7, "feet"),
  6098. weight: math.unit(250, "lbs"),
  6099. name: "Front",
  6100. image: {
  6101. source: "./media/characters/archy/front.svg"
  6102. }
  6103. }
  6104. },
  6105. [
  6106. {
  6107. name: "Micro",
  6108. height: math.unit(1, "inch")
  6109. },
  6110. {
  6111. name: "Shorty",
  6112. height: math.unit(5, "feet")
  6113. },
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(7, "feet")
  6117. },
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(600, "meters"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Megamacro",
  6125. height: math.unit(1, "mile")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(1.65, "meters"),
  6134. weight: math.unit(74, "kg"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/berri/front.svg",
  6138. extra: 857 / 837,
  6139. bottom: 18 / 877
  6140. }
  6141. },
  6142. bum: {
  6143. height: math.unit(1.46, "feet"),
  6144. name: "Bum",
  6145. image: {
  6146. source: "./media/characters/berri/bum.svg"
  6147. }
  6148. },
  6149. mouth: {
  6150. height: math.unit(0.44, "feet"),
  6151. name: "Mouth",
  6152. image: {
  6153. source: "./media/characters/berri/mouth.svg"
  6154. }
  6155. },
  6156. paw: {
  6157. height: math.unit(0.826, "feet"),
  6158. name: "Paw",
  6159. image: {
  6160. source: "./media/characters/berri/paw.svg"
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(1.65, "meters")
  6168. },
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(60, "m"),
  6172. default: true
  6173. },
  6174. {
  6175. name: "Megamacro",
  6176. height: math.unit(9.213, "km")
  6177. },
  6178. {
  6179. name: "Planet Eater",
  6180. height: math.unit(489, "megameters")
  6181. },
  6182. {
  6183. name: "Teramacro",
  6184. height: math.unit(2471635000000, "meters")
  6185. },
  6186. {
  6187. name: "Examacro",
  6188. height: math.unit(8.0624e+26, "meters")
  6189. }
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(1.72, "meters"),
  6197. weight: math.unit(68, "kg"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/lexi/front.svg"
  6201. }
  6202. }
  6203. },
  6204. [
  6205. {
  6206. name: "Very Smol",
  6207. height: math.unit(10, "mm")
  6208. },
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(6.8, "cm"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(1.72, "m")
  6217. }
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(1.69, "meters"),
  6225. weight: math.unit(68, "kg"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/martin/front.svg",
  6229. extra: 596 / 581
  6230. }
  6231. }
  6232. },
  6233. [
  6234. {
  6235. name: "Micro",
  6236. height: math.unit(6.85, "cm"),
  6237. default: true
  6238. },
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(1.69, "m")
  6242. }
  6243. ]
  6244. ))
  6245. characterMakers.push(() => makeCharacter(
  6246. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6247. {
  6248. front: {
  6249. height: math.unit(1.69, "meters"),
  6250. weight: math.unit(68, "kg"),
  6251. name: "Front",
  6252. image: {
  6253. source: "./media/characters/juno/front.svg"
  6254. }
  6255. }
  6256. },
  6257. [
  6258. {
  6259. name: "Micro",
  6260. height: math.unit(7, "cm")
  6261. },
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(1.89, "m")
  6265. },
  6266. {
  6267. name: "Macro",
  6268. height: math.unit(353, "meters"),
  6269. default: true
  6270. }
  6271. ]
  6272. ))
  6273. characterMakers.push(() => makeCharacter(
  6274. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6275. {
  6276. front: {
  6277. height: math.unit(1.93, "meters"),
  6278. weight: math.unit(83, "kg"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/samantha/front.svg"
  6282. }
  6283. },
  6284. frontClothed: {
  6285. height: math.unit(1.93, "meters"),
  6286. weight: math.unit(83, "kg"),
  6287. name: "Front (Clothed)",
  6288. image: {
  6289. source: "./media/characters/samantha/front-clothed.svg"
  6290. }
  6291. },
  6292. back: {
  6293. height: math.unit(1.93, "meters"),
  6294. weight: math.unit(83, "kg"),
  6295. name: "Back",
  6296. image: {
  6297. source: "./media/characters/samantha/back.svg"
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(1.93, "m")
  6305. },
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(74, "meters"),
  6309. default: true
  6310. },
  6311. {
  6312. name: "Macro+",
  6313. height: math.unit(223, "meters"),
  6314. },
  6315. {
  6316. name: "Megamacro",
  6317. height: math.unit(8381, "meters"),
  6318. },
  6319. {
  6320. name: "Megamacro+",
  6321. height: math.unit(12000, "kilometers")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(1.92, "meters"),
  6330. weight: math.unit(80, "kg"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/dr-clay/front.svg"
  6334. }
  6335. },
  6336. frontClothed: {
  6337. height: math.unit(1.92, "meters"),
  6338. weight: math.unit(80, "kg"),
  6339. name: "Front (Clothed)",
  6340. image: {
  6341. source: "./media/characters/dr-clay/front-clothed.svg"
  6342. }
  6343. }
  6344. },
  6345. [
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(1.92, "m")
  6349. },
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(214, "meters"),
  6353. default: true
  6354. },
  6355. {
  6356. name: "Macro+",
  6357. height: math.unit(12.237, "meters"),
  6358. },
  6359. {
  6360. name: "Megamacro",
  6361. height: math.unit(557, "megameters"),
  6362. },
  6363. {
  6364. name: "Unimaginable",
  6365. height: math.unit(120e9, "lightyears")
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(2, "meters"),
  6374. weight: math.unit(80, "kg"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6378. }
  6379. }
  6380. },
  6381. [
  6382. {
  6383. name: "Teramacro",
  6384. height: math.unit(500000, "lightyears"),
  6385. default: true
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6391. {
  6392. front: {
  6393. height: math.unit(2, "meters"),
  6394. weight: math.unit(150, "kg"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/vemus/front.svg",
  6398. extra: 1074/936,
  6399. bottom: 23/1097
  6400. }
  6401. }
  6402. },
  6403. [
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(3.75, "meters"),
  6407. default: true
  6408. },
  6409. {
  6410. name: "Big",
  6411. height: math.unit(8, "meters")
  6412. },
  6413. {
  6414. name: "Macro",
  6415. height: math.unit(100, "meters")
  6416. },
  6417. {
  6418. name: "Macro+",
  6419. height: math.unit(1500, "meters")
  6420. },
  6421. {
  6422. name: "Stellar",
  6423. height: math.unit(14e8, "meters")
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(2, "meters"),
  6432. weight: math.unit(70, "kg"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/beherit/front.svg",
  6436. extra: 1408 / 1242
  6437. }
  6438. }
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(6, "feet")
  6444. },
  6445. {
  6446. name: "Lorg",
  6447. height: math.unit(25, "feet"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Lorger",
  6452. height: math.unit(75, "feet")
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(200, "meters")
  6457. },
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6462. {
  6463. front: {
  6464. height: math.unit(2, "meters"),
  6465. weight: math.unit(150, "kg"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/everett/front.svg",
  6469. extra: 2038 / 1737,
  6470. bottom: 0.03
  6471. }
  6472. },
  6473. paw: {
  6474. height: math.unit(2 / 3.6, "meters"),
  6475. name: "Paw",
  6476. image: {
  6477. source: "./media/characters/everett/paw.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(15, "feet"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Lorg",
  6489. height: math.unit(70, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Lorger",
  6494. height: math.unit(250, "feet")
  6495. },
  6496. {
  6497. name: "Macro",
  6498. height: math.unit(500, "meters")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(2, "meters"),
  6507. weight: math.unit(86, "kg"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/rose/front.svg",
  6511. extra: 1785/1636,
  6512. bottom: 30/1815
  6513. }
  6514. },
  6515. frontSporty: {
  6516. height: math.unit(2, "meters"),
  6517. weight: math.unit(86, "kg"),
  6518. name: "Front (Sporty)",
  6519. image: {
  6520. source: "./media/characters/rose/front-sporty.svg",
  6521. extra: 350/335,
  6522. bottom: 10/360
  6523. }
  6524. },
  6525. frontAlt: {
  6526. height: math.unit(1.6, "meters"),
  6527. weight: math.unit(86, "kg"),
  6528. name: "Front (Alt)",
  6529. image: {
  6530. source: "./media/characters/rose/front-alt.svg",
  6531. extra: 299/283,
  6532. bottom: 3/302
  6533. }
  6534. },
  6535. plush: {
  6536. height: math.unit(2, "meters"),
  6537. weight: math.unit(86/3, "kg"),
  6538. name: "Plush",
  6539. image: {
  6540. source: "./media/characters/rose/plush.svg",
  6541. extra: 361/337,
  6542. bottom: 11/372
  6543. }
  6544. },
  6545. },
  6546. [
  6547. {
  6548. name: "True Micro",
  6549. height: math.unit(9, "cm")
  6550. },
  6551. {
  6552. name: "Micro",
  6553. height: math.unit(16, "cm")
  6554. },
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(1.85, "meters"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Mini-Macro",
  6562. height: math.unit(5, "meters")
  6563. },
  6564. {
  6565. name: "Macro",
  6566. height: math.unit(15, "meters")
  6567. },
  6568. {
  6569. name: "True Macro",
  6570. height: math.unit(40, "meters")
  6571. },
  6572. {
  6573. name: "City Scale",
  6574. height: math.unit(1, "km")
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(2, "meters"),
  6583. weight: math.unit(350, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/regal/front.svg"
  6587. }
  6588. },
  6589. back: {
  6590. height: math.unit(2, "meters"),
  6591. weight: math.unit(350, "lbs"),
  6592. name: "Back",
  6593. image: {
  6594. source: "./media/characters/regal/back.svg"
  6595. }
  6596. },
  6597. },
  6598. [
  6599. {
  6600. name: "Macro",
  6601. height: math.unit(350, "feet"),
  6602. default: true
  6603. }
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(4 + 11 / 12, "feet"),
  6611. weight: math.unit(100, "lbs"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/opal/front.svg"
  6615. }
  6616. },
  6617. frontAlt: {
  6618. height: math.unit(4 + 11 / 12, "feet"),
  6619. weight: math.unit(100, "lbs"),
  6620. name: "Front (Alt)",
  6621. image: {
  6622. source: "./media/characters/opal/front-alt.svg"
  6623. }
  6624. },
  6625. },
  6626. [
  6627. {
  6628. name: "Small",
  6629. height: math.unit(4 + 11 / 12, "feet")
  6630. },
  6631. {
  6632. name: "Normal",
  6633. height: math.unit(20, "feet"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Macro",
  6638. height: math.unit(120, "feet")
  6639. },
  6640. {
  6641. name: "Megamacro",
  6642. height: math.unit(80, "miles")
  6643. },
  6644. {
  6645. name: "True Size",
  6646. height: math.unit(100000, "lightyears")
  6647. },
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(200, "lbs"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/vector-wuff/front.svg"
  6659. }
  6660. }
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(2.8, "meters")
  6666. },
  6667. {
  6668. name: "Macro",
  6669. height: math.unit(450, "meters"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Megamacro",
  6674. height: math.unit(15, "kilometers")
  6675. }
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(256, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/dannik/front.svg"
  6687. }
  6688. }
  6689. },
  6690. [
  6691. {
  6692. name: "Macro",
  6693. height: math.unit(69.57, "meters"),
  6694. default: true
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(120, "lbs"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/azura-saharah/front.svg"
  6707. }
  6708. },
  6709. back: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(120, "lbs"),
  6712. name: "Back",
  6713. image: {
  6714. source: "./media/characters/azura-saharah/back.svg"
  6715. }
  6716. },
  6717. },
  6718. [
  6719. {
  6720. name: "Macro",
  6721. height: math.unit(100, "feet"),
  6722. default: true
  6723. },
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6728. {
  6729. side: {
  6730. height: math.unit(5 + 4 / 12, "feet"),
  6731. weight: math.unit(163, "lbs"),
  6732. name: "Side",
  6733. image: {
  6734. source: "./media/characters/kennedy/side.svg"
  6735. }
  6736. }
  6737. },
  6738. [
  6739. {
  6740. name: "Standard Doggo",
  6741. height: math.unit(5 + 4 / 12, "feet")
  6742. },
  6743. {
  6744. name: "Big Doggo",
  6745. height: math.unit(25 + 3 / 12, "feet"),
  6746. default: true
  6747. },
  6748. ]
  6749. ))
  6750. characterMakers.push(() => makeCharacter(
  6751. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6752. {
  6753. front: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(90, "lbs"),
  6756. name: "Front",
  6757. image: {
  6758. source: "./media/characters/odi-lunar/front.svg"
  6759. }
  6760. }
  6761. },
  6762. [
  6763. {
  6764. name: "Micro",
  6765. height: math.unit(3, "inches"),
  6766. default: true
  6767. },
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(5.5, "feet")
  6771. }
  6772. ]
  6773. ))
  6774. characterMakers.push(() => makeCharacter(
  6775. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6776. {
  6777. back: {
  6778. height: math.unit(6, "feet"),
  6779. weight: math.unit(220, "lbs"),
  6780. name: "Back",
  6781. image: {
  6782. source: "./media/characters/mandake/back.svg"
  6783. }
  6784. }
  6785. },
  6786. [
  6787. {
  6788. name: "Normal",
  6789. height: math.unit(7, "feet"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(78, "feet")
  6795. },
  6796. {
  6797. name: "Macro+",
  6798. height: math.unit(300, "meters")
  6799. },
  6800. {
  6801. name: "Macro++",
  6802. height: math.unit(2400, "feet")
  6803. },
  6804. {
  6805. name: "Megamacro",
  6806. height: math.unit(5167, "meters")
  6807. },
  6808. {
  6809. name: "Gigamacro",
  6810. height: math.unit(41769, "miles")
  6811. },
  6812. ]
  6813. ))
  6814. characterMakers.push(() => makeCharacter(
  6815. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6816. {
  6817. front: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(120, "lbs"),
  6820. name: "Front",
  6821. image: {
  6822. source: "./media/characters/yozey/front.svg"
  6823. }
  6824. },
  6825. frontAlt: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(120, "lbs"),
  6828. name: "Front (Alt)",
  6829. image: {
  6830. source: "./media/characters/yozey/front-alt.svg"
  6831. }
  6832. },
  6833. side: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(120, "lbs"),
  6836. name: "Side",
  6837. image: {
  6838. source: "./media/characters/yozey/side.svg"
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Micro",
  6845. height: math.unit(3, "inches"),
  6846. default: true
  6847. },
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(6, "feet")
  6851. }
  6852. ]
  6853. ))
  6854. characterMakers.push(() => makeCharacter(
  6855. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6856. {
  6857. front: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(103, "lbs"),
  6860. name: "Front",
  6861. image: {
  6862. source: "./media/characters/valeska-voss/front.svg"
  6863. }
  6864. }
  6865. },
  6866. [
  6867. {
  6868. name: "Mini-Sized Sub",
  6869. height: math.unit(3.1, "inches")
  6870. },
  6871. {
  6872. name: "Mid-Sized Sub",
  6873. height: math.unit(6.2, "inches")
  6874. },
  6875. {
  6876. name: "Full-Sized Sub",
  6877. height: math.unit(9.3, "inches")
  6878. },
  6879. {
  6880. name: "Normal",
  6881. height: math.unit(5 + 2 / 12, "foot"),
  6882. default: true
  6883. },
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6888. {
  6889. front: {
  6890. height: math.unit(6, "feet"),
  6891. weight: math.unit(160, "lbs"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/gene-zeta/front.svg",
  6895. extra: 3006 / 2826,
  6896. bottom: 182 / 3188
  6897. }
  6898. }
  6899. },
  6900. [
  6901. {
  6902. name: "Micro",
  6903. height: math.unit(6, "inches")
  6904. },
  6905. {
  6906. name: "Normal",
  6907. height: math.unit(5 + 11 / 12, "foot"),
  6908. default: true
  6909. },
  6910. {
  6911. name: "Macro",
  6912. height: math.unit(140, "feet")
  6913. },
  6914. {
  6915. name: "Supercharged",
  6916. height: math.unit(2500, "feet")
  6917. },
  6918. ]
  6919. ))
  6920. characterMakers.push(() => makeCharacter(
  6921. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6922. {
  6923. front: {
  6924. height: math.unit(6, "feet"),
  6925. weight: math.unit(350, "lbs"),
  6926. name: "Front",
  6927. image: {
  6928. source: "./media/characters/razinox/front.svg",
  6929. extra: 1686 / 1548,
  6930. bottom: 28.2 / 1868
  6931. }
  6932. },
  6933. back: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(350, "lbs"),
  6936. name: "Back",
  6937. image: {
  6938. source: "./media/characters/razinox/back.svg",
  6939. extra: 1660 / 1590,
  6940. bottom: 15 / 1665
  6941. }
  6942. },
  6943. },
  6944. [
  6945. {
  6946. name: "Normal",
  6947. height: math.unit(10 + 8 / 12, "foot")
  6948. },
  6949. {
  6950. name: "Minimacro",
  6951. height: math.unit(15, "foot")
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(60, "foot"),
  6956. default: true
  6957. },
  6958. {
  6959. name: "Megamacro",
  6960. height: math.unit(5, "miles")
  6961. },
  6962. {
  6963. name: "Gigamacro",
  6964. height: math.unit(6000, "miles")
  6965. },
  6966. ]
  6967. ))
  6968. characterMakers.push(() => makeCharacter(
  6969. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6970. {
  6971. front: {
  6972. height: math.unit(6, "feet"),
  6973. weight: math.unit(150, "lbs"),
  6974. name: "Front",
  6975. image: {
  6976. source: "./media/characters/cobalt/front.svg"
  6977. }
  6978. }
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(8 + 1 / 12, "foot")
  6984. },
  6985. {
  6986. name: "Macro",
  6987. height: math.unit(111, "foot"),
  6988. default: true
  6989. },
  6990. {
  6991. name: "Supracosmic",
  6992. height: math.unit(1e42, "feet")
  6993. },
  6994. ]
  6995. ))
  6996. characterMakers.push(() => makeCharacter(
  6997. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6998. {
  6999. front: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(140, "lbs"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/amanda/front.svg"
  7005. }
  7006. }
  7007. },
  7008. [
  7009. {
  7010. name: "Micro",
  7011. height: math.unit(5, "inches"),
  7012. default: true
  7013. },
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7018. {
  7019. front: {
  7020. height: math.unit(2.75, "meters"),
  7021. weight: math.unit(1200, "lb"),
  7022. name: "Front",
  7023. image: {
  7024. source: "./media/characters/teal/front.svg",
  7025. extra: 2463 / 2320,
  7026. bottom: 166 / 2629
  7027. }
  7028. },
  7029. back: {
  7030. height: math.unit(2.75, "meters"),
  7031. weight: math.unit(1200, "lb"),
  7032. name: "Back",
  7033. image: {
  7034. source: "./media/characters/teal/back.svg",
  7035. extra: 2580 / 2489,
  7036. bottom: 151 / 2731
  7037. }
  7038. },
  7039. sitting: {
  7040. height: math.unit(1.9, "meters"),
  7041. weight: math.unit(1200, "lb"),
  7042. name: "Sitting",
  7043. image: {
  7044. source: "./media/characters/teal/sitting.svg",
  7045. extra: 623 / 590,
  7046. bottom: 121 / 744
  7047. }
  7048. },
  7049. standing: {
  7050. height: math.unit(2.75, "meters"),
  7051. weight: math.unit(1200, "lb"),
  7052. name: "Standing",
  7053. image: {
  7054. source: "./media/characters/teal/standing.svg",
  7055. extra: 923 / 893,
  7056. bottom: 60 / 983
  7057. }
  7058. },
  7059. stretching: {
  7060. height: math.unit(3.65, "meters"),
  7061. weight: math.unit(1200, "lb"),
  7062. name: "Stretching",
  7063. image: {
  7064. source: "./media/characters/teal/stretching.svg",
  7065. extra: 1276 / 1244,
  7066. bottom: 0 / 1276
  7067. }
  7068. },
  7069. legged: {
  7070. height: math.unit(1.3, "meters"),
  7071. weight: math.unit(100, "lb"),
  7072. name: "Legged",
  7073. image: {
  7074. source: "./media/characters/teal/legged.svg",
  7075. extra: 462 / 437,
  7076. bottom: 24 / 486
  7077. }
  7078. },
  7079. naga: {
  7080. height: math.unit(5.4, "meters"),
  7081. weight: math.unit(4000, "lb"),
  7082. name: "Naga",
  7083. image: {
  7084. source: "./media/characters/teal/naga.svg",
  7085. extra: 1902 / 1858,
  7086. bottom: 0 / 1902
  7087. }
  7088. },
  7089. hand: {
  7090. height: math.unit(0.52, "meters"),
  7091. name: "Hand",
  7092. image: {
  7093. source: "./media/characters/teal/hand.svg"
  7094. }
  7095. },
  7096. maw: {
  7097. height: math.unit(0.43, "meters"),
  7098. name: "Maw",
  7099. image: {
  7100. source: "./media/characters/teal/maw.svg"
  7101. }
  7102. },
  7103. slit: {
  7104. height: math.unit(0.25, "meters"),
  7105. name: "Slit",
  7106. image: {
  7107. source: "./media/characters/teal/slit.svg"
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Normal",
  7114. height: math.unit(2.75, "meters"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Macro",
  7119. height: math.unit(300, "feet")
  7120. },
  7121. {
  7122. name: "Macro+",
  7123. height: math.unit(2000, "feet")
  7124. },
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7129. {
  7130. frontCat: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(180, "lbs"),
  7133. name: "Front (Cat)",
  7134. image: {
  7135. source: "./media/characters/ravin-amulet/front-cat.svg"
  7136. }
  7137. },
  7138. frontCatAlt: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(180, "lbs"),
  7141. name: "Front (Alt, Cat)",
  7142. image: {
  7143. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7144. }
  7145. },
  7146. frontWerewolf: {
  7147. height: math.unit(6 * 1.2, "feet"),
  7148. weight: math.unit(225, "lbs"),
  7149. name: "Front (Werewolf)",
  7150. image: {
  7151. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7152. }
  7153. },
  7154. backWerewolf: {
  7155. height: math.unit(6 * 1.2, "feet"),
  7156. weight: math.unit(225, "lbs"),
  7157. name: "Back (Werewolf)",
  7158. image: {
  7159. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Nano",
  7166. height: math.unit(1, "micrometer")
  7167. },
  7168. {
  7169. name: "Micro",
  7170. height: math.unit(1, "inch")
  7171. },
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(6, "feet"),
  7175. default: true
  7176. },
  7177. {
  7178. name: "Macro",
  7179. height: math.unit(60, "feet")
  7180. }
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7185. {
  7186. front: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(165, "lbs"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/fluoresce/front.svg"
  7192. }
  7193. }
  7194. },
  7195. [
  7196. {
  7197. name: "Micro",
  7198. height: math.unit(6, "cm")
  7199. },
  7200. {
  7201. name: "Normal",
  7202. height: math.unit(5 + 7 / 12, "feet"),
  7203. default: true
  7204. },
  7205. {
  7206. name: "Macro",
  7207. height: math.unit(56, "feet")
  7208. },
  7209. {
  7210. name: "Megamacro",
  7211. height: math.unit(1.9, "miles")
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(9 + 6 / 12, "feet"),
  7220. weight: math.unit(523, "lbs"),
  7221. name: "Side",
  7222. image: {
  7223. source: "./media/characters/aurora/side.svg"
  7224. }
  7225. }
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(9 + 6 / 12, "feet")
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(96, "feet"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Macro+",
  7239. height: math.unit(243, "feet")
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7245. {
  7246. front: {
  7247. height: math.unit(194, "cm"),
  7248. weight: math.unit(90, "kg"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/ranek/front.svg"
  7252. }
  7253. },
  7254. side: {
  7255. height: math.unit(194, "cm"),
  7256. weight: math.unit(90, "kg"),
  7257. name: "Side",
  7258. image: {
  7259. source: "./media/characters/ranek/side.svg"
  7260. }
  7261. },
  7262. back: {
  7263. height: math.unit(194, "cm"),
  7264. weight: math.unit(90, "kg"),
  7265. name: "Back",
  7266. image: {
  7267. source: "./media/characters/ranek/back.svg"
  7268. }
  7269. },
  7270. feral: {
  7271. height: math.unit(30, "cm"),
  7272. weight: math.unit(1.6, "lbs"),
  7273. name: "Feral",
  7274. image: {
  7275. source: "./media/characters/ranek/feral.svg"
  7276. }
  7277. },
  7278. },
  7279. [
  7280. {
  7281. name: "Normal",
  7282. height: math.unit(194, "cm"),
  7283. default: true
  7284. },
  7285. {
  7286. name: "Macro",
  7287. height: math.unit(100, "meters")
  7288. },
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7293. {
  7294. front: {
  7295. height: math.unit(5 + 6 / 12, "feet"),
  7296. weight: math.unit(153, "lbs"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/andrew-cooper/front.svg"
  7300. }
  7301. },
  7302. },
  7303. [
  7304. {
  7305. name: "Nano",
  7306. height: math.unit(1, "mm")
  7307. },
  7308. {
  7309. name: "Micro",
  7310. height: math.unit(2, "inches")
  7311. },
  7312. {
  7313. name: "Normal",
  7314. height: math.unit(5 + 6 / 12, "feet"),
  7315. default: true
  7316. }
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7321. {
  7322. front: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(180, "lbs"),
  7325. name: "Front",
  7326. image: {
  7327. source: "./media/characters/akane-sato/front.svg",
  7328. extra: 1219 / 1140
  7329. }
  7330. },
  7331. back: {
  7332. height: math.unit(6, "feet"),
  7333. weight: math.unit(180, "lbs"),
  7334. name: "Back",
  7335. image: {
  7336. source: "./media/characters/akane-sato/back.svg",
  7337. extra: 1219 / 1170
  7338. }
  7339. },
  7340. },
  7341. [
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(2.5, "meters")
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(250, "meters"),
  7349. default: true
  7350. },
  7351. {
  7352. name: "Megamacro",
  7353. height: math.unit(25, "km")
  7354. },
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(65, "kg"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/rook/front.svg",
  7366. extra: 960 / 950
  7367. }
  7368. }
  7369. },
  7370. [
  7371. {
  7372. name: "Normal",
  7373. height: math.unit(8.8, "feet")
  7374. },
  7375. {
  7376. name: "Macro",
  7377. height: math.unit(88, "feet"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Megamacro",
  7382. height: math.unit(8, "miles")
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(12 + 2 / 12, "feet"),
  7391. weight: math.unit(808, "lbs"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/prodigy/front.svg"
  7395. }
  7396. }
  7397. },
  7398. [
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(12 + 2 / 12, "feet"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(143, "feet")
  7407. },
  7408. {
  7409. name: "Macro+",
  7410. height: math.unit(400, "feet")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7416. {
  7417. front: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(225, "lbs"),
  7420. name: "Front",
  7421. image: {
  7422. source: "./media/characters/daniel/front.svg"
  7423. }
  7424. },
  7425. leaning: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(225, "lbs"),
  7428. name: "Leaning",
  7429. image: {
  7430. source: "./media/characters/daniel/leaning.svg"
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Macro",
  7437. height: math.unit(1000, "feet"),
  7438. default: true
  7439. },
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(6, "feet"),
  7447. weight: math.unit(88, "lbs"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/chiros/front.svg",
  7451. extra: 306 / 226
  7452. }
  7453. },
  7454. side: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(88, "lbs"),
  7457. name: "Side",
  7458. image: {
  7459. source: "./media/characters/chiros/side.svg",
  7460. extra: 306 / 226
  7461. }
  7462. },
  7463. },
  7464. [
  7465. {
  7466. name: "Normal",
  7467. height: math.unit(6, "cm"),
  7468. default: true
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7474. {
  7475. front: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(100, "lbs"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/selka/front.svg",
  7481. extra: 947 / 887
  7482. }
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Normal",
  7488. height: math.unit(5, "cm"),
  7489. default: true
  7490. },
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(8 + 3 / 12, "feet"),
  7498. weight: math.unit(424, "lbs"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/verin/front.svg",
  7502. extra: 1845 / 1550
  7503. }
  7504. },
  7505. frontArmored: {
  7506. height: math.unit(8 + 3 / 12, "feet"),
  7507. weight: math.unit(424, "lbs"),
  7508. name: "Front (Armored)",
  7509. image: {
  7510. source: "./media/characters/verin/front-armor.svg",
  7511. extra: 1845 / 1550,
  7512. bottom: 0.01
  7513. }
  7514. },
  7515. back: {
  7516. height: math.unit(8 + 3 / 12, "feet"),
  7517. weight: math.unit(424, "lbs"),
  7518. name: "Back",
  7519. image: {
  7520. source: "./media/characters/verin/back.svg",
  7521. bottom: 0.1,
  7522. extra: 1
  7523. }
  7524. },
  7525. foot: {
  7526. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7527. name: "Foot",
  7528. image: {
  7529. source: "./media/characters/verin/foot.svg"
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(8 + 3 / 12, "feet")
  7537. },
  7538. {
  7539. name: "Minimacro",
  7540. height: math.unit(21, "feet"),
  7541. default: true
  7542. },
  7543. {
  7544. name: "Macro",
  7545. height: math.unit(626, "feet")
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7551. {
  7552. front: {
  7553. height: math.unit(2.718, "meters"),
  7554. weight: math.unit(150, "lbs"),
  7555. name: "Front",
  7556. image: {
  7557. source: "./media/characters/sovrim-terraquian/front.svg"
  7558. }
  7559. },
  7560. back: {
  7561. height: math.unit(2.718, "meters"),
  7562. weight: math.unit(150, "lbs"),
  7563. name: "Back",
  7564. image: {
  7565. source: "./media/characters/sovrim-terraquian/back.svg"
  7566. }
  7567. }
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(2, "inches")
  7573. },
  7574. {
  7575. name: "Small",
  7576. height: math.unit(1, "meter")
  7577. },
  7578. {
  7579. name: "Normal",
  7580. height: math.unit(Math.E, "meters"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(20, "meters")
  7586. },
  7587. {
  7588. name: "Macro+",
  7589. height: math.unit(400, "meters")
  7590. },
  7591. ]
  7592. ))
  7593. characterMakers.push(() => makeCharacter(
  7594. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7595. {
  7596. front: {
  7597. height: math.unit(7, "feet"),
  7598. weight: math.unit(489, "lbs"),
  7599. name: "Front",
  7600. image: {
  7601. source: "./media/characters/reece-silvermane/front.svg",
  7602. bottom: 0.02,
  7603. extra: 1
  7604. }
  7605. },
  7606. },
  7607. [
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(1.5, "miles"),
  7611. default: true
  7612. },
  7613. ]
  7614. ))
  7615. characterMakers.push(() => makeCharacter(
  7616. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7617. {
  7618. front: {
  7619. height: math.unit(6, "feet"),
  7620. weight: math.unit(78, "kg"),
  7621. name: "Front",
  7622. image: {
  7623. source: "./media/characters/kane/front.svg",
  7624. extra: 978 / 899
  7625. }
  7626. },
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(2.1, "m"),
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(1, "km"),
  7636. default: true
  7637. },
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(6, "feet"),
  7645. weight: math.unit(200, "kg"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/tegon/front.svg",
  7649. bottom: 0.01,
  7650. extra: 1
  7651. }
  7652. },
  7653. },
  7654. [
  7655. {
  7656. name: "Micro",
  7657. height: math.unit(1, "inch")
  7658. },
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(6 + 3 / 12, "feet"),
  7662. default: true
  7663. },
  7664. {
  7665. name: "Macro",
  7666. height: math.unit(300, "feet")
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(69, "miles")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7676. {
  7677. side: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(2304, "lbs"),
  7680. name: "Side",
  7681. image: {
  7682. source: "./media/characters/arcturax/side.svg",
  7683. extra: 790 / 376,
  7684. bottom: 0.01
  7685. }
  7686. },
  7687. },
  7688. [
  7689. {
  7690. name: "Micro",
  7691. height: math.unit(2, "inch")
  7692. },
  7693. {
  7694. name: "Normal",
  7695. height: math.unit(6, "feet")
  7696. },
  7697. {
  7698. name: "Macro",
  7699. height: math.unit(39, "feet"),
  7700. default: true
  7701. },
  7702. {
  7703. name: "Megamacro",
  7704. height: math.unit(7, "miles")
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(6, "feet"),
  7713. weight: math.unit(50, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/sentri/front.svg",
  7717. extra: 1750 / 1570,
  7718. bottom: 0.025
  7719. }
  7720. },
  7721. frontAlt: {
  7722. height: math.unit(6, "feet"),
  7723. weight: math.unit(50, "lbs"),
  7724. name: "Front (Alt)",
  7725. image: {
  7726. source: "./media/characters/sentri/front-alt.svg",
  7727. extra: 1750 / 1570,
  7728. bottom: 0.025
  7729. }
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(15, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(2500, "feet")
  7741. }
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(5 + 8 / 12, "feet"),
  7749. weight: math.unit(130, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/corvin/front.svg",
  7753. extra: 1803 / 1629
  7754. }
  7755. },
  7756. frontShirt: {
  7757. height: math.unit(5 + 8 / 12, "feet"),
  7758. weight: math.unit(130, "lbs"),
  7759. name: "Front (Shirt)",
  7760. image: {
  7761. source: "./media/characters/corvin/front-shirt.svg",
  7762. extra: 1803 / 1629
  7763. }
  7764. },
  7765. frontPoncho: {
  7766. height: math.unit(5 + 8 / 12, "feet"),
  7767. weight: math.unit(130, "lbs"),
  7768. name: "Front (Poncho)",
  7769. image: {
  7770. source: "./media/characters/corvin/front-poncho.svg",
  7771. extra: 1803 / 1629
  7772. }
  7773. },
  7774. side: {
  7775. height: math.unit(5 + 8 / 12, "feet"),
  7776. weight: math.unit(130, "lbs"),
  7777. name: "Side",
  7778. image: {
  7779. source: "./media/characters/corvin/side.svg",
  7780. extra: 1012 / 945
  7781. }
  7782. },
  7783. back: {
  7784. height: math.unit(5 + 8 / 12, "feet"),
  7785. weight: math.unit(130, "lbs"),
  7786. name: "Back",
  7787. image: {
  7788. source: "./media/characters/corvin/back.svg",
  7789. extra: 1803 / 1629
  7790. }
  7791. },
  7792. },
  7793. [
  7794. {
  7795. name: "Micro",
  7796. height: math.unit(3, "inches")
  7797. },
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(5 + 8 / 12, "feet")
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(300, "feet"),
  7805. default: true
  7806. },
  7807. {
  7808. name: "Megamacro",
  7809. height: math.unit(500, "miles")
  7810. }
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(6, "feet"),
  7818. weight: math.unit(135, "lbs"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/q/front.svg",
  7822. extra: 854 / 752,
  7823. bottom: 0.005
  7824. }
  7825. },
  7826. back: {
  7827. height: math.unit(6, "feet"),
  7828. weight: math.unit(130, "lbs"),
  7829. name: "Back",
  7830. image: {
  7831. source: "./media/characters/q/back.svg",
  7832. extra: 854 / 752
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(90, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Extra Macro",
  7844. height: math.unit(300, "feet"),
  7845. },
  7846. {
  7847. name: "BIG WALF",
  7848. height: math.unit(750, "feet"),
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(150, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/carley/front.svg",
  7861. extra: 3927 / 3540,
  7862. bottom: 29.2 / 735
  7863. }
  7864. }
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(6 + 3 / 12, "feet")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(185, "feet"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(8, "miles"),
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(3, "feet"),
  7887. weight: math.unit(28, "lbs"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/citrine/front.svg"
  7891. }
  7892. }
  7893. },
  7894. [
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(3, "feet"),
  7898. default: true
  7899. }
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7904. {
  7905. front: {
  7906. height: math.unit(14, "feet"),
  7907. weight: math.unit(1450, "kg"),
  7908. capacity: math.unit(15, "people"),
  7909. name: "Front",
  7910. image: {
  7911. source: "./media/characters/aura-starwind/front.svg",
  7912. extra: 1455 / 1335
  7913. }
  7914. },
  7915. side: {
  7916. height: math.unit(14, "feet"),
  7917. weight: math.unit(1450, "kg"),
  7918. capacity: math.unit(15, "people"),
  7919. name: "Side",
  7920. image: {
  7921. source: "./media/characters/aura-starwind/side.svg",
  7922. extra: 1654 / 1497
  7923. }
  7924. },
  7925. taur: {
  7926. height: math.unit(18, "feet"),
  7927. weight: math.unit(5500, "kg"),
  7928. capacity: math.unit(50, "people"),
  7929. name: "Taur",
  7930. image: {
  7931. source: "./media/characters/aura-starwind/taur.svg",
  7932. extra: 1760 / 1650
  7933. }
  7934. },
  7935. feral: {
  7936. height: math.unit(46, "feet"),
  7937. weight: math.unit(25000, "kg"),
  7938. capacity: math.unit(120, "people"),
  7939. name: "Feral",
  7940. image: {
  7941. source: "./media/characters/aura-starwind/feral.svg"
  7942. }
  7943. },
  7944. },
  7945. [
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(14, "feet"),
  7949. default: true
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(50, "meters")
  7954. },
  7955. {
  7956. name: "Megamacro",
  7957. height: math.unit(5000, "meters")
  7958. },
  7959. {
  7960. name: "Gigamacro",
  7961. height: math.unit(100000, "kilometers")
  7962. },
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(2 + 7 / 12, "feet"),
  7970. weight: math.unit(32, "lbs"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/rivet/front.svg",
  7974. extra: 1716 / 1658,
  7975. bottom: 0.03
  7976. }
  7977. },
  7978. foot: {
  7979. height: math.unit(0.551, "feet"),
  7980. name: "Rivet's Foot",
  7981. image: {
  7982. source: "./media/characters/rivet/foot.svg"
  7983. },
  7984. rename: true
  7985. }
  7986. },
  7987. [
  7988. {
  7989. name: "Micro",
  7990. height: math.unit(1.5, "inches"),
  7991. },
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(2 + 7 / 12, "feet"),
  7995. default: true
  7996. },
  7997. {
  7998. name: "Macro",
  7999. height: math.unit(85, "feet")
  8000. },
  8001. {
  8002. name: "Megamacro",
  8003. height: math.unit(2.2, "km")
  8004. }
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(5 + 9 / 12, "feet"),
  8012. weight: math.unit(150, "lbs"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/coffee/front.svg",
  8016. extra: 3666 / 3032,
  8017. bottom: 0.04
  8018. }
  8019. },
  8020. foot: {
  8021. height: math.unit(1.29, "feet"),
  8022. name: "Foot",
  8023. image: {
  8024. source: "./media/characters/coffee/foot.svg"
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(2, "inches"),
  8032. },
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(5 + 9 / 12, "feet"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(800, "feet")
  8041. },
  8042. {
  8043. name: "Megamacro",
  8044. height: math.unit(25, "miles")
  8045. }
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(6, "feet"),
  8053. weight: math.unit(200, "lbs"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/chari-gal/front.svg",
  8057. extra: 1568 / 1385,
  8058. bottom: 0.047
  8059. }
  8060. },
  8061. gigantamax: {
  8062. height: math.unit(6 * 16, "feet"),
  8063. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8064. name: "Gigantamax",
  8065. image: {
  8066. source: "./media/characters/chari-gal/gigantamax.svg",
  8067. extra: 1124 / 888,
  8068. bottom: 0.03
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(5 + 7 / 12, "feet")
  8076. },
  8077. {
  8078. name: "Macro",
  8079. height: math.unit(200, "feet"),
  8080. default: true
  8081. }
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8086. {
  8087. front: {
  8088. height: math.unit(6, "feet"),
  8089. weight: math.unit(150, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/nova/front.svg",
  8093. extra: 5000 / 4722,
  8094. bottom: 0.02
  8095. }
  8096. }
  8097. },
  8098. [
  8099. {
  8100. name: "Micro-",
  8101. height: math.unit(0.8, "inches")
  8102. },
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(2, "inches"),
  8106. default: true
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(3 + 1 / 12, "feet"),
  8115. weight: math.unit(21.7, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/argent/front.svg",
  8119. extra: 1471 / 1331,
  8120. bottom: 100.8 / 1575.5
  8121. }
  8122. }
  8123. },
  8124. [
  8125. {
  8126. name: "Micro",
  8127. height: math.unit(2, "inches")
  8128. },
  8129. {
  8130. name: "Normal",
  8131. height: math.unit(3 + 1 / 12, "feet"),
  8132. default: true
  8133. },
  8134. {
  8135. name: "Macro",
  8136. height: math.unit(120, "feet")
  8137. },
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8142. {
  8143. lamp: {
  8144. height: math.unit(7 * 1559 / 989, "feet"),
  8145. name: "Magic Lamp",
  8146. image: {
  8147. source: "./media/characters/mira-al-cul/lamp.svg",
  8148. extra: 1617 / 1559
  8149. }
  8150. },
  8151. front: {
  8152. height: math.unit(7, "feet"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/mira-al-cul/front.svg",
  8156. extra: 1044 / 990
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Heavily Restricted",
  8163. height: math.unit(7 * 1559 / 989, "feet")
  8164. },
  8165. {
  8166. name: "Freshly Freed",
  8167. height: math.unit(50 * 1559 / 989, "feet")
  8168. },
  8169. {
  8170. name: "World Encompassing",
  8171. height: math.unit(10000 * 1559 / 989, "miles")
  8172. },
  8173. {
  8174. name: "Galactic",
  8175. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8176. },
  8177. {
  8178. name: "Palmed Universe",
  8179. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Multiversal Matriarch",
  8184. height: math.unit(8.87e10, "yottameters")
  8185. },
  8186. {
  8187. name: "Void Mother",
  8188. height: math.unit(3.14e110, "yottaparsecs")
  8189. },
  8190. {
  8191. name: "Toying with Transcendence",
  8192. height: math.unit(1e307, "meters")
  8193. },
  8194. ]
  8195. ))
  8196. characterMakers.push(() => makeCharacter(
  8197. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8198. {
  8199. front: {
  8200. height: math.unit(17 + 1 / 12, "feet"),
  8201. weight: math.unit(476.2 * 5, "lbs"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/kuro-shi-uchū/front.svg",
  8205. extra: 2329 / 1835,
  8206. bottom: 0.02
  8207. }
  8208. },
  8209. },
  8210. [
  8211. {
  8212. name: "Micro",
  8213. height: math.unit(2, "inches")
  8214. },
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(12, "meters")
  8218. },
  8219. {
  8220. name: "Planetary",
  8221. height: math.unit(0.00929, "AU"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Universal",
  8226. height: math.unit(20, "gigaparsecs")
  8227. },
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(5 + 2 / 12, "feet"),
  8235. weight: math.unit(120, "lbs"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/katherine/front.svg",
  8239. extra: 2075 / 1969
  8240. }
  8241. },
  8242. dress: {
  8243. height: math.unit(5 + 2 / 12, "feet"),
  8244. weight: math.unit(120, "lbs"),
  8245. name: "Dress",
  8246. image: {
  8247. source: "./media/characters/katherine/dress.svg",
  8248. extra: 2258 / 2064
  8249. }
  8250. },
  8251. },
  8252. [
  8253. {
  8254. name: "Micro",
  8255. height: math.unit(1, "inches"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Normal",
  8260. height: math.unit(5 + 2 / 12, "feet")
  8261. },
  8262. {
  8263. name: "Macro",
  8264. height: math.unit(100, "meters")
  8265. },
  8266. {
  8267. name: "Megamacro",
  8268. height: math.unit(80, "miles")
  8269. },
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8274. {
  8275. front: {
  8276. height: math.unit(7 + 8 / 12, "feet"),
  8277. weight: math.unit(250, "lbs"),
  8278. name: "Front",
  8279. image: {
  8280. source: "./media/characters/yevis/front.svg",
  8281. extra: 1938 / 1755
  8282. }
  8283. }
  8284. },
  8285. [
  8286. {
  8287. name: "Mortal",
  8288. height: math.unit(7 + 8 / 12, "feet")
  8289. },
  8290. {
  8291. name: "Battle",
  8292. height: math.unit(25 + 11 / 12, "feet")
  8293. },
  8294. {
  8295. name: "Wrath",
  8296. height: math.unit(1654 + 11 / 12, "feet")
  8297. },
  8298. {
  8299. name: "Planet Destroyer",
  8300. height: math.unit(12000, "miles")
  8301. },
  8302. {
  8303. name: "Galaxy Conqueror",
  8304. height: math.unit(1.45, "zettameters"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Universal War",
  8309. height: math.unit(184, "gigaparsecs")
  8310. },
  8311. {
  8312. name: "Eternity War",
  8313. height: math.unit(1.98e55, "yottaparsecs")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(5 + 8 / 12, "feet"),
  8322. weight: math.unit(63, "kg"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/xavier/front.svg",
  8326. extra: 944 / 883
  8327. }
  8328. },
  8329. frontStretch: {
  8330. height: math.unit(5 + 8 / 12, "feet"),
  8331. weight: math.unit(63, "kg"),
  8332. name: "Stretching",
  8333. image: {
  8334. source: "./media/characters/xavier/front-stretch.svg",
  8335. extra: 962 / 820
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Normal",
  8342. height: math.unit(5 + 8 / 12, "feet")
  8343. },
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(100, "meters"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "McLargeHuge",
  8351. height: math.unit(10, "miles")
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(5 + 5 / 12, "feet"),
  8360. weight: math.unit(150, "lb"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/joshii/front.svg",
  8364. extra: 765 / 653,
  8365. bottom: 51 / 816
  8366. }
  8367. },
  8368. foot: {
  8369. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8370. name: "Foot",
  8371. image: {
  8372. source: "./media/characters/joshii/foot.svg"
  8373. }
  8374. },
  8375. },
  8376. [
  8377. {
  8378. name: "Micro",
  8379. height: math.unit(2, "inches"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Normal",
  8384. height: math.unit(5 + 5 / 12, "feet")
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(785, "feet")
  8389. },
  8390. {
  8391. name: "Megamacro",
  8392. height: math.unit(24.5, "miles")
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(150, "lb"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/goddess-elizabeth/front.svg",
  8405. extra: 1800 / 1525,
  8406. bottom: 0.005
  8407. }
  8408. },
  8409. foot: {
  8410. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8411. name: "Foot",
  8412. image: {
  8413. source: "./media/characters/goddess-elizabeth/foot.svg"
  8414. }
  8415. },
  8416. mouth: {
  8417. height: math.unit(6, "feet"),
  8418. name: "Mouth",
  8419. image: {
  8420. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8421. }
  8422. },
  8423. },
  8424. [
  8425. {
  8426. name: "Micro",
  8427. height: math.unit(12, "feet")
  8428. },
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(80, "miles"),
  8432. default: true
  8433. },
  8434. {
  8435. name: "Macro",
  8436. height: math.unit(15000, "parsecs")
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(5 + 9 / 12, "feet"),
  8445. weight: math.unit(144, "lb"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/kara/front.svg"
  8449. }
  8450. },
  8451. feet: {
  8452. height: math.unit(6 / 6.765, "feet"),
  8453. name: "Kara's Feet",
  8454. rename: true,
  8455. image: {
  8456. source: "./media/characters/kara/feet.svg"
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Normal",
  8463. height: math.unit(5 + 9 / 12, "feet")
  8464. },
  8465. {
  8466. name: "Macro",
  8467. height: math.unit(174, "feet"),
  8468. default: true
  8469. },
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8474. {
  8475. front: {
  8476. height: math.unit(18, "feet"),
  8477. weight: math.unit(4050, "lb"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/tyrone/front.svg",
  8481. extra: 2405 / 2270,
  8482. bottom: 182 / 2587
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Normal",
  8489. height: math.unit(18, "feet"),
  8490. default: true
  8491. },
  8492. {
  8493. name: "Macro",
  8494. height: math.unit(300, "feet")
  8495. },
  8496. {
  8497. name: "Megamacro",
  8498. height: math.unit(15, "km")
  8499. },
  8500. {
  8501. name: "Gigamacro",
  8502. height: math.unit(500, "km")
  8503. },
  8504. {
  8505. name: "Teramacro",
  8506. height: math.unit(0.5, "gigameters")
  8507. },
  8508. {
  8509. name: "Omnimacro",
  8510. height: math.unit(1e252, "yottauniverse")
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(7 + 8 / 12, "feet"),
  8519. weight: math.unit(120, "lb"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/danny/front.svg",
  8523. extra: 1490 / 1350
  8524. }
  8525. },
  8526. back: {
  8527. height: math.unit(7 + 8 / 12, "feet"),
  8528. weight: math.unit(120, "lb"),
  8529. name: "Back",
  8530. image: {
  8531. source: "./media/characters/danny/back.svg",
  8532. extra: 1490 / 1350
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Normal",
  8539. height: math.unit(7 + 8 / 12, "feet"),
  8540. default: true
  8541. },
  8542. ]
  8543. ))
  8544. characterMakers.push(() => makeCharacter(
  8545. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8546. {
  8547. front: {
  8548. height: math.unit(3.5, "inches"),
  8549. weight: math.unit(19, "grams"),
  8550. name: "Front",
  8551. image: {
  8552. source: "./media/characters/mallow/front.svg",
  8553. extra: 471 / 431
  8554. }
  8555. },
  8556. back: {
  8557. height: math.unit(3.5, "inches"),
  8558. weight: math.unit(19, "grams"),
  8559. name: "Back",
  8560. image: {
  8561. source: "./media/characters/mallow/back.svg",
  8562. extra: 471 / 431
  8563. }
  8564. },
  8565. },
  8566. [
  8567. {
  8568. name: "Normal",
  8569. height: math.unit(3.5, "inches"),
  8570. default: true
  8571. },
  8572. ]
  8573. ))
  8574. characterMakers.push(() => makeCharacter(
  8575. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8576. {
  8577. front: {
  8578. height: math.unit(9, "feet"),
  8579. weight: math.unit(230, "kg"),
  8580. name: "Front",
  8581. image: {
  8582. source: "./media/characters/starry-aqua/front.svg"
  8583. }
  8584. },
  8585. back: {
  8586. height: math.unit(9, "feet"),
  8587. weight: math.unit(230, "kg"),
  8588. name: "Back",
  8589. image: {
  8590. source: "./media/characters/starry-aqua/back.svg"
  8591. }
  8592. },
  8593. hand: {
  8594. height: math.unit(9 * 0.1168, "feet"),
  8595. name: "Hand",
  8596. image: {
  8597. source: "./media/characters/starry-aqua/hand.svg"
  8598. }
  8599. },
  8600. foot: {
  8601. height: math.unit(9 * 0.18, "feet"),
  8602. name: "Foot",
  8603. image: {
  8604. source: "./media/characters/starry-aqua/foot.svg"
  8605. }
  8606. }
  8607. },
  8608. [
  8609. {
  8610. name: "Micro",
  8611. height: math.unit(3, "inches")
  8612. },
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(9, "feet")
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(300, "feet"),
  8620. default: true
  8621. },
  8622. {
  8623. name: "Megamacro",
  8624. height: math.unit(3200, "feet")
  8625. }
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8630. {
  8631. front: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(230, "lb"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/luka/front.svg",
  8637. extra: 1,
  8638. bottom: 0.025
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(12 + 8 / 12, "feet"),
  8646. default: true
  8647. },
  8648. {
  8649. name: "Minimacro",
  8650. height: math.unit(20, "feet")
  8651. },
  8652. {
  8653. name: "Macro",
  8654. height: math.unit(250, "feet")
  8655. },
  8656. {
  8657. name: "Megamacro",
  8658. height: math.unit(5, "miles")
  8659. },
  8660. {
  8661. name: "Gigamacro",
  8662. height: math.unit(8000, "miles")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(150, "lb"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/natalie-nightring/front.svg",
  8675. extra: 1,
  8676. bottom: 0.06
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Uh Oh",
  8683. height: math.unit(0.1, "mm")
  8684. },
  8685. {
  8686. name: "Small",
  8687. height: math.unit(3, "inches")
  8688. },
  8689. {
  8690. name: "Human Scale",
  8691. height: math.unit(6, "feet")
  8692. },
  8693. {
  8694. name: "Librarian",
  8695. height: math.unit(50, "feet"),
  8696. default: true
  8697. },
  8698. {
  8699. name: "Immense",
  8700. height: math.unit(200, "miles")
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8706. {
  8707. front: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(180, "lbs"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/danni-rosie/front.svg",
  8713. extra: 1260 / 1128,
  8714. bottom: 0.022
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Micro",
  8721. height: math.unit(2, "inches"),
  8722. default: true
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(5 + 9 / 12, "feet"),
  8731. weight: math.unit(220, "lb"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/samantha-kruse/front.svg",
  8735. extra: (985 / 935),
  8736. bottom: 0.03
  8737. }
  8738. },
  8739. frontUndressed: {
  8740. height: math.unit(5 + 9 / 12, "feet"),
  8741. weight: math.unit(220, "lb"),
  8742. name: "Front (Undressed)",
  8743. image: {
  8744. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8745. extra: (973 / 923),
  8746. bottom: 0.025
  8747. }
  8748. },
  8749. fat: {
  8750. height: math.unit(5 + 9 / 12, "feet"),
  8751. weight: math.unit(900, "lb"),
  8752. name: "Front (Fat)",
  8753. image: {
  8754. source: "./media/characters/samantha-kruse/fat.svg",
  8755. extra: 2688 / 2561
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(5 + 9 / 12, "feet"),
  8763. default: true
  8764. }
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8769. {
  8770. back: {
  8771. height: math.unit(5 + 4 / 12, "feet"),
  8772. weight: math.unit(4963, "lb"),
  8773. name: "Back",
  8774. image: {
  8775. source: "./media/characters/amelia-rosie/back.svg",
  8776. extra: 1113 / 963,
  8777. bottom: 0.01
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Level 0",
  8784. height: math.unit(5 + 4 / 12, "feet")
  8785. },
  8786. {
  8787. name: "Level 1",
  8788. height: math.unit(164597, "feet"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Level 2",
  8793. height: math.unit(956243, "miles")
  8794. },
  8795. {
  8796. name: "Level 3",
  8797. height: math.unit(29421709423, "miles")
  8798. },
  8799. {
  8800. name: "Level 4",
  8801. height: math.unit(154, "lightyears")
  8802. },
  8803. {
  8804. name: "Level 5",
  8805. height: math.unit(4738272, "lightyears")
  8806. },
  8807. {
  8808. name: "Level 6",
  8809. height: math.unit(145787152896, "lightyears")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(5 + 11 / 12, "feet"),
  8818. weight: math.unit(65, "kg"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/rook-kitara/front.svg",
  8822. extra: 1347 / 1274,
  8823. bottom: 0.005
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Totally Unfair",
  8830. height: math.unit(1.8, "mm")
  8831. },
  8832. {
  8833. name: "Lap Rookie",
  8834. height: math.unit(1.4, "feet")
  8835. },
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(5 + 11 / 12, "feet"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "How Did This Happen",
  8843. height: math.unit(80, "miles")
  8844. }
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(7, "feet"),
  8852. weight: math.unit(300, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/pisces/front.svg",
  8856. extra: 2255 / 2115,
  8857. bottom: 0.03
  8858. }
  8859. },
  8860. back: {
  8861. height: math.unit(7, "feet"),
  8862. weight: math.unit(300, "lb"),
  8863. name: "Back",
  8864. image: {
  8865. source: "./media/characters/pisces/back.svg",
  8866. extra: 2146 / 2055,
  8867. bottom: 0.04
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(7, "feet"),
  8875. default: true
  8876. },
  8877. {
  8878. name: "Swimming Pool",
  8879. height: math.unit(12.2, "meters")
  8880. },
  8881. {
  8882. name: "Olympic Swimming Pool",
  8883. height: math.unit(56.3, "meters")
  8884. },
  8885. {
  8886. name: "Lake Superior",
  8887. height: math.unit(93900, "meters")
  8888. },
  8889. {
  8890. name: "Mediterranean Sea",
  8891. height: math.unit(644457, "meters")
  8892. },
  8893. {
  8894. name: "World's Oceans",
  8895. height: math.unit(4567491, "meters")
  8896. },
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8901. {
  8902. front: {
  8903. height: math.unit(2.3, "meters"),
  8904. weight: math.unit(120, "kg"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/zelas/front.svg"
  8908. }
  8909. },
  8910. side: {
  8911. height: math.unit(2.3, "meters"),
  8912. weight: math.unit(120, "kg"),
  8913. name: "Side",
  8914. image: {
  8915. source: "./media/characters/zelas/side.svg"
  8916. }
  8917. },
  8918. back: {
  8919. height: math.unit(2.3, "meters"),
  8920. weight: math.unit(120, "kg"),
  8921. name: "Back",
  8922. image: {
  8923. source: "./media/characters/zelas/back.svg"
  8924. }
  8925. },
  8926. foot: {
  8927. height: math.unit(1.116, "feet"),
  8928. name: "Foot",
  8929. image: {
  8930. source: "./media/characters/zelas/foot.svg"
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(2.3, "meters")
  8938. },
  8939. {
  8940. name: "Macro",
  8941. height: math.unit(30, "meters"),
  8942. default: true
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(1, "inch"),
  8951. weight: math.unit(0.21, "grams"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/talbot/front.svg",
  8955. extra: 594 / 544
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Micro",
  8962. height: math.unit(1, "inch"),
  8963. default: true
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8969. {
  8970. front: {
  8971. height: math.unit(3 + 3 / 12, "feet"),
  8972. weight: math.unit(51.8, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/fliss/front.svg",
  8976. extra: 840 / 640
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Teeny Tiny",
  8983. height: math.unit(1, "mm")
  8984. },
  8985. {
  8986. name: "Small",
  8987. height: math.unit(1, "inch"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Standard Sylveon",
  8992. height: math.unit(3 + 3 / 12, "feet")
  8993. },
  8994. {
  8995. name: "Large Nuisance",
  8996. height: math.unit(33, "feet")
  8997. },
  8998. {
  8999. name: "City Filler",
  9000. height: math.unit(3000, "feet")
  9001. },
  9002. {
  9003. name: "New Horizon",
  9004. height: math.unit(6000, "miles")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(5, "cm"),
  9013. weight: math.unit(1.94, "g"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/fleta/front.svg",
  9017. extra: 835 / 803
  9018. }
  9019. },
  9020. back: {
  9021. height: math.unit(5, "cm"),
  9022. weight: math.unit(1.94, "g"),
  9023. name: "Back",
  9024. image: {
  9025. source: "./media/characters/fleta/back.svg",
  9026. extra: 835 / 803
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Micro",
  9033. height: math.unit(5, "cm"),
  9034. default: true
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9040. {
  9041. front: {
  9042. height: math.unit(6, "feet"),
  9043. weight: math.unit(225, "lb"),
  9044. name: "Front",
  9045. image: {
  9046. source: "./media/characters/dominic/front.svg",
  9047. extra: 1770 / 1620,
  9048. bottom: 0.025
  9049. }
  9050. },
  9051. back: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(225, "lb"),
  9054. name: "Back",
  9055. image: {
  9056. source: "./media/characters/dominic/back.svg",
  9057. extra: 1745 / 1620,
  9058. bottom: 0.065
  9059. }
  9060. },
  9061. },
  9062. [
  9063. {
  9064. name: "Nano",
  9065. height: math.unit(0.1, "mm")
  9066. },
  9067. {
  9068. name: "Micro-",
  9069. height: math.unit(1, "mm")
  9070. },
  9071. {
  9072. name: "Micro",
  9073. height: math.unit(4, "inches")
  9074. },
  9075. {
  9076. name: "Normal",
  9077. height: math.unit(6 + 4 / 12, "feet"),
  9078. default: true
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(115, "feet")
  9083. },
  9084. {
  9085. name: "Macro+",
  9086. height: math.unit(955, "feet")
  9087. },
  9088. {
  9089. name: "Megamacro",
  9090. height: math.unit(8990, "feet")
  9091. },
  9092. {
  9093. name: "Gigmacro",
  9094. height: math.unit(9310, "miles")
  9095. },
  9096. {
  9097. name: "Teramacro",
  9098. height: math.unit(1567005010, "miles")
  9099. },
  9100. {
  9101. name: "Examacro",
  9102. height: math.unit(1425, "parsecs")
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9108. {
  9109. front: {
  9110. height: math.unit(400, "feet"),
  9111. weight: math.unit(44444444, "lb"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/major-colonel/front.svg"
  9115. }
  9116. },
  9117. back: {
  9118. height: math.unit(400, "feet"),
  9119. weight: math.unit(44444444, "lb"),
  9120. name: "Back",
  9121. image: {
  9122. source: "./media/characters/major-colonel/back.svg"
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(400, "feet"),
  9130. default: true
  9131. },
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9136. {
  9137. catFront: {
  9138. height: math.unit(6, "feet"),
  9139. weight: math.unit(120, "lb"),
  9140. name: "Front (Cat Side)",
  9141. image: {
  9142. source: "./media/characters/axel-lycan/cat-front.svg",
  9143. extra: 430 / 402,
  9144. bottom: 43 / 472.35
  9145. }
  9146. },
  9147. catBack: {
  9148. height: math.unit(6, "feet"),
  9149. weight: math.unit(120, "lb"),
  9150. name: "Back (Cat Side)",
  9151. image: {
  9152. source: "./media/characters/axel-lycan/cat-back.svg",
  9153. extra: 447 / 419,
  9154. bottom: 23.3 / 469
  9155. }
  9156. },
  9157. wolfFront: {
  9158. height: math.unit(6, "feet"),
  9159. weight: math.unit(120, "lb"),
  9160. name: "Front (Wolf Side)",
  9161. image: {
  9162. source: "./media/characters/axel-lycan/wolf-front.svg",
  9163. extra: 485 / 456,
  9164. bottom: 19 / 504
  9165. }
  9166. },
  9167. wolfBack: {
  9168. height: math.unit(6, "feet"),
  9169. weight: math.unit(120, "lb"),
  9170. name: "Back (Wolf Side)",
  9171. image: {
  9172. source: "./media/characters/axel-lycan/wolf-back.svg",
  9173. extra: 475 / 438,
  9174. bottom: 39.2 / 514
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(1, "km"),
  9182. default: true
  9183. },
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(5 + 9 / 12, "feet"),
  9191. weight: math.unit(175, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/vanrel-hyena/front.svg",
  9195. extra: 1086 / 1010,
  9196. bottom: 0.04
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 9 / 12, "feet"),
  9204. default: true
  9205. },
  9206. ]
  9207. ))
  9208. characterMakers.push(() => makeCharacter(
  9209. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9210. {
  9211. front: {
  9212. height: math.unit(6, "feet"),
  9213. weight: math.unit(103, "lb"),
  9214. name: "Front",
  9215. image: {
  9216. source: "./media/characters/abbott-absol/front.svg",
  9217. extra: 2010 / 1842
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Megamicro",
  9224. height: math.unit(0.1, "mm")
  9225. },
  9226. {
  9227. name: "Micro",
  9228. height: math.unit(1, "inch")
  9229. },
  9230. {
  9231. name: "Normal",
  9232. height: math.unit(6, "feet"),
  9233. default: true
  9234. },
  9235. ]
  9236. ))
  9237. characterMakers.push(() => makeCharacter(
  9238. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9239. {
  9240. front: {
  9241. height: math.unit(6, "feet"),
  9242. weight: math.unit(264, "lb"),
  9243. name: "Front",
  9244. image: {
  9245. source: "./media/characters/hector/front.svg",
  9246. extra: 2280 / 2130,
  9247. bottom: 0.07
  9248. }
  9249. },
  9250. },
  9251. [
  9252. {
  9253. name: "Normal",
  9254. height: math.unit(12.25, "foot"),
  9255. default: true
  9256. },
  9257. {
  9258. name: "Macro",
  9259. height: math.unit(160, "feet")
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(150, "lb"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/sal/front.svg",
  9272. extra: 1846 / 1699,
  9273. bottom: 0.04
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Megamacro",
  9280. height: math.unit(10, "miles"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9287. {
  9288. front: {
  9289. height: math.unit(3, "meters"),
  9290. weight: math.unit(450, "kg"),
  9291. name: "front",
  9292. image: {
  9293. source: "./media/characters/ranger/front.svg",
  9294. extra: 2401 / 2243,
  9295. bottom: 0.05
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Normal",
  9302. height: math.unit(3, "meters"),
  9303. default: true
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9309. {
  9310. front: {
  9311. height: math.unit(14, "feet"),
  9312. weight: math.unit(800, "kg"),
  9313. name: "Front",
  9314. image: {
  9315. source: "./media/characters/theresa/front.svg",
  9316. extra: 3575 / 3346,
  9317. bottom: 0.03
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(14, "feet"),
  9325. default: true
  9326. },
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9331. {
  9332. front: {
  9333. height: math.unit(6, "feet"),
  9334. weight: math.unit(3, "kg"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/ine/front.svg",
  9338. extra: 678 / 539,
  9339. bottom: 0.023
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(2.265, "feet"),
  9347. default: true
  9348. },
  9349. ]
  9350. ))
  9351. characterMakers.push(() => makeCharacter(
  9352. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9353. {
  9354. front: {
  9355. height: math.unit(5, "feet"),
  9356. weight: math.unit(30, "kg"),
  9357. name: "Front",
  9358. image: {
  9359. source: "./media/characters/vial/front.svg",
  9360. extra: 1365 / 1277,
  9361. bottom: 0.04
  9362. }
  9363. },
  9364. },
  9365. [
  9366. {
  9367. name: "Normal",
  9368. height: math.unit(5, "feet"),
  9369. default: true
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9375. {
  9376. side: {
  9377. height: math.unit(3.4, "meters"),
  9378. weight: math.unit(1000, "lb"),
  9379. name: "Side",
  9380. image: {
  9381. source: "./media/characters/rovoska/side.svg",
  9382. extra: 4403 / 1515
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(3.4, "meters"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(8, "feet"),
  9399. weight: math.unit(315, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/gunner-rotthbauer/front.svg"
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(8, "feet"),
  9407. weight: math.unit(315, "lb"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/gunner-rotthbauer/back.svg"
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Micro",
  9417. height: math.unit(3.5, "inches")
  9418. },
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(8, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(250, "feet")
  9427. },
  9428. {
  9429. name: "Megamacro",
  9430. height: math.unit(1, "AU")
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(5 + 5 / 12, "feet"),
  9439. weight: math.unit(140, "lb"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/allatia/front.svg",
  9443. extra: 1227 / 1180,
  9444. bottom: 0.027
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(5 + 5 / 12, "feet")
  9452. },
  9453. {
  9454. name: "Macro",
  9455. height: math.unit(250, "feet"),
  9456. default: true
  9457. },
  9458. {
  9459. name: "Megamacro",
  9460. height: math.unit(8, "miles")
  9461. }
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(120, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/tene/front.svg",
  9473. extra: 1728 / 1578,
  9474. bottom: 0.022
  9475. }
  9476. },
  9477. stomping: {
  9478. height: math.unit(2.025, "meters"),
  9479. weight: math.unit(120, "lb"),
  9480. name: "Stomping",
  9481. image: {
  9482. source: "./media/characters/tene/stomping.svg",
  9483. extra: 938 / 873,
  9484. bottom: 0.01
  9485. }
  9486. },
  9487. sitting: {
  9488. height: math.unit(1, "meter"),
  9489. weight: math.unit(120, "lb"),
  9490. name: "Sitting",
  9491. image: {
  9492. source: "./media/characters/tene/sitting.svg",
  9493. extra: 437 / 415,
  9494. bottom: 0.1
  9495. }
  9496. },
  9497. feral: {
  9498. height: math.unit(3.9, "feet"),
  9499. weight: math.unit(250, "lb"),
  9500. name: "Feral",
  9501. image: {
  9502. source: "./media/characters/tene/feral.svg",
  9503. extra: 717 / 458,
  9504. bottom: 0.179
  9505. }
  9506. },
  9507. },
  9508. [
  9509. {
  9510. name: "Normal",
  9511. height: math.unit(6, "feet")
  9512. },
  9513. {
  9514. name: "Macro",
  9515. height: math.unit(300, "feet"),
  9516. default: true
  9517. },
  9518. {
  9519. name: "Megamacro",
  9520. height: math.unit(5, "miles")
  9521. },
  9522. ]
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9526. {
  9527. side: {
  9528. height: math.unit(6, "feet"),
  9529. name: "Side",
  9530. image: {
  9531. source: "./media/characters/evander/side.svg",
  9532. extra: 877 / 477
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(0.83, "meters"),
  9540. default: true
  9541. },
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9546. {
  9547. front: {
  9548. height: math.unit(12, "feet"),
  9549. weight: math.unit(1000, "lb"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9553. extra: 1762 / 1611
  9554. }
  9555. },
  9556. back: {
  9557. height: math.unit(12, "feet"),
  9558. weight: math.unit(1000, "lb"),
  9559. name: "Back",
  9560. image: {
  9561. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9562. extra: 1762 / 1611
  9563. }
  9564. },
  9565. },
  9566. [
  9567. {
  9568. name: "Normal",
  9569. height: math.unit(12, "feet"),
  9570. default: true
  9571. },
  9572. {
  9573. name: "Kaiju",
  9574. height: math.unit(150, "feet")
  9575. },
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(150, "lb"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/zero-alurus/front.svg"
  9587. }
  9588. },
  9589. back: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(150, "lb"),
  9592. name: "Back",
  9593. image: {
  9594. source: "./media/characters/zero-alurus/back.svg"
  9595. }
  9596. },
  9597. },
  9598. [
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(5 + 10 / 12, "feet")
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(60, "feet"),
  9606. default: true
  9607. },
  9608. {
  9609. name: "Macro+",
  9610. height: math.unit(450, "feet")
  9611. },
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9616. {
  9617. front: {
  9618. height: math.unit(6, "feet"),
  9619. weight: math.unit(200, "lb"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/mega-shi/front.svg",
  9623. extra: 1279 / 1250,
  9624. bottom: 0.02
  9625. }
  9626. },
  9627. back: {
  9628. height: math.unit(6, "feet"),
  9629. weight: math.unit(200, "lb"),
  9630. name: "Back",
  9631. image: {
  9632. source: "./media/characters/mega-shi/back.svg",
  9633. extra: 1279 / 1250,
  9634. bottom: 0.02
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Micro",
  9641. height: math.unit(16 + 6 / 12, "feet")
  9642. },
  9643. {
  9644. name: "Third Dimension",
  9645. height: math.unit(40, "meters")
  9646. },
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(660, "feet"),
  9650. default: true
  9651. },
  9652. {
  9653. name: "Megamacro",
  9654. height: math.unit(10, "miles")
  9655. },
  9656. {
  9657. name: "Planetary Launch",
  9658. height: math.unit(500, "miles")
  9659. },
  9660. {
  9661. name: "Interstellar",
  9662. height: math.unit(1e9, "miles")
  9663. },
  9664. {
  9665. name: "Leaving the Universe",
  9666. height: math.unit(1, "gigaparsec")
  9667. },
  9668. {
  9669. name: "Travelling Universes",
  9670. height: math.unit(30e15, "parsecs")
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(6, "feet"),
  9679. weight: math.unit(150, "lb"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/odyssey/front.svg",
  9683. extra: 1782 / 1582,
  9684. bottom: 0.01
  9685. }
  9686. },
  9687. side: {
  9688. height: math.unit(5.7, "feet"),
  9689. weight: math.unit(140, "lb"),
  9690. name: "Side",
  9691. image: {
  9692. source: "./media/characters/odyssey/side.svg",
  9693. extra: 6462 / 5700
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(5 + 4 / 12, "feet")
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(1, "km")
  9705. },
  9706. {
  9707. name: "Megamacro",
  9708. height: math.unit(3000, "km")
  9709. },
  9710. {
  9711. name: "Gigamacro",
  9712. height: math.unit(1, "AU"),
  9713. default: true
  9714. },
  9715. {
  9716. name: "Omniversal",
  9717. height: math.unit(100e14, "lightyears")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(300, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/mekuto/front.svg",
  9730. extra: 921 / 832,
  9731. bottom: 0.03
  9732. }
  9733. },
  9734. hand: {
  9735. height: math.unit(6 / 10.24, "feet"),
  9736. name: "Hand",
  9737. image: {
  9738. source: "./media/characters/mekuto/hand.svg"
  9739. }
  9740. },
  9741. foot: {
  9742. height: math.unit(6 / 5.05, "feet"),
  9743. name: "Foot",
  9744. image: {
  9745. source: "./media/characters/mekuto/foot.svg"
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Minimicro",
  9752. height: math.unit(0.2, "inches")
  9753. },
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(1.5, "inches")
  9757. },
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(5 + 11 / 12, "feet"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Minimacro",
  9765. height: math.unit(17 + 9 / 12, "feet")
  9766. },
  9767. {
  9768. name: "Macro",
  9769. height: math.unit(177.5, "feet")
  9770. },
  9771. {
  9772. name: "Megamacro",
  9773. height: math.unit(152, "miles")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6.5, "inches"),
  9782. weight: math.unit(13, "oz"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/dafydd-tomos/front.svg",
  9786. extra: 2990 / 2603,
  9787. bottom: 0.03
  9788. }
  9789. },
  9790. },
  9791. [
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(6.5, "inches"),
  9795. default: true
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(6, "feet"),
  9804. weight: math.unit(150, "lb"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/splinter/front.svg",
  9808. extra: 2990 / 2882,
  9809. bottom: 0.04
  9810. }
  9811. },
  9812. back: {
  9813. height: math.unit(6, "feet"),
  9814. weight: math.unit(150, "lb"),
  9815. name: "Back",
  9816. image: {
  9817. source: "./media/characters/splinter/back.svg",
  9818. extra: 2990 / 2882,
  9819. bottom: 0.04
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(6, "feet")
  9827. },
  9828. {
  9829. name: "Macro",
  9830. height: math.unit(230, "meters"),
  9831. default: true
  9832. },
  9833. ]
  9834. ))
  9835. characterMakers.push(() => makeCharacter(
  9836. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9837. {
  9838. front: {
  9839. height: math.unit(4 + 10 / 12, "feet"),
  9840. weight: math.unit(480, "lb"),
  9841. name: "Front",
  9842. image: {
  9843. source: "./media/characters/snow-gabumon/front.svg",
  9844. extra: 1140 / 963,
  9845. bottom: 0.058
  9846. }
  9847. },
  9848. back: {
  9849. height: math.unit(4 + 10 / 12, "feet"),
  9850. weight: math.unit(480, "lb"),
  9851. name: "Back",
  9852. image: {
  9853. source: "./media/characters/snow-gabumon/back.svg",
  9854. extra: 1115 / 962,
  9855. bottom: 0.041
  9856. }
  9857. },
  9858. frontUndresed: {
  9859. height: math.unit(4 + 10 / 12, "feet"),
  9860. weight: math.unit(480, "lb"),
  9861. name: "Front (Undressed)",
  9862. image: {
  9863. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9864. extra: 1061 / 960,
  9865. bottom: 0.045
  9866. }
  9867. },
  9868. },
  9869. [
  9870. {
  9871. name: "Micro",
  9872. height: math.unit(1, "inch")
  9873. },
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(4 + 10 / 12, "feet"),
  9877. default: true
  9878. },
  9879. {
  9880. name: "Macro",
  9881. height: math.unit(200, "feet")
  9882. },
  9883. {
  9884. name: "Megamacro",
  9885. height: math.unit(120, "miles")
  9886. },
  9887. {
  9888. name: "Gigamacro",
  9889. height: math.unit(9800, "miles")
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(1.7, "meters"),
  9898. weight: math.unit(140, "lb"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/moody/front.svg",
  9902. extra: 3226 / 3007,
  9903. bottom: 0.087
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Micro",
  9910. height: math.unit(1, "mm")
  9911. },
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(1.7, "meters"),
  9915. default: true
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(80, "meters")
  9920. },
  9921. {
  9922. name: "Macro+",
  9923. height: math.unit(500, "meters")
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(6, "feet"),
  9932. weight: math.unit(150, "lb"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/zyas/front.svg",
  9936. extra: 1180 / 1120,
  9937. bottom: 0.045
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(10, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Macro",
  9949. height: math.unit(500, "feet")
  9950. },
  9951. {
  9952. name: "Megamacro",
  9953. height: math.unit(5, "miles")
  9954. },
  9955. {
  9956. name: "Teramacro",
  9957. height: math.unit(150000, "miles")
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(150, "lb"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/cuon/front.svg",
  9970. extra: 1390 / 1320,
  9971. bottom: 0.008
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Micro",
  9978. height: math.unit(3, "inches")
  9979. },
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(18 + 9 / 12, "feet"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(360, "feet")
  9988. },
  9989. {
  9990. name: "Megamacro",
  9991. height: math.unit(360, "miles")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(2.4, "meters"),
  10000. weight: math.unit(70, "kg"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/nyanuxk/front.svg",
  10004. extra: 1172 / 1084,
  10005. bottom: 0.065
  10006. }
  10007. },
  10008. side: {
  10009. height: math.unit(2.4, "meters"),
  10010. weight: math.unit(70, "kg"),
  10011. name: "Side",
  10012. image: {
  10013. source: "./media/characters/nyanuxk/side.svg",
  10014. extra: 1190 / 1132,
  10015. bottom: 0.007
  10016. }
  10017. },
  10018. back: {
  10019. height: math.unit(2.4, "meters"),
  10020. weight: math.unit(70, "kg"),
  10021. name: "Back",
  10022. image: {
  10023. source: "./media/characters/nyanuxk/back.svg",
  10024. extra: 1200 / 1141,
  10025. bottom: 0.015
  10026. }
  10027. },
  10028. foot: {
  10029. height: math.unit(0.52, "meters"),
  10030. name: "Foot",
  10031. image: {
  10032. source: "./media/characters/nyanuxk/foot.svg"
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Micro",
  10039. height: math.unit(2, "cm")
  10040. },
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(2.4, "meters"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Smaller Macro",
  10048. height: math.unit(120, "meters")
  10049. },
  10050. {
  10051. name: "Bigger Macro",
  10052. height: math.unit(1.2, "km")
  10053. },
  10054. {
  10055. name: "Megamacro",
  10056. height: math.unit(15, "kilometers")
  10057. },
  10058. {
  10059. name: "Gigamacro",
  10060. height: math.unit(2000, "km")
  10061. },
  10062. {
  10063. name: "Teramacro",
  10064. height: math.unit(500000, "km")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10070. {
  10071. side: {
  10072. height: math.unit(6, "feet"),
  10073. name: "Side",
  10074. image: {
  10075. source: "./media/characters/ailbhe/side.svg",
  10076. extra: 757 / 464,
  10077. bottom: 0.041
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Normal",
  10084. height: math.unit(1.07, "meters"),
  10085. default: true
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10091. {
  10092. front: {
  10093. height: math.unit(6, "feet"),
  10094. weight: math.unit(120, "kg"),
  10095. name: "Front",
  10096. image: {
  10097. source: "./media/characters/zevulfius/front.svg",
  10098. extra: 965 / 903
  10099. }
  10100. },
  10101. side: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(120, "kg"),
  10104. name: "Side",
  10105. image: {
  10106. source: "./media/characters/zevulfius/side.svg",
  10107. extra: 939 / 900
  10108. }
  10109. },
  10110. back: {
  10111. height: math.unit(6, "feet"),
  10112. weight: math.unit(120, "kg"),
  10113. name: "Back",
  10114. image: {
  10115. source: "./media/characters/zevulfius/back.svg",
  10116. extra: 918 / 854,
  10117. bottom: 0.005
  10118. }
  10119. },
  10120. foot: {
  10121. height: math.unit(6 / 3.72, "feet"),
  10122. name: "Foot",
  10123. image: {
  10124. source: "./media/characters/zevulfius/foot.svg"
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(750, "meters")
  10132. },
  10133. {
  10134. name: "Megamacro",
  10135. height: math.unit(20, "km"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Gigamacro",
  10140. height: math.unit(2000, "km")
  10141. },
  10142. {
  10143. name: "Teramacro",
  10144. height: math.unit(250000, "km")
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10150. {
  10151. front: {
  10152. height: math.unit(100, "feet"),
  10153. weight: math.unit(350, "kg"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/rikes/front.svg",
  10157. extra: 1565 / 1483,
  10158. bottom: 0.017
  10159. }
  10160. },
  10161. },
  10162. [
  10163. {
  10164. name: "Macro",
  10165. height: math.unit(100, "feet"),
  10166. default: true
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10172. {
  10173. anthro: {
  10174. height: math.unit(8, "feet"),
  10175. weight: math.unit(120, "kg"),
  10176. name: "Anthro",
  10177. image: {
  10178. source: "./media/characters/adam-silver-mane/anthro.svg",
  10179. extra: 5743 / 5339,
  10180. bottom: 0.07
  10181. }
  10182. },
  10183. taur: {
  10184. height: math.unit(16, "feet"),
  10185. weight: math.unit(1500, "kg"),
  10186. name: "Taur",
  10187. image: {
  10188. source: "./media/characters/adam-silver-mane/taur.svg",
  10189. extra: 1713 / 1571,
  10190. bottom: 0.01
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(8, "feet")
  10198. },
  10199. {
  10200. name: "Minimacro",
  10201. height: math.unit(80, "feet")
  10202. },
  10203. {
  10204. name: "Macro",
  10205. height: math.unit(800, "feet"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Megamacro",
  10210. height: math.unit(8000, "feet")
  10211. },
  10212. {
  10213. name: "Gigamacro",
  10214. height: math.unit(800, "miles")
  10215. },
  10216. {
  10217. name: "Teramacro",
  10218. height: math.unit(80000, "miles")
  10219. },
  10220. {
  10221. name: "Celestial",
  10222. height: math.unit(8e6, "miles")
  10223. },
  10224. {
  10225. name: "Star Dragon",
  10226. height: math.unit(800000, "parsecs")
  10227. },
  10228. {
  10229. name: "Godly",
  10230. height: math.unit(800, "teraparsecs")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(6, "feet"),
  10239. weight: math.unit(150, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/ky'owin/front.svg",
  10243. extra: 3888 / 3068,
  10244. bottom: 0.015
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(6 + 8 / 12, "feet")
  10252. },
  10253. {
  10254. name: "Large",
  10255. height: math.unit(68, "feet")
  10256. },
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(132, "feet")
  10260. },
  10261. {
  10262. name: "Macro+",
  10263. height: math.unit(340, "feet")
  10264. },
  10265. {
  10266. name: "Macro++",
  10267. height: math.unit(680, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Megamacro",
  10272. height: math.unit(1, "mile")
  10273. },
  10274. {
  10275. name: "Megamacro+",
  10276. height: math.unit(10, "miles")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(4, "feet"),
  10285. weight: math.unit(50, "lb"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/mal/front.svg",
  10289. extra: 785 / 724,
  10290. bottom: 0.07
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Micro",
  10297. height: math.unit(4, "inches")
  10298. },
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(4, "feet"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "Macro",
  10306. height: math.unit(200, "feet")
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(6, "feet"),
  10315. weight: math.unit(150, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/jordan-deware/front.svg",
  10319. extra: 1191 / 1012
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Nano",
  10326. height: math.unit(0.01, "mm")
  10327. },
  10328. {
  10329. name: "Minimicro",
  10330. height: math.unit(1, "mm")
  10331. },
  10332. {
  10333. name: "Micro",
  10334. height: math.unit(0.5, "inches")
  10335. },
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(4, "feet"),
  10339. default: true
  10340. },
  10341. {
  10342. name: "Minimacro",
  10343. height: math.unit(40, "meters")
  10344. },
  10345. {
  10346. name: "Small Macro",
  10347. height: math.unit(400, "meters")
  10348. },
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(4, "miles")
  10352. },
  10353. {
  10354. name: "Megamacro",
  10355. height: math.unit(40, "miles")
  10356. },
  10357. {
  10358. name: "Megamacro+",
  10359. height: math.unit(400, "miles")
  10360. },
  10361. {
  10362. name: "Gigamacro",
  10363. height: math.unit(400000, "miles")
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10369. {
  10370. side: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(150, "lb"),
  10373. name: "Side",
  10374. image: {
  10375. source: "./media/characters/kimiko/side.svg",
  10376. extra: 600 / 358
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(15, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(220, "feet")
  10389. },
  10390. {
  10391. name: "Macro+",
  10392. height: math.unit(1450, "feet")
  10393. },
  10394. {
  10395. name: "Megamacro",
  10396. height: math.unit(11500, "feet")
  10397. },
  10398. {
  10399. name: "Gigamacro",
  10400. height: math.unit(9500, "miles")
  10401. },
  10402. {
  10403. name: "Teramacro",
  10404. height: math.unit(2208005005, "miles")
  10405. },
  10406. {
  10407. name: "Examacro",
  10408. height: math.unit(2750, "parsecs")
  10409. },
  10410. {
  10411. name: "Zettamacro",
  10412. height: math.unit(101500, "parsecs")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(70, "kg"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/andrew-sleepy/front.svg"
  10425. }
  10426. },
  10427. side: {
  10428. height: math.unit(6, "feet"),
  10429. weight: math.unit(70, "kg"),
  10430. name: "Side",
  10431. image: {
  10432. source: "./media/characters/andrew-sleepy/side.svg"
  10433. }
  10434. },
  10435. },
  10436. [
  10437. {
  10438. name: "Micro",
  10439. height: math.unit(1, "mm"),
  10440. default: true
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10446. {
  10447. front: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(150, "lb"),
  10450. name: "Front",
  10451. image: {
  10452. source: "./media/characters/judio/front.svg",
  10453. extra: 1258 / 1110
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(5 + 6 / 12, "feet")
  10461. },
  10462. {
  10463. name: "Macro",
  10464. height: math.unit(1000, "feet"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Megamacro",
  10469. height: math.unit(10, "miles")
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10475. {
  10476. front: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(68, "kg"),
  10479. name: "Front",
  10480. image: {
  10481. source: "./media/characters/nomaxice/front.svg",
  10482. extra: 1498 / 1073,
  10483. bottom: 0.075
  10484. }
  10485. },
  10486. foot: {
  10487. height: math.unit(1.1, "feet"),
  10488. name: "Foot",
  10489. image: {
  10490. source: "./media/characters/nomaxice/foot.svg"
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Micro",
  10497. height: math.unit(8, "cm")
  10498. },
  10499. {
  10500. name: "Norm",
  10501. height: math.unit(1.82, "m")
  10502. },
  10503. {
  10504. name: "Norm+",
  10505. height: math.unit(8.8, "feet")
  10506. },
  10507. {
  10508. name: "Big",
  10509. height: math.unit(8, "meters"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(18, "meters")
  10515. },
  10516. {
  10517. name: "Macro+",
  10518. height: math.unit(88, "meters")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(12, "feet"),
  10527. weight: math.unit(1.5, "tons"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/dydros/front.svg",
  10531. extra: 863 / 800,
  10532. bottom: 0.015
  10533. }
  10534. },
  10535. back: {
  10536. height: math.unit(12, "feet"),
  10537. weight: math.unit(1.5, "tons"),
  10538. name: "Back",
  10539. image: {
  10540. source: "./media/characters/dydros/back.svg",
  10541. extra: 900 / 843,
  10542. bottom: 0.005
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Normal",
  10549. height: math.unit(12, "feet"),
  10550. default: true
  10551. },
  10552. ]
  10553. ))
  10554. characterMakers.push(() => makeCharacter(
  10555. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10556. {
  10557. front: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(100, "kg"),
  10560. name: "Front",
  10561. image: {
  10562. source: "./media/characters/riggi/front.svg",
  10563. extra: 5787 / 5303
  10564. }
  10565. },
  10566. hyper: {
  10567. height: math.unit(6 * 5 / 3, "feet"),
  10568. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10569. name: "Hyper",
  10570. image: {
  10571. source: "./media/characters/riggi/hyper.svg",
  10572. extra: 3595 / 3485
  10573. }
  10574. },
  10575. },
  10576. [
  10577. {
  10578. name: "Small Macro",
  10579. height: math.unit(50, "feet")
  10580. },
  10581. {
  10582. name: "Default",
  10583. height: math.unit(200, "feet"),
  10584. default: true
  10585. },
  10586. {
  10587. name: "Loom",
  10588. height: math.unit(10000, "feet")
  10589. },
  10590. {
  10591. name: "Cruising Altitude",
  10592. height: math.unit(30000, "feet")
  10593. },
  10594. {
  10595. name: "Megamacro",
  10596. height: math.unit(100, "miles")
  10597. },
  10598. {
  10599. name: "Continent Sized",
  10600. height: math.unit(2800, "miles")
  10601. },
  10602. {
  10603. name: "Earth Sized",
  10604. height: math.unit(8000, "miles")
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(250, "lb"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/alexi/front.svg",
  10617. extra: 3483 / 3291,
  10618. bottom: 0.04
  10619. }
  10620. },
  10621. back: {
  10622. height: math.unit(6, "feet"),
  10623. weight: math.unit(250, "lb"),
  10624. name: "Back",
  10625. image: {
  10626. source: "./media/characters/alexi/back.svg",
  10627. extra: 3533 / 3356,
  10628. bottom: 0.021
  10629. }
  10630. },
  10631. frontTransforming: {
  10632. height: math.unit(8.58, "feet"),
  10633. weight: math.unit(1300, "lb"),
  10634. name: "Transforming",
  10635. image: {
  10636. source: "./media/characters/alexi/front-transforming.svg",
  10637. extra: 437 / 409,
  10638. bottom: 19 / 458.66
  10639. }
  10640. },
  10641. frontTransformed: {
  10642. height: math.unit(12.5, "feet"),
  10643. weight: math.unit(4000, "lb"),
  10644. name: "Transformed",
  10645. image: {
  10646. source: "./media/characters/alexi/front-transformed.svg",
  10647. extra: 639 / 614,
  10648. bottom: 30.55 / 671
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(14, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Minimacro",
  10660. height: math.unit(30, "meters")
  10661. },
  10662. {
  10663. name: "Macro",
  10664. height: math.unit(500, "meters")
  10665. },
  10666. {
  10667. name: "Megamacro",
  10668. height: math.unit(9000, "km")
  10669. },
  10670. {
  10671. name: "Teramacro",
  10672. height: math.unit(384000, "km")
  10673. },
  10674. ]
  10675. ))
  10676. characterMakers.push(() => makeCharacter(
  10677. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10678. {
  10679. front: {
  10680. height: math.unit(6, "feet"),
  10681. weight: math.unit(150, "lb"),
  10682. name: "Front",
  10683. image: {
  10684. source: "./media/characters/kayroo/front.svg",
  10685. extra: 1153 / 1038,
  10686. bottom: 0.06
  10687. }
  10688. },
  10689. foot: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(150, "lb"),
  10692. name: "Foot",
  10693. image: {
  10694. source: "./media/characters/kayroo/foot.svg"
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(8, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Minimacro",
  10706. height: math.unit(250, "feet")
  10707. },
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(2800, "feet")
  10711. },
  10712. {
  10713. name: "Megamacro",
  10714. height: math.unit(5200, "feet")
  10715. },
  10716. {
  10717. name: "Gigamacro",
  10718. height: math.unit(27000, "feet")
  10719. },
  10720. {
  10721. name: "Omega",
  10722. height: math.unit(45000, "feet")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(18, "feet"),
  10731. weight: math.unit(5800, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/rhys/front.svg",
  10735. extra: 3386 / 3090,
  10736. bottom: 0.07
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(18, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Working Size",
  10748. height: math.unit(200, "feet")
  10749. },
  10750. {
  10751. name: "Demolition Size",
  10752. height: math.unit(2000, "feet")
  10753. },
  10754. {
  10755. name: "Maximum Licensed Size",
  10756. height: math.unit(5, "miles")
  10757. },
  10758. {
  10759. name: "Maximum Observed Size",
  10760. height: math.unit(10, "yottameters")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(250, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/toto/front.svg",
  10773. extra: 527 / 479,
  10774. bottom: 0.05
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Micro",
  10781. height: math.unit(3, "feet")
  10782. },
  10783. {
  10784. name: "Normal",
  10785. height: math.unit(10, "feet")
  10786. },
  10787. {
  10788. name: "Macro",
  10789. height: math.unit(150, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Megamacro",
  10794. height: math.unit(1200, "feet")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "King", species: ["lion"], tags: ["anthro"] },
  10800. {
  10801. back: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(150, "lb"),
  10804. name: "Back",
  10805. image: {
  10806. source: "./media/characters/king/back.svg"
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Micro",
  10813. height: math.unit(2, "inches")
  10814. },
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(8, "feet")
  10818. },
  10819. {
  10820. name: "Macro",
  10821. height: math.unit(200, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(50, "miles")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10832. {
  10833. anthro: {
  10834. height: math.unit(6 + 5 / 12, "feet"),
  10835. weight: math.unit(280, "lb"),
  10836. name: "Anthro",
  10837. image: {
  10838. source: "./media/characters/cordite/anthro.svg",
  10839. extra: 1986 / 1905,
  10840. bottom: 0.025
  10841. }
  10842. },
  10843. feral: {
  10844. height: math.unit(2, "feet"),
  10845. weight: math.unit(90, "lb"),
  10846. name: "Feral",
  10847. image: {
  10848. source: "./media/characters/cordite/feral.svg",
  10849. extra: 1260 / 755,
  10850. bottom: 0.05
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Normal",
  10857. height: math.unit(6 + 5 / 12, "feet"),
  10858. default: true
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/pianostrong/front.svg",
  10871. extra: 6577 / 6254,
  10872. bottom: 0.02
  10873. }
  10874. },
  10875. side: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(150, "lb"),
  10878. name: "Side",
  10879. image: {
  10880. source: "./media/characters/pianostrong/side.svg",
  10881. extra: 6106 / 5730
  10882. }
  10883. },
  10884. back: {
  10885. height: math.unit(6, "feet"),
  10886. weight: math.unit(150, "lb"),
  10887. name: "Back",
  10888. image: {
  10889. source: "./media/characters/pianostrong/back.svg",
  10890. extra: 6085 / 5733,
  10891. bottom: 0.01
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(100, "feet")
  10899. },
  10900. {
  10901. name: "Macro+",
  10902. height: math.unit(300, "feet"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Macro++",
  10907. height: math.unit(1000, "feet")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(6, "feet"),
  10916. weight: math.unit(150, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/kona/front.svg",
  10920. extra: 2960 / 2629,
  10921. bottom: 0.005
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(11 + 8 / 12, "feet")
  10929. },
  10930. {
  10931. name: "Macro",
  10932. height: math.unit(850, "feet"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Macro+",
  10937. height: math.unit(1.5, "km"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Megamacro",
  10942. height: math.unit(80, "miles")
  10943. },
  10944. {
  10945. name: "Gigamacro",
  10946. height: math.unit(3500, "miles")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10952. {
  10953. side: {
  10954. height: math.unit(1.9, "meters"),
  10955. weight: math.unit(326, "kg"),
  10956. name: "Side",
  10957. image: {
  10958. source: "./media/characters/levi/side.svg",
  10959. extra: 1704 / 1334,
  10960. bottom: 0.02
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Normal",
  10967. height: math.unit(1.9, "meters"),
  10968. default: true
  10969. },
  10970. {
  10971. name: "Macro",
  10972. height: math.unit(20, "meters")
  10973. },
  10974. {
  10975. name: "Macro+",
  10976. height: math.unit(200, "meters")
  10977. },
  10978. {
  10979. name: "Megamacro",
  10980. height: math.unit(2, "km")
  10981. },
  10982. {
  10983. name: "Megamacro+",
  10984. height: math.unit(20, "km")
  10985. },
  10986. {
  10987. name: "Gigamacro",
  10988. height: math.unit(2500, "km")
  10989. },
  10990. {
  10991. name: "Gigamacro+",
  10992. height: math.unit(120000, "km")
  10993. },
  10994. {
  10995. name: "Teramacro",
  10996. height: math.unit(7.77e6, "km")
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(6 + 4 / 12, "feet"),
  11005. weight: math.unit(188, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/bmc/front.svg",
  11009. extra: 1067 / 1022,
  11010. bottom: 0.047
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Human-sized",
  11017. height: math.unit(6 + 4 / 12, "feet")
  11018. },
  11019. {
  11020. name: "Small",
  11021. height: math.unit(250, "feet")
  11022. },
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(1250, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Good Day",
  11030. height: math.unit(88, "miles")
  11031. },
  11032. {
  11033. name: "Largest Measured Size",
  11034. height: math.unit(11.2e6, "lightyears")
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(20, "feet"),
  11043. weight: math.unit(2016, "kg"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/sven-the-kaiju/front.svg",
  11047. extra: 1479 / 1449,
  11048. bottom: 0.05
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Fairy",
  11055. height: math.unit(6, "inches")
  11056. },
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(20, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Rampage",
  11064. height: math.unit(200, "feet")
  11065. },
  11066. {
  11067. name: "Archfey Forest Guardian",
  11068. height: math.unit(1, "mile")
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(4, "meters"),
  11077. weight: math.unit(2, "tons"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/marik/front.svg",
  11081. extra: 1057 / 1003,
  11082. bottom: 0.08
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Normal",
  11089. height: math.unit(4, "meters"),
  11090. default: true
  11091. },
  11092. {
  11093. name: "Macro",
  11094. height: math.unit(20, "meters")
  11095. },
  11096. {
  11097. name: "Megamacro",
  11098. height: math.unit(50, "km")
  11099. },
  11100. {
  11101. name: "Gigamacro",
  11102. height: math.unit(100, "km")
  11103. },
  11104. {
  11105. name: "Alpha Macro",
  11106. height: math.unit(7.88e7, "yottameters")
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11112. {
  11113. front: {
  11114. height: math.unit(6, "feet"),
  11115. weight: math.unit(110, "lb"),
  11116. name: "Front",
  11117. image: {
  11118. source: "./media/characters/mel/front.svg",
  11119. extra: 736 / 617,
  11120. bottom: 0.017
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Pico",
  11127. height: math.unit(3, "pm")
  11128. },
  11129. {
  11130. name: "Nano",
  11131. height: math.unit(3, "nm")
  11132. },
  11133. {
  11134. name: "Micro",
  11135. height: math.unit(0.3, "mm"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Micro+",
  11140. height: math.unit(3, "mm")
  11141. },
  11142. {
  11143. name: "Normal",
  11144. height: math.unit(5 + 10.5 / 12, "feet")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11150. {
  11151. kaiju: {
  11152. height: math.unit(1.75, "meters"),
  11153. weight: math.unit(55, "kg"),
  11154. name: "Kaiju",
  11155. image: {
  11156. source: "./media/characters/lykonous/kaiju.svg",
  11157. extra: 1055 / 946,
  11158. bottom: 0.135
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(2.5, "meters"),
  11166. default: true
  11167. },
  11168. {
  11169. name: "Kaiju Dragon",
  11170. height: math.unit(60, "meters")
  11171. },
  11172. {
  11173. name: "Mega Kaiju",
  11174. height: math.unit(120, "km")
  11175. },
  11176. {
  11177. name: "Giga Kaiju",
  11178. height: math.unit(200, "megameters")
  11179. },
  11180. {
  11181. name: "Terra Kaiju",
  11182. height: math.unit(400, "gigameters")
  11183. },
  11184. {
  11185. name: "Kaiju Dragon God",
  11186. height: math.unit(13000, "exaparsecs")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(150, "lb"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/blü/front.svg",
  11199. extra: 1883 / 1564,
  11200. bottom: 0.031
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(13, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Big Boi",
  11212. height: math.unit(150, "meters")
  11213. },
  11214. {
  11215. name: "Mini Stomper",
  11216. height: math.unit(300, "meters")
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(1000, "meters")
  11221. },
  11222. {
  11223. name: "Megamacro",
  11224. height: math.unit(11000, "meters")
  11225. },
  11226. {
  11227. name: "Gigamacro",
  11228. height: math.unit(11000, "km")
  11229. },
  11230. {
  11231. name: "Teramacro",
  11232. height: math.unit(420000, "km")
  11233. },
  11234. {
  11235. name: "Examacro",
  11236. height: math.unit(120, "parsecs")
  11237. },
  11238. {
  11239. name: "God Tho",
  11240. height: math.unit(98000000000, "parsecs")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11246. {
  11247. taurFront: {
  11248. height: math.unit(6, "feet"),
  11249. weight: math.unit(200, "lb"),
  11250. name: "Taur (Front)",
  11251. image: {
  11252. source: "./media/characters/scales/taur-front.svg",
  11253. extra: 1,
  11254. bottom: 0.05
  11255. }
  11256. },
  11257. taurBack: {
  11258. height: math.unit(6, "feet"),
  11259. weight: math.unit(200, "lb"),
  11260. name: "Taur (Back)",
  11261. image: {
  11262. source: "./media/characters/scales/taur-back.svg",
  11263. extra: 1,
  11264. bottom: 0.08
  11265. }
  11266. },
  11267. anthro: {
  11268. height: math.unit(6 * 7 / 12, "feet"),
  11269. weight: math.unit(100, "lb"),
  11270. name: "Anthro",
  11271. image: {
  11272. source: "./media/characters/scales/anthro.svg",
  11273. extra: 1,
  11274. bottom: 0.06
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(12, "feet"),
  11282. default: true
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/koragos/front.svg",
  11295. extra: 841 / 794,
  11296. bottom: 0.035
  11297. }
  11298. },
  11299. back: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Back",
  11303. image: {
  11304. source: "./media/characters/koragos/back.svg",
  11305. extra: 841 / 810,
  11306. bottom: 0.022
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(6 + 11 / 12, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(490, "feet")
  11319. },
  11320. {
  11321. name: "Megamacro",
  11322. height: math.unit(10, "miles")
  11323. },
  11324. {
  11325. name: "Gigamacro",
  11326. height: math.unit(50, "miles")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(250, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/xylrem/front.svg",
  11339. extra: 3323 / 3050,
  11340. bottom: 0.065
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Micro",
  11347. height: math.unit(4, "feet")
  11348. },
  11349. {
  11350. name: "Normal",
  11351. height: math.unit(16, "feet"),
  11352. default: true
  11353. },
  11354. {
  11355. name: "Macro",
  11356. height: math.unit(2720, "feet")
  11357. },
  11358. {
  11359. name: "Megamacro",
  11360. height: math.unit(25000, "miles")
  11361. },
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11366. {
  11367. front: {
  11368. height: math.unit(8, "feet"),
  11369. weight: math.unit(250, "kg"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/ikideru/front.svg",
  11373. extra: 930 / 870,
  11374. bottom: 0.087
  11375. }
  11376. },
  11377. back: {
  11378. height: math.unit(8, "feet"),
  11379. weight: math.unit(250, "kg"),
  11380. name: "Back",
  11381. image: {
  11382. source: "./media/characters/ikideru/back.svg",
  11383. extra: 919 / 852,
  11384. bottom: 0.055
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Rare",
  11391. height: math.unit(8, "feet"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Playful Loom",
  11396. height: math.unit(80, "feet")
  11397. },
  11398. {
  11399. name: "City Leaner",
  11400. height: math.unit(230, "feet")
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(2500, "feet")
  11405. },
  11406. {
  11407. name: "Gigamacro",
  11408. height: math.unit(26400, "feet")
  11409. },
  11410. {
  11411. name: "Tectonic Shifter",
  11412. height: math.unit(1.7, "megameters")
  11413. },
  11414. {
  11415. name: "Planet Carer",
  11416. height: math.unit(21, "megameters")
  11417. },
  11418. {
  11419. name: "God",
  11420. height: math.unit(11157.22, "parsecs")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(6, "feet"),
  11429. weight: math.unit(120, "lb"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/neo/front.svg"
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Micro",
  11439. height: math.unit(2, "inches"),
  11440. default: true
  11441. },
  11442. {
  11443. name: "Human Size",
  11444. height: math.unit(5 + 8 / 12, "feet")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(13 + 10 / 12, "feet"),
  11453. weight: math.unit(5320, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/chauncey-chantz/front.svg",
  11457. extra: 1587 / 1435,
  11458. bottom: 0.02
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Normal",
  11465. height: math.unit(13 + 10 / 12, "feet"),
  11466. default: true
  11467. },
  11468. {
  11469. name: "Macro",
  11470. height: math.unit(45, "feet")
  11471. },
  11472. {
  11473. name: "Megamacro",
  11474. height: math.unit(250, "miles")
  11475. },
  11476. {
  11477. name: "Planetary",
  11478. height: math.unit(10000, "miles")
  11479. },
  11480. {
  11481. name: "Galactic",
  11482. height: math.unit(40000, "parsecs")
  11483. },
  11484. {
  11485. name: "Universal",
  11486. height: math.unit(1, "yottameter")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11492. {
  11493. front: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(150, "lb"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/epifox/front.svg",
  11499. extra: 1,
  11500. bottom: 0.075
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Micro",
  11507. height: math.unit(6, "inches")
  11508. },
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(12, "feet"),
  11512. default: true
  11513. },
  11514. {
  11515. name: "Macro",
  11516. height: math.unit(3810, "feet")
  11517. },
  11518. {
  11519. name: "Megamacro",
  11520. height: math.unit(500, "miles")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(1.8796, "m"),
  11529. weight: math.unit(230, "lb"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/colin-t/front.svg",
  11533. extra: 1272 / 1193,
  11534. bottom: 0.07
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Micro",
  11541. height: math.unit(0.571, "meters")
  11542. },
  11543. {
  11544. name: "Normal",
  11545. height: math.unit(1.8796, "meters"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Tall",
  11550. height: math.unit(4, "meters")
  11551. },
  11552. {
  11553. name: "Macro",
  11554. height: math.unit(67.241, "meters")
  11555. },
  11556. {
  11557. name: "Megamacro",
  11558. height: math.unit(371.856, "meters")
  11559. },
  11560. {
  11561. name: "Planetary",
  11562. height: math.unit(12631.5689, "km")
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11568. {
  11569. front: {
  11570. height: math.unit(1.85, "meters"),
  11571. weight: math.unit(80, "kg"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/matvei/front.svg",
  11575. extra: 614 / 594,
  11576. bottom: 0.01
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(1.85, "meters"),
  11584. default: true
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11590. {
  11591. front: {
  11592. height: math.unit(5 + 9 / 12, "feet"),
  11593. weight: math.unit(70, "lb"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/quincy/front.svg",
  11597. extra: 3041 / 2751
  11598. }
  11599. },
  11600. back: {
  11601. height: math.unit(5 + 9 / 12, "feet"),
  11602. weight: math.unit(70, "lb"),
  11603. name: "Back",
  11604. image: {
  11605. source: "./media/characters/quincy/back.svg",
  11606. extra: 3041 / 2751
  11607. }
  11608. },
  11609. flying: {
  11610. height: math.unit(5 + 4 / 12, "feet"),
  11611. weight: math.unit(70, "lb"),
  11612. name: "Flying",
  11613. image: {
  11614. source: "./media/characters/quincy/flying.svg",
  11615. extra: 1044 / 930
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Micro",
  11622. height: math.unit(3, "cm")
  11623. },
  11624. {
  11625. name: "Normal",
  11626. height: math.unit(5 + 9 / 12, "feet")
  11627. },
  11628. {
  11629. name: "Macro",
  11630. height: math.unit(200, "meters"),
  11631. default: true
  11632. },
  11633. {
  11634. name: "Megamacro",
  11635. height: math.unit(1000, "meters")
  11636. },
  11637. ]
  11638. ))
  11639. characterMakers.push(() => makeCharacter(
  11640. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11641. {
  11642. front: {
  11643. height: math.unit(4 + 7 / 12, "feet"),
  11644. weight: math.unit(50, "lb"),
  11645. name: "Front",
  11646. image: {
  11647. source: "./media/characters/vanrel/front.svg",
  11648. extra: 1,
  11649. bottom: 0.02
  11650. }
  11651. },
  11652. frontAlt: {
  11653. height: math.unit(4 + 7 / 12, "feet"),
  11654. weight: math.unit(50, "lb"),
  11655. name: "Front-alt",
  11656. image: {
  11657. source: "./media/characters/vanrel/front-alt.svg",
  11658. extra: 1,
  11659. bottom: 15 / 1511
  11660. }
  11661. },
  11662. elemental: {
  11663. height: math.unit(3, "feet"),
  11664. weight: math.unit(50, "lb"),
  11665. name: "Elemental",
  11666. image: {
  11667. source: "./media/characters/vanrel/elemental.svg",
  11668. extra: 192.3 / 162.8,
  11669. bottom: 1.79 / 194.17
  11670. }
  11671. },
  11672. side: {
  11673. height: math.unit(4 + 7 / 12, "feet"),
  11674. weight: math.unit(50, "lb"),
  11675. name: "Side",
  11676. image: {
  11677. source: "./media/characters/vanrel/side.svg",
  11678. extra: 1,
  11679. bottom: 0.025
  11680. }
  11681. },
  11682. tome: {
  11683. height: math.unit(1.35, "feet"),
  11684. weight: math.unit(10, "lb"),
  11685. name: "Vanrel's Tome",
  11686. rename: true,
  11687. image: {
  11688. source: "./media/characters/vanrel/tome.svg"
  11689. }
  11690. },
  11691. beans: {
  11692. height: math.unit(0.89, "feet"),
  11693. name: "Beans",
  11694. image: {
  11695. source: "./media/characters/vanrel/beans.svg"
  11696. }
  11697. },
  11698. },
  11699. [
  11700. {
  11701. name: "Normal",
  11702. height: math.unit(4 + 7 / 12, "feet"),
  11703. default: true
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(7 + 5 / 12, "feet"),
  11712. weight: math.unit(150, "lb"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/kuiper-vanrel/front.svg",
  11716. extra: 1118 / 1068,
  11717. bottom: 0.09
  11718. }
  11719. },
  11720. foot: {
  11721. height: math.unit(0.55, "meters"),
  11722. name: "Foot",
  11723. image: {
  11724. source: "./media/characters/kuiper-vanrel/foot.svg",
  11725. }
  11726. },
  11727. battle: {
  11728. height: math.unit(6.824, "feet"),
  11729. weight: math.unit(150, "lb"),
  11730. name: "Battle",
  11731. image: {
  11732. source: "./media/characters/kuiper-vanrel/battle.svg",
  11733. extra: 1466 / 1327,
  11734. bottom: 29 / 1492.5
  11735. }
  11736. },
  11737. battleAlt: {
  11738. height: math.unit(6.824, "feet"),
  11739. weight: math.unit(150, "lb"),
  11740. name: "Battle (Alt)",
  11741. image: {
  11742. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11743. extra: 2081 / 1965,
  11744. bottom: 40 / 2121
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(7 + 5 / 12, "feet"),
  11752. default: true
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(8 + 5 / 12, "feet"),
  11761. weight: math.unit(150, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/keset-vanrel/front.svg",
  11765. extra: 1150 / 1084,
  11766. bottom: 0.05
  11767. }
  11768. },
  11769. hand: {
  11770. height: math.unit(0.6, "meters"),
  11771. name: "Hand",
  11772. image: {
  11773. source: "./media/characters/keset-vanrel/hand.svg"
  11774. }
  11775. },
  11776. foot: {
  11777. height: math.unit(0.94978, "meters"),
  11778. name: "Foot",
  11779. image: {
  11780. source: "./media/characters/keset-vanrel/foot.svg"
  11781. }
  11782. },
  11783. battle: {
  11784. height: math.unit(7.408, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Battle",
  11787. image: {
  11788. source: "./media/characters/keset-vanrel/battle.svg",
  11789. extra: 1890 / 1386,
  11790. bottom: 73.28 / 1970
  11791. }
  11792. },
  11793. },
  11794. [
  11795. {
  11796. name: "Normal",
  11797. height: math.unit(8 + 5 / 12, "feet"),
  11798. default: true
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/neos/front.svg",
  11811. extra: 1696 / 992,
  11812. bottom: 0.14
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(54, "cm"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(100, "m")
  11825. },
  11826. {
  11827. name: "Megamacro",
  11828. height: math.unit(10, "km")
  11829. },
  11830. {
  11831. name: "Megamacro+",
  11832. height: math.unit(100, "km")
  11833. },
  11834. {
  11835. name: "Gigamacro",
  11836. height: math.unit(100, "Mm")
  11837. },
  11838. {
  11839. name: "Teramacro",
  11840. height: math.unit(100, "Gm")
  11841. },
  11842. {
  11843. name: "Examacro",
  11844. height: math.unit(100, "Em")
  11845. },
  11846. {
  11847. name: "Godly",
  11848. height: math.unit(10000, "Ym")
  11849. },
  11850. {
  11851. name: "Beyond Godly",
  11852. height: math.unit(25, "multiverses")
  11853. },
  11854. ]
  11855. ))
  11856. characterMakers.push(() => makeCharacter(
  11857. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11858. {
  11859. feminine: {
  11860. height: math.unit(5, "feet"),
  11861. weight: math.unit(100, "lb"),
  11862. name: "Feminine",
  11863. image: {
  11864. source: "./media/characters/sammy-mouse/feminine.svg",
  11865. extra: 2526 / 2425,
  11866. bottom: 0.123
  11867. }
  11868. },
  11869. masculine: {
  11870. height: math.unit(5, "feet"),
  11871. weight: math.unit(100, "lb"),
  11872. name: "Masculine",
  11873. image: {
  11874. source: "./media/characters/sammy-mouse/masculine.svg",
  11875. extra: 2526 / 2425,
  11876. bottom: 0.123
  11877. }
  11878. },
  11879. },
  11880. [
  11881. {
  11882. name: "Micro",
  11883. height: math.unit(5, "inches")
  11884. },
  11885. {
  11886. name: "Normal",
  11887. height: math.unit(5, "feet"),
  11888. default: true
  11889. },
  11890. {
  11891. name: "Macro",
  11892. height: math.unit(60, "feet")
  11893. },
  11894. ]
  11895. ))
  11896. characterMakers.push(() => makeCharacter(
  11897. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11898. {
  11899. front: {
  11900. height: math.unit(4, "feet"),
  11901. weight: math.unit(50, "lb"),
  11902. name: "Front",
  11903. image: {
  11904. source: "./media/characters/kole/front.svg",
  11905. extra: 1423 / 1303,
  11906. bottom: 0.025
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(4, "feet"),
  11911. weight: math.unit(50, "lb"),
  11912. name: "Back",
  11913. image: {
  11914. source: "./media/characters/kole/back.svg",
  11915. extra: 1426 / 1280,
  11916. bottom: 0.02
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Normal",
  11923. height: math.unit(4, "feet"),
  11924. default: true
  11925. },
  11926. ]
  11927. ))
  11928. characterMakers.push(() => makeCharacter(
  11929. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11930. {
  11931. front: {
  11932. height: math.unit(2 + 6 / 12, "feet"),
  11933. weight: math.unit(20, "lb"),
  11934. name: "Front",
  11935. image: {
  11936. source: "./media/characters/rufran/front.svg",
  11937. extra: 2041 / 1839,
  11938. bottom: 0.055
  11939. }
  11940. },
  11941. back: {
  11942. height: math.unit(2 + 6 / 12, "feet"),
  11943. weight: math.unit(20, "lb"),
  11944. name: "Back",
  11945. image: {
  11946. source: "./media/characters/rufran/back.svg",
  11947. extra: 2054 / 1839,
  11948. bottom: 0.01
  11949. }
  11950. },
  11951. hand: {
  11952. height: math.unit(0.2166, "meters"),
  11953. name: "Hand",
  11954. image: {
  11955. source: "./media/characters/rufran/hand.svg"
  11956. }
  11957. },
  11958. foot: {
  11959. height: math.unit(0.185, "meters"),
  11960. name: "Foot",
  11961. image: {
  11962. source: "./media/characters/rufran/foot.svg"
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Micro",
  11969. height: math.unit(1, "inch")
  11970. },
  11971. {
  11972. name: "Normal",
  11973. height: math.unit(2 + 6 / 12, "feet"),
  11974. default: true
  11975. },
  11976. {
  11977. name: "Big",
  11978. height: math.unit(60, "feet")
  11979. },
  11980. {
  11981. name: "Macro",
  11982. height: math.unit(325, "feet")
  11983. },
  11984. ]
  11985. ))
  11986. characterMakers.push(() => makeCharacter(
  11987. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11988. {
  11989. front: {
  11990. height: math.unit(0.3, "meters"),
  11991. weight: math.unit(3.5, "kg"),
  11992. name: "Front",
  11993. image: {
  11994. source: "./media/characters/chip/front.svg",
  11995. extra: 748 / 674
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Micro",
  12002. height: math.unit(1, "inch"),
  12003. default: true
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12009. {
  12010. side: {
  12011. height: math.unit(2.3, "meters"),
  12012. weight: math.unit(3500, "lb"),
  12013. name: "Side",
  12014. image: {
  12015. source: "./media/characters/torvid/side.svg",
  12016. extra: 1972 / 722,
  12017. bottom: 0.035
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Normal",
  12024. height: math.unit(2.3, "meters"),
  12025. default: true
  12026. },
  12027. ]
  12028. ))
  12029. characterMakers.push(() => makeCharacter(
  12030. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12031. {
  12032. front: {
  12033. height: math.unit(2, "meters"),
  12034. weight: math.unit(150.5, "kg"),
  12035. name: "Front",
  12036. image: {
  12037. source: "./media/characters/susan/front.svg",
  12038. extra: 693 / 635,
  12039. bottom: 0.05
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Megamacro",
  12046. height: math.unit(505, "miles"),
  12047. default: true
  12048. },
  12049. ]
  12050. ))
  12051. characterMakers.push(() => makeCharacter(
  12052. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12053. {
  12054. front: {
  12055. height: math.unit(6, "feet"),
  12056. weight: math.unit(150, "lb"),
  12057. name: "Front",
  12058. image: {
  12059. source: "./media/characters/raindrops/front.svg",
  12060. extra: 2655 / 2461,
  12061. bottom: 49 / 2705
  12062. }
  12063. },
  12064. back: {
  12065. height: math.unit(6, "feet"),
  12066. weight: math.unit(150, "lb"),
  12067. name: "Back",
  12068. image: {
  12069. source: "./media/characters/raindrops/back.svg",
  12070. extra: 2574 / 2400,
  12071. bottom: 65 / 2634
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Micro",
  12078. height: math.unit(6, "inches")
  12079. },
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(6 + 2 / 12, "feet")
  12083. },
  12084. {
  12085. name: "Macro",
  12086. height: math.unit(131, "feet"),
  12087. default: true
  12088. },
  12089. {
  12090. name: "Megamacro",
  12091. height: math.unit(15, "miles")
  12092. },
  12093. {
  12094. name: "Gigamacro",
  12095. height: math.unit(4000, "miles")
  12096. },
  12097. {
  12098. name: "Teramacro",
  12099. height: math.unit(315000, "miles")
  12100. },
  12101. ]
  12102. ))
  12103. characterMakers.push(() => makeCharacter(
  12104. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12105. {
  12106. front: {
  12107. height: math.unit(2.794, "meters"),
  12108. weight: math.unit(325, "kg"),
  12109. name: "Front",
  12110. image: {
  12111. source: "./media/characters/tezwa/front.svg",
  12112. extra: 2083 / 1906,
  12113. bottom: 0.031
  12114. }
  12115. },
  12116. foot: {
  12117. height: math.unit(0.687, "meters"),
  12118. name: "Foot",
  12119. image: {
  12120. source: "./media/characters/tezwa/foot.svg"
  12121. }
  12122. },
  12123. },
  12124. [
  12125. {
  12126. name: "Normal",
  12127. height: math.unit(9 + 2 / 12, "feet"),
  12128. default: true
  12129. },
  12130. ]
  12131. ))
  12132. characterMakers.push(() => makeCharacter(
  12133. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12134. {
  12135. front: {
  12136. height: math.unit(58, "feet"),
  12137. weight: math.unit(89000, "lb"),
  12138. name: "Front",
  12139. image: {
  12140. source: "./media/characters/typhus/front.svg",
  12141. extra: 816 / 800,
  12142. bottom: 0.065
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Macro",
  12149. height: math.unit(58, "feet"),
  12150. default: true
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(12, "feet"),
  12159. weight: math.unit(6, "tonnes"),
  12160. name: "Front",
  12161. image: {
  12162. source: "./media/characters/lyra-von-wulf/front.svg",
  12163. extra: 1,
  12164. bottom: 0.10
  12165. }
  12166. },
  12167. frontMecha: {
  12168. height: math.unit(12, "feet"),
  12169. weight: math.unit(12, "tonnes"),
  12170. name: "Front (Mecha)",
  12171. image: {
  12172. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12173. extra: 1,
  12174. bottom: 0.042
  12175. }
  12176. },
  12177. maw: {
  12178. height: math.unit(2.2, "feet"),
  12179. name: "Maw",
  12180. image: {
  12181. source: "./media/characters/lyra-von-wulf/maw.svg"
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(12, "feet"),
  12189. default: true
  12190. },
  12191. {
  12192. name: "Classic",
  12193. height: math.unit(50, "feet")
  12194. },
  12195. {
  12196. name: "Macro",
  12197. height: math.unit(500, "feet")
  12198. },
  12199. {
  12200. name: "Megamacro",
  12201. height: math.unit(1, "mile")
  12202. },
  12203. {
  12204. name: "Gigamacro",
  12205. height: math.unit(400, "miles")
  12206. },
  12207. {
  12208. name: "Teramacro",
  12209. height: math.unit(22000, "miles")
  12210. },
  12211. {
  12212. name: "Solarmacro",
  12213. height: math.unit(8600000, "miles")
  12214. },
  12215. {
  12216. name: "Galactic",
  12217. height: math.unit(1057000, "lightyears")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(6 + 10 / 12, "feet"),
  12226. weight: math.unit(150, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/dixon/front.svg",
  12230. extra: 3361 / 3209,
  12231. bottom: 0.01
  12232. }
  12233. },
  12234. },
  12235. [
  12236. {
  12237. name: "Normal",
  12238. height: math.unit(6 + 10 / 12, "feet"),
  12239. default: true
  12240. },
  12241. {
  12242. name: "Big",
  12243. height: math.unit(12, "meters")
  12244. },
  12245. {
  12246. name: "Macro",
  12247. height: math.unit(500, "meters")
  12248. },
  12249. {
  12250. name: "Megamacro",
  12251. height: math.unit(2, "km")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12257. {
  12258. front: {
  12259. height: math.unit(185, "cm"),
  12260. weight: math.unit(68, "kg"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/kauko/front.svg",
  12264. extra: 1455 / 1421,
  12265. bottom: 0.03
  12266. }
  12267. },
  12268. back: {
  12269. height: math.unit(185, "cm"),
  12270. weight: math.unit(68, "kg"),
  12271. name: "Back",
  12272. image: {
  12273. source: "./media/characters/kauko/back.svg",
  12274. extra: 1455 / 1421,
  12275. bottom: 0.004
  12276. }
  12277. },
  12278. },
  12279. [
  12280. {
  12281. name: "Normal",
  12282. height: math.unit(185, "cm"),
  12283. default: true
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12289. {
  12290. front: {
  12291. height: math.unit(6, "feet"),
  12292. weight: math.unit(150, "kg"),
  12293. name: "Front",
  12294. image: {
  12295. source: "./media/characters/varg/front.svg",
  12296. extra: 1108 / 1018,
  12297. bottom: 0.0375
  12298. }
  12299. },
  12300. },
  12301. [
  12302. {
  12303. name: "Normal",
  12304. height: math.unit(5, "meters")
  12305. },
  12306. {
  12307. name: "Macro",
  12308. height: math.unit(200, "meters")
  12309. },
  12310. {
  12311. name: "Megamacro",
  12312. height: math.unit(20, "kilometers")
  12313. },
  12314. {
  12315. name: "True Size",
  12316. height: math.unit(211, "km"),
  12317. default: true
  12318. },
  12319. {
  12320. name: "Gigamacro",
  12321. height: math.unit(1000, "km")
  12322. },
  12323. {
  12324. name: "Gigamacro+",
  12325. height: math.unit(8000, "km")
  12326. },
  12327. {
  12328. name: "Teramacro",
  12329. height: math.unit(1000000, "km")
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(7 + 7 / 12, "feet"),
  12338. weight: math.unit(267, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/dayza/front.svg",
  12342. extra: 1262 / 1200,
  12343. bottom: 0.035
  12344. }
  12345. },
  12346. side: {
  12347. height: math.unit(7 + 7 / 12, "feet"),
  12348. weight: math.unit(267, "lb"),
  12349. name: "Side",
  12350. image: {
  12351. source: "./media/characters/dayza/side.svg",
  12352. extra: 1295 / 1245,
  12353. bottom: 0.05
  12354. }
  12355. },
  12356. back: {
  12357. height: math.unit(7 + 7 / 12, "feet"),
  12358. weight: math.unit(267, "lb"),
  12359. name: "Back",
  12360. image: {
  12361. source: "./media/characters/dayza/back.svg",
  12362. extra: 1241 / 1170
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Normal",
  12369. height: math.unit(7 + 7 / 12, "feet"),
  12370. default: true
  12371. },
  12372. {
  12373. name: "Macro",
  12374. height: math.unit(155, "feet")
  12375. },
  12376. ]
  12377. ))
  12378. characterMakers.push(() => makeCharacter(
  12379. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12380. {
  12381. front: {
  12382. height: math.unit(6 + 5 / 12, "feet"),
  12383. weight: math.unit(160, "lb"),
  12384. name: "Front",
  12385. image: {
  12386. source: "./media/characters/xanthos/front.svg",
  12387. extra: 1,
  12388. bottom: 0.04
  12389. }
  12390. },
  12391. back: {
  12392. height: math.unit(6 + 5 / 12, "feet"),
  12393. weight: math.unit(160, "lb"),
  12394. name: "Back",
  12395. image: {
  12396. source: "./media/characters/xanthos/back.svg",
  12397. extra: 1,
  12398. bottom: 0.03
  12399. }
  12400. },
  12401. hand: {
  12402. height: math.unit(0.928, "feet"),
  12403. name: "Hand",
  12404. image: {
  12405. source: "./media/characters/xanthos/hand.svg"
  12406. }
  12407. },
  12408. foot: {
  12409. height: math.unit(1.286, "feet"),
  12410. name: "Foot",
  12411. image: {
  12412. source: "./media/characters/xanthos/foot.svg"
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(6 + 5 / 12, "feet"),
  12420. default: true
  12421. },
  12422. {
  12423. name: "Normal+",
  12424. height: math.unit(6, "meters")
  12425. },
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(40, "feet")
  12429. },
  12430. {
  12431. name: "Macro+",
  12432. height: math.unit(200, "meters")
  12433. },
  12434. {
  12435. name: "Megamacro",
  12436. height: math.unit(20, "km")
  12437. },
  12438. {
  12439. name: "Megamacro+",
  12440. height: math.unit(100, "km")
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(6 + 3 / 12, "feet"),
  12449. weight: math.unit(215, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/grynn/front.svg",
  12453. extra: 4627 / 4209,
  12454. bottom: 0.047
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Micro",
  12461. height: math.unit(6, "inches")
  12462. },
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(6 + 3 / 12, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Big",
  12470. height: math.unit(104, "feet")
  12471. },
  12472. {
  12473. name: "Macro",
  12474. height: math.unit(944, "feet")
  12475. },
  12476. {
  12477. name: "Macro+",
  12478. height: math.unit(9480, "feet")
  12479. },
  12480. {
  12481. name: "Megamacro",
  12482. height: math.unit(78752, "feet")
  12483. },
  12484. {
  12485. name: "Megamacro+",
  12486. height: math.unit(630128, "feet")
  12487. },
  12488. {
  12489. name: "Megamacro++",
  12490. height: math.unit(3150695, "feet")
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12496. {
  12497. front: {
  12498. height: math.unit(7 + 5 / 12, "feet"),
  12499. weight: math.unit(450, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/mocha-aura/front.svg",
  12503. extra: 1907 / 1817,
  12504. bottom: 0.04
  12505. }
  12506. },
  12507. back: {
  12508. height: math.unit(7 + 5 / 12, "feet"),
  12509. weight: math.unit(450, "lb"),
  12510. name: "Back",
  12511. image: {
  12512. source: "./media/characters/mocha-aura/back.svg",
  12513. extra: 1900 / 1825,
  12514. bottom: 0.045
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Nano",
  12521. height: math.unit(1, "nm")
  12522. },
  12523. {
  12524. name: "Megamicro",
  12525. height: math.unit(1, "mm")
  12526. },
  12527. {
  12528. name: "Micro",
  12529. height: math.unit(3, "inches")
  12530. },
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(7 + 5 / 12, "feet"),
  12534. default: true
  12535. },
  12536. {
  12537. name: "Macro",
  12538. height: math.unit(30, "feet")
  12539. },
  12540. {
  12541. name: "Megamacro",
  12542. height: math.unit(3500, "feet")
  12543. },
  12544. {
  12545. name: "Teramacro",
  12546. height: math.unit(500000, "miles")
  12547. },
  12548. {
  12549. name: "Petamacro",
  12550. height: math.unit(50000000000000000, "parsecs")
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12556. {
  12557. front: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(150, "lb"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/ilisha-devya/front.svg",
  12563. extra: 1,
  12564. bottom: 0.175
  12565. }
  12566. },
  12567. back: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(150, "lb"),
  12570. name: "Back",
  12571. image: {
  12572. source: "./media/characters/ilisha-devya/back.svg",
  12573. extra: 1,
  12574. bottom: 0.015
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Macro",
  12581. height: math.unit(500, "feet"),
  12582. default: true
  12583. },
  12584. {
  12585. name: "Megamacro",
  12586. height: math.unit(10, "miles")
  12587. },
  12588. {
  12589. name: "Gigamacro",
  12590. height: math.unit(100000, "miles")
  12591. },
  12592. {
  12593. name: "Examacro",
  12594. height: math.unit(1e9, "lightyears")
  12595. },
  12596. {
  12597. name: "Omniversal",
  12598. height: math.unit(1e33, "lightyears")
  12599. },
  12600. {
  12601. name: "Beyond Infinite",
  12602. height: math.unit(1e100, "lightyears")
  12603. },
  12604. ]
  12605. ))
  12606. characterMakers.push(() => makeCharacter(
  12607. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12608. {
  12609. Side: {
  12610. height: math.unit(6, "feet"),
  12611. weight: math.unit(150, "lb"),
  12612. name: "Side",
  12613. image: {
  12614. source: "./media/characters/mira/side.svg",
  12615. extra: 900 / 799,
  12616. bottom: 0.02
  12617. }
  12618. },
  12619. },
  12620. [
  12621. {
  12622. name: "Human Size",
  12623. height: math.unit(6, "feet")
  12624. },
  12625. {
  12626. name: "Macro",
  12627. height: math.unit(100, "feet"),
  12628. default: true
  12629. },
  12630. {
  12631. name: "Megamacro",
  12632. height: math.unit(10, "miles")
  12633. },
  12634. {
  12635. name: "Gigamacro",
  12636. height: math.unit(25000, "miles")
  12637. },
  12638. {
  12639. name: "Teramacro",
  12640. height: math.unit(300, "AU")
  12641. },
  12642. {
  12643. name: "Full Size",
  12644. height: math.unit(4.5e10, "lightyears")
  12645. },
  12646. ]
  12647. ))
  12648. characterMakers.push(() => makeCharacter(
  12649. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12650. {
  12651. front: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(150, "lb"),
  12654. name: "Front",
  12655. image: {
  12656. source: "./media/characters/holly/front.svg",
  12657. extra: 639 / 606
  12658. }
  12659. },
  12660. back: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(150, "lb"),
  12663. name: "Back",
  12664. image: {
  12665. source: "./media/characters/holly/back.svg",
  12666. extra: 623 / 598
  12667. }
  12668. },
  12669. frontWorking: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(150, "lb"),
  12672. name: "Front (Working)",
  12673. image: {
  12674. source: "./media/characters/holly/front-working.svg",
  12675. extra: 607 / 577,
  12676. bottom: 0.048
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Normal",
  12683. height: math.unit(12 + 3 / 12, "feet"),
  12684. default: true
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(150, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/porter/front.svg",
  12697. extra: 1,
  12698. bottom: 0.01
  12699. }
  12700. },
  12701. frontRobes: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(150, "lb"),
  12704. name: "Front (Robes)",
  12705. image: {
  12706. source: "./media/characters/porter/front-robes.svg",
  12707. extra: 1.01,
  12708. bottom: 0.01
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Normal",
  12715. height: math.unit(11 + 9 / 12, "feet"),
  12716. default: true
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12722. {
  12723. legendary: {
  12724. height: math.unit(6, "feet"),
  12725. weight: math.unit(150, "lb"),
  12726. name: "Legendary",
  12727. image: {
  12728. source: "./media/characters/lucy/legendary.svg",
  12729. extra: 1355 / 1100,
  12730. bottom: 0.045
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Legendary",
  12737. height: math.unit(86882 * 2, "miles"),
  12738. default: true
  12739. },
  12740. ]
  12741. ))
  12742. characterMakers.push(() => makeCharacter(
  12743. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12744. {
  12745. front: {
  12746. height: math.unit(6, "feet"),
  12747. weight: math.unit(150, "lb"),
  12748. name: "Front",
  12749. image: {
  12750. source: "./media/characters/drusilla/front.svg",
  12751. extra: 678 / 635,
  12752. bottom: 0.03
  12753. }
  12754. },
  12755. back: {
  12756. height: math.unit(6, "feet"),
  12757. weight: math.unit(150, "lb"),
  12758. name: "Back",
  12759. image: {
  12760. source: "./media/characters/drusilla/back.svg",
  12761. extra: 678 / 635,
  12762. bottom: 0.005
  12763. }
  12764. },
  12765. },
  12766. [
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(100, "feet")
  12770. },
  12771. {
  12772. name: "Canon Height",
  12773. height: math.unit(2000, "feet"),
  12774. default: true
  12775. },
  12776. ]
  12777. ))
  12778. characterMakers.push(() => makeCharacter(
  12779. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12780. {
  12781. front: {
  12782. height: math.unit(6, "feet"),
  12783. weight: math.unit(180, "lb"),
  12784. name: "Front",
  12785. image: {
  12786. source: "./media/characters/renard-thatch/front.svg",
  12787. extra: 2411 / 2275,
  12788. bottom: 0.01
  12789. }
  12790. },
  12791. frontPosing: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(180, "lb"),
  12794. name: "Front (Posing)",
  12795. image: {
  12796. source: "./media/characters/renard-thatch/front-posing.svg",
  12797. extra: 2381 / 2261,
  12798. bottom: 0.01
  12799. }
  12800. },
  12801. back: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(180, "lb"),
  12804. name: "Back",
  12805. image: {
  12806. source: "./media/characters/renard-thatch/back.svg",
  12807. extra: 2428 / 2288
  12808. }
  12809. },
  12810. },
  12811. [
  12812. {
  12813. name: "Micro",
  12814. height: math.unit(3, "inches")
  12815. },
  12816. {
  12817. name: "Default",
  12818. height: math.unit(6, "feet"),
  12819. default: true
  12820. },
  12821. {
  12822. name: "Macro",
  12823. height: math.unit(75, "feet")
  12824. },
  12825. ]
  12826. ))
  12827. characterMakers.push(() => makeCharacter(
  12828. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12829. {
  12830. front: {
  12831. height: math.unit(1450, "feet"),
  12832. weight: math.unit(1.21e6, "tons"),
  12833. name: "Front",
  12834. image: {
  12835. source: "./media/characters/sekvra/front.svg",
  12836. extra: 1,
  12837. bottom: 0.03
  12838. }
  12839. },
  12840. frontClothed: {
  12841. height: math.unit(1450, "feet"),
  12842. weight: math.unit(1.21e6, "tons"),
  12843. name: "Front (Clothed)",
  12844. image: {
  12845. source: "./media/characters/sekvra/front-clothed.svg",
  12846. extra: 1,
  12847. bottom: 0.03
  12848. }
  12849. },
  12850. side: {
  12851. height: math.unit(1450, "feet"),
  12852. weight: math.unit(1.21e6, "tons"),
  12853. name: "Side",
  12854. image: {
  12855. source: "./media/characters/sekvra/side.svg",
  12856. extra: 1,
  12857. bottom: 0.025
  12858. }
  12859. },
  12860. back: {
  12861. height: math.unit(1450, "feet"),
  12862. weight: math.unit(1.21e6, "tons"),
  12863. name: "Back",
  12864. image: {
  12865. source: "./media/characters/sekvra/back.svg",
  12866. extra: 1,
  12867. bottom: 0.005
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Macro",
  12874. height: math.unit(1450, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Megamacro",
  12879. height: math.unit(15000, "feet")
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(6, "feet"),
  12888. weight: math.unit(150, "lb"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/carmine/front.svg",
  12892. extra: 1,
  12893. bottom: 0.035
  12894. }
  12895. },
  12896. frontArmor: {
  12897. height: math.unit(6, "feet"),
  12898. weight: math.unit(150, "lb"),
  12899. name: "Front (Armor)",
  12900. image: {
  12901. source: "./media/characters/carmine/front-armor.svg",
  12902. extra: 1,
  12903. bottom: 0.035
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Large",
  12910. height: math.unit(1, "mile")
  12911. },
  12912. {
  12913. name: "Huge",
  12914. height: math.unit(40, "miles"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Colossal",
  12919. height: math.unit(2500, "miles")
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(6, "feet"),
  12928. weight: math.unit(150, "lb"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/elyssia/front.svg",
  12932. extra: 2201 / 2035,
  12933. bottom: 0.05
  12934. }
  12935. },
  12936. frontClothed: {
  12937. height: math.unit(6, "feet"),
  12938. weight: math.unit(150, "lb"),
  12939. name: "Front (Clothed)",
  12940. image: {
  12941. source: "./media/characters/elyssia/front-clothed.svg",
  12942. extra: 2201 / 2035,
  12943. bottom: 0.05
  12944. }
  12945. },
  12946. back: {
  12947. height: math.unit(6, "feet"),
  12948. weight: math.unit(150, "lb"),
  12949. name: "Back",
  12950. image: {
  12951. source: "./media/characters/elyssia/back.svg",
  12952. extra: 2201 / 2035,
  12953. bottom: 0.013
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Smaller",
  12960. height: math.unit(150, "feet")
  12961. },
  12962. {
  12963. name: "Standard",
  12964. height: math.unit(1400, "feet"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Distracted",
  12969. height: math.unit(15000, "feet")
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 4 / 12, "feet"),
  12978. weight: math.unit(500, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/geno-maxwell/front.svg",
  12982. extra: 2207 / 2040,
  12983. bottom: 0.015
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Micro",
  12990. height: math.unit(3, "inches")
  12991. },
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(7 + 4 / 12, "feet"),
  12995. default: true
  12996. },
  12997. {
  12998. name: "Macro",
  12999. height: math.unit(220, "feet")
  13000. },
  13001. {
  13002. name: "Megamacro",
  13003. height: math.unit(11, "miles")
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13009. {
  13010. front: {
  13011. height: math.unit(7 + 4 / 12, "feet"),
  13012. weight: math.unit(500, "lb"),
  13013. name: "Front",
  13014. image: {
  13015. source: "./media/characters/regena-maxwell/front.svg",
  13016. extra: 3115 / 2770,
  13017. bottom: 0.02
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Normal",
  13024. height: math.unit(7 + 4 / 12, "feet"),
  13025. default: true
  13026. },
  13027. {
  13028. name: "Macro",
  13029. height: math.unit(220, "feet")
  13030. },
  13031. {
  13032. name: "Megamacro",
  13033. height: math.unit(11, "miles")
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(6, "feet"),
  13042. weight: math.unit(150, "lb"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13046. extra: 860 / 690,
  13047. bottom: 0.03
  13048. }
  13049. },
  13050. },
  13051. [
  13052. {
  13053. name: "Normal",
  13054. height: math.unit(1.7, "meters"),
  13055. default: true
  13056. },
  13057. ]
  13058. ))
  13059. characterMakers.push(() => makeCharacter(
  13060. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13061. {
  13062. front: {
  13063. height: math.unit(6, "feet"),
  13064. weight: math.unit(150, "lb"),
  13065. name: "Front",
  13066. image: {
  13067. source: "./media/characters/quilly/front.svg",
  13068. extra: 890 / 776
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Gigamacro",
  13075. height: math.unit(404090, "miles"),
  13076. default: true
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(7 + 8 / 12, "feet"),
  13085. weight: math.unit(350, "lb"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/tempest/front.svg",
  13089. extra: 1175 / 1086,
  13090. bottom: 0.02
  13091. }
  13092. },
  13093. },
  13094. [
  13095. {
  13096. name: "Normal",
  13097. height: math.unit(7 + 8 / 12, "feet"),
  13098. default: true
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13104. {
  13105. side: {
  13106. height: math.unit(4 + 5 / 12, "feet"),
  13107. weight: math.unit(80, "lb"),
  13108. name: "Side",
  13109. image: {
  13110. source: "./media/characters/rodger/side.svg",
  13111. extra: 1235 / 1118
  13112. }
  13113. },
  13114. },
  13115. [
  13116. {
  13117. name: "Micro",
  13118. height: math.unit(1, "inch")
  13119. },
  13120. {
  13121. name: "Normal",
  13122. height: math.unit(4 + 5 / 12, "feet"),
  13123. default: true
  13124. },
  13125. {
  13126. name: "Macro",
  13127. height: math.unit(120, "feet")
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(6, "feet"),
  13136. weight: math.unit(150, "lb"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/danyel/front.svg",
  13140. extra: 1185 / 1123,
  13141. bottom: 0.05
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Shrunken",
  13148. height: math.unit(0.5, "mm")
  13149. },
  13150. {
  13151. name: "Micro",
  13152. height: math.unit(1, "mm"),
  13153. default: true
  13154. },
  13155. {
  13156. name: "Upsized",
  13157. height: math.unit(5 + 5 / 12, "feet")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(5 + 6 / 12, "feet"),
  13166. weight: math.unit(200, "lb"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/vivian-bijoux/front.svg",
  13170. extra: 1,
  13171. bottom: 0.072
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(5 + 6 / 12, "feet"),
  13179. default: true
  13180. },
  13181. {
  13182. name: "Bad Dream",
  13183. height: math.unit(500, "feet")
  13184. },
  13185. {
  13186. name: "Nightmare",
  13187. height: math.unit(500, "miles")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6 + 1 / 12, "feet"),
  13196. weight: math.unit(260, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/zeta/front.svg",
  13200. extra: 1968 / 1889,
  13201. bottom: 0.06
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6 + 1 / 12, "feet"),
  13206. weight: math.unit(260, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/zeta/back.svg",
  13210. extra: 1944 / 1858,
  13211. bottom: 0.03
  13212. }
  13213. },
  13214. hand: {
  13215. height: math.unit(1.112, "feet"),
  13216. name: "Hand",
  13217. image: {
  13218. source: "./media/characters/zeta/hand.svg"
  13219. }
  13220. },
  13221. foot: {
  13222. height: math.unit(1.48, "feet"),
  13223. name: "Foot",
  13224. image: {
  13225. source: "./media/characters/zeta/foot.svg"
  13226. }
  13227. },
  13228. },
  13229. [
  13230. {
  13231. name: "Micro",
  13232. height: math.unit(6, "inches")
  13233. },
  13234. {
  13235. name: "Normal",
  13236. height: math.unit(6 + 1 / 12, "feet"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Macro",
  13241. height: math.unit(20, "feet")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(6, "feet"),
  13250. weight: math.unit(150, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/jamie-larsen/front.svg",
  13254. extra: 962 / 933,
  13255. bottom: 0.02
  13256. }
  13257. },
  13258. back: {
  13259. height: math.unit(6, "feet"),
  13260. weight: math.unit(150, "lb"),
  13261. name: "Back",
  13262. image: {
  13263. source: "./media/characters/jamie-larsen/back.svg",
  13264. extra: 997 / 946
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(28 + 7 / 12, "feet"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Macro+",
  13276. height: math.unit(180, "feet")
  13277. },
  13278. {
  13279. name: "Megamacro",
  13280. height: math.unit(10, "miles")
  13281. },
  13282. {
  13283. name: "Gigamacro",
  13284. height: math.unit(200000, "miles")
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(120, "lb"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/vance/front.svg",
  13297. extra: 1980 / 1890,
  13298. bottom: 0.09
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(120, "lb"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/vance/back.svg",
  13307. extra: 2081 / 1994,
  13308. bottom: 0.014
  13309. }
  13310. },
  13311. hand: {
  13312. height: math.unit(0.88, "feet"),
  13313. name: "Hand",
  13314. image: {
  13315. source: "./media/characters/vance/hand.svg"
  13316. }
  13317. },
  13318. foot: {
  13319. height: math.unit(0.64, "feet"),
  13320. name: "Foot",
  13321. image: {
  13322. source: "./media/characters/vance/foot.svg"
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Small",
  13329. height: math.unit(90, "feet"),
  13330. default: true
  13331. },
  13332. {
  13333. name: "Macro",
  13334. height: math.unit(100, "meters")
  13335. },
  13336. {
  13337. name: "Megamacro",
  13338. height: math.unit(15, "miles")
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(180, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/xochitl/front.svg",
  13351. extra: 2297 / 2261,
  13352. bottom: 0.065
  13353. }
  13354. },
  13355. back: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(180, "lb"),
  13358. name: "Back",
  13359. image: {
  13360. source: "./media/characters/xochitl/back.svg",
  13361. extra: 2386 / 2354,
  13362. bottom: 0.01
  13363. }
  13364. },
  13365. foot: {
  13366. height: math.unit(6 / 5 * 1.15, "feet"),
  13367. weight: math.unit(150, "lb"),
  13368. name: "Foot",
  13369. image: {
  13370. source: "./media/characters/xochitl/foot.svg"
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(80, "feet")
  13378. },
  13379. {
  13380. name: "Macro+",
  13381. height: math.unit(400, "feet"),
  13382. default: true
  13383. },
  13384. {
  13385. name: "Gigamacro",
  13386. height: math.unit(80000, "miles")
  13387. },
  13388. {
  13389. name: "Gigamacro+",
  13390. height: math.unit(400000, "miles")
  13391. },
  13392. {
  13393. name: "Teramacro",
  13394. height: math.unit(300, "AU")
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(150, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/vincent/front.svg",
  13407. extra: 1130 / 1080,
  13408. bottom: 0.055
  13409. }
  13410. },
  13411. beak: {
  13412. height: math.unit(6 * 0.1, "feet"),
  13413. name: "Beak",
  13414. image: {
  13415. source: "./media/characters/vincent/beak.svg"
  13416. }
  13417. },
  13418. hand: {
  13419. height: math.unit(6 * 0.85, "feet"),
  13420. weight: math.unit(150, "lb"),
  13421. name: "Hand",
  13422. image: {
  13423. source: "./media/characters/vincent/hand.svg"
  13424. }
  13425. },
  13426. foot: {
  13427. height: math.unit(6 * 0.19, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Foot",
  13430. image: {
  13431. source: "./media/characters/vincent/foot.svg"
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Base",
  13438. height: math.unit(6 + 5 / 12, "feet"),
  13439. default: true
  13440. },
  13441. {
  13442. name: "Macro",
  13443. height: math.unit(300, "feet")
  13444. },
  13445. {
  13446. name: "Megamacro",
  13447. height: math.unit(2, "miles")
  13448. },
  13449. {
  13450. name: "Gigamacro",
  13451. height: math.unit(1000, "miles")
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13457. {
  13458. front: {
  13459. height: math.unit(2, "meters"),
  13460. weight: math.unit(500, "kg"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/coatl/front.svg",
  13464. extra: 3948 / 3500,
  13465. bottom: 0.082
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(4, "meters")
  13473. },
  13474. {
  13475. name: "Macro",
  13476. height: math.unit(100, "meters"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Macro+",
  13481. height: math.unit(300, "meters")
  13482. },
  13483. {
  13484. name: "Megamacro",
  13485. height: math.unit(3, "gigameters")
  13486. },
  13487. {
  13488. name: "Megamacro+",
  13489. height: math.unit(300, "terameters")
  13490. },
  13491. {
  13492. name: "Megamacro++",
  13493. height: math.unit(3, "lightyears")
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13499. {
  13500. front: {
  13501. height: math.unit(6, "feet"),
  13502. weight: math.unit(50, "kg"),
  13503. name: "front",
  13504. image: {
  13505. source: "./media/characters/shiroryu/front.svg",
  13506. extra: 1990 / 1935
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Mortal Mingling",
  13513. height: math.unit(3, "meters")
  13514. },
  13515. {
  13516. name: "Kaiju-ish",
  13517. height: math.unit(250, "meters")
  13518. },
  13519. {
  13520. name: "Somewhat Godly",
  13521. height: math.unit(400, "km"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Planetary",
  13526. height: math.unit(300, "megameters")
  13527. },
  13528. {
  13529. name: "Galaxy-dwarfing",
  13530. height: math.unit(450, "kiloparsecs")
  13531. },
  13532. {
  13533. name: "Universe Eater",
  13534. height: math.unit(150, "gigaparsecs")
  13535. },
  13536. {
  13537. name: "Almost Immeasurable",
  13538. height: math.unit(1.3e266, "yottaparsecs")
  13539. },
  13540. ]
  13541. ))
  13542. characterMakers.push(() => makeCharacter(
  13543. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13544. {
  13545. front: {
  13546. height: math.unit(6, "feet"),
  13547. weight: math.unit(150, "lb"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/umeko/front.svg",
  13551. extra: 1,
  13552. bottom: 0.019
  13553. }
  13554. },
  13555. frontArmored: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Front (Armored)",
  13559. image: {
  13560. source: "./media/characters/umeko/front-armored.svg",
  13561. extra: 1,
  13562. bottom: 0.021
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Macro",
  13569. height: math.unit(220, "feet"),
  13570. default: true
  13571. },
  13572. {
  13573. name: "Guardian Dragon",
  13574. height: math.unit(50, "miles")
  13575. },
  13576. {
  13577. name: "Cosmic",
  13578. height: math.unit(800000, "miles")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/cassidy/front.svg",
  13591. extra: 1,
  13592. bottom: 0.043
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Canon Height",
  13599. height: math.unit(120, "feet"),
  13600. default: true
  13601. },
  13602. {
  13603. name: "Macro+",
  13604. height: math.unit(400, "feet")
  13605. },
  13606. {
  13607. name: "Macro++",
  13608. height: math.unit(4000, "feet")
  13609. },
  13610. {
  13611. name: "Megamacro",
  13612. height: math.unit(3, "miles")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/isaac/front.svg",
  13625. extra: 896 / 815,
  13626. bottom: 0.11
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Human Size",
  13633. height: math.unit(8, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Macro",
  13638. height: math.unit(400, "feet")
  13639. },
  13640. {
  13641. name: "Megamacro",
  13642. height: math.unit(50, "miles")
  13643. },
  13644. {
  13645. name: "Canon Height",
  13646. height: math.unit(200, "AU")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(72, "kg"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/sleekit/front.svg",
  13659. extra: 4693 / 4487,
  13660. bottom: 0.012
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Minimum Height",
  13667. height: math.unit(10, "meters")
  13668. },
  13669. {
  13670. name: "Smaller",
  13671. height: math.unit(25, "meters")
  13672. },
  13673. {
  13674. name: "Larger",
  13675. height: math.unit(38, "meters"),
  13676. default: true
  13677. },
  13678. {
  13679. name: "Maximum height",
  13680. height: math.unit(100, "meters")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/nillia/front.svg",
  13693. extra: 2195 / 2037,
  13694. bottom: 0.005
  13695. }
  13696. },
  13697. back: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Back",
  13701. image: {
  13702. source: "./media/characters/nillia/back.svg",
  13703. extra: 2195 / 2037,
  13704. bottom: 0.005
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Canon Height",
  13711. height: math.unit(489, "feet"),
  13712. default: true
  13713. }
  13714. ]
  13715. ))
  13716. characterMakers.push(() => makeCharacter(
  13717. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13718. {
  13719. front: {
  13720. height: math.unit(6, "feet"),
  13721. weight: math.unit(150, "lb"),
  13722. name: "Front",
  13723. image: {
  13724. source: "./media/characters/mesmyriza/front.svg",
  13725. extra: 2067 / 1784,
  13726. bottom: 0.035
  13727. }
  13728. },
  13729. foot: {
  13730. height: math.unit(6 / (250 / 35), "feet"),
  13731. name: "Foot",
  13732. image: {
  13733. source: "./media/characters/mesmyriza/foot.svg"
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Macro",
  13740. height: math.unit(457, "meters"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Megamacro",
  13745. height: math.unit(8, "megameters")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(250, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/saudade/front.svg",
  13758. extra: 1172 / 1139,
  13759. bottom: 0.035
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Micro",
  13766. height: math.unit(3, "inches")
  13767. },
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(6, "feet"),
  13771. default: true
  13772. },
  13773. {
  13774. name: "Macro",
  13775. height: math.unit(50, "feet")
  13776. },
  13777. {
  13778. name: "Megamacro",
  13779. height: math.unit(2800, "feet")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(5 + 4 / 12, "feet"),
  13788. weight: math.unit(100, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/keireer/front.svg",
  13792. extra: 716 / 666,
  13793. bottom: 0.05
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Normal",
  13800. height: math.unit(5 + 4 / 12, "feet"),
  13801. default: true
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13807. {
  13808. front: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(90, "kg"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/mirja/front.svg",
  13814. extra: 1789 / 1683,
  13815. bottom: 0.05
  13816. }
  13817. },
  13818. frontDressed: {
  13819. height: math.unit(6, "feet"),
  13820. weight: math.unit(90, "lb"),
  13821. name: "Front (Dressed)",
  13822. image: {
  13823. source: "./media/characters/mirja/front-dressed.svg",
  13824. extra: 1789 / 1683,
  13825. bottom: 0.05
  13826. }
  13827. },
  13828. back: {
  13829. height: math.unit(6, "feet"),
  13830. weight: math.unit(90, "lb"),
  13831. name: "Back",
  13832. image: {
  13833. source: "./media/characters/mirja/back.svg",
  13834. extra: 953 / 917,
  13835. bottom: 0.017
  13836. }
  13837. },
  13838. },
  13839. [
  13840. {
  13841. name: "\"Incognito\"",
  13842. height: math.unit(3, "meters")
  13843. },
  13844. {
  13845. name: "Strolling Size",
  13846. height: math.unit(15, "km")
  13847. },
  13848. {
  13849. name: "Larger Strolling Size",
  13850. height: math.unit(400, "km")
  13851. },
  13852. {
  13853. name: "Preferred Size",
  13854. height: math.unit(5000, "km")
  13855. },
  13856. {
  13857. name: "True Size",
  13858. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13859. default: true
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(15, "feet"),
  13868. weight: math.unit(880, "kg"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/nightraver/front.svg",
  13872. extra: 2444 / 2160,
  13873. bottom: 0.027
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(15, "feet"),
  13878. weight: math.unit(880, "kg"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/nightraver/back.svg",
  13882. extra: 2309 / 2180,
  13883. bottom: 0.005
  13884. }
  13885. },
  13886. sole: {
  13887. height: math.unit(2.878, "feet"),
  13888. name: "Sole",
  13889. image: {
  13890. source: "./media/characters/nightraver/sole.svg"
  13891. }
  13892. },
  13893. foot: {
  13894. height: math.unit(2.285, "feet"),
  13895. name: "Foot",
  13896. image: {
  13897. source: "./media/characters/nightraver/foot.svg"
  13898. }
  13899. },
  13900. maw: {
  13901. height: math.unit(2.67, "feet"),
  13902. name: "Maw",
  13903. image: {
  13904. source: "./media/characters/nightraver/maw.svg"
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Micro",
  13911. height: math.unit(1, "cm")
  13912. },
  13913. {
  13914. name: "Normal",
  13915. height: math.unit(15, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Macro",
  13920. height: math.unit(300, "feet")
  13921. },
  13922. {
  13923. name: "Megamacro",
  13924. height: math.unit(300, "miles")
  13925. },
  13926. {
  13927. name: "Gigamacro",
  13928. height: math.unit(10000, "miles")
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13934. {
  13935. side: {
  13936. height: math.unit(2, "inches"),
  13937. weight: math.unit(5, "grams"),
  13938. name: "Side",
  13939. image: {
  13940. source: "./media/characters/arc/side.svg"
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Micro",
  13947. height: math.unit(2, "inches"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13954. {
  13955. front: {
  13956. height: math.unit(1.1938, "meters"),
  13957. weight: math.unit(54, "kg"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/nebula-shahar/front.svg",
  13961. extra: 1642 / 1436,
  13962. bottom: 0.06
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Megamicro",
  13969. height: math.unit(0.3, "mm")
  13970. },
  13971. {
  13972. name: "Micro",
  13973. height: math.unit(3, "cm")
  13974. },
  13975. {
  13976. name: "Normal",
  13977. height: math.unit(138, "cm"),
  13978. default: true
  13979. },
  13980. {
  13981. name: "Macro",
  13982. height: math.unit(30, "m")
  13983. },
  13984. ]
  13985. ))
  13986. characterMakers.push(() => makeCharacter(
  13987. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13988. {
  13989. front: {
  13990. height: math.unit(5.24, "feet"),
  13991. weight: math.unit(150, "lb"),
  13992. name: "Front",
  13993. image: {
  13994. source: "./media/characters/shayla/front.svg",
  13995. extra: 1512 / 1414,
  13996. bottom: 0.01
  13997. }
  13998. },
  13999. back: {
  14000. height: math.unit(5.24, "feet"),
  14001. weight: math.unit(150, "lb"),
  14002. name: "Back",
  14003. image: {
  14004. source: "./media/characters/shayla/back.svg",
  14005. extra: 1512 / 1414
  14006. }
  14007. },
  14008. hand: {
  14009. height: math.unit(0.7781496062992126, "feet"),
  14010. name: "Hand",
  14011. image: {
  14012. source: "./media/characters/shayla/hand.svg"
  14013. }
  14014. },
  14015. foot: {
  14016. height: math.unit(1.4206036745406823, "feet"),
  14017. name: "Foot",
  14018. image: {
  14019. source: "./media/characters/shayla/foot.svg"
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Micro",
  14026. height: math.unit(0.32, "feet")
  14027. },
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(5.24, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(492.12, "feet")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(186.41, "miles")
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(2.2, "m"),
  14048. weight: math.unit(120, "kg"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/pia-jr/front.svg",
  14052. extra: 1000 / 970,
  14053. bottom: 0.035
  14054. }
  14055. },
  14056. hand: {
  14057. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14058. name: "Hand",
  14059. image: {
  14060. source: "./media/characters/pia-jr/hand.svg"
  14061. }
  14062. },
  14063. paw: {
  14064. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14065. name: "Paw",
  14066. image: {
  14067. source: "./media/characters/pia-jr/paw.svg"
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Micro",
  14074. height: math.unit(1.2, "cm")
  14075. },
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(2.2, "m"),
  14079. default: true
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(180, "m")
  14084. },
  14085. {
  14086. name: "Megamacro",
  14087. height: math.unit(420, "km")
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(2, "m"),
  14096. weight: math.unit(115, "kg"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/pia-sr/front.svg",
  14100. extra: 760 / 730,
  14101. bottom: 0.015
  14102. }
  14103. },
  14104. back: {
  14105. height: math.unit(2, "m"),
  14106. weight: math.unit(115, "kg"),
  14107. name: "Back",
  14108. image: {
  14109. source: "./media/characters/pia-sr/back.svg",
  14110. extra: 760 / 730,
  14111. bottom: 0.01
  14112. }
  14113. },
  14114. hand: {
  14115. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14116. name: "Hand",
  14117. image: {
  14118. source: "./media/characters/pia-sr/hand.svg"
  14119. }
  14120. },
  14121. foot: {
  14122. height: math.unit(1.83, "feet"),
  14123. name: "Foot",
  14124. image: {
  14125. source: "./media/characters/pia-sr/foot.svg"
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Micro",
  14132. height: math.unit(88, "mm")
  14133. },
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(2, "m"),
  14137. default: true
  14138. },
  14139. {
  14140. name: "Macro",
  14141. height: math.unit(200, "m")
  14142. },
  14143. {
  14144. name: "Megamacro",
  14145. height: math.unit(420, "km")
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14151. {
  14152. front: {
  14153. height: math.unit(8 + 2 / 12, "feet"),
  14154. weight: math.unit(300, "lb"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/kibibyte/front.svg",
  14158. extra: 2221 / 2098,
  14159. bottom: 0.04
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Normal",
  14166. height: math.unit(8 + 2 / 12, "feet"),
  14167. default: true
  14168. },
  14169. {
  14170. name: "Socialable Macro",
  14171. height: math.unit(50, "feet")
  14172. },
  14173. {
  14174. name: "Macro",
  14175. height: math.unit(300, "feet")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(500, "miles")
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(6, "feet"),
  14188. weight: math.unit(150, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/felix/front.svg",
  14192. extra: 762 / 722,
  14193. bottom: 0.02
  14194. }
  14195. },
  14196. frontClothed: {
  14197. height: math.unit(6, "feet"),
  14198. weight: math.unit(150, "lb"),
  14199. name: "Front (Clothed)",
  14200. image: {
  14201. source: "./media/characters/felix/front-clothed.svg",
  14202. extra: 762 / 722,
  14203. bottom: 0.02
  14204. }
  14205. },
  14206. },
  14207. [
  14208. {
  14209. name: "Normal",
  14210. height: math.unit(6 + 8 / 12, "feet"),
  14211. default: true
  14212. },
  14213. {
  14214. name: "Macro",
  14215. height: math.unit(2600, "feet")
  14216. },
  14217. {
  14218. name: "Megamacro",
  14219. height: math.unit(450, "miles")
  14220. },
  14221. ]
  14222. ))
  14223. characterMakers.push(() => makeCharacter(
  14224. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14225. {
  14226. front: {
  14227. height: math.unit(6 + 1 / 12, "feet"),
  14228. weight: math.unit(250, "lb"),
  14229. name: "Front",
  14230. image: {
  14231. source: "./media/characters/tobo/front.svg",
  14232. extra: 608 / 586,
  14233. bottom: 0.023
  14234. }
  14235. },
  14236. back: {
  14237. height: math.unit(6 + 1 / 12, "feet"),
  14238. weight: math.unit(250, "lb"),
  14239. name: "Back",
  14240. image: {
  14241. source: "./media/characters/tobo/back.svg",
  14242. extra: 608 / 586
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Nano",
  14249. height: math.unit(2, "nm")
  14250. },
  14251. {
  14252. name: "Megamicro",
  14253. height: math.unit(0.1, "mm")
  14254. },
  14255. {
  14256. name: "Micro",
  14257. height: math.unit(1, "inch"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Human-sized",
  14262. height: math.unit(6 + 1 / 12, "feet")
  14263. },
  14264. {
  14265. name: "Macro",
  14266. height: math.unit(250, "feet")
  14267. },
  14268. {
  14269. name: "Megamacro",
  14270. height: math.unit(75, "miles")
  14271. },
  14272. {
  14273. name: "Texas-sized",
  14274. height: math.unit(750, "miles")
  14275. },
  14276. {
  14277. name: "Teramacro",
  14278. height: math.unit(50000, "miles")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(6, "feet"),
  14287. weight: math.unit(269, "lb"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/danny-kapowsky/front.svg",
  14291. extra: 766 / 736,
  14292. bottom: 0.044
  14293. }
  14294. },
  14295. back: {
  14296. height: math.unit(6, "feet"),
  14297. weight: math.unit(269, "lb"),
  14298. name: "Back",
  14299. image: {
  14300. source: "./media/characters/danny-kapowsky/back.svg",
  14301. extra: 797 / 760,
  14302. bottom: 0.025
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Macro",
  14309. height: math.unit(150, "feet"),
  14310. default: true
  14311. },
  14312. {
  14313. name: "Macro+",
  14314. height: math.unit(200, "feet")
  14315. },
  14316. {
  14317. name: "Macro++",
  14318. height: math.unit(300, "feet")
  14319. },
  14320. {
  14321. name: "Macro+++",
  14322. height: math.unit(400, "feet")
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14328. {
  14329. side: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(170, "lb"),
  14332. name: "Side",
  14333. image: {
  14334. source: "./media/characters/finn/side.svg",
  14335. extra: 1953 / 1807,
  14336. bottom: 0.057
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Megamacro",
  14343. height: math.unit(14445, "feet"),
  14344. default: true
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(5 + 6 / 12, "feet"),
  14353. weight: math.unit(125, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/roy/front.svg",
  14357. extra: 1,
  14358. bottom: 0.11
  14359. }
  14360. },
  14361. },
  14362. [
  14363. {
  14364. name: "Micro",
  14365. height: math.unit(3, "inches"),
  14366. default: true
  14367. },
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(5 + 6 / 12, "feet")
  14371. },
  14372. {
  14373. name: "Lesser Macro",
  14374. height: math.unit(60, "feet")
  14375. },
  14376. {
  14377. name: "Greater Macro",
  14378. height: math.unit(120, "feet")
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14384. {
  14385. front: {
  14386. height: math.unit(6, "feet"),
  14387. weight: math.unit(100, "lb"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/aevsivs/front.svg",
  14391. extra: 1,
  14392. bottom: 0.03
  14393. }
  14394. },
  14395. back: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(100, "lb"),
  14398. name: "Back",
  14399. image: {
  14400. source: "./media/characters/aevsivs/back.svg"
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Micro",
  14407. height: math.unit(2, "inches"),
  14408. default: true
  14409. },
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(5, "feet")
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14418. {
  14419. front: {
  14420. height: math.unit(5 + 7 / 12, "feet"),
  14421. weight: math.unit(159, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/hildegard/front.svg",
  14425. extra: 289 / 269,
  14426. bottom: 7.63 / 297.8
  14427. }
  14428. },
  14429. back: {
  14430. height: math.unit(5 + 7 / 12, "feet"),
  14431. weight: math.unit(159, "lb"),
  14432. name: "Back",
  14433. image: {
  14434. source: "./media/characters/hildegard/back.svg",
  14435. extra: 280 / 260,
  14436. bottom: 2.3 / 282
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Normal",
  14443. height: math.unit(5 + 7 / 12, "feet"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14450. {
  14451. bernard: {
  14452. height: math.unit(2 + 7 / 12, "feet"),
  14453. weight: math.unit(66, "lb"),
  14454. name: "Bernard",
  14455. rename: true,
  14456. image: {
  14457. source: "./media/characters/bernard-wilder/bernard.svg",
  14458. extra: 192 / 128,
  14459. bottom: 0.05
  14460. }
  14461. },
  14462. wilder: {
  14463. height: math.unit(5 + 8 / 12, "feet"),
  14464. weight: math.unit(143, "lb"),
  14465. name: "Wilder",
  14466. rename: true,
  14467. image: {
  14468. source: "./media/characters/bernard-wilder/wilder.svg",
  14469. extra: 361 / 312,
  14470. bottom: 0.02
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(2 + 7 / 12, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14484. {
  14485. anthro: {
  14486. height: math.unit(6 + 1 / 12, "feet"),
  14487. weight: math.unit(155, "lb"),
  14488. name: "Anthro",
  14489. image: {
  14490. source: "./media/characters/hearth/anthro.svg",
  14491. extra: 260 / 250,
  14492. bottom: 0.02
  14493. }
  14494. },
  14495. feral: {
  14496. height: math.unit(3.78, "feet"),
  14497. weight: math.unit(35, "kg"),
  14498. name: "Feral",
  14499. image: {
  14500. source: "./media/characters/hearth/feral.svg",
  14501. extra: 153 / 135,
  14502. bottom: 0.03
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Normal",
  14509. height: math.unit(6 + 1 / 12, "feet"),
  14510. default: true
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14516. {
  14517. front: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(182, "lb"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/ingrid/front.svg",
  14523. extra: 294 / 268,
  14524. bottom: 0.027
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(6, "feet"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14538. {
  14539. eevee: {
  14540. height: math.unit(2 + 10 / 12, "feet"),
  14541. weight: math.unit(86, "lb"),
  14542. name: "Malgam",
  14543. image: {
  14544. source: "./media/characters/malgam/eevee.svg",
  14545. extra: 218 / 180,
  14546. bottom: 0.2
  14547. }
  14548. },
  14549. sylveon: {
  14550. height: math.unit(4, "feet"),
  14551. weight: math.unit(101, "lb"),
  14552. name: "Future Malgam",
  14553. rename: true,
  14554. image: {
  14555. source: "./media/characters/malgam/sylveon.svg",
  14556. extra: 371 / 325,
  14557. bottom: 0.015
  14558. }
  14559. },
  14560. gigantamax: {
  14561. height: math.unit(50, "feet"),
  14562. name: "Gigantamax Malgam",
  14563. rename: true,
  14564. image: {
  14565. source: "./media/characters/malgam/gigantamax.svg"
  14566. }
  14567. },
  14568. },
  14569. [
  14570. {
  14571. name: "Normal",
  14572. height: math.unit(2 + 10 / 12, "feet"),
  14573. default: true
  14574. },
  14575. ]
  14576. ))
  14577. characterMakers.push(() => makeCharacter(
  14578. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14579. {
  14580. front: {
  14581. height: math.unit(5 + 11 / 12, "feet"),
  14582. weight: math.unit(188, "lb"),
  14583. name: "Front",
  14584. image: {
  14585. source: "./media/characters/fleur/front.svg",
  14586. extra: 309 / 283,
  14587. bottom: 0.007
  14588. }
  14589. },
  14590. },
  14591. [
  14592. {
  14593. name: "Normal",
  14594. height: math.unit(5 + 11 / 12, "feet"),
  14595. default: true
  14596. },
  14597. ]
  14598. ))
  14599. characterMakers.push(() => makeCharacter(
  14600. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14601. {
  14602. front: {
  14603. height: math.unit(5 + 4 / 12, "feet"),
  14604. weight: math.unit(122, "lb"),
  14605. name: "Front",
  14606. image: {
  14607. source: "./media/characters/jude/front.svg",
  14608. extra: 288 / 273,
  14609. bottom: 0.03
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(5 + 4 / 12, "feet"),
  14617. default: true
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(5 + 11 / 12, "feet"),
  14626. weight: math.unit(190, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/seara/front.svg",
  14630. extra: 1,
  14631. bottom: 0.05
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(5 + 11 / 12, "feet"),
  14639. default: true
  14640. },
  14641. ]
  14642. ))
  14643. characterMakers.push(() => makeCharacter(
  14644. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14645. {
  14646. front: {
  14647. height: math.unit(16 + 5 / 12, "feet"),
  14648. weight: math.unit(524, "lb"),
  14649. name: "Front",
  14650. image: {
  14651. source: "./media/characters/caspian/front.svg",
  14652. extra: 1,
  14653. bottom: 0.04
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Normal",
  14660. height: math.unit(16 + 5 / 12, "feet"),
  14661. default: true
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14667. {
  14668. front: {
  14669. height: math.unit(5 + 7 / 12, "feet"),
  14670. weight: math.unit(170, "lb"),
  14671. name: "Front",
  14672. image: {
  14673. source: "./media/characters/mika/front.svg",
  14674. extra: 1,
  14675. bottom: 0.016
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Normal",
  14682. height: math.unit(5 + 7 / 12, "feet"),
  14683. default: true
  14684. },
  14685. ]
  14686. ))
  14687. characterMakers.push(() => makeCharacter(
  14688. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14689. {
  14690. front: {
  14691. height: math.unit(6 + 2 / 12, "feet"),
  14692. weight: math.unit(268, "lb"),
  14693. name: "Front",
  14694. image: {
  14695. source: "./media/characters/sol/front.svg",
  14696. extra: 247 / 231,
  14697. bottom: 0.05
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Normal",
  14704. height: math.unit(6 + 2 / 12, "feet"),
  14705. default: true
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14711. {
  14712. buizel: {
  14713. height: math.unit(2 + 5 / 12, "feet"),
  14714. weight: math.unit(87, "lb"),
  14715. name: "Buizel",
  14716. image: {
  14717. source: "./media/characters/umiko/buizel.svg",
  14718. extra: 172 / 157,
  14719. bottom: 0.01
  14720. }
  14721. },
  14722. floatzel: {
  14723. height: math.unit(5 + 9 / 12, "feet"),
  14724. weight: math.unit(250, "lb"),
  14725. name: "Floatzel",
  14726. image: {
  14727. source: "./media/characters/umiko/floatzel.svg",
  14728. extra: 262 / 248
  14729. }
  14730. },
  14731. },
  14732. [
  14733. {
  14734. name: "Normal",
  14735. height: math.unit(2 + 5 / 12, "feet"),
  14736. default: true
  14737. },
  14738. ]
  14739. ))
  14740. characterMakers.push(() => makeCharacter(
  14741. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14742. {
  14743. front: {
  14744. height: math.unit(6 + 2 / 12, "feet"),
  14745. weight: math.unit(146, "lb"),
  14746. name: "Front",
  14747. image: {
  14748. source: "./media/characters/iliac/front.svg",
  14749. extra: 389 / 365,
  14750. bottom: 0.035
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(6 + 2 / 12, "feet"),
  14758. default: true
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(6, "feet"),
  14767. weight: math.unit(170, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/topaz/front.svg",
  14771. extra: 317 / 303,
  14772. bottom: 0.055
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(6, "feet"),
  14780. default: true
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(5 + 11 / 12, "feet"),
  14789. weight: math.unit(144, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/gabriel/front.svg",
  14793. extra: 285 / 262,
  14794. bottom: 0.004
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(5 + 11 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14808. {
  14809. side: {
  14810. height: math.unit(6 + 5 / 12, "feet"),
  14811. weight: math.unit(300, "lb"),
  14812. name: "Side",
  14813. image: {
  14814. source: "./media/characters/tempest-suicune/side.svg",
  14815. extra: 195 / 154,
  14816. bottom: 0.04
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(6 + 5 / 12, "feet"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14830. {
  14831. front: {
  14832. height: math.unit(7 + 2 / 12, "feet"),
  14833. weight: math.unit(322, "lb"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/vulcan/front.svg",
  14837. extra: 154 / 147,
  14838. bottom: 0.04
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(7 + 2 / 12, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14852. {
  14853. front: {
  14854. height: math.unit(5 + 10 / 12, "feet"),
  14855. weight: math.unit(264, "lb"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/gault/front.svg",
  14859. extra: 161 / 140,
  14860. bottom: 0.028
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(5 + 10 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6, "feet"),
  14877. weight: math.unit(150, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/shard/front.svg",
  14881. extra: 273 / 238,
  14882. bottom: 0.02
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(3 + 6 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(5 + 11 / 12, "feet"),
  14899. weight: math.unit(146, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/ashe/front.svg",
  14903. extra: 400 / 373,
  14904. bottom: 0.01
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Normal",
  14911. height: math.unit(5 + 11 / 12, "feet"),
  14912. default: true
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14918. {
  14919. front: {
  14920. height: math.unit(5 + 5 / 12, "feet"),
  14921. weight: math.unit(135, "lb"),
  14922. name: "Front",
  14923. image: {
  14924. source: "./media/characters/beatrix/front.svg",
  14925. extra: 392 / 379,
  14926. bottom: 0.01
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(6, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(6, "feet"),
  14943. weight: math.unit(150, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/ignatius/front.svg",
  14947. extra: 245 / 222,
  14948. bottom: 0.01
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(5 + 5 / 12, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14962. {
  14963. front: {
  14964. height: math.unit(6 + 2 / 12, "feet"),
  14965. weight: math.unit(138, "lb"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/mei-li/front.svg",
  14969. extra: 237 / 229,
  14970. bottom: 0.03
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(6 + 2 / 12, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14984. {
  14985. front: {
  14986. height: math.unit(2 + 4 / 12, "feet"),
  14987. weight: math.unit(62, "lb"),
  14988. name: "Front",
  14989. image: {
  14990. source: "./media/characters/puru/front.svg",
  14991. extra: 206 / 149,
  14992. bottom: 0.06
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(2 + 4 / 12, "feet"),
  15000. default: true
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15006. {
  15007. anthro: {
  15008. height: math.unit(5 + 8/12, "feet"),
  15009. weight: math.unit(200, "lb"),
  15010. energyNeed: math.unit(2000, "kcal"),
  15011. name: "Anthro",
  15012. image: {
  15013. source: "./media/characters/kee/anthro.svg",
  15014. extra: 3251/3184,
  15015. bottom: 250/3501
  15016. }
  15017. },
  15018. taur: {
  15019. height: math.unit(11, "feet"),
  15020. weight: math.unit(500, "lb"),
  15021. energyNeed: math.unit(5000, "kcal"),
  15022. name: "Taur",
  15023. image: {
  15024. source: "./media/characters/kee/taur.svg",
  15025. extra: 1362/1320,
  15026. bottom: 83/1445
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(5 + 8/12, "feet"),
  15034. default: true
  15035. },
  15036. {
  15037. name: "Macro",
  15038. height: math.unit(35, "feet")
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15044. {
  15045. anthro: {
  15046. height: math.unit(7, "feet"),
  15047. weight: math.unit(190, "lb"),
  15048. name: "Anthro",
  15049. image: {
  15050. source: "./media/characters/cobalt-dracha/anthro.svg",
  15051. extra: 231 / 225,
  15052. bottom: 0.04
  15053. }
  15054. },
  15055. feral: {
  15056. height: math.unit(9 + 7 / 12, "feet"),
  15057. weight: math.unit(294, "lb"),
  15058. name: "Feral",
  15059. image: {
  15060. source: "./media/characters/cobalt-dracha/feral.svg",
  15061. extra: 692 / 633,
  15062. bottom: 0.05
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(7, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15076. {
  15077. fallen: {
  15078. height: math.unit(11 + 8 / 12, "feet"),
  15079. weight: math.unit(485, "lb"),
  15080. name: "Java (Fallen)",
  15081. rename: true,
  15082. image: {
  15083. source: "./media/characters/java/fallen.svg",
  15084. extra: 226 / 208,
  15085. bottom: 0.005
  15086. }
  15087. },
  15088. godkin: {
  15089. height: math.unit(10 + 6 / 12, "feet"),
  15090. weight: math.unit(328, "lb"),
  15091. name: "Java (Godkin)",
  15092. rename: true,
  15093. image: {
  15094. source: "./media/characters/java/godkin.svg",
  15095. extra: 270 / 262,
  15096. bottom: 0.02
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(11 + 8 / 12, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(7 + 8 / 12, "feet"),
  15113. weight: math.unit(320, "lb"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/skoll/front.svg",
  15117. extra: 232 / 220,
  15118. bottom: 0.02
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(7 + 8 / 12, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(5 + 9 / 12, "feet"),
  15135. weight: math.unit(170, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/purna/front.svg",
  15139. extra: 239 / 229,
  15140. bottom: 0.01
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(5 + 9 / 12, "feet"),
  15148. default: true
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(5 + 9 / 12, "feet"),
  15157. weight: math.unit(142, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/kuva/front.svg",
  15161. extra: 281 / 271,
  15162. bottom: 0.006
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(5 + 9 / 12, "feet"),
  15170. default: true
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15176. {
  15177. anthro: {
  15178. height: math.unit(9 + 2 / 12, "feet"),
  15179. weight: math.unit(270, "lb"),
  15180. name: "Anthro",
  15181. image: {
  15182. source: "./media/characters/embra/anthro.svg",
  15183. extra: 200 / 187,
  15184. bottom: 0.02
  15185. }
  15186. },
  15187. feral: {
  15188. height: math.unit(18 + 8 / 12, "feet"),
  15189. weight: math.unit(576, "lb"),
  15190. name: "Feral",
  15191. image: {
  15192. source: "./media/characters/embra/feral.svg",
  15193. extra: 152 / 137,
  15194. bottom: 0.037
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(9 + 2 / 12, "feet"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15208. {
  15209. anthro: {
  15210. height: math.unit(10 + 9 / 12, "feet"),
  15211. weight: math.unit(224, "lb"),
  15212. name: "Anthro",
  15213. image: {
  15214. source: "./media/characters/grottos/anthro.svg",
  15215. extra: 350 / 332,
  15216. bottom: 0.045
  15217. }
  15218. },
  15219. feral: {
  15220. height: math.unit(20 + 7 / 12, "feet"),
  15221. weight: math.unit(629, "lb"),
  15222. name: "Feral",
  15223. image: {
  15224. source: "./media/characters/grottos/feral.svg",
  15225. extra: 207 / 190,
  15226. bottom: 0.05
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(10 + 9 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15240. {
  15241. anthro: {
  15242. height: math.unit(9 + 6 / 12, "feet"),
  15243. weight: math.unit(298, "lb"),
  15244. name: "Anthro",
  15245. image: {
  15246. source: "./media/characters/frifna/anthro.svg",
  15247. extra: 282 / 269,
  15248. bottom: 0.015
  15249. }
  15250. },
  15251. feral: {
  15252. height: math.unit(16 + 2 / 12, "feet"),
  15253. weight: math.unit(624, "lb"),
  15254. name: "Feral",
  15255. image: {
  15256. source: "./media/characters/frifna/feral.svg"
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(9 + 6 / 12, "feet"),
  15264. default: true
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(6 + 2 / 12, "feet"),
  15273. weight: math.unit(168, "lb"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/elise/front.svg",
  15277. extra: 276 / 271
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(6 + 2 / 12, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(5 + 10 / 12, "feet"),
  15294. weight: math.unit(210, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/glade/front.svg",
  15298. extra: 258 / 247,
  15299. bottom: 0.008
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(5 + 10 / 12, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(5 + 10 / 12, "feet"),
  15316. weight: math.unit(129, "lb"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/rina/front.svg",
  15320. extra: 266 / 255,
  15321. bottom: 0.005
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(5 + 10 / 12, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(6 + 1 / 12, "feet"),
  15338. weight: math.unit(192, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/veronica/front.svg",
  15342. extra: 319 / 309,
  15343. bottom: 0.005
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Normal",
  15350. height: math.unit(6 + 1 / 12, "feet"),
  15351. default: true
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15357. {
  15358. front: {
  15359. height: math.unit(9 + 3 / 12, "feet"),
  15360. weight: math.unit(1100, "lb"),
  15361. name: "Front",
  15362. image: {
  15363. source: "./media/characters/braxton/front.svg",
  15364. extra: 1057 / 984,
  15365. bottom: 0.05
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(9 + 3 / 12, "feet")
  15373. },
  15374. {
  15375. name: "Giant",
  15376. height: math.unit(300, "feet"),
  15377. default: true
  15378. },
  15379. {
  15380. name: "Macro",
  15381. height: math.unit(700, "feet")
  15382. },
  15383. {
  15384. name: "Megamacro",
  15385. height: math.unit(6000, "feet")
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(6 + 7 / 12, "feet"),
  15394. weight: math.unit(150, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/blue-feyonics/front.svg",
  15398. extra: 1403 / 1306,
  15399. bottom: 0.047
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(6 + 7 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(1.8, "meters"),
  15416. weight: math.unit(60, "kg"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/maxwell/front.svg",
  15420. extra: 2060 / 1873
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Micro",
  15427. height: math.unit(1, "mm")
  15428. },
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(1.8, "meter"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Macro",
  15436. height: math.unit(30, "meters")
  15437. },
  15438. {
  15439. name: "Megamacro",
  15440. height: math.unit(10, "km")
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/jack/front.svg",
  15453. extra: 1754 / 1640,
  15454. bottom: 0.01
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(80000, "feet"),
  15462. default: true
  15463. },
  15464. {
  15465. name: "Max size",
  15466. height: math.unit(10, "lightyears")
  15467. },
  15468. ]
  15469. ))
  15470. characterMakers.push(() => makeCharacter(
  15471. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15472. {
  15473. upright: {
  15474. height: math.unit(7, "feet"),
  15475. weight: math.unit(170, "lb"),
  15476. name: "Upright",
  15477. image: {
  15478. source: "./media/characters/cafat/upright.svg",
  15479. bottom: 0.01
  15480. }
  15481. },
  15482. uprightFull: {
  15483. height: math.unit(7, "feet"),
  15484. weight: math.unit(170, "lb"),
  15485. name: "Upright (Full)",
  15486. image: {
  15487. source: "./media/characters/cafat/upright-full.svg",
  15488. bottom: 0.01
  15489. }
  15490. },
  15491. side: {
  15492. height: math.unit(5, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Side",
  15495. image: {
  15496. source: "./media/characters/cafat/side.svg"
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Small",
  15503. height: math.unit(7, "feet"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Large",
  15508. height: math.unit(15.5, "feet")
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(150, "lb"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/verin-raharra/front.svg",
  15521. extra: 5019 / 4835,
  15522. bottom: 0.023
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(7 + 5 / 12, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Upsized",
  15534. height: math.unit(20, "feet")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(7, "feet"),
  15543. weight: math.unit(230, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/nakata/front.svg",
  15547. extra: 1.005,
  15548. bottom: 0.01
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(7, "feet"),
  15556. default: true
  15557. },
  15558. {
  15559. name: "Big",
  15560. height: math.unit(14, "feet")
  15561. },
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(400, "feet")
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(4.91, "feet"),
  15573. weight: math.unit(100, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/lily/front.svg",
  15577. extra: 1585 / 1415,
  15578. bottom: 0.02
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(4.91, "feet"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15592. {
  15593. laying: {
  15594. height: math.unit(4 + 4 / 12, "feet"),
  15595. weight: math.unit(600, "lb"),
  15596. name: "Laying",
  15597. image: {
  15598. source: "./media/characters/sheila/laying.svg",
  15599. extra: 1333 / 1265,
  15600. bottom: 0.16
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Normal",
  15607. height: math.unit(4 + 4 / 12, "feet"),
  15608. default: true
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(190, "lb"),
  15618. name: "Front",
  15619. image: {
  15620. source: "./media/characters/sax/front.svg",
  15621. extra: 1187 / 973,
  15622. bottom: 0.042
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Micro",
  15629. height: math.unit(4, "inches"),
  15630. default: true
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(6, "feet"),
  15639. weight: math.unit(150, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/pandora/front.svg",
  15643. extra: 2720 / 2556,
  15644. bottom: 0.015
  15645. }
  15646. },
  15647. back: {
  15648. height: math.unit(6, "feet"),
  15649. weight: math.unit(150, "lb"),
  15650. name: "Back",
  15651. image: {
  15652. source: "./media/characters/pandora/back.svg",
  15653. extra: 2720 / 2556,
  15654. bottom: 0.01
  15655. }
  15656. },
  15657. beans: {
  15658. height: math.unit(6 / 8, "feet"),
  15659. name: "Beans",
  15660. image: {
  15661. source: "./media/characters/pandora/beans.svg"
  15662. }
  15663. },
  15664. skirt: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(150, "lb"),
  15667. name: "Skirt",
  15668. image: {
  15669. source: "./media/characters/pandora/skirt.svg",
  15670. extra: 1622 / 1525,
  15671. bottom: 0.015
  15672. }
  15673. },
  15674. hoodie: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(150, "lb"),
  15677. name: "Hoodie",
  15678. image: {
  15679. source: "./media/characters/pandora/hoodie.svg",
  15680. extra: 1622 / 1525,
  15681. bottom: 0.015
  15682. }
  15683. },
  15684. casual: {
  15685. height: math.unit(6, "feet"),
  15686. weight: math.unit(150, "lb"),
  15687. name: "Casual",
  15688. image: {
  15689. source: "./media/characters/pandora/casual.svg",
  15690. extra: 1622 / 1525,
  15691. bottom: 0.015
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Normal",
  15698. height: math.unit(6, "feet")
  15699. },
  15700. {
  15701. name: "Big Steppy",
  15702. height: math.unit(1, "km"),
  15703. default: true
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15709. {
  15710. side: {
  15711. height: math.unit(10, "feet"),
  15712. weight: math.unit(800, "kg"),
  15713. name: "Side",
  15714. image: {
  15715. source: "./media/characters/venio-darcony/side.svg",
  15716. extra: 1373 / 1003,
  15717. bottom: 0.037
  15718. }
  15719. },
  15720. front: {
  15721. height: math.unit(19, "feet"),
  15722. weight: math.unit(800, "kg"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/venio-darcony/front.svg"
  15726. }
  15727. },
  15728. back: {
  15729. height: math.unit(19, "feet"),
  15730. weight: math.unit(800, "kg"),
  15731. name: "Back",
  15732. image: {
  15733. source: "./media/characters/venio-darcony/back.svg"
  15734. }
  15735. },
  15736. sideNsfw: {
  15737. height: math.unit(10, "feet"),
  15738. weight: math.unit(800, "kg"),
  15739. name: "Side (NSFW)",
  15740. image: {
  15741. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15742. extra: 1373 / 1003,
  15743. bottom: 0.037
  15744. }
  15745. },
  15746. frontNsfw: {
  15747. height: math.unit(19, "feet"),
  15748. weight: math.unit(800, "kg"),
  15749. name: "Front (NSFW)",
  15750. image: {
  15751. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15752. }
  15753. },
  15754. backNsfw: {
  15755. height: math.unit(19, "feet"),
  15756. weight: math.unit(800, "kg"),
  15757. name: "Back (NSFW)",
  15758. image: {
  15759. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15760. }
  15761. },
  15762. sideArmored: {
  15763. height: math.unit(10, "feet"),
  15764. weight: math.unit(800, "kg"),
  15765. name: "Side (Armored)",
  15766. image: {
  15767. source: "./media/characters/venio-darcony/side-armored.svg",
  15768. extra: 1373 / 1003,
  15769. bottom: 0.037
  15770. }
  15771. },
  15772. frontArmored: {
  15773. height: math.unit(19, "feet"),
  15774. weight: math.unit(900, "kg"),
  15775. name: "Front (Armored)",
  15776. image: {
  15777. source: "./media/characters/venio-darcony/front-armored.svg"
  15778. }
  15779. },
  15780. backArmored: {
  15781. height: math.unit(19, "feet"),
  15782. weight: math.unit(900, "kg"),
  15783. name: "Back (Armored)",
  15784. image: {
  15785. source: "./media/characters/venio-darcony/back-armored.svg"
  15786. }
  15787. },
  15788. sword: {
  15789. height: math.unit(10, "feet"),
  15790. weight: math.unit(50, "lb"),
  15791. name: "Sword",
  15792. image: {
  15793. source: "./media/characters/venio-darcony/sword.svg"
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Normal",
  15800. height: math.unit(10, "feet")
  15801. },
  15802. {
  15803. name: "Macro",
  15804. height: math.unit(130, "feet"),
  15805. default: true
  15806. },
  15807. {
  15808. name: "Macro+",
  15809. height: math.unit(240, "feet")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(150, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/veski/front.svg",
  15822. extra: 1299 / 1225,
  15823. bottom: 0.04
  15824. }
  15825. },
  15826. back: {
  15827. height: math.unit(6, "feet"),
  15828. weight: math.unit(150, "lb"),
  15829. name: "Back",
  15830. image: {
  15831. source: "./media/characters/veski/back.svg",
  15832. extra: 1299 / 1225,
  15833. bottom: 0.008
  15834. }
  15835. },
  15836. maw: {
  15837. height: math.unit(1.5 * 1.21, "feet"),
  15838. name: "Maw",
  15839. image: {
  15840. source: "./media/characters/veski/maw.svg"
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Macro",
  15847. height: math.unit(2, "km"),
  15848. default: true
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(5 + 7 / 12, "feet"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/isabelle/front.svg",
  15860. extra: 2130 / 1976,
  15861. bottom: 0.05
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Supermicro",
  15868. height: math.unit(10, "micrometers")
  15869. },
  15870. {
  15871. name: "Micro",
  15872. height: math.unit(1, "inch")
  15873. },
  15874. {
  15875. name: "Tiny",
  15876. height: math.unit(5, "inches")
  15877. },
  15878. {
  15879. name: "Standard",
  15880. height: math.unit(5 + 7 / 12, "inches")
  15881. },
  15882. {
  15883. name: "Macro",
  15884. height: math.unit(80, "meters"),
  15885. default: true
  15886. },
  15887. {
  15888. name: "Megamacro",
  15889. height: math.unit(250, "meters")
  15890. },
  15891. {
  15892. name: "Gigamacro",
  15893. height: math.unit(5, "km")
  15894. },
  15895. {
  15896. name: "Cosmic",
  15897. height: math.unit(2.5e6, "miles")
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(6, "feet"),
  15906. weight: math.unit(150, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/hanzo/front.svg",
  15910. extra: 374 / 344,
  15911. bottom: 0.02
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(8, "feet"),
  15919. default: true
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(7, "feet"),
  15928. weight: math.unit(130, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/anna/front.svg",
  15932. extra: 169 / 145,
  15933. bottom: 0.06
  15934. }
  15935. },
  15936. full: {
  15937. height: math.unit(4.96, "feet"),
  15938. weight: math.unit(220, "lb"),
  15939. name: "Full",
  15940. image: {
  15941. source: "./media/characters/anna/full.svg",
  15942. extra: 138 / 114,
  15943. bottom: 0.15
  15944. }
  15945. },
  15946. tongue: {
  15947. height: math.unit(2.53, "feet"),
  15948. name: "Tongue",
  15949. image: {
  15950. source: "./media/characters/anna/tongue.svg"
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(7, "feet"),
  15958. default: true
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15964. {
  15965. front: {
  15966. height: math.unit(7, "feet"),
  15967. weight: math.unit(150, "lb"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/ian-corvid/front.svg",
  15971. extra: 150 / 142,
  15972. bottom: 0.02
  15973. }
  15974. },
  15975. back: {
  15976. height: math.unit(7, "feet"),
  15977. weight: math.unit(150, "lb"),
  15978. name: "Back",
  15979. image: {
  15980. source: "./media/characters/ian-corvid/back.svg",
  15981. extra: 150 / 143,
  15982. bottom: 0.01
  15983. }
  15984. },
  15985. stomping: {
  15986. height: math.unit(7, "feet"),
  15987. weight: math.unit(150, "lb"),
  15988. name: "Stomping",
  15989. image: {
  15990. source: "./media/characters/ian-corvid/stomping.svg",
  15991. extra: 76 / 72
  15992. }
  15993. },
  15994. sitting: {
  15995. height: math.unit(7 / 1.8, "feet"),
  15996. weight: math.unit(150, "lb"),
  15997. name: "Sitting",
  15998. image: {
  15999. source: "./media/characters/ian-corvid/sitting.svg",
  16000. extra: 1400 / 1269,
  16001. bottom: 0.15
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Tiny Microw",
  16008. height: math.unit(1, "inch")
  16009. },
  16010. {
  16011. name: "Microw",
  16012. height: math.unit(6, "inches")
  16013. },
  16014. {
  16015. name: "Crow",
  16016. height: math.unit(7 + 1 / 12, "feet"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Macrow",
  16021. height: math.unit(176, "feet")
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(5 + 7 / 12, "feet"),
  16030. weight: math.unit(147, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/natalie-kellon/front.svg",
  16034. extra: 1214 / 1141,
  16035. bottom: 0.02
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Micro",
  16042. height: math.unit(1 / 16, "inch")
  16043. },
  16044. {
  16045. name: "Tiny",
  16046. height: math.unit(4, "inches")
  16047. },
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(5 + 7 / 12, "feet"),
  16051. default: true
  16052. },
  16053. {
  16054. name: "Amazon",
  16055. height: math.unit(12, "feet")
  16056. },
  16057. {
  16058. name: "Giantess",
  16059. height: math.unit(160, "meters")
  16060. },
  16061. {
  16062. name: "Titaness",
  16063. height: math.unit(800, "meters")
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16069. {
  16070. front: {
  16071. height: math.unit(6, "feet"),
  16072. weight: math.unit(150, "lb"),
  16073. name: "Front",
  16074. image: {
  16075. source: "./media/characters/alluria/front.svg",
  16076. extra: 806 / 738,
  16077. bottom: 0.01
  16078. }
  16079. },
  16080. side: {
  16081. height: math.unit(6, "feet"),
  16082. weight: math.unit(150, "lb"),
  16083. name: "Side",
  16084. image: {
  16085. source: "./media/characters/alluria/side.svg",
  16086. extra: 800 / 750,
  16087. }
  16088. },
  16089. back: {
  16090. height: math.unit(6, "feet"),
  16091. weight: math.unit(150, "lb"),
  16092. name: "Back",
  16093. image: {
  16094. source: "./media/characters/alluria/back.svg",
  16095. extra: 806 / 738,
  16096. }
  16097. },
  16098. frontMaid: {
  16099. height: math.unit(6, "feet"),
  16100. weight: math.unit(150, "lb"),
  16101. name: "Front (Maid)",
  16102. image: {
  16103. source: "./media/characters/alluria/front-maid.svg",
  16104. extra: 806 / 738,
  16105. bottom: 0.01
  16106. }
  16107. },
  16108. sideMaid: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Side (Maid)",
  16112. image: {
  16113. source: "./media/characters/alluria/side-maid.svg",
  16114. extra: 800 / 750,
  16115. bottom: 0.005
  16116. }
  16117. },
  16118. backMaid: {
  16119. height: math.unit(6, "feet"),
  16120. weight: math.unit(150, "lb"),
  16121. name: "Back (Maid)",
  16122. image: {
  16123. source: "./media/characters/alluria/back-maid.svg",
  16124. extra: 806 / 738,
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Micro",
  16131. height: math.unit(6, "inches"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(6, "feet"),
  16141. weight: math.unit(150, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/kyle/front.svg",
  16145. extra: 1069 / 962,
  16146. bottom: 77.228 / 1727.45
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Macro",
  16153. height: math.unit(150, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(6, "feet"),
  16163. weight: math.unit(300, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/duncan/front.svg",
  16167. extra: 1650 / 1482,
  16168. bottom: 0.05
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Macro",
  16175. height: math.unit(100, "feet"),
  16176. default: true
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(5 + 4 / 12, "feet"),
  16185. weight: math.unit(220, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/memory/front.svg",
  16189. extra: 3641 / 3545,
  16190. bottom: 0.03
  16191. }
  16192. },
  16193. back: {
  16194. height: math.unit(5 + 4 / 12, "feet"),
  16195. weight: math.unit(220, "lb"),
  16196. name: "Back",
  16197. image: {
  16198. source: "./media/characters/memory/back.svg",
  16199. extra: 3641 / 3545,
  16200. bottom: 0.025
  16201. }
  16202. },
  16203. frontSkirt: {
  16204. height: math.unit(5 + 4 / 12, "feet"),
  16205. weight: math.unit(220, "lb"),
  16206. name: "Front (Skirt)",
  16207. image: {
  16208. source: "./media/characters/memory/front-skirt.svg",
  16209. extra: 3641 / 3545,
  16210. bottom: 0.03
  16211. }
  16212. },
  16213. frontDress: {
  16214. height: math.unit(5 + 4 / 12, "feet"),
  16215. weight: math.unit(220, "lb"),
  16216. name: "Front (Dress)",
  16217. image: {
  16218. source: "./media/characters/memory/front-dress.svg",
  16219. extra: 3641 / 3545,
  16220. bottom: 0.03
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Micro",
  16227. height: math.unit(6, "inches"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(5 + 4 / 12, "feet")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(4 + 11 / 12, "feet"),
  16241. weight: math.unit(100, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/luno/front.svg",
  16245. extra: 1535 / 1487,
  16246. bottom: 0.03
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Micro",
  16253. height: math.unit(3, "inches")
  16254. },
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(4 + 11 / 12, "feet"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "Macro",
  16262. height: math.unit(300, "feet")
  16263. },
  16264. {
  16265. name: "Megamacro",
  16266. height: math.unit(700, "miles")
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(6 + 2 / 12, "feet"),
  16275. weight: math.unit(170, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/jamesy/front.svg",
  16279. extra: 440 / 382,
  16280. bottom: 0.005
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Micro",
  16287. height: math.unit(3, "inches")
  16288. },
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(6 + 2 / 12, "feet"),
  16292. default: true
  16293. },
  16294. {
  16295. name: "Macro",
  16296. height: math.unit(300, "feet")
  16297. },
  16298. {
  16299. name: "Megamacro",
  16300. height: math.unit(700, "miles")
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(6, "feet"),
  16309. weight: math.unit(160, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/mark/front.svg",
  16313. extra: 3300 / 3100,
  16314. bottom: 136.42 / 3440.47
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Macro",
  16321. height: math.unit(120, "meters")
  16322. },
  16323. {
  16324. name: "Bigger Macro",
  16325. height: math.unit(350, "meters")
  16326. },
  16327. {
  16328. name: "Megamacro",
  16329. height: math.unit(8, "km"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Continental",
  16334. height: math.unit(4550, "km")
  16335. },
  16336. {
  16337. name: "Planetary",
  16338. height: math.unit(65000, "km")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(6, "feet"),
  16347. weight: math.unit(400, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/mac/front.svg",
  16351. extra: 1048 / 987.7,
  16352. bottom: 60 / 1107.6,
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Macro",
  16359. height: math.unit(500, "feet"),
  16360. default: true
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(5 + 2 / 12, "feet"),
  16369. weight: math.unit(190, "lb"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/bari/front.svg",
  16373. extra: 3156 / 2880,
  16374. bottom: 0.03
  16375. }
  16376. },
  16377. back: {
  16378. height: math.unit(5 + 2 / 12, "feet"),
  16379. weight: math.unit(190, "lb"),
  16380. name: "Back",
  16381. image: {
  16382. source: "./media/characters/bari/back.svg",
  16383. extra: 3260 / 2834,
  16384. bottom: 0.025
  16385. }
  16386. },
  16387. frontPlush: {
  16388. height: math.unit(5 + 2 / 12, "feet"),
  16389. weight: math.unit(190, "lb"),
  16390. name: "Front (Plush)",
  16391. image: {
  16392. source: "./media/characters/bari/front-plush.svg",
  16393. extra: 1112 / 1061,
  16394. bottom: 0.002
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Micro",
  16401. height: math.unit(3, "inches")
  16402. },
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(5 + 2 / 12, "feet"),
  16406. default: true
  16407. },
  16408. {
  16409. name: "Macro",
  16410. height: math.unit(20, "feet")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16416. {
  16417. front: {
  16418. height: math.unit(6 + 1 / 12, "feet"),
  16419. weight: math.unit(275, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/hunter-misha-raven/front.svg"
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Mortal",
  16429. height: math.unit(6 + 1 / 12, "feet")
  16430. },
  16431. {
  16432. name: "Divine",
  16433. height: math.unit(1.12134e34, "parsecs"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(6 + 3 / 12, "feet"),
  16443. weight: math.unit(220, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/max-calore/front.svg",
  16447. extra: 1700 / 1648,
  16448. bottom: 0.01
  16449. }
  16450. },
  16451. back: {
  16452. height: math.unit(6 + 3 / 12, "feet"),
  16453. weight: math.unit(220, "lb"),
  16454. name: "Back",
  16455. image: {
  16456. source: "./media/characters/max-calore/back.svg",
  16457. extra: 1700 / 1648,
  16458. bottom: 0.01
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(6 + 3 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16472. {
  16473. side: {
  16474. height: math.unit(2 + 8 / 12, "feet"),
  16475. weight: math.unit(99, "lb"),
  16476. name: "Side",
  16477. image: {
  16478. source: "./media/characters/aspen/side.svg",
  16479. extra: 152 / 138,
  16480. bottom: 0.032
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(2 + 8 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16494. {
  16495. side: {
  16496. height: math.unit(3 + 2 / 12, "feet"),
  16497. weight: math.unit(224, "lb"),
  16498. name: "Side",
  16499. image: {
  16500. source: "./media/characters/sheila-feral-wolf/side.svg",
  16501. extra: 179 / 166,
  16502. bottom: 0.03
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(3 + 2 / 12, "feet"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16516. {
  16517. side: {
  16518. height: math.unit(1 + 9 / 12, "feet"),
  16519. weight: math.unit(38, "lb"),
  16520. name: "Side",
  16521. image: {
  16522. source: "./media/characters/michelle/side.svg",
  16523. extra: 147 / 136.7,
  16524. bottom: 0.03
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(1 + 9 / 12, "feet"),
  16532. default: true
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(1 + 1 / 12, "feet"),
  16541. weight: math.unit(18, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/nino/front.svg"
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(1 + 1 / 12, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(1, "feet"),
  16561. weight: math.unit(16, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/viola/front.svg"
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(1, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(6 + 5 / 12, "feet"),
  16581. weight: math.unit(580, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/atlas/front.svg",
  16585. extra: 298.5 / 290,
  16586. bottom: 0.015
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(6 + 5 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16600. {
  16601. side: {
  16602. height: math.unit(1 + 10 / 12, "feet"),
  16603. weight: math.unit(25, "lb"),
  16604. name: "Side",
  16605. image: {
  16606. source: "./media/characters/davy/side.svg",
  16607. extra: 200 / 170,
  16608. bottom: 0.01
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(1 + 10 / 12, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16622. {
  16623. side: {
  16624. height: math.unit(4 + 8 / 12, "feet"),
  16625. weight: math.unit(166, "lb"),
  16626. name: "Side",
  16627. image: {
  16628. source: "./media/characters/fiona/side.svg",
  16629. extra: 232 / 220,
  16630. bottom: 0.03
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(4 + 8 / 12, "feet"),
  16638. default: true
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16644. {
  16645. front: {
  16646. height: math.unit(2, "feet"),
  16647. weight: math.unit(62, "lb"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/lyla/front.svg",
  16651. bottom: 0.1
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(2, "feet"),
  16659. default: true
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16665. {
  16666. side: {
  16667. height: math.unit(1.8, "feet"),
  16668. weight: math.unit(44, "lb"),
  16669. name: "Side",
  16670. image: {
  16671. source: "./media/characters/perseus/side.svg",
  16672. bottom: 0.21
  16673. }
  16674. },
  16675. },
  16676. [
  16677. {
  16678. name: "Normal",
  16679. height: math.unit(1.8, "feet"),
  16680. default: true
  16681. },
  16682. ]
  16683. ))
  16684. characterMakers.push(() => makeCharacter(
  16685. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16686. {
  16687. side: {
  16688. height: math.unit(4 + 2 / 12, "feet"),
  16689. weight: math.unit(20, "lb"),
  16690. name: "Side",
  16691. image: {
  16692. source: "./media/characters/remus/side.svg"
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Normal",
  16699. height: math.unit(4 + 2 / 12, "feet"),
  16700. default: true
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16706. {
  16707. front: {
  16708. height: math.unit(4 + 11 / 12, "feet"),
  16709. weight: math.unit(114, "lb"),
  16710. name: "Front",
  16711. image: {
  16712. source: "./media/characters/raf/front.svg",
  16713. bottom: 20.5 / 1863
  16714. }
  16715. },
  16716. side: {
  16717. height: math.unit(4 + 11 / 12, "feet"),
  16718. weight: math.unit(114, "lb"),
  16719. name: "Side",
  16720. image: {
  16721. source: "./media/characters/raf/side.svg",
  16722. bottom: 22 / 1822
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Micro",
  16729. height: math.unit(2, "inches")
  16730. },
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(4 + 11 / 12, "feet"),
  16734. default: true
  16735. },
  16736. {
  16737. name: "Macro",
  16738. height: math.unit(70, "feet")
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(1.5, "meters"),
  16747. weight: math.unit(68, "kg"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/liam-einarr/front.svg",
  16751. extra: 2822 / 2666
  16752. }
  16753. },
  16754. back: {
  16755. height: math.unit(1.5, "meters"),
  16756. weight: math.unit(68, "kg"),
  16757. name: "Back",
  16758. image: {
  16759. source: "./media/characters/liam-einarr/back.svg",
  16760. extra: 2822 / 2666,
  16761. bottom: 0.015
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(1.5, "meters"),
  16769. default: true
  16770. },
  16771. {
  16772. name: "Macro",
  16773. height: math.unit(150, "meters")
  16774. },
  16775. {
  16776. name: "Megamacro",
  16777. height: math.unit(35, "km")
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(75, "kg"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/linda/front.svg",
  16790. extra: 930 / 874,
  16791. bottom: 0.004
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(6, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6 + 8 / 12, "feet"),
  16808. weight: math.unit(220, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/caylex/front.svg",
  16812. extra: 821 / 772,
  16813. bottom: 0.07
  16814. }
  16815. },
  16816. back: {
  16817. height: math.unit(6 + 8 / 12, "feet"),
  16818. weight: math.unit(220, "lb"),
  16819. name: "Back",
  16820. image: {
  16821. source: "./media/characters/caylex/back.svg",
  16822. extra: 821 / 772,
  16823. bottom: 0.022
  16824. }
  16825. },
  16826. hand: {
  16827. height: math.unit(1.25, "feet"),
  16828. name: "Hand",
  16829. image: {
  16830. source: "./media/characters/caylex/hand.svg"
  16831. }
  16832. },
  16833. foot: {
  16834. height: math.unit(1.6, "feet"),
  16835. name: "Foot",
  16836. image: {
  16837. source: "./media/characters/caylex/foot.svg"
  16838. }
  16839. },
  16840. armored: {
  16841. height: math.unit(6 + 8 / 12, "feet"),
  16842. weight: math.unit(250, "lb"),
  16843. name: "Armored",
  16844. image: {
  16845. source: "./media/characters/caylex/armored.svg",
  16846. extra: 1420 / 1310,
  16847. bottom: 0.045
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(6 + 8 / 12, "feet"),
  16855. default: true
  16856. },
  16857. {
  16858. name: "Normal+",
  16859. height: math.unit(12, "feet")
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(7 + 6 / 12, "feet"),
  16868. weight: math.unit(288, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/alana/front.svg",
  16872. extra: 679 / 653,
  16873. bottom: 22.5 / 701
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(7 + 6 / 12, "feet")
  16881. },
  16882. {
  16883. name: "Large",
  16884. height: math.unit(50, "feet")
  16885. },
  16886. {
  16887. name: "Macro",
  16888. height: math.unit(100, "feet"),
  16889. default: true
  16890. },
  16891. {
  16892. name: "Macro+",
  16893. height: math.unit(200, "feet")
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(6 + 1 / 12, "feet"),
  16902. weight: math.unit(210, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/hasani/front.svg",
  16906. extra: 244 / 232,
  16907. bottom: 0.01
  16908. }
  16909. },
  16910. back: {
  16911. height: math.unit(6 + 1 / 12, "feet"),
  16912. weight: math.unit(210, "lb"),
  16913. name: "Back",
  16914. image: {
  16915. source: "./media/characters/hasani/back.svg",
  16916. extra: 244 / 232,
  16917. bottom: 0.01
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(6 + 1 / 12, "feet")
  16925. },
  16926. {
  16927. name: "Macro",
  16928. height: math.unit(175, "feet"),
  16929. default: true
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16935. {
  16936. front: {
  16937. height: math.unit(1.82, "meters"),
  16938. weight: math.unit(140, "lb"),
  16939. name: "Front",
  16940. image: {
  16941. source: "./media/characters/nita/front.svg",
  16942. extra: 2473 / 2363,
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Normal",
  16950. height: math.unit(1.82, "m")
  16951. },
  16952. {
  16953. name: "Macro",
  16954. height: math.unit(300, "m")
  16955. },
  16956. {
  16957. name: "Mistake Canon",
  16958. height: math.unit(0.5, "miles"),
  16959. default: true
  16960. },
  16961. {
  16962. name: "Big Mistake",
  16963. height: math.unit(13, "miles")
  16964. },
  16965. {
  16966. name: "Playing God",
  16967. height: math.unit(2450, "miles")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(4, "feet"),
  16976. weight: math.unit(120, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/shiriko/front.svg",
  16980. extra: 195 / 188
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(4, "feet"),
  16988. default: true
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16994. {
  16995. front: {
  16996. height: math.unit(6, "feet"),
  16997. name: "front",
  16998. image: {
  16999. source: "./media/characters/deja/front.svg",
  17000. extra: 926 / 840,
  17001. bottom: 0.07
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Planck Length",
  17008. height: math.unit(1.6e-35, "meters")
  17009. },
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(30.48, "meters"),
  17013. default: true
  17014. },
  17015. {
  17016. name: "Universal",
  17017. height: math.unit(8.8e26, "meters")
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17023. {
  17024. side: {
  17025. height: math.unit(8, "feet"),
  17026. weight: math.unit(6300, "lb"),
  17027. name: "Side",
  17028. image: {
  17029. source: "./media/characters/anima/side.svg",
  17030. bottom: 0.035
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(8, "feet"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(8, "feet"),
  17047. weight: math.unit(350, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/bianca/front.svg",
  17051. extra: 234 / 225,
  17052. bottom: 0.03
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(8, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(6, "feet"),
  17069. weight: math.unit(150, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/adinia/front.svg",
  17073. extra: 1845 / 1672,
  17074. bottom: 0.02
  17075. }
  17076. },
  17077. back: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(150, "lb"),
  17080. name: "Back",
  17081. image: {
  17082. source: "./media/characters/adinia/back.svg",
  17083. extra: 1845 / 1672,
  17084. bottom: 0.002
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(11 + 5 / 12, "feet"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(3, "meters"),
  17101. weight: math.unit(200, "kg"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/lykasa/front.svg",
  17105. extra: 1076 / 976,
  17106. bottom: 0.06
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(3, "meters")
  17114. },
  17115. {
  17116. name: "Kaiju",
  17117. height: math.unit(120, "meters"),
  17118. default: true
  17119. },
  17120. {
  17121. name: "Mega Kaiju",
  17122. height: math.unit(240, "km")
  17123. },
  17124. {
  17125. name: "Giga Kaiju",
  17126. height: math.unit(400, "megameters")
  17127. },
  17128. {
  17129. name: "Tera Kaiju",
  17130. height: math.unit(800, "gigameters")
  17131. },
  17132. {
  17133. name: "Kaiju Dragon Goddess",
  17134. height: math.unit(26, "zettaparsecs")
  17135. },
  17136. ]
  17137. ))
  17138. characterMakers.push(() => makeCharacter(
  17139. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17140. {
  17141. side: {
  17142. height: math.unit(283 / 124 * 6, "feet"),
  17143. weight: math.unit(35000, "lb"),
  17144. name: "Side",
  17145. image: {
  17146. source: "./media/characters/malfaren/side.svg",
  17147. extra: 2500 / 1010,
  17148. bottom: 0.01
  17149. }
  17150. },
  17151. front: {
  17152. height: math.unit(22.36, "feet"),
  17153. weight: math.unit(35000, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/malfaren/front.svg",
  17157. extra: 1631 / 1476,
  17158. bottom: 0.01
  17159. }
  17160. },
  17161. maw: {
  17162. height: math.unit(6.9, "feet"),
  17163. name: "Maw",
  17164. image: {
  17165. source: "./media/characters/malfaren/maw.svg"
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Big",
  17172. height: math.unit(283 / 162 * 6, "feet"),
  17173. },
  17174. {
  17175. name: "Bigger",
  17176. height: math.unit(283 / 124 * 6, "feet")
  17177. },
  17178. {
  17179. name: "Massive",
  17180. height: math.unit(283 / 92 * 6, "feet"),
  17181. default: true
  17182. },
  17183. {
  17184. name: "👀💦",
  17185. height: math.unit(283 / 73 * 6, "feet"),
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(1.7, "m"),
  17194. weight: math.unit(70, "kg"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/kernel/front.svg",
  17198. extra: 222 / 210,
  17199. bottom: 0.007
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Nano",
  17206. height: math.unit(17, "micrometers")
  17207. },
  17208. {
  17209. name: "Micro",
  17210. height: math.unit(1.7, "mm")
  17211. },
  17212. {
  17213. name: "Small",
  17214. height: math.unit(1.7, "cm")
  17215. },
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(1.7, "m"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(1.75, "meters"),
  17228. weight: math.unit(65, "kg"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/jayne-folest/front.svg",
  17232. extra: 2115 / 2007,
  17233. bottom: 0.02
  17234. }
  17235. },
  17236. back: {
  17237. height: math.unit(1.75, "meters"),
  17238. weight: math.unit(65, "kg"),
  17239. name: "Back",
  17240. image: {
  17241. source: "./media/characters/jayne-folest/back.svg",
  17242. extra: 2115 / 2007,
  17243. bottom: 0.005
  17244. }
  17245. },
  17246. frontClothed: {
  17247. height: math.unit(1.75, "meters"),
  17248. weight: math.unit(65, "kg"),
  17249. name: "Front (Clothed)",
  17250. image: {
  17251. source: "./media/characters/jayne-folest/front-clothed.svg",
  17252. extra: 2115 / 2007,
  17253. bottom: 0.035
  17254. }
  17255. },
  17256. hand: {
  17257. height: math.unit(1 / 1.260, "feet"),
  17258. name: "Hand",
  17259. image: {
  17260. source: "./media/characters/jayne-folest/hand.svg"
  17261. }
  17262. },
  17263. foot: {
  17264. height: math.unit(1 / 0.918, "feet"),
  17265. name: "Foot",
  17266. image: {
  17267. source: "./media/characters/jayne-folest/foot.svg"
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Micro",
  17274. height: math.unit(4, "cm")
  17275. },
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(1.75, "meters")
  17279. },
  17280. {
  17281. name: "Macro",
  17282. height: math.unit(47.5, "meters"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17289. {
  17290. front: {
  17291. height: math.unit(180, "cm"),
  17292. weight: math.unit(70, "kg"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/algier/front.svg",
  17296. extra: 596 / 572,
  17297. bottom: 0.04
  17298. }
  17299. },
  17300. back: {
  17301. height: math.unit(180, "cm"),
  17302. weight: math.unit(70, "kg"),
  17303. name: "Back",
  17304. image: {
  17305. source: "./media/characters/algier/back.svg",
  17306. extra: 596 / 572,
  17307. bottom: 0.025
  17308. }
  17309. },
  17310. frontdressed: {
  17311. height: math.unit(180, "cm"),
  17312. weight: math.unit(150, "kg"),
  17313. name: "Front-dressed",
  17314. image: {
  17315. source: "./media/characters/algier/front-dressed.svg",
  17316. extra: 596 / 572,
  17317. bottom: 0.038
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Micro",
  17324. height: math.unit(5, "cm")
  17325. },
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(180, "cm"),
  17329. default: true
  17330. },
  17331. {
  17332. name: "Macro",
  17333. height: math.unit(64, "m")
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17339. {
  17340. upright: {
  17341. height: math.unit(7, "feet"),
  17342. weight: math.unit(300, "lb"),
  17343. name: "Upright",
  17344. image: {
  17345. source: "./media/characters/pretzel/upright.svg",
  17346. extra: 534 / 522,
  17347. bottom: 0.065
  17348. }
  17349. },
  17350. sprawling: {
  17351. height: math.unit(3.75, "feet"),
  17352. weight: math.unit(300, "lb"),
  17353. name: "Sprawling",
  17354. image: {
  17355. source: "./media/characters/pretzel/sprawling.svg",
  17356. extra: 314 / 281,
  17357. bottom: 0.1
  17358. }
  17359. },
  17360. tongue: {
  17361. height: math.unit(2, "feet"),
  17362. name: "Tongue",
  17363. image: {
  17364. source: "./media/characters/pretzel/tongue.svg"
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(7, "feet"),
  17372. default: true
  17373. },
  17374. {
  17375. name: "Oversized",
  17376. height: math.unit(15, "feet")
  17377. },
  17378. {
  17379. name: "Huge",
  17380. height: math.unit(30, "feet")
  17381. },
  17382. {
  17383. name: "Macro",
  17384. height: math.unit(250, "feet")
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17390. {
  17391. sideFront: {
  17392. height: math.unit(5 + 2 / 12, "feet"),
  17393. weight: math.unit(120, "lb"),
  17394. name: "Front Side",
  17395. image: {
  17396. source: "./media/characters/roxi/side-front.svg",
  17397. extra: 2924 / 2717,
  17398. bottom: 0.08
  17399. }
  17400. },
  17401. sideBack: {
  17402. height: math.unit(5 + 2 / 12, "feet"),
  17403. weight: math.unit(120, "lb"),
  17404. name: "Back Side",
  17405. image: {
  17406. source: "./media/characters/roxi/side-back.svg",
  17407. extra: 2904 / 2693,
  17408. bottom: 0.06
  17409. }
  17410. },
  17411. front: {
  17412. height: math.unit(5 + 2 / 12, "feet"),
  17413. weight: math.unit(120, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/roxi/front.svg",
  17417. extra: 2028 / 1907,
  17418. bottom: 0.01
  17419. }
  17420. },
  17421. frontAlt: {
  17422. height: math.unit(5 + 2 / 12, "feet"),
  17423. weight: math.unit(120, "lb"),
  17424. name: "Front (Alt)",
  17425. image: {
  17426. source: "./media/characters/roxi/front-alt.svg",
  17427. extra: 1828 / 1798,
  17428. bottom: 0.01
  17429. }
  17430. },
  17431. sitting: {
  17432. height: math.unit(2.8, "feet"),
  17433. weight: math.unit(120, "lb"),
  17434. name: "Sitting",
  17435. image: {
  17436. source: "./media/characters/roxi/sitting.svg",
  17437. extra: 2660 / 2462,
  17438. bottom: 0.1
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(5 + 2 / 12, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17452. {
  17453. side: {
  17454. height: math.unit(55, "feet"),
  17455. weight: math.unit(153, "tons"),
  17456. name: "Side",
  17457. image: {
  17458. source: "./media/characters/shadow/side.svg",
  17459. extra: 701 / 628,
  17460. bottom: 0.02
  17461. }
  17462. },
  17463. flying: {
  17464. height: math.unit(145, "feet"),
  17465. weight: math.unit(153, "tons"),
  17466. name: "Flying",
  17467. image: {
  17468. source: "./media/characters/shadow/flying.svg"
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(55, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17482. {
  17483. front: {
  17484. height: math.unit(6, "feet"),
  17485. weight: math.unit(200, "lb"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/marcie/front.svg",
  17489. extra: 960 / 876,
  17490. bottom: 58 / 1017.87
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Macro",
  17497. height: math.unit(1, "mile"),
  17498. default: true
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17504. {
  17505. front: {
  17506. height: math.unit(7, "feet"),
  17507. weight: math.unit(200, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/kachina/front.svg",
  17511. extra: 1290.68 / 1119,
  17512. bottom: 36.5 / 1327.18
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(7, "feet"),
  17520. default: true
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17526. {
  17527. looking: {
  17528. height: math.unit(2, "meters"),
  17529. weight: math.unit(300, "kg"),
  17530. name: "Looking",
  17531. image: {
  17532. source: "./media/characters/kash/looking.svg",
  17533. extra: 474 / 344,
  17534. bottom: 0.03
  17535. }
  17536. },
  17537. side: {
  17538. height: math.unit(2, "meters"),
  17539. weight: math.unit(300, "kg"),
  17540. name: "Side",
  17541. image: {
  17542. source: "./media/characters/kash/side.svg",
  17543. extra: 302 / 251,
  17544. bottom: 0.03
  17545. }
  17546. },
  17547. front: {
  17548. height: math.unit(2, "meters"),
  17549. weight: math.unit(300, "kg"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/kash/front.svg",
  17553. extra: 495 / 360,
  17554. bottom: 0.015
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(2, "meters"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "Big",
  17566. height: math.unit(3, "meters")
  17567. },
  17568. {
  17569. name: "Large",
  17570. height: math.unit(5, "meters")
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17576. {
  17577. feeding: {
  17578. height: math.unit(6.7, "feet"),
  17579. weight: math.unit(350, "lb"),
  17580. name: "Feeding",
  17581. image: {
  17582. source: "./media/characters/lalim/feeding.svg",
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(6.7, "feet"),
  17590. default: true
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(9.5, "feet"),
  17599. weight: math.unit(600, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/de'vout/front.svg",
  17603. extra: 1443 / 1328,
  17604. bottom: 0.025
  17605. }
  17606. },
  17607. back: {
  17608. height: math.unit(9.5, "feet"),
  17609. weight: math.unit(600, "lb"),
  17610. name: "Back",
  17611. image: {
  17612. source: "./media/characters/de'vout/back.svg",
  17613. extra: 1443 / 1328
  17614. }
  17615. },
  17616. frontDressed: {
  17617. height: math.unit(9.5, "feet"),
  17618. weight: math.unit(600, "lb"),
  17619. name: "Front (Dressed",
  17620. image: {
  17621. source: "./media/characters/de'vout/front-dressed.svg",
  17622. extra: 1443 / 1328,
  17623. bottom: 0.025
  17624. }
  17625. },
  17626. backDressed: {
  17627. height: math.unit(9.5, "feet"),
  17628. weight: math.unit(600, "lb"),
  17629. name: "Back (Dressed",
  17630. image: {
  17631. source: "./media/characters/de'vout/back-dressed.svg",
  17632. extra: 1443 / 1328
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Normal",
  17639. height: math.unit(9.5, "feet"),
  17640. default: true
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(8, "feet"),
  17649. weight: math.unit(225, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/talana/front.svg",
  17653. extra: 1410 / 1300,
  17654. bottom: 0.015
  17655. }
  17656. },
  17657. frontDressed: {
  17658. height: math.unit(8, "feet"),
  17659. weight: math.unit(225, "lb"),
  17660. name: "Front (Dressed",
  17661. image: {
  17662. source: "./media/characters/talana/front-dressed.svg",
  17663. extra: 1410 / 1300,
  17664. bottom: 0.015
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Normal",
  17671. height: math.unit(8, "feet"),
  17672. default: true
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17678. {
  17679. side: {
  17680. height: math.unit(7.2, "feet"),
  17681. weight: math.unit(150, "lb"),
  17682. name: "Side",
  17683. image: {
  17684. source: "./media/characters/xeauvok/side.svg",
  17685. extra: 1975 / 1523,
  17686. bottom: 0.07
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(7.2, "feet"),
  17694. default: true
  17695. },
  17696. ]
  17697. ))
  17698. characterMakers.push(() => makeCharacter(
  17699. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17700. {
  17701. side: {
  17702. height: math.unit(10, "feet"),
  17703. weight: math.unit(900, "kg"),
  17704. name: "Side",
  17705. image: {
  17706. source: "./media/characters/zara/side.svg",
  17707. extra: 504 / 498
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(10, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17721. {
  17722. side: {
  17723. height: math.unit(6, "feet"),
  17724. weight: math.unit(150, "lb"),
  17725. name: "Side",
  17726. image: {
  17727. source: "./media/characters/richard-dragon/side.svg",
  17728. extra: 845 / 340,
  17729. bottom: 0.017
  17730. }
  17731. },
  17732. maw: {
  17733. height: math.unit(2.97, "feet"),
  17734. name: "Maw",
  17735. image: {
  17736. source: "./media/characters/richard-dragon/maw.svg"
  17737. }
  17738. },
  17739. },
  17740. [
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(4, "feet"),
  17748. weight: math.unit(100, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/richard-smeargle/front.svg",
  17752. extra: 2952 / 2820,
  17753. bottom: 0.028
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(4, "feet"),
  17761. default: true
  17762. },
  17763. {
  17764. name: "Dynamax",
  17765. height: math.unit(20, "meters")
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(6, "feet"),
  17774. weight: math.unit(110, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/klay/front.svg",
  17778. extra: 962 / 883,
  17779. bottom: 0.04
  17780. }
  17781. },
  17782. back: {
  17783. height: math.unit(6, "feet"),
  17784. weight: math.unit(110, "lb"),
  17785. name: "Back",
  17786. image: {
  17787. source: "./media/characters/klay/back.svg",
  17788. extra: 962 / 883
  17789. }
  17790. },
  17791. beans: {
  17792. height: math.unit(1.15, "feet"),
  17793. name: "Beans",
  17794. image: {
  17795. source: "./media/characters/klay/beans.svg"
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Micro",
  17802. height: math.unit(6, "inches")
  17803. },
  17804. {
  17805. name: "Mini",
  17806. height: math.unit(3, "feet")
  17807. },
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(6, "feet"),
  17811. default: true
  17812. },
  17813. {
  17814. name: "Big",
  17815. height: math.unit(25, "feet")
  17816. },
  17817. {
  17818. name: "Macro",
  17819. height: math.unit(100, "feet")
  17820. },
  17821. {
  17822. name: "Megamacro",
  17823. height: math.unit(400, "feet")
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(6, "feet"),
  17832. weight: math.unit(160, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/marcus/front.svg",
  17836. extra: 734 / 676,
  17837. bottom: 0.03
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Little",
  17844. height: math.unit(6, "feet")
  17845. },
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(110, "feet"),
  17849. default: true
  17850. },
  17851. {
  17852. name: "Macro",
  17853. height: math.unit(250, "feet")
  17854. },
  17855. {
  17856. name: "Megamacro",
  17857. height: math.unit(1000, "feet")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(7, "feet"),
  17866. weight: math.unit(275, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/claude-delroute/front.svg",
  17870. extra: 230 / 214,
  17871. bottom: 0.007
  17872. }
  17873. },
  17874. side: {
  17875. height: math.unit(7, "feet"),
  17876. weight: math.unit(275, "lb"),
  17877. name: "Side",
  17878. image: {
  17879. source: "./media/characters/claude-delroute/side.svg",
  17880. extra: 222 / 214,
  17881. bottom: 0.01
  17882. }
  17883. },
  17884. back: {
  17885. height: math.unit(7, "feet"),
  17886. weight: math.unit(275, "lb"),
  17887. name: "Back",
  17888. image: {
  17889. source: "./media/characters/claude-delroute/back.svg",
  17890. extra: 230 / 214,
  17891. bottom: 0.015
  17892. }
  17893. },
  17894. maw: {
  17895. height: math.unit(0.6407, "meters"),
  17896. name: "Maw",
  17897. image: {
  17898. source: "./media/characters/claude-delroute/maw.svg"
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(7, "feet"),
  17906. default: true
  17907. },
  17908. {
  17909. name: "Lorge",
  17910. height: math.unit(20, "feet")
  17911. },
  17912. ]
  17913. ))
  17914. characterMakers.push(() => makeCharacter(
  17915. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17916. {
  17917. front: {
  17918. height: math.unit(8 + 4 / 12, "feet"),
  17919. weight: math.unit(600, "lb"),
  17920. name: "Front",
  17921. image: {
  17922. source: "./media/characters/dragonien/front.svg",
  17923. extra: 100 / 94,
  17924. bottom: 3.3 / 103.3445
  17925. }
  17926. },
  17927. back: {
  17928. height: math.unit(8 + 4 / 12, "feet"),
  17929. weight: math.unit(600, "lb"),
  17930. name: "Back",
  17931. image: {
  17932. source: "./media/characters/dragonien/back.svg",
  17933. extra: 776 / 746,
  17934. bottom: 6.4 / 782.0616
  17935. }
  17936. },
  17937. foot: {
  17938. height: math.unit(1.54, "feet"),
  17939. name: "Foot",
  17940. image: {
  17941. source: "./media/characters/dragonien/foot.svg",
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(8 + 4 / 12, "feet"),
  17949. default: true
  17950. },
  17951. {
  17952. name: "Macro",
  17953. height: math.unit(200, "feet")
  17954. },
  17955. {
  17956. name: "Megamacro",
  17957. height: math.unit(1, "mile")
  17958. },
  17959. {
  17960. name: "Gigamacro",
  17961. height: math.unit(1000, "miles")
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(5 + 2 / 12, "feet"),
  17970. weight: math.unit(110, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/desta/front.svg",
  17974. extra: 767 / 726,
  17975. bottom: 11.7 / 779
  17976. }
  17977. },
  17978. back: {
  17979. height: math.unit(5 + 2 / 12, "feet"),
  17980. weight: math.unit(110, "lb"),
  17981. name: "Back",
  17982. image: {
  17983. source: "./media/characters/desta/back.svg",
  17984. extra: 777 / 728,
  17985. bottom: 6 / 784
  17986. }
  17987. },
  17988. frontAlt: {
  17989. height: math.unit(5 + 2 / 12, "feet"),
  17990. weight: math.unit(110, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/desta/front-alt.svg",
  17994. extra: 1482 / 1417
  17995. }
  17996. },
  17997. side: {
  17998. height: math.unit(5 + 2 / 12, "feet"),
  17999. weight: math.unit(110, "lb"),
  18000. name: "Side",
  18001. image: {
  18002. source: "./media/characters/desta/side.svg",
  18003. extra: 2579 / 2491,
  18004. bottom: 0.053
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Micro",
  18011. height: math.unit(6, "inches")
  18012. },
  18013. {
  18014. name: "Normal",
  18015. height: math.unit(5 + 2 / 12, "feet"),
  18016. default: true
  18017. },
  18018. {
  18019. name: "Macro",
  18020. height: math.unit(62, "feet")
  18021. },
  18022. {
  18023. name: "Megamacro",
  18024. height: math.unit(1800, "feet")
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(10, "feet"),
  18033. weight: math.unit(700, "lb"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/storm-alystar/front.svg",
  18037. extra: 2112 / 1898,
  18038. bottom: 0.034
  18039. }
  18040. },
  18041. },
  18042. [
  18043. {
  18044. name: "Micro",
  18045. height: math.unit(3.5, "inches")
  18046. },
  18047. {
  18048. name: "Normal",
  18049. height: math.unit(10, "feet"),
  18050. default: true
  18051. },
  18052. {
  18053. name: "Macro",
  18054. height: math.unit(400, "feet")
  18055. },
  18056. {
  18057. name: "Deific",
  18058. height: math.unit(60, "miles")
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18064. {
  18065. front: {
  18066. height: math.unit(2.35, "meters"),
  18067. weight: math.unit(119, "kg"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/ilia/front.svg",
  18071. extra: 1285 / 1255,
  18072. bottom: 0.06
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Normal",
  18079. height: math.unit(2.35, "meters")
  18080. },
  18081. {
  18082. name: "Macro",
  18083. height: math.unit(140, "meters"),
  18084. default: true
  18085. },
  18086. {
  18087. name: "Megamacro",
  18088. height: math.unit(100, "miles")
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18094. {
  18095. front: {
  18096. height: math.unit(6 + 5 / 12, "feet"),
  18097. weight: math.unit(190, "lb"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/kingdead/front.svg",
  18101. extra: 1228 / 1177
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Micro",
  18108. height: math.unit(7, "inches")
  18109. },
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(6 + 5 / 12, "feet")
  18113. },
  18114. {
  18115. name: "Macro",
  18116. height: math.unit(150, "feet"),
  18117. default: true
  18118. },
  18119. {
  18120. name: "Megamacro",
  18121. height: math.unit(200, "miles")
  18122. },
  18123. ]
  18124. ))
  18125. characterMakers.push(() => makeCharacter(
  18126. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18127. {
  18128. front: {
  18129. height: math.unit(8, "feet"),
  18130. weight: math.unit(600, "lb"),
  18131. name: "Front",
  18132. image: {
  18133. source: "./media/characters/kyrehx/front.svg",
  18134. extra: 1195 / 1095,
  18135. bottom: 0.034
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Micro",
  18142. height: math.unit(2, "inches")
  18143. },
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(8, "feet"),
  18147. default: true
  18148. },
  18149. {
  18150. name: "Macro",
  18151. height: math.unit(255, "feet")
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18160. weight: math.unit(184, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/xang/front.svg",
  18164. extra: 845 / 755
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Normal",
  18171. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18172. default: true
  18173. },
  18174. {
  18175. name: "Macro",
  18176. height: math.unit(0.935 * 146, "feet")
  18177. },
  18178. {
  18179. name: "Megamacro",
  18180. height: math.unit(0.935 * 3, "miles")
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18186. {
  18187. frontDressed: {
  18188. height: math.unit(5 + 7 / 12, "feet"),
  18189. weight: math.unit(140, "lb"),
  18190. name: "Front (Dressed)",
  18191. image: {
  18192. source: "./media/characters/doc-weardno/front-dressed.svg",
  18193. extra: 263 / 234
  18194. }
  18195. },
  18196. backDressed: {
  18197. height: math.unit(5 + 7 / 12, "feet"),
  18198. weight: math.unit(140, "lb"),
  18199. name: "Back (Dressed)",
  18200. image: {
  18201. source: "./media/characters/doc-weardno/back-dressed.svg",
  18202. extra: 266 / 238
  18203. }
  18204. },
  18205. front: {
  18206. height: math.unit(5 + 7 / 12, "feet"),
  18207. weight: math.unit(140, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/doc-weardno/front.svg",
  18211. extra: 254 / 233
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Micro",
  18218. height: math.unit(3, "inches")
  18219. },
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(5 + 7 / 12, "feet"),
  18223. default: true
  18224. },
  18225. {
  18226. name: "Macro",
  18227. height: math.unit(25, "feet")
  18228. },
  18229. {
  18230. name: "Megamacro",
  18231. height: math.unit(2, "miles")
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18237. {
  18238. front: {
  18239. height: math.unit(6 + 2 / 12, "feet"),
  18240. weight: math.unit(153, "lb"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/seth-whilst/front.svg",
  18244. bottom: 0.07
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Micro",
  18251. height: math.unit(5, "inches")
  18252. },
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(6 + 2 / 12, "feet"),
  18256. default: true
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(3, "inches"),
  18265. weight: math.unit(8, "grams"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/pocket-jabari/front.svg",
  18269. extra: 1024 / 974,
  18270. bottom: 0.039
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Minimicro",
  18277. height: math.unit(8, "mm")
  18278. },
  18279. {
  18280. name: "Micro",
  18281. height: math.unit(3, "inches"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Normal",
  18286. height: math.unit(3, "feet")
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(15, "feet"),
  18295. weight: math.unit(3280, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/sapphy/front.svg",
  18299. extra: 671 / 577,
  18300. bottom: 0.085
  18301. }
  18302. },
  18303. back: {
  18304. height: math.unit(15, "feet"),
  18305. weight: math.unit(3280, "lb"),
  18306. name: "Back",
  18307. image: {
  18308. source: "./media/characters/sapphy/back.svg",
  18309. extra: 631 / 607,
  18310. bottom: 0.045
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(15, "feet")
  18318. },
  18319. {
  18320. name: "Casual Macro",
  18321. height: math.unit(120, "feet")
  18322. },
  18323. {
  18324. name: "Macro",
  18325. height: math.unit(2150, "feet"),
  18326. default: true
  18327. },
  18328. {
  18329. name: "Megamacro",
  18330. height: math.unit(8, "miles")
  18331. },
  18332. {
  18333. name: "Galaxy Mom",
  18334. height: math.unit(6, "megalightyears")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(6, "feet"),
  18343. weight: math.unit(170, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/kiro/front.svg",
  18347. extra: 1064 / 1012,
  18348. bottom: 0.052
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Micro",
  18355. height: math.unit(6, "inches")
  18356. },
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(6, "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(72, "feet")
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(5 + 9 / 12, "feet"),
  18373. weight: math.unit(175, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/irishfox/front.svg",
  18377. extra: 1912 / 1680,
  18378. bottom: 0.02
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Nano",
  18385. height: math.unit(1, "mm")
  18386. },
  18387. {
  18388. name: "Micro",
  18389. height: math.unit(2, "inches")
  18390. },
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(5 + 9 / 12, "feet"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Macro",
  18398. height: math.unit(45, "feet")
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18404. {
  18405. front: {
  18406. height: math.unit(6 + 1 / 12, "feet"),
  18407. weight: math.unit(75, "lb"),
  18408. name: "Front",
  18409. image: {
  18410. source: "./media/characters/aronai-sieyes/front.svg",
  18411. extra: 1556 / 1480,
  18412. bottom: 0.015
  18413. }
  18414. },
  18415. side: {
  18416. height: math.unit(6 + 1 / 12, "feet"),
  18417. weight: math.unit(75, "lb"),
  18418. name: "Side",
  18419. image: {
  18420. source: "./media/characters/aronai-sieyes/side.svg",
  18421. extra: 1433 / 1390,
  18422. bottom: 0.0393
  18423. }
  18424. },
  18425. back: {
  18426. height: math.unit(6 + 1 / 12, "feet"),
  18427. weight: math.unit(75, "lb"),
  18428. name: "Back",
  18429. image: {
  18430. source: "./media/characters/aronai-sieyes/back.svg",
  18431. extra: 1544 / 1494,
  18432. bottom: 0.02
  18433. }
  18434. },
  18435. frontClothed: {
  18436. height: math.unit(6 + 1 / 12, "feet"),
  18437. weight: math.unit(75, "lb"),
  18438. name: "Front (Clothed)",
  18439. image: {
  18440. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18441. extra: 1582 / 1527
  18442. }
  18443. },
  18444. feral: {
  18445. height: math.unit(18, "feet"),
  18446. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18447. name: "Feral",
  18448. image: {
  18449. source: "./media/characters/aronai-sieyes/feral.svg",
  18450. extra: 1530 / 1240,
  18451. bottom: 0.035
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Micro",
  18458. height: math.unit(2, "inches")
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(6 + 1 / 12, "feet"),
  18463. default: true
  18464. }
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(12, "feet"),
  18472. weight: math.unit(410, "kg"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/xuna/front.svg",
  18476. extra: 2184 / 1980
  18477. }
  18478. },
  18479. side: {
  18480. height: math.unit(12, "feet"),
  18481. weight: math.unit(410, "kg"),
  18482. name: "Side",
  18483. image: {
  18484. source: "./media/characters/xuna/side.svg",
  18485. extra: 2184 / 1980
  18486. }
  18487. },
  18488. back: {
  18489. height: math.unit(12, "feet"),
  18490. weight: math.unit(410, "kg"),
  18491. name: "Back",
  18492. image: {
  18493. source: "./media/characters/xuna/back.svg",
  18494. extra: 2184 / 1980
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Nano glow",
  18501. height: math.unit(10, "nm")
  18502. },
  18503. {
  18504. name: "Micro floof",
  18505. height: math.unit(0.3, "m")
  18506. },
  18507. {
  18508. name: "Huggable softy boi",
  18509. height: math.unit(3.6576, "m"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Admirable floof",
  18514. height: math.unit(80, "meters")
  18515. },
  18516. {
  18517. name: "Gentle macro",
  18518. height: math.unit(300, "meters")
  18519. },
  18520. {
  18521. name: "Very careful floof",
  18522. height: math.unit(3200, "meters")
  18523. },
  18524. {
  18525. name: "The mega floof",
  18526. height: math.unit(36000, "meters")
  18527. },
  18528. {
  18529. name: "Giga-fur-Wicker",
  18530. height: math.unit(4800000, "meters")
  18531. },
  18532. {
  18533. name: "Licky world",
  18534. height: math.unit(20000000, "meters")
  18535. },
  18536. {
  18537. name: "Floofy cyan sun",
  18538. height: math.unit(1500000000, "meters")
  18539. },
  18540. {
  18541. name: "Milky Wicker",
  18542. height: math.unit(1000000000000000000000, "meters")
  18543. },
  18544. {
  18545. name: "The observing Wicker",
  18546. height: math.unit(999999999999999999999999999, "meters")
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18552. {
  18553. front: {
  18554. height: math.unit(5 + 9 / 12, "feet"),
  18555. weight: math.unit(150, "lb"),
  18556. name: "Front",
  18557. image: {
  18558. source: "./media/characters/arokha-sieyes/front.svg",
  18559. extra: 1425 / 1284,
  18560. bottom: 0.05
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(5 + 9 / 12, "feet")
  18568. },
  18569. {
  18570. name: "Macro",
  18571. height: math.unit(30, "meters"),
  18572. default: true
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18578. {
  18579. front: {
  18580. height: math.unit(6, "feet"),
  18581. weight: math.unit(180, "lb"),
  18582. name: "Front",
  18583. image: {
  18584. source: "./media/characters/arokh-sieyes/front.svg",
  18585. extra: 1830 / 1769,
  18586. bottom: 0.01
  18587. }
  18588. },
  18589. },
  18590. [
  18591. {
  18592. name: "Normal",
  18593. height: math.unit(6, "feet")
  18594. },
  18595. {
  18596. name: "Macro",
  18597. height: math.unit(30, "meters"),
  18598. default: true
  18599. },
  18600. ]
  18601. ))
  18602. characterMakers.push(() => makeCharacter(
  18603. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18604. {
  18605. side: {
  18606. height: math.unit(13 + 1 / 12, "feet"),
  18607. weight: math.unit(8.5, "tonnes"),
  18608. name: "Side",
  18609. image: {
  18610. source: "./media/characters/goldeneye/side.svg",
  18611. extra: 1182 / 778,
  18612. bottom: 0.067
  18613. }
  18614. },
  18615. paw: {
  18616. height: math.unit(3.4, "feet"),
  18617. name: "Paw",
  18618. image: {
  18619. source: "./media/characters/goldeneye/paw.svg"
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(13 + 1 / 12, "feet"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18633. {
  18634. front: {
  18635. height: math.unit(6 + 1 / 12, "feet"),
  18636. weight: math.unit(210, "lb"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/leonardo-lycheborne/front.svg",
  18640. extra: 390 / 365,
  18641. bottom: 0.032
  18642. }
  18643. },
  18644. side: {
  18645. height: math.unit(6 + 1 / 12, "feet"),
  18646. weight: math.unit(210, "lb"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/leonardo-lycheborne/side.svg",
  18650. extra: 390 / 365,
  18651. bottom: 0.005
  18652. }
  18653. },
  18654. back: {
  18655. height: math.unit(6 + 1 / 12, "feet"),
  18656. weight: math.unit(210, "lb"),
  18657. name: "Back",
  18658. image: {
  18659. source: "./media/characters/leonardo-lycheborne/back.svg",
  18660. extra: 392 / 366,
  18661. bottom: 0.01
  18662. }
  18663. },
  18664. hand: {
  18665. height: math.unit(1.08, "feet"),
  18666. name: "Hand",
  18667. image: {
  18668. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18669. }
  18670. },
  18671. foot: {
  18672. height: math.unit(1.32, "feet"),
  18673. name: "Foot",
  18674. image: {
  18675. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18676. }
  18677. },
  18678. were: {
  18679. height: math.unit(20, "feet"),
  18680. weight: math.unit(7800, "lb"),
  18681. name: "Were",
  18682. image: {
  18683. source: "./media/characters/leonardo-lycheborne/were.svg",
  18684. extra: 308 / 294,
  18685. bottom: 0.048
  18686. }
  18687. },
  18688. feral: {
  18689. height: math.unit(7.5, "feet"),
  18690. weight: math.unit(600, "lb"),
  18691. name: "Feral",
  18692. image: {
  18693. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18694. extra: 210 / 186,
  18695. bottom: 0.108
  18696. }
  18697. },
  18698. taur: {
  18699. height: math.unit(11, "feet"),
  18700. weight: math.unit(3300, "lb"),
  18701. name: "Taur",
  18702. image: {
  18703. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18704. extra: 320 / 303,
  18705. bottom: 0.025
  18706. }
  18707. },
  18708. barghest: {
  18709. height: math.unit(11, "feet"),
  18710. weight: math.unit(1300, "lb"),
  18711. name: "Barghest",
  18712. image: {
  18713. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18714. extra: 323 / 302,
  18715. bottom: 0.027
  18716. }
  18717. },
  18718. dick: {
  18719. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18720. name: "Dick",
  18721. image: {
  18722. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18723. }
  18724. },
  18725. dickWere: {
  18726. height: math.unit((20) / 3.8, "feet"),
  18727. name: "Dick (Were)",
  18728. image: {
  18729. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(6 + 1 / 12, "feet"),
  18737. default: true
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(10, "feet"),
  18746. weight: math.unit(350, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/jet/front.svg",
  18750. extra: 2050 / 1980,
  18751. bottom: 0.013
  18752. }
  18753. },
  18754. back: {
  18755. height: math.unit(10, "feet"),
  18756. weight: math.unit(350, "lb"),
  18757. name: "Back",
  18758. image: {
  18759. source: "./media/characters/jet/back.svg",
  18760. extra: 2050 / 1980,
  18761. bottom: 0.013
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Micro",
  18768. height: math.unit(6, "inches")
  18769. },
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(10, "feet"),
  18773. default: true
  18774. },
  18775. {
  18776. name: "Macro",
  18777. height: math.unit(100, "feet")
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(15, "feet"),
  18786. weight: math.unit(2800, "lb"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/tanarath/front.svg",
  18790. extra: 2392 / 2220,
  18791. bottom: 0.03
  18792. }
  18793. },
  18794. back: {
  18795. height: math.unit(15, "feet"),
  18796. weight: math.unit(2800, "lb"),
  18797. name: "Back",
  18798. image: {
  18799. source: "./media/characters/tanarath/back.svg",
  18800. extra: 2392 / 2220,
  18801. bottom: 0.03
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(15, "feet"),
  18809. default: true
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(7 + 1 / 12, "feet"),
  18818. weight: math.unit(175, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/patty-cattybatty/front.svg",
  18822. extra: 908 / 874,
  18823. bottom: 0.025
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Micro",
  18830. height: math.unit(1, "inch")
  18831. },
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(7 + 1 / 12, "feet")
  18835. },
  18836. {
  18837. name: "Mini Macro",
  18838. height: math.unit(155, "feet")
  18839. },
  18840. {
  18841. name: "Macro",
  18842. height: math.unit(1077, "feet")
  18843. },
  18844. {
  18845. name: "Mega Macro",
  18846. height: math.unit(47650, "feet"),
  18847. default: true
  18848. },
  18849. {
  18850. name: "Giga Macro",
  18851. height: math.unit(440, "miles")
  18852. },
  18853. {
  18854. name: "Tera Macro",
  18855. height: math.unit(8700, "miles")
  18856. },
  18857. {
  18858. name: "Planetary Macro",
  18859. height: math.unit(32700, "miles")
  18860. },
  18861. {
  18862. name: "Solar Macro",
  18863. height: math.unit(550000, "miles")
  18864. },
  18865. {
  18866. name: "Celestial Macro",
  18867. height: math.unit(2.5, "AU")
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(4 + 5 / 12, "feet"),
  18876. weight: math.unit(90, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/cappu/front.svg",
  18880. extra: 1247 / 1152,
  18881. bottom: 0.012
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(4 + 5 / 12, "feet"),
  18889. default: true
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18895. {
  18896. frontDressed: {
  18897. height: math.unit(70, "cm"),
  18898. weight: math.unit(6, "kg"),
  18899. name: "Front (Dressed)",
  18900. image: {
  18901. source: "./media/characters/sebi/front-dressed.svg",
  18902. extra: 713.5 / 686.5,
  18903. bottom: 0.003
  18904. }
  18905. },
  18906. front: {
  18907. height: math.unit(70, "cm"),
  18908. weight: math.unit(5, "kg"),
  18909. name: "Front",
  18910. image: {
  18911. source: "./media/characters/sebi/front.svg",
  18912. extra: 713.5 / 686.5,
  18913. bottom: 0.003
  18914. }
  18915. }
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(70, "cm"),
  18921. default: true
  18922. },
  18923. {
  18924. name: "Macro",
  18925. height: math.unit(8, "meters")
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18931. {
  18932. front: {
  18933. height: math.unit(6, "feet"),
  18934. weight: math.unit(150, "lb"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/typhek/front.svg",
  18938. extra: 1948 / 1929,
  18939. bottom: 0.025
  18940. }
  18941. },
  18942. side: {
  18943. height: math.unit(6, "feet"),
  18944. weight: math.unit(150, "lb"),
  18945. name: "Side",
  18946. image: {
  18947. source: "./media/characters/typhek/side.svg",
  18948. extra: 2034 / 2010,
  18949. bottom: 0.003
  18950. }
  18951. },
  18952. back: {
  18953. height: math.unit(6, "feet"),
  18954. weight: math.unit(150, "lb"),
  18955. name: "Back",
  18956. image: {
  18957. source: "./media/characters/typhek/back.svg",
  18958. extra: 2005 / 1978,
  18959. bottom: 0.004
  18960. }
  18961. },
  18962. palm: {
  18963. height: math.unit(1.2, "feet"),
  18964. name: "Palm",
  18965. image: {
  18966. source: "./media/characters/typhek/palm.svg"
  18967. }
  18968. },
  18969. fist: {
  18970. height: math.unit(1.1, "feet"),
  18971. name: "Fist",
  18972. image: {
  18973. source: "./media/characters/typhek/fist.svg"
  18974. }
  18975. },
  18976. foot: {
  18977. height: math.unit(1.57, "feet"),
  18978. name: "Foot",
  18979. image: {
  18980. source: "./media/characters/typhek/foot.svg"
  18981. }
  18982. },
  18983. sole: {
  18984. height: math.unit(2.05, "feet"),
  18985. name: "Sole",
  18986. image: {
  18987. source: "./media/characters/typhek/sole.svg"
  18988. }
  18989. },
  18990. },
  18991. [
  18992. {
  18993. name: "Macro",
  18994. height: math.unit(40, "stories"),
  18995. default: true
  18996. },
  18997. {
  18998. name: "Megamacro",
  18999. height: math.unit(1, "mile")
  19000. },
  19001. {
  19002. name: "Gigamacro",
  19003. height: math.unit(4000, "solarradii")
  19004. },
  19005. {
  19006. name: "Universal",
  19007. height: math.unit(1.1, "universes")
  19008. }
  19009. ]
  19010. ))
  19011. characterMakers.push(() => makeCharacter(
  19012. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19013. {
  19014. side: {
  19015. height: math.unit(5 + 7 / 12, "feet"),
  19016. weight: math.unit(150, "lb"),
  19017. name: "Side",
  19018. image: {
  19019. source: "./media/characters/kassy/side.svg",
  19020. extra: 1280 / 1225,
  19021. bottom: 0.002
  19022. }
  19023. },
  19024. front: {
  19025. height: math.unit(5 + 7 / 12, "feet"),
  19026. weight: math.unit(150, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/kassy/front.svg",
  19030. extra: 1280 / 1225,
  19031. bottom: 0.025
  19032. }
  19033. },
  19034. back: {
  19035. height: math.unit(5 + 7 / 12, "feet"),
  19036. weight: math.unit(150, "lb"),
  19037. name: "Back",
  19038. image: {
  19039. source: "./media/characters/kassy/back.svg",
  19040. extra: 1280 / 1225,
  19041. bottom: 0.002
  19042. }
  19043. },
  19044. foot: {
  19045. height: math.unit(1.266, "feet"),
  19046. name: "Foot",
  19047. image: {
  19048. source: "./media/characters/kassy/foot.svg"
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(5 + 7 / 12, "feet")
  19056. },
  19057. {
  19058. name: "Macro",
  19059. height: math.unit(137, "feet"),
  19060. default: true
  19061. },
  19062. {
  19063. name: "Megamacro",
  19064. height: math.unit(1, "mile")
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19070. {
  19071. front: {
  19072. height: math.unit(6 + 1 / 12, "feet"),
  19073. weight: math.unit(200, "lb"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/neil/front.svg",
  19077. extra: 1326 / 1250,
  19078. bottom: 0.023
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(6 + 1 / 12, "feet"),
  19086. default: true
  19087. },
  19088. {
  19089. name: "Macro",
  19090. height: math.unit(200, "feet")
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(5 + 9 / 12, "feet"),
  19099. weight: math.unit(190, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/atticus/front.svg",
  19103. extra: 2934 / 2785,
  19104. bottom: 0.025
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(5 + 9 / 12, "feet"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Macro",
  19116. height: math.unit(180, "feet")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19122. {
  19123. side: {
  19124. height: math.unit(9, "feet"),
  19125. weight: math.unit(650, "lb"),
  19126. name: "Side",
  19127. image: {
  19128. source: "./media/characters/milo/side.svg",
  19129. extra: 2644 / 2310,
  19130. bottom: 0.032
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(9, "feet"),
  19138. default: true
  19139. },
  19140. {
  19141. name: "Macro",
  19142. height: math.unit(300, "feet")
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19148. {
  19149. side: {
  19150. height: math.unit(8, "meters"),
  19151. weight: math.unit(90000, "kg"),
  19152. name: "Side",
  19153. image: {
  19154. source: "./media/characters/ijzer/side.svg",
  19155. extra: 2756 / 1600,
  19156. bottom: 0.01
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Small",
  19163. height: math.unit(3, "meters")
  19164. },
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(8, "meters"),
  19168. default: true
  19169. },
  19170. {
  19171. name: "Normal+",
  19172. height: math.unit(10, "meters")
  19173. },
  19174. {
  19175. name: "Bigger",
  19176. height: math.unit(24, "meters")
  19177. },
  19178. {
  19179. name: "Huge",
  19180. height: math.unit(80, "meters")
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(6 + 2 / 12, "feet"),
  19189. weight: math.unit(153, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/luca-cervicum/front.svg",
  19193. extra: 370 / 327,
  19194. bottom: 0.015
  19195. }
  19196. },
  19197. back: {
  19198. height: math.unit(6 + 2 / 12, "feet"),
  19199. weight: math.unit(153, "lb"),
  19200. name: "Back",
  19201. image: {
  19202. source: "./media/characters/luca-cervicum/back.svg",
  19203. extra: 367 / 333,
  19204. bottom: 0.005
  19205. }
  19206. },
  19207. frontGear: {
  19208. height: math.unit(6 + 2 / 12, "feet"),
  19209. weight: math.unit(173, "lb"),
  19210. name: "Front (Gear)",
  19211. image: {
  19212. source: "./media/characters/luca-cervicum/front-gear.svg",
  19213. extra: 377 / 333,
  19214. bottom: 0.006
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(6 + 2 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(6 + 1 / 12, "feet"),
  19231. weight: math.unit(304, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/oliver/front.svg",
  19235. extra: 157 / 143,
  19236. bottom: 0.08
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(6 + 1 / 12, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(5 + 7 / 12, "feet"),
  19253. weight: math.unit(140, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/shane/front.svg",
  19257. extra: 304 / 289,
  19258. bottom: 0.005
  19259. }
  19260. },
  19261. },
  19262. [
  19263. {
  19264. name: "Normal",
  19265. height: math.unit(5 + 7 / 12, "feet"),
  19266. default: true
  19267. },
  19268. ]
  19269. ))
  19270. characterMakers.push(() => makeCharacter(
  19271. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19272. {
  19273. front: {
  19274. height: math.unit(5 + 9 / 12, "feet"),
  19275. weight: math.unit(178, "lb"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/shin/front.svg",
  19279. extra: 159 / 151,
  19280. bottom: 0.015
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(5 + 9 / 12, "feet"),
  19288. default: true
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(5 + 10 / 12, "feet"),
  19297. weight: math.unit(168, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/xerxes/front.svg",
  19301. extra: 282 / 260,
  19302. bottom: 0.045
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(5 + 10 / 12, "feet"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(6 + 7 / 12, "feet"),
  19319. weight: math.unit(208, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/chaska/front.svg",
  19323. extra: 332 / 319,
  19324. bottom: 0.015
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(6 + 7 / 12, "feet"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19338. {
  19339. front: {
  19340. height: math.unit(5 + 8 / 12, "feet"),
  19341. weight: math.unit(208, "lb"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/enuk/front.svg",
  19345. extra: 437 / 406,
  19346. bottom: 0.02
  19347. }
  19348. },
  19349. },
  19350. [
  19351. {
  19352. name: "Normal",
  19353. height: math.unit(5 + 8 / 12, "feet"),
  19354. default: true
  19355. },
  19356. ]
  19357. ))
  19358. characterMakers.push(() => makeCharacter(
  19359. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19360. {
  19361. front: {
  19362. height: math.unit(5 + 10 / 12, "feet"),
  19363. weight: math.unit(252, "lb"),
  19364. name: "Front",
  19365. image: {
  19366. source: "./media/characters/bruun/front.svg",
  19367. extra: 197 / 187,
  19368. bottom: 0.012
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Normal",
  19375. height: math.unit(5 + 10 / 12, "feet"),
  19376. default: true
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19382. {
  19383. front: {
  19384. height: math.unit(6 + 10 / 12, "feet"),
  19385. weight: math.unit(255, "lb"),
  19386. name: "Front",
  19387. image: {
  19388. source: "./media/characters/alexeev/front.svg",
  19389. extra: 213 / 200,
  19390. bottom: 0.05
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Normal",
  19397. height: math.unit(6 + 10 / 12, "feet"),
  19398. default: true
  19399. },
  19400. ]
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19404. {
  19405. front: {
  19406. height: math.unit(2 + 8 / 12, "feet"),
  19407. weight: math.unit(22, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/evelyn/front.svg",
  19411. extra: 208 / 180
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(2 + 8 / 12, "feet"),
  19419. default: true
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(5 + 9 / 12, "feet"),
  19428. weight: math.unit(139, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/inca/front.svg",
  19432. extra: 294 / 291,
  19433. bottom: 0.03
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(5 + 9 / 12, "feet"),
  19441. default: true
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(5 + 1 / 12, "feet"),
  19450. weight: math.unit(84, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/magdalene/front.svg",
  19454. extra: 293 / 273
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(5 + 1 / 12, "feet"),
  19462. default: true
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(6 + 3 / 12, "feet"),
  19471. weight: math.unit(185, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/mera/front.svg",
  19475. extra: 291 / 277,
  19476. bottom: 0.03
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(6 + 3 / 12, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19490. {
  19491. front: {
  19492. height: math.unit(6 + 7 / 12, "feet"),
  19493. weight: math.unit(160, "lb"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/ceres/front.svg",
  19497. extra: 1023 / 950,
  19498. bottom: 0.027
  19499. }
  19500. },
  19501. back: {
  19502. height: math.unit(6 + 7 / 12, "feet"),
  19503. weight: math.unit(160, "lb"),
  19504. name: "Back",
  19505. image: {
  19506. source: "./media/characters/ceres/back.svg",
  19507. extra: 1023 / 950
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(6 + 7 / 12, "feet"),
  19515. default: true
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(5 + 10 / 12, "feet"),
  19524. weight: math.unit(150, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/kris/front.svg",
  19528. extra: 885 / 803,
  19529. bottom: 0.03
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(5 + 10 / 12, "feet"),
  19537. default: true
  19538. },
  19539. ]
  19540. ))
  19541. characterMakers.push(() => makeCharacter(
  19542. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19543. {
  19544. front: {
  19545. height: math.unit(7, "feet"),
  19546. weight: math.unit(120, "kg"),
  19547. name: "Front",
  19548. image: {
  19549. source: "./media/characters/taluthus/front.svg",
  19550. extra: 903 / 833,
  19551. bottom: 0.015
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(7, "feet"),
  19559. default: true
  19560. },
  19561. {
  19562. name: "Macro",
  19563. height: math.unit(300, "feet")
  19564. },
  19565. ]
  19566. ))
  19567. characterMakers.push(() => makeCharacter(
  19568. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19569. {
  19570. front: {
  19571. height: math.unit(5 + 9 / 12, "feet"),
  19572. weight: math.unit(145, "lb"),
  19573. name: "Front",
  19574. image: {
  19575. source: "./media/characters/dawn/front.svg",
  19576. extra: 2094 / 2016,
  19577. bottom: 0.025
  19578. }
  19579. },
  19580. back: {
  19581. height: math.unit(5 + 9 / 12, "feet"),
  19582. weight: math.unit(160, "lb"),
  19583. name: "Back",
  19584. image: {
  19585. source: "./media/characters/dawn/back.svg",
  19586. extra: 2112 / 2080,
  19587. bottom: 0.005
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(6 + 7 / 12, "feet"),
  19595. default: true
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19601. {
  19602. anthro: {
  19603. height: math.unit(8 + 3 / 12, "feet"),
  19604. weight: math.unit(450, "lb"),
  19605. name: "Anthro",
  19606. image: {
  19607. source: "./media/characters/arador/anthro.svg",
  19608. extra: 1835 / 1718,
  19609. bottom: 0.025
  19610. }
  19611. },
  19612. feral: {
  19613. height: math.unit(4, "feet"),
  19614. weight: math.unit(200, "lb"),
  19615. name: "Feral",
  19616. image: {
  19617. source: "./media/characters/arador/feral.svg",
  19618. extra: 1683 / 1514,
  19619. bottom: 0.07
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(8 + 3 / 12, "feet")
  19627. },
  19628. {
  19629. name: "Macro",
  19630. height: math.unit(82.5, "feet"),
  19631. default: true
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(5 + 10 / 12, "feet"),
  19640. weight: math.unit(125, "lb"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/dharsi/front.svg",
  19644. extra: 716 / 630,
  19645. bottom: 0.035
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Nano",
  19652. height: math.unit(100, "nm")
  19653. },
  19654. {
  19655. name: "Micro",
  19656. height: math.unit(2, "inches")
  19657. },
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(5 + 10 / 12, "feet"),
  19661. default: true
  19662. },
  19663. {
  19664. name: "Macro",
  19665. height: math.unit(1000, "feet")
  19666. },
  19667. {
  19668. name: "Megamacro",
  19669. height: math.unit(10, "miles")
  19670. },
  19671. {
  19672. name: "Gigamacro",
  19673. height: math.unit(3000, "miles")
  19674. },
  19675. {
  19676. name: "Teramacro",
  19677. height: math.unit(500000, "miles")
  19678. },
  19679. {
  19680. name: "Teramacro+",
  19681. height: math.unit(30, "galaxies")
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19687. {
  19688. front: {
  19689. height: math.unit(6, "feet"),
  19690. weight: math.unit(150, "lb"),
  19691. name: "Front",
  19692. image: {
  19693. source: "./media/characters/deathy/front.svg",
  19694. extra: 1552 / 1463,
  19695. bottom: 0.025
  19696. }
  19697. },
  19698. side: {
  19699. height: math.unit(6, "feet"),
  19700. weight: math.unit(150, "lb"),
  19701. name: "Side",
  19702. image: {
  19703. source: "./media/characters/deathy/side.svg",
  19704. extra: 1604 / 1455,
  19705. bottom: 0.025
  19706. }
  19707. },
  19708. back: {
  19709. height: math.unit(6, "feet"),
  19710. weight: math.unit(150, "lb"),
  19711. name: "Back",
  19712. image: {
  19713. source: "./media/characters/deathy/back.svg",
  19714. extra: 1580 / 1463,
  19715. bottom: 0.005
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Micro",
  19722. height: math.unit(5, "millimeters")
  19723. },
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(6 + 5 / 12, "feet"),
  19727. default: true
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19733. {
  19734. front: {
  19735. height: math.unit(16, "feet"),
  19736. weight: math.unit(4000, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/juniper/front.svg",
  19740. bottom: 0.04
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(16, "feet"),
  19748. default: true
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(6, "feet"),
  19757. weight: math.unit(150, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/hipster/front.svg",
  19761. extra: 1312 / 1209,
  19762. bottom: 0.025
  19763. }
  19764. },
  19765. back: {
  19766. height: math.unit(6, "feet"),
  19767. weight: math.unit(150, "lb"),
  19768. name: "Back",
  19769. image: {
  19770. source: "./media/characters/hipster/back.svg",
  19771. extra: 1281 / 1196,
  19772. bottom: 0.01
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Micro",
  19779. height: math.unit(1, "mm")
  19780. },
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(4, "inches"),
  19784. default: true
  19785. },
  19786. {
  19787. name: "Macro",
  19788. height: math.unit(500, "feet")
  19789. },
  19790. {
  19791. name: "Megamacro",
  19792. height: math.unit(1000, "miles")
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19798. {
  19799. front: {
  19800. height: math.unit(6, "feet"),
  19801. weight: math.unit(150, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/tendirmuldr/front.svg",
  19805. extra: 1878 / 1772,
  19806. bottom: 0.015
  19807. }
  19808. },
  19809. },
  19810. [
  19811. {
  19812. name: "Megamacro",
  19813. height: math.unit(1500, "miles"),
  19814. default: true
  19815. },
  19816. ]
  19817. ))
  19818. characterMakers.push(() => makeCharacter(
  19819. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19820. {
  19821. front: {
  19822. height: math.unit(14, "feet"),
  19823. weight: math.unit(12000, "lb"),
  19824. name: "Front",
  19825. image: {
  19826. source: "./media/characters/mort/front.svg",
  19827. extra: 365 / 318,
  19828. bottom: 0.01
  19829. }
  19830. },
  19831. side: {
  19832. height: math.unit(14, "feet"),
  19833. weight: math.unit(12000, "lb"),
  19834. name: "Side",
  19835. image: {
  19836. source: "./media/characters/mort/side.svg",
  19837. extra: 365 / 318,
  19838. bottom: 0.052
  19839. },
  19840. default: true
  19841. },
  19842. back: {
  19843. height: math.unit(14, "feet"),
  19844. weight: math.unit(12000, "lb"),
  19845. name: "Back",
  19846. image: {
  19847. source: "./media/characters/mort/back.svg",
  19848. extra: 371 / 332,
  19849. bottom: 0.18
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(14, "feet"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19863. {
  19864. front: {
  19865. height: math.unit(8, "feet"),
  19866. weight: math.unit(1, "ton"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/lycoa/front.svg",
  19870. extra: 1875 / 1789,
  19871. bottom: 0.022
  19872. }
  19873. },
  19874. back: {
  19875. height: math.unit(8, "feet"),
  19876. weight: math.unit(1, "ton"),
  19877. name: "Back",
  19878. image: {
  19879. source: "./media/characters/lycoa/back.svg",
  19880. extra: 1835 / 1781,
  19881. bottom: 0.03
  19882. }
  19883. },
  19884. head: {
  19885. height: math.unit(2.1, "feet"),
  19886. name: "Head",
  19887. image: {
  19888. source: "./media/characters/lycoa/head.svg"
  19889. }
  19890. },
  19891. tailmaw: {
  19892. height: math.unit(1.9, "feet"),
  19893. name: "Tailmaw",
  19894. image: {
  19895. source: "./media/characters/lycoa/tailmaw.svg"
  19896. }
  19897. },
  19898. tentacles: {
  19899. height: math.unit(2.1, "feet"),
  19900. name: "Tentacles",
  19901. image: {
  19902. source: "./media/characters/lycoa/tentacles.svg"
  19903. }
  19904. },
  19905. dick: {
  19906. height: math.unit(1.73, "feet"),
  19907. name: "Dick",
  19908. image: {
  19909. source: "./media/characters/lycoa/dick.svg"
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(8, "feet"),
  19917. default: true
  19918. },
  19919. {
  19920. name: "Macro",
  19921. height: math.unit(30, "feet")
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19927. {
  19928. front: {
  19929. height: math.unit(4 + 2 / 12, "feet"),
  19930. weight: math.unit(70, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/naldara/front.svg",
  19934. extra: 841 / 720,
  19935. bottom: 0.04
  19936. }
  19937. },
  19938. naga: {
  19939. height: math.unit(23, "feet"),
  19940. weight: math.unit(15000, "kg"),
  19941. name: "Naga",
  19942. image: {
  19943. source: "./media/characters/naldara/naga.svg",
  19944. extra: 3290 / 2959,
  19945. bottom: 124 / 3432
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(4 + 2 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(13 + 7 / 12, "feet"),
  19962. weight: math.unit(1500, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/briar/front.svg",
  19966. extra: 626 / 596,
  19967. bottom: 0.08
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(13 + 7 / 12, "feet"),
  19975. default: true
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19981. {
  19982. side: {
  19983. height: math.unit(10, "feet"),
  19984. weight: math.unit(500, "lb"),
  19985. name: "Side",
  19986. image: {
  19987. source: "./media/characters/vanguard/side.svg",
  19988. extra: 502 / 425,
  19989. bottom: 0.087
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Normal",
  19996. height: math.unit(10, "feet"),
  19997. default: true
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20003. {
  20004. front: {
  20005. height: math.unit(7.5, "feet"),
  20006. weight: math.unit(2, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/artemis/front.svg",
  20010. extra: 1192 / 1075,
  20011. bottom: 0.07
  20012. }
  20013. },
  20014. frontNsfw: {
  20015. height: math.unit(7.5, "feet"),
  20016. weight: math.unit(2, "lb"),
  20017. name: "Front (NSFW)",
  20018. image: {
  20019. source: "./media/characters/artemis/front-nsfw.svg",
  20020. extra: 1192 / 1075,
  20021. bottom: 0.07
  20022. }
  20023. },
  20024. frontNsfwer: {
  20025. height: math.unit(7.5, "feet"),
  20026. weight: math.unit(2, "lb"),
  20027. name: "Front (NSFW-er)",
  20028. image: {
  20029. source: "./media/characters/artemis/front-nsfwer.svg",
  20030. extra: 1192 / 1075,
  20031. bottom: 0.07
  20032. }
  20033. },
  20034. side: {
  20035. height: math.unit(7.5, "feet"),
  20036. weight: math.unit(2, "lb"),
  20037. name: "Side",
  20038. image: {
  20039. source: "./media/characters/artemis/side.svg",
  20040. extra: 1192 / 1075,
  20041. bottom: 0.07
  20042. }
  20043. },
  20044. sideNsfw: {
  20045. height: math.unit(7.5, "feet"),
  20046. weight: math.unit(2, "lb"),
  20047. name: "Side (NSFW)",
  20048. image: {
  20049. source: "./media/characters/artemis/side-nsfw.svg",
  20050. extra: 1192 / 1075,
  20051. bottom: 0.07
  20052. }
  20053. },
  20054. sideNsfwer: {
  20055. height: math.unit(7.5, "feet"),
  20056. weight: math.unit(2, "lb"),
  20057. name: "Side (NSFW-er)",
  20058. image: {
  20059. source: "./media/characters/artemis/side-nsfwer.svg",
  20060. extra: 1192 / 1075,
  20061. bottom: 0.07
  20062. }
  20063. },
  20064. maw: {
  20065. height: math.unit(1.1, "feet"),
  20066. name: "Maw",
  20067. image: {
  20068. source: "./media/characters/artemis/maw.svg"
  20069. }
  20070. },
  20071. stomach: {
  20072. height: math.unit(0.95, "feet"),
  20073. name: "Stomach",
  20074. image: {
  20075. source: "./media/characters/artemis/stomach.svg"
  20076. }
  20077. },
  20078. dickCanine: {
  20079. height: math.unit(1, "feet"),
  20080. name: "Dick (Canine)",
  20081. image: {
  20082. source: "./media/characters/artemis/dick-canine.svg"
  20083. }
  20084. },
  20085. dickEquine: {
  20086. height: math.unit(0.85, "feet"),
  20087. name: "Dick (Equine)",
  20088. image: {
  20089. source: "./media/characters/artemis/dick-equine.svg"
  20090. }
  20091. },
  20092. dickExotic: {
  20093. height: math.unit(0.85, "feet"),
  20094. name: "Dick (Exotic)",
  20095. image: {
  20096. source: "./media/characters/artemis/dick-exotic.svg"
  20097. }
  20098. },
  20099. },
  20100. [
  20101. {
  20102. name: "Normal",
  20103. height: math.unit(7.5, "feet"),
  20104. default: true
  20105. },
  20106. {
  20107. name: "Enlarged",
  20108. height: math.unit(12, "feet")
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20114. {
  20115. front: {
  20116. height: math.unit(5 + 3 / 12, "feet"),
  20117. weight: math.unit(160, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/kira/front.svg",
  20121. extra: 906 / 786,
  20122. bottom: 0.01
  20123. }
  20124. },
  20125. back: {
  20126. height: math.unit(5 + 3 / 12, "feet"),
  20127. weight: math.unit(160, "lb"),
  20128. name: "Back",
  20129. image: {
  20130. source: "./media/characters/kira/back.svg",
  20131. extra: 882 / 757,
  20132. bottom: 0.005
  20133. }
  20134. },
  20135. frontDressed: {
  20136. height: math.unit(5 + 3 / 12, "feet"),
  20137. weight: math.unit(160, "lb"),
  20138. name: "Front (Dressed)",
  20139. image: {
  20140. source: "./media/characters/kira/front-dressed.svg",
  20141. extra: 906 / 786,
  20142. bottom: 0.01
  20143. }
  20144. },
  20145. beans: {
  20146. height: math.unit(0.92, "feet"),
  20147. name: "Beans",
  20148. image: {
  20149. source: "./media/characters/kira/beans.svg"
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(5 + 3 / 12, "feet"),
  20157. default: true
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20163. {
  20164. front: {
  20165. height: math.unit(5 + 4 / 12, "feet"),
  20166. weight: math.unit(145, "lb"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/scramble/front.svg",
  20170. extra: 763 / 727,
  20171. bottom: 0.05
  20172. }
  20173. },
  20174. back: {
  20175. height: math.unit(5 + 4 / 12, "feet"),
  20176. weight: math.unit(145, "lb"),
  20177. name: "Back",
  20178. image: {
  20179. source: "./media/characters/scramble/back.svg",
  20180. extra: 826 / 737,
  20181. bottom: 0.002
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(5 + 4 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20195. {
  20196. side: {
  20197. height: math.unit(6 + 2 / 12, "feet"),
  20198. weight: math.unit(190, "lb"),
  20199. name: "Side",
  20200. image: {
  20201. source: "./media/characters/biscuit/side.svg",
  20202. extra: 858 / 791,
  20203. bottom: 0.044
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(6 + 2 / 12, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(5 + 2 / 12, "feet"),
  20220. weight: math.unit(120, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/poffin/front.svg",
  20224. extra: 786 / 680,
  20225. bottom: 0.005
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(5 + 2 / 12, "feet"),
  20233. default: true
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(6 + 3 / 12, "feet"),
  20242. weight: math.unit(519, "lb"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/dhari/front.svg",
  20246. extra: 1048 / 946,
  20247. bottom: 0.015
  20248. }
  20249. },
  20250. back: {
  20251. height: math.unit(6 + 3 / 12, "feet"),
  20252. weight: math.unit(519, "lb"),
  20253. name: "Back",
  20254. image: {
  20255. source: "./media/characters/dhari/back.svg",
  20256. extra: 1048 / 931,
  20257. bottom: 0.005
  20258. }
  20259. },
  20260. frontDressed: {
  20261. height: math.unit(6 + 3 / 12, "feet"),
  20262. weight: math.unit(519, "lb"),
  20263. name: "Front (Dressed)",
  20264. image: {
  20265. source: "./media/characters/dhari/front-dressed.svg",
  20266. extra: 1713 / 1546,
  20267. bottom: 0.02
  20268. }
  20269. },
  20270. backDressed: {
  20271. height: math.unit(6 + 3 / 12, "feet"),
  20272. weight: math.unit(519, "lb"),
  20273. name: "Back (Dressed)",
  20274. image: {
  20275. source: "./media/characters/dhari/back-dressed.svg",
  20276. extra: 1699 / 1537,
  20277. bottom: 0.01
  20278. }
  20279. },
  20280. maw: {
  20281. height: math.unit(0.95, "feet"),
  20282. name: "Maw",
  20283. image: {
  20284. source: "./media/characters/dhari/maw.svg"
  20285. }
  20286. },
  20287. wereFront: {
  20288. height: math.unit(12 + 8 / 12, "feet"),
  20289. weight: math.unit(4000, "lb"),
  20290. name: "Front (Were)",
  20291. image: {
  20292. source: "./media/characters/dhari/were-front.svg",
  20293. extra: 1065 / 969,
  20294. bottom: 0.015
  20295. }
  20296. },
  20297. wereBack: {
  20298. height: math.unit(12 + 8 / 12, "feet"),
  20299. weight: math.unit(4000, "lb"),
  20300. name: "Back (Were)",
  20301. image: {
  20302. source: "./media/characters/dhari/were-back.svg",
  20303. extra: 1065 / 969,
  20304. bottom: 0.012
  20305. }
  20306. },
  20307. wereMaw: {
  20308. height: math.unit(0.625, "meters"),
  20309. name: "Maw (Were)",
  20310. image: {
  20311. source: "./media/characters/dhari/were-maw.svg"
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(6 + 3 / 12, "feet"),
  20319. default: true
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20325. {
  20326. anthro: {
  20327. height: math.unit(5 + 7 / 12, "feet"),
  20328. weight: math.unit(175, "lb"),
  20329. name: "Anthro",
  20330. image: {
  20331. source: "./media/characters/rena-dyne/anthro.svg",
  20332. extra: 1849 / 1785,
  20333. bottom: 0.005
  20334. }
  20335. },
  20336. taur: {
  20337. height: math.unit(15 + 6 / 12, "feet"),
  20338. weight: math.unit(8000, "lb"),
  20339. name: "Taur",
  20340. image: {
  20341. source: "./media/characters/rena-dyne/taur.svg",
  20342. extra: 2315 / 2234,
  20343. bottom: 0.033
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(5 + 7 / 12, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(8, "feet"),
  20360. weight: math.unit(600, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/weremeep/front.svg",
  20364. extra: 967 / 862,
  20365. bottom: 0.01
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(8, "feet"),
  20373. default: true
  20374. },
  20375. {
  20376. name: "Lorg",
  20377. height: math.unit(12, "feet")
  20378. },
  20379. {
  20380. name: "Oh Lawd She Comin'",
  20381. height: math.unit(20, "feet")
  20382. },
  20383. ]
  20384. ))
  20385. characterMakers.push(() => makeCharacter(
  20386. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20387. {
  20388. front: {
  20389. height: math.unit(4, "feet"),
  20390. weight: math.unit(90, "lb"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/reza/front.svg",
  20394. extra: 1183 / 1111,
  20395. bottom: 0.017
  20396. }
  20397. },
  20398. back: {
  20399. height: math.unit(4, "feet"),
  20400. weight: math.unit(90, "lb"),
  20401. name: "Back",
  20402. image: {
  20403. source: "./media/characters/reza/back.svg",
  20404. extra: 1183 / 1111,
  20405. bottom: 0.01
  20406. }
  20407. },
  20408. drake: {
  20409. height: math.unit(30, "feet"),
  20410. weight: math.unit(246960, "lb"),
  20411. name: "Drake",
  20412. image: {
  20413. source: "./media/characters/reza/drake.svg",
  20414. extra: 2350 / 2024,
  20415. bottom: 60.7 / 2403
  20416. }
  20417. },
  20418. },
  20419. [
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(4, "feet"),
  20423. default: true
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20429. {
  20430. side: {
  20431. height: math.unit(15, "feet"),
  20432. weight: math.unit(14, "tons"),
  20433. name: "Side",
  20434. image: {
  20435. source: "./media/characters/athea/side.svg",
  20436. extra: 960 / 540,
  20437. bottom: 0.003
  20438. }
  20439. },
  20440. sitting: {
  20441. height: math.unit(6 * 2.85, "feet"),
  20442. weight: math.unit(14, "tons"),
  20443. name: "Sitting",
  20444. image: {
  20445. source: "./media/characters/athea/sitting.svg",
  20446. extra: 621 / 581,
  20447. bottom: 0.075
  20448. }
  20449. },
  20450. maw: {
  20451. height: math.unit(7.59498031496063, "feet"),
  20452. name: "Maw",
  20453. image: {
  20454. source: "./media/characters/athea/maw.svg"
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Lap Cat",
  20461. height: math.unit(2.5, "feet")
  20462. },
  20463. {
  20464. name: "Minimacro",
  20465. height: math.unit(15, "feet"),
  20466. default: true
  20467. },
  20468. {
  20469. name: "Macro",
  20470. height: math.unit(120, "feet")
  20471. },
  20472. {
  20473. name: "Macro+",
  20474. height: math.unit(640, "feet")
  20475. },
  20476. {
  20477. name: "Colossus",
  20478. height: math.unit(2.2, "miles")
  20479. },
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20484. {
  20485. front: {
  20486. height: math.unit(8 + 8 / 12, "feet"),
  20487. weight: math.unit(130, "kg"),
  20488. name: "Front",
  20489. image: {
  20490. source: "./media/characters/seroko/front.svg",
  20491. extra: 1385 / 1280,
  20492. bottom: 0.025
  20493. }
  20494. },
  20495. back: {
  20496. height: math.unit(8 + 8 / 12, "feet"),
  20497. weight: math.unit(130, "kg"),
  20498. name: "Back",
  20499. image: {
  20500. source: "./media/characters/seroko/back.svg",
  20501. extra: 1369 / 1238,
  20502. bottom: 0.018
  20503. }
  20504. },
  20505. frontDressed: {
  20506. height: math.unit(8 + 8 / 12, "feet"),
  20507. weight: math.unit(130, "kg"),
  20508. name: "Front (Dressed)",
  20509. image: {
  20510. source: "./media/characters/seroko/front-dressed.svg",
  20511. extra: 1366 / 1275,
  20512. bottom: 0.03
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(8 + 8 / 12, "feet"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20526. {
  20527. front: {
  20528. height: math.unit(5.5, "feet"),
  20529. weight: math.unit(160, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/quatzi/front.svg",
  20533. extra: 2346 / 2242,
  20534. bottom: 0.015
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Normal",
  20541. height: math.unit(5.5, "feet"),
  20542. default: true
  20543. },
  20544. {
  20545. name: "Big",
  20546. height: math.unit(7.7, "feet")
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(5 + 11 / 12, "feet"),
  20555. weight: math.unit(180, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/sen/front.svg",
  20559. extra: 1321 / 1254,
  20560. bottom: 0.015
  20561. }
  20562. },
  20563. side: {
  20564. height: math.unit(5 + 11 / 12, "feet"),
  20565. weight: math.unit(180, "lb"),
  20566. name: "Side",
  20567. image: {
  20568. source: "./media/characters/sen/side.svg",
  20569. extra: 1321 / 1254,
  20570. bottom: 0.007
  20571. }
  20572. },
  20573. back: {
  20574. height: math.unit(5 + 11 / 12, "feet"),
  20575. weight: math.unit(180, "lb"),
  20576. name: "Back",
  20577. image: {
  20578. source: "./media/characters/sen/back.svg",
  20579. extra: 1321 / 1254
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(5 + 11 / 12, "feet"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(166.6, "cm"),
  20596. weight: math.unit(66.6, "kg"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/fruity/front.svg",
  20600. extra: 1510 / 1386,
  20601. bottom: 0.04
  20602. }
  20603. },
  20604. back: {
  20605. height: math.unit(166.6, "cm"),
  20606. weight: math.unit(66.6, "lb"),
  20607. name: "Back",
  20608. image: {
  20609. source: "./media/characters/fruity/back.svg",
  20610. extra: 1563 / 1435,
  20611. bottom: 0.005
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(166.6, "cm"),
  20619. default: true
  20620. },
  20621. {
  20622. name: "Demonic",
  20623. height: math.unit(166.6, "feet")
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20629. {
  20630. side: {
  20631. height: math.unit(10, "feet"),
  20632. weight: math.unit(500, "lb"),
  20633. name: "Side",
  20634. image: {
  20635. source: "./media/characters/zost/side.svg",
  20636. extra: 966 / 880,
  20637. bottom: 0.075
  20638. }
  20639. },
  20640. mawFront: {
  20641. height: math.unit(1.08, "meters"),
  20642. name: "Maw (Front)",
  20643. image: {
  20644. source: "./media/characters/zost/maw-front.svg"
  20645. }
  20646. },
  20647. mawSide: {
  20648. height: math.unit(2.66, "feet"),
  20649. name: "Maw (Side)",
  20650. image: {
  20651. source: "./media/characters/zost/maw-side.svg"
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(10, "feet"),
  20659. default: true
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(5 + 4 / 12, "feet"),
  20668. weight: math.unit(120, "lb"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/luci/front.svg",
  20672. extra: 1985 / 1884,
  20673. bottom: 0.04
  20674. }
  20675. },
  20676. back: {
  20677. height: math.unit(5 + 4 / 12, "feet"),
  20678. weight: math.unit(120, "lb"),
  20679. name: "Back",
  20680. image: {
  20681. source: "./media/characters/luci/back.svg",
  20682. extra: 1892 / 1791,
  20683. bottom: 0.002
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(5 + 4 / 12, "feet"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(1500, "feet"),
  20700. weight: math.unit(3.8e6, "tons"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/2th/front.svg",
  20704. extra: 3489 / 3350,
  20705. bottom: 0.1
  20706. }
  20707. },
  20708. foot: {
  20709. height: math.unit(461, "feet"),
  20710. name: "Foot",
  20711. image: {
  20712. source: "./media/characters/2th/foot.svg"
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "\"Micro\"",
  20719. height: math.unit(15 + 7 / 12, "feet")
  20720. },
  20721. {
  20722. name: "Normal",
  20723. height: math.unit(1500, "feet"),
  20724. default: true
  20725. },
  20726. {
  20727. name: "Macro",
  20728. height: math.unit(5000, "feet")
  20729. },
  20730. {
  20731. name: "Megamacro",
  20732. height: math.unit(15, "miles")
  20733. },
  20734. {
  20735. name: "Gigamacro",
  20736. height: math.unit(4000, "miles")
  20737. },
  20738. {
  20739. name: "Galactic",
  20740. height: math.unit(50, "AU")
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20746. {
  20747. front: {
  20748. height: math.unit(5 + 6 / 12, "feet"),
  20749. weight: math.unit(220, "lb"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/amethyst/front.svg",
  20753. extra: 2078 / 2040,
  20754. bottom: 0.045
  20755. }
  20756. },
  20757. back: {
  20758. height: math.unit(5 + 6 / 12, "feet"),
  20759. weight: math.unit(220, "lb"),
  20760. name: "Back",
  20761. image: {
  20762. source: "./media/characters/amethyst/back.svg",
  20763. extra: 2021 / 1989,
  20764. bottom: 0.02
  20765. }
  20766. },
  20767. },
  20768. [
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(5 + 6 / 12, "feet"),
  20772. default: true
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(4 + 11 / 12, "feet"),
  20781. weight: math.unit(120, "lb"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/yumi-akiyama/front.svg",
  20785. extra: 1327 / 1235,
  20786. bottom: 0.02
  20787. }
  20788. },
  20789. back: {
  20790. height: math.unit(4 + 11 / 12, "feet"),
  20791. weight: math.unit(120, "lb"),
  20792. name: "Back",
  20793. image: {
  20794. source: "./media/characters/yumi-akiyama/back.svg",
  20795. extra: 1287 / 1245,
  20796. bottom: 0.002
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Galactic",
  20803. height: math.unit(50, "galaxies"),
  20804. default: true
  20805. },
  20806. {
  20807. name: "Universal",
  20808. height: math.unit(100, "universes")
  20809. },
  20810. ]
  20811. ))
  20812. characterMakers.push(() => makeCharacter(
  20813. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20814. {
  20815. front: {
  20816. height: math.unit(8, "feet"),
  20817. weight: math.unit(500, "lb"),
  20818. name: "Front",
  20819. image: {
  20820. source: "./media/characters/rifter-yrmori/front.svg",
  20821. extra: 1180 / 1125,
  20822. bottom: 0.02
  20823. }
  20824. },
  20825. back: {
  20826. height: math.unit(8, "feet"),
  20827. weight: math.unit(500, "lb"),
  20828. name: "Back",
  20829. image: {
  20830. source: "./media/characters/rifter-yrmori/back.svg",
  20831. extra: 1190 / 1145,
  20832. bottom: 0.001
  20833. }
  20834. },
  20835. wings: {
  20836. height: math.unit(7.75, "feet"),
  20837. weight: math.unit(500, "lb"),
  20838. name: "Wings",
  20839. image: {
  20840. source: "./media/characters/rifter-yrmori/wings.svg",
  20841. extra: 1357 / 1285
  20842. }
  20843. },
  20844. maw: {
  20845. height: math.unit(0.8, "feet"),
  20846. name: "Maw",
  20847. image: {
  20848. source: "./media/characters/rifter-yrmori/maw.svg"
  20849. }
  20850. },
  20851. mawfront: {
  20852. height: math.unit(1.45, "feet"),
  20853. name: "Maw (Front)",
  20854. image: {
  20855. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20856. }
  20857. },
  20858. },
  20859. [
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(8, "feet"),
  20863. default: true
  20864. },
  20865. {
  20866. name: "Macro",
  20867. height: math.unit(42, "meters")
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20873. {
  20874. were: {
  20875. height: math.unit(25 + 6 / 12, "feet"),
  20876. weight: math.unit(10000, "lb"),
  20877. name: "Were",
  20878. image: {
  20879. source: "./media/characters/tahajin/were.svg",
  20880. extra: 801 / 770,
  20881. bottom: 0.042
  20882. }
  20883. },
  20884. aquatic: {
  20885. height: math.unit(6 + 4 / 12, "feet"),
  20886. weight: math.unit(160, "lb"),
  20887. name: "Aquatic",
  20888. image: {
  20889. source: "./media/characters/tahajin/aquatic.svg",
  20890. extra: 572 / 542,
  20891. bottom: 0.04
  20892. }
  20893. },
  20894. chow: {
  20895. height: math.unit(8 + 11 / 12, "feet"),
  20896. weight: math.unit(450, "lb"),
  20897. name: "Chow",
  20898. image: {
  20899. source: "./media/characters/tahajin/chow.svg",
  20900. extra: 660 / 640,
  20901. bottom: 0.015
  20902. }
  20903. },
  20904. demiNaga: {
  20905. height: math.unit(6 + 8 / 12, "feet"),
  20906. weight: math.unit(300, "lb"),
  20907. name: "Demi Naga",
  20908. image: {
  20909. source: "./media/characters/tahajin/demi-naga.svg",
  20910. extra: 643 / 615,
  20911. bottom: 0.1
  20912. }
  20913. },
  20914. data: {
  20915. height: math.unit(5, "inches"),
  20916. weight: math.unit(0.1, "lb"),
  20917. name: "Data",
  20918. image: {
  20919. source: "./media/characters/tahajin/data.svg"
  20920. }
  20921. },
  20922. fluu: {
  20923. height: math.unit(5 + 7 / 12, "feet"),
  20924. weight: math.unit(140, "lb"),
  20925. name: "Fluu",
  20926. image: {
  20927. source: "./media/characters/tahajin/fluu.svg",
  20928. extra: 628 / 592,
  20929. bottom: 0.02
  20930. }
  20931. },
  20932. starWarrior: {
  20933. height: math.unit(4 + 5 / 12, "feet"),
  20934. weight: math.unit(50, "lb"),
  20935. name: "Star Warrior",
  20936. image: {
  20937. source: "./media/characters/tahajin/star-warrior.svg"
  20938. }
  20939. },
  20940. },
  20941. [
  20942. {
  20943. name: "Normal",
  20944. height: math.unit(25 + 6 / 12, "feet"),
  20945. default: true
  20946. },
  20947. ]
  20948. ))
  20949. characterMakers.push(() => makeCharacter(
  20950. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20951. {
  20952. front: {
  20953. height: math.unit(8, "feet"),
  20954. weight: math.unit(350, "lb"),
  20955. name: "Front",
  20956. image: {
  20957. source: "./media/characters/gabira/front.svg",
  20958. extra: 608 / 580,
  20959. bottom: 0.03
  20960. }
  20961. },
  20962. back: {
  20963. height: math.unit(8, "feet"),
  20964. weight: math.unit(350, "lb"),
  20965. name: "Back",
  20966. image: {
  20967. source: "./media/characters/gabira/back.svg",
  20968. extra: 608 / 580,
  20969. bottom: 0.03
  20970. }
  20971. },
  20972. },
  20973. [
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(8, "feet"),
  20977. default: true
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20983. {
  20984. front: {
  20985. height: math.unit(5 + 3 / 12, "feet"),
  20986. weight: math.unit(137, "lb"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/sasha-katraine/front.svg",
  20990. bottom: 0.045
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Micro",
  20997. height: math.unit(5, "inches")
  20998. },
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(5 + 3 / 12, "feet"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21008. {
  21009. side: {
  21010. height: math.unit(4, "inches"),
  21011. weight: math.unit(200, "grams"),
  21012. name: "Side",
  21013. image: {
  21014. source: "./media/characters/der/side.svg",
  21015. extra: 719 / 400,
  21016. bottom: 30.6 / 749.9187
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Micro",
  21023. height: math.unit(4, "inches"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21030. {
  21031. side: {
  21032. height: math.unit(30, "meters"),
  21033. weight: math.unit(700, "tonnes"),
  21034. name: "Side",
  21035. image: {
  21036. source: "./media/characters/fixerdragon/side.svg",
  21037. extra: (1293.0514 - 116.03) / 1106.86,
  21038. bottom: 116.03 / 1293.0514
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Planck",
  21045. height: math.unit(1.6e-35, "meters")
  21046. },
  21047. {
  21048. name: "Micro",
  21049. height: math.unit(0.4, "meters")
  21050. },
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(30, "meters"),
  21054. default: true
  21055. },
  21056. {
  21057. name: "Megamacro",
  21058. height: math.unit(1.2, "megameters")
  21059. },
  21060. {
  21061. name: "Teramacro",
  21062. height: math.unit(130, "terameters")
  21063. },
  21064. {
  21065. name: "Yottamacro",
  21066. height: math.unit(6200, "yottameters")
  21067. },
  21068. ]
  21069. ));
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(8, "feet"),
  21075. weight: math.unit(250, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/kite/front.svg",
  21079. extra: 2796 / 2659,
  21080. bottom: 0.002
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(8, "feet"),
  21088. default: true
  21089. },
  21090. {
  21091. name: "Macro",
  21092. height: math.unit(360, "feet")
  21093. },
  21094. {
  21095. name: "Megamacro",
  21096. height: math.unit(1500, "feet")
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(5 + 10 / 12, "feet"),
  21105. weight: math.unit(150, "lb"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/poojawa-vynar/front.svg",
  21109. extra: (1506.1547 - 55) / 1356.6,
  21110. bottom: 55 / 1506.1547
  21111. }
  21112. },
  21113. frontTailless: {
  21114. height: math.unit(5 + 10 / 12, "feet"),
  21115. weight: math.unit(150, "lb"),
  21116. name: "Front (Tailless)",
  21117. image: {
  21118. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21119. extra: (1506.1547 - 55) / 1356.6,
  21120. bottom: 55 / 1506.1547
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(5 + 10 / 12, "feet"),
  21128. default: true
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(293, "meters"),
  21137. weight: math.unit(70400, "tons"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/violette/front.svg",
  21141. extra: 1227 / 1180,
  21142. bottom: 0.005
  21143. }
  21144. },
  21145. back: {
  21146. height: math.unit(293, "meters"),
  21147. weight: math.unit(70400, "tons"),
  21148. name: "Back",
  21149. image: {
  21150. source: "./media/characters/violette/back.svg",
  21151. extra: 1227 / 1180,
  21152. bottom: 0.005
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Macro",
  21159. height: math.unit(293, "meters"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(1050, "feet"),
  21169. weight: math.unit(200000, "tons"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/alessandra/front.svg",
  21173. extra: 960 / 912,
  21174. bottom: 0.06
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Macro",
  21181. height: math.unit(1050, "feet")
  21182. },
  21183. {
  21184. name: "Macro+",
  21185. height: math.unit(900, "meters"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(5, "feet"),
  21195. weight: math.unit(187, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/person/front.svg",
  21199. extra: 3087 / 2945,
  21200. bottom: 91 / 3181
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Micro",
  21207. height: math.unit(3, "inches")
  21208. },
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(5, "feet"),
  21212. default: true
  21213. },
  21214. {
  21215. name: "Macro",
  21216. height: math.unit(90, "feet")
  21217. },
  21218. {
  21219. name: "Max Size",
  21220. height: math.unit(280, "feet")
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(4.5, "meters"),
  21229. weight: math.unit(3200, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/ty/front.svg",
  21233. extra: 1038 / 960,
  21234. bottom: 31.156 / 1068
  21235. }
  21236. },
  21237. back: {
  21238. height: math.unit(4.5, "meters"),
  21239. weight: math.unit(3200, "lb"),
  21240. name: "Back",
  21241. image: {
  21242. source: "./media/characters/ty/back.svg",
  21243. extra: 1044 / 966,
  21244. bottom: 7.48 / 1049
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(4.5, "meters"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(5 + 4 / 12, "feet"),
  21261. weight: math.unit(115, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/rocky/front.svg",
  21265. extra: 1012 / 975,
  21266. bottom: 54 / 1066
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Normal",
  21273. height: math.unit(5 + 4 / 12, "feet"),
  21274. default: true
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21280. {
  21281. upright: {
  21282. height: math.unit(6, "meters"),
  21283. weight: math.unit(4000, "kg"),
  21284. name: "Upright",
  21285. image: {
  21286. source: "./media/characters/ruin/upright.svg",
  21287. extra: 668 / 661,
  21288. bottom: 42 / 799.8396
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(6, "meters"),
  21296. default: true
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21302. {
  21303. front: {
  21304. height: math.unit(5, "feet"),
  21305. weight: math.unit(106, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/robin/front.svg",
  21309. extra: 862 / 799,
  21310. bottom: 42.4 / 914.8856
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(5, "feet"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21324. {
  21325. side: {
  21326. height: math.unit(3, "feet"),
  21327. weight: math.unit(225, "lb"),
  21328. name: "Side",
  21329. image: {
  21330. source: "./media/characters/saian/side.svg",
  21331. extra: 566 / 356,
  21332. bottom: 79.7 / 643
  21333. }
  21334. },
  21335. maw: {
  21336. height: math.unit(2.85, "feet"),
  21337. name: "Maw",
  21338. image: {
  21339. source: "./media/characters/saian/maw.svg"
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(3, "feet"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21353. {
  21354. side: {
  21355. height: math.unit(8, "feet"),
  21356. weight: math.unit(300, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/equus-silvermane/side.svg",
  21360. extra: 2176 / 2050,
  21361. bottom: 65.7 / 2245
  21362. }
  21363. },
  21364. front: {
  21365. height: math.unit(8, "feet"),
  21366. weight: math.unit(300, "lb"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/equus-silvermane/front.svg",
  21370. extra: 4633 / 4400,
  21371. bottom: 71.3 / 4706.915
  21372. }
  21373. },
  21374. sideStepping: {
  21375. height: math.unit(8, "feet"),
  21376. weight: math.unit(300, "lb"),
  21377. name: "Side (Stepping)",
  21378. image: {
  21379. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21380. extra: 1968 / 1860,
  21381. bottom: 16.4 / 1989
  21382. }
  21383. },
  21384. },
  21385. [
  21386. {
  21387. name: "Normal",
  21388. height: math.unit(8, "feet")
  21389. },
  21390. {
  21391. name: "Minimacro",
  21392. height: math.unit(75, "feet"),
  21393. default: true
  21394. },
  21395. {
  21396. name: "Macro",
  21397. height: math.unit(150, "feet")
  21398. },
  21399. {
  21400. name: "Macro+",
  21401. height: math.unit(1000, "feet")
  21402. },
  21403. {
  21404. name: "Megamacro",
  21405. height: math.unit(1, "mile")
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21411. {
  21412. side: {
  21413. height: math.unit(20, "feet"),
  21414. weight: math.unit(30000, "kg"),
  21415. name: "Side",
  21416. image: {
  21417. source: "./media/characters/windar/side.svg",
  21418. extra: 1491 / 1248,
  21419. bottom: 82.56 / 1568
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(20, "feet"),
  21427. default: true
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21433. {
  21434. side: {
  21435. height: math.unit(15.66, "feet"),
  21436. weight: math.unit(150, "lb"),
  21437. name: "Side",
  21438. image: {
  21439. source: "./media/characters/melody/side.svg",
  21440. extra: 1097 / 944,
  21441. bottom: 11.8 / 1109
  21442. }
  21443. },
  21444. sideOutfit: {
  21445. height: math.unit(15.66, "feet"),
  21446. weight: math.unit(150, "lb"),
  21447. name: "Side (Outfit)",
  21448. image: {
  21449. source: "./media/characters/melody/side-outfit.svg",
  21450. extra: 1097 / 944,
  21451. bottom: 11.8 / 1109
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(15.66, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21465. {
  21466. front: {
  21467. height: math.unit(8, "feet"),
  21468. weight: math.unit(325, "lb"),
  21469. name: "Front",
  21470. image: {
  21471. source: "./media/characters/windera/front.svg",
  21472. extra: 3180 / 2845,
  21473. bottom: 178 / 3365
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(8, "feet"),
  21481. default: true
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21487. {
  21488. front: {
  21489. height: math.unit(28.75, "feet"),
  21490. weight: math.unit(2000, "kg"),
  21491. name: "Front",
  21492. image: {
  21493. source: "./media/characters/sonear/front.svg",
  21494. extra: 1041.1 / 964.9,
  21495. bottom: 53.7 / 1096.6
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(28.75, "feet"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21509. {
  21510. side: {
  21511. height: math.unit(25.5, "feet"),
  21512. weight: math.unit(23000, "kg"),
  21513. name: "Side",
  21514. image: {
  21515. source: "./media/characters/kanara/side.svg"
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(25.5, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21529. {
  21530. side: {
  21531. height: math.unit(10, "feet"),
  21532. weight: math.unit(1000, "kg"),
  21533. name: "Side",
  21534. image: {
  21535. source: "./media/characters/ereus/side.svg",
  21536. extra: 1157 / 959,
  21537. bottom: 153 / 1312.5
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(10, "feet"),
  21545. default: true
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21551. {
  21552. side: {
  21553. height: math.unit(4.5, "feet"),
  21554. weight: math.unit(500, "lb"),
  21555. name: "Side",
  21556. image: {
  21557. source: "./media/characters/e-ter/side.svg",
  21558. extra: 1550 / 1248,
  21559. bottom: 146 / 1694
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Normal",
  21566. height: math.unit(4.5, "feet"),
  21567. default: true
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21573. {
  21574. side: {
  21575. height: math.unit(9.7, "feet"),
  21576. weight: math.unit(4000, "kg"),
  21577. name: "Side",
  21578. image: {
  21579. source: "./media/characters/yamie/side.svg"
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(9.7, "feet"),
  21587. default: true
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21593. {
  21594. front: {
  21595. height: math.unit(50, "feet"),
  21596. weight: math.unit(50000, "kg"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/anders/front.svg",
  21600. extra: 570 / 539,
  21601. bottom: 14.7 / 586.7
  21602. }
  21603. },
  21604. },
  21605. [
  21606. {
  21607. name: "Large",
  21608. height: math.unit(50, "feet")
  21609. },
  21610. {
  21611. name: "Macro",
  21612. height: math.unit(2000, "feet"),
  21613. default: true
  21614. },
  21615. {
  21616. name: "Megamacro",
  21617. height: math.unit(12, "miles")
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21623. {
  21624. front: {
  21625. height: math.unit(7 + 2 / 12, "feet"),
  21626. weight: math.unit(300, "lb"),
  21627. name: "Front",
  21628. image: {
  21629. source: "./media/characters/reban/front.svg",
  21630. extra: 516 / 487,
  21631. bottom: 42.82 / 558.356
  21632. }
  21633. },
  21634. dick: {
  21635. height: math.unit(7 / 5, "feet"),
  21636. name: "Dick",
  21637. image: {
  21638. source: "./media/characters/reban/dick.svg"
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Natural Height",
  21645. height: math.unit(7 + 2 / 12, "feet")
  21646. },
  21647. {
  21648. name: "Macro",
  21649. height: math.unit(500, "feet"),
  21650. default: true
  21651. },
  21652. {
  21653. name: "Canon Height",
  21654. height: math.unit(50, "AU")
  21655. },
  21656. ]
  21657. ))
  21658. characterMakers.push(() => makeCharacter(
  21659. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21660. {
  21661. front: {
  21662. height: math.unit(6, "feet"),
  21663. weight: math.unit(150, "lb"),
  21664. name: "Front",
  21665. image: {
  21666. source: "./media/characters/terrance-keayes/front.svg",
  21667. extra: 1.005,
  21668. bottom: 151 / 1615
  21669. }
  21670. },
  21671. side: {
  21672. height: math.unit(6, "feet"),
  21673. weight: math.unit(150, "lb"),
  21674. name: "Side",
  21675. image: {
  21676. source: "./media/characters/terrance-keayes/side.svg",
  21677. extra: 1.005,
  21678. bottom: 129.4 / 1544
  21679. }
  21680. },
  21681. back: {
  21682. height: math.unit(6, "feet"),
  21683. weight: math.unit(150, "lb"),
  21684. name: "Back",
  21685. image: {
  21686. source: "./media/characters/terrance-keayes/back.svg",
  21687. extra: 1.005,
  21688. bottom: 58.4 / 1557.3
  21689. }
  21690. },
  21691. dick: {
  21692. height: math.unit(6 * 0.208, "feet"),
  21693. name: "Dick",
  21694. image: {
  21695. source: "./media/characters/terrance-keayes/dick.svg"
  21696. }
  21697. },
  21698. },
  21699. [
  21700. {
  21701. name: "Canon Height",
  21702. height: math.unit(35, "miles"),
  21703. default: true
  21704. },
  21705. ]
  21706. ))
  21707. characterMakers.push(() => makeCharacter(
  21708. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21709. {
  21710. front: {
  21711. height: math.unit(6, "feet"),
  21712. weight: math.unit(150, "lb"),
  21713. name: "Front",
  21714. image: {
  21715. source: "./media/characters/ofelia/front.svg",
  21716. extra: 546 / 541,
  21717. bottom: 39 / 583
  21718. }
  21719. },
  21720. back: {
  21721. height: math.unit(6, "feet"),
  21722. weight: math.unit(150, "lb"),
  21723. name: "Back",
  21724. image: {
  21725. source: "./media/characters/ofelia/back.svg",
  21726. extra: 564 / 559.5,
  21727. bottom: 8.69 / 573.02
  21728. }
  21729. },
  21730. maw: {
  21731. height: math.unit(1, "feet"),
  21732. name: "Maw",
  21733. image: {
  21734. source: "./media/characters/ofelia/maw.svg"
  21735. }
  21736. },
  21737. foot: {
  21738. height: math.unit(1.949, "feet"),
  21739. name: "Foot",
  21740. image: {
  21741. source: "./media/characters/ofelia/foot.svg"
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Canon Height",
  21748. height: math.unit(2000, "miles"),
  21749. default: true
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21755. {
  21756. front: {
  21757. height: math.unit(6, "feet"),
  21758. weight: math.unit(150, "lb"),
  21759. name: "Front",
  21760. image: {
  21761. source: "./media/characters/samuel/front.svg",
  21762. extra: 265 / 258,
  21763. bottom: 2 / 266.1566
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Macro",
  21770. height: math.unit(100, "feet"),
  21771. default: true
  21772. },
  21773. {
  21774. name: "Full Size",
  21775. height: math.unit(1000, "miles")
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(6, "feet"),
  21784. weight: math.unit(300, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/beishir-kiel/front.svg",
  21788. extra: 569 / 547,
  21789. bottom: 41.9 / 609
  21790. }
  21791. },
  21792. maw: {
  21793. height: math.unit(6 * 0.202, "feet"),
  21794. name: "Maw",
  21795. image: {
  21796. source: "./media/characters/beishir-kiel/maw.svg"
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Macro",
  21803. height: math.unit(300, "feet"),
  21804. default: true
  21805. },
  21806. ]
  21807. ))
  21808. characterMakers.push(() => makeCharacter(
  21809. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21810. {
  21811. front: {
  21812. height: math.unit(5 + 8 / 12, "feet"),
  21813. weight: math.unit(120, "lb"),
  21814. name: "Front",
  21815. image: {
  21816. source: "./media/characters/logan-grey/front.svg",
  21817. extra: 2539 / 2393,
  21818. bottom: 97.6 / 2636.37
  21819. }
  21820. },
  21821. frontAlt: {
  21822. height: math.unit(5 + 8 / 12, "feet"),
  21823. weight: math.unit(120, "lb"),
  21824. name: "Front (Alt)",
  21825. image: {
  21826. source: "./media/characters/logan-grey/front-alt.svg",
  21827. extra: 958 / 893,
  21828. bottom: 15 / 970.768
  21829. }
  21830. },
  21831. back: {
  21832. height: math.unit(5 + 8 / 12, "feet"),
  21833. weight: math.unit(120, "lb"),
  21834. name: "Back",
  21835. image: {
  21836. source: "./media/characters/logan-grey/back.svg",
  21837. extra: 958 / 893,
  21838. bottom: 2.1881 / 970.9788
  21839. }
  21840. },
  21841. dick: {
  21842. height: math.unit(1.437, "feet"),
  21843. name: "Dick",
  21844. image: {
  21845. source: "./media/characters/logan-grey/dick.svg"
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(5 + 8 / 12, "feet")
  21853. },
  21854. {
  21855. name: "The 500 Foot Femboy",
  21856. height: math.unit(500, "feet"),
  21857. default: true
  21858. },
  21859. {
  21860. name: "Megmacro",
  21861. height: math.unit(20, "miles")
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21867. {
  21868. front: {
  21869. height: math.unit(8 + 2 / 12, "feet"),
  21870. weight: math.unit(275, "lb"),
  21871. name: "Front",
  21872. image: {
  21873. source: "./media/characters/draganta/front.svg",
  21874. extra: 1177 / 1135,
  21875. bottom: 33.46 / 1212.1
  21876. }
  21877. },
  21878. },
  21879. [
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(8 + 6 / 12, "feet"),
  21883. default: true
  21884. },
  21885. {
  21886. name: "Macro",
  21887. height: math.unit(150, "feet")
  21888. },
  21889. {
  21890. name: "Megamacro",
  21891. height: math.unit(1000, "miles")
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(1.72, "m"),
  21900. weight: math.unit(80, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/voski/front.svg",
  21904. extra: 2076.22 / 2022.4,
  21905. bottom: 102.7 / 2177.3866
  21906. }
  21907. },
  21908. frontNsfw: {
  21909. height: math.unit(1.72, "m"),
  21910. weight: math.unit(80, "lb"),
  21911. name: "Front (NSFW)",
  21912. image: {
  21913. source: "./media/characters/voski/front-nsfw.svg",
  21914. extra: 2076.22 / 2022.4,
  21915. bottom: 102.7 / 2177.3866
  21916. }
  21917. },
  21918. back: {
  21919. height: math.unit(1.72, "m"),
  21920. weight: math.unit(80, "lb"),
  21921. name: "Back",
  21922. image: {
  21923. source: "./media/characters/voski/back.svg",
  21924. extra: 2104 / 2051,
  21925. bottom: 10.45 / 2113.63
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(1.72, "m")
  21933. },
  21934. {
  21935. name: "Macro",
  21936. height: math.unit(55, "m"),
  21937. default: true
  21938. },
  21939. {
  21940. name: "Macro+",
  21941. height: math.unit(300, "m")
  21942. },
  21943. {
  21944. name: "Macro++",
  21945. height: math.unit(700, "m")
  21946. },
  21947. {
  21948. name: "Macro+++",
  21949. height: math.unit(4500, "m")
  21950. },
  21951. {
  21952. name: "Macro++++",
  21953. height: math.unit(45, "km")
  21954. },
  21955. {
  21956. name: "Macro+++++",
  21957. height: math.unit(1220, "km")
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21963. {
  21964. front: {
  21965. height: math.unit(2.3, "m"),
  21966. weight: math.unit(304, "kg"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/icowom-lee/front.svg",
  21970. extra: 985 / 955,
  21971. bottom: 25.4 / 1012
  21972. }
  21973. },
  21974. fronttentacles: {
  21975. height: math.unit(2.3, "m"),
  21976. weight: math.unit(304, "kg"),
  21977. name: "Front-tentacles",
  21978. image: {
  21979. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21980. extra: 985 / 955,
  21981. bottom: 25.4 / 1012
  21982. }
  21983. },
  21984. back: {
  21985. height: math.unit(2.3, "m"),
  21986. weight: math.unit(304, "kg"),
  21987. name: "Back",
  21988. image: {
  21989. source: "./media/characters/icowom-lee/back.svg",
  21990. extra: 975 / 954,
  21991. bottom: 9.5 / 985
  21992. }
  21993. },
  21994. backtentacles: {
  21995. height: math.unit(2.3, "m"),
  21996. weight: math.unit(304, "kg"),
  21997. name: "Back-tentacles",
  21998. image: {
  21999. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22000. extra: 975 / 954,
  22001. bottom: 9.5 / 985
  22002. }
  22003. },
  22004. frontDressed: {
  22005. height: math.unit(2.3, "m"),
  22006. weight: math.unit(304, "kg"),
  22007. name: "Front (Dressed)",
  22008. image: {
  22009. source: "./media/characters/icowom-lee/front-dressed.svg",
  22010. extra: 3076 / 2933,
  22011. bottom: 51.4 / 3125.1889
  22012. }
  22013. },
  22014. rump: {
  22015. height: math.unit(0.776, "meters"),
  22016. name: "Rump",
  22017. image: {
  22018. source: "./media/characters/icowom-lee/rump.svg"
  22019. }
  22020. },
  22021. genitals: {
  22022. height: math.unit(0.78, "meters"),
  22023. name: "Genitals",
  22024. image: {
  22025. source: "./media/characters/icowom-lee/genitals.svg"
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(2.3, "meters"),
  22033. default: true
  22034. },
  22035. {
  22036. name: "Macro",
  22037. height: math.unit(94, "meters"),
  22038. default: true
  22039. },
  22040. ]
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22044. {
  22045. front: {
  22046. height: math.unit(22, "meters"),
  22047. weight: math.unit(21000, "kg"),
  22048. name: "Front",
  22049. image: {
  22050. source: "./media/characters/shock-diamond/front.svg",
  22051. extra: 2204 / 2053,
  22052. bottom: 65 / 2239.47
  22053. }
  22054. },
  22055. frontNude: {
  22056. height: math.unit(22, "meters"),
  22057. weight: math.unit(21000, "kg"),
  22058. name: "Front (Nude)",
  22059. image: {
  22060. source: "./media/characters/shock-diamond/front-nude.svg",
  22061. extra: 2514 / 2285,
  22062. bottom: 13 / 2527.56
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(3, "meters")
  22070. },
  22071. {
  22072. name: "Macro",
  22073. height: math.unit(22, "meters"),
  22074. default: true
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22080. {
  22081. front: {
  22082. height: math.unit(5 + 4 / 12, "feet"),
  22083. weight: math.unit(120, "lb"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/rory/front.svg",
  22087. extra: 589 / 556,
  22088. bottom: 45.7 / 635.76
  22089. }
  22090. },
  22091. frontNude: {
  22092. height: math.unit(5 + 4 / 12, "feet"),
  22093. weight: math.unit(120, "lb"),
  22094. name: "Front (Nude)",
  22095. image: {
  22096. source: "./media/characters/rory/front-nude.svg",
  22097. extra: 589 / 556,
  22098. bottom: 45.7 / 635.76
  22099. }
  22100. },
  22101. side: {
  22102. height: math.unit(5 + 4 / 12, "feet"),
  22103. weight: math.unit(120, "lb"),
  22104. name: "Side",
  22105. image: {
  22106. source: "./media/characters/rory/side.svg",
  22107. extra: 597 / 564,
  22108. bottom: 55 / 653
  22109. }
  22110. },
  22111. back: {
  22112. height: math.unit(5 + 4 / 12, "feet"),
  22113. weight: math.unit(120, "lb"),
  22114. name: "Back",
  22115. image: {
  22116. source: "./media/characters/rory/back.svg",
  22117. extra: 620 / 585,
  22118. bottom: 8.86 / 630.43
  22119. }
  22120. },
  22121. dick: {
  22122. height: math.unit(0.86, "feet"),
  22123. name: "Dick",
  22124. image: {
  22125. source: "./media/characters/rory/dick.svg"
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(5 + 4 / 12, "feet"),
  22133. default: true
  22134. },
  22135. {
  22136. name: "Macro",
  22137. height: math.unit(100, "feet")
  22138. },
  22139. {
  22140. name: "Macro+",
  22141. height: math.unit(140, "feet")
  22142. },
  22143. {
  22144. name: "Macro++",
  22145. height: math.unit(300, "feet")
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(5 + 9 / 12, "feet"),
  22154. weight: math.unit(190, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/sprisk/front.svg",
  22158. extra: 1225 / 1180,
  22159. bottom: 42.7 / 1266.4
  22160. }
  22161. },
  22162. frontNsfw: {
  22163. height: math.unit(5 + 9 / 12, "feet"),
  22164. weight: math.unit(190, "lb"),
  22165. name: "Front (NSFW)",
  22166. image: {
  22167. source: "./media/characters/sprisk/front-nsfw.svg",
  22168. extra: 1225 / 1180,
  22169. bottom: 42.7 / 1266.4
  22170. }
  22171. },
  22172. back: {
  22173. height: math.unit(5 + 9 / 12, "feet"),
  22174. weight: math.unit(190, "lb"),
  22175. name: "Back",
  22176. image: {
  22177. source: "./media/characters/sprisk/back.svg",
  22178. extra: 1247 / 1200,
  22179. bottom: 5.6 / 1253.04
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Tiny",
  22186. height: math.unit(2, "inches")
  22187. },
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(5 + 9 / 12, "feet"),
  22191. default: true
  22192. },
  22193. {
  22194. name: "Mini Macro",
  22195. height: math.unit(18, "feet")
  22196. },
  22197. {
  22198. name: "Macro",
  22199. height: math.unit(100, "feet")
  22200. },
  22201. {
  22202. name: "MACRO",
  22203. height: math.unit(50, "miles")
  22204. },
  22205. {
  22206. name: "M A C R O",
  22207. height: math.unit(300, "miles")
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22213. {
  22214. side: {
  22215. height: math.unit(15.6, "meters"),
  22216. weight: math.unit(700000, "kg"),
  22217. name: "Side",
  22218. image: {
  22219. source: "./media/characters/bunsen/side.svg",
  22220. extra: 1644 / 358
  22221. }
  22222. },
  22223. foot: {
  22224. height: math.unit(1.611 * 1644 / 358, "meter"),
  22225. name: "Foot",
  22226. image: {
  22227. source: "./media/characters/bunsen/foot.svg"
  22228. }
  22229. },
  22230. },
  22231. [
  22232. {
  22233. name: "Small",
  22234. height: math.unit(10, "feet")
  22235. },
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(15.6, "meters"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(4 + 11 / 12, "feet"),
  22248. weight: math.unit(140, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/sesh/front.svg",
  22252. extra: 3420 / 3231,
  22253. bottom: 72 / 3949.5
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(4 + 11 / 12, "feet")
  22261. },
  22262. {
  22263. name: "Grown",
  22264. height: math.unit(15, "feet"),
  22265. default: true
  22266. },
  22267. {
  22268. name: "Macro",
  22269. height: math.unit(1500, "feet")
  22270. },
  22271. {
  22272. name: "Megamacro",
  22273. height: math.unit(30, "miles")
  22274. },
  22275. {
  22276. name: "Continental",
  22277. height: math.unit(3000, "miles")
  22278. },
  22279. {
  22280. name: "Gravity Mass",
  22281. height: math.unit(300000, "miles")
  22282. },
  22283. {
  22284. name: "Planet Buster",
  22285. height: math.unit(30000000, "miles")
  22286. },
  22287. {
  22288. name: "Big",
  22289. height: math.unit(3000000000, "miles")
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22295. {
  22296. front: {
  22297. height: math.unit(9, "feet"),
  22298. weight: math.unit(350, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/pepper/front.svg",
  22302. extra: 1448 / 1312,
  22303. bottom: 9.4 / 1457.88
  22304. }
  22305. },
  22306. back: {
  22307. height: math.unit(9, "feet"),
  22308. weight: math.unit(350, "lb"),
  22309. name: "Back",
  22310. image: {
  22311. source: "./media/characters/pepper/back.svg",
  22312. extra: 1423 / 1300,
  22313. bottom: 4.6 / 1429
  22314. }
  22315. },
  22316. maw: {
  22317. height: math.unit(0.932, "feet"),
  22318. name: "Maw",
  22319. image: {
  22320. source: "./media/characters/pepper/maw.svg"
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(9, "feet"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(6, "feet"),
  22337. weight: math.unit(150, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/maelstrom/front.svg",
  22341. extra: 2100 / 1883,
  22342. bottom: 94 / 2196.7
  22343. }
  22344. },
  22345. },
  22346. [
  22347. {
  22348. name: "Less Kaiju",
  22349. height: math.unit(200, "feet")
  22350. },
  22351. {
  22352. name: "Kaiju",
  22353. height: math.unit(400, "feet"),
  22354. default: true
  22355. },
  22356. {
  22357. name: "Kaiju-er",
  22358. height: math.unit(600, "feet")
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22364. {
  22365. front: {
  22366. height: math.unit(6 + 5 / 12, "feet"),
  22367. weight: math.unit(180, "lb"),
  22368. name: "Front",
  22369. image: {
  22370. source: "./media/characters/lexir/front.svg",
  22371. extra: 180 / 172,
  22372. bottom: 12 / 192
  22373. }
  22374. },
  22375. back: {
  22376. height: math.unit(6 + 5 / 12, "feet"),
  22377. weight: math.unit(180, "lb"),
  22378. name: "Back",
  22379. image: {
  22380. source: "./media/characters/lexir/back.svg",
  22381. extra: 183.84 / 175.5,
  22382. bottom: 3.1 / 187
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Very Smal",
  22389. height: math.unit(1, "nm")
  22390. },
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(6 + 5 / 12, "feet"),
  22394. default: true
  22395. },
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(1, "mile")
  22399. },
  22400. {
  22401. name: "Megamacro",
  22402. height: math.unit(50, "miles")
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(1.5, "meters"),
  22411. weight: math.unit(100, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/maksio/front.svg",
  22415. extra: 1549 / 1531,
  22416. bottom: 123.7 / 1674.5429
  22417. }
  22418. },
  22419. back: {
  22420. height: math.unit(1.5, "meters"),
  22421. weight: math.unit(100, "lb"),
  22422. name: "Back",
  22423. image: {
  22424. source: "./media/characters/maksio/back.svg",
  22425. extra: 1541 / 1509,
  22426. bottom: 97 / 1639
  22427. }
  22428. },
  22429. hand: {
  22430. height: math.unit(0.621, "feet"),
  22431. name: "Hand",
  22432. image: {
  22433. source: "./media/characters/maksio/hand.svg"
  22434. }
  22435. },
  22436. foot: {
  22437. height: math.unit(1.611, "feet"),
  22438. name: "Foot",
  22439. image: {
  22440. source: "./media/characters/maksio/foot.svg"
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Shrunken",
  22447. height: math.unit(10, "cm")
  22448. },
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(150, "cm"),
  22452. default: true
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22458. {
  22459. front: {
  22460. height: math.unit(100, "feet"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/erza-bear/front.svg",
  22464. extra: 2449 / 2390,
  22465. bottom: 46 / 2494
  22466. }
  22467. },
  22468. back: {
  22469. height: math.unit(100, "feet"),
  22470. name: "Back",
  22471. image: {
  22472. source: "./media/characters/erza-bear/back.svg",
  22473. extra: 2489 / 2430,
  22474. bottom: 85.4 / 2480
  22475. }
  22476. },
  22477. tail: {
  22478. height: math.unit(42, "feet"),
  22479. name: "Tail",
  22480. image: {
  22481. source: "./media/characters/erza-bear/tail.svg"
  22482. }
  22483. },
  22484. tongue: {
  22485. height: math.unit(8, "feet"),
  22486. name: "Tongue",
  22487. image: {
  22488. source: "./media/characters/erza-bear/tongue.svg"
  22489. }
  22490. },
  22491. dick: {
  22492. height: math.unit(10.5, "feet"),
  22493. name: "Dick",
  22494. image: {
  22495. source: "./media/characters/erza-bear/dick.svg"
  22496. }
  22497. },
  22498. dickVertical: {
  22499. height: math.unit(16.9, "feet"),
  22500. name: "Dick (Vertical)",
  22501. image: {
  22502. source: "./media/characters/erza-bear/dick-vertical.svg"
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Macro",
  22509. height: math.unit(100, "feet"),
  22510. default: true
  22511. },
  22512. ]
  22513. ))
  22514. characterMakers.push(() => makeCharacter(
  22515. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22516. {
  22517. front: {
  22518. height: math.unit(172, "cm"),
  22519. weight: math.unit(73, "kg"),
  22520. name: "Front",
  22521. image: {
  22522. source: "./media/characters/violet-flor/front.svg",
  22523. extra: 1530 / 1442,
  22524. bottom: 61.9 / 1588.8
  22525. }
  22526. },
  22527. back: {
  22528. height: math.unit(180, "cm"),
  22529. weight: math.unit(73, "kg"),
  22530. name: "Back",
  22531. image: {
  22532. source: "./media/characters/violet-flor/back.svg",
  22533. extra: 1692 / 1630,
  22534. bottom: 20 / 1712
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Normal",
  22541. height: math.unit(172, "cm"),
  22542. default: true
  22543. },
  22544. ]
  22545. ))
  22546. characterMakers.push(() => makeCharacter(
  22547. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22548. {
  22549. front: {
  22550. height: math.unit(6, "feet"),
  22551. weight: math.unit(220, "lb"),
  22552. name: "Front",
  22553. image: {
  22554. source: "./media/characters/lynn-rhea/front.svg",
  22555. extra: 310 / 273
  22556. }
  22557. },
  22558. back: {
  22559. height: math.unit(6, "feet"),
  22560. weight: math.unit(220, "lb"),
  22561. name: "Back",
  22562. image: {
  22563. source: "./media/characters/lynn-rhea/back.svg",
  22564. extra: 310 / 273
  22565. }
  22566. },
  22567. dicks: {
  22568. height: math.unit(0.9, "feet"),
  22569. name: "Dicks",
  22570. image: {
  22571. source: "./media/characters/lynn-rhea/dicks.svg"
  22572. }
  22573. },
  22574. slit: {
  22575. height: math.unit(0.4, "feet"),
  22576. name: "Slit",
  22577. image: {
  22578. source: "./media/characters/lynn-rhea/slit.svg"
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Micro",
  22585. height: math.unit(1, "inch")
  22586. },
  22587. {
  22588. name: "Macro",
  22589. height: math.unit(60, "feet"),
  22590. default: true
  22591. },
  22592. {
  22593. name: "Megamacro",
  22594. height: math.unit(2, "miles")
  22595. },
  22596. {
  22597. name: "Gigamacro",
  22598. height: math.unit(3, "earths")
  22599. },
  22600. {
  22601. name: "Galactic",
  22602. height: math.unit(0.8, "galaxies")
  22603. },
  22604. ]
  22605. ))
  22606. characterMakers.push(() => makeCharacter(
  22607. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22608. {
  22609. front: {
  22610. height: math.unit(1600, "feet"),
  22611. weight: math.unit(85758785169, "kg"),
  22612. name: "Front",
  22613. image: {
  22614. source: "./media/characters/valathos/front.svg",
  22615. extra: 1451 / 1339
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Macro",
  22622. height: math.unit(1600, "feet"),
  22623. default: true
  22624. },
  22625. ]
  22626. ))
  22627. characterMakers.push(() => makeCharacter(
  22628. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22629. {
  22630. front: {
  22631. height: math.unit(7 + 5 / 12, "feet"),
  22632. weight: math.unit(300, "lb"),
  22633. name: "Front",
  22634. image: {
  22635. source: "./media/characters/azula/front.svg",
  22636. extra: 3208 / 2880,
  22637. bottom: 80.2 / 3277
  22638. }
  22639. },
  22640. back: {
  22641. height: math.unit(7 + 5 / 12, "feet"),
  22642. weight: math.unit(300, "lb"),
  22643. name: "Back",
  22644. image: {
  22645. source: "./media/characters/azula/back.svg",
  22646. extra: 3169 / 2822,
  22647. bottom: 150.6 / 3321
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(7 + 5 / 12, "feet"),
  22655. default: true
  22656. },
  22657. {
  22658. name: "Big",
  22659. height: math.unit(20, "feet")
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(5 + 1 / 12, "feet"),
  22668. weight: math.unit(110, "lb"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/rupert/front.svg",
  22672. extra: 1549 / 1495,
  22673. bottom: 54.2 / 1604.4
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Normal",
  22680. height: math.unit(5 + 1 / 12, "feet"),
  22681. default: true
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22687. {
  22688. front: {
  22689. height: math.unit(8 + 4 / 12, "feet"),
  22690. weight: math.unit(350, "lb"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/sheera-castellar/front.svg",
  22694. extra: 1957 / 1894,
  22695. bottom: 26.97 / 1975.017
  22696. }
  22697. },
  22698. side: {
  22699. height: math.unit(8 + 4 / 12, "feet"),
  22700. weight: math.unit(350, "lb"),
  22701. name: "Side",
  22702. image: {
  22703. source: "./media/characters/sheera-castellar/side.svg",
  22704. extra: 1957 / 1894
  22705. }
  22706. },
  22707. back: {
  22708. height: math.unit(8 + 4 / 12, "feet"),
  22709. weight: math.unit(350, "lb"),
  22710. name: "Back",
  22711. image: {
  22712. source: "./media/characters/sheera-castellar/back.svg",
  22713. extra: 1957 / 1894
  22714. }
  22715. },
  22716. angled: {
  22717. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22718. weight: math.unit(350, "lb"),
  22719. name: "Angled",
  22720. image: {
  22721. source: "./media/characters/sheera-castellar/angled.svg",
  22722. extra: 1807 / 1707,
  22723. bottom: 68 / 1875
  22724. }
  22725. },
  22726. genitals: {
  22727. height: math.unit(2.2, "feet"),
  22728. name: "Genitals",
  22729. image: {
  22730. source: "./media/characters/sheera-castellar/genitals.svg"
  22731. }
  22732. },
  22733. taur: {
  22734. height: math.unit(10 + 6/12, "feet"),
  22735. name: "Taur",
  22736. image: {
  22737. source: "./media/characters/sheera-castellar/taur.svg",
  22738. extra: 2017/1909,
  22739. bottom: 185/2202
  22740. }
  22741. },
  22742. },
  22743. [
  22744. {
  22745. name: "Normal",
  22746. height: math.unit(8 + 4 / 12, "feet")
  22747. },
  22748. {
  22749. name: "Macro",
  22750. height: math.unit(150, "feet"),
  22751. default: true
  22752. },
  22753. {
  22754. name: "Macro+",
  22755. height: math.unit(800, "feet")
  22756. },
  22757. ]
  22758. ))
  22759. characterMakers.push(() => makeCharacter(
  22760. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22761. {
  22762. front: {
  22763. height: math.unit(6, "feet"),
  22764. weight: math.unit(150, "lb"),
  22765. name: "Front",
  22766. image: {
  22767. source: "./media/characters/jaipur/front.svg",
  22768. extra: 3860 / 3731,
  22769. bottom: 287 / 4140
  22770. }
  22771. },
  22772. back: {
  22773. height: math.unit(6, "feet"),
  22774. weight: math.unit(150, "lb"),
  22775. name: "Back",
  22776. image: {
  22777. source: "./media/characters/jaipur/back.svg",
  22778. extra: 4060 / 3930,
  22779. bottom: 151 / 4200
  22780. }
  22781. },
  22782. },
  22783. [
  22784. {
  22785. name: "Normal",
  22786. height: math.unit(1.85, "meters"),
  22787. default: true
  22788. },
  22789. {
  22790. name: "Macro",
  22791. height: math.unit(150, "meters")
  22792. },
  22793. {
  22794. name: "Macro+",
  22795. height: math.unit(0.5, "miles")
  22796. },
  22797. {
  22798. name: "Macro++",
  22799. height: math.unit(2.5, "miles")
  22800. },
  22801. {
  22802. name: "Macro+++",
  22803. height: math.unit(12, "miles")
  22804. },
  22805. {
  22806. name: "Macro++++",
  22807. height: math.unit(120, "miles")
  22808. },
  22809. {
  22810. name: "Macro+++++",
  22811. height: math.unit(1200, "miles")
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22817. {
  22818. front: {
  22819. height: math.unit(6, "feet"),
  22820. weight: math.unit(150, "lb"),
  22821. name: "Front",
  22822. image: {
  22823. source: "./media/characters/sheila-wolf/front.svg",
  22824. extra: 1931 / 1808,
  22825. bottom: 29.5 / 1960
  22826. }
  22827. },
  22828. dick: {
  22829. height: math.unit(1.464, "feet"),
  22830. name: "Dick",
  22831. image: {
  22832. source: "./media/characters/sheila-wolf/dick.svg"
  22833. }
  22834. },
  22835. muzzle: {
  22836. height: math.unit(0.513, "feet"),
  22837. name: "Muzzle",
  22838. image: {
  22839. source: "./media/characters/sheila-wolf/muzzle.svg"
  22840. }
  22841. },
  22842. },
  22843. [
  22844. {
  22845. name: "Macro",
  22846. height: math.unit(70, "feet"),
  22847. default: true
  22848. },
  22849. ]
  22850. ))
  22851. characterMakers.push(() => makeCharacter(
  22852. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22853. {
  22854. front: {
  22855. height: math.unit(32, "meters"),
  22856. weight: math.unit(300000, "kg"),
  22857. name: "Front",
  22858. image: {
  22859. source: "./media/characters/almor/front.svg",
  22860. extra: 1408 / 1322,
  22861. bottom: 94.6 / 1506.5
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Macro",
  22868. height: math.unit(32, "meters"),
  22869. default: true
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(7, "feet"),
  22878. weight: math.unit(200, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/silver/front.svg",
  22882. extra: 472.1 / 450.5,
  22883. bottom: 26.5 / 499.424
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(7, "feet"),
  22891. default: true
  22892. },
  22893. {
  22894. name: "Macro",
  22895. height: math.unit(800, "feet")
  22896. },
  22897. {
  22898. name: "Megamacro",
  22899. height: math.unit(250, "miles")
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(6, "feet"),
  22908. weight: math.unit(150, "lb"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/pliskin/front.svg",
  22912. extra: 1469 / 1359,
  22913. bottom: 70 / 1540
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Micro",
  22920. height: math.unit(3, "inches")
  22921. },
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(5 + 11 / 12, "feet"),
  22925. default: true
  22926. },
  22927. {
  22928. name: "Macro",
  22929. height: math.unit(120, "feet")
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22935. {
  22936. front: {
  22937. height: math.unit(6, "feet"),
  22938. weight: math.unit(150, "lb"),
  22939. name: "Front",
  22940. image: {
  22941. source: "./media/characters/sammy/front.svg",
  22942. extra: 1193 / 1089,
  22943. bottom: 30.5 / 1226
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Macro",
  22950. height: math.unit(1700, "feet"),
  22951. default: true
  22952. },
  22953. {
  22954. name: "Examacro",
  22955. height: math.unit(2.5e9, "lightyears")
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(21, "meters"),
  22964. weight: math.unit(12, "tonnes"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/kuru/front.svg",
  22968. extra: 4301 / 3785,
  22969. bottom: 371.3 / 4691
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Macro",
  22976. height: math.unit(21, "meters"),
  22977. default: true
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22983. {
  22984. front: {
  22985. height: math.unit(23, "meters"),
  22986. weight: math.unit(12.2, "tonnes"),
  22987. name: "Front",
  22988. image: {
  22989. source: "./media/characters/rakka/front.svg",
  22990. extra: 4670 / 4169,
  22991. bottom: 301 / 4968.7
  22992. }
  22993. },
  22994. },
  22995. [
  22996. {
  22997. name: "Macro",
  22998. height: math.unit(23, "meters"),
  22999. default: true
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23005. {
  23006. front: {
  23007. height: math.unit(6, "feet"),
  23008. weight: math.unit(150, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/rhys-feline/front.svg",
  23012. extra: 2488 / 2308,
  23013. bottom: 35.67 / 2519.19
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Really Small",
  23020. height: math.unit(1, "nm")
  23021. },
  23022. {
  23023. name: "Micro",
  23024. height: math.unit(4, "inches")
  23025. },
  23026. {
  23027. name: "Normal",
  23028. height: math.unit(4 + 10 / 12, "feet"),
  23029. default: true
  23030. },
  23031. {
  23032. name: "Macro",
  23033. height: math.unit(100, "feet")
  23034. },
  23035. {
  23036. name: "Megamacto",
  23037. height: math.unit(50, "miles")
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23043. {
  23044. side: {
  23045. height: math.unit(30, "feet"),
  23046. weight: math.unit(35000, "kg"),
  23047. name: "Side",
  23048. image: {
  23049. source: "./media/characters/alydar/side.svg",
  23050. extra: 234 / 222,
  23051. bottom: 6.5 / 241
  23052. }
  23053. },
  23054. front: {
  23055. height: math.unit(30, "feet"),
  23056. weight: math.unit(35000, "kg"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/alydar/front.svg",
  23060. extra: 223.37 / 210.2,
  23061. bottom: 22.3 / 246.76
  23062. }
  23063. },
  23064. top: {
  23065. height: math.unit(64.54, "feet"),
  23066. weight: math.unit(35000, "kg"),
  23067. name: "Top",
  23068. image: {
  23069. source: "./media/characters/alydar/top.svg"
  23070. }
  23071. },
  23072. anthro: {
  23073. height: math.unit(30, "feet"),
  23074. weight: math.unit(9000, "kg"),
  23075. name: "Anthro",
  23076. image: {
  23077. source: "./media/characters/alydar/anthro.svg",
  23078. extra: 432 / 421,
  23079. bottom: 7.18 / 440
  23080. }
  23081. },
  23082. maw: {
  23083. height: math.unit(11.693, "feet"),
  23084. name: "Maw",
  23085. image: {
  23086. source: "./media/characters/alydar/maw.svg"
  23087. }
  23088. },
  23089. head: {
  23090. height: math.unit(11.693, "feet"),
  23091. name: "Head",
  23092. image: {
  23093. source: "./media/characters/alydar/head.svg"
  23094. }
  23095. },
  23096. headAlt: {
  23097. height: math.unit(12.861, "feet"),
  23098. name: "Head (Alt)",
  23099. image: {
  23100. source: "./media/characters/alydar/head-alt.svg"
  23101. }
  23102. },
  23103. wing: {
  23104. height: math.unit(20.712, "feet"),
  23105. name: "Wing",
  23106. image: {
  23107. source: "./media/characters/alydar/wing.svg"
  23108. }
  23109. },
  23110. wingFeather: {
  23111. height: math.unit(9.662, "feet"),
  23112. name: "Wing Feather",
  23113. image: {
  23114. source: "./media/characters/alydar/wing-feather.svg"
  23115. }
  23116. },
  23117. countourFeather: {
  23118. height: math.unit(4.154, "feet"),
  23119. name: "Contour Feather",
  23120. image: {
  23121. source: "./media/characters/alydar/contour-feather.svg"
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Diplomatic",
  23128. height: math.unit(13, "feet"),
  23129. default: true
  23130. },
  23131. {
  23132. name: "Small",
  23133. height: math.unit(30, "feet")
  23134. },
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(95, "feet"),
  23138. default: true
  23139. },
  23140. {
  23141. name: "Large",
  23142. height: math.unit(285, "feet")
  23143. },
  23144. {
  23145. name: "Incomprehensible",
  23146. height: math.unit(450, "megameters")
  23147. },
  23148. ]
  23149. ))
  23150. characterMakers.push(() => makeCharacter(
  23151. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23152. {
  23153. side: {
  23154. height: math.unit(11, "feet"),
  23155. weight: math.unit(1750, "kg"),
  23156. name: "Side",
  23157. image: {
  23158. source: "./media/characters/selicia/side.svg",
  23159. extra: 440 / 396,
  23160. bottom: 24.8 / 465.979
  23161. }
  23162. },
  23163. maw: {
  23164. height: math.unit(4.665, "feet"),
  23165. name: "Maw",
  23166. image: {
  23167. source: "./media/characters/selicia/maw.svg"
  23168. }
  23169. },
  23170. },
  23171. [
  23172. {
  23173. name: "Normal",
  23174. height: math.unit(11, "feet"),
  23175. default: true
  23176. },
  23177. ]
  23178. ))
  23179. characterMakers.push(() => makeCharacter(
  23180. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23181. {
  23182. side: {
  23183. height: math.unit(2 + 6 / 12, "feet"),
  23184. weight: math.unit(30, "lb"),
  23185. name: "Side",
  23186. image: {
  23187. source: "./media/characters/layla/side.svg",
  23188. extra: 244 / 188,
  23189. bottom: 18.2 / 262.1
  23190. }
  23191. },
  23192. back: {
  23193. height: math.unit(2 + 6 / 12, "feet"),
  23194. weight: math.unit(30, "lb"),
  23195. name: "Back",
  23196. image: {
  23197. source: "./media/characters/layla/back.svg",
  23198. extra: 308 / 241.5,
  23199. bottom: 8.9 / 316.8
  23200. }
  23201. },
  23202. cumming: {
  23203. height: math.unit(2 + 6 / 12, "feet"),
  23204. weight: math.unit(30, "lb"),
  23205. name: "Cumming",
  23206. image: {
  23207. source: "./media/characters/layla/cumming.svg",
  23208. extra: 342 / 279,
  23209. bottom: 595 / 938
  23210. }
  23211. },
  23212. dickFlaccid: {
  23213. height: math.unit(2.595, "feet"),
  23214. name: "Flaccid Genitals",
  23215. image: {
  23216. source: "./media/characters/layla/dick-flaccid.svg"
  23217. }
  23218. },
  23219. dickErect: {
  23220. height: math.unit(2.359, "feet"),
  23221. name: "Erect Genitals",
  23222. image: {
  23223. source: "./media/characters/layla/dick-erect.svg"
  23224. }
  23225. },
  23226. dragon: {
  23227. height: math.unit(40, "feet"),
  23228. name: "Dragon",
  23229. image: {
  23230. source: "./media/characters/layla/dragon.svg",
  23231. extra: 610/535,
  23232. bottom: 367/977
  23233. }
  23234. },
  23235. taur: {
  23236. height: math.unit(30, "feet"),
  23237. name: "Taur",
  23238. image: {
  23239. source: "./media/characters/layla/taur.svg",
  23240. extra: 1268/1199,
  23241. bottom: 112/1380
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Micro",
  23248. height: math.unit(1, "inch")
  23249. },
  23250. {
  23251. name: "Small",
  23252. height: math.unit(1, "foot")
  23253. },
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(2 + 6 / 12, "feet"),
  23257. default: true
  23258. },
  23259. {
  23260. name: "Macro",
  23261. height: math.unit(200, "feet")
  23262. },
  23263. {
  23264. name: "Megamacro",
  23265. height: math.unit(1000, "miles")
  23266. },
  23267. {
  23268. name: "Planetary",
  23269. height: math.unit(8000, "miles")
  23270. },
  23271. {
  23272. name: "True Layla",
  23273. height: math.unit(200000 * 7, "multiverses")
  23274. },
  23275. ]
  23276. ))
  23277. characterMakers.push(() => makeCharacter(
  23278. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23279. {
  23280. back: {
  23281. height: math.unit(10.5, "feet"),
  23282. weight: math.unit(800, "lb"),
  23283. name: "Back",
  23284. image: {
  23285. source: "./media/characters/knox/back.svg",
  23286. extra: 1486 / 1089,
  23287. bottom: 107 / 1601.4
  23288. }
  23289. },
  23290. side: {
  23291. height: math.unit(10.5, "feet"),
  23292. weight: math.unit(800, "lb"),
  23293. name: "Side",
  23294. image: {
  23295. source: "./media/characters/knox/side.svg",
  23296. extra: 244 / 218,
  23297. bottom: 14 / 260
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Compact",
  23304. height: math.unit(10.5, "feet"),
  23305. default: true
  23306. },
  23307. {
  23308. name: "Dynamax",
  23309. height: math.unit(210, "feet")
  23310. },
  23311. {
  23312. name: "Full Macro",
  23313. height: math.unit(850, "feet")
  23314. },
  23315. ]
  23316. ))
  23317. characterMakers.push(() => makeCharacter(
  23318. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23319. {
  23320. front: {
  23321. height: math.unit(6, "feet"),
  23322. weight: math.unit(152, "lb"),
  23323. name: "Front",
  23324. image: {
  23325. source: "./media/characters/shin-pikachu/front.svg",
  23326. extra: 1574 / 1480,
  23327. bottom: 53.3 / 1626
  23328. }
  23329. },
  23330. hand: {
  23331. height: math.unit(1.055, "feet"),
  23332. name: "Hand",
  23333. image: {
  23334. source: "./media/characters/shin-pikachu/hand.svg"
  23335. }
  23336. },
  23337. foot: {
  23338. height: math.unit(1.1, "feet"),
  23339. name: "Foot",
  23340. image: {
  23341. source: "./media/characters/shin-pikachu/foot.svg"
  23342. }
  23343. },
  23344. collar: {
  23345. height: math.unit(0.386, "feet"),
  23346. name: "Collar",
  23347. image: {
  23348. source: "./media/characters/shin-pikachu/collar.svg"
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Smallest",
  23355. height: math.unit(0.5, "inches")
  23356. },
  23357. {
  23358. name: "Micro",
  23359. height: math.unit(6, "inches")
  23360. },
  23361. {
  23362. name: "Normal",
  23363. height: math.unit(6, "feet"),
  23364. default: true
  23365. },
  23366. {
  23367. name: "Macro",
  23368. height: math.unit(150, "feet")
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(28, "feet"),
  23377. weight: math.unit(10500, "lb"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/kayda/front.svg",
  23381. extra: 1536 / 1428,
  23382. bottom: 68.7 / 1603
  23383. }
  23384. },
  23385. back: {
  23386. height: math.unit(28, "feet"),
  23387. weight: math.unit(10500, "lb"),
  23388. name: "Back",
  23389. image: {
  23390. source: "./media/characters/kayda/back.svg",
  23391. extra: 1557 / 1464,
  23392. bottom: 39.5 / 1597.49
  23393. }
  23394. },
  23395. dick: {
  23396. height: math.unit(3.858, "feet"),
  23397. name: "Dick",
  23398. image: {
  23399. source: "./media/characters/kayda/dick.svg"
  23400. }
  23401. },
  23402. },
  23403. [
  23404. {
  23405. name: "Macro",
  23406. height: math.unit(28, "feet"),
  23407. default: true
  23408. },
  23409. ]
  23410. ))
  23411. characterMakers.push(() => makeCharacter(
  23412. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23413. {
  23414. front: {
  23415. height: math.unit(10 + 11 / 12, "feet"),
  23416. weight: math.unit(1400, "lb"),
  23417. name: "Front",
  23418. image: {
  23419. source: "./media/characters/brian/front.svg",
  23420. extra: 737 / 692,
  23421. bottom: 55.4 / 785
  23422. }
  23423. },
  23424. },
  23425. [
  23426. {
  23427. name: "Normal",
  23428. height: math.unit(10 + 11 / 12, "feet"),
  23429. default: true
  23430. },
  23431. ]
  23432. ))
  23433. characterMakers.push(() => makeCharacter(
  23434. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23435. {
  23436. front: {
  23437. height: math.unit(5 + 8 / 12, "feet"),
  23438. weight: math.unit(140, "lb"),
  23439. name: "Front",
  23440. image: {
  23441. source: "./media/characters/khemri/front.svg",
  23442. extra: 4780 / 4059,
  23443. bottom: 80.1 / 4859.25
  23444. }
  23445. },
  23446. },
  23447. [
  23448. {
  23449. name: "Micro",
  23450. height: math.unit(6, "inches")
  23451. },
  23452. {
  23453. name: "Normal",
  23454. height: math.unit(5 + 8 / 12, "feet"),
  23455. default: true
  23456. },
  23457. ]
  23458. ))
  23459. characterMakers.push(() => makeCharacter(
  23460. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23461. {
  23462. front: {
  23463. height: math.unit(13, "feet"),
  23464. weight: math.unit(1700, "lb"),
  23465. name: "Front",
  23466. image: {
  23467. source: "./media/characters/felix-braveheart/front.svg",
  23468. extra: 1222 / 1157,
  23469. bottom: 53.2 / 1280
  23470. }
  23471. },
  23472. back: {
  23473. height: math.unit(13, "feet"),
  23474. weight: math.unit(1700, "lb"),
  23475. name: "Back",
  23476. image: {
  23477. source: "./media/characters/felix-braveheart/back.svg",
  23478. extra: 1277 / 1203,
  23479. bottom: 50.2 / 1327
  23480. }
  23481. },
  23482. feral: {
  23483. height: math.unit(6, "feet"),
  23484. weight: math.unit(400, "lb"),
  23485. name: "Feral",
  23486. image: {
  23487. source: "./media/characters/felix-braveheart/feral.svg",
  23488. extra: 682 / 625,
  23489. bottom: 6.9 / 688
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(13, "feet"),
  23497. default: true
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23503. {
  23504. side: {
  23505. height: math.unit(5 + 11 / 12, "feet"),
  23506. weight: math.unit(1400, "lb"),
  23507. name: "Side",
  23508. image: {
  23509. source: "./media/characters/shadow-blade/side.svg",
  23510. extra: 1726 / 1267,
  23511. bottom: 58.4 / 1785
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Normal",
  23518. height: math.unit(5 + 11 / 12, "feet"),
  23519. default: true
  23520. },
  23521. ]
  23522. ))
  23523. characterMakers.push(() => makeCharacter(
  23524. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23525. {
  23526. front: {
  23527. height: math.unit(1 + 6 / 12, "feet"),
  23528. weight: math.unit(25, "lb"),
  23529. name: "Front",
  23530. image: {
  23531. source: "./media/characters/karla-halldor/front.svg",
  23532. extra: 1459 / 1383,
  23533. bottom: 12 / 1472
  23534. }
  23535. },
  23536. },
  23537. [
  23538. {
  23539. name: "Normal",
  23540. height: math.unit(1 + 6 / 12, "feet"),
  23541. default: true
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23547. {
  23548. front: {
  23549. height: math.unit(6 + 2 / 12, "feet"),
  23550. weight: math.unit(160, "lb"),
  23551. name: "Front",
  23552. image: {
  23553. source: "./media/characters/ariam/front.svg",
  23554. extra: 714 / 617,
  23555. bottom: 23.4 / 737,
  23556. }
  23557. },
  23558. squatting: {
  23559. height: math.unit(4.1, "feet"),
  23560. weight: math.unit(160, "lb"),
  23561. name: "Squatting",
  23562. image: {
  23563. source: "./media/characters/ariam/squatting.svg",
  23564. extra: 2617 / 2112,
  23565. bottom: 61.2 / 2681,
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Normal",
  23572. height: math.unit(6 + 2 / 12, "feet"),
  23573. default: true
  23574. },
  23575. {
  23576. name: "Normal+",
  23577. height: math.unit(4, "meters")
  23578. },
  23579. {
  23580. name: "Macro",
  23581. height: math.unit(50, "meters")
  23582. },
  23583. {
  23584. name: "Macro+",
  23585. height: math.unit(100, "meters")
  23586. },
  23587. {
  23588. name: "Megamacro",
  23589. height: math.unit(20, "km")
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(1.67, "meters"),
  23598. weight: math.unit(140, "lb"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23602. extra: 438 / 410,
  23603. bottom: 0.75 / 439
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Shrunken",
  23610. height: math.unit(7.6, "cm")
  23611. },
  23612. {
  23613. name: "Human Scale",
  23614. height: math.unit(1.67, "meters")
  23615. },
  23616. {
  23617. name: "Wolxi Scale",
  23618. height: math.unit(36.7, "meters"),
  23619. default: true
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(1.73, "meters"),
  23628. weight: math.unit(240, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/izue-two-mothers/front.svg",
  23632. extra: 469 / 437,
  23633. bottom: 1.24 / 470.6
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Shrunken",
  23640. height: math.unit(7.86, "cm")
  23641. },
  23642. {
  23643. name: "Human Scale",
  23644. height: math.unit(1.73, "meters")
  23645. },
  23646. {
  23647. name: "Wolxi Scale",
  23648. height: math.unit(38, "meters"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(1.55, "meters"),
  23658. weight: math.unit(120, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/teeku-love-shack/front.svg",
  23662. extra: 387 / 362,
  23663. bottom: 1.51 / 388
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Shrunken",
  23670. height: math.unit(7, "cm")
  23671. },
  23672. {
  23673. name: "Human Scale",
  23674. height: math.unit(1.55, "meters")
  23675. },
  23676. {
  23677. name: "Wolxi Scale",
  23678. height: math.unit(34.1, "meters"),
  23679. default: true
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(1.83, "meters"),
  23688. weight: math.unit(135, "lb"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/dejma-the-red/front.svg",
  23692. extra: 480 / 458,
  23693. bottom: 1.8 / 482
  23694. }
  23695. },
  23696. },
  23697. [
  23698. {
  23699. name: "Shrunken",
  23700. height: math.unit(8.3, "cm")
  23701. },
  23702. {
  23703. name: "Human Scale",
  23704. height: math.unit(1.83, "meters")
  23705. },
  23706. {
  23707. name: "Wolxi Scale",
  23708. height: math.unit(40, "meters"),
  23709. default: true
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(1.78, "meters"),
  23718. weight: math.unit(65, "kg"),
  23719. name: "Front",
  23720. image: {
  23721. source: "./media/characters/aki/front.svg",
  23722. extra: 452 / 415
  23723. }
  23724. },
  23725. frontNsfw: {
  23726. height: math.unit(1.78, "meters"),
  23727. weight: math.unit(65, "kg"),
  23728. name: "Front (NSFW)",
  23729. image: {
  23730. source: "./media/characters/aki/front-nsfw.svg",
  23731. extra: 452 / 415
  23732. }
  23733. },
  23734. back: {
  23735. height: math.unit(1.78, "meters"),
  23736. weight: math.unit(65, "kg"),
  23737. name: "Back",
  23738. image: {
  23739. source: "./media/characters/aki/back.svg",
  23740. extra: 452 / 415
  23741. }
  23742. },
  23743. rump: {
  23744. height: math.unit(2.05, "feet"),
  23745. name: "Rump",
  23746. image: {
  23747. source: "./media/characters/aki/rump.svg"
  23748. }
  23749. },
  23750. dick: {
  23751. height: math.unit(0.95, "feet"),
  23752. name: "Dick",
  23753. image: {
  23754. source: "./media/characters/aki/dick.svg"
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Micro",
  23761. height: math.unit(15, "cm")
  23762. },
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(178, "cm"),
  23766. default: true
  23767. },
  23768. {
  23769. name: "Macro",
  23770. height: math.unit(214, "m")
  23771. },
  23772. {
  23773. name: "Macro+",
  23774. height: math.unit(534, "m")
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23780. {
  23781. front: {
  23782. height: math.unit(5 + 5 / 12, "feet"),
  23783. weight: math.unit(120, "lb"),
  23784. name: "Front",
  23785. image: {
  23786. source: "./media/characters/ari/front.svg",
  23787. extra: 714.5 / 682,
  23788. bottom: 8 / 722.5
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(5 + 5 / 12, "feet")
  23796. },
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(100, "feet"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Megamacro",
  23804. height: math.unit(100, "miles")
  23805. },
  23806. {
  23807. name: "Gigamacro",
  23808. height: math.unit(80000, "miles")
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23814. {
  23815. side: {
  23816. height: math.unit(9, "feet"),
  23817. weight: math.unit(400, "kg"),
  23818. name: "Side",
  23819. image: {
  23820. source: "./media/characters/bolt/side.svg",
  23821. extra: 1126 / 896,
  23822. bottom: 60 / 1187.3,
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Micro",
  23829. height: math.unit(5, "inches")
  23830. },
  23831. {
  23832. name: "Normal",
  23833. height: math.unit(9, "feet"),
  23834. default: true
  23835. },
  23836. {
  23837. name: "Macro",
  23838. height: math.unit(700, "feet")
  23839. },
  23840. {
  23841. name: "Max Size",
  23842. height: math.unit(1.52e22, "yottameters")
  23843. },
  23844. ]
  23845. ))
  23846. characterMakers.push(() => makeCharacter(
  23847. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23848. {
  23849. front: {
  23850. height: math.unit(4.53, "meters"),
  23851. weight: math.unit(3, "tons"),
  23852. name: "Front",
  23853. image: {
  23854. source: "./media/characters/draekon-sylviar/front.svg",
  23855. extra: 1228 / 1068,
  23856. bottom: 41 / 1270
  23857. }
  23858. },
  23859. tail: {
  23860. height: math.unit(1.772, "meter"),
  23861. name: "Tail",
  23862. image: {
  23863. source: "./media/characters/draekon-sylviar/tail.svg"
  23864. }
  23865. },
  23866. head: {
  23867. height: math.unit(1.331, "meter"),
  23868. name: "Head",
  23869. image: {
  23870. source: "./media/characters/draekon-sylviar/head.svg"
  23871. }
  23872. },
  23873. hand: {
  23874. height: math.unit(0.564, "meter"),
  23875. name: "Hand",
  23876. image: {
  23877. source: "./media/characters/draekon-sylviar/hand.svg"
  23878. }
  23879. },
  23880. foot: {
  23881. height: math.unit(0.621, "meter"),
  23882. name: "Foot",
  23883. image: {
  23884. source: "./media/characters/draekon-sylviar/foot.svg",
  23885. bottom: 32 / 324
  23886. }
  23887. },
  23888. dick: {
  23889. height: math.unit(61, "cm"),
  23890. name: "Dick",
  23891. image: {
  23892. source: "./media/characters/draekon-sylviar/dick.svg"
  23893. }
  23894. },
  23895. dickseparated: {
  23896. height: math.unit(61, "cm"),
  23897. name: "Dick-separated",
  23898. image: {
  23899. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Small",
  23906. height: math.unit(4.53 / 2, "meters"),
  23907. default: true
  23908. },
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(4.53, "meters"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Large",
  23916. height: math.unit(4.53 * 2, "meters"),
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(6 + 2 / 12, "feet"),
  23925. weight: math.unit(180, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/brawler/front.svg",
  23929. extra: 3301 / 3027,
  23930. bottom: 138 / 3439
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(6 + 2 / 12, "feet"),
  23938. default: true
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23944. {
  23945. front: {
  23946. height: math.unit(11, "feet"),
  23947. weight: math.unit(1000, "lb"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/alex/front.svg",
  23951. bottom: 44.5 / 620
  23952. }
  23953. },
  23954. },
  23955. [
  23956. {
  23957. name: "Micro",
  23958. height: math.unit(5, "inches")
  23959. },
  23960. {
  23961. name: "Normal",
  23962. height: math.unit(11, "feet"),
  23963. default: true
  23964. },
  23965. {
  23966. name: "Macro",
  23967. height: math.unit(9.5e9, "feet")
  23968. },
  23969. {
  23970. name: "Max Size",
  23971. height: math.unit(1.4e283, "yottameters")
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23977. {
  23978. female: {
  23979. height: math.unit(29.9, "m"),
  23980. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23981. name: "Female",
  23982. image: {
  23983. source: "./media/characters/zenari/female.svg",
  23984. extra: 3281.6 / 3217,
  23985. bottom: 72.2 / 3353
  23986. }
  23987. },
  23988. male: {
  23989. height: math.unit(27.7, "m"),
  23990. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23991. name: "Male",
  23992. image: {
  23993. source: "./media/characters/zenari/male.svg",
  23994. extra: 3008 / 2991,
  23995. bottom: 54.6 / 3069
  23996. }
  23997. },
  23998. },
  23999. [
  24000. {
  24001. name: "Macro",
  24002. height: math.unit(29.7, "meters"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24009. {
  24010. female: {
  24011. height: math.unit(23.8, "m"),
  24012. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24013. name: "Female",
  24014. image: {
  24015. source: "./media/characters/mactarian/female.svg",
  24016. extra: 2662 / 2569,
  24017. bottom: 73 / 2736
  24018. }
  24019. },
  24020. male: {
  24021. height: math.unit(23.8, "m"),
  24022. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24023. name: "Male",
  24024. image: {
  24025. source: "./media/characters/mactarian/male.svg",
  24026. extra: 2673 / 2600,
  24027. bottom: 76 / 2750
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Macro",
  24034. height: math.unit(23.8, "meters"),
  24035. default: true
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24041. {
  24042. female: {
  24043. height: math.unit(19.3, "m"),
  24044. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24045. name: "Female",
  24046. image: {
  24047. source: "./media/characters/umok/female.svg",
  24048. extra: 2186 / 2078,
  24049. bottom: 87 / 2277
  24050. }
  24051. },
  24052. male: {
  24053. height: math.unit(19.5, "m"),
  24054. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24055. name: "Male",
  24056. image: {
  24057. source: "./media/characters/umok/male.svg",
  24058. extra: 2233 / 2140,
  24059. bottom: 24.4 / 2258
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Macro",
  24066. height: math.unit(19.3, "meters"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24073. {
  24074. female: {
  24075. height: math.unit(26.15, "m"),
  24076. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24077. name: "Female",
  24078. image: {
  24079. source: "./media/characters/joraxian/female.svg",
  24080. extra: 2912 / 2824,
  24081. bottom: 36 / 2956
  24082. }
  24083. },
  24084. male: {
  24085. height: math.unit(25.4, "m"),
  24086. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24087. name: "Male",
  24088. image: {
  24089. source: "./media/characters/joraxian/male.svg",
  24090. extra: 2877 / 2721,
  24091. bottom: 82 / 2967
  24092. }
  24093. },
  24094. },
  24095. [
  24096. {
  24097. name: "Macro",
  24098. height: math.unit(26.15, "meters"),
  24099. default: true
  24100. },
  24101. ]
  24102. ))
  24103. characterMakers.push(() => makeCharacter(
  24104. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24105. {
  24106. female: {
  24107. height: math.unit(21.6, "m"),
  24108. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24109. name: "Female",
  24110. image: {
  24111. source: "./media/characters/sthara/female.svg",
  24112. extra: 2516 / 2347,
  24113. bottom: 21.5 / 2537
  24114. }
  24115. },
  24116. male: {
  24117. height: math.unit(24, "m"),
  24118. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24119. name: "Male",
  24120. image: {
  24121. source: "./media/characters/sthara/male.svg",
  24122. extra: 2732 / 2607,
  24123. bottom: 23 / 2732
  24124. }
  24125. },
  24126. },
  24127. [
  24128. {
  24129. name: "Macro",
  24130. height: math.unit(21.6, "meters"),
  24131. default: true
  24132. },
  24133. ]
  24134. ))
  24135. characterMakers.push(() => makeCharacter(
  24136. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24137. {
  24138. front: {
  24139. height: math.unit(6 + 4 / 12, "feet"),
  24140. weight: math.unit(175, "lb"),
  24141. name: "Front",
  24142. image: {
  24143. source: "./media/characters/luka-bryzant/front.svg",
  24144. extra: 311 / 289,
  24145. bottom: 4 / 315
  24146. }
  24147. },
  24148. back: {
  24149. height: math.unit(6 + 4 / 12, "feet"),
  24150. weight: math.unit(175, "lb"),
  24151. name: "Back",
  24152. image: {
  24153. source: "./media/characters/luka-bryzant/back.svg",
  24154. extra: 311 / 289,
  24155. bottom: 3.8 / 313.7
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Micro",
  24162. height: math.unit(10, "inches")
  24163. },
  24164. {
  24165. name: "Normal",
  24166. height: math.unit(6 + 4 / 12, "feet"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Large",
  24171. height: math.unit(12, "feet")
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(5 + 7 / 12, "feet"),
  24180. weight: math.unit(185, "lb"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/aman-aquila/front.svg",
  24184. extra: 1013 / 976,
  24185. bottom: 45.6 / 1057
  24186. }
  24187. },
  24188. side: {
  24189. height: math.unit(5 + 7 / 12, "feet"),
  24190. weight: math.unit(185, "lb"),
  24191. name: "Side",
  24192. image: {
  24193. source: "./media/characters/aman-aquila/side.svg",
  24194. extra: 1054 / 1011,
  24195. bottom: 15 / 1070
  24196. }
  24197. },
  24198. back: {
  24199. height: math.unit(5 + 7 / 12, "feet"),
  24200. weight: math.unit(185, "lb"),
  24201. name: "Back",
  24202. image: {
  24203. source: "./media/characters/aman-aquila/back.svg",
  24204. extra: 1026 / 970,
  24205. bottom: 12 / 1039
  24206. }
  24207. },
  24208. head: {
  24209. height: math.unit(1.211, "feet"),
  24210. name: "Head",
  24211. image: {
  24212. source: "./media/characters/aman-aquila/head.svg",
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Minimicro",
  24219. height: math.unit(0.057, "inches")
  24220. },
  24221. {
  24222. name: "Micro",
  24223. height: math.unit(7, "inches")
  24224. },
  24225. {
  24226. name: "Mini",
  24227. height: math.unit(3 + 7 / 12, "feet")
  24228. },
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(5 + 7 / 12, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(157 + 7 / 12, "feet")
  24237. },
  24238. {
  24239. name: "Megamacro",
  24240. height: math.unit(1557 + 7 / 12, "feet")
  24241. },
  24242. {
  24243. name: "Gigamacro",
  24244. height: math.unit(15557 + 7 / 12, "feet")
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24250. {
  24251. front: {
  24252. height: math.unit(3 + 2 / 12, "inches"),
  24253. weight: math.unit(0.3, "ounces"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/hiphae/front.svg",
  24257. extra: 1931 / 1683,
  24258. bottom: 24 / 1955
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(3 + 1 / 2, "inches"),
  24266. default: true
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24272. {
  24273. front: {
  24274. height: math.unit(5 + 10 / 12, "feet"),
  24275. weight: math.unit(165, "lb"),
  24276. name: "Front",
  24277. image: {
  24278. source: "./media/characters/nicky/front.svg",
  24279. extra: 3144 / 2886,
  24280. bottom: 45.6 / 3192
  24281. }
  24282. },
  24283. back: {
  24284. height: math.unit(5 + 10 / 12, "feet"),
  24285. weight: math.unit(165, "lb"),
  24286. name: "Back",
  24287. image: {
  24288. source: "./media/characters/nicky/back.svg",
  24289. extra: 3055 / 2804,
  24290. bottom: 28.4 / 3087
  24291. }
  24292. },
  24293. frontclothed: {
  24294. height: math.unit(5 + 10 / 12, "feet"),
  24295. weight: math.unit(165, "lb"),
  24296. name: "Front-clothed",
  24297. image: {
  24298. source: "./media/characters/nicky/front-clothed.svg",
  24299. extra: 3184.9 / 2926.9,
  24300. bottom: 86.5 / 3239.9
  24301. }
  24302. },
  24303. foot: {
  24304. height: math.unit(1.16, "feet"),
  24305. name: "Foot",
  24306. image: {
  24307. source: "./media/characters/nicky/foot.svg"
  24308. }
  24309. },
  24310. feet: {
  24311. height: math.unit(1.34, "feet"),
  24312. name: "Feet",
  24313. image: {
  24314. source: "./media/characters/nicky/feet.svg"
  24315. }
  24316. },
  24317. maw: {
  24318. height: math.unit(0.9, "feet"),
  24319. name: "Maw",
  24320. image: {
  24321. source: "./media/characters/nicky/maw.svg"
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(5 + 10 / 12, "feet"),
  24329. default: true
  24330. },
  24331. {
  24332. name: "Macro",
  24333. height: math.unit(60, "feet")
  24334. },
  24335. {
  24336. name: "Megamacro",
  24337. height: math.unit(1, "mile")
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24343. {
  24344. side: {
  24345. height: math.unit(10, "feet"),
  24346. weight: math.unit(600, "lb"),
  24347. name: "Side",
  24348. image: {
  24349. source: "./media/characters/blair/side.svg",
  24350. bottom: 16.6 / 475,
  24351. extra: 458 / 431
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Micro",
  24358. height: math.unit(8, "inches")
  24359. },
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(10, "feet"),
  24363. default: true
  24364. },
  24365. {
  24366. name: "Macro",
  24367. height: math.unit(180, "feet")
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24373. {
  24374. front: {
  24375. height: math.unit(5 + 4 / 12, "feet"),
  24376. weight: math.unit(125, "lb"),
  24377. name: "Front",
  24378. image: {
  24379. source: "./media/characters/fisher/front.svg",
  24380. extra: 444 / 390,
  24381. bottom: 2 / 444.8
  24382. }
  24383. },
  24384. },
  24385. [
  24386. {
  24387. name: "Micro",
  24388. height: math.unit(4, "inches")
  24389. },
  24390. {
  24391. name: "Normal",
  24392. height: math.unit(5 + 4 / 12, "feet"),
  24393. default: true
  24394. },
  24395. {
  24396. name: "Macro",
  24397. height: math.unit(100, "feet")
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24403. {
  24404. front: {
  24405. height: math.unit(6.71, "feet"),
  24406. weight: math.unit(200, "lb"),
  24407. capacity: math.unit(1000000, "people"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/gliss/front.svg",
  24411. extra: 2347 / 2231,
  24412. bottom: 113 / 2462
  24413. }
  24414. },
  24415. hammerspaceSize: {
  24416. height: math.unit(6.71 * 717, "feet"),
  24417. weight: math.unit(200, "lb"),
  24418. capacity: math.unit(1000000, "people"),
  24419. name: "Hammerspace Size",
  24420. image: {
  24421. source: "./media/characters/gliss/front.svg",
  24422. extra: 2347 / 2231,
  24423. bottom: 113 / 2462
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(6.71, "feet"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24437. {
  24438. side: {
  24439. height: math.unit(1.44, "m"),
  24440. weight: math.unit(80, "kg"),
  24441. name: "Side",
  24442. image: {
  24443. source: "./media/characters/dune-anderson/side.svg",
  24444. bottom: 49 / 1426
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Wolf-sized",
  24451. height: math.unit(1.44, "meters")
  24452. },
  24453. {
  24454. name: "Normal",
  24455. height: math.unit(5.05, "meters"),
  24456. default: true
  24457. },
  24458. {
  24459. name: "Big",
  24460. height: math.unit(14.4, "meters")
  24461. },
  24462. {
  24463. name: "Huge",
  24464. height: math.unit(144, "meters")
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24470. {
  24471. front: {
  24472. height: math.unit(7, "feet"),
  24473. weight: math.unit(425, "lb"),
  24474. name: "Front",
  24475. image: {
  24476. source: "./media/characters/hind/front.svg",
  24477. extra: 2091 / 1860,
  24478. bottom: 129 / 2220
  24479. }
  24480. },
  24481. back: {
  24482. height: math.unit(7, "feet"),
  24483. weight: math.unit(425, "lb"),
  24484. name: "Back",
  24485. image: {
  24486. source: "./media/characters/hind/back.svg",
  24487. extra: 2091 / 1860,
  24488. bottom: 24.6 / 2309
  24489. }
  24490. },
  24491. tail: {
  24492. height: math.unit(2.8, "feet"),
  24493. name: "Tail",
  24494. image: {
  24495. source: "./media/characters/hind/tail.svg"
  24496. }
  24497. },
  24498. head: {
  24499. height: math.unit(2.55, "feet"),
  24500. name: "Head",
  24501. image: {
  24502. source: "./media/characters/hind/head.svg"
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "XS",
  24509. height: math.unit(0.7, "feet")
  24510. },
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(7, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "XL",
  24518. height: math.unit(70, "feet")
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(6, "feet"),
  24527. weight: math.unit(150, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/dylan-skaven/front.svg",
  24531. extra: 2318 / 2063,
  24532. bottom: 93.4 / 2410
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Nano",
  24539. height: math.unit(1, "mm")
  24540. },
  24541. {
  24542. name: "Micro",
  24543. height: math.unit(1, "cm")
  24544. },
  24545. {
  24546. name: "Normal",
  24547. height: math.unit(2.1, "meters"),
  24548. default: true
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(7 + 5 / 12, "feet"),
  24557. weight: math.unit(357, "lb"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/solex-draconov/front.svg",
  24561. extra: 1993 / 1865,
  24562. bottom: 117 / 2111
  24563. }
  24564. },
  24565. },
  24566. [
  24567. {
  24568. name: "Natural Height",
  24569. height: math.unit(7 + 5 / 12, "feet"),
  24570. default: true
  24571. },
  24572. {
  24573. name: "Macro",
  24574. height: math.unit(350, "feet")
  24575. },
  24576. {
  24577. name: "Macro+",
  24578. height: math.unit(1000, "feet")
  24579. },
  24580. {
  24581. name: "Megamacro",
  24582. height: math.unit(20, "km")
  24583. },
  24584. {
  24585. name: "Megamacro+",
  24586. height: math.unit(1000, "km")
  24587. },
  24588. {
  24589. name: "Gigamacro",
  24590. height: math.unit(2.5, "Gm")
  24591. },
  24592. {
  24593. name: "Teramacro",
  24594. height: math.unit(15, "Tm")
  24595. },
  24596. {
  24597. name: "Galactic",
  24598. height: math.unit(30, "Zm")
  24599. },
  24600. {
  24601. name: "Universal",
  24602. height: math.unit(21000, "Ym")
  24603. },
  24604. {
  24605. name: "Omniversal",
  24606. height: math.unit(9.861e50, "Ym")
  24607. },
  24608. {
  24609. name: "Existential",
  24610. height: math.unit(1e300, "meters")
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24616. {
  24617. side: {
  24618. height: math.unit(25, "feet"),
  24619. weight: math.unit(90000, "lb"),
  24620. name: "Side",
  24621. image: {
  24622. source: "./media/characters/mandarax/side.svg",
  24623. extra: 614 / 332,
  24624. bottom: 55 / 630
  24625. }
  24626. },
  24627. head: {
  24628. height: math.unit(11.4, "feet"),
  24629. name: "Head",
  24630. image: {
  24631. source: "./media/characters/mandarax/head.svg"
  24632. }
  24633. },
  24634. belly: {
  24635. height: math.unit(33, "feet"),
  24636. name: "Belly",
  24637. capacity: math.unit(500, "people"),
  24638. image: {
  24639. source: "./media/characters/mandarax/belly.svg"
  24640. }
  24641. },
  24642. dick: {
  24643. height: math.unit(8.46, "feet"),
  24644. name: "Dick",
  24645. image: {
  24646. source: "./media/characters/mandarax/dick.svg"
  24647. }
  24648. },
  24649. top: {
  24650. height: math.unit(28, "meters"),
  24651. name: "Top",
  24652. image: {
  24653. source: "./media/characters/mandarax/top.svg"
  24654. }
  24655. },
  24656. },
  24657. [
  24658. {
  24659. name: "Normal",
  24660. height: math.unit(25, "feet"),
  24661. default: true
  24662. },
  24663. ]
  24664. ))
  24665. characterMakers.push(() => makeCharacter(
  24666. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24667. {
  24668. front: {
  24669. height: math.unit(5, "feet"),
  24670. weight: math.unit(90, "lb"),
  24671. name: "Front",
  24672. image: {
  24673. source: "./media/characters/pixil/front.svg",
  24674. extra: 2000 / 1618,
  24675. bottom: 12.3 / 2011
  24676. }
  24677. },
  24678. },
  24679. [
  24680. {
  24681. name: "Normal",
  24682. height: math.unit(5, "feet"),
  24683. default: true
  24684. },
  24685. {
  24686. name: "Megamacro",
  24687. height: math.unit(10, "miles"),
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24693. {
  24694. front: {
  24695. height: math.unit(7 + 2 / 12, "feet"),
  24696. weight: math.unit(200, "lb"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/angel/front.svg",
  24700. extra: 1830 / 1737,
  24701. bottom: 22.6 / 1854,
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(7 + 2 / 12, "feet"),
  24709. default: true
  24710. },
  24711. {
  24712. name: "Macro",
  24713. height: math.unit(1000, "feet")
  24714. },
  24715. {
  24716. name: "Megamacro",
  24717. height: math.unit(2, "miles")
  24718. },
  24719. {
  24720. name: "Gigamacro",
  24721. height: math.unit(20, "earths")
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(5, "feet"),
  24730. weight: math.unit(180, "lb"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/mekana/front.svg",
  24734. extra: 1671 / 1605,
  24735. bottom: 3.5 / 1691
  24736. }
  24737. },
  24738. side: {
  24739. height: math.unit(5, "feet"),
  24740. weight: math.unit(180, "lb"),
  24741. name: "Side",
  24742. image: {
  24743. source: "./media/characters/mekana/side.svg",
  24744. extra: 1671 / 1605,
  24745. bottom: 3.5 / 1691
  24746. }
  24747. },
  24748. back: {
  24749. height: math.unit(5, "feet"),
  24750. weight: math.unit(180, "lb"),
  24751. name: "Back",
  24752. image: {
  24753. source: "./media/characters/mekana/back.svg",
  24754. extra: 1671 / 1605,
  24755. bottom: 3.5 / 1691
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Normal",
  24762. height: math.unit(5, "feet"),
  24763. default: true
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24769. {
  24770. front: {
  24771. height: math.unit(4 + 6 / 12, "feet"),
  24772. weight: math.unit(80, "lb"),
  24773. name: "Front",
  24774. image: {
  24775. source: "./media/characters/pixie/front.svg",
  24776. extra: 1924 / 1825,
  24777. bottom: 22.4 / 1946
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(4 + 6 / 12, "feet"),
  24785. default: true
  24786. },
  24787. {
  24788. name: "Macro",
  24789. height: math.unit(40, "feet")
  24790. },
  24791. ]
  24792. ))
  24793. characterMakers.push(() => makeCharacter(
  24794. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24795. {
  24796. front: {
  24797. height: math.unit(2.1, "meters"),
  24798. weight: math.unit(200, "lb"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/the-lascivious/front.svg",
  24802. extra: 1 / 0.893,
  24803. bottom: 3.5 / 573.7
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Human Scale",
  24810. height: math.unit(2.1, "meters")
  24811. },
  24812. {
  24813. name: "Wolxi Scale",
  24814. height: math.unit(46.2, "m"),
  24815. default: true
  24816. },
  24817. {
  24818. name: "Boinker of Buildings",
  24819. height: math.unit(10, "km")
  24820. },
  24821. {
  24822. name: "Shagger of Skyscrapers",
  24823. height: math.unit(40, "km")
  24824. },
  24825. {
  24826. name: "Banger of Boroughs",
  24827. height: math.unit(4000, "km")
  24828. },
  24829. {
  24830. name: "Screwer of States",
  24831. height: math.unit(100000, "km")
  24832. },
  24833. {
  24834. name: "Pounder of Planets",
  24835. height: math.unit(2000000, "km")
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24841. {
  24842. front: {
  24843. height: math.unit(6, "feet"),
  24844. weight: math.unit(150, "lb"),
  24845. name: "Front",
  24846. image: {
  24847. source: "./media/characters/aj/front.svg",
  24848. extra: 2039 / 1562,
  24849. bottom: 40 / 2079
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(11 + 6 / 12, "feet"),
  24857. default: true
  24858. },
  24859. {
  24860. name: "Megamacro",
  24861. height: math.unit(60, "megameters")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24867. {
  24868. side: {
  24869. height: math.unit(31 + 8 / 12, "feet"),
  24870. weight: math.unit(75000, "kg"),
  24871. name: "Side",
  24872. image: {
  24873. source: "./media/characters/koros/side.svg",
  24874. extra: 1442 / 1297,
  24875. bottom: 122.7 / 1562
  24876. }
  24877. },
  24878. dicksKingsCrown: {
  24879. height: math.unit(6, "feet"),
  24880. name: "Dicks (King's Crown)",
  24881. image: {
  24882. source: "./media/characters/koros/dicks-kings-crown.svg"
  24883. }
  24884. },
  24885. dicksTailSet: {
  24886. height: math.unit(3, "feet"),
  24887. name: "Dicks (Tail Set)",
  24888. image: {
  24889. source: "./media/characters/koros/dicks-tail-set.svg"
  24890. }
  24891. },
  24892. dickCumming: {
  24893. height: math.unit(7.98, "feet"),
  24894. name: "Dick (Cumming)",
  24895. image: {
  24896. source: "./media/characters/koros/dick-cumming.svg"
  24897. }
  24898. },
  24899. dicksBack: {
  24900. height: math.unit(5.9, "feet"),
  24901. name: "Dicks (Back)",
  24902. image: {
  24903. source: "./media/characters/koros/dicks-back.svg"
  24904. }
  24905. },
  24906. dicksFront: {
  24907. height: math.unit(3.72, "feet"),
  24908. name: "Dicks (Front)",
  24909. image: {
  24910. source: "./media/characters/koros/dicks-front.svg"
  24911. }
  24912. },
  24913. dicksPeeking: {
  24914. height: math.unit(3.0, "feet"),
  24915. name: "Dicks (Peeking)",
  24916. image: {
  24917. source: "./media/characters/koros/dicks-peeking.svg"
  24918. }
  24919. },
  24920. eye: {
  24921. height: math.unit(1.7, "feet"),
  24922. name: "Eye",
  24923. image: {
  24924. source: "./media/characters/koros/eye.svg"
  24925. }
  24926. },
  24927. headFront: {
  24928. height: math.unit(11.69, "feet"),
  24929. name: "Head (Front)",
  24930. image: {
  24931. source: "./media/characters/koros/head-front.svg"
  24932. }
  24933. },
  24934. headSide: {
  24935. height: math.unit(14, "feet"),
  24936. name: "Head (Side)",
  24937. image: {
  24938. source: "./media/characters/koros/head-side.svg"
  24939. }
  24940. },
  24941. leg: {
  24942. height: math.unit(17, "feet"),
  24943. name: "Leg",
  24944. image: {
  24945. source: "./media/characters/koros/leg.svg"
  24946. }
  24947. },
  24948. mawSide: {
  24949. height: math.unit(12.8, "feet"),
  24950. name: "Maw (Side)",
  24951. image: {
  24952. source: "./media/characters/koros/maw-side.svg"
  24953. }
  24954. },
  24955. mawSpitting: {
  24956. height: math.unit(17, "feet"),
  24957. name: "Maw (Spitting)",
  24958. image: {
  24959. source: "./media/characters/koros/maw-spitting.svg"
  24960. }
  24961. },
  24962. slit: {
  24963. height: math.unit(2.8, "feet"),
  24964. name: "Slit",
  24965. image: {
  24966. source: "./media/characters/koros/slit.svg"
  24967. }
  24968. },
  24969. stomach: {
  24970. height: math.unit(6.8, "feet"),
  24971. capacity: math.unit(20, "people"),
  24972. name: "Stomach",
  24973. image: {
  24974. source: "./media/characters/koros/stomach.svg"
  24975. }
  24976. },
  24977. wingspanBottom: {
  24978. height: math.unit(114, "feet"),
  24979. name: "Wingspan (Bottom)",
  24980. image: {
  24981. source: "./media/characters/koros/wingspan-bottom.svg"
  24982. }
  24983. },
  24984. wingspanTop: {
  24985. height: math.unit(104, "feet"),
  24986. name: "Wingspan (Top)",
  24987. image: {
  24988. source: "./media/characters/koros/wingspan-top.svg"
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(31 + 8 / 12, "feet"),
  24996. default: true
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(18 + 5 / 12, "feet"),
  25005. weight: math.unit(3750, "kg"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/vexx/front.svg",
  25009. extra: 426 / 396,
  25010. bottom: 31.5 / 458
  25011. }
  25012. },
  25013. maw: {
  25014. height: math.unit(6, "feet"),
  25015. name: "Maw",
  25016. image: {
  25017. source: "./media/characters/vexx/maw.svg"
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Normal",
  25024. height: math.unit(18 + 5 / 12, "feet"),
  25025. default: true
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(17 + 6 / 12, "feet"),
  25034. weight: math.unit(150, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/baadra/front.svg",
  25038. extra: 3137 / 2890,
  25039. bottom: 168.4 / 3305
  25040. }
  25041. },
  25042. back: {
  25043. height: math.unit(17 + 6 / 12, "feet"),
  25044. weight: math.unit(150, "lb"),
  25045. name: "Back",
  25046. image: {
  25047. source: "./media/characters/baadra/back.svg",
  25048. extra: 3142 / 2890,
  25049. bottom: 220 / 3371
  25050. }
  25051. },
  25052. head: {
  25053. height: math.unit(5.45, "feet"),
  25054. name: "Head",
  25055. image: {
  25056. source: "./media/characters/baadra/head.svg"
  25057. }
  25058. },
  25059. headAngry: {
  25060. height: math.unit(4.95, "feet"),
  25061. name: "Head (Angry)",
  25062. image: {
  25063. source: "./media/characters/baadra/head-angry.svg"
  25064. }
  25065. },
  25066. headOpen: {
  25067. height: math.unit(6, "feet"),
  25068. name: "Head (Open)",
  25069. image: {
  25070. source: "./media/characters/baadra/head-open.svg"
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(17 + 6 / 12, "feet"),
  25078. default: true
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25084. {
  25085. front: {
  25086. height: math.unit(7 + 3 / 12, "feet"),
  25087. weight: math.unit(180, "lb"),
  25088. name: "Front",
  25089. image: {
  25090. source: "./media/characters/juri/front.svg",
  25091. extra: 1401 / 1237,
  25092. bottom: 18.5 / 1418
  25093. }
  25094. },
  25095. side: {
  25096. height: math.unit(7 + 3 / 12, "feet"),
  25097. weight: math.unit(180, "lb"),
  25098. name: "Side",
  25099. image: {
  25100. source: "./media/characters/juri/side.svg",
  25101. extra: 1424 / 1242,
  25102. bottom: 18.5 / 1447
  25103. }
  25104. },
  25105. sitting: {
  25106. height: math.unit(6, "feet"),
  25107. weight: math.unit(180, "lb"),
  25108. name: "Sitting",
  25109. image: {
  25110. source: "./media/characters/juri/sitting.svg",
  25111. extra: 1270 / 1143,
  25112. bottom: 100 / 1343
  25113. }
  25114. },
  25115. back: {
  25116. height: math.unit(7 + 3 / 12, "feet"),
  25117. weight: math.unit(180, "lb"),
  25118. name: "Back",
  25119. image: {
  25120. source: "./media/characters/juri/back.svg",
  25121. extra: 1377 / 1240,
  25122. bottom: 23.7 / 1405
  25123. }
  25124. },
  25125. maw: {
  25126. height: math.unit(2.8, "feet"),
  25127. name: "Maw",
  25128. image: {
  25129. source: "./media/characters/juri/maw.svg"
  25130. }
  25131. },
  25132. stomach: {
  25133. height: math.unit(0.89, "feet"),
  25134. capacity: math.unit(4, "liters"),
  25135. name: "Stomach",
  25136. image: {
  25137. source: "./media/characters/juri/stomach.svg"
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(7 + 3 / 12, "feet"),
  25145. default: true
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25151. {
  25152. fox: {
  25153. height: math.unit(5 + 6 / 12, "feet"),
  25154. weight: math.unit(140, "lb"),
  25155. name: "Fox",
  25156. image: {
  25157. source: "./media/characters/maxene-sita/fox.svg",
  25158. extra: 146 / 138,
  25159. bottom: 2.1 / 148.19
  25160. }
  25161. },
  25162. foxLaying: {
  25163. height: math.unit(1.70, "feet"),
  25164. weight: math.unit(140, "lb"),
  25165. name: "Fox (Laying)",
  25166. image: {
  25167. source: "./media/characters/maxene-sita/fox-laying.svg",
  25168. extra: 910 / 572,
  25169. bottom: 71 / 981
  25170. }
  25171. },
  25172. kitsune: {
  25173. height: math.unit(10, "feet"),
  25174. weight: math.unit(800, "lb"),
  25175. name: "Kitsune",
  25176. image: {
  25177. source: "./media/characters/maxene-sita/kitsune.svg",
  25178. extra: 185 / 176,
  25179. bottom: 4.7 / 189.9
  25180. }
  25181. },
  25182. hellhound: {
  25183. height: math.unit(10, "feet"),
  25184. weight: math.unit(700, "lb"),
  25185. name: "Hellhound",
  25186. image: {
  25187. source: "./media/characters/maxene-sita/hellhound.svg",
  25188. extra: 1600 / 1545,
  25189. bottom: 81 / 1681
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Normal",
  25196. height: math.unit(5 + 6 / 12, "feet"),
  25197. default: true
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25203. {
  25204. front: {
  25205. height: math.unit(3 + 4 / 12, "feet"),
  25206. weight: math.unit(70, "lb"),
  25207. name: "Front",
  25208. image: {
  25209. source: "./media/characters/maia/front.svg",
  25210. extra: 227 / 219.5,
  25211. bottom: 40 / 267
  25212. }
  25213. },
  25214. back: {
  25215. height: math.unit(3 + 4 / 12, "feet"),
  25216. weight: math.unit(70, "lb"),
  25217. name: "Back",
  25218. image: {
  25219. source: "./media/characters/maia/back.svg",
  25220. extra: 237 / 225
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(3 + 4 / 12, "feet"),
  25228. default: true
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25234. {
  25235. front: {
  25236. height: math.unit(5 + 10 / 12, "feet"),
  25237. weight: math.unit(197, "lb"),
  25238. name: "Front",
  25239. image: {
  25240. source: "./media/characters/jabaro/front.svg",
  25241. extra: 225 / 216,
  25242. bottom: 5.06 / 230
  25243. }
  25244. },
  25245. back: {
  25246. height: math.unit(5 + 10 / 12, "feet"),
  25247. weight: math.unit(197, "lb"),
  25248. name: "Back",
  25249. image: {
  25250. source: "./media/characters/jabaro/back.svg",
  25251. extra: 225 / 219,
  25252. bottom: 1.9 / 227
  25253. }
  25254. },
  25255. },
  25256. [
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(5 + 10 / 12, "feet"),
  25260. default: true
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(5 + 8 / 12, "feet"),
  25269. weight: math.unit(139, "lb"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/risa/front.svg",
  25273. extra: 270 / 260,
  25274. bottom: 11.2 / 282
  25275. }
  25276. },
  25277. back: {
  25278. height: math.unit(5 + 8 / 12, "feet"),
  25279. weight: math.unit(139, "lb"),
  25280. name: "Back",
  25281. image: {
  25282. source: "./media/characters/risa/back.svg",
  25283. extra: 264 / 255,
  25284. bottom: 4 / 268
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(5 + 8 / 12, "feet"),
  25292. default: true
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(2 + 11 / 12, "feet"),
  25301. weight: math.unit(30, "lb"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/weatley/front.svg",
  25305. bottom: 10.7 / 414,
  25306. extra: 403.5 / 362
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(2 + 11 / 12, "feet"),
  25311. weight: math.unit(30, "lb"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/weatley/back.svg",
  25315. bottom: 10.7 / 414,
  25316. extra: 403.5 / 362
  25317. }
  25318. },
  25319. },
  25320. [
  25321. {
  25322. name: "Normal",
  25323. height: math.unit(2 + 11 / 12, "feet"),
  25324. default: true
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(5 + 2 / 12, "feet"),
  25333. weight: math.unit(50, "kg"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/mercury-crescent/front.svg",
  25337. extra: 1088 / 1033,
  25338. bottom: 18.9 / 1109
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(5 + 2 / 12, "feet"),
  25346. default: true
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(2, "feet"),
  25355. weight: math.unit(15, "kg"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/diamond-jones/front.svg",
  25359. bottom: 16 / 568
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(2, "feet"),
  25367. default: true
  25368. },
  25369. ]
  25370. ))
  25371. characterMakers.push(() => makeCharacter(
  25372. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25373. {
  25374. front: {
  25375. height: math.unit(3, "feet"),
  25376. weight: math.unit(30, "kg"),
  25377. name: "Front",
  25378. image: {
  25379. source: "./media/characters/sweet-bit/front.svg",
  25380. extra: 675 / 567,
  25381. bottom: 27.7 / 703
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(3, "feet"),
  25389. default: true
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25395. {
  25396. side: {
  25397. height: math.unit(9.178, "feet"),
  25398. weight: math.unit(500, "lb"),
  25399. name: "Side",
  25400. image: {
  25401. source: "./media/characters/umbrazen/side.svg",
  25402. extra: 1730 / 1473,
  25403. bottom: 34.6 / 1765
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Normal",
  25410. height: math.unit(9.178, "feet"),
  25411. default: true
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25417. {
  25418. front: {
  25419. height: math.unit(10, "feet"),
  25420. weight: math.unit(750, "lb"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/arlist/front.svg",
  25424. extra: 961 / 778,
  25425. bottom: 6.2 / 986
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(10, "feet"),
  25433. default: true
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(5 + 1 / 12, "feet"),
  25442. weight: math.unit(110, "lb"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/aradel/front.svg",
  25446. extra: 324 / 303,
  25447. bottom: 3.6 / 329.4
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Normal",
  25454. height: math.unit(5 + 1 / 12, "feet"),
  25455. default: true
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25461. {
  25462. front: {
  25463. height: math.unit(3 + 8 / 12, "feet"),
  25464. weight: math.unit(50, "lb"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/serryn/front.svg",
  25468. extra: 1792 / 1656,
  25469. bottom: 43.5 / 1840
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Normal",
  25476. height: math.unit(3 + 8 / 12, "feet"),
  25477. default: true
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Xavier Thyme" },
  25483. {
  25484. front: {
  25485. height: math.unit(7 + 10 / 12, "feet"),
  25486. weight: math.unit(255, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/xavier-thyme/front.svg",
  25490. extra: 3733 / 3642,
  25491. bottom: 131 / 3869
  25492. }
  25493. },
  25494. frontRaven: {
  25495. height: math.unit(7 + 10 / 12, "feet"),
  25496. weight: math.unit(255, "lb"),
  25497. name: "Front (Raven)",
  25498. image: {
  25499. source: "./media/characters/xavier-thyme/front-raven.svg",
  25500. extra: 4385 / 3642,
  25501. bottom: 131 / 4517
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Normal",
  25508. height: math.unit(7 + 10 / 12, "feet"),
  25509. default: true
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(1.6, "m"),
  25518. weight: math.unit(50, "kg"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/kiki/front.svg",
  25522. extra: 4682 / 3610,
  25523. bottom: 115 / 4777
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Normal",
  25530. height: math.unit(1.6, "meters"),
  25531. default: true
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25537. {
  25538. front: {
  25539. height: math.unit(50, "m"),
  25540. weight: math.unit(500, "tonnes"),
  25541. name: "Front",
  25542. image: {
  25543. source: "./media/characters/ryoko/front.svg",
  25544. extra: 4632 / 3926,
  25545. bottom: 193 / 4823
  25546. }
  25547. },
  25548. },
  25549. [
  25550. {
  25551. name: "Normal",
  25552. height: math.unit(50, "meters"),
  25553. default: true
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(30, "m"),
  25562. weight: math.unit(22, "tonnes"),
  25563. name: "Front",
  25564. image: {
  25565. source: "./media/characters/elio/front.svg",
  25566. extra: 4582 / 3720,
  25567. bottom: 236 / 4828
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Normal",
  25574. height: math.unit(30, "meters"),
  25575. default: true
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25581. {
  25582. front: {
  25583. height: math.unit(6 + 3 / 12, "feet"),
  25584. weight: math.unit(120, "lb"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/azura/front.svg",
  25588. extra: 1149 / 1135,
  25589. bottom: 45 / 1194
  25590. }
  25591. },
  25592. frontClothed: {
  25593. height: math.unit(6 + 3 / 12, "feet"),
  25594. weight: math.unit(120, "lb"),
  25595. name: "Front (Clothed)",
  25596. image: {
  25597. source: "./media/characters/azura/front-clothed.svg",
  25598. extra: 1149 / 1135,
  25599. bottom: 45 / 1194
  25600. }
  25601. },
  25602. },
  25603. [
  25604. {
  25605. name: "Normal",
  25606. height: math.unit(6 + 3 / 12, "feet"),
  25607. default: true
  25608. },
  25609. {
  25610. name: "Macro",
  25611. height: math.unit(20 + 6 / 12, "feet")
  25612. },
  25613. {
  25614. name: "Megamacro",
  25615. height: math.unit(12, "miles")
  25616. },
  25617. {
  25618. name: "Gigamacro",
  25619. height: math.unit(10000, "miles")
  25620. },
  25621. {
  25622. name: "Teramacro",
  25623. height: math.unit(900000, "miles")
  25624. },
  25625. ]
  25626. ))
  25627. characterMakers.push(() => makeCharacter(
  25628. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25629. {
  25630. front: {
  25631. height: math.unit(12, "feet"),
  25632. weight: math.unit(1, "ton"),
  25633. capacity: math.unit(660000, "gallons"),
  25634. name: "Front",
  25635. image: {
  25636. source: "./media/characters/zeus/front.svg",
  25637. extra: 5005 / 4717,
  25638. bottom: 363 / 5388
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(12, "feet")
  25646. },
  25647. {
  25648. name: "Preferred Size",
  25649. height: math.unit(0.5, "miles"),
  25650. default: true
  25651. },
  25652. {
  25653. name: "Giga Horse",
  25654. height: math.unit(300, "miles")
  25655. },
  25656. {
  25657. name: "Riding Planets",
  25658. height: math.unit(30, "megameters")
  25659. },
  25660. {
  25661. name: "Cosmic Giant",
  25662. height: math.unit(3, "zettameters")
  25663. },
  25664. {
  25665. name: "Breeding God",
  25666. height: math.unit(9.92e22, "yottameters")
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25672. {
  25673. side: {
  25674. height: math.unit(9, "feet"),
  25675. weight: math.unit(1500, "kg"),
  25676. name: "Side",
  25677. image: {
  25678. source: "./media/characters/fang/side.svg",
  25679. extra: 924 / 866,
  25680. bottom: 47.5 / 972.3
  25681. }
  25682. },
  25683. },
  25684. [
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(9, "feet"),
  25688. default: true
  25689. },
  25690. {
  25691. name: "Macro",
  25692. height: math.unit(75 + 6 / 12, "feet")
  25693. },
  25694. {
  25695. name: "Teramacro",
  25696. height: math.unit(50000, "miles")
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(10, "feet"),
  25705. weight: math.unit(2, "tons"),
  25706. name: "Front",
  25707. image: {
  25708. source: "./media/characters/rekhit/front.svg",
  25709. extra: 2796 / 2590,
  25710. bottom: 225 / 3022
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Normal",
  25717. height: math.unit(10, "feet"),
  25718. default: true
  25719. },
  25720. {
  25721. name: "Macro",
  25722. height: math.unit(500, "feet")
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Dahlia Verrick" },
  25728. {
  25729. front: {
  25730. height: math.unit(7 + 6.451 / 12, "feet"),
  25731. weight: math.unit(310, "lb"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/dahlia-verrick/front.svg",
  25735. extra: 1488 / 1365,
  25736. bottom: 6.2 / 1495
  25737. }
  25738. },
  25739. back: {
  25740. height: math.unit(7 + 6.451 / 12, "feet"),
  25741. weight: math.unit(310, "lb"),
  25742. name: "Back",
  25743. image: {
  25744. source: "./media/characters/dahlia-verrick/back.svg",
  25745. extra: 1472 / 1351,
  25746. bottom: 5.28 / 1477
  25747. }
  25748. },
  25749. frontBusiness: {
  25750. height: math.unit(7 + 6.451 / 12, "feet"),
  25751. weight: math.unit(200, "lb"),
  25752. name: "Front (Business)",
  25753. image: {
  25754. source: "./media/characters/dahlia-verrick/front-business.svg",
  25755. extra: 1478 / 1381,
  25756. bottom: 5.5 / 1484
  25757. }
  25758. },
  25759. frontCasual: {
  25760. height: math.unit(7 + 6.451 / 12, "feet"),
  25761. weight: math.unit(200, "lb"),
  25762. name: "Front (Casual)",
  25763. image: {
  25764. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25765. extra: 1478 / 1381,
  25766. bottom: 5.5 / 1484
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Travel-Sized",
  25773. height: math.unit(7.45, "inches")
  25774. },
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(7 + 6.451 / 12, "feet"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Hitting the Town",
  25782. height: math.unit(37 + 8 / 12, "feet")
  25783. },
  25784. {
  25785. name: "Stomp in the Suburbs",
  25786. height: math.unit(964 + 9.728 / 12, "feet")
  25787. },
  25788. {
  25789. name: "Sit on the City",
  25790. height: math.unit(61747 + 10.592 / 12, "feet")
  25791. },
  25792. {
  25793. name: "Glomp the Globe",
  25794. height: math.unit(252919327 + 4.832 / 12, "feet")
  25795. },
  25796. ]
  25797. ))
  25798. characterMakers.push(() => makeCharacter(
  25799. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25800. {
  25801. front: {
  25802. height: math.unit(6 + 4 / 12, "feet"),
  25803. weight: math.unit(320, "lb"),
  25804. name: "Front",
  25805. image: {
  25806. source: "./media/characters/balina-mahigan/front.svg",
  25807. extra: 447 / 428,
  25808. bottom: 18 / 466
  25809. }
  25810. },
  25811. back: {
  25812. height: math.unit(6 + 4 / 12, "feet"),
  25813. weight: math.unit(320, "lb"),
  25814. name: "Back",
  25815. image: {
  25816. source: "./media/characters/balina-mahigan/back.svg",
  25817. extra: 445 / 428,
  25818. bottom: 4.07 / 448
  25819. }
  25820. },
  25821. arm: {
  25822. height: math.unit(1.88, "feet"),
  25823. name: "Arm",
  25824. image: {
  25825. source: "./media/characters/balina-mahigan/arm.svg"
  25826. }
  25827. },
  25828. backPort: {
  25829. height: math.unit(0.685, "feet"),
  25830. name: "Back Port",
  25831. image: {
  25832. source: "./media/characters/balina-mahigan/back-port.svg"
  25833. }
  25834. },
  25835. hoofpaw: {
  25836. height: math.unit(1.41, "feet"),
  25837. name: "Hoofpaw",
  25838. image: {
  25839. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25840. }
  25841. },
  25842. leftHandBack: {
  25843. height: math.unit(0.938, "feet"),
  25844. name: "Left Hand (Back)",
  25845. image: {
  25846. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25847. }
  25848. },
  25849. leftHandFront: {
  25850. height: math.unit(0.938, "feet"),
  25851. name: "Left Hand (Front)",
  25852. image: {
  25853. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25854. }
  25855. },
  25856. rightHandBack: {
  25857. height: math.unit(0.95, "feet"),
  25858. name: "Right Hand (Back)",
  25859. image: {
  25860. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25861. }
  25862. },
  25863. rightHandFront: {
  25864. height: math.unit(0.95, "feet"),
  25865. name: "Right Hand (Front)",
  25866. image: {
  25867. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(6 + 4 / 12, "feet"),
  25875. default: true
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25881. {
  25882. front: {
  25883. height: math.unit(6, "feet"),
  25884. weight: math.unit(320, "lb"),
  25885. name: "Front",
  25886. image: {
  25887. source: "./media/characters/balina-mejeri/front.svg",
  25888. extra: 517 / 488,
  25889. bottom: 44.2 / 561
  25890. }
  25891. },
  25892. },
  25893. [
  25894. {
  25895. name: "Normal",
  25896. height: math.unit(6 + 4 / 12, "feet")
  25897. },
  25898. {
  25899. name: "Business",
  25900. height: math.unit(155, "feet"),
  25901. default: true
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25907. {
  25908. kneeling: {
  25909. height: math.unit(6 + 4 / 12, "feet"),
  25910. weight: math.unit(300 * 20, "lb"),
  25911. name: "Kneeling",
  25912. image: {
  25913. source: "./media/characters/balbarian/kneeling.svg",
  25914. extra: 922 / 862,
  25915. bottom: 42.4 / 965
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(6 + 4 / 12, "feet")
  25923. },
  25924. {
  25925. name: "Treasured",
  25926. height: math.unit(18 + 9 / 12, "feet"),
  25927. default: true
  25928. },
  25929. {
  25930. name: "Macro",
  25931. height: math.unit(900, "feet")
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(6 + 4 / 12, "feet"),
  25940. weight: math.unit(325, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/balina-amarini/front.svg",
  25944. extra: 415 / 403,
  25945. bottom: 19 / 433.4
  25946. }
  25947. },
  25948. back: {
  25949. height: math.unit(6 + 4 / 12, "feet"),
  25950. weight: math.unit(325, "lb"),
  25951. name: "Back",
  25952. image: {
  25953. source: "./media/characters/balina-amarini/back.svg",
  25954. extra: 415 / 403,
  25955. bottom: 13.5 / 432
  25956. }
  25957. },
  25958. overdrive: {
  25959. height: math.unit(6 + 4 / 12, "feet"),
  25960. weight: math.unit(400, "lb"),
  25961. name: "Overdrive",
  25962. image: {
  25963. source: "./media/characters/balina-amarini/overdrive.svg",
  25964. extra: 269 / 259,
  25965. bottom: 12 / 282
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Boom",
  25972. height: math.unit(9 + 10 / 12, "feet"),
  25973. default: true
  25974. },
  25975. {
  25976. name: "Macro",
  25977. height: math.unit(280, "feet")
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25983. {
  25984. goddess: {
  25985. height: math.unit(600, "feet"),
  25986. weight: math.unit(2000000, "tons"),
  25987. name: "Goddess",
  25988. image: {
  25989. source: "./media/characters/lady-kubwa/goddess.svg",
  25990. extra: 1240.5 / 1223,
  25991. bottom: 22 / 1263
  25992. }
  25993. },
  25994. goddesser: {
  25995. height: math.unit(900, "feet"),
  25996. weight: math.unit(20000000, "lb"),
  25997. name: "Goddess-er",
  25998. image: {
  25999. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26000. extra: 899 / 888,
  26001. bottom: 12.6 / 912
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Macro",
  26008. height: math.unit(600, "feet"),
  26009. default: true
  26010. },
  26011. {
  26012. name: "Megamacro",
  26013. height: math.unit(250, "miles")
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(7 + 7 / 12, "feet"),
  26022. weight: math.unit(250, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/tala-grovehorn/front.svg",
  26026. extra: 2636 / 2525,
  26027. bottom: 147 / 2781
  26028. }
  26029. },
  26030. back: {
  26031. height: math.unit(7 + 7 / 12, "feet"),
  26032. weight: math.unit(250, "lb"),
  26033. name: "Back",
  26034. image: {
  26035. source: "./media/characters/tala-grovehorn/back.svg",
  26036. extra: 2635 / 2539,
  26037. bottom: 100 / 2732.8
  26038. }
  26039. },
  26040. mouth: {
  26041. height: math.unit(1.15, "feet"),
  26042. name: "Mouth",
  26043. image: {
  26044. source: "./media/characters/tala-grovehorn/mouth.svg"
  26045. }
  26046. },
  26047. dick: {
  26048. height: math.unit(2.36, "feet"),
  26049. name: "Dick",
  26050. image: {
  26051. source: "./media/characters/tala-grovehorn/dick.svg"
  26052. }
  26053. },
  26054. slit: {
  26055. height: math.unit(0.61, "feet"),
  26056. name: "Slit",
  26057. image: {
  26058. source: "./media/characters/tala-grovehorn/slit.svg"
  26059. }
  26060. },
  26061. },
  26062. [
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26067. {
  26068. front: {
  26069. height: math.unit(7 + 7 / 12, "feet"),
  26070. weight: math.unit(225, "lb"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/epona/front.svg",
  26074. extra: 2445 / 2290,
  26075. bottom: 251 / 2696
  26076. }
  26077. },
  26078. back: {
  26079. height: math.unit(7 + 7 / 12, "feet"),
  26080. weight: math.unit(225, "lb"),
  26081. name: "Back",
  26082. image: {
  26083. source: "./media/characters/epona/back.svg",
  26084. extra: 2546 / 2408,
  26085. bottom: 44 / 2589
  26086. }
  26087. },
  26088. genitals: {
  26089. height: math.unit(1.5, "feet"),
  26090. name: "Genitals",
  26091. image: {
  26092. source: "./media/characters/epona/genitals.svg"
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(7 + 7 / 12, "feet"),
  26100. default: true
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(7, "feet"),
  26109. weight: math.unit(518, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/avia-bloodbourn/front.svg",
  26113. extra: 1466 / 1350,
  26114. bottom: 65 / 1527
  26115. }
  26116. },
  26117. },
  26118. [
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26123. {
  26124. front: {
  26125. height: math.unit(9.35, "feet"),
  26126. weight: math.unit(600, "lb"),
  26127. name: "Front",
  26128. image: {
  26129. source: "./media/characters/amera/front.svg",
  26130. extra: 891 / 818,
  26131. bottom: 30 / 922.7
  26132. }
  26133. },
  26134. back: {
  26135. height: math.unit(9.35, "feet"),
  26136. weight: math.unit(600, "lb"),
  26137. name: "Back",
  26138. image: {
  26139. source: "./media/characters/amera/back.svg",
  26140. extra: 876 / 824,
  26141. bottom: 6.8 / 884
  26142. }
  26143. },
  26144. dick: {
  26145. height: math.unit(2.14, "feet"),
  26146. name: "Dick",
  26147. image: {
  26148. source: "./media/characters/amera/dick.svg"
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Normal",
  26155. height: math.unit(9.35, "feet"),
  26156. default: true
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26162. {
  26163. kneeling: {
  26164. height: math.unit(3 + 4 / 12, "feet"),
  26165. weight: math.unit(90, "lb"),
  26166. name: "Kneeling",
  26167. image: {
  26168. source: "./media/characters/rosewen/kneeling.svg",
  26169. extra: 1835 / 1571,
  26170. bottom: 27.7 / 1862
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Normal",
  26177. height: math.unit(3 + 4 / 12, "feet"),
  26178. default: true
  26179. },
  26180. ]
  26181. ))
  26182. characterMakers.push(() => makeCharacter(
  26183. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26184. {
  26185. front: {
  26186. height: math.unit(5 + 10 / 12, "feet"),
  26187. weight: math.unit(200, "lb"),
  26188. name: "Front",
  26189. image: {
  26190. source: "./media/characters/sabah/front.svg",
  26191. extra: 849 / 763,
  26192. bottom: 33.9 / 881
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(5 + 10 / 12, "feet"),
  26200. default: true
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26206. {
  26207. front: {
  26208. height: math.unit(3 + 5 / 12, "feet"),
  26209. weight: math.unit(40, "kg"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/purple-flame/front.svg",
  26213. extra: 1577 / 1412,
  26214. bottom: 97 / 1694
  26215. }
  26216. },
  26217. frontDressed: {
  26218. height: math.unit(3 + 5 / 12, "feet"),
  26219. weight: math.unit(40, "kg"),
  26220. name: "Front (Dressed)",
  26221. image: {
  26222. source: "./media/characters/purple-flame/front-dressed.svg",
  26223. extra: 1577 / 1412,
  26224. bottom: 97 / 1694
  26225. }
  26226. },
  26227. headphones: {
  26228. height: math.unit(0.85, "feet"),
  26229. name: "Headphones",
  26230. image: {
  26231. source: "./media/characters/purple-flame/headphones.svg"
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Really Small",
  26238. height: math.unit(5, "cm")
  26239. },
  26240. {
  26241. name: "Micro",
  26242. height: math.unit(1 + 5 / 12, "feet")
  26243. },
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(3 + 5 / 12, "feet"),
  26247. default: true
  26248. },
  26249. {
  26250. name: "Minimacro",
  26251. height: math.unit(125, "feet")
  26252. },
  26253. {
  26254. name: "Macro",
  26255. height: math.unit(0.5, "miles")
  26256. },
  26257. {
  26258. name: "Megamacro",
  26259. height: math.unit(50, "miles")
  26260. },
  26261. {
  26262. name: "Gigantic",
  26263. height: math.unit(750, "miles")
  26264. },
  26265. {
  26266. name: "Planetary",
  26267. height: math.unit(15000, "miles")
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(14, "feet"),
  26276. weight: math.unit(959, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/arsenal/front.svg",
  26280. extra: 2357 / 2157,
  26281. bottom: 93 / 2458
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Normal",
  26288. height: math.unit(14, "feet"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26295. {
  26296. front: {
  26297. height: math.unit(6, "feet"),
  26298. weight: math.unit(150, "lb"),
  26299. name: "Front",
  26300. image: {
  26301. source: "./media/characters/adira/front.svg",
  26302. extra: 1078 / 1029,
  26303. bottom: 87 / 1166
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Micro",
  26310. height: math.unit(4, "inches"),
  26311. default: true
  26312. },
  26313. {
  26314. name: "Macro",
  26315. height: math.unit(50, "feet")
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26321. {
  26322. front: {
  26323. height: math.unit(16, "feet"),
  26324. weight: math.unit(1000, "lb"),
  26325. name: "Front",
  26326. image: {
  26327. source: "./media/characters/grim/front.svg",
  26328. extra: 622 / 614,
  26329. bottom: 18.1 / 642
  26330. }
  26331. },
  26332. back: {
  26333. height: math.unit(16, "feet"),
  26334. weight: math.unit(1000, "lb"),
  26335. name: "Back",
  26336. image: {
  26337. source: "./media/characters/grim/back.svg",
  26338. extra: 610.6 / 602,
  26339. bottom: 40.8 / 652
  26340. }
  26341. },
  26342. hunched: {
  26343. height: math.unit(9.75, "feet"),
  26344. weight: math.unit(1000, "lb"),
  26345. name: "Hunched",
  26346. image: {
  26347. source: "./media/characters/grim/hunched.svg",
  26348. extra: 304 / 297,
  26349. bottom: 35.4 / 394
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(16, "feet"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(2.3, "meters"),
  26366. weight: math.unit(300, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/sinja/front-sfw.svg",
  26370. extra: 1393 / 1294,
  26371. bottom: 70 / 1463
  26372. }
  26373. },
  26374. frontNsfw: {
  26375. height: math.unit(2.3, "meters"),
  26376. weight: math.unit(300, "lb"),
  26377. name: "Front (NSFW)",
  26378. image: {
  26379. source: "./media/characters/sinja/front-nsfw.svg",
  26380. extra: 1393 / 1294,
  26381. bottom: 70 / 1463
  26382. }
  26383. },
  26384. back: {
  26385. height: math.unit(2.3, "meters"),
  26386. weight: math.unit(300, "lb"),
  26387. name: "Back",
  26388. image: {
  26389. source: "./media/characters/sinja/back.svg",
  26390. extra: 1393 / 1294,
  26391. bottom: 70 / 1463
  26392. }
  26393. },
  26394. head: {
  26395. height: math.unit(1.771, "feet"),
  26396. name: "Head",
  26397. image: {
  26398. source: "./media/characters/sinja/head.svg"
  26399. }
  26400. },
  26401. slit: {
  26402. height: math.unit(0.8, "feet"),
  26403. name: "Slit",
  26404. image: {
  26405. source: "./media/characters/sinja/slit.svg"
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(2.3, "meters")
  26413. },
  26414. {
  26415. name: "Macro",
  26416. height: math.unit(91, "meters"),
  26417. default: true
  26418. },
  26419. {
  26420. name: "Megamacro",
  26421. height: math.unit(91440, "meters")
  26422. },
  26423. {
  26424. name: "Gigamacro",
  26425. height: math.unit(60960000, "meters")
  26426. },
  26427. {
  26428. name: "Teramacro",
  26429. height: math.unit(9144000000, "meters")
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(1.7, "meters"),
  26438. weight: math.unit(130, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/kyu/front.svg",
  26442. extra: 415 / 395,
  26443. bottom: 5 / 420
  26444. }
  26445. },
  26446. head: {
  26447. height: math.unit(1.75, "feet"),
  26448. name: "Head",
  26449. image: {
  26450. source: "./media/characters/kyu/head.svg"
  26451. }
  26452. },
  26453. foot: {
  26454. height: math.unit(0.81, "feet"),
  26455. name: "Foot",
  26456. image: {
  26457. source: "./media/characters/kyu/foot.svg"
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(1.7, "meters")
  26465. },
  26466. {
  26467. name: "Macro",
  26468. height: math.unit(131, "feet"),
  26469. default: true
  26470. },
  26471. {
  26472. name: "Megamacro",
  26473. height: math.unit(91440, "meters")
  26474. },
  26475. {
  26476. name: "Gigamacro",
  26477. height: math.unit(60960000, "meters")
  26478. },
  26479. {
  26480. name: "Teramacro",
  26481. height: math.unit(9144000000, "meters")
  26482. },
  26483. ]
  26484. ))
  26485. characterMakers.push(() => makeCharacter(
  26486. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26487. {
  26488. front: {
  26489. height: math.unit(7 + 1 / 12, "feet"),
  26490. weight: math.unit(250, "lb"),
  26491. name: "Front",
  26492. image: {
  26493. source: "./media/characters/joey/front.svg",
  26494. extra: 1791 / 1537,
  26495. bottom: 28 / 1816
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Micro",
  26502. height: math.unit(3, "inches")
  26503. },
  26504. {
  26505. name: "Normal",
  26506. height: math.unit(7 + 1 / 12, "feet"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(165, "cm"),
  26516. weight: math.unit(140, "lb"),
  26517. name: "Front",
  26518. image: {
  26519. source: "./media/characters/sam-evans/front.svg",
  26520. extra: 3417 / 3230,
  26521. bottom: 41.3 / 3417
  26522. }
  26523. },
  26524. frontSixTails: {
  26525. height: math.unit(165, "cm"),
  26526. weight: math.unit(140, "lb"),
  26527. name: "Front-six-tails",
  26528. image: {
  26529. source: "./media/characters/sam-evans/front-six-tails.svg",
  26530. extra: 3417 / 3230,
  26531. bottom: 41.3 / 3417
  26532. }
  26533. },
  26534. back: {
  26535. height: math.unit(165, "cm"),
  26536. weight: math.unit(140, "lb"),
  26537. name: "Back",
  26538. image: {
  26539. source: "./media/characters/sam-evans/back.svg",
  26540. extra: 3227 / 3032,
  26541. bottom: 6.8 / 3234
  26542. }
  26543. },
  26544. face: {
  26545. height: math.unit(0.68, "feet"),
  26546. name: "Face",
  26547. image: {
  26548. source: "./media/characters/sam-evans/face.svg"
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(165, "cm"),
  26556. default: true
  26557. },
  26558. {
  26559. name: "Macro",
  26560. height: math.unit(100, "meters")
  26561. },
  26562. {
  26563. name: "Macro+",
  26564. height: math.unit(800, "meters")
  26565. },
  26566. {
  26567. name: "Macro++",
  26568. height: math.unit(3, "km")
  26569. },
  26570. {
  26571. name: "Macro+++",
  26572. height: math.unit(30, "km")
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26578. {
  26579. front: {
  26580. height: math.unit(10, "feet"),
  26581. weight: math.unit(750, "lb"),
  26582. name: "Front",
  26583. image: {
  26584. source: "./media/characters/juliet-a/front.svg",
  26585. extra: 1766 / 1720,
  26586. bottom: 43 / 1809
  26587. }
  26588. },
  26589. back: {
  26590. height: math.unit(10, "feet"),
  26591. weight: math.unit(750, "lb"),
  26592. name: "Back",
  26593. image: {
  26594. source: "./media/characters/juliet-a/back.svg",
  26595. extra: 1781 / 1734,
  26596. bottom: 35 / 1810,
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Normal",
  26603. height: math.unit(10, "feet"),
  26604. default: true
  26605. },
  26606. {
  26607. name: "Dragon Form",
  26608. height: math.unit(250, "feet")
  26609. },
  26610. {
  26611. name: "Macro",
  26612. height: math.unit(1000, "feet")
  26613. },
  26614. {
  26615. name: "Megamacro",
  26616. height: math.unit(10000, "feet")
  26617. }
  26618. ]
  26619. ))
  26620. characterMakers.push(() => makeCharacter(
  26621. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26622. {
  26623. regular: {
  26624. height: math.unit(7 + 3 / 12, "feet"),
  26625. weight: math.unit(260, "lb"),
  26626. name: "Regular",
  26627. image: {
  26628. source: "./media/characters/wild/regular.svg",
  26629. extra: 97.45 / 92,
  26630. bottom: 6.8 / 104.3
  26631. }
  26632. },
  26633. biggums: {
  26634. height: math.unit(8 + 6 / 12, "feet"),
  26635. weight: math.unit(425, "lb"),
  26636. name: "Biggums",
  26637. image: {
  26638. source: "./media/characters/wild/biggums.svg",
  26639. extra: 97.45 / 92,
  26640. bottom: 7.5 / 132.34
  26641. }
  26642. },
  26643. mawRegular: {
  26644. height: math.unit(1.24, "feet"),
  26645. name: "Maw (Regular)",
  26646. image: {
  26647. source: "./media/characters/wild/maw.svg"
  26648. }
  26649. },
  26650. mawBiggums: {
  26651. height: math.unit(1.47, "feet"),
  26652. name: "Maw (Biggums)",
  26653. image: {
  26654. source: "./media/characters/wild/maw.svg"
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(7 + 3 / 12, "feet"),
  26662. default: true
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26668. {
  26669. front: {
  26670. height: math.unit(2.5, "meters"),
  26671. weight: math.unit(200, "kg"),
  26672. name: "Front",
  26673. image: {
  26674. source: "./media/characters/vidar/front.svg",
  26675. extra: 2994 / 2795,
  26676. bottom: 56 / 3061
  26677. }
  26678. },
  26679. back: {
  26680. height: math.unit(2.5, "meters"),
  26681. weight: math.unit(200, "kg"),
  26682. name: "Back",
  26683. image: {
  26684. source: "./media/characters/vidar/back.svg",
  26685. extra: 3131 / 2928,
  26686. bottom: 13.5 / 3141.5
  26687. }
  26688. },
  26689. feral: {
  26690. height: math.unit(2.5, "meters"),
  26691. weight: math.unit(2000, "kg"),
  26692. name: "Feral",
  26693. image: {
  26694. source: "./media/characters/vidar/feral.svg",
  26695. extra: 2790 / 1765,
  26696. bottom: 6 / 2796
  26697. }
  26698. },
  26699. },
  26700. [
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(2.5, "meters"),
  26704. default: true
  26705. },
  26706. {
  26707. name: "Macro",
  26708. height: math.unit(100, "meters")
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(5 + 9 / 12, "feet"),
  26717. weight: math.unit(120, "lb"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/ash/front.svg",
  26721. extra: 2189 / 1961,
  26722. bottom: 5.2 / 2194
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(5 + 9 / 12, "feet"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(9, "feet"),
  26739. weight: math.unit(10000, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/gygabite/front.svg",
  26743. bottom: 31.7 / 537.8,
  26744. extra: 505 / 370
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(9, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(12, "feet"),
  26761. weight: math.unit(35000, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/p0tat0/front.svg",
  26765. extra: 1065 / 921,
  26766. bottom: 55.7 / 1121.25
  26767. }
  26768. },
  26769. },
  26770. [
  26771. {
  26772. name: "Normal",
  26773. height: math.unit(12, "feet"),
  26774. default: true
  26775. },
  26776. ]
  26777. ))
  26778. characterMakers.push(() => makeCharacter(
  26779. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26780. {
  26781. side: {
  26782. height: math.unit(6.5, "feet"),
  26783. weight: math.unit(800, "lb"),
  26784. name: "Side",
  26785. image: {
  26786. source: "./media/characters/dusk/side.svg",
  26787. extra: 615 / 373,
  26788. bottom: 53 / 664
  26789. }
  26790. },
  26791. sitting: {
  26792. height: math.unit(7, "feet"),
  26793. weight: math.unit(800, "lb"),
  26794. name: "Sitting",
  26795. image: {
  26796. source: "./media/characters/dusk/sitting.svg",
  26797. extra: 753 / 425,
  26798. bottom: 33 / 774
  26799. }
  26800. },
  26801. head: {
  26802. height: math.unit(6.1, "feet"),
  26803. name: "Head",
  26804. image: {
  26805. source: "./media/characters/dusk/head.svg"
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(7, "feet"),
  26813. default: true
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(15, "feet"),
  26822. weight: math.unit(7000, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/jay-direwolf/front.svg",
  26826. extra: 1810 / 1732,
  26827. bottom: 66 / 1892
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Normal",
  26834. height: math.unit(15, "feet"),
  26835. default: true
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(4 + 9 / 12, "feet"),
  26844. weight: math.unit(130, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/anchovie/front.svg",
  26848. extra: 382 / 350,
  26849. bottom: 25 / 409
  26850. }
  26851. },
  26852. back: {
  26853. height: math.unit(4 + 9 / 12, "feet"),
  26854. weight: math.unit(130, "lb"),
  26855. name: "Back",
  26856. image: {
  26857. source: "./media/characters/anchovie/back.svg",
  26858. extra: 385 / 352,
  26859. bottom: 16.6 / 402
  26860. }
  26861. },
  26862. frontDressed: {
  26863. height: math.unit(4 + 9 / 12, "feet"),
  26864. weight: math.unit(130, "lb"),
  26865. name: "Front (Dressed)",
  26866. image: {
  26867. source: "./media/characters/anchovie/front-dressed.svg",
  26868. extra: 382 / 350,
  26869. bottom: 25 / 409
  26870. }
  26871. },
  26872. backDressed: {
  26873. height: math.unit(4 + 9 / 12, "feet"),
  26874. weight: math.unit(130, "lb"),
  26875. name: "Back (Dressed)",
  26876. image: {
  26877. source: "./media/characters/anchovie/back-dressed.svg",
  26878. extra: 385 / 352,
  26879. bottom: 16.6 / 402
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Micro",
  26886. height: math.unit(6.4, "inches")
  26887. },
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(4 + 9 / 12, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(2, "meters"),
  26900. weight: math.unit(180, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/acidrenamon/front.svg",
  26904. extra: 987 / 890,
  26905. bottom: 22.8 / 1009
  26906. }
  26907. },
  26908. back: {
  26909. height: math.unit(2, "meters"),
  26910. weight: math.unit(180, "lb"),
  26911. name: "Back",
  26912. image: {
  26913. source: "./media/characters/acidrenamon/back.svg",
  26914. extra: 983 / 891,
  26915. bottom: 8.4 / 992
  26916. }
  26917. },
  26918. head: {
  26919. height: math.unit(1.92, "feet"),
  26920. name: "Head",
  26921. image: {
  26922. source: "./media/characters/acidrenamon/head.svg"
  26923. }
  26924. },
  26925. rump: {
  26926. height: math.unit(1.72, "feet"),
  26927. name: "Rump",
  26928. image: {
  26929. source: "./media/characters/acidrenamon/rump.svg"
  26930. }
  26931. },
  26932. tail: {
  26933. height: math.unit(4.2, "feet"),
  26934. name: "Tail",
  26935. image: {
  26936. source: "./media/characters/acidrenamon/tail.svg"
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(2, "meters"),
  26944. default: true
  26945. },
  26946. {
  26947. name: "Minimacro",
  26948. height: math.unit(7, "meters")
  26949. },
  26950. {
  26951. name: "Macro",
  26952. height: math.unit(200, "meters")
  26953. },
  26954. {
  26955. name: "Gigamacro",
  26956. height: math.unit(0.2, "earths")
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(6, "feet"),
  26965. weight: math.unit(150, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/kenzie-lee/front.svg",
  26969. extra: 1525 / 1465,
  26970. bottom: 45 / 1570
  26971. }
  26972. },
  26973. side: {
  26974. height: math.unit(6, "feet"),
  26975. weight: math.unit(150, "lb"),
  26976. name: "Side",
  26977. image: {
  26978. source: "./media/characters/kenzie-lee/side.svg",
  26979. extra: 5505 / 5383,
  26980. bottom: 60 / 5573
  26981. }
  26982. },
  26983. paw: {
  26984. height: math.unit(0.57, "feet"),
  26985. name: "Paw",
  26986. image: {
  26987. source: "./media/characters/kenzie-lee/paw.svg"
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(152, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "Megamacro",
  26999. height: math.unit(7, "miles")
  27000. },
  27001. {
  27002. name: "Gigamacro",
  27003. height: math.unit(8000, "miles")
  27004. },
  27005. ]
  27006. ))
  27007. characterMakers.push(() => makeCharacter(
  27008. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27009. {
  27010. side: {
  27011. height: math.unit(6, "feet"),
  27012. weight: math.unit(150, "lb"),
  27013. name: "Side",
  27014. image: {
  27015. source: "./media/characters/withers/side.svg",
  27016. extra: 1830 / 1728,
  27017. bottom: 96 / 1927
  27018. }
  27019. },
  27020. front: {
  27021. height: math.unit(6, "feet"),
  27022. weight: math.unit(150, "lb"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/withers/front.svg",
  27026. extra: 1514 / 1438,
  27027. bottom: 118 / 1632
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Macro",
  27034. height: math.unit(168, "feet"),
  27035. default: true
  27036. },
  27037. {
  27038. name: "Megamacro",
  27039. height: math.unit(15, "miles")
  27040. }
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(6 + 7 / 12, "feet"),
  27048. weight: math.unit(250, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/nemoskii/front.svg",
  27052. extra: 2270 / 1734,
  27053. bottom: 86 / 2354
  27054. }
  27055. },
  27056. back: {
  27057. height: math.unit(6 + 7 / 12, "feet"),
  27058. weight: math.unit(250, "lb"),
  27059. name: "Back",
  27060. image: {
  27061. source: "./media/characters/nemoskii/back.svg",
  27062. extra: 1845 / 1788,
  27063. bottom: 10.5 / 1852
  27064. }
  27065. },
  27066. head: {
  27067. height: math.unit(1.31, "feet"),
  27068. name: "Head",
  27069. image: {
  27070. source: "./media/characters/nemoskii/head.svg"
  27071. }
  27072. },
  27073. },
  27074. [
  27075. {
  27076. name: "Micro",
  27077. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27078. },
  27079. {
  27080. name: "Normal",
  27081. height: math.unit(6 + 7 / 12, "feet"),
  27082. default: true
  27083. },
  27084. {
  27085. name: "Macro",
  27086. height: math.unit((6 + 7 / 12) * 150, "feet")
  27087. },
  27088. {
  27089. name: "Macro+",
  27090. height: math.unit((6 + 7 / 12) * 500, "feet")
  27091. },
  27092. {
  27093. name: "Megamacro",
  27094. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27095. },
  27096. ]
  27097. ))
  27098. characterMakers.push(() => makeCharacter(
  27099. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27100. {
  27101. front: {
  27102. height: math.unit(1, "mile"),
  27103. weight: math.unit(265261.9, "lb"),
  27104. name: "Front",
  27105. image: {
  27106. source: "./media/characters/shui/front.svg",
  27107. extra: 1633 / 1564,
  27108. bottom: 91.5 / 1726
  27109. }
  27110. },
  27111. },
  27112. [
  27113. {
  27114. name: "Macro",
  27115. height: math.unit(1, "mile"),
  27116. default: true
  27117. },
  27118. ]
  27119. ))
  27120. characterMakers.push(() => makeCharacter(
  27121. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27122. {
  27123. front: {
  27124. height: math.unit(12 + 6 / 12, "feet"),
  27125. weight: math.unit(1342, "lb"),
  27126. name: "Front",
  27127. image: {
  27128. source: "./media/characters/arokh-takakura/front.svg",
  27129. extra: 1089 / 1043,
  27130. bottom: 77.4 / 1176.7
  27131. }
  27132. },
  27133. back: {
  27134. height: math.unit(12 + 6 / 12, "feet"),
  27135. weight: math.unit(1342, "lb"),
  27136. name: "Back",
  27137. image: {
  27138. source: "./media/characters/arokh-takakura/back.svg",
  27139. extra: 1046 / 1019,
  27140. bottom: 102 / 1150
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Big",
  27147. height: math.unit(12 + 6 / 12, "feet"),
  27148. default: true
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(5 + 6 / 12, "feet"),
  27157. weight: math.unit(150, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/theo/front.svg",
  27161. extra: 1184 / 1131,
  27162. bottom: 7.4 / 1191
  27163. }
  27164. },
  27165. },
  27166. [
  27167. {
  27168. name: "Micro",
  27169. height: math.unit(5, "inches")
  27170. },
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(5 + 6 / 12, "feet"),
  27174. default: true
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(5 + 9 / 12, "feet"),
  27183. weight: math.unit(130, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/cecelia-swift/front.svg",
  27187. extra: 502 / 484,
  27188. bottom: 23 / 523
  27189. }
  27190. },
  27191. back: {
  27192. height: math.unit(5 + 9 / 12, "feet"),
  27193. weight: math.unit(130, "lb"),
  27194. name: "Back",
  27195. image: {
  27196. source: "./media/characters/cecelia-swift/back.svg",
  27197. extra: 499 / 485,
  27198. bottom: 12 / 511
  27199. }
  27200. },
  27201. head: {
  27202. height: math.unit(0.90, "feet"),
  27203. name: "Head",
  27204. image: {
  27205. source: "./media/characters/cecelia-swift/head.svg"
  27206. }
  27207. },
  27208. rump: {
  27209. height: math.unit(1.75, "feet"),
  27210. name: "Rump",
  27211. image: {
  27212. source: "./media/characters/cecelia-swift/rump.svg"
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Normal",
  27219. height: math.unit(5 + 9 / 12, "feet"),
  27220. default: true
  27221. },
  27222. {
  27223. name: "Big",
  27224. height: math.unit(50, "feet")
  27225. },
  27226. {
  27227. name: "Macro",
  27228. height: math.unit(100, "feet")
  27229. },
  27230. {
  27231. name: "Macro+",
  27232. height: math.unit(500, "feet")
  27233. },
  27234. {
  27235. name: "Macro++",
  27236. height: math.unit(1000, "feet")
  27237. },
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27242. {
  27243. front: {
  27244. height: math.unit(6, "feet"),
  27245. weight: math.unit(150, "lb"),
  27246. name: "Front",
  27247. image: {
  27248. source: "./media/characters/kaunan/front.svg",
  27249. extra: 2890 / 2523,
  27250. bottom: 49 / 2939
  27251. }
  27252. },
  27253. },
  27254. [
  27255. {
  27256. name: "Macro",
  27257. height: math.unit(150, "feet"),
  27258. default: true
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27264. {
  27265. front: {
  27266. height: math.unit(175, "cm"),
  27267. weight: math.unit(60, "kg"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/fei/front.svg",
  27271. extra: 2581 / 2400,
  27272. bottom: 82.2 / 2663
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Mortal",
  27279. height: math.unit(175, "cm")
  27280. },
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(3500, "m"),
  27284. default: true
  27285. },
  27286. {
  27287. name: "Stroll",
  27288. height: math.unit(17.5, "km")
  27289. },
  27290. {
  27291. name: "Showoff",
  27292. height: math.unit(175, "km")
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(7, "feet"),
  27301. weight: math.unit(1000, "kg"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/edrax/front.svg",
  27305. extra: 2838 / 2550,
  27306. bottom: 130 / 2968
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Small",
  27313. height: math.unit(7, "feet")
  27314. },
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(1500, "meters")
  27318. },
  27319. {
  27320. name: "Mega",
  27321. height: math.unit(12000000, "km"),
  27322. default: true
  27323. },
  27324. {
  27325. name: "Megamacro",
  27326. height: math.unit(10600000, "lightyears")
  27327. },
  27328. {
  27329. name: "Hypermacro",
  27330. height: math.unit(256, "yottameters")
  27331. },
  27332. ]
  27333. ))
  27334. characterMakers.push(() => makeCharacter(
  27335. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27336. {
  27337. front: {
  27338. height: math.unit(10, "feet"),
  27339. weight: math.unit(750, "lb"),
  27340. name: "Front",
  27341. image: {
  27342. source: "./media/characters/clove/front.svg",
  27343. extra: 2031 / 1860,
  27344. bottom: 47.8 / 2080
  27345. }
  27346. },
  27347. back: {
  27348. height: math.unit(10, "feet"),
  27349. weight: math.unit(750, "lb"),
  27350. name: "Back",
  27351. image: {
  27352. source: "./media/characters/clove/back.svg",
  27353. extra: 2025 / 1859,
  27354. bottom: 46 / 2071
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(10, "feet"),
  27362. default: true
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27368. {
  27369. front: {
  27370. height: math.unit(4, "feet"),
  27371. weight: math.unit(50, "lb"),
  27372. name: "Front",
  27373. image: {
  27374. source: "./media/characters/alex-rabbit/front.svg",
  27375. extra: 507 / 458,
  27376. bottom: 18.5 / 527
  27377. }
  27378. },
  27379. back: {
  27380. height: math.unit(4, "feet"),
  27381. weight: math.unit(50, "lb"),
  27382. name: "Back",
  27383. image: {
  27384. source: "./media/characters/alex-rabbit/back.svg",
  27385. extra: 502 / 460,
  27386. bottom: 18.9 / 521
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(4, "feet"),
  27394. default: true
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(1 + 3 / 12, "feet"),
  27403. weight: math.unit(80, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/zander-rose/front.svg",
  27407. extra: 916 / 797,
  27408. bottom: 17 / 933
  27409. }
  27410. },
  27411. back: {
  27412. height: math.unit(1 + 3 / 12, "feet"),
  27413. weight: math.unit(80, "lb"),
  27414. name: "Back",
  27415. image: {
  27416. source: "./media/characters/zander-rose/back.svg",
  27417. extra: 903 / 779,
  27418. bottom: 31 / 934
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(1 + 3 / 12, "feet"),
  27426. default: true
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27432. {
  27433. anthro: {
  27434. height: math.unit(6, "feet"),
  27435. weight: math.unit(150, "lb"),
  27436. name: "Anthro",
  27437. image: {
  27438. source: "./media/characters/razz/anthro.svg",
  27439. extra: 1437 / 1343,
  27440. bottom: 48 / 1485
  27441. }
  27442. },
  27443. feral: {
  27444. height: math.unit(6, "feet"),
  27445. weight: math.unit(150, "lb"),
  27446. name: "Feral",
  27447. image: {
  27448. source: "./media/characters/razz/feral.svg",
  27449. extra: 2569 / 1385,
  27450. bottom: 95 / 2664
  27451. }
  27452. },
  27453. },
  27454. [
  27455. {
  27456. name: "Normal",
  27457. height: math.unit(6, "feet"),
  27458. default: true
  27459. },
  27460. ]
  27461. ))
  27462. characterMakers.push(() => makeCharacter(
  27463. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27464. {
  27465. front: {
  27466. height: math.unit(9 + 4 / 12, "feet"),
  27467. weight: math.unit(500, "lb"),
  27468. name: "Front",
  27469. image: {
  27470. source: "./media/characters/morrigan/front.svg",
  27471. extra: 2707 / 2579,
  27472. bottom: 156 / 2863
  27473. }
  27474. },
  27475. },
  27476. [
  27477. {
  27478. name: "Normal",
  27479. height: math.unit(9 + 4 / 12, "feet"),
  27480. default: true
  27481. },
  27482. ]
  27483. ))
  27484. characterMakers.push(() => makeCharacter(
  27485. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27486. {
  27487. front: {
  27488. height: math.unit(5, "stories"),
  27489. weight: math.unit(4000, "lb"),
  27490. name: "Front",
  27491. image: {
  27492. source: "./media/characters/jenene/front.svg",
  27493. extra: 1780 / 1710,
  27494. bottom: 57 / 1837
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(5, "stories"),
  27502. default: true
  27503. },
  27504. ]
  27505. ))
  27506. characterMakers.push(() => makeCharacter(
  27507. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27508. {
  27509. front: {
  27510. height: math.unit(6, "feet"),
  27511. weight: math.unit(150, "lb"),
  27512. name: "Front",
  27513. image: {
  27514. source: "./media/characters/vix-archaser/front.svg",
  27515. extra: 2767 / 2562,
  27516. bottom: 36 / 2803
  27517. }
  27518. },
  27519. },
  27520. [
  27521. {
  27522. name: "Micro",
  27523. height: math.unit(1, "foot")
  27524. },
  27525. {
  27526. name: "Normal",
  27527. height: math.unit(6 + 5 / 12, "feet")
  27528. },
  27529. {
  27530. name: "Minimacro",
  27531. height: math.unit(500, "feet")
  27532. },
  27533. {
  27534. name: "Macro",
  27535. height: math.unit(4, "miles")
  27536. },
  27537. {
  27538. name: "Megamacro",
  27539. height: math.unit(250, "miles"),
  27540. default: true
  27541. },
  27542. {
  27543. name: "Gigamacro",
  27544. height: math.unit(1, "universe")
  27545. },
  27546. {
  27547. name: "Endgame",
  27548. height: math.unit(100, "multiverses")
  27549. }
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27554. {
  27555. taurSfw: {
  27556. height: math.unit(10, "meters"),
  27557. weight: math.unit(17500, "kg"),
  27558. name: "Taur",
  27559. image: {
  27560. source: "./media/characters/faey/taur-sfw.svg",
  27561. extra: 1200 / 968,
  27562. bottom: 41 / 1241
  27563. }
  27564. },
  27565. chestmaw: {
  27566. height: math.unit(2.01, "meters"),
  27567. name: "Chestmaw",
  27568. image: {
  27569. source: "./media/characters/faey/chestmaw.svg"
  27570. }
  27571. },
  27572. foot: {
  27573. height: math.unit(2.43, "meters"),
  27574. name: "Foot",
  27575. image: {
  27576. source: "./media/characters/faey/foot.svg"
  27577. }
  27578. },
  27579. jaws: {
  27580. height: math.unit(1.66, "meters"),
  27581. name: "Jaws",
  27582. image: {
  27583. source: "./media/characters/faey/jaws.svg"
  27584. }
  27585. },
  27586. tongues: {
  27587. height: math.unit(2.01, "meters"),
  27588. name: "Tongues",
  27589. image: {
  27590. source: "./media/characters/faey/tongues.svg"
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Small",
  27597. height: math.unit(10, "meters"),
  27598. default: true
  27599. },
  27600. {
  27601. name: "Big",
  27602. height: math.unit(500000, "km")
  27603. },
  27604. ]
  27605. ))
  27606. characterMakers.push(() => makeCharacter(
  27607. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27608. {
  27609. front: {
  27610. height: math.unit(7, "feet"),
  27611. weight: math.unit(275, "lb"),
  27612. name: "Front",
  27613. image: {
  27614. source: "./media/characters/roku/front.svg",
  27615. extra: 903 / 878,
  27616. bottom: 37 / 940
  27617. }
  27618. },
  27619. },
  27620. [
  27621. {
  27622. name: "Normal",
  27623. height: math.unit(7, "feet"),
  27624. default: true
  27625. },
  27626. {
  27627. name: "Macro",
  27628. height: math.unit(500, "feet")
  27629. },
  27630. {
  27631. name: "Megamacro",
  27632. height: math.unit(200, "miles")
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(6 + 2 / 12, "feet"),
  27641. weight: math.unit(150, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/lira/front.svg",
  27645. extra: 1727 / 1605,
  27646. bottom: 26 / 1753
  27647. }
  27648. },
  27649. back: {
  27650. height: math.unit(6 + 2 / 12, "feet"),
  27651. weight: math.unit(150, "lb"),
  27652. name: "Back",
  27653. image: {
  27654. source: "./media/characters/lira/back.svg",
  27655. extra: 1713/1621,
  27656. bottom: 20/1733
  27657. }
  27658. },
  27659. hand: {
  27660. height: math.unit(0.75, "feet"),
  27661. name: "Hand",
  27662. image: {
  27663. source: "./media/characters/lira/hand.svg"
  27664. }
  27665. },
  27666. maw: {
  27667. height: math.unit(0.65, "feet"),
  27668. name: "Maw",
  27669. image: {
  27670. source: "./media/characters/lira/maw.svg"
  27671. }
  27672. },
  27673. pawDigi: {
  27674. height: math.unit(1.6, "feet"),
  27675. name: "Paw Digi",
  27676. image: {
  27677. source: "./media/characters/lira/paw-digi.svg"
  27678. }
  27679. },
  27680. pawPlanti: {
  27681. height: math.unit(1.4, "feet"),
  27682. name: "Paw Planti",
  27683. image: {
  27684. source: "./media/characters/lira/paw-planti.svg"
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(6 + 2 / 12, "feet"),
  27692. default: true
  27693. },
  27694. {
  27695. name: "Macro",
  27696. height: math.unit(100, "feet")
  27697. },
  27698. {
  27699. name: "Macro²",
  27700. height: math.unit(1600, "feet")
  27701. },
  27702. {
  27703. name: "Planetary",
  27704. height: math.unit(20, "earths")
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27710. {
  27711. front: {
  27712. height: math.unit(6, "feet"),
  27713. weight: math.unit(150, "lb"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/hadjet/front.svg",
  27717. extra: 1480 / 1346,
  27718. bottom: 26 / 1506
  27719. }
  27720. },
  27721. frontNsfw: {
  27722. height: math.unit(6, "feet"),
  27723. weight: math.unit(150, "lb"),
  27724. name: "Front (NSFW)",
  27725. image: {
  27726. source: "./media/characters/hadjet/front-nsfw.svg",
  27727. extra: 1440 / 1358,
  27728. bottom: 52 / 1492
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Macro",
  27735. height: math.unit(10, "stories"),
  27736. default: true
  27737. },
  27738. {
  27739. name: "Megamacro",
  27740. height: math.unit(1.5, "miles")
  27741. },
  27742. {
  27743. name: "Megamacro+",
  27744. height: math.unit(5, "miles")
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27750. {
  27751. side: {
  27752. height: math.unit(106, "feet"),
  27753. weight: math.unit(500, "tonnes"),
  27754. name: "Side",
  27755. image: {
  27756. source: "./media/characters/kodran/side.svg",
  27757. extra: 553 / 480,
  27758. bottom: 33 / 586
  27759. }
  27760. },
  27761. front: {
  27762. height: math.unit(132, "feet"),
  27763. weight: math.unit(500, "tonnes"),
  27764. name: "Front",
  27765. image: {
  27766. source: "./media/characters/kodran/front.svg",
  27767. extra: 667 / 643,
  27768. bottom: 42 / 709
  27769. }
  27770. },
  27771. flying: {
  27772. height: math.unit(350, "feet"),
  27773. weight: math.unit(500, "tonnes"),
  27774. name: "Flying",
  27775. image: {
  27776. source: "./media/characters/kodran/flying.svg"
  27777. }
  27778. },
  27779. foot: {
  27780. height: math.unit(33, "feet"),
  27781. name: "Foot",
  27782. image: {
  27783. source: "./media/characters/kodran/foot.svg"
  27784. }
  27785. },
  27786. footFront: {
  27787. height: math.unit(19, "feet"),
  27788. name: "Foot (Front)",
  27789. image: {
  27790. source: "./media/characters/kodran/foot-front.svg",
  27791. extra: 261 / 261,
  27792. bottom: 91 / 352
  27793. }
  27794. },
  27795. headFront: {
  27796. height: math.unit(53, "feet"),
  27797. name: "Head (Front)",
  27798. image: {
  27799. source: "./media/characters/kodran/head-front.svg"
  27800. }
  27801. },
  27802. headSide: {
  27803. height: math.unit(65, "feet"),
  27804. name: "Head (Side)",
  27805. image: {
  27806. source: "./media/characters/kodran/head-side.svg"
  27807. }
  27808. },
  27809. throat: {
  27810. height: math.unit(79, "feet"),
  27811. name: "Throat",
  27812. image: {
  27813. source: "./media/characters/kodran/throat.svg"
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Large",
  27820. height: math.unit(106, "feet"),
  27821. default: true
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27827. {
  27828. side: {
  27829. height: math.unit(11, "feet"),
  27830. weight: math.unit(150, "lb"),
  27831. name: "Side",
  27832. image: {
  27833. source: "./media/characters/pyxaron/side.svg",
  27834. extra: 305 / 195,
  27835. bottom: 17 / 322
  27836. }
  27837. },
  27838. },
  27839. [
  27840. {
  27841. name: "Normal",
  27842. height: math.unit(11, "feet"),
  27843. default: true
  27844. },
  27845. ]
  27846. ))
  27847. characterMakers.push(() => makeCharacter(
  27848. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27849. {
  27850. front: {
  27851. height: math.unit(6, "feet"),
  27852. weight: math.unit(150, "lb"),
  27853. name: "Front",
  27854. image: {
  27855. source: "./media/characters/meep/front.svg",
  27856. extra: 88 / 80,
  27857. bottom: 6 / 94
  27858. }
  27859. },
  27860. },
  27861. [
  27862. {
  27863. name: "Fun Sized",
  27864. height: math.unit(2, "inches"),
  27865. default: true
  27866. },
  27867. {
  27868. name: "Friend Sized",
  27869. height: math.unit(8, "inches")
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27875. {
  27876. front: {
  27877. height: math.unit(15, "feet"),
  27878. weight: math.unit(2500, "lb"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/holly-rabbit/front.svg",
  27882. extra: 1433 / 1233,
  27883. bottom: 125 / 1558
  27884. }
  27885. },
  27886. dick: {
  27887. height: math.unit(4.6, "feet"),
  27888. name: "Dick",
  27889. image: {
  27890. source: "./media/characters/holly-rabbit/dick.svg"
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(15, "feet"),
  27898. default: true
  27899. },
  27900. {
  27901. name: "Macro",
  27902. height: math.unit(250, "feet")
  27903. },
  27904. {
  27905. name: "Macro+",
  27906. height: math.unit(2500, "feet")
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(3.02, "meters"),
  27915. weight: math.unit(500, "kg"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/drena/front.svg",
  27919. extra: 282 / 243,
  27920. bottom: 8 / 290
  27921. }
  27922. },
  27923. side: {
  27924. height: math.unit(3.02, "meters"),
  27925. weight: math.unit(500, "kg"),
  27926. name: "Side",
  27927. image: {
  27928. source: "./media/characters/drena/side.svg",
  27929. extra: 280 / 245,
  27930. bottom: 10 / 290
  27931. }
  27932. },
  27933. back: {
  27934. height: math.unit(3.02, "meters"),
  27935. weight: math.unit(500, "kg"),
  27936. name: "Back",
  27937. image: {
  27938. source: "./media/characters/drena/back.svg",
  27939. extra: 278 / 243,
  27940. bottom: 2 / 280
  27941. }
  27942. },
  27943. foot: {
  27944. height: math.unit(0.75, "meters"),
  27945. name: "Foot",
  27946. image: {
  27947. source: "./media/characters/drena/foot.svg"
  27948. }
  27949. },
  27950. maw: {
  27951. height: math.unit(0.82, "meters"),
  27952. name: "Maw",
  27953. image: {
  27954. source: "./media/characters/drena/maw.svg"
  27955. }
  27956. },
  27957. rump: {
  27958. height: math.unit(0.93, "meters"),
  27959. name: "Rump",
  27960. image: {
  27961. source: "./media/characters/drena/rump.svg"
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(3.02, "meters"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(6 + 4 / 12, "feet"),
  27978. weight: math.unit(250, "lb"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/remmyzilla/front.svg",
  27982. extra: 4033 / 3588,
  27983. bottom: 123 / 4156
  27984. }
  27985. },
  27986. back: {
  27987. height: math.unit(6 + 4 / 12, "feet"),
  27988. weight: math.unit(250, "lb"),
  27989. name: "Back",
  27990. image: {
  27991. source: "./media/characters/remmyzilla/back.svg",
  27992. extra: 2687 / 2555,
  27993. bottom: 48 / 2735
  27994. }
  27995. },
  27996. frontFancy: {
  27997. height: math.unit(6 + 4 / 12, "feet"),
  27998. weight: math.unit(250, "lb"),
  27999. name: "Front (Fancy)",
  28000. image: {
  28001. source: "./media/characters/remmyzilla/front-fancy.svg",
  28002. extra: 4119 / 3419,
  28003. bottom: 237 / 4356
  28004. }
  28005. },
  28006. paw: {
  28007. height: math.unit(1.73, "feet"),
  28008. name: "Paw",
  28009. image: {
  28010. source: "./media/characters/remmyzilla/paw.svg"
  28011. }
  28012. },
  28013. maw: {
  28014. height: math.unit(1.73, "feet"),
  28015. name: "Maw",
  28016. image: {
  28017. source: "./media/characters/remmyzilla/maw.svg"
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Normal",
  28024. height: math.unit(6 + 4 / 12, "feet")
  28025. },
  28026. {
  28027. name: "Minimacro",
  28028. height: math.unit(12 + 8 / 12, "feet")
  28029. },
  28030. {
  28031. name: "Normal",
  28032. height: math.unit(640, "feet"),
  28033. default: true
  28034. },
  28035. {
  28036. name: "Megamacro",
  28037. height: math.unit(6400, "feet")
  28038. },
  28039. {
  28040. name: "Gigamacro",
  28041. height: math.unit(64000, "miles")
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(2.5, "meters"),
  28050. weight: math.unit(300, "lb"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/lawrence/front.svg",
  28054. extra: 357 / 335,
  28055. bottom: 30 / 387
  28056. }
  28057. },
  28058. back: {
  28059. height: math.unit(2.5, "meters"),
  28060. weight: math.unit(300, "lb"),
  28061. name: "Back",
  28062. image: {
  28063. source: "./media/characters/lawrence/back.svg",
  28064. extra: 357 / 338,
  28065. bottom: 16 / 373
  28066. }
  28067. },
  28068. head: {
  28069. height: math.unit(0.9, "meter"),
  28070. name: "Head",
  28071. image: {
  28072. source: "./media/characters/lawrence/head.svg"
  28073. }
  28074. },
  28075. maw: {
  28076. height: math.unit(0.7, "meter"),
  28077. name: "Maw",
  28078. image: {
  28079. source: "./media/characters/lawrence/maw.svg"
  28080. }
  28081. },
  28082. footBottom: {
  28083. height: math.unit(0.5, "meter"),
  28084. name: "Foot (Bottom)",
  28085. image: {
  28086. source: "./media/characters/lawrence/foot-bottom.svg"
  28087. }
  28088. },
  28089. footTop: {
  28090. height: math.unit(0.5, "meter"),
  28091. name: "Foot (Top)",
  28092. image: {
  28093. source: "./media/characters/lawrence/foot-top.svg"
  28094. }
  28095. },
  28096. },
  28097. [
  28098. {
  28099. name: "Normal",
  28100. height: math.unit(2.5, "meters"),
  28101. default: true
  28102. },
  28103. {
  28104. name: "Macro",
  28105. height: math.unit(95, "meters")
  28106. },
  28107. {
  28108. name: "Megamacro",
  28109. height: math.unit(150, "km")
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28115. {
  28116. front: {
  28117. height: math.unit(4.2, "meters"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/sydney/front.svg",
  28121. extra: 1323 / 1277,
  28122. bottom: 111 / 1434
  28123. }
  28124. },
  28125. },
  28126. [
  28127. {
  28128. name: "Normal",
  28129. height: math.unit(4.2, "meters"),
  28130. default: true
  28131. },
  28132. ]
  28133. ))
  28134. characterMakers.push(() => makeCharacter(
  28135. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28136. {
  28137. back: {
  28138. height: math.unit(201, "feet"),
  28139. name: "Back",
  28140. image: {
  28141. source: "./media/characters/jessica/back.svg",
  28142. extra: 273 / 259,
  28143. bottom: 7 / 280
  28144. }
  28145. },
  28146. },
  28147. [
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(201, "feet"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Megamacro",
  28155. height: math.unit(8, "miles")
  28156. },
  28157. ]
  28158. ))
  28159. characterMakers.push(() => makeCharacter(
  28160. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28161. {
  28162. side: {
  28163. height: math.unit(320, "cm"),
  28164. name: "Side",
  28165. image: {
  28166. source: "./media/characters/victoria/side.svg",
  28167. extra: 778 / 346,
  28168. bottom: 56 / 834
  28169. }
  28170. },
  28171. maw: {
  28172. height: math.unit(5.9, "feet"),
  28173. name: "Maw",
  28174. image: {
  28175. source: "./media/characters/victoria/maw.svg"
  28176. }
  28177. },
  28178. },
  28179. [
  28180. {
  28181. name: "Normal",
  28182. height: math.unit(320, "cm"),
  28183. default: true
  28184. },
  28185. ]
  28186. ))
  28187. characterMakers.push(() => makeCharacter(
  28188. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28189. {
  28190. front: {
  28191. height: math.unit(5 + 6 / 12, "feet"),
  28192. name: "Front",
  28193. image: {
  28194. source: "./media/characters/cat/front.svg",
  28195. extra: 1374 / 1257,
  28196. bottom: 59 / 1433
  28197. }
  28198. },
  28199. back: {
  28200. height: math.unit(5 + 6 / 12, "feet"),
  28201. name: "Back",
  28202. image: {
  28203. source: "./media/characters/cat/back.svg",
  28204. extra: 1337 / 1226,
  28205. bottom: 34 / 1371
  28206. }
  28207. },
  28208. taur: {
  28209. height: math.unit(7, "feet"),
  28210. name: "Taur",
  28211. image: {
  28212. source: "./media/characters/cat/taur.svg",
  28213. extra: 1345 / 1231,
  28214. bottom: 66 / 1411
  28215. }
  28216. },
  28217. lucario: {
  28218. height: math.unit(4, "feet"),
  28219. name: "Lucario",
  28220. image: {
  28221. source: "./media/characters/cat/lucario.svg",
  28222. extra: 1470 / 1318,
  28223. bottom: 65 / 1535
  28224. }
  28225. },
  28226. megaLucario: {
  28227. height: math.unit(4, "feet"),
  28228. name: "Mega Lucario",
  28229. image: {
  28230. source: "./media/characters/cat/mega-lucario.svg",
  28231. extra: 1515 / 1319,
  28232. bottom: 63 / 1578
  28233. }
  28234. },
  28235. nickit: {
  28236. height: math.unit(2, "feet"),
  28237. name: "Nickit",
  28238. image: {
  28239. source: "./media/characters/cat/nickit.svg",
  28240. extra: 1980 / 1585,
  28241. bottom: 102 / 2082
  28242. }
  28243. },
  28244. lopunnyFront: {
  28245. height: math.unit(5, "feet"),
  28246. name: "Lopunny (Front)",
  28247. image: {
  28248. source: "./media/characters/cat/lopunny-front.svg",
  28249. extra: 1782 / 1469,
  28250. bottom: 38 / 1820
  28251. }
  28252. },
  28253. lopunnyBack: {
  28254. height: math.unit(5, "feet"),
  28255. name: "Lopunny (Back)",
  28256. image: {
  28257. source: "./media/characters/cat/lopunny-back.svg",
  28258. extra: 1660 / 1490,
  28259. bottom: 25 / 1685
  28260. }
  28261. },
  28262. },
  28263. [
  28264. {
  28265. name: "Really small",
  28266. height: math.unit(1, "nm")
  28267. },
  28268. {
  28269. name: "Micro",
  28270. height: math.unit(5, "inches")
  28271. },
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(5 + 6 / 12, "feet"),
  28275. default: true
  28276. },
  28277. {
  28278. name: "Macro",
  28279. height: math.unit(50, "feet")
  28280. },
  28281. {
  28282. name: "Macro+",
  28283. height: math.unit(150, "feet")
  28284. },
  28285. {
  28286. name: "Megamacro",
  28287. height: math.unit(100, "miles")
  28288. },
  28289. ]
  28290. ))
  28291. characterMakers.push(() => makeCharacter(
  28292. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28293. {
  28294. front: {
  28295. height: math.unit(63.4, "meters"),
  28296. weight: math.unit(3.28349e+6, "kilograms"),
  28297. name: "Front",
  28298. image: {
  28299. source: "./media/characters/kirina-violet/front.svg",
  28300. extra: 2812 / 2725,
  28301. bottom: 0 / 2812
  28302. }
  28303. },
  28304. back: {
  28305. height: math.unit(63.4, "meters"),
  28306. weight: math.unit(3.28349e+6, "kilograms"),
  28307. name: "Back",
  28308. image: {
  28309. source: "./media/characters/kirina-violet/back.svg",
  28310. extra: 2812 / 2725,
  28311. bottom: 0 / 2812
  28312. }
  28313. },
  28314. mouth: {
  28315. height: math.unit(4.35, "meters"),
  28316. name: "Mouth",
  28317. image: {
  28318. source: "./media/characters/kirina-violet/mouth.svg"
  28319. }
  28320. },
  28321. paw: {
  28322. height: math.unit(5.6, "meters"),
  28323. name: "Paw",
  28324. image: {
  28325. source: "./media/characters/kirina-violet/paw.svg"
  28326. }
  28327. },
  28328. tail: {
  28329. height: math.unit(18, "meters"),
  28330. name: "Tail",
  28331. image: {
  28332. source: "./media/characters/kirina-violet/tail.svg"
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Macro",
  28339. height: math.unit(63.4, "meters"),
  28340. default: true
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(60, "feet"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/cat-gigachu/front.svg",
  28352. extra: 1024 / 780,
  28353. bottom: 23 / 1047
  28354. }
  28355. },
  28356. back: {
  28357. height: math.unit(60, "feet"),
  28358. name: "Back",
  28359. image: {
  28360. source: "./media/characters/cat-gigachu/back.svg",
  28361. extra: 1024 / 780,
  28362. bottom: 23 / 1047
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Dynamax",
  28369. height: math.unit(60, "feet"),
  28370. default: true
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28376. {
  28377. front: {
  28378. height: math.unit(6, "feet"),
  28379. weight: math.unit(150, "lb"),
  28380. name: "Front",
  28381. image: {
  28382. source: "./media/characters/sfaiyan/front.svg",
  28383. extra: 999 / 978,
  28384. bottom: 5 / 1004
  28385. }
  28386. },
  28387. },
  28388. [
  28389. {
  28390. name: "Normal",
  28391. height: math.unit(1.82, "meters")
  28392. },
  28393. {
  28394. name: "Giant",
  28395. height: math.unit(2.27, "km"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(179, "cm"),
  28405. weight: math.unit(100, "kg"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/raunehkeli/front.svg",
  28409. extra: 1934 / 1926,
  28410. bottom: 0 / 1934
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(179, "cm")
  28418. },
  28419. {
  28420. name: "Maximum",
  28421. height: math.unit(575, "meters"),
  28422. default: true
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28428. {
  28429. front: {
  28430. height: math.unit(6, "feet"),
  28431. weight: math.unit(150, "lb"),
  28432. name: "Front",
  28433. image: {
  28434. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28435. extra: 2625 / 2518,
  28436. bottom: 60 / 2685
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(6 + 2 / 12, "feet")
  28444. },
  28445. {
  28446. name: "Macro",
  28447. height: math.unit(1180, "feet"),
  28448. default: true
  28449. },
  28450. ]
  28451. ))
  28452. characterMakers.push(() => makeCharacter(
  28453. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28454. {
  28455. front: {
  28456. height: math.unit(5 + 6 / 12, "feet"),
  28457. weight: math.unit(108, "lb"),
  28458. name: "Front",
  28459. image: {
  28460. source: "./media/characters/lilith-zott/front.svg",
  28461. extra: 2510 / 2238,
  28462. bottom: 100 / 2610
  28463. }
  28464. },
  28465. frontDressed: {
  28466. height: math.unit(5 + 6 / 12, "feet"),
  28467. weight: math.unit(108, "lb"),
  28468. name: "Front (Dressed)",
  28469. image: {
  28470. source: "./media/characters/lilith-zott/front-dressed.svg",
  28471. extra: 2510 / 2238,
  28472. bottom: 100 / 2610
  28473. }
  28474. },
  28475. },
  28476. [
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(5 + 6 / 12, "feet")
  28480. },
  28481. {
  28482. name: "Macro",
  28483. height: math.unit(1030, "feet"),
  28484. default: true
  28485. },
  28486. ]
  28487. ))
  28488. characterMakers.push(() => makeCharacter(
  28489. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28490. {
  28491. front: {
  28492. height: math.unit(6, "feet"),
  28493. weight: math.unit(150, "lb"),
  28494. name: "Front",
  28495. image: {
  28496. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28497. extra: 2567 / 2435,
  28498. bottom: 39 / 2606
  28499. }
  28500. },
  28501. frontSuper: {
  28502. height: math.unit(6, "feet"),
  28503. name: "Front (Super)",
  28504. image: {
  28505. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28506. extra: 2567 / 2435,
  28507. bottom: 39 / 2606
  28508. }
  28509. },
  28510. },
  28511. [
  28512. {
  28513. name: "Normal",
  28514. height: math.unit(5 + 10 / 12, "feet")
  28515. },
  28516. {
  28517. name: "Macro",
  28518. height: math.unit(1100, "feet"),
  28519. default: true
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(100, "miles"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/sona/front.svg",
  28531. extra: 2433 / 2201,
  28532. bottom: 53 / 2486
  28533. }
  28534. },
  28535. foot: {
  28536. height: math.unit(16.1, "miles"),
  28537. name: "Foot",
  28538. image: {
  28539. source: "./media/characters/sona/foot.svg"
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Macro",
  28546. height: math.unit(100, "miles"),
  28547. default: true
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(6, "feet"),
  28556. weight: math.unit(150, "lb"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/bailey/front.svg",
  28560. extra: 1778 / 1724,
  28561. bottom: 30 / 1808
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Micro",
  28568. height: math.unit(4, "inches")
  28569. },
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(5 + 5 / 12, "feet"),
  28573. default: true
  28574. },
  28575. {
  28576. name: "Macro",
  28577. height: math.unit(250, "feet")
  28578. },
  28579. {
  28580. name: "Megamacro",
  28581. height: math.unit(100, "miles")
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(5 + 2 / 12, "feet"),
  28590. weight: math.unit(120, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/snaps/front.svg",
  28594. extra: 2370 / 2177,
  28595. bottom: 48 / 2418
  28596. }
  28597. },
  28598. back: {
  28599. height: math.unit(5 + 2 / 12, "feet"),
  28600. weight: math.unit(120, "lb"),
  28601. name: "Back",
  28602. image: {
  28603. source: "./media/characters/snaps/back.svg",
  28604. extra: 2408 / 2258,
  28605. bottom: 15 / 2423
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Micro",
  28612. height: math.unit(9, "inches")
  28613. },
  28614. {
  28615. name: "Normal",
  28616. height: math.unit(5 + 2 / 12, "feet"),
  28617. default: true
  28618. },
  28619. {
  28620. name: "Mini Macro",
  28621. height: math.unit(10, "feet")
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(1.8, "meters"),
  28630. weight: math.unit(85, "kg"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/azteck/front.svg",
  28634. extra: 2815 / 2625,
  28635. bottom: 89 / 2904
  28636. }
  28637. },
  28638. back: {
  28639. height: math.unit(1.8, "meters"),
  28640. weight: math.unit(85, "kg"),
  28641. name: "Back",
  28642. image: {
  28643. source: "./media/characters/azteck/back.svg",
  28644. extra: 2856 / 2648,
  28645. bottom: 85 / 2941
  28646. }
  28647. },
  28648. frontDressed: {
  28649. height: math.unit(1.8, "meters"),
  28650. weight: math.unit(85, "kg"),
  28651. name: "Front (Dressed)",
  28652. image: {
  28653. source: "./media/characters/azteck/front-dressed.svg",
  28654. extra: 2147 / 2003,
  28655. bottom: 68 / 2215
  28656. }
  28657. },
  28658. head: {
  28659. height: math.unit(0.47, "meters"),
  28660. weight: math.unit(85, "kg"),
  28661. name: "Head",
  28662. image: {
  28663. source: "./media/characters/azteck/head.svg"
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Bite sized",
  28670. height: math.unit(16, "cm")
  28671. },
  28672. {
  28673. name: "Normal",
  28674. height: math.unit(1.8, "meters"),
  28675. default: true
  28676. },
  28677. ]
  28678. ))
  28679. characterMakers.push(() => makeCharacter(
  28680. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28681. {
  28682. front: {
  28683. height: math.unit(6, "feet"),
  28684. weight: math.unit(150, "lb"),
  28685. name: "Front",
  28686. image: {
  28687. source: "./media/characters/pidge/front.svg",
  28688. extra: 620 / 588,
  28689. bottom: 9 / 629
  28690. }
  28691. },
  28692. back: {
  28693. height: math.unit(6, "feet"),
  28694. weight: math.unit(150, "lb"),
  28695. name: "Back",
  28696. image: {
  28697. source: "./media/characters/pidge/back.svg",
  28698. extra: 620 / 588,
  28699. bottom: 9 / 629
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Macro",
  28706. height: math.unit(1, "mile"),
  28707. default: true
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28713. {
  28714. front: {
  28715. height: math.unit(6, "feet"),
  28716. weight: math.unit(150, "lb"),
  28717. name: "Front",
  28718. image: {
  28719. source: "./media/characters/en/front.svg",
  28720. extra: 1697 / 1563,
  28721. bottom: 103 / 1800
  28722. }
  28723. },
  28724. back: {
  28725. height: math.unit(6, "feet"),
  28726. weight: math.unit(150, "lb"),
  28727. name: "Back",
  28728. image: {
  28729. source: "./media/characters/en/back.svg",
  28730. extra: 1700 / 1570,
  28731. bottom: 51 / 1751
  28732. }
  28733. },
  28734. frontDressed: {
  28735. height: math.unit(6, "feet"),
  28736. weight: math.unit(150, "lb"),
  28737. name: "Front (Dressed)",
  28738. image: {
  28739. source: "./media/characters/en/front-dressed.svg",
  28740. extra: 1697 / 1563,
  28741. bottom: 103 / 1800
  28742. }
  28743. },
  28744. backDressed: {
  28745. height: math.unit(6, "feet"),
  28746. weight: math.unit(150, "lb"),
  28747. name: "Back (Dressed)",
  28748. image: {
  28749. source: "./media/characters/en/back-dressed.svg",
  28750. extra: 1700 / 1570,
  28751. bottom: 51 / 1751
  28752. }
  28753. },
  28754. },
  28755. [
  28756. {
  28757. name: "Macro",
  28758. height: math.unit(210, "feet"),
  28759. default: true
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28765. {
  28766. front: {
  28767. height: math.unit(6, "feet"),
  28768. weight: math.unit(150, "lb"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/haze-orris/front.svg",
  28772. extra: 3975 / 3525,
  28773. bottom: 137 / 4112
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Micro",
  28780. height: math.unit(150, "mm"),
  28781. default: true
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(6, "feet"),
  28790. weight: math.unit(150, "lb"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/casselene-yaro/front.svg",
  28794. extra: 4721 / 4541,
  28795. bottom: 82 / 4803
  28796. }
  28797. },
  28798. back: {
  28799. height: math.unit(6, "feet"),
  28800. weight: math.unit(150, "lb"),
  28801. name: "Back",
  28802. image: {
  28803. source: "./media/characters/casselene-yaro/back.svg",
  28804. extra: 4569 / 4377,
  28805. bottom: 69 / 4638
  28806. }
  28807. },
  28808. frontDressed: {
  28809. height: math.unit(6, "feet"),
  28810. weight: math.unit(150, "lb"),
  28811. name: "Front-dressed",
  28812. image: {
  28813. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28814. extra: 4721 / 4541,
  28815. bottom: 82 / 4803
  28816. }
  28817. },
  28818. },
  28819. [
  28820. {
  28821. name: "Macro",
  28822. height: math.unit(190, "feet"),
  28823. default: true
  28824. },
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28829. {
  28830. front: {
  28831. height: math.unit(6, "feet"),
  28832. weight: math.unit(150, "lb"),
  28833. name: "Front",
  28834. image: {
  28835. source: "./media/characters/myra-rue-delore/front.svg",
  28836. extra: 1340 / 1308,
  28837. bottom: 67 / 1407
  28838. }
  28839. },
  28840. back: {
  28841. height: math.unit(6, "feet"),
  28842. weight: math.unit(150, "lb"),
  28843. name: "Back",
  28844. image: {
  28845. source: "./media/characters/myra-rue-delore/back.svg",
  28846. extra: 1341 / 1310,
  28847. bottom: 40 / 1381
  28848. }
  28849. },
  28850. frontDressed: {
  28851. height: math.unit(6, "feet"),
  28852. weight: math.unit(150, "lb"),
  28853. name: "Front (Dressed)",
  28854. image: {
  28855. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28856. extra: 1340 / 1308,
  28857. bottom: 67 / 1407
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Macro",
  28864. height: math.unit(150, "feet"),
  28865. default: true
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(10, "feet"),
  28874. weight: math.unit(15015, "lb"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/fem!plat/front.svg",
  28878. extra: 2799 / 2604,
  28879. bottom: 149 / 2948
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(10, "feet"),
  28887. default: true
  28888. },
  28889. {
  28890. name: "Macro",
  28891. height: math.unit(100, "feet")
  28892. },
  28893. {
  28894. name: "Megamacro",
  28895. height: math.unit(1000, "feet")
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28901. {
  28902. front: {
  28903. height: math.unit(15 + 5 / 12, "feet"),
  28904. weight: math.unit(4600, "lb"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/neapolitan-ananassa/front.svg",
  28908. extra: 2903 / 2736,
  28909. bottom: 0 / 2903
  28910. }
  28911. },
  28912. side: {
  28913. height: math.unit(15 + 5 / 12, "feet"),
  28914. weight: math.unit(4600, "lb"),
  28915. name: "Side",
  28916. image: {
  28917. source: "./media/characters/neapolitan-ananassa/side.svg",
  28918. extra: 2925 / 2719,
  28919. bottom: 0 / 2925
  28920. }
  28921. },
  28922. back: {
  28923. height: math.unit(15 + 5 / 12, "feet"),
  28924. weight: math.unit(4600, "lb"),
  28925. name: "Back",
  28926. image: {
  28927. source: "./media/characters/neapolitan-ananassa/back.svg",
  28928. extra: 2903 / 2736,
  28929. bottom: 0 / 2903
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(15 + 5 / 12, "feet"),
  28937. default: true
  28938. },
  28939. {
  28940. name: "Post-Millenium",
  28941. height: math.unit(35 + 5 / 12, "feet")
  28942. },
  28943. {
  28944. name: "Post-Era",
  28945. height: math.unit(450 + 5 / 12, "feet")
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28951. {
  28952. front: {
  28953. height: math.unit(300, "meters"),
  28954. weight: math.unit(125000, "tonnes"),
  28955. name: "Front",
  28956. image: {
  28957. source: "./media/characters/pazuzu/front.svg",
  28958. extra: 877 / 794,
  28959. bottom: 47 / 924
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Macro",
  28966. height: math.unit(300, "meters"),
  28967. default: true
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28973. {
  28974. side: {
  28975. height: math.unit(10 + 7 / 12, "feet"),
  28976. weight: math.unit(2.5, "tons"),
  28977. name: "Side",
  28978. image: {
  28979. source: "./media/characters/aasha/side.svg",
  28980. extra: 1345 / 1245,
  28981. bottom: 111 / 1456
  28982. }
  28983. },
  28984. back: {
  28985. height: math.unit(10 + 7 / 12, "feet"),
  28986. weight: math.unit(2.5, "tons"),
  28987. name: "Back",
  28988. image: {
  28989. source: "./media/characters/aasha/back.svg",
  28990. extra: 1133 / 1057,
  28991. bottom: 257 / 1390
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Normal",
  28998. height: math.unit(10 + 7 / 12, "feet"),
  28999. default: true
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29005. {
  29006. front: {
  29007. height: math.unit(6 + 3 / 12, "feet"),
  29008. name: "Front",
  29009. image: {
  29010. source: "./media/characters/nevan/front.svg",
  29011. extra: 704 / 704,
  29012. bottom: 28 / 732
  29013. }
  29014. },
  29015. back: {
  29016. height: math.unit(6 + 3 / 12, "feet"),
  29017. name: "Back",
  29018. image: {
  29019. source: "./media/characters/nevan/back.svg",
  29020. extra: 714 / 714,
  29021. bottom: 21 / 735
  29022. }
  29023. },
  29024. frontFlaccid: {
  29025. height: math.unit(6 + 3 / 12, "feet"),
  29026. name: "Front (Flaccid)",
  29027. image: {
  29028. source: "./media/characters/nevan/front-flaccid.svg",
  29029. extra: 704 / 704,
  29030. bottom: 28 / 732
  29031. }
  29032. },
  29033. frontErect: {
  29034. height: math.unit(6 + 3 / 12, "feet"),
  29035. name: "Front (Erect)",
  29036. image: {
  29037. source: "./media/characters/nevan/front-erect.svg",
  29038. extra: 704 / 704,
  29039. bottom: 28 / 732
  29040. }
  29041. },
  29042. backFlaccid: {
  29043. height: math.unit(6 + 3 / 12, "feet"),
  29044. name: "Back (Flaccid)",
  29045. image: {
  29046. source: "./media/characters/nevan/back-flaccid.svg",
  29047. extra: 714 / 714,
  29048. bottom: 21 / 735
  29049. }
  29050. },
  29051. },
  29052. [
  29053. {
  29054. name: "Normal",
  29055. height: math.unit(6 + 3 / 12, "feet"),
  29056. default: true
  29057. },
  29058. ]
  29059. ))
  29060. characterMakers.push(() => makeCharacter(
  29061. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29062. {
  29063. front: {
  29064. height: math.unit(4, "feet"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/arhan/front.svg",
  29068. extra: 3368 / 3133,
  29069. bottom: 0 / 3368
  29070. }
  29071. },
  29072. side: {
  29073. height: math.unit(4, "feet"),
  29074. name: "Side",
  29075. image: {
  29076. source: "./media/characters/arhan/side.svg",
  29077. extra: 3347 / 3105,
  29078. bottom: 0 / 3347
  29079. }
  29080. },
  29081. tongue: {
  29082. height: math.unit(1.42, "feet"),
  29083. name: "Tongue",
  29084. image: {
  29085. source: "./media/characters/arhan/tongue.svg"
  29086. }
  29087. },
  29088. head: {
  29089. height: math.unit(0.85, "feet"),
  29090. name: "Head",
  29091. image: {
  29092. source: "./media/characters/arhan/head.svg"
  29093. }
  29094. },
  29095. },
  29096. [
  29097. {
  29098. name: "Normal",
  29099. height: math.unit(4, "feet"),
  29100. default: true
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(5 + 7.5 / 12, "feet"),
  29109. weight: math.unit(120, "lb"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/digi-duncan/front.svg",
  29113. extra: 330 / 326,
  29114. bottom: 16 / 346
  29115. }
  29116. },
  29117. side: {
  29118. height: math.unit(5 + 7.5 / 12, "feet"),
  29119. weight: math.unit(120, "lb"),
  29120. name: "Side",
  29121. image: {
  29122. source: "./media/characters/digi-duncan/side.svg",
  29123. extra: 341 / 337,
  29124. bottom: 1 / 342
  29125. }
  29126. },
  29127. back: {
  29128. height: math.unit(5 + 7.5 / 12, "feet"),
  29129. weight: math.unit(120, "lb"),
  29130. name: "Back",
  29131. image: {
  29132. source: "./media/characters/digi-duncan/back.svg",
  29133. extra: 330 / 326,
  29134. bottom: 12 / 342
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Speck",
  29141. height: math.unit(0.25, "mm")
  29142. },
  29143. {
  29144. name: "Micro",
  29145. height: math.unit(5, "mm")
  29146. },
  29147. {
  29148. name: "Tiny",
  29149. height: math.unit(0.5, "inches"),
  29150. default: true
  29151. },
  29152. {
  29153. name: "Human",
  29154. height: math.unit(5 + 7.5 / 12, "feet")
  29155. },
  29156. {
  29157. name: "Minigiant",
  29158. height: math.unit(8 + 5.25, "feet")
  29159. },
  29160. {
  29161. name: "Giant",
  29162. height: math.unit(2000, "feet")
  29163. },
  29164. {
  29165. name: "Mega",
  29166. height: math.unit(371.1, "miles")
  29167. },
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(2, "meters"),
  29175. weight: math.unit(350, "kg"),
  29176. name: "Front",
  29177. image: {
  29178. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29179. extra: 898 / 838,
  29180. bottom: 9 / 907
  29181. }
  29182. },
  29183. },
  29184. [
  29185. {
  29186. name: "Micro",
  29187. height: math.unit(8, "meters")
  29188. },
  29189. {
  29190. name: "Normal",
  29191. height: math.unit(50, "meters"),
  29192. default: true
  29193. },
  29194. {
  29195. name: "Macro",
  29196. height: math.unit(500, "meters")
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(6 + 6 / 12, "feet"),
  29205. name: "Front",
  29206. image: {
  29207. source: "./media/characters/khardesh/front.svg",
  29208. extra: 888 / 797,
  29209. bottom: 25 / 913
  29210. }
  29211. },
  29212. },
  29213. [
  29214. {
  29215. name: "Normal",
  29216. height: math.unit(6 + 6 / 12, "feet"),
  29217. default: true
  29218. },
  29219. {
  29220. name: "Normal+",
  29221. height: math.unit(4, "meters")
  29222. },
  29223. {
  29224. name: "Macro",
  29225. height: math.unit(50, "meters")
  29226. },
  29227. {
  29228. name: "Macro+",
  29229. height: math.unit(100, "meters")
  29230. },
  29231. {
  29232. name: "Megamacro",
  29233. height: math.unit(20, "km")
  29234. },
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29239. {
  29240. front: {
  29241. height: math.unit(6, "feet"),
  29242. weight: math.unit(150, "lb"),
  29243. name: "Front",
  29244. image: {
  29245. source: "./media/characters/kosho/front.svg",
  29246. extra: 1847 / 1847,
  29247. bottom: 86 / 1933
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "Second-stage micro",
  29254. height: math.unit(0.5, "inches")
  29255. },
  29256. {
  29257. name: "First-stage micro",
  29258. height: math.unit(6, "inches")
  29259. },
  29260. {
  29261. name: "Normal",
  29262. height: math.unit(6, "feet"),
  29263. default: true
  29264. },
  29265. {
  29266. name: "First-stage macro",
  29267. height: math.unit(72, "feet")
  29268. },
  29269. {
  29270. name: "Second-stage macro",
  29271. height: math.unit(864, "feet")
  29272. },
  29273. ]
  29274. ))
  29275. characterMakers.push(() => makeCharacter(
  29276. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29277. {
  29278. normal: {
  29279. height: math.unit(4 + 6 / 12, "feet"),
  29280. name: "Normal",
  29281. image: {
  29282. source: "./media/characters/hydra/normal.svg",
  29283. extra: 2833 / 2634,
  29284. bottom: 68 / 2901
  29285. }
  29286. },
  29287. smol: {
  29288. height: math.unit(0.705, "inches"),
  29289. name: "Smol",
  29290. image: {
  29291. source: "./media/characters/hydra/smol.svg",
  29292. extra: 2715 / 2540,
  29293. bottom: 0 / 2715
  29294. }
  29295. },
  29296. },
  29297. [
  29298. {
  29299. name: "Normal",
  29300. height: math.unit(4 + 6 / 12, "feet"),
  29301. default: true
  29302. }
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(0.6, "cm"),
  29310. name: "Front",
  29311. image: {
  29312. source: "./media/characters/daz/front.svg",
  29313. extra: 1682 / 1164,
  29314. bottom: 42 / 1724
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Normal",
  29321. height: math.unit(0.6, "cm"),
  29322. default: true
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29328. {
  29329. front: {
  29330. height: math.unit(6, "feet"),
  29331. weight: math.unit(235, "lb"),
  29332. name: "Front",
  29333. image: {
  29334. source: "./media/characters/theo-pangolin/front.svg",
  29335. extra: 1996 / 1969,
  29336. bottom: 115 / 2111
  29337. }
  29338. },
  29339. back: {
  29340. height: math.unit(6, "feet"),
  29341. weight: math.unit(235, "lb"),
  29342. name: "Back",
  29343. image: {
  29344. source: "./media/characters/theo-pangolin/back.svg",
  29345. extra: 1979 / 1979,
  29346. bottom: 40 / 2019
  29347. }
  29348. },
  29349. feral: {
  29350. height: math.unit(2, "feet"),
  29351. weight: math.unit(30, "lb"),
  29352. name: "Feral",
  29353. image: {
  29354. source: "./media/characters/theo-pangolin/feral.svg",
  29355. extra: 803 / 791,
  29356. bottom: 181 / 984
  29357. }
  29358. },
  29359. footFive: {
  29360. height: math.unit(1.43, "feet"),
  29361. name: "Foot (Five Toes)",
  29362. image: {
  29363. source: "./media/characters/theo-pangolin/foot-five.svg"
  29364. }
  29365. },
  29366. footFour: {
  29367. height: math.unit(1.43, "feet"),
  29368. name: "Foot (Four Toes)",
  29369. image: {
  29370. source: "./media/characters/theo-pangolin/foot-four.svg"
  29371. }
  29372. },
  29373. handFour: {
  29374. height: math.unit(0.81, "feet"),
  29375. name: "Hand (Four Fingers)",
  29376. image: {
  29377. source: "./media/characters/theo-pangolin/hand-four.svg"
  29378. }
  29379. },
  29380. handThree: {
  29381. height: math.unit(0.81, "feet"),
  29382. name: "Hand (Three Fingers)",
  29383. image: {
  29384. source: "./media/characters/theo-pangolin/hand-three.svg"
  29385. }
  29386. },
  29387. headFront: {
  29388. height: math.unit(1.37, "feet"),
  29389. name: "Head (Front)",
  29390. image: {
  29391. source: "./media/characters/theo-pangolin/head-front.svg"
  29392. }
  29393. },
  29394. headSide: {
  29395. height: math.unit(1.43, "feet"),
  29396. name: "Head (Side)",
  29397. image: {
  29398. source: "./media/characters/theo-pangolin/head-side.svg"
  29399. }
  29400. },
  29401. tongue: {
  29402. height: math.unit(2.29, "feet"),
  29403. name: "Tongue",
  29404. image: {
  29405. source: "./media/characters/theo-pangolin/tongue.svg"
  29406. }
  29407. },
  29408. },
  29409. [
  29410. {
  29411. name: "Normal",
  29412. height: math.unit(6, "feet")
  29413. },
  29414. {
  29415. name: "Macro",
  29416. height: math.unit(400, "feet"),
  29417. default: true
  29418. },
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(6, "inches"),
  29426. weight: math.unit(0.036, "kg"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/renée/front.svg",
  29430. extra: 900 / 886,
  29431. bottom: 8 / 908
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Nano",
  29438. height: math.unit(1, "nm")
  29439. },
  29440. {
  29441. name: "Micro",
  29442. height: math.unit(1, "mm")
  29443. },
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(6, "inches")
  29447. },
  29448. {
  29449. name: "Macro",
  29450. height: math.unit(2000, "feet"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Megamacro",
  29455. height: math.unit(2, "km")
  29456. },
  29457. {
  29458. name: "Gigamacro",
  29459. height: math.unit(2000, "km")
  29460. },
  29461. {
  29462. name: "Teramacro",
  29463. height: math.unit(250000, "km")
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(4, "meters"),
  29472. weight: math.unit(150, "kg"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/caledvwlch/front.svg",
  29476. extra: 1760 / 1551,
  29477. bottom: 28 / 1788
  29478. }
  29479. },
  29480. side: {
  29481. height: math.unit(4, "meters"),
  29482. weight: math.unit(150, "kg"),
  29483. name: "Side",
  29484. image: {
  29485. source: "./media/characters/caledvwlch/side.svg",
  29486. extra: 1605 / 1536,
  29487. bottom: 31 / 1636
  29488. }
  29489. },
  29490. back: {
  29491. height: math.unit(4, "meters"),
  29492. weight: math.unit(150, "kg"),
  29493. name: "Back",
  29494. image: {
  29495. source: "./media/characters/caledvwlch/back.svg",
  29496. extra: 1635 / 1565,
  29497. bottom: 27 / 1662
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "\"Incognito\"",
  29504. height: math.unit(4, "meters")
  29505. },
  29506. {
  29507. name: "Small rampage",
  29508. height: math.unit(600, "meters")
  29509. },
  29510. {
  29511. name: "Mega",
  29512. height: math.unit(30, "km")
  29513. },
  29514. {
  29515. name: "Home-size",
  29516. height: math.unit(50, "km"),
  29517. default: true
  29518. },
  29519. {
  29520. name: "Giga",
  29521. height: math.unit(300, "km")
  29522. },
  29523. {
  29524. name: "Lounging",
  29525. height: math.unit(11000, "km")
  29526. },
  29527. {
  29528. name: "Planet snacking",
  29529. height: math.unit(2000000, "km")
  29530. },
  29531. ]
  29532. ))
  29533. characterMakers.push(() => makeCharacter(
  29534. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29535. {
  29536. front: {
  29537. height: math.unit(6, "feet"),
  29538. weight: math.unit(215, "lb"),
  29539. name: "Front",
  29540. image: {
  29541. source: "./media/characters/sapphire-svell/front.svg",
  29542. extra: 495 / 455,
  29543. bottom: 20 / 515
  29544. }
  29545. },
  29546. back: {
  29547. height: math.unit(6, "feet"),
  29548. weight: math.unit(216, "lb"),
  29549. name: "Back",
  29550. image: {
  29551. source: "./media/characters/sapphire-svell/back.svg",
  29552. extra: 497 / 477,
  29553. bottom: 7 / 504
  29554. }
  29555. },
  29556. maw: {
  29557. height: math.unit(1.57, "feet"),
  29558. name: "Maw",
  29559. image: {
  29560. source: "./media/characters/sapphire-svell/maw.svg"
  29561. }
  29562. },
  29563. foot: {
  29564. height: math.unit(1.07, "feet"),
  29565. name: "Foot",
  29566. image: {
  29567. source: "./media/characters/sapphire-svell/foot.svg"
  29568. }
  29569. },
  29570. toering: {
  29571. height: math.unit(1.7, "inch"),
  29572. name: "Toering",
  29573. image: {
  29574. source: "./media/characters/sapphire-svell/toering.svg"
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Normal",
  29581. height: math.unit(300, "feet"),
  29582. default: true
  29583. },
  29584. {
  29585. name: "Augmented",
  29586. height: math.unit(1250, "feet")
  29587. },
  29588. {
  29589. name: "Unleashed",
  29590. height: math.unit(3000, "feet")
  29591. },
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29596. {
  29597. side: {
  29598. height: math.unit(2 + 3 / 12, "feet"),
  29599. weight: math.unit(110, "lb"),
  29600. name: "Side",
  29601. image: {
  29602. source: "./media/characters/glitch-flux/side.svg",
  29603. extra: 997 / 805,
  29604. bottom: 20 / 1017
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Normal",
  29611. height: math.unit(2 + 3 / 12, "feet"),
  29612. default: true
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(4, "meters"),
  29621. name: "Front",
  29622. image: {
  29623. source: "./media/characters/mid/front.svg",
  29624. extra: 507 / 476,
  29625. bottom: 17 / 524
  29626. }
  29627. },
  29628. back: {
  29629. height: math.unit(4, "meters"),
  29630. name: "Back",
  29631. image: {
  29632. source: "./media/characters/mid/back.svg",
  29633. extra: 519 / 487,
  29634. bottom: 7 / 526
  29635. }
  29636. },
  29637. stuck: {
  29638. height: math.unit(2.2, "meters"),
  29639. name: "Stuck",
  29640. image: {
  29641. source: "./media/characters/mid/stuck.svg",
  29642. extra: 1951 / 1869,
  29643. bottom: 88 / 2039
  29644. }
  29645. }
  29646. },
  29647. [
  29648. {
  29649. name: "Normal",
  29650. height: math.unit(4, "meters"),
  29651. default: true
  29652. },
  29653. {
  29654. name: "Big",
  29655. height: math.unit(10, "meters")
  29656. },
  29657. {
  29658. name: "Macro",
  29659. height: math.unit(800, "meters")
  29660. },
  29661. {
  29662. name: "Megamacro",
  29663. height: math.unit(100, "km")
  29664. },
  29665. {
  29666. name: "Overgrown",
  29667. height: math.unit(1, "parsec")
  29668. },
  29669. ]
  29670. ))
  29671. characterMakers.push(() => makeCharacter(
  29672. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29673. {
  29674. front: {
  29675. height: math.unit(2.5, "meters"),
  29676. weight: math.unit(225, "kg"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/iris/front.svg",
  29680. extra: 3348 / 3251,
  29681. bottom: 205 / 3553
  29682. }
  29683. },
  29684. maw: {
  29685. height: math.unit(0.56, "meter"),
  29686. name: "Maw",
  29687. image: {
  29688. source: "./media/characters/iris/maw.svg"
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Mewter cat",
  29695. height: math.unit(1.2, "meters")
  29696. },
  29697. {
  29698. name: "Minimacro",
  29699. height: math.unit(2.5, "meters"),
  29700. default: true
  29701. },
  29702. {
  29703. name: "Macro",
  29704. height: math.unit(180, "meters")
  29705. },
  29706. {
  29707. name: "Megamacro",
  29708. height: math.unit(2746, "meters")
  29709. },
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29714. {
  29715. front: {
  29716. height: math.unit(6, "feet"),
  29717. weight: math.unit(135, "lb"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/axel/front.svg",
  29721. extra: 908 / 908,
  29722. bottom: 58 / 966
  29723. }
  29724. },
  29725. side: {
  29726. height: math.unit(6, "feet"),
  29727. weight: math.unit(135, "lb"),
  29728. name: "Side",
  29729. image: {
  29730. source: "./media/characters/axel/side.svg",
  29731. extra: 958 / 958,
  29732. bottom: 11 / 969
  29733. }
  29734. },
  29735. back: {
  29736. height: math.unit(6, "feet"),
  29737. weight: math.unit(135, "lb"),
  29738. name: "Back",
  29739. image: {
  29740. source: "./media/characters/axel/back.svg",
  29741. extra: 887 / 887,
  29742. bottom: 34 / 921
  29743. }
  29744. },
  29745. head: {
  29746. height: math.unit(1.07, "feet"),
  29747. name: "Head",
  29748. image: {
  29749. source: "./media/characters/axel/head.svg"
  29750. }
  29751. },
  29752. beak: {
  29753. height: math.unit(1.4, "feet"),
  29754. name: "Beak",
  29755. image: {
  29756. source: "./media/characters/axel/beak.svg"
  29757. }
  29758. },
  29759. beakSide: {
  29760. height: math.unit(1.4, "feet"),
  29761. name: "Beak Side",
  29762. image: {
  29763. source: "./media/characters/axel/beak-side.svg"
  29764. }
  29765. },
  29766. sheath: {
  29767. height: math.unit(0.5, "feet"),
  29768. name: "Sheath",
  29769. image: {
  29770. source: "./media/characters/axel/sheath.svg"
  29771. }
  29772. },
  29773. dick: {
  29774. height: math.unit(0.98, "feet"),
  29775. name: "Dick",
  29776. image: {
  29777. source: "./media/characters/axel/dick.svg"
  29778. }
  29779. },
  29780. },
  29781. [
  29782. {
  29783. name: "Macro",
  29784. height: math.unit(68, "meters"),
  29785. default: true
  29786. },
  29787. ]
  29788. ))
  29789. characterMakers.push(() => makeCharacter(
  29790. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29791. {
  29792. front: {
  29793. height: math.unit(3.5, "meters"),
  29794. weight: math.unit(1200, "kg"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/joanna/front.svg",
  29798. extra: 1596 / 1488,
  29799. bottom: 29 / 1625
  29800. }
  29801. },
  29802. back: {
  29803. height: math.unit(3.5, "meters"),
  29804. weight: math.unit(1200, "kg"),
  29805. name: "Back",
  29806. image: {
  29807. source: "./media/characters/joanna/back.svg",
  29808. extra: 1594 / 1495,
  29809. bottom: 26 / 1620
  29810. }
  29811. },
  29812. frontShorts: {
  29813. height: math.unit(3.5, "meters"),
  29814. weight: math.unit(1200, "kg"),
  29815. name: "Front (Shorts)",
  29816. image: {
  29817. source: "./media/characters/joanna/front-shorts.svg",
  29818. extra: 1596 / 1488,
  29819. bottom: 29 / 1625
  29820. }
  29821. },
  29822. frontBiker: {
  29823. height: math.unit(3.5, "meters"),
  29824. weight: math.unit(1200, "kg"),
  29825. name: "Front (Biker)",
  29826. image: {
  29827. source: "./media/characters/joanna/front-biker.svg",
  29828. extra: 1596 / 1488,
  29829. bottom: 29 / 1625
  29830. }
  29831. },
  29832. backBiker: {
  29833. height: math.unit(3.5, "meters"),
  29834. weight: math.unit(1200, "kg"),
  29835. name: "Back (Biker)",
  29836. image: {
  29837. source: "./media/characters/joanna/back-biker.svg",
  29838. extra: 1594 / 1495,
  29839. bottom: 88 / 1682
  29840. }
  29841. },
  29842. bikeLeft: {
  29843. height: math.unit(2.4, "meters"),
  29844. weight: math.unit(1600, "kg"),
  29845. name: "Bike (Left)",
  29846. image: {
  29847. source: "./media/characters/joanna/bike-left.svg",
  29848. extra: 720 / 720,
  29849. bottom: 8 / 728
  29850. }
  29851. },
  29852. bikeRight: {
  29853. height: math.unit(2.4, "meters"),
  29854. weight: math.unit(1600, "kg"),
  29855. name: "Bike (Right)",
  29856. image: {
  29857. source: "./media/characters/joanna/bike-right.svg",
  29858. extra: 720 / 720,
  29859. bottom: 8 / 728
  29860. }
  29861. },
  29862. },
  29863. [
  29864. {
  29865. name: "Incognito",
  29866. height: math.unit(3.5, "meters")
  29867. },
  29868. {
  29869. name: "Casual Big",
  29870. height: math.unit(200, "meters")
  29871. },
  29872. {
  29873. name: "Macro",
  29874. height: math.unit(600, "meters")
  29875. },
  29876. {
  29877. name: "Original",
  29878. height: math.unit(20, "km"),
  29879. default: true
  29880. },
  29881. {
  29882. name: "Giga",
  29883. height: math.unit(400, "km")
  29884. },
  29885. {
  29886. name: "Lounging",
  29887. height: math.unit(1500, "km")
  29888. },
  29889. {
  29890. name: "Planetary",
  29891. height: math.unit(200000, "km")
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29897. {
  29898. front: {
  29899. height: math.unit(6, "feet"),
  29900. weight: math.unit(150, "lb"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/hugo-sigil/front.svg",
  29904. extra: 522 / 500,
  29905. bottom: 2 / 524
  29906. }
  29907. },
  29908. back: {
  29909. height: math.unit(6, "feet"),
  29910. weight: math.unit(150, "lb"),
  29911. name: "Back",
  29912. image: {
  29913. source: "./media/characters/hugo-sigil/back.svg",
  29914. extra: 519 / 495,
  29915. bottom: 5 / 524
  29916. }
  29917. },
  29918. maw: {
  29919. height: math.unit(1.4, "feet"),
  29920. weight: math.unit(150, "lb"),
  29921. name: "Maw",
  29922. image: {
  29923. source: "./media/characters/hugo-sigil/maw.svg"
  29924. }
  29925. },
  29926. feet: {
  29927. height: math.unit(1.56, "feet"),
  29928. weight: math.unit(150, "lb"),
  29929. name: "Feet",
  29930. image: {
  29931. source: "./media/characters/hugo-sigil/feet.svg",
  29932. extra: 177 / 177,
  29933. bottom: 12 / 189
  29934. }
  29935. },
  29936. },
  29937. [
  29938. {
  29939. name: "Normal",
  29940. height: math.unit(6, "feet")
  29941. },
  29942. {
  29943. name: "Macro",
  29944. height: math.unit(200, "feet"),
  29945. default: true
  29946. },
  29947. ]
  29948. ))
  29949. characterMakers.push(() => makeCharacter(
  29950. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29951. {
  29952. front: {
  29953. height: math.unit(6, "feet"),
  29954. weight: math.unit(150, "lb"),
  29955. name: "Front",
  29956. image: {
  29957. source: "./media/characters/peri/front.svg",
  29958. extra: 2354 / 2233,
  29959. bottom: 49 / 2403
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Really Small",
  29966. height: math.unit(1, "nm")
  29967. },
  29968. {
  29969. name: "Micro",
  29970. height: math.unit(4, "inches")
  29971. },
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(7, "inches"),
  29975. default: true
  29976. },
  29977. {
  29978. name: "Macro",
  29979. height: math.unit(400, "feet")
  29980. },
  29981. {
  29982. name: "Megamacro",
  29983. height: math.unit(100, "miles")
  29984. },
  29985. ]
  29986. ))
  29987. characterMakers.push(() => makeCharacter(
  29988. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29989. {
  29990. frontSlim: {
  29991. height: math.unit(7, "feet"),
  29992. name: "Front (Slim)",
  29993. image: {
  29994. source: "./media/characters/issilora/front-slim.svg",
  29995. extra: 529 / 449,
  29996. bottom: 53 / 582
  29997. }
  29998. },
  29999. sideSlim: {
  30000. height: math.unit(7, "feet"),
  30001. name: "Side (Slim)",
  30002. image: {
  30003. source: "./media/characters/issilora/side-slim.svg",
  30004. extra: 570 / 480,
  30005. bottom: 30 / 600
  30006. }
  30007. },
  30008. backSlim: {
  30009. height: math.unit(7, "feet"),
  30010. name: "Back (Slim)",
  30011. image: {
  30012. source: "./media/characters/issilora/back-slim.svg",
  30013. extra: 537 / 455,
  30014. bottom: 46 / 583
  30015. }
  30016. },
  30017. frontBuff: {
  30018. height: math.unit(7, "feet"),
  30019. name: "Front (Buff)",
  30020. image: {
  30021. source: "./media/characters/issilora/front-buff.svg",
  30022. extra: 2310 / 2035,
  30023. bottom: 335 / 2645
  30024. }
  30025. },
  30026. head: {
  30027. height: math.unit(1.94, "feet"),
  30028. name: "Head",
  30029. image: {
  30030. source: "./media/characters/issilora/head.svg"
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Minimum",
  30037. height: math.unit(7, "feet")
  30038. },
  30039. {
  30040. name: "Comfortable",
  30041. height: math.unit(17, "feet")
  30042. },
  30043. {
  30044. name: "Fun Size",
  30045. height: math.unit(47, "feet")
  30046. },
  30047. {
  30048. name: "Natural Macro",
  30049. height: math.unit(137, "feet"),
  30050. default: true
  30051. },
  30052. {
  30053. name: "Maximum Kaiju",
  30054. height: math.unit(397, "feet")
  30055. },
  30056. ]
  30057. ))
  30058. characterMakers.push(() => makeCharacter(
  30059. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30060. {
  30061. front: {
  30062. height: math.unit(50 + 9/12, "feet"),
  30063. weight: math.unit(32.8, "tons"),
  30064. name: "Front",
  30065. image: {
  30066. source: "./media/characters/irb'iiritaahn/front.svg",
  30067. extra: 1878/1826,
  30068. bottom: 326/2204
  30069. }
  30070. },
  30071. back: {
  30072. height: math.unit(50 + 9/12, "feet"),
  30073. weight: math.unit(32.8, "tons"),
  30074. name: "Back",
  30075. image: {
  30076. source: "./media/characters/irb'iiritaahn/back.svg",
  30077. extra: 2052/2018,
  30078. bottom: 152/2204
  30079. }
  30080. },
  30081. head: {
  30082. height: math.unit(12.86, "feet"),
  30083. name: "Head",
  30084. image: {
  30085. source: "./media/characters/irb'iiritaahn/head.svg"
  30086. }
  30087. },
  30088. maw: {
  30089. height: math.unit(9.66, "feet"),
  30090. name: "Maw",
  30091. image: {
  30092. source: "./media/characters/irb'iiritaahn/maw.svg"
  30093. }
  30094. },
  30095. frontDick: {
  30096. height: math.unit(8.78461, "feet"),
  30097. name: "Front Dick",
  30098. image: {
  30099. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30100. }
  30101. },
  30102. rearDick: {
  30103. height: math.unit(8.78461, "feet"),
  30104. name: "Rear Dick",
  30105. image: {
  30106. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30107. }
  30108. },
  30109. rearDickUnfolded: {
  30110. height: math.unit(8.78, "feet"),
  30111. name: "Rear Dick (Unfolded)",
  30112. image: {
  30113. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30114. }
  30115. },
  30116. wings: {
  30117. height: math.unit(43, "feet"),
  30118. name: "Wings",
  30119. image: {
  30120. source: "./media/characters/irb'iiritaahn/wings.svg"
  30121. }
  30122. },
  30123. },
  30124. [
  30125. {
  30126. name: "Macro",
  30127. height: math.unit(50 + 9/12, "feet"),
  30128. default: true
  30129. },
  30130. ]
  30131. ))
  30132. characterMakers.push(() => makeCharacter(
  30133. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30134. {
  30135. front: {
  30136. height: math.unit(205, "cm"),
  30137. weight: math.unit(102, "kg"),
  30138. name: "Front",
  30139. image: {
  30140. source: "./media/characters/irbisgreif/front.svg",
  30141. extra: 785/706,
  30142. bottom: 13/798
  30143. }
  30144. },
  30145. back: {
  30146. height: math.unit(205, "cm"),
  30147. weight: math.unit(102, "kg"),
  30148. name: "Back",
  30149. image: {
  30150. source: "./media/characters/irbisgreif/back.svg",
  30151. extra: 713/701,
  30152. bottom: 26/739
  30153. }
  30154. },
  30155. frontDressed: {
  30156. height: math.unit(216, "cm"),
  30157. weight: math.unit(102, "kg"),
  30158. name: "Front-dressed",
  30159. image: {
  30160. source: "./media/characters/irbisgreif/front-dressed.svg",
  30161. extra: 902/776,
  30162. bottom: 14/916
  30163. }
  30164. },
  30165. sideDressed: {
  30166. height: math.unit(195, "cm"),
  30167. weight: math.unit(102, "kg"),
  30168. name: "Side-dressed",
  30169. image: {
  30170. source: "./media/characters/irbisgreif/side-dressed.svg",
  30171. extra: 788/688,
  30172. bottom: 21/809
  30173. }
  30174. },
  30175. backDressed: {
  30176. height: math.unit(216, "cm"),
  30177. weight: math.unit(102, "kg"),
  30178. name: "Back-dressed",
  30179. image: {
  30180. source: "./media/characters/irbisgreif/back-dressed.svg",
  30181. extra: 901/783,
  30182. bottom: 10/911
  30183. }
  30184. },
  30185. dick: {
  30186. height: math.unit(0.49, "feet"),
  30187. name: "Dick",
  30188. image: {
  30189. source: "./media/characters/irbisgreif/dick.svg"
  30190. }
  30191. },
  30192. wingTop: {
  30193. height: math.unit(1.93 , "feet"),
  30194. name: "Wing-top",
  30195. image: {
  30196. source: "./media/characters/irbisgreif/wing-top.svg"
  30197. }
  30198. },
  30199. wingBottom: {
  30200. height: math.unit(1.93 , "feet"),
  30201. name: "Wing-bottom",
  30202. image: {
  30203. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30204. }
  30205. },
  30206. },
  30207. [
  30208. {
  30209. name: "Normal",
  30210. height: math.unit(216, "cm"),
  30211. default: true
  30212. },
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30217. {
  30218. front: {
  30219. height: math.unit(6, "feet"),
  30220. weight: math.unit(150, "lb"),
  30221. name: "Front",
  30222. image: {
  30223. source: "./media/characters/pride/front.svg",
  30224. extra: 1299/1230,
  30225. bottom: 18/1317
  30226. }
  30227. },
  30228. },
  30229. [
  30230. {
  30231. name: "Normal",
  30232. height: math.unit(7, "feet")
  30233. },
  30234. {
  30235. name: "Mini-macro",
  30236. height: math.unit(11, "feet")
  30237. },
  30238. {
  30239. name: "Macro",
  30240. height: math.unit(15, "meters"),
  30241. default: true
  30242. },
  30243. {
  30244. name: "Macro+",
  30245. height: math.unit(40, "meters")
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30251. {
  30252. front: {
  30253. height: math.unit(4 + 2 / 12, "feet"),
  30254. weight: math.unit(95, "lb"),
  30255. name: "Front",
  30256. image: {
  30257. source: "./media/characters/vaelophis-nyx/front.svg",
  30258. extra: 2532/2330,
  30259. bottom: 0/2532
  30260. }
  30261. },
  30262. back: {
  30263. height: math.unit(4 + 2 / 12, "feet"),
  30264. weight: math.unit(95, "lb"),
  30265. name: "Back",
  30266. image: {
  30267. source: "./media/characters/vaelophis-nyx/back.svg",
  30268. extra: 2484/2361,
  30269. bottom: 0/2484
  30270. }
  30271. },
  30272. feralSide: {
  30273. height: math.unit(2 + 1/12, "feet"),
  30274. weight: math.unit(20, "lb"),
  30275. name: "Feral (Side)",
  30276. image: {
  30277. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30278. extra: 1721/1581,
  30279. bottom: 70/1791
  30280. }
  30281. },
  30282. feralLazing: {
  30283. height: math.unit(1.08, "feet"),
  30284. weight: math.unit(20, "lb"),
  30285. name: "Feral (Lazing)",
  30286. image: {
  30287. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30288. extra: 822/822,
  30289. bottom: 248/1070
  30290. }
  30291. },
  30292. ear: {
  30293. height: math.unit(0.416, "feet"),
  30294. name: "Ear",
  30295. image: {
  30296. source: "./media/characters/vaelophis-nyx/ear.svg"
  30297. }
  30298. },
  30299. eye: {
  30300. height: math.unit(0.0748, "feet"),
  30301. name: "Eye",
  30302. image: {
  30303. source: "./media/characters/vaelophis-nyx/eye.svg"
  30304. }
  30305. },
  30306. mouth: {
  30307. height: math.unit(0.378, "feet"),
  30308. name: "Mouth",
  30309. image: {
  30310. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30311. }
  30312. },
  30313. spade: {
  30314. height: math.unit(0.55, "feet"),
  30315. name: "Spade",
  30316. image: {
  30317. source: "./media/characters/vaelophis-nyx/spade.svg"
  30318. }
  30319. },
  30320. },
  30321. [
  30322. {
  30323. name: "Normal",
  30324. height: math.unit(4 + 2/12, "feet"),
  30325. default: true
  30326. },
  30327. ]
  30328. ))
  30329. characterMakers.push(() => makeCharacter(
  30330. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30331. {
  30332. front: {
  30333. height: math.unit(7, "feet"),
  30334. weight: math.unit(231, "lb"),
  30335. name: "Front",
  30336. image: {
  30337. source: "./media/characters/flux/front.svg",
  30338. extra: 919/871,
  30339. bottom: 0/919
  30340. }
  30341. },
  30342. back: {
  30343. height: math.unit(7, "feet"),
  30344. weight: math.unit(231, "lb"),
  30345. name: "Back",
  30346. image: {
  30347. source: "./media/characters/flux/back.svg",
  30348. extra: 1040/992,
  30349. bottom: 0/1040
  30350. }
  30351. },
  30352. frontDressed: {
  30353. height: math.unit(7, "feet"),
  30354. weight: math.unit(231, "lb"),
  30355. name: "Front (Dressed)",
  30356. image: {
  30357. source: "./media/characters/flux/front-dressed.svg",
  30358. extra: 919/871,
  30359. bottom: 0/919
  30360. }
  30361. },
  30362. feralSide: {
  30363. height: math.unit(5, "feet"),
  30364. weight: math.unit(150, "lb"),
  30365. name: "Feral (Side)",
  30366. image: {
  30367. source: "./media/characters/flux/feral-side.svg",
  30368. extra: 598/528,
  30369. bottom: 28/626
  30370. }
  30371. },
  30372. head: {
  30373. height: math.unit(1.585, "feet"),
  30374. name: "Head",
  30375. image: {
  30376. source: "./media/characters/flux/head.svg"
  30377. }
  30378. },
  30379. headSide: {
  30380. height: math.unit(1.74, "feet"),
  30381. name: "Head (Side)",
  30382. image: {
  30383. source: "./media/characters/flux/head-side.svg"
  30384. }
  30385. },
  30386. headSideFire: {
  30387. height: math.unit(1.76, "feet"),
  30388. name: "Head (Side, Fire)",
  30389. image: {
  30390. source: "./media/characters/flux/head-side-fire.svg"
  30391. }
  30392. },
  30393. },
  30394. [
  30395. {
  30396. name: "Normal",
  30397. height: math.unit(7, "feet"),
  30398. default: true
  30399. },
  30400. ]
  30401. ))
  30402. characterMakers.push(() => makeCharacter(
  30403. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30404. {
  30405. front: {
  30406. height: math.unit(9, "feet"),
  30407. weight: math.unit(1012, "lb"),
  30408. name: "Front",
  30409. image: {
  30410. source: "./media/characters/ulfra-lupae/front.svg",
  30411. extra: 1083/1011,
  30412. bottom: 67/1150
  30413. }
  30414. },
  30415. },
  30416. [
  30417. {
  30418. name: "Micro",
  30419. height: math.unit(6, "inches")
  30420. },
  30421. {
  30422. name: "Socializing",
  30423. height: math.unit(6 + 5/12, "feet")
  30424. },
  30425. {
  30426. name: "Normal",
  30427. height: math.unit(9, "feet"),
  30428. default: true
  30429. },
  30430. {
  30431. name: "Macro",
  30432. height: math.unit(150, "feet")
  30433. },
  30434. ]
  30435. ))
  30436. characterMakers.push(() => makeCharacter(
  30437. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30438. {
  30439. front: {
  30440. height: math.unit(5 + 2/12, "feet"),
  30441. weight: math.unit(120, "lb"),
  30442. name: "Front",
  30443. image: {
  30444. source: "./media/characters/timber/front.svg",
  30445. extra: 2814/2705,
  30446. bottom: 181/2995
  30447. }
  30448. },
  30449. },
  30450. [
  30451. {
  30452. name: "Normal",
  30453. height: math.unit(5 + 2/12, "feet"),
  30454. default: true
  30455. },
  30456. ]
  30457. ))
  30458. characterMakers.push(() => makeCharacter(
  30459. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30460. {
  30461. front: {
  30462. height: math.unit(5 + 7/12, "feet"),
  30463. weight: math.unit(220, "lb"),
  30464. name: "Front",
  30465. image: {
  30466. source: "./media/characters/nicki/front.svg",
  30467. extra: 453/419,
  30468. bottom: 7/460
  30469. }
  30470. },
  30471. frontAlt: {
  30472. height: math.unit(5 + 7/12, "feet"),
  30473. weight: math.unit(220, "lb"),
  30474. name: "Front-alt",
  30475. image: {
  30476. source: "./media/characters/nicki/front-alt.svg",
  30477. extra: 435/411,
  30478. bottom: 12/447
  30479. }
  30480. },
  30481. back: {
  30482. height: math.unit(5 + 7/12, "feet"),
  30483. weight: math.unit(220, "lb"),
  30484. name: "Back",
  30485. image: {
  30486. source: "./media/characters/nicki/back.svg",
  30487. extra: 440/413,
  30488. bottom: 19/459
  30489. }
  30490. },
  30491. taur: {
  30492. height: math.unit(7 + 6/12, "feet"),
  30493. weight: math.unit(700, "lb"),
  30494. name: "Taur",
  30495. image: {
  30496. source: "./media/characters/nicki/taur.svg",
  30497. extra: 975/773,
  30498. bottom: 0/975
  30499. }
  30500. },
  30501. frontNsfw: {
  30502. height: math.unit(5 + 7/12, "feet"),
  30503. weight: math.unit(220, "lb"),
  30504. name: "Front (NSFW)",
  30505. image: {
  30506. source: "./media/characters/nicki/front-nsfw.svg",
  30507. extra: 453/419,
  30508. bottom: 7/460
  30509. }
  30510. },
  30511. frontNsfwAlt: {
  30512. height: math.unit(5 + 7/12, "feet"),
  30513. weight: math.unit(220, "lb"),
  30514. name: "Front (Alt, NSFW)",
  30515. image: {
  30516. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30517. extra: 435/411,
  30518. bottom: 12/447
  30519. }
  30520. },
  30521. backNsfw: {
  30522. height: math.unit(5 + 7/12, "feet"),
  30523. weight: math.unit(220, "lb"),
  30524. name: "Back (NSFW)",
  30525. image: {
  30526. source: "./media/characters/nicki/back-nsfw.svg",
  30527. extra: 440/413,
  30528. bottom: 19/459
  30529. }
  30530. },
  30531. head: {
  30532. height: math.unit(2.1, "feet"),
  30533. name: "Head",
  30534. image: {
  30535. source: "./media/characters/nicki/head.svg"
  30536. }
  30537. },
  30538. paw: {
  30539. height: math.unit(1.88, "feet"),
  30540. name: "Paw",
  30541. image: {
  30542. source: "./media/characters/nicki/paw.svg"
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Normal",
  30549. height: math.unit(5 + 7/12, "feet"),
  30550. default: true
  30551. },
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(7 + 10/12, "feet"),
  30559. weight: math.unit(3.5, "tons"),
  30560. name: "Front",
  30561. image: {
  30562. source: "./media/characters/lee/front.svg",
  30563. extra: 1773/1615,
  30564. bottom: 86/1859
  30565. }
  30566. },
  30567. hand: {
  30568. height: math.unit(1.78, "feet"),
  30569. name: "Hand",
  30570. image: {
  30571. source: "./media/characters/lee/hand.svg"
  30572. }
  30573. },
  30574. maw: {
  30575. height: math.unit(1.18, "feet"),
  30576. name: "Maw",
  30577. image: {
  30578. source: "./media/characters/lee/maw.svg"
  30579. }
  30580. },
  30581. },
  30582. [
  30583. {
  30584. name: "Normal",
  30585. height: math.unit(7 + 10/12, "feet"),
  30586. default: true
  30587. },
  30588. ]
  30589. ))
  30590. characterMakers.push(() => makeCharacter(
  30591. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30592. {
  30593. front: {
  30594. height: math.unit(9, "feet"),
  30595. name: "Front",
  30596. image: {
  30597. source: "./media/characters/guti/front.svg",
  30598. extra: 4551/4355,
  30599. bottom: 123/4674
  30600. }
  30601. },
  30602. tongue: {
  30603. height: math.unit(1, "feet"),
  30604. name: "Tongue",
  30605. image: {
  30606. source: "./media/characters/guti/tongue.svg"
  30607. }
  30608. },
  30609. paw: {
  30610. height: math.unit(1.18, "feet"),
  30611. name: "Paw",
  30612. image: {
  30613. source: "./media/characters/guti/paw.svg"
  30614. }
  30615. },
  30616. },
  30617. [
  30618. {
  30619. name: "Normal",
  30620. height: math.unit(9, "feet"),
  30621. default: true
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30627. {
  30628. side: {
  30629. height: math.unit(5, "meters"),
  30630. name: "Side",
  30631. image: {
  30632. source: "./media/characters/vesper/side.svg",
  30633. extra: 1605/1518,
  30634. bottom: 0/1605
  30635. }
  30636. },
  30637. },
  30638. [
  30639. {
  30640. name: "Small",
  30641. height: math.unit(5, "meters")
  30642. },
  30643. {
  30644. name: "Sage",
  30645. height: math.unit(100, "meters"),
  30646. default: true
  30647. },
  30648. {
  30649. name: "Fun Size",
  30650. height: math.unit(600, "meters")
  30651. },
  30652. {
  30653. name: "Goddess",
  30654. height: math.unit(20000, "km")
  30655. },
  30656. {
  30657. name: "Maximum",
  30658. height: math.unit(5, "galaxies")
  30659. },
  30660. ]
  30661. ))
  30662. characterMakers.push(() => makeCharacter(
  30663. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30664. {
  30665. front: {
  30666. height: math.unit(6 + 3/12, "feet"),
  30667. weight: math.unit(190, "lb"),
  30668. name: "Front",
  30669. image: {
  30670. source: "./media/characters/gawain/front.svg",
  30671. extra: 2222/2139,
  30672. bottom: 90/2312
  30673. }
  30674. },
  30675. back: {
  30676. height: math.unit(6 + 3/12, "feet"),
  30677. weight: math.unit(190, "lb"),
  30678. name: "Back",
  30679. image: {
  30680. source: "./media/characters/gawain/back.svg",
  30681. extra: 2199/2111,
  30682. bottom: 73/2272
  30683. }
  30684. },
  30685. },
  30686. [
  30687. {
  30688. name: "Normal",
  30689. height: math.unit(6 + 3/12, "feet"),
  30690. default: true
  30691. },
  30692. ]
  30693. ))
  30694. characterMakers.push(() => makeCharacter(
  30695. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30696. {
  30697. side: {
  30698. height: math.unit(3.5, "meters"),
  30699. weight: math.unit(16000, "lb"),
  30700. name: "Side",
  30701. image: {
  30702. source: "./media/characters/dascalti/side.svg",
  30703. extra: 392/273,
  30704. bottom: 47/439
  30705. }
  30706. },
  30707. breath: {
  30708. height: math.unit(7.4, "feet"),
  30709. name: "Breath",
  30710. image: {
  30711. source: "./media/characters/dascalti/breath.svg"
  30712. }
  30713. },
  30714. fed: {
  30715. height: math.unit(3.6, "meters"),
  30716. weight: math.unit(16000, "lb"),
  30717. name: "Fed",
  30718. image: {
  30719. source: "./media/characters/dascalti/fed.svg",
  30720. extra: 1419/820,
  30721. bottom: 95/1514
  30722. }
  30723. },
  30724. },
  30725. [
  30726. {
  30727. name: "Normal",
  30728. height: math.unit(3.5, "meters"),
  30729. default: true
  30730. },
  30731. ]
  30732. ))
  30733. characterMakers.push(() => makeCharacter(
  30734. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30735. {
  30736. front: {
  30737. height: math.unit(3 + 5/12, "feet"),
  30738. name: "Front",
  30739. image: {
  30740. source: "./media/characters/mauve/front.svg",
  30741. extra: 1126/1033,
  30742. bottom: 65/1191
  30743. }
  30744. },
  30745. side: {
  30746. height: math.unit(3 + 5/12, "feet"),
  30747. name: "Side",
  30748. image: {
  30749. source: "./media/characters/mauve/side.svg",
  30750. extra: 1089/1001,
  30751. bottom: 29/1118
  30752. }
  30753. },
  30754. back: {
  30755. height: math.unit(3 + 5/12, "feet"),
  30756. name: "Back",
  30757. image: {
  30758. source: "./media/characters/mauve/back.svg",
  30759. extra: 1173/1053,
  30760. bottom: 109/1282
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "Normal",
  30767. height: math.unit(3 + 5/12, "feet"),
  30768. default: true
  30769. },
  30770. ]
  30771. ))
  30772. characterMakers.push(() => makeCharacter(
  30773. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30774. {
  30775. front: {
  30776. height: math.unit(6 + 3/12, "feet"),
  30777. weight: math.unit(430, "lb"),
  30778. name: "Front",
  30779. image: {
  30780. source: "./media/characters/carlos/front.svg",
  30781. extra: 1964/1913,
  30782. bottom: 70/2034
  30783. }
  30784. },
  30785. },
  30786. [
  30787. {
  30788. name: "Normal",
  30789. height: math.unit(6 + 3/12, "feet"),
  30790. default: true
  30791. },
  30792. ]
  30793. ))
  30794. characterMakers.push(() => makeCharacter(
  30795. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30796. {
  30797. back: {
  30798. height: math.unit(5 + 10/12, "feet"),
  30799. weight: math.unit(200, "lb"),
  30800. name: "Back",
  30801. image: {
  30802. source: "./media/characters/jax/back.svg",
  30803. extra: 764/739,
  30804. bottom: 25/789
  30805. }
  30806. },
  30807. },
  30808. [
  30809. {
  30810. name: "Normal",
  30811. height: math.unit(5 + 10/12, "feet"),
  30812. default: true
  30813. },
  30814. ]
  30815. ))
  30816. characterMakers.push(() => makeCharacter(
  30817. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30818. {
  30819. front: {
  30820. height: math.unit(8, "feet"),
  30821. weight: math.unit(250, "lb"),
  30822. name: "Front",
  30823. image: {
  30824. source: "./media/characters/eikthynir/front.svg",
  30825. extra: 1332/1166,
  30826. bottom: 82/1414
  30827. }
  30828. },
  30829. back: {
  30830. height: math.unit(8, "feet"),
  30831. weight: math.unit(250, "lb"),
  30832. name: "Back",
  30833. image: {
  30834. source: "./media/characters/eikthynir/back.svg",
  30835. extra: 1342/1190,
  30836. bottom: 19/1361
  30837. }
  30838. },
  30839. dick: {
  30840. height: math.unit(2.35, "feet"),
  30841. name: "Dick",
  30842. image: {
  30843. source: "./media/characters/eikthynir/dick.svg"
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(8, "feet"),
  30851. default: true
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(99, "meters"),
  30860. weight: math.unit(13000, "tons"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/zlmos/front.svg",
  30864. extra: 2202/1992,
  30865. bottom: 315/2517
  30866. }
  30867. },
  30868. },
  30869. [
  30870. {
  30871. name: "Macro",
  30872. height: math.unit(99, "meters"),
  30873. default: true
  30874. },
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30879. {
  30880. front: {
  30881. height: math.unit(6 + 5/12, "feet"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/purri/front.svg",
  30885. extra: 1698/1610,
  30886. bottom: 32/1730
  30887. }
  30888. },
  30889. frontAlt: {
  30890. height: math.unit(6 + 5/12, "feet"),
  30891. name: "Front (Alt)",
  30892. image: {
  30893. source: "./media/characters/purri/front-alt.svg",
  30894. extra: 450/420,
  30895. bottom: 26/476
  30896. }
  30897. },
  30898. boots: {
  30899. height: math.unit(5.5, "feet"),
  30900. name: "Boots",
  30901. image: {
  30902. source: "./media/characters/purri/boots.svg",
  30903. extra: 905/853,
  30904. bottom: 18/923
  30905. }
  30906. },
  30907. lying: {
  30908. height: math.unit(2, "feet"),
  30909. name: "Lying",
  30910. image: {
  30911. source: "./media/characters/purri/lying.svg",
  30912. extra: 940/843,
  30913. bottom: 146/1086
  30914. }
  30915. },
  30916. devious: {
  30917. height: math.unit(1.77, "feet"),
  30918. name: "Devious",
  30919. image: {
  30920. source: "./media/characters/purri/devious.svg",
  30921. extra: 1440/1155,
  30922. bottom: 147/1587
  30923. }
  30924. },
  30925. bean: {
  30926. height: math.unit(1.94, "feet"),
  30927. name: "Bean",
  30928. image: {
  30929. source: "./media/characters/purri/bean.svg"
  30930. }
  30931. },
  30932. },
  30933. [
  30934. {
  30935. name: "Micro",
  30936. height: math.unit(1, "mm")
  30937. },
  30938. {
  30939. name: "Normal",
  30940. height: math.unit(6 + 5/12, "feet"),
  30941. default: true
  30942. },
  30943. {
  30944. name: "Macro :3c",
  30945. height: math.unit(2, "miles")
  30946. },
  30947. ]
  30948. ))
  30949. characterMakers.push(() => makeCharacter(
  30950. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30951. {
  30952. front: {
  30953. height: math.unit(6 + 2/12, "feet"),
  30954. weight: math.unit(250, "lb"),
  30955. name: "Front",
  30956. image: {
  30957. source: "./media/characters/moonlight/front.svg",
  30958. extra: 1044/908,
  30959. bottom: 56/1100
  30960. }
  30961. },
  30962. feral: {
  30963. height: math.unit(3 + 1/12, "feet"),
  30964. weight: math.unit(50, "kg"),
  30965. name: "Feral",
  30966. image: {
  30967. source: "./media/characters/moonlight/feral.svg",
  30968. extra: 3705/2791,
  30969. bottom: 145/3850
  30970. }
  30971. },
  30972. paw: {
  30973. height: math.unit(1, "feet"),
  30974. name: "Paw",
  30975. image: {
  30976. source: "./media/characters/moonlight/paw.svg"
  30977. }
  30978. },
  30979. paws: {
  30980. height: math.unit(0.98, "feet"),
  30981. name: "Paws",
  30982. image: {
  30983. source: "./media/characters/moonlight/paws.svg",
  30984. extra: 939/939,
  30985. bottom: 50/989
  30986. }
  30987. },
  30988. mouth: {
  30989. height: math.unit(0.48, "feet"),
  30990. name: "Mouth",
  30991. image: {
  30992. source: "./media/characters/moonlight/mouth.svg"
  30993. }
  30994. },
  30995. dick: {
  30996. height: math.unit(1.46, "feet"),
  30997. name: "Dick",
  30998. image: {
  30999. source: "./media/characters/moonlight/dick.svg"
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Normal",
  31006. height: math.unit(6 + 2/12, "feet"),
  31007. default: true
  31008. },
  31009. {
  31010. name: "Macro",
  31011. height: math.unit(300, "feet")
  31012. },
  31013. {
  31014. name: "Macro+",
  31015. height: math.unit(1, "mile")
  31016. },
  31017. {
  31018. name: "Mt. Moon",
  31019. height: math.unit(5, "miles")
  31020. },
  31021. {
  31022. name: "Megamacro",
  31023. height: math.unit(15, "miles")
  31024. },
  31025. ]
  31026. ))
  31027. characterMakers.push(() => makeCharacter(
  31028. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31029. {
  31030. back: {
  31031. height: math.unit(6, "feet"),
  31032. weight: math.unit(150, "lb"),
  31033. name: "Back",
  31034. image: {
  31035. source: "./media/characters/sylen/back.svg",
  31036. extra: 1335/1273,
  31037. bottom: 107/1442
  31038. }
  31039. },
  31040. },
  31041. [
  31042. {
  31043. name: "Normal",
  31044. height: math.unit(5 + 5/12, "feet")
  31045. },
  31046. {
  31047. name: "Megamacro",
  31048. height: math.unit(3, "miles"),
  31049. default: true
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(6, "feet"),
  31058. weight: math.unit(190, "lb"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/huttser/front.svg",
  31062. extra: 1152/1058,
  31063. bottom: 23/1175
  31064. }
  31065. },
  31066. side: {
  31067. height: math.unit(6, "feet"),
  31068. weight: math.unit(190, "lb"),
  31069. name: "Side",
  31070. image: {
  31071. source: "./media/characters/huttser/side.svg",
  31072. extra: 1174/1065,
  31073. bottom: 18/1192
  31074. }
  31075. },
  31076. back: {
  31077. height: math.unit(6, "feet"),
  31078. weight: math.unit(190, "lb"),
  31079. name: "Back",
  31080. image: {
  31081. source: "./media/characters/huttser/back.svg",
  31082. extra: 1158/1056,
  31083. bottom: 12/1170
  31084. }
  31085. },
  31086. },
  31087. [
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31092. {
  31093. side: {
  31094. height: math.unit(12 + 9/12, "feet"),
  31095. weight: math.unit(15000, "lb"),
  31096. name: "Side",
  31097. image: {
  31098. source: "./media/characters/faan/side.svg",
  31099. extra: 2747/2697,
  31100. bottom: 0/2747
  31101. }
  31102. },
  31103. front: {
  31104. height: math.unit(12 + 9/12, "feet"),
  31105. weight: math.unit(15000, "lb"),
  31106. name: "Front",
  31107. image: {
  31108. source: "./media/characters/faan/front.svg",
  31109. extra: 607/571,
  31110. bottom: 24/631
  31111. }
  31112. },
  31113. head: {
  31114. height: math.unit(2.85, "feet"),
  31115. name: "Head",
  31116. image: {
  31117. source: "./media/characters/faan/head.svg"
  31118. }
  31119. },
  31120. headAlt: {
  31121. height: math.unit(3.13, "feet"),
  31122. name: "Head-alt",
  31123. image: {
  31124. source: "./media/characters/faan/head-alt.svg"
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(12 + 9/12, "feet"),
  31132. default: true
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(6, "feet"),
  31141. weight: math.unit(300, "lb"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/tanio/front.svg",
  31145. extra: 711/673,
  31146. bottom: 25/736
  31147. }
  31148. },
  31149. },
  31150. [
  31151. {
  31152. name: "Normal",
  31153. height: math.unit(6, "feet"),
  31154. default: true
  31155. },
  31156. ]
  31157. ))
  31158. characterMakers.push(() => makeCharacter(
  31159. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31160. {
  31161. front: {
  31162. height: math.unit(3, "inches"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/noboru/front.svg",
  31166. extra: 1039/932,
  31167. bottom: 18/1057
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Micro",
  31174. height: math.unit(3, "inches"),
  31175. default: true
  31176. },
  31177. ]
  31178. ))
  31179. characterMakers.push(() => makeCharacter(
  31180. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31181. {
  31182. front: {
  31183. height: math.unit(1.85, "meters"),
  31184. weight: math.unit(80, "kg"),
  31185. name: "Front",
  31186. image: {
  31187. source: "./media/characters/daniel-barrett/front.svg",
  31188. extra: 355/337,
  31189. bottom: 9/364
  31190. }
  31191. },
  31192. },
  31193. [
  31194. {
  31195. name: "Pico",
  31196. height: math.unit(0.0433, "mm")
  31197. },
  31198. {
  31199. name: "Nano",
  31200. height: math.unit(1.5, "mm")
  31201. },
  31202. {
  31203. name: "Micro",
  31204. height: math.unit(5.3, "cm"),
  31205. default: true
  31206. },
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(1.85, "meters")
  31210. },
  31211. {
  31212. name: "Macro",
  31213. height: math.unit(64.7, "meters")
  31214. },
  31215. {
  31216. name: "Megamacro",
  31217. height: math.unit(2.26, "km")
  31218. },
  31219. {
  31220. name: "Gigamacro",
  31221. height: math.unit(79, "km")
  31222. },
  31223. {
  31224. name: "Teramacro",
  31225. height: math.unit(2765, "km")
  31226. },
  31227. {
  31228. name: "Petamacro",
  31229. height: math.unit(96678, "km")
  31230. },
  31231. ]
  31232. ))
  31233. characterMakers.push(() => makeCharacter(
  31234. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31235. {
  31236. front: {
  31237. height: math.unit(30, "meters"),
  31238. weight: math.unit(400, "tons"),
  31239. name: "Front",
  31240. image: {
  31241. source: "./media/characters/zeel/front.svg",
  31242. extra: 2599/2599,
  31243. bottom: 226/2825
  31244. }
  31245. },
  31246. },
  31247. [
  31248. {
  31249. name: "Macro",
  31250. height: math.unit(30, "meters"),
  31251. default: true
  31252. },
  31253. ]
  31254. ))
  31255. characterMakers.push(() => makeCharacter(
  31256. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31257. {
  31258. front: {
  31259. height: math.unit(6 + 7/12, "feet"),
  31260. weight: math.unit(210, "lb"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/tarn/front.svg",
  31264. extra: 3517/3220,
  31265. bottom: 91/3608
  31266. }
  31267. },
  31268. back: {
  31269. height: math.unit(6 + 7/12, "feet"),
  31270. weight: math.unit(210, "lb"),
  31271. name: "Back",
  31272. image: {
  31273. source: "./media/characters/tarn/back.svg",
  31274. extra: 3566/3241,
  31275. bottom: 34/3600
  31276. }
  31277. },
  31278. dick: {
  31279. height: math.unit(1.65, "feet"),
  31280. name: "Dick",
  31281. image: {
  31282. source: "./media/characters/tarn/dick.svg"
  31283. }
  31284. },
  31285. paw: {
  31286. height: math.unit(1.80, "feet"),
  31287. name: "Paw",
  31288. image: {
  31289. source: "./media/characters/tarn/paw.svg"
  31290. }
  31291. },
  31292. tongue: {
  31293. height: math.unit(0.97, "feet"),
  31294. name: "Tongue",
  31295. image: {
  31296. source: "./media/characters/tarn/tongue.svg"
  31297. }
  31298. },
  31299. },
  31300. [
  31301. {
  31302. name: "Micro",
  31303. height: math.unit(4, "inches")
  31304. },
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(6 + 7/12, "feet"),
  31308. default: true
  31309. },
  31310. {
  31311. name: "Macro",
  31312. height: math.unit(300, "feet")
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31318. {
  31319. front: {
  31320. height: math.unit(5 + 7/12, "feet"),
  31321. weight: math.unit(80, "kg"),
  31322. name: "Front",
  31323. image: {
  31324. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31325. extra: 3023/2865,
  31326. bottom: 33/3056
  31327. }
  31328. },
  31329. back: {
  31330. height: math.unit(5 + 7/12, "feet"),
  31331. weight: math.unit(80, "kg"),
  31332. name: "Back",
  31333. image: {
  31334. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31335. extra: 3020/2886,
  31336. bottom: 30/3050
  31337. }
  31338. },
  31339. dick: {
  31340. height: math.unit(0.98, "feet"),
  31341. name: "Dick",
  31342. image: {
  31343. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31344. }
  31345. },
  31346. anatomy: {
  31347. height: math.unit(2.86, "feet"),
  31348. name: "Anatomy",
  31349. image: {
  31350. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Really Small",
  31357. height: math.unit(2, "inches")
  31358. },
  31359. {
  31360. name: "Micro",
  31361. height: math.unit(5.583, "inches")
  31362. },
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(5 + 7/12, "feet"),
  31366. default: true
  31367. },
  31368. {
  31369. name: "Macro",
  31370. height: math.unit(67, "feet")
  31371. },
  31372. {
  31373. name: "Megamacro",
  31374. height: math.unit(134, "feet")
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31380. {
  31381. front: {
  31382. height: math.unit(9, "feet"),
  31383. weight: math.unit(120, "lb"),
  31384. name: "Front",
  31385. image: {
  31386. source: "./media/characters/sally/front.svg",
  31387. extra: 1506/1349,
  31388. bottom: 66/1572
  31389. }
  31390. },
  31391. },
  31392. [
  31393. {
  31394. name: "Normal",
  31395. height: math.unit(9, "feet"),
  31396. default: true
  31397. },
  31398. ]
  31399. ))
  31400. characterMakers.push(() => makeCharacter(
  31401. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31402. {
  31403. front: {
  31404. height: math.unit(8, "feet"),
  31405. weight: math.unit(900, "lb"),
  31406. name: "Front",
  31407. image: {
  31408. source: "./media/characters/owen/front.svg",
  31409. extra: 1761/1657,
  31410. bottom: 74/1835
  31411. }
  31412. },
  31413. side: {
  31414. height: math.unit(8, "feet"),
  31415. weight: math.unit(900, "lb"),
  31416. name: "Side",
  31417. image: {
  31418. source: "./media/characters/owen/side.svg",
  31419. extra: 1797/1734,
  31420. bottom: 30/1827
  31421. }
  31422. },
  31423. back: {
  31424. height: math.unit(8, "feet"),
  31425. weight: math.unit(900, "lb"),
  31426. name: "Back",
  31427. image: {
  31428. source: "./media/characters/owen/back.svg",
  31429. extra: 1796/1706,
  31430. bottom: 59/1855
  31431. }
  31432. },
  31433. maw: {
  31434. height: math.unit(1.76, "feet"),
  31435. name: "Maw",
  31436. image: {
  31437. source: "./media/characters/owen/maw.svg"
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Normal",
  31444. height: math.unit(8, "feet"),
  31445. default: true
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31451. {
  31452. front: {
  31453. height: math.unit(4, "feet"),
  31454. weight: math.unit(400, "lb"),
  31455. name: "Front",
  31456. image: {
  31457. source: "./media/characters/ryth/front.svg",
  31458. extra: 876/691,
  31459. bottom: 25/901
  31460. }
  31461. },
  31462. goia: {
  31463. height: math.unit(12, "feet"),
  31464. weight: math.unit(10800, "lb"),
  31465. name: "Goia",
  31466. image: {
  31467. source: "./media/characters/ryth/goia.svg",
  31468. extra: 3450/3198,
  31469. bottom: 61/3511
  31470. }
  31471. },
  31472. },
  31473. [
  31474. {
  31475. name: "Normal",
  31476. height: math.unit(4, "feet"),
  31477. default: true
  31478. },
  31479. ]
  31480. ))
  31481. characterMakers.push(() => makeCharacter(
  31482. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31483. {
  31484. front: {
  31485. height: math.unit(7, "feet"),
  31486. weight: math.unit(180, "lb"),
  31487. name: "Front",
  31488. image: {
  31489. source: "./media/characters/necrolance/front.svg",
  31490. extra: 1062/947,
  31491. bottom: 41/1103
  31492. }
  31493. },
  31494. back: {
  31495. height: math.unit(7, "feet"),
  31496. weight: math.unit(180, "lb"),
  31497. name: "Back",
  31498. image: {
  31499. source: "./media/characters/necrolance/back.svg",
  31500. extra: 1045/984,
  31501. bottom: 14/1059
  31502. }
  31503. },
  31504. wing: {
  31505. height: math.unit(2.67, "feet"),
  31506. name: "Wing",
  31507. image: {
  31508. source: "./media/characters/necrolance/wing.svg"
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Normal",
  31515. height: math.unit(7, "feet"),
  31516. default: true
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31522. {
  31523. front: {
  31524. height: math.unit(76, "meters"),
  31525. weight: math.unit(30000, "tons"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/tyler/front.svg",
  31529. extra: 1640/1640,
  31530. bottom: 114/1754
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Macro",
  31537. height: math.unit(76, "meters"),
  31538. default: true
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31544. {
  31545. front: {
  31546. height: math.unit(4 + 11/12, "feet"),
  31547. weight: math.unit(132, "lb"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/icey/front.svg",
  31551. extra: 2750/2550,
  31552. bottom: 33/2783
  31553. }
  31554. },
  31555. back: {
  31556. height: math.unit(4 + 11/12, "feet"),
  31557. weight: math.unit(132, "lb"),
  31558. name: "Back",
  31559. image: {
  31560. source: "./media/characters/icey/back.svg",
  31561. extra: 2624/2481,
  31562. bottom: 35/2659
  31563. }
  31564. },
  31565. },
  31566. [
  31567. {
  31568. name: "Normal",
  31569. height: math.unit(4 + 11/12, "feet"),
  31570. default: true
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31576. {
  31577. front: {
  31578. height: math.unit(100, "feet"),
  31579. weight: math.unit(0, "lb"),
  31580. name: "Front",
  31581. image: {
  31582. source: "./media/characters/smile/front.svg",
  31583. extra: 2983/2912,
  31584. bottom: 162/3145
  31585. }
  31586. },
  31587. back: {
  31588. height: math.unit(100, "feet"),
  31589. weight: math.unit(0, "lb"),
  31590. name: "Back",
  31591. image: {
  31592. source: "./media/characters/smile/back.svg",
  31593. extra: 3143/3031,
  31594. bottom: 91/3234
  31595. }
  31596. },
  31597. head: {
  31598. height: math.unit(26.3, "feet"),
  31599. weight: math.unit(0, "lb"),
  31600. name: "Head",
  31601. image: {
  31602. source: "./media/characters/smile/head.svg"
  31603. }
  31604. },
  31605. collar: {
  31606. height: math.unit(5.3, "feet"),
  31607. weight: math.unit(0, "lb"),
  31608. name: "Collar",
  31609. image: {
  31610. source: "./media/characters/smile/collar.svg"
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Macro",
  31617. height: math.unit(100, "feet"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31624. {
  31625. dragon: {
  31626. height: math.unit(26, "feet"),
  31627. weight: math.unit(36, "tons"),
  31628. name: "Dragon",
  31629. image: {
  31630. source: "./media/characters/arimphae/dragon.svg",
  31631. extra: 1574/983,
  31632. bottom: 357/1931
  31633. }
  31634. },
  31635. drake: {
  31636. height: math.unit(9, "feet"),
  31637. weight: math.unit(1.5, "tons"),
  31638. name: "Drake",
  31639. image: {
  31640. source: "./media/characters/arimphae/drake.svg",
  31641. extra: 1120/925,
  31642. bottom: 435/1555
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Small",
  31649. height: math.unit(26*5/9, "feet")
  31650. },
  31651. {
  31652. name: "Normal",
  31653. height: math.unit(26, "feet"),
  31654. default: true
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31660. {
  31661. front: {
  31662. height: math.unit(8 + 9/12, "feet"),
  31663. name: "Front",
  31664. image: {
  31665. source: "./media/characters/xander/front.svg",
  31666. extra: 848/673,
  31667. bottom: 62/910
  31668. }
  31669. },
  31670. },
  31671. [
  31672. {
  31673. name: "Normal",
  31674. height: math.unit(8 + 9/12, "feet"),
  31675. default: true
  31676. },
  31677. {
  31678. name: "Gaze Grabber",
  31679. height: math.unit(13 + 8/12, "feet")
  31680. },
  31681. {
  31682. name: "Jaw Dropper",
  31683. height: math.unit(27, "feet")
  31684. },
  31685. {
  31686. name: "Show Stopper",
  31687. height: math.unit(136, "feet")
  31688. },
  31689. {
  31690. name: "Superstar",
  31691. height: math.unit(1.9e6, "miles")
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31697. {
  31698. side: {
  31699. height: math.unit(2100, "feet"),
  31700. name: "Side",
  31701. image: {
  31702. source: "./media/characters/osiris/side.svg",
  31703. extra: 1105/939,
  31704. bottom: 167/1272
  31705. }
  31706. },
  31707. },
  31708. [
  31709. {
  31710. name: "Macro",
  31711. height: math.unit(2100, "feet"),
  31712. default: true
  31713. },
  31714. ]
  31715. ))
  31716. characterMakers.push(() => makeCharacter(
  31717. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31718. {
  31719. front: {
  31720. height: math.unit(6 + 8/12, "feet"),
  31721. weight: math.unit(225, "lb"),
  31722. name: "Front",
  31723. image: {
  31724. source: "./media/characters/rhys-londe/front.svg",
  31725. extra: 2258/2141,
  31726. bottom: 188/2446
  31727. }
  31728. },
  31729. back: {
  31730. height: math.unit(6 + 8/12, "feet"),
  31731. weight: math.unit(225, "lb"),
  31732. name: "Back",
  31733. image: {
  31734. source: "./media/characters/rhys-londe/back.svg",
  31735. extra: 2237/2137,
  31736. bottom: 63/2300
  31737. }
  31738. },
  31739. frontNsfw: {
  31740. height: math.unit(6 + 8/12, "feet"),
  31741. weight: math.unit(225, "lb"),
  31742. name: "Front (NSFW)",
  31743. image: {
  31744. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31745. extra: 2258/2141,
  31746. bottom: 188/2446
  31747. }
  31748. },
  31749. backNsfw: {
  31750. height: math.unit(6 + 8/12, "feet"),
  31751. weight: math.unit(225, "lb"),
  31752. name: "Back (NSFW)",
  31753. image: {
  31754. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31755. extra: 2237/2137,
  31756. bottom: 63/2300
  31757. }
  31758. },
  31759. dick: {
  31760. height: math.unit(30, "inches"),
  31761. name: "Dick",
  31762. image: {
  31763. source: "./media/characters/rhys-londe/dick.svg"
  31764. }
  31765. },
  31766. maw: {
  31767. height: math.unit(1.6, "feet"),
  31768. name: "Maw",
  31769. image: {
  31770. source: "./media/characters/rhys-londe/maw.svg"
  31771. }
  31772. },
  31773. },
  31774. [
  31775. {
  31776. name: "Normal",
  31777. height: math.unit(6 + 8/12, "feet"),
  31778. default: true
  31779. },
  31780. ]
  31781. ))
  31782. characterMakers.push(() => makeCharacter(
  31783. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31784. {
  31785. front: {
  31786. height: math.unit(3 + 10/12, "feet"),
  31787. weight: math.unit(90, "lb"),
  31788. name: "Front",
  31789. image: {
  31790. source: "./media/characters/taivas-ensim/front.svg",
  31791. extra: 1327/1216,
  31792. bottom: 96/1423
  31793. }
  31794. },
  31795. back: {
  31796. height: math.unit(3 + 10/12, "feet"),
  31797. weight: math.unit(90, "lb"),
  31798. name: "Back",
  31799. image: {
  31800. source: "./media/characters/taivas-ensim/back.svg",
  31801. extra: 1355/1247,
  31802. bottom: 11/1366
  31803. }
  31804. },
  31805. frontNsfw: {
  31806. height: math.unit(3 + 10/12, "feet"),
  31807. weight: math.unit(90, "lb"),
  31808. name: "Front (NSFW)",
  31809. image: {
  31810. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31811. extra: 1327/1216,
  31812. bottom: 96/1423
  31813. }
  31814. },
  31815. backNsfw: {
  31816. height: math.unit(3 + 10/12, "feet"),
  31817. weight: math.unit(90, "lb"),
  31818. name: "Back (NSFW)",
  31819. image: {
  31820. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31821. extra: 1355/1247,
  31822. bottom: 11/1366
  31823. }
  31824. },
  31825. },
  31826. [
  31827. {
  31828. name: "Normal",
  31829. height: math.unit(3 + 10/12, "feet"),
  31830. default: true
  31831. },
  31832. ]
  31833. ))
  31834. characterMakers.push(() => makeCharacter(
  31835. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31836. {
  31837. front: {
  31838. height: math.unit(9 + 6/12, "feet"),
  31839. weight: math.unit(940, "lb"),
  31840. name: "Front",
  31841. image: {
  31842. source: "./media/characters/byliss/front.svg",
  31843. extra: 1327/1290,
  31844. bottom: 82/1409
  31845. }
  31846. },
  31847. back: {
  31848. height: math.unit(9 + 6/12, "feet"),
  31849. weight: math.unit(940, "lb"),
  31850. name: "Back",
  31851. image: {
  31852. source: "./media/characters/byliss/back.svg",
  31853. extra: 1376/1349,
  31854. bottom: 9/1385
  31855. }
  31856. },
  31857. frontNsfw: {
  31858. height: math.unit(9 + 6/12, "feet"),
  31859. weight: math.unit(940, "lb"),
  31860. name: "Front (NSFW)",
  31861. image: {
  31862. source: "./media/characters/byliss/front-nsfw.svg",
  31863. extra: 1327/1290,
  31864. bottom: 82/1409
  31865. }
  31866. },
  31867. backNsfw: {
  31868. height: math.unit(9 + 6/12, "feet"),
  31869. weight: math.unit(940, "lb"),
  31870. name: "Back (NSFW)",
  31871. image: {
  31872. source: "./media/characters/byliss/back-nsfw.svg",
  31873. extra: 1376/1349,
  31874. bottom: 9/1385
  31875. }
  31876. },
  31877. },
  31878. [
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(9 + 6/12, "feet"),
  31882. default: true
  31883. },
  31884. ]
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31888. {
  31889. front: {
  31890. height: math.unit(5 + 2/12, "feet"),
  31891. weight: math.unit(200, "lb"),
  31892. name: "Front",
  31893. image: {
  31894. source: "./media/characters/noraly/front.svg",
  31895. extra: 4985/4773,
  31896. bottom: 150/5135
  31897. }
  31898. },
  31899. full: {
  31900. height: math.unit(5 + 2/12, "feet"),
  31901. weight: math.unit(164, "lb"),
  31902. name: "Full",
  31903. image: {
  31904. source: "./media/characters/noraly/full.svg",
  31905. extra: 1114/1059,
  31906. bottom: 35/1149
  31907. }
  31908. },
  31909. fuller: {
  31910. height: math.unit(5 + 2/12, "feet"),
  31911. weight: math.unit(230, "lb"),
  31912. name: "Fuller",
  31913. image: {
  31914. source: "./media/characters/noraly/fuller.svg",
  31915. extra: 1114/1059,
  31916. bottom: 35/1149
  31917. }
  31918. },
  31919. fullest: {
  31920. height: math.unit(5 + 2/12, "feet"),
  31921. weight: math.unit(300, "lb"),
  31922. name: "Fullest",
  31923. image: {
  31924. source: "./media/characters/noraly/fullest.svg",
  31925. extra: 1114/1059,
  31926. bottom: 35/1149
  31927. }
  31928. },
  31929. },
  31930. [
  31931. {
  31932. name: "Normal",
  31933. height: math.unit(5 + 2/12, "feet"),
  31934. default: true
  31935. },
  31936. ]
  31937. ))
  31938. characterMakers.push(() => makeCharacter(
  31939. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31940. {
  31941. front: {
  31942. height: math.unit(5 + 2/12, "feet"),
  31943. weight: math.unit(210, "lb"),
  31944. name: "Front",
  31945. image: {
  31946. source: "./media/characters/pera/front.svg",
  31947. extra: 1560/1531,
  31948. bottom: 165/1725
  31949. }
  31950. },
  31951. back: {
  31952. height: math.unit(5 + 2/12, "feet"),
  31953. weight: math.unit(210, "lb"),
  31954. name: "Back",
  31955. image: {
  31956. source: "./media/characters/pera/back.svg",
  31957. extra: 1523/1493,
  31958. bottom: 152/1675
  31959. }
  31960. },
  31961. dick: {
  31962. height: math.unit(2.4, "feet"),
  31963. name: "Dick",
  31964. image: {
  31965. source: "./media/characters/pera/dick.svg"
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Normal",
  31972. height: math.unit(5 + 2/12, "feet"),
  31973. default: true
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31979. {
  31980. front: {
  31981. height: math.unit(12, "feet"),
  31982. weight: math.unit(3200, "lb"),
  31983. name: "Front",
  31984. image: {
  31985. source: "./media/characters/julian/front.svg",
  31986. extra: 2962/2701,
  31987. bottom: 184/3146
  31988. }
  31989. },
  31990. maw: {
  31991. height: math.unit(5.35, "feet"),
  31992. name: "Maw",
  31993. image: {
  31994. source: "./media/characters/julian/maw.svg"
  31995. }
  31996. },
  31997. paw: {
  31998. height: math.unit(3.07, "feet"),
  31999. name: "Paw",
  32000. image: {
  32001. source: "./media/characters/julian/paw.svg"
  32002. }
  32003. },
  32004. },
  32005. [
  32006. {
  32007. name: "Default",
  32008. height: math.unit(12, "feet"),
  32009. default: true
  32010. },
  32011. {
  32012. name: "Big",
  32013. height: math.unit(50, "feet")
  32014. },
  32015. {
  32016. name: "Really Big",
  32017. height: math.unit(1, "mile")
  32018. },
  32019. {
  32020. name: "Extremely Big",
  32021. height: math.unit(100, "miles")
  32022. },
  32023. {
  32024. name: "Planet Hugger",
  32025. height: math.unit(200, "megameters")
  32026. },
  32027. {
  32028. name: "Unreasonably Big",
  32029. height: math.unit(1e300, "meters")
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32035. {
  32036. solgooleo: {
  32037. height: math.unit(4, "meters"),
  32038. weight: math.unit(6000*1.5, "kg"),
  32039. volume: math.unit(6000, "liters"),
  32040. name: "Solgooleo",
  32041. image: {
  32042. source: "./media/characters/pi/solgooleo.svg",
  32043. extra: 388/331,
  32044. bottom: 29/417
  32045. }
  32046. },
  32047. },
  32048. [
  32049. {
  32050. name: "Normal",
  32051. height: math.unit(4, "meters"),
  32052. default: true
  32053. },
  32054. ]
  32055. ))
  32056. characterMakers.push(() => makeCharacter(
  32057. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32058. {
  32059. front: {
  32060. height: math.unit(8 + 2/12, "feet"),
  32061. weight: math.unit(4, "tons"),
  32062. name: "Front",
  32063. image: {
  32064. source: "./media/characters/shaun/front.svg",
  32065. extra: 1550/1505,
  32066. bottom: 353/1903
  32067. }
  32068. },
  32069. },
  32070. [
  32071. {
  32072. name: "Lorg",
  32073. height: math.unit(8 + 2/12, "feet"),
  32074. default: true
  32075. },
  32076. ]
  32077. ))
  32078. characterMakers.push(() => makeCharacter(
  32079. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32080. {
  32081. front: {
  32082. height: math.unit(7, "feet"),
  32083. name: "Front",
  32084. image: {
  32085. source: "./media/characters/sini/front.svg",
  32086. extra: 726/678,
  32087. bottom: 35/761
  32088. }
  32089. },
  32090. back: {
  32091. height: math.unit(7, "feet"),
  32092. name: "Back",
  32093. image: {
  32094. source: "./media/characters/sini/back.svg",
  32095. extra: 743/701,
  32096. bottom: 12/755
  32097. }
  32098. },
  32099. mawAnthro: {
  32100. height: math.unit(2.14, "feet"),
  32101. name: "Maw (Anthro)",
  32102. image: {
  32103. source: "./media/characters/sini/maw-anthro.svg"
  32104. }
  32105. },
  32106. dick: {
  32107. height: math.unit(1.45, "feet"),
  32108. name: "Dick (Anthro)",
  32109. image: {
  32110. source: "./media/characters/sini/dick-anthro.svg"
  32111. }
  32112. },
  32113. feral: {
  32114. height: math.unit(13, "feet"),
  32115. name: "Feral",
  32116. image: {
  32117. source: "./media/characters/sini/feral.svg",
  32118. extra: 814/605,
  32119. bottom: 11/825
  32120. }
  32121. },
  32122. mawFeral: {
  32123. height: math.unit(4.6, "feet"),
  32124. name: "Maw-feral",
  32125. image: {
  32126. source: "./media/characters/sini/maw-feral.svg"
  32127. }
  32128. },
  32129. footFeral: {
  32130. height: math.unit(4.2, "feet"),
  32131. name: "Foot-feral",
  32132. image: {
  32133. source: "./media/characters/sini/foot-feral.svg"
  32134. }
  32135. },
  32136. },
  32137. [
  32138. {
  32139. name: "Normal",
  32140. height: math.unit(7, "feet"),
  32141. default: true
  32142. },
  32143. ]
  32144. ))
  32145. characterMakers.push(() => makeCharacter(
  32146. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32147. {
  32148. side: {
  32149. height: math.unit(13, "meters"),
  32150. weight: math.unit(9072, "kg"),
  32151. name: "Side",
  32152. image: {
  32153. source: "./media/characters/raylldo/side.svg",
  32154. extra: 403/344,
  32155. bottom: 42/445
  32156. }
  32157. },
  32158. leaping: {
  32159. height: math.unit(12.3, "meters"),
  32160. weight: math.unit(9072, "kg"),
  32161. name: "Leaping",
  32162. image: {
  32163. source: "./media/characters/raylldo/leaping.svg",
  32164. extra: 470/249,
  32165. bottom: 13/483
  32166. }
  32167. },
  32168. flying: {
  32169. height: math.unit(18, "meters"),
  32170. weight: math.unit(9072, "kg"),
  32171. name: "Flying",
  32172. image: {
  32173. source: "./media/characters/raylldo/flying.svg"
  32174. }
  32175. },
  32176. head: {
  32177. height: math.unit(5.85, "meters"),
  32178. name: "Head",
  32179. image: {
  32180. source: "./media/characters/raylldo/head.svg"
  32181. }
  32182. },
  32183. maw: {
  32184. height: math.unit(5.32, "meters"),
  32185. name: "Maw",
  32186. image: {
  32187. source: "./media/characters/raylldo/maw.svg"
  32188. }
  32189. },
  32190. eye: {
  32191. height: math.unit(0.54, "meters"),
  32192. name: "Eye",
  32193. image: {
  32194. source: "./media/characters/raylldo/eye.svg"
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(13, "meters"),
  32202. default: true
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32208. {
  32209. anthroFront: {
  32210. height: math.unit(9, "feet"),
  32211. weight: math.unit(600, "lb"),
  32212. name: "Anthro (Front)",
  32213. image: {
  32214. source: "./media/characters/glint/anthro-front.svg",
  32215. extra: 1097/1018,
  32216. bottom: 28/1125
  32217. }
  32218. },
  32219. anthroBack: {
  32220. height: math.unit(9, "feet"),
  32221. weight: math.unit(600, "lb"),
  32222. name: "Anthro (Back)",
  32223. image: {
  32224. source: "./media/characters/glint/anthro-back.svg",
  32225. extra: 1154/997,
  32226. bottom: 36/1190
  32227. }
  32228. },
  32229. feral: {
  32230. height: math.unit(11, "feet"),
  32231. weight: math.unit(50000, "lb"),
  32232. name: "Feral",
  32233. image: {
  32234. source: "./media/characters/glint/feral.svg",
  32235. extra: 3035/1585,
  32236. bottom: 1169/4204
  32237. }
  32238. },
  32239. dickAnthro: {
  32240. height: math.unit(0.7, "meters"),
  32241. name: "Dick (Anthro)",
  32242. image: {
  32243. source: "./media/characters/glint/dick-anthro.svg"
  32244. }
  32245. },
  32246. dickFeral: {
  32247. height: math.unit(2.65, "meters"),
  32248. name: "Dick (Feral)",
  32249. image: {
  32250. source: "./media/characters/glint/dick-feral.svg"
  32251. }
  32252. },
  32253. slitHidden: {
  32254. height: math.unit(5.85, "meters"),
  32255. name: "Slit (Hidden)",
  32256. image: {
  32257. source: "./media/characters/glint/slit-hidden.svg"
  32258. }
  32259. },
  32260. slitErect: {
  32261. height: math.unit(5.85, "meters"),
  32262. name: "Slit (Erect)",
  32263. image: {
  32264. source: "./media/characters/glint/slit-erect.svg"
  32265. }
  32266. },
  32267. mawAnthro: {
  32268. height: math.unit(0.63, "meters"),
  32269. name: "Maw (Anthro)",
  32270. image: {
  32271. source: "./media/characters/glint/maw.svg"
  32272. }
  32273. },
  32274. mawFeral: {
  32275. height: math.unit(2.89, "meters"),
  32276. name: "Maw (Feral)",
  32277. image: {
  32278. source: "./media/characters/glint/maw.svg"
  32279. }
  32280. },
  32281. },
  32282. [
  32283. {
  32284. name: "Normal",
  32285. height: math.unit(9, "feet"),
  32286. default: true
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32292. {
  32293. side: {
  32294. height: math.unit(15, "feet"),
  32295. weight: math.unit(5000, "kg"),
  32296. name: "Side",
  32297. image: {
  32298. source: "./media/characters/kairne/side.svg",
  32299. extra: 979/811,
  32300. bottom: 13/992
  32301. }
  32302. },
  32303. front: {
  32304. height: math.unit(15, "feet"),
  32305. weight: math.unit(5000, "kg"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/kairne/front.svg",
  32309. extra: 908/814,
  32310. bottom: 26/934
  32311. }
  32312. },
  32313. sideNsfw: {
  32314. height: math.unit(15, "feet"),
  32315. weight: math.unit(5000, "kg"),
  32316. name: "Side (NSFW)",
  32317. image: {
  32318. source: "./media/characters/kairne/side-nsfw.svg",
  32319. extra: 979/811,
  32320. bottom: 13/992
  32321. }
  32322. },
  32323. frontNsfw: {
  32324. height: math.unit(15, "feet"),
  32325. weight: math.unit(5000, "kg"),
  32326. name: "Front (NSFW)",
  32327. image: {
  32328. source: "./media/characters/kairne/front-nsfw.svg",
  32329. extra: 908/814,
  32330. bottom: 26/934
  32331. }
  32332. },
  32333. dickCaged: {
  32334. height: math.unit(0.65, "meters"),
  32335. name: "Dick-caged",
  32336. image: {
  32337. source: "./media/characters/kairne/dick-caged.svg"
  32338. }
  32339. },
  32340. dick: {
  32341. height: math.unit(0.79, "meters"),
  32342. name: "Dick",
  32343. image: {
  32344. source: "./media/characters/kairne/dick.svg"
  32345. }
  32346. },
  32347. genitals: {
  32348. height: math.unit(1.29, "meters"),
  32349. name: "Genitals",
  32350. image: {
  32351. source: "./media/characters/kairne/genitals.svg"
  32352. }
  32353. },
  32354. maw: {
  32355. height: math.unit(1.73, "meters"),
  32356. name: "Maw",
  32357. image: {
  32358. source: "./media/characters/kairne/maw.svg"
  32359. }
  32360. },
  32361. },
  32362. [
  32363. {
  32364. name: "Normal",
  32365. height: math.unit(15, "feet"),
  32366. default: true
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32372. {
  32373. front: {
  32374. height: math.unit(5 + 8/12, "feet"),
  32375. weight: math.unit(139, "lb"),
  32376. name: "Front",
  32377. image: {
  32378. source: "./media/characters/biscuit-jackal/front.svg",
  32379. extra: 2106/1961,
  32380. bottom: 58/2164
  32381. }
  32382. },
  32383. back: {
  32384. height: math.unit(5 + 8/12, "feet"),
  32385. weight: math.unit(139, "lb"),
  32386. name: "Back",
  32387. image: {
  32388. source: "./media/characters/biscuit-jackal/back.svg",
  32389. extra: 2132/1976,
  32390. bottom: 57/2189
  32391. }
  32392. },
  32393. werejackal: {
  32394. height: math.unit(6 + 3/12, "feet"),
  32395. weight: math.unit(188, "lb"),
  32396. name: "Werejackal",
  32397. image: {
  32398. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32399. extra: 2373/2178,
  32400. bottom: 53/2426
  32401. }
  32402. },
  32403. },
  32404. [
  32405. {
  32406. name: "Normal",
  32407. height: math.unit(5 + 8/12, "feet"),
  32408. default: true
  32409. },
  32410. ]
  32411. ))
  32412. characterMakers.push(() => makeCharacter(
  32413. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32414. {
  32415. front: {
  32416. height: math.unit(140, "cm"),
  32417. weight: math.unit(45, "kg"),
  32418. name: "Front",
  32419. image: {
  32420. source: "./media/characters/tayra-white/front.svg",
  32421. extra: 2229/2192,
  32422. bottom: 75/2304
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Normal",
  32429. height: math.unit(140, "cm"),
  32430. default: true
  32431. },
  32432. ]
  32433. ))
  32434. characterMakers.push(() => makeCharacter(
  32435. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32436. {
  32437. front: {
  32438. height: math.unit(4 + 5/12, "feet"),
  32439. name: "Front",
  32440. image: {
  32441. source: "./media/characters/scoop/front.svg",
  32442. extra: 1257/1136,
  32443. bottom: 69/1326
  32444. }
  32445. },
  32446. back: {
  32447. height: math.unit(4 + 5/12, "feet"),
  32448. name: "Back",
  32449. image: {
  32450. source: "./media/characters/scoop/back.svg",
  32451. extra: 1321/1152,
  32452. bottom: 32/1353
  32453. }
  32454. },
  32455. maw: {
  32456. height: math.unit(0.68, "feet"),
  32457. name: "Maw",
  32458. image: {
  32459. source: "./media/characters/scoop/maw.svg"
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Really Small",
  32466. height: math.unit(1, "mm")
  32467. },
  32468. {
  32469. name: "Micro",
  32470. height: math.unit(1, "inch")
  32471. },
  32472. {
  32473. name: "Normal",
  32474. height: math.unit(4 + 5/12, "feet"),
  32475. default: true
  32476. },
  32477. {
  32478. name: "Macro",
  32479. height: math.unit(200, "feet")
  32480. },
  32481. {
  32482. name: "Megamacro",
  32483. height: math.unit(3240, "feet")
  32484. },
  32485. {
  32486. name: "Teramacro",
  32487. height: math.unit(2500, "miles")
  32488. },
  32489. ]
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32493. {
  32494. front: {
  32495. height: math.unit(15 + 7/12, "feet"),
  32496. name: "Front",
  32497. image: {
  32498. source: "./media/characters/saphinara/front.svg",
  32499. extra: 604/546,
  32500. bottom: 19/623
  32501. }
  32502. },
  32503. side: {
  32504. height: math.unit(15 + 7/12, "feet"),
  32505. name: "Side",
  32506. image: {
  32507. source: "./media/characters/saphinara/side.svg",
  32508. extra: 605/547,
  32509. bottom: 6/611
  32510. }
  32511. },
  32512. back: {
  32513. height: math.unit(15 + 7/12, "feet"),
  32514. name: "Back",
  32515. image: {
  32516. source: "./media/characters/saphinara/back.svg",
  32517. extra: 591/531,
  32518. bottom: 13/604
  32519. }
  32520. },
  32521. frontTail: {
  32522. height: math.unit(15 + 7/12, "feet"),
  32523. name: "Front (Full Tail)",
  32524. image: {
  32525. source: "./media/characters/saphinara/front-tail.svg",
  32526. extra: 748/547,
  32527. bottom: 66/814
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(15 + 7/12, "feet"),
  32535. default: true
  32536. },
  32537. {
  32538. name: "Angry",
  32539. height: math.unit(30 + 6/12, "feet")
  32540. },
  32541. {
  32542. name: "Enraged",
  32543. height: math.unit(102 + 1/12, "feet")
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(6 + 8/12, "feet"),
  32552. weight: math.unit(300, "lb"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/jrain/front.svg",
  32556. extra: 3039/2865,
  32557. bottom: 399/3438
  32558. }
  32559. },
  32560. back: {
  32561. height: math.unit(6 + 8/12, "feet"),
  32562. weight: math.unit(300, "lb"),
  32563. name: "Back",
  32564. image: {
  32565. source: "./media/characters/jrain/back.svg",
  32566. extra: 3089/2938,
  32567. bottom: 172/3261
  32568. }
  32569. },
  32570. head: {
  32571. height: math.unit(2.14, "feet"),
  32572. name: "Head",
  32573. image: {
  32574. source: "./media/characters/jrain/head.svg"
  32575. }
  32576. },
  32577. maw: {
  32578. height: math.unit(1.77, "feet"),
  32579. name: "Maw",
  32580. image: {
  32581. source: "./media/characters/jrain/maw.svg"
  32582. }
  32583. },
  32584. leftHand: {
  32585. height: math.unit(1.1, "feet"),
  32586. name: "Left Hand",
  32587. image: {
  32588. source: "./media/characters/jrain/left-hand.svg"
  32589. }
  32590. },
  32591. rightHand: {
  32592. height: math.unit(1.1, "feet"),
  32593. name: "Right Hand",
  32594. image: {
  32595. source: "./media/characters/jrain/right-hand.svg"
  32596. }
  32597. },
  32598. eye: {
  32599. height: math.unit(0.35, "feet"),
  32600. name: "Eye",
  32601. image: {
  32602. source: "./media/characters/jrain/eye.svg"
  32603. }
  32604. },
  32605. },
  32606. [
  32607. {
  32608. name: "Normal",
  32609. height: math.unit(6 + 8/12, "feet"),
  32610. default: true
  32611. },
  32612. {
  32613. name: "Casually Large",
  32614. height: math.unit(25, "feet")
  32615. },
  32616. {
  32617. name: "Giant",
  32618. height: math.unit(100, "feet")
  32619. },
  32620. {
  32621. name: "Kaiju",
  32622. height: math.unit(300, "feet")
  32623. },
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32628. {
  32629. dragon: {
  32630. height: math.unit(5, "meters"),
  32631. name: "Dragon",
  32632. image: {
  32633. source: "./media/characters/sabrina/dragon.svg",
  32634. extra: 3670 / 2365,
  32635. bottom: 333 / 4003
  32636. }
  32637. },
  32638. gryphon: {
  32639. height: math.unit(3, "meters"),
  32640. name: "Gryphon",
  32641. image: {
  32642. source: "./media/characters/sabrina/gryphon.svg",
  32643. extra: 1576 / 945,
  32644. bottom: 71 / 1647
  32645. }
  32646. },
  32647. snake: {
  32648. height: math.unit(12, "meters"),
  32649. name: "Snake",
  32650. image: {
  32651. source: "./media/characters/sabrina/snake.svg",
  32652. extra: 1758 / 1320,
  32653. bottom: 186 / 1944
  32654. }
  32655. },
  32656. collar: {
  32657. height: math.unit(1.86, "meters"),
  32658. name: "Collar",
  32659. image: {
  32660. source: "./media/characters/sabrina/collar.svg"
  32661. }
  32662. },
  32663. eye: {
  32664. height: math.unit(0.53, "meters"),
  32665. name: "Eye",
  32666. image: {
  32667. source: "./media/characters/sabrina/eye.svg"
  32668. }
  32669. },
  32670. foot: {
  32671. height: math.unit(1.86, "meters"),
  32672. name: "Foot",
  32673. image: {
  32674. source: "./media/characters/sabrina/foot.svg"
  32675. }
  32676. },
  32677. hand: {
  32678. height: math.unit(1.32, "meters"),
  32679. name: "Hand",
  32680. image: {
  32681. source: "./media/characters/sabrina/hand.svg"
  32682. }
  32683. },
  32684. head: {
  32685. height: math.unit(2.44, "meters"),
  32686. name: "Head",
  32687. image: {
  32688. source: "./media/characters/sabrina/head.svg"
  32689. }
  32690. },
  32691. headAngry: {
  32692. height: math.unit(2.44, "meters"),
  32693. name: "Head (Angry))",
  32694. image: {
  32695. source: "./media/characters/sabrina/head-angry.svg"
  32696. }
  32697. },
  32698. maw: {
  32699. height: math.unit(1.65, "meters"),
  32700. name: "Maw",
  32701. image: {
  32702. source: "./media/characters/sabrina/maw.svg"
  32703. }
  32704. },
  32705. spikes: {
  32706. height: math.unit(1.69, "meters"),
  32707. name: "Spikes",
  32708. image: {
  32709. source: "./media/characters/sabrina/spikes.svg"
  32710. }
  32711. },
  32712. stomach: {
  32713. height: math.unit(1.15, "meters"),
  32714. name: "Stomach",
  32715. image: {
  32716. source: "./media/characters/sabrina/stomach.svg"
  32717. }
  32718. },
  32719. tongue: {
  32720. height: math.unit(1.27, "meters"),
  32721. name: "Tongue",
  32722. image: {
  32723. source: "./media/characters/sabrina/tongue.svg"
  32724. }
  32725. },
  32726. wingDorsal: {
  32727. height: math.unit(4.85, "meters"),
  32728. name: "Wing (Dorsal)",
  32729. image: {
  32730. source: "./media/characters/sabrina/wing-dorsal.svg"
  32731. }
  32732. },
  32733. wingVentral: {
  32734. height: math.unit(4.85, "meters"),
  32735. name: "Wing (Ventral)",
  32736. image: {
  32737. source: "./media/characters/sabrina/wing-ventral.svg"
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Normal",
  32744. height: math.unit(5, "meters"),
  32745. default: true
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32751. {
  32752. frontMaid: {
  32753. height: math.unit(5 + 5/12, "feet"),
  32754. weight: math.unit(130, "lb"),
  32755. name: "Front (Maid)",
  32756. image: {
  32757. source: "./media/characters/midnight-tales/front-maid.svg",
  32758. extra: 489/454,
  32759. bottom: 61/550
  32760. }
  32761. },
  32762. frontFormal: {
  32763. height: math.unit(5 + 5/12, "feet"),
  32764. weight: math.unit(130, "lb"),
  32765. name: "Front (Formal)",
  32766. image: {
  32767. source: "./media/characters/midnight-tales/front-formal.svg",
  32768. extra: 489/454,
  32769. bottom: 61/550
  32770. }
  32771. },
  32772. back: {
  32773. height: math.unit(5 + 5/12, "feet"),
  32774. weight: math.unit(130, "lb"),
  32775. name: "Back",
  32776. image: {
  32777. source: "./media/characters/midnight-tales/back.svg",
  32778. extra: 498/456,
  32779. bottom: 33/531
  32780. }
  32781. },
  32782. frontBeast: {
  32783. height: math.unit(40, "feet"),
  32784. weight: math.unit(64000, "lb"),
  32785. name: "Front (Beast)",
  32786. image: {
  32787. source: "./media/characters/midnight-tales/front-beast.svg",
  32788. extra: 927/860,
  32789. bottom: 53/980
  32790. }
  32791. },
  32792. backBeast: {
  32793. height: math.unit(40, "feet"),
  32794. weight: math.unit(64000, "lb"),
  32795. name: "Back (Beast)",
  32796. image: {
  32797. source: "./media/characters/midnight-tales/back-beast.svg",
  32798. extra: 929/855,
  32799. bottom: 16/945
  32800. }
  32801. },
  32802. footBeast: {
  32803. height: math.unit(6.7, "feet"),
  32804. name: "Foot (Beast)",
  32805. image: {
  32806. source: "./media/characters/midnight-tales/foot-beast.svg"
  32807. }
  32808. },
  32809. headBeast: {
  32810. height: math.unit(8, "feet"),
  32811. name: "Head (Beast)",
  32812. image: {
  32813. source: "./media/characters/midnight-tales/head-beast.svg"
  32814. }
  32815. },
  32816. },
  32817. [
  32818. {
  32819. name: "Normal",
  32820. height: math.unit(5 + 5 / 12, "feet"),
  32821. default: true
  32822. },
  32823. {
  32824. name: "Macro",
  32825. height: math.unit(25, "feet")
  32826. },
  32827. ]
  32828. ))
  32829. characterMakers.push(() => makeCharacter(
  32830. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32831. {
  32832. front: {
  32833. height: math.unit(5 + 10/12, "feet"),
  32834. name: "Front",
  32835. image: {
  32836. source: "./media/characters/argon/front.svg",
  32837. extra: 2009/1935,
  32838. bottom: 118/2127
  32839. }
  32840. },
  32841. back: {
  32842. height: math.unit(5 + 10/12, "feet"),
  32843. name: "Back",
  32844. image: {
  32845. source: "./media/characters/argon/back.svg",
  32846. extra: 2047/1992,
  32847. bottom: 20/2067
  32848. }
  32849. },
  32850. frontDressed: {
  32851. height: math.unit(5 + 10/12, "feet"),
  32852. name: "Front (Dressed)",
  32853. image: {
  32854. source: "./media/characters/argon/front-dressed.svg",
  32855. extra: 2009/1935,
  32856. bottom: 118/2127
  32857. }
  32858. },
  32859. },
  32860. [
  32861. {
  32862. name: "Normal",
  32863. height: math.unit(5 + 10/12, "feet"),
  32864. default: true
  32865. },
  32866. ]
  32867. ))
  32868. characterMakers.push(() => makeCharacter(
  32869. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32870. {
  32871. front: {
  32872. height: math.unit(8 + 6/12, "feet"),
  32873. weight: math.unit(1150, "lb"),
  32874. name: "Front",
  32875. image: {
  32876. source: "./media/characters/kichi/front.svg",
  32877. extra: 1267/1164,
  32878. bottom: 61/1328
  32879. }
  32880. },
  32881. back: {
  32882. height: math.unit(8 + 6/12, "feet"),
  32883. weight: math.unit(1150, "lb"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/kichi/back.svg",
  32887. extra: 1273/1166,
  32888. bottom: 33/1306
  32889. }
  32890. },
  32891. },
  32892. [
  32893. {
  32894. name: "Normal",
  32895. height: math.unit(8 + 6/12, "feet"),
  32896. default: true
  32897. },
  32898. ]
  32899. ))
  32900. characterMakers.push(() => makeCharacter(
  32901. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32902. {
  32903. front: {
  32904. height: math.unit(6, "feet"),
  32905. weight: math.unit(210, "lb"),
  32906. name: "Front",
  32907. image: {
  32908. source: "./media/characters/manetel-greyscale/front.svg",
  32909. extra: 350/312,
  32910. bottom: 8/358
  32911. }
  32912. },
  32913. },
  32914. [
  32915. {
  32916. name: "Micro",
  32917. height: math.unit(2, "inches")
  32918. },
  32919. {
  32920. name: "Normal",
  32921. height: math.unit(6, "feet"),
  32922. default: true
  32923. },
  32924. {
  32925. name: "Minimacro",
  32926. height: math.unit(17, "feet")
  32927. },
  32928. {
  32929. name: "Macro",
  32930. height: math.unit(117, "feet")
  32931. },
  32932. ]
  32933. ))
  32934. characterMakers.push(() => makeCharacter(
  32935. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32936. {
  32937. side: {
  32938. height: math.unit(5 + 1/12, "feet"),
  32939. weight: math.unit(418, "lb"),
  32940. name: "Side",
  32941. image: {
  32942. source: "./media/characters/softpurr/side.svg",
  32943. extra: 1993/1945,
  32944. bottom: 134/2127
  32945. }
  32946. },
  32947. front: {
  32948. height: math.unit(5 + 1/12, "feet"),
  32949. weight: math.unit(418, "lb"),
  32950. name: "Front",
  32951. image: {
  32952. source: "./media/characters/softpurr/front.svg",
  32953. extra: 1950/1856,
  32954. bottom: 174/2124
  32955. }
  32956. },
  32957. paw: {
  32958. height: math.unit(1, "feet"),
  32959. name: "Paw",
  32960. image: {
  32961. source: "./media/characters/softpurr/paw.svg"
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(5 + 1/12, "feet"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32975. {
  32976. front: {
  32977. height: math.unit(260, "meters"),
  32978. name: "Front",
  32979. image: {
  32980. source: "./media/characters/anahita/front.svg",
  32981. extra: 665/635,
  32982. bottom: 89/754
  32983. }
  32984. },
  32985. },
  32986. [
  32987. {
  32988. name: "Macro",
  32989. height: math.unit(260, "meters"),
  32990. default: true
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32996. {
  32997. front: {
  32998. height: math.unit(4 + 10/12, "feet"),
  32999. weight: math.unit(160, "lb"),
  33000. name: "Front",
  33001. image: {
  33002. source: "./media/characters/chip-mouse/front.svg",
  33003. extra: 3528/3408,
  33004. bottom: 0/3528
  33005. }
  33006. },
  33007. frontNsfw: {
  33008. height: math.unit(4 + 10/12, "feet"),
  33009. weight: math.unit(160, "lb"),
  33010. name: "Front (NSFW)",
  33011. image: {
  33012. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33013. extra: 3528/3408,
  33014. bottom: 0/3528
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(4 + 10/12, "feet"),
  33022. default: true
  33023. },
  33024. ]
  33025. ))
  33026. characterMakers.push(() => makeCharacter(
  33027. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33028. {
  33029. side: {
  33030. height: math.unit(10, "feet"),
  33031. weight: math.unit(14000, "lb"),
  33032. name: "Side",
  33033. image: {
  33034. source: "./media/characters/kremm/side.svg",
  33035. extra: 1390/1053,
  33036. bottom: 90/1480
  33037. }
  33038. },
  33039. gut: {
  33040. height: math.unit(5.8, "feet"),
  33041. name: "Gut",
  33042. image: {
  33043. source: "./media/characters/kremm/gut.svg"
  33044. }
  33045. },
  33046. ass: {
  33047. height: math.unit(6.1, "feet"),
  33048. name: "Ass",
  33049. image: {
  33050. source: "./media/characters/kremm/ass.svg"
  33051. }
  33052. },
  33053. jaws: {
  33054. height: math.unit(2.2, "feet"),
  33055. name: "Jaws",
  33056. image: {
  33057. source: "./media/characters/kremm/jaws.svg"
  33058. }
  33059. },
  33060. dick: {
  33061. height: math.unit(4.26, "feet"),
  33062. name: "Dick",
  33063. image: {
  33064. source: "./media/characters/kremm/dick.svg"
  33065. }
  33066. },
  33067. },
  33068. [
  33069. {
  33070. name: "Normal",
  33071. height: math.unit(10, "feet"),
  33072. default: true
  33073. },
  33074. ]
  33075. ))
  33076. characterMakers.push(() => makeCharacter(
  33077. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33078. {
  33079. front: {
  33080. height: math.unit(30, "stories"),
  33081. name: "Front",
  33082. image: {
  33083. source: "./media/characters/kai/front.svg",
  33084. extra: 1892/1718,
  33085. bottom: 162/2054
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Macro",
  33092. height: math.unit(30, "stories"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33099. {
  33100. front: {
  33101. height: math.unit(6 + 4/12, "feet"),
  33102. weight: math.unit(145, "lb"),
  33103. name: "Front",
  33104. image: {
  33105. source: "./media/characters/sykes/front.svg",
  33106. extra: 1321 / 1187,
  33107. bottom: 66 / 1387
  33108. }
  33109. },
  33110. back: {
  33111. height: math.unit(6 + 4/12, "feet"),
  33112. weight: math.unit(145, "lb"),
  33113. name: "Back",
  33114. image: {
  33115. source: "./media/characters/sykes/back.svg",
  33116. extra: 1326/1181,
  33117. bottom: 31/1357
  33118. }
  33119. },
  33120. handBack: {
  33121. height: math.unit(0.9, "feet"),
  33122. name: "Hand (Back)",
  33123. image: {
  33124. source: "./media/characters/sykes/hand-back.svg"
  33125. }
  33126. },
  33127. handFront: {
  33128. height: math.unit(0.839, "feet"),
  33129. name: "Hand (Front)",
  33130. image: {
  33131. source: "./media/characters/sykes/hand-front.svg"
  33132. }
  33133. },
  33134. leftFoot: {
  33135. height: math.unit(1.2, "feet"),
  33136. name: "Foot (Left)",
  33137. image: {
  33138. source: "./media/characters/sykes/foot-left.svg"
  33139. }
  33140. },
  33141. rightFoot: {
  33142. height: math.unit(1.2, "feet"),
  33143. name: "Foot (Right)",
  33144. image: {
  33145. source: "./media/characters/sykes/foot-right.svg"
  33146. }
  33147. },
  33148. maw: {
  33149. height: math.unit(1.93, "feet"),
  33150. name: "Maw",
  33151. image: {
  33152. source: "./media/characters/sykes/maw.svg"
  33153. }
  33154. },
  33155. teeth: {
  33156. height: math.unit(0.51, "feet"),
  33157. name: "Teeth",
  33158. image: {
  33159. source: "./media/characters/sykes/teeth.svg"
  33160. }
  33161. },
  33162. tongue: {
  33163. height: math.unit(2.13, "feet"),
  33164. name: "Tongue",
  33165. image: {
  33166. source: "./media/characters/sykes/tongue.svg"
  33167. }
  33168. },
  33169. uvula: {
  33170. height: math.unit(0.16, "feet"),
  33171. name: "Uvula",
  33172. image: {
  33173. source: "./media/characters/sykes/uvula.svg"
  33174. }
  33175. },
  33176. collar: {
  33177. height: math.unit(0.287, "feet"),
  33178. name: "Collar",
  33179. image: {
  33180. source: "./media/characters/sykes/collar.svg"
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Shrunken",
  33187. height: math.unit(5, "inches")
  33188. },
  33189. {
  33190. name: "Normal",
  33191. height: math.unit(6 + 4 / 12, "feet"),
  33192. default: true
  33193. },
  33194. {
  33195. name: "Big",
  33196. height: math.unit(15, "feet")
  33197. },
  33198. ]
  33199. ))
  33200. characterMakers.push(() => makeCharacter(
  33201. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33202. {
  33203. front: {
  33204. height: math.unit(5 + 8/12, "feet"),
  33205. weight: math.unit(190, "lb"),
  33206. name: "Front",
  33207. image: {
  33208. source: "./media/characters/oven-otter/front.svg",
  33209. extra: 1809/1740,
  33210. bottom: 181/1990
  33211. }
  33212. },
  33213. back: {
  33214. height: math.unit(5 + 8/12, "feet"),
  33215. weight: math.unit(190, "lb"),
  33216. name: "Back",
  33217. image: {
  33218. source: "./media/characters/oven-otter/back.svg",
  33219. extra: 1709/1635,
  33220. bottom: 118/1827
  33221. }
  33222. },
  33223. hand: {
  33224. height: math.unit(1.07, "feet"),
  33225. name: "Hand",
  33226. image: {
  33227. source: "./media/characters/oven-otter/hand.svg"
  33228. }
  33229. },
  33230. beans: {
  33231. height: math.unit(1.74, "feet"),
  33232. name: "Beans",
  33233. image: {
  33234. source: "./media/characters/oven-otter/beans.svg"
  33235. }
  33236. },
  33237. },
  33238. [
  33239. {
  33240. name: "Micro",
  33241. height: math.unit(0.5, "inches")
  33242. },
  33243. {
  33244. name: "Normal",
  33245. height: math.unit(5 + 8/12, "feet"),
  33246. default: true
  33247. },
  33248. {
  33249. name: "Macro",
  33250. height: math.unit(250, "feet")
  33251. },
  33252. {
  33253. name: "Really High",
  33254. height: math.unit(420, "feet")
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33260. {
  33261. front: {
  33262. height: math.unit(5, "meters"),
  33263. weight: math.unit(292000000000000, "kg"),
  33264. name: "Front",
  33265. image: {
  33266. source: "./media/characters/devourer/front.svg",
  33267. extra: 1800/1733,
  33268. bottom: 211/2011
  33269. }
  33270. },
  33271. maw: {
  33272. height: math.unit(1.1, "meter"),
  33273. name: "Maw",
  33274. image: {
  33275. source: "./media/characters/devourer/maw.svg"
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Small",
  33282. height: math.unit(3, "meters")
  33283. },
  33284. {
  33285. name: "Large",
  33286. height: math.unit(5, "meters"),
  33287. default: true
  33288. },
  33289. ]
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33293. {
  33294. front: {
  33295. height: math.unit(6, "feet"),
  33296. weight: math.unit(400, "lb"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/ellarby/front.svg",
  33300. extra: 1909/1763,
  33301. bottom: 80/1989
  33302. }
  33303. },
  33304. back: {
  33305. height: math.unit(6, "feet"),
  33306. weight: math.unit(400, "lb"),
  33307. name: "Back",
  33308. image: {
  33309. source: "./media/characters/ellarby/back.svg",
  33310. extra: 1914/1784,
  33311. bottom: 172/2086
  33312. }
  33313. },
  33314. },
  33315. [
  33316. {
  33317. name: "Mischief",
  33318. height: math.unit(18, "inches")
  33319. },
  33320. {
  33321. name: "Trouble",
  33322. height: math.unit(12, "feet")
  33323. },
  33324. {
  33325. name: "Havoc",
  33326. height: math.unit(200, "feet"),
  33327. default: true
  33328. },
  33329. {
  33330. name: "Pandemonium",
  33331. height: math.unit(1, "mile")
  33332. },
  33333. {
  33334. name: "Catastrophe",
  33335. height: math.unit(100, "miles")
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33341. {
  33342. front: {
  33343. height: math.unit(4.7, "meters"),
  33344. weight: math.unit(6500, "kg"),
  33345. name: "Front",
  33346. image: {
  33347. source: "./media/characters/vex/front.svg",
  33348. extra: 1288/1140,
  33349. bottom: 100/1388
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(4.7, "meters"),
  33357. default: true
  33358. },
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33363. {
  33364. normal: {
  33365. height: math.unit(6, "feet"),
  33366. weight: math.unit(350, "lb"),
  33367. name: "Normal",
  33368. image: {
  33369. source: "./media/characters/teshy/normal.svg",
  33370. extra: 1795/1735,
  33371. bottom: 16/1811
  33372. }
  33373. },
  33374. monsterFront: {
  33375. height: math.unit(12, "feet"),
  33376. weight: math.unit(4700, "lb"),
  33377. name: "Monster (Front)",
  33378. image: {
  33379. source: "./media/characters/teshy/monster-front.svg",
  33380. extra: 2042/2034,
  33381. bottom: 128/2170
  33382. }
  33383. },
  33384. monsterSide: {
  33385. height: math.unit(12, "feet"),
  33386. weight: math.unit(4700, "lb"),
  33387. name: "Monster (Side)",
  33388. image: {
  33389. source: "./media/characters/teshy/monster-side.svg",
  33390. extra: 2067/2056,
  33391. bottom: 70/2137
  33392. }
  33393. },
  33394. monsterBack: {
  33395. height: math.unit(12, "feet"),
  33396. weight: math.unit(4700, "lb"),
  33397. name: "Monster (Back)",
  33398. image: {
  33399. source: "./media/characters/teshy/monster-back.svg",
  33400. extra: 1921/1914,
  33401. bottom: 171/2092
  33402. }
  33403. },
  33404. },
  33405. [
  33406. {
  33407. name: "Normal",
  33408. height: math.unit(6, "feet"),
  33409. default: true
  33410. },
  33411. ]
  33412. ))
  33413. characterMakers.push(() => makeCharacter(
  33414. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33415. {
  33416. front: {
  33417. height: math.unit(6, "feet"),
  33418. name: "Front",
  33419. image: {
  33420. source: "./media/characters/ramey/front.svg",
  33421. extra: 790/787,
  33422. bottom: 27/817
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(6, "feet"),
  33430. default: true
  33431. },
  33432. ]
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33436. {
  33437. front: {
  33438. height: math.unit(5 + 5/12, "feet"),
  33439. weight: math.unit(120, "lb"),
  33440. name: "Front",
  33441. image: {
  33442. source: "./media/characters/phirae/front.svg",
  33443. extra: 2491/2436,
  33444. bottom: 38/2529
  33445. }
  33446. },
  33447. },
  33448. [
  33449. {
  33450. name: "Normal",
  33451. height: math.unit(5 + 5/12, "feet"),
  33452. default: true
  33453. },
  33454. ]
  33455. ))
  33456. characterMakers.push(() => makeCharacter(
  33457. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33458. {
  33459. front: {
  33460. height: math.unit(6, "feet"),
  33461. weight: math.unit(150, "lb"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/stagglas/front.svg",
  33465. extra: 962/882,
  33466. bottom: 53/1015
  33467. }
  33468. },
  33469. },
  33470. [
  33471. {
  33472. name: "Normal",
  33473. height: math.unit(5 + 3/12, "feet"),
  33474. default: true
  33475. },
  33476. ]
  33477. ))
  33478. characterMakers.push(() => makeCharacter(
  33479. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33480. {
  33481. front: {
  33482. height: math.unit(5 + 4/12, "feet"),
  33483. weight: math.unit(145, "lb"),
  33484. name: "Front",
  33485. image: {
  33486. source: "./media/characters/starra/front.svg",
  33487. extra: 1790/1691,
  33488. bottom: 91/1881
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Normal",
  33495. height: math.unit(5 + 4/12, "feet"),
  33496. default: true
  33497. },
  33498. ]
  33499. ))
  33500. characterMakers.push(() => makeCharacter(
  33501. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33502. {
  33503. front: {
  33504. height: math.unit(2.2, "meters"),
  33505. name: "Front",
  33506. image: {
  33507. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33508. extra: 1194/1005,
  33509. bottom: 25/1219
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(2.2, "meters"),
  33517. default: true
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33523. {
  33524. side: {
  33525. height: math.unit(8 + 2/12, "feet"),
  33526. weight: math.unit(1240, "lb"),
  33527. name: "Side",
  33528. image: {
  33529. source: "./media/characters/mika-valentine/side.svg",
  33530. extra: 2670/2501,
  33531. bottom: 250/2920
  33532. }
  33533. },
  33534. },
  33535. [
  33536. {
  33537. name: "Normal",
  33538. height: math.unit(8 + 2/12, "feet"),
  33539. default: true
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(7 + 2/12, "feet"),
  33548. name: "Front",
  33549. image: {
  33550. source: "./media/characters/xoltol/front.svg",
  33551. extra: 2212/2124,
  33552. bottom: 84/2296
  33553. }
  33554. },
  33555. side: {
  33556. height: math.unit(7 + 2/12, "feet"),
  33557. name: "Side",
  33558. image: {
  33559. source: "./media/characters/xoltol/side.svg",
  33560. extra: 2273/2197,
  33561. bottom: 26/2299
  33562. }
  33563. },
  33564. hand: {
  33565. height: math.unit(2.5, "feet"),
  33566. name: "Hand",
  33567. image: {
  33568. source: "./media/characters/xoltol/hand.svg"
  33569. }
  33570. },
  33571. },
  33572. [
  33573. {
  33574. name: "Small-ish",
  33575. height: math.unit(5 + 11/12, "feet")
  33576. },
  33577. {
  33578. name: "Normal",
  33579. height: math.unit(7 + 2/12, "feet")
  33580. },
  33581. {
  33582. name: "\"Macro\"",
  33583. height: math.unit(14 + 9/12, "feet"),
  33584. default: true
  33585. },
  33586. {
  33587. name: "Alternate Height",
  33588. height: math.unit(20, "feet")
  33589. },
  33590. {
  33591. name: "Actually Macro",
  33592. height: math.unit(100, "feet")
  33593. },
  33594. ]
  33595. ))
  33596. characterMakers.push(() => makeCharacter(
  33597. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33598. {
  33599. front: {
  33600. height: math.unit(5 + 2/12, "feet"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/kotetsu-redwood/front.svg",
  33604. extra: 1053/942,
  33605. bottom: 60/1113
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Normal",
  33612. height: math.unit(5 + 2/12, "feet"),
  33613. default: true
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33619. {
  33620. front: {
  33621. height: math.unit(2.4, "meters"),
  33622. weight: math.unit(125, "kg"),
  33623. name: "Front",
  33624. image: {
  33625. source: "./media/characters/lilith/front.svg",
  33626. extra: 1590/1513,
  33627. bottom: 203/1793
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Humanoid",
  33634. height: math.unit(2.4, "meters")
  33635. },
  33636. {
  33637. name: "Normal",
  33638. height: math.unit(6, "meters"),
  33639. default: true
  33640. },
  33641. {
  33642. name: "Largest",
  33643. height: math.unit(55, "meters")
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(8 + 4/12, "feet"),
  33652. weight: math.unit(535, "lb"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/beh'kah-bolger/front.svg",
  33656. extra: 1660/1603,
  33657. bottom: 37/1697
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(8 + 4/12, "feet"),
  33665. default: true
  33666. },
  33667. {
  33668. name: "Kaiju",
  33669. height: math.unit(250, "feet")
  33670. },
  33671. {
  33672. name: "Still Growing",
  33673. height: math.unit(10, "miles")
  33674. },
  33675. {
  33676. name: "Continental",
  33677. height: math.unit(5000, "miles")
  33678. },
  33679. {
  33680. name: "Final Form",
  33681. height: math.unit(2500000, "miles")
  33682. },
  33683. ]
  33684. ))
  33685. characterMakers.push(() => makeCharacter(
  33686. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33687. {
  33688. front: {
  33689. height: math.unit(7 + 2/12, "feet"),
  33690. weight: math.unit(230, "kg"),
  33691. name: "Front",
  33692. image: {
  33693. source: "./media/characters/tatyana-milewska/front.svg",
  33694. extra: 1199/1150,
  33695. bottom: 86/1285
  33696. }
  33697. },
  33698. },
  33699. [
  33700. {
  33701. name: "Normal",
  33702. height: math.unit(7 + 2/12, "feet"),
  33703. default: true
  33704. },
  33705. {
  33706. name: "Big",
  33707. height: math.unit(12, "feet")
  33708. },
  33709. {
  33710. name: "Minimacro",
  33711. height: math.unit(20, "feet")
  33712. },
  33713. {
  33714. name: "Macro",
  33715. height: math.unit(120, "feet")
  33716. },
  33717. ]
  33718. ))
  33719. characterMakers.push(() => makeCharacter(
  33720. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33721. {
  33722. front: {
  33723. height: math.unit(7 + 8/12, "feet"),
  33724. weight: math.unit(152, "kg"),
  33725. name: "Front",
  33726. image: {
  33727. source: "./media/characters/helen-arri/front.svg",
  33728. extra: 440/423,
  33729. bottom: 14/454
  33730. }
  33731. },
  33732. back: {
  33733. height: math.unit(7 + 8/12, "feet"),
  33734. weight: math.unit(152, "kg"),
  33735. name: "Back",
  33736. image: {
  33737. source: "./media/characters/helen-arri/back.svg",
  33738. extra: 443/426,
  33739. bottom: 8/451
  33740. }
  33741. },
  33742. },
  33743. [
  33744. {
  33745. name: "Normal",
  33746. height: math.unit(7 + 8/12, "feet"),
  33747. default: true
  33748. },
  33749. {
  33750. name: "Big",
  33751. height: math.unit(14, "feet")
  33752. },
  33753. {
  33754. name: "Minimacro",
  33755. height: math.unit(24, "feet")
  33756. },
  33757. {
  33758. name: "Macro",
  33759. height: math.unit(140, "feet")
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33765. {
  33766. front: {
  33767. height: math.unit(6, "meters"),
  33768. name: "Front",
  33769. image: {
  33770. source: "./media/characters/ehanu-rehu/front.svg",
  33771. extra: 1800/1800,
  33772. bottom: 59/1859
  33773. }
  33774. },
  33775. },
  33776. [
  33777. {
  33778. name: "Normal",
  33779. height: math.unit(6, "meters"),
  33780. default: true
  33781. },
  33782. ]
  33783. ))
  33784. characterMakers.push(() => makeCharacter(
  33785. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33786. {
  33787. front: {
  33788. height: math.unit(7 + 3/12, "feet"),
  33789. name: "Front",
  33790. image: {
  33791. source: "./media/characters/renholder/front.svg",
  33792. extra: 3096/2960,
  33793. bottom: 250/3346
  33794. }
  33795. },
  33796. },
  33797. [
  33798. {
  33799. name: "Normal Bat",
  33800. height: math.unit(7 + 3/12, "feet"),
  33801. default: true
  33802. },
  33803. {
  33804. name: "Slightly Tall Bat",
  33805. height: math.unit(100, "feet")
  33806. },
  33807. {
  33808. name: "Big Bat",
  33809. height: math.unit(1000, "feet")
  33810. },
  33811. {
  33812. name: "City-Sized Bat",
  33813. height: math.unit(200000, "feet")
  33814. },
  33815. {
  33816. name: "Bigger Bat",
  33817. height: math.unit(10000, "miles")
  33818. },
  33819. {
  33820. name: "Solar Sized Bat",
  33821. height: math.unit(100, "AU")
  33822. },
  33823. {
  33824. name: "Galactic Bat",
  33825. height: math.unit(200000, "lightyears")
  33826. },
  33827. {
  33828. name: "Universally Known Bat",
  33829. height: math.unit(1, "universe")
  33830. },
  33831. ]
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33835. {
  33836. front: {
  33837. height: math.unit(6 + 11/12, "feet"),
  33838. weight: math.unit(250, "lb"),
  33839. name: "Front",
  33840. image: {
  33841. source: "./media/characters/cookiecat/front.svg",
  33842. extra: 893/827,
  33843. bottom: 14/907
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Micro",
  33850. height: math.unit(3, "inches")
  33851. },
  33852. {
  33853. name: "Normal",
  33854. height: math.unit(6 + 11/12, "feet"),
  33855. default: true
  33856. },
  33857. {
  33858. name: "Macro",
  33859. height: math.unit(100, "feet")
  33860. },
  33861. {
  33862. name: "Macro+",
  33863. height: math.unit(404, "feet")
  33864. },
  33865. {
  33866. name: "Megamacro",
  33867. height: math.unit(165, "miles")
  33868. },
  33869. {
  33870. name: "Planetary",
  33871. height: math.unit(4600, "miles")
  33872. },
  33873. ]
  33874. ))
  33875. characterMakers.push(() => makeCharacter(
  33876. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33877. {
  33878. front: {
  33879. height: math.unit(10 + 3/12, "feet"),
  33880. weight: math.unit(1500, "lb"),
  33881. name: "Front",
  33882. image: {
  33883. source: "./media/characters/tux-kusanagi/front.svg",
  33884. extra: 944/840,
  33885. bottom: 39/983
  33886. }
  33887. },
  33888. back: {
  33889. height: math.unit(10 + 3/12, "feet"),
  33890. weight: math.unit(1500, "lb"),
  33891. name: "Back",
  33892. image: {
  33893. source: "./media/characters/tux-kusanagi/back.svg",
  33894. extra: 941/842,
  33895. bottom: 28/969
  33896. }
  33897. },
  33898. rump: {
  33899. height: math.unit(5.25, "feet"),
  33900. name: "Rump",
  33901. image: {
  33902. source: "./media/characters/tux-kusanagi/rump.svg"
  33903. }
  33904. },
  33905. beak: {
  33906. height: math.unit(1.54, "feet"),
  33907. name: "Beak",
  33908. image: {
  33909. source: "./media/characters/tux-kusanagi/beak.svg"
  33910. }
  33911. },
  33912. },
  33913. [
  33914. {
  33915. name: "Normal",
  33916. height: math.unit(10 + 3/12, "feet"),
  33917. default: true
  33918. },
  33919. ]
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33923. {
  33924. front: {
  33925. height: math.unit(58, "feet"),
  33926. weight: math.unit(200, "tons"),
  33927. name: "Front",
  33928. image: {
  33929. source: "./media/characters/uzarmazari/front.svg",
  33930. extra: 1575/1455,
  33931. bottom: 152/1727
  33932. }
  33933. },
  33934. back: {
  33935. height: math.unit(58, "feet"),
  33936. weight: math.unit(200, "tons"),
  33937. name: "Back",
  33938. image: {
  33939. source: "./media/characters/uzarmazari/back.svg",
  33940. extra: 1585/1510,
  33941. bottom: 157/1742
  33942. }
  33943. },
  33944. head: {
  33945. height: math.unit(26, "feet"),
  33946. name: "Head",
  33947. image: {
  33948. source: "./media/characters/uzarmazari/head.svg"
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(58, "feet"),
  33956. default: true
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33962. {
  33963. side: {
  33964. height: math.unit(15, "feet"),
  33965. name: "Side",
  33966. image: {
  33967. source: "./media/characters/akitu/side.svg",
  33968. extra: 1421/1321,
  33969. bottom: 157/1578
  33970. }
  33971. },
  33972. front: {
  33973. height: math.unit(15, "feet"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/akitu/front.svg",
  33977. extra: 1435/1326,
  33978. bottom: 232/1667
  33979. }
  33980. },
  33981. },
  33982. [
  33983. {
  33984. name: "Normal",
  33985. height: math.unit(15, "feet"),
  33986. default: true
  33987. },
  33988. ]
  33989. ))
  33990. characterMakers.push(() => makeCharacter(
  33991. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33992. {
  33993. front: {
  33994. height: math.unit(10 + 8/12, "feet"),
  33995. name: "Front",
  33996. image: {
  33997. source: "./media/characters/azalie-croixland/front.svg",
  33998. extra: 1972/1856,
  33999. bottom: 31/2003
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Original Height",
  34006. height: math.unit(5 + 4/12, "feet")
  34007. },
  34008. {
  34009. name: "Normal Height",
  34010. height: math.unit(10 + 8/12, "feet"),
  34011. default: true
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34017. {
  34018. side: {
  34019. height: math.unit(7 + 1/12, "feet"),
  34020. weight: math.unit(245, "lb"),
  34021. name: "Side",
  34022. image: {
  34023. source: "./media/characters/kavus-kazian/side.svg",
  34024. extra: 349/342,
  34025. bottom: 15/364
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Normal",
  34032. height: math.unit(7 + 1/12, "feet"),
  34033. default: true
  34034. },
  34035. ]
  34036. ))
  34037. characterMakers.push(() => makeCharacter(
  34038. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34039. {
  34040. normal: {
  34041. height: math.unit(5 + 11/12, "feet"),
  34042. name: "Normal",
  34043. image: {
  34044. source: "./media/characters/moonlight-rose/normal.svg",
  34045. extra: 1979/1835,
  34046. bottom: 14/1993
  34047. }
  34048. },
  34049. demon: {
  34050. height: math.unit(5, "km"),
  34051. name: "Demon",
  34052. image: {
  34053. source: "./media/characters/moonlight-rose/demon.svg",
  34054. extra: 986/916,
  34055. bottom: 28/1014
  34056. }
  34057. },
  34058. },
  34059. [
  34060. {
  34061. name: "\"Natural\" height",
  34062. height: math.unit(5 + 11/12, "feet")
  34063. },
  34064. {
  34065. name: "Comfortable Size",
  34066. height: math.unit(40, "meters")
  34067. },
  34068. {
  34069. name: "Common Size",
  34070. height: math.unit(50, "km"),
  34071. default: true
  34072. },
  34073. {
  34074. name: "Demonic",
  34075. height: math.unit(1.24415e+21, "meters")
  34076. },
  34077. ]
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34081. {
  34082. front: {
  34083. height: math.unit(16, "feet"),
  34084. weight: math.unit(610, "kg"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/huckle/front.svg",
  34088. extra: 1731/1625,
  34089. bottom: 33/1764
  34090. }
  34091. },
  34092. back: {
  34093. height: math.unit(16, "feet"),
  34094. weight: math.unit(610, "kg"),
  34095. name: "Back",
  34096. image: {
  34097. source: "./media/characters/huckle/back.svg",
  34098. extra: 1738/1651,
  34099. bottom: 37/1775
  34100. }
  34101. },
  34102. laughing: {
  34103. height: math.unit(3.75, "feet"),
  34104. name: "Laughing",
  34105. image: {
  34106. source: "./media/characters/huckle/laughing.svg"
  34107. }
  34108. },
  34109. angry: {
  34110. height: math.unit(4.15, "feet"),
  34111. name: "Angry",
  34112. image: {
  34113. source: "./media/characters/huckle/angry.svg"
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(16, "feet"),
  34121. default: true
  34122. },
  34123. {
  34124. name: "Mini Macro",
  34125. height: math.unit(463, "feet")
  34126. },
  34127. {
  34128. name: "Macro",
  34129. height: math.unit(1680, "meters")
  34130. },
  34131. {
  34132. name: "Mega Macro",
  34133. height: math.unit(175, "km")
  34134. },
  34135. {
  34136. name: "Terra Macro",
  34137. height: math.unit(32, "gigameters")
  34138. },
  34139. {
  34140. name: "Multiverse+",
  34141. height: math.unit(2.56e23, "yottameters")
  34142. },
  34143. ]
  34144. ))
  34145. characterMakers.push(() => makeCharacter(
  34146. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34147. {
  34148. front: {
  34149. height: math.unit(6 + 9/12, "feet"),
  34150. weight: math.unit(280, "lb"),
  34151. name: "Front",
  34152. image: {
  34153. source: "./media/characters/candy/front.svg",
  34154. extra: 234/217,
  34155. bottom: 11/245
  34156. }
  34157. },
  34158. },
  34159. [
  34160. {
  34161. name: "Really Small",
  34162. height: math.unit(0.1, "nm")
  34163. },
  34164. {
  34165. name: "Micro",
  34166. height: math.unit(2, "inches")
  34167. },
  34168. {
  34169. name: "Normal",
  34170. height: math.unit(6 + 9/12, "feet"),
  34171. default: true
  34172. },
  34173. {
  34174. name: "Small Macro",
  34175. height: math.unit(69, "feet")
  34176. },
  34177. {
  34178. name: "Macro",
  34179. height: math.unit(160, "feet")
  34180. },
  34181. {
  34182. name: "Megamacro",
  34183. height: math.unit(22000, "miles")
  34184. },
  34185. {
  34186. name: "Gigamacro",
  34187. height: math.unit(50000, "miles")
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34193. {
  34194. front: {
  34195. height: math.unit(4, "feet"),
  34196. weight: math.unit(90, "lb"),
  34197. name: "Front",
  34198. image: {
  34199. source: "./media/characters/joey-mcdonald/front.svg",
  34200. extra: 1059/852,
  34201. bottom: 33/1092
  34202. }
  34203. },
  34204. back: {
  34205. height: math.unit(4, "feet"),
  34206. weight: math.unit(90, "lb"),
  34207. name: "Back",
  34208. image: {
  34209. source: "./media/characters/joey-mcdonald/back.svg",
  34210. extra: 1077/879,
  34211. bottom: 5/1082
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Normal",
  34218. height: math.unit(4, "feet"),
  34219. default: true
  34220. },
  34221. ]
  34222. ))
  34223. characterMakers.push(() => makeCharacter(
  34224. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34225. {
  34226. front: {
  34227. height: math.unit(12 + 6/12, "feet"),
  34228. name: "Front",
  34229. image: {
  34230. source: "./media/characters/kass-lockheed/front.svg",
  34231. extra: 354/343,
  34232. bottom: 9/363
  34233. }
  34234. },
  34235. back: {
  34236. height: math.unit(12 + 6/12, "feet"),
  34237. name: "Back",
  34238. image: {
  34239. source: "./media/characters/kass-lockheed/back.svg",
  34240. extra: 364/352,
  34241. bottom: 3/367
  34242. }
  34243. },
  34244. dick: {
  34245. height: math.unit(3.12, "feet"),
  34246. name: "Dick",
  34247. image: {
  34248. source: "./media/characters/kass-lockheed/dick.svg"
  34249. }
  34250. },
  34251. head: {
  34252. height: math.unit(2.6, "feet"),
  34253. name: "Head",
  34254. image: {
  34255. source: "./media/characters/kass-lockheed/head.svg"
  34256. }
  34257. },
  34258. bleh: {
  34259. height: math.unit(2.85, "feet"),
  34260. name: "Bleh",
  34261. image: {
  34262. source: "./media/characters/kass-lockheed/bleh.svg"
  34263. }
  34264. },
  34265. smug: {
  34266. height: math.unit(2.85, "feet"),
  34267. name: "Smug",
  34268. image: {
  34269. source: "./media/characters/kass-lockheed/smug.svg"
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(12 + 6/12, "feet"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34283. {
  34284. front: {
  34285. height: math.unit(6 + 2/12, "feet"),
  34286. name: "Front",
  34287. image: {
  34288. source: "./media/characters/taylor/front.svg",
  34289. extra: 639/495,
  34290. bottom: 12/651
  34291. }
  34292. },
  34293. },
  34294. [
  34295. {
  34296. name: "Normal",
  34297. height: math.unit(6 + 2/12, "feet"),
  34298. default: true
  34299. },
  34300. {
  34301. name: "Big",
  34302. height: math.unit(15, "feet")
  34303. },
  34304. {
  34305. name: "Lorg",
  34306. height: math.unit(80, "feet")
  34307. },
  34308. {
  34309. name: "Too Lorg",
  34310. height: math.unit(120, "feet")
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34316. {
  34317. front: {
  34318. height: math.unit(15, "feet"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/kaizer/front.svg",
  34322. extra: 1612/1436,
  34323. bottom: 43/1655
  34324. }
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Normal",
  34330. height: math.unit(15, "feet"),
  34331. default: true
  34332. },
  34333. ]
  34334. ))
  34335. characterMakers.push(() => makeCharacter(
  34336. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34337. {
  34338. front: {
  34339. height: math.unit(2, "feet"),
  34340. weight: math.unit(30, "lb"),
  34341. name: "Front",
  34342. image: {
  34343. source: "./media/characters/sandy/front.svg",
  34344. extra: 1439/1307,
  34345. bottom: 194/1633
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "Normal",
  34352. height: math.unit(2, "feet"),
  34353. default: true
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34359. {
  34360. front: {
  34361. height: math.unit(3, "feet"),
  34362. name: "Front",
  34363. image: {
  34364. source: "./media/characters/mellvi/front.svg",
  34365. extra: 1831/1630,
  34366. bottom: 58/1889
  34367. }
  34368. },
  34369. },
  34370. [
  34371. {
  34372. name: "Normal",
  34373. height: math.unit(3, "feet"),
  34374. default: true
  34375. },
  34376. ]
  34377. ))
  34378. characterMakers.push(() => makeCharacter(
  34379. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34380. {
  34381. front: {
  34382. height: math.unit(5 + 11/12, "feet"),
  34383. weight: math.unit(200, "lb"),
  34384. name: "Front",
  34385. image: {
  34386. source: "./media/characters/shirou/front.svg",
  34387. extra: 2491/2383,
  34388. bottom: 189/2680
  34389. }
  34390. },
  34391. back: {
  34392. height: math.unit(5 + 11/12, "feet"),
  34393. weight: math.unit(200, "lb"),
  34394. name: "Back",
  34395. image: {
  34396. source: "./media/characters/shirou/back.svg",
  34397. extra: 2554/2450,
  34398. bottom: 76/2630
  34399. }
  34400. },
  34401. },
  34402. [
  34403. {
  34404. name: "Normal",
  34405. height: math.unit(5 + 11/12, "feet"),
  34406. default: true
  34407. },
  34408. ]
  34409. ))
  34410. characterMakers.push(() => makeCharacter(
  34411. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34412. {
  34413. front: {
  34414. height: math.unit(6 + 3/12, "feet"),
  34415. weight: math.unit(177, "lb"),
  34416. name: "Front",
  34417. image: {
  34418. source: "./media/characters/noryu/front.svg",
  34419. extra: 973/885,
  34420. bottom: 10/983
  34421. }
  34422. },
  34423. },
  34424. [
  34425. {
  34426. name: "Normal",
  34427. height: math.unit(6 + 3/12, "feet"),
  34428. default: true
  34429. },
  34430. ]
  34431. ))
  34432. characterMakers.push(() => makeCharacter(
  34433. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34434. {
  34435. front: {
  34436. height: math.unit(5 + 6/12, "feet"),
  34437. weight: math.unit(170, "lb"),
  34438. name: "Front",
  34439. image: {
  34440. source: "./media/characters/mevolas-rubenido/front.svg",
  34441. extra: 2109/1901,
  34442. bottom: 96/2205
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(5 + 6/12, "feet"),
  34450. default: true
  34451. },
  34452. ]
  34453. ))
  34454. characterMakers.push(() => makeCharacter(
  34455. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34456. {
  34457. front: {
  34458. height: math.unit(100, "feet"),
  34459. name: "Front",
  34460. image: {
  34461. source: "./media/characters/dee/front.svg",
  34462. extra: 2153/2036,
  34463. bottom: 59/2212
  34464. }
  34465. },
  34466. back: {
  34467. height: math.unit(100, "feet"),
  34468. name: "Back",
  34469. image: {
  34470. source: "./media/characters/dee/back.svg",
  34471. extra: 2183/2058,
  34472. bottom: 75/2258
  34473. }
  34474. },
  34475. foot: {
  34476. height: math.unit(19.43, "feet"),
  34477. name: "Foot",
  34478. image: {
  34479. source: "./media/characters/dee/foot.svg"
  34480. }
  34481. },
  34482. hoof: {
  34483. height: math.unit(20.6, "feet"),
  34484. name: "Hoof",
  34485. image: {
  34486. source: "./media/characters/dee/hoof.svg"
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Macro",
  34493. height: math.unit(100, "feet"),
  34494. default: true
  34495. },
  34496. ]
  34497. ))
  34498. characterMakers.push(() => makeCharacter(
  34499. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34500. {
  34501. front: {
  34502. height: math.unit(5 + 6/12, "feet"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/teh/front.svg",
  34506. extra: 1002/847,
  34507. bottom: 62/1064
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(5 + 6/12, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34521. {
  34522. side: {
  34523. height: math.unit(6 + 1/12, "feet"),
  34524. weight: math.unit(204, "lb"),
  34525. name: "Side",
  34526. image: {
  34527. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34528. extra: 974/775,
  34529. bottom: 169/1143
  34530. }
  34531. },
  34532. sitting: {
  34533. height: math.unit(6 + 2/12, "feet"),
  34534. weight: math.unit(204, "lb"),
  34535. name: "Sitting",
  34536. image: {
  34537. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34538. extra: 1175/964,
  34539. bottom: 378/1553
  34540. }
  34541. },
  34542. },
  34543. [
  34544. {
  34545. name: "Normal",
  34546. height: math.unit(6 + 1/12, "feet"),
  34547. default: true
  34548. },
  34549. ]
  34550. ))
  34551. characterMakers.push(() => makeCharacter(
  34552. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34553. {
  34554. front: {
  34555. height: math.unit(6, "inches"),
  34556. name: "Front",
  34557. image: {
  34558. source: "./media/characters/tululi/front.svg",
  34559. extra: 1997/1876,
  34560. bottom: 20/2017
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Normal",
  34567. height: math.unit(6, "inches"),
  34568. default: true
  34569. },
  34570. ]
  34571. ))
  34572. characterMakers.push(() => makeCharacter(
  34573. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34574. {
  34575. front: {
  34576. height: math.unit(4 + 1/12, "feet"),
  34577. name: "Front",
  34578. image: {
  34579. source: "./media/characters/star/front.svg",
  34580. extra: 1493/1189,
  34581. bottom: 48/1541
  34582. }
  34583. },
  34584. },
  34585. [
  34586. {
  34587. name: "Normal",
  34588. height: math.unit(4 + 1/12, "feet"),
  34589. default: true
  34590. },
  34591. ]
  34592. ))
  34593. characterMakers.push(() => makeCharacter(
  34594. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34595. {
  34596. front: {
  34597. height: math.unit(6 + 3/12, "feet"),
  34598. name: "Front",
  34599. image: {
  34600. source: "./media/characters/comet/front.svg",
  34601. extra: 1681/1462,
  34602. bottom: 26/1707
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "Normal",
  34609. height: math.unit(6 + 3/12, "feet"),
  34610. default: true
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34616. {
  34617. front: {
  34618. height: math.unit(950, "feet"),
  34619. name: "Front",
  34620. image: {
  34621. source: "./media/characters/vortex/front.svg",
  34622. extra: 1497/1434,
  34623. bottom: 56/1553
  34624. }
  34625. },
  34626. maw: {
  34627. height: math.unit(285, "feet"),
  34628. name: "Maw",
  34629. image: {
  34630. source: "./media/characters/vortex/maw.svg"
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Macro",
  34637. height: math.unit(950, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(600, "feet"),
  34647. weight: math.unit(0.02, "grams"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/doodle/front.svg",
  34651. extra: 1578/1413,
  34652. bottom: 37/1615
  34653. }
  34654. },
  34655. },
  34656. [
  34657. {
  34658. name: "Macro",
  34659. height: math.unit(600, "feet"),
  34660. default: true
  34661. },
  34662. ]
  34663. ))
  34664. characterMakers.push(() => makeCharacter(
  34665. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34666. {
  34667. front: {
  34668. height: math.unit(6 + 6/12, "feet"),
  34669. name: "Front",
  34670. image: {
  34671. source: "./media/characters/jai/front.svg",
  34672. extra: 1645/1534,
  34673. bottom: 115/1760
  34674. }
  34675. },
  34676. },
  34677. [
  34678. {
  34679. name: "Normal",
  34680. height: math.unit(6 + 6/12, "feet"),
  34681. default: true
  34682. },
  34683. ]
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34687. {
  34688. front: {
  34689. height: math.unit(6 + 8/12, "feet"),
  34690. name: "Front",
  34691. image: {
  34692. source: "./media/characters/pixel/front.svg",
  34693. extra: 1900/1735,
  34694. bottom: 63/1963
  34695. }
  34696. },
  34697. },
  34698. [
  34699. {
  34700. name: "Normal",
  34701. height: math.unit(6 + 8/12, "feet"),
  34702. default: true
  34703. },
  34704. ]
  34705. ))
  34706. characterMakers.push(() => makeCharacter(
  34707. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34708. {
  34709. front: {
  34710. height: math.unit(4 + 11/12, "feet"),
  34711. weight: math.unit(111, "lb"),
  34712. name: "Front",
  34713. image: {
  34714. source: "./media/characters/rhett/front.svg",
  34715. extra: 1682/1586,
  34716. bottom: 92/1774
  34717. }
  34718. },
  34719. },
  34720. [
  34721. {
  34722. name: "Mini",
  34723. height: math.unit(1 + 1/12, "feet")
  34724. },
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(4 + 11/12, "feet"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(3 + 3/12, "feet"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/penny/front.svg",
  34740. extra: 1406/1311,
  34741. bottom: 26/1432
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Normal",
  34748. height: math.unit(3 + 3/12, "feet"),
  34749. default: true
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34755. {
  34756. front: {
  34757. height: math.unit(4 + 11/12, "feet"),
  34758. name: "Front",
  34759. image: {
  34760. source: "./media/characters/monty/front.svg",
  34761. extra: 1479/1209,
  34762. bottom: 0/1479
  34763. }
  34764. },
  34765. },
  34766. [
  34767. {
  34768. name: "Normal",
  34769. height: math.unit(4 + 11/12, "feet"),
  34770. default: true
  34771. },
  34772. ]
  34773. ))
  34774. characterMakers.push(() => makeCharacter(
  34775. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34776. {
  34777. front: {
  34778. height: math.unit(8 + 4/12, "feet"),
  34779. name: "Front",
  34780. image: {
  34781. source: "./media/characters/sterling/front.svg",
  34782. extra: 1420/1236,
  34783. bottom: 27/1447
  34784. }
  34785. },
  34786. },
  34787. [
  34788. {
  34789. name: "Normal",
  34790. height: math.unit(8 + 4/12, "feet"),
  34791. default: true
  34792. },
  34793. ]
  34794. ))
  34795. characterMakers.push(() => makeCharacter(
  34796. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34797. {
  34798. front: {
  34799. height: math.unit(15, "feet"),
  34800. name: "Front",
  34801. image: {
  34802. source: "./media/characters/marble/front.svg",
  34803. extra: 973/937,
  34804. bottom: 32/1005
  34805. }
  34806. },
  34807. },
  34808. [
  34809. {
  34810. name: "Normal",
  34811. height: math.unit(15, "feet"),
  34812. default: true
  34813. },
  34814. ]
  34815. ))
  34816. characterMakers.push(() => makeCharacter(
  34817. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34818. {
  34819. front: {
  34820. height: math.unit(3, "inches"),
  34821. name: "Front",
  34822. image: {
  34823. source: "./media/characters/powder/front.svg",
  34824. extra: 1504/1334,
  34825. bottom: 518/2022
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Normal",
  34832. height: math.unit(3, "inches"),
  34833. default: true
  34834. },
  34835. ]
  34836. ))
  34837. characterMakers.push(() => makeCharacter(
  34838. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34839. {
  34840. front: {
  34841. height: math.unit(4 + 5/12, "feet"),
  34842. name: "Front",
  34843. image: {
  34844. source: "./media/characters/joey-raccoon/front.svg",
  34845. extra: 1273/1197,
  34846. bottom: 0/1273
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Normal",
  34853. height: math.unit(4 + 5/12, "feet"),
  34854. default: true
  34855. },
  34856. ]
  34857. ))
  34858. characterMakers.push(() => makeCharacter(
  34859. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34860. {
  34861. front: {
  34862. height: math.unit(8 + 4/12, "feet"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/vick/front.svg",
  34866. extra: 2187/2118,
  34867. bottom: 47/2234
  34868. }
  34869. },
  34870. },
  34871. [
  34872. {
  34873. name: "Normal",
  34874. height: math.unit(8 + 4/12, "feet"),
  34875. default: true
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34881. {
  34882. front: {
  34883. height: math.unit(5 + 5/12, "feet"),
  34884. name: "Front",
  34885. image: {
  34886. source: "./media/characters/mitsy/front.svg",
  34887. extra: 1842/1695,
  34888. bottom: 0/1842
  34889. }
  34890. },
  34891. },
  34892. [
  34893. {
  34894. name: "Normal",
  34895. height: math.unit(5 + 5/12, "feet"),
  34896. default: true
  34897. },
  34898. ]
  34899. ))
  34900. characterMakers.push(() => makeCharacter(
  34901. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34902. {
  34903. front: {
  34904. height: math.unit(6 + 3/12, "feet"),
  34905. name: "Front",
  34906. image: {
  34907. source: "./media/characters/silvy/front.svg",
  34908. extra: 1995/1836,
  34909. bottom: 225/2220
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Normal",
  34916. height: math.unit(6 + 3/12, "feet"),
  34917. default: true
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(3 + 8/12, "feet"),
  34926. name: "Front",
  34927. image: {
  34928. source: "./media/characters/rodney/front.svg",
  34929. extra: 1956/1747,
  34930. bottom: 31/1987
  34931. }
  34932. },
  34933. frontDressed: {
  34934. height: math.unit(2.9, "feet"),
  34935. name: "Front (Dressed)",
  34936. image: {
  34937. source: "./media/characters/rodney/front-dressed.svg",
  34938. extra: 1382/1241,
  34939. bottom: 385/1767
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(3 + 8/12, "feet"),
  34947. default: true
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34953. {
  34954. front: {
  34955. height: math.unit(5 + 9/12, "feet"),
  34956. weight: math.unit(194, "lbs"),
  34957. name: "Front",
  34958. image: {
  34959. source: "./media/characters/zakail-sudekai/front.svg",
  34960. extra: 2696/2533,
  34961. bottom: 248/2944
  34962. }
  34963. },
  34964. maw: {
  34965. height: math.unit(1.35, "feet"),
  34966. name: "Maw",
  34967. image: {
  34968. source: "./media/characters/zakail-sudekai/maw.svg"
  34969. }
  34970. },
  34971. },
  34972. [
  34973. {
  34974. name: "Normal",
  34975. height: math.unit(5 + 9/12, "feet"),
  34976. default: true
  34977. },
  34978. ]
  34979. ))
  34980. characterMakers.push(() => makeCharacter(
  34981. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34982. {
  34983. front: {
  34984. height: math.unit(8 + 4/12, "feet"),
  34985. weight: math.unit(1200, "lb"),
  34986. name: "Front",
  34987. image: {
  34988. source: "./media/characters/eleanor/front.svg",
  34989. extra: 1226/1192,
  34990. bottom: 52/1278
  34991. }
  34992. },
  34993. back: {
  34994. height: math.unit(8 + 4/12, "feet"),
  34995. weight: math.unit(1200, "lb"),
  34996. name: "Back",
  34997. image: {
  34998. source: "./media/characters/eleanor/back.svg",
  34999. extra: 1242/1184,
  35000. bottom: 60/1302
  35001. }
  35002. },
  35003. head: {
  35004. height: math.unit(2.62, "feet"),
  35005. name: "Head",
  35006. image: {
  35007. source: "./media/characters/eleanor/head.svg"
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(8 + 4/12, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(8 + 4/12, "feet"),
  35024. weight: math.unit(750, "lb"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/tanya/front.svg",
  35028. extra: 1749/1615,
  35029. bottom: 33/1782
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(8 + 4/12, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35043. {
  35044. front: {
  35045. height: math.unit(5, "feet"),
  35046. weight: math.unit(225, "lb"),
  35047. name: "Front",
  35048. image: {
  35049. source: "./media/characters/cindy/front.svg",
  35050. extra: 1320/1250,
  35051. bottom: 42/1362
  35052. }
  35053. },
  35054. frontDressed: {
  35055. height: math.unit(5, "feet"),
  35056. weight: math.unit(225, "lb"),
  35057. name: "Front (Dressed)",
  35058. image: {
  35059. source: "./media/characters/cindy/front-dressed.svg",
  35060. extra: 1320/1250,
  35061. bottom: 42/1362
  35062. }
  35063. },
  35064. back: {
  35065. height: math.unit(5, "feet"),
  35066. weight: math.unit(225, "lb"),
  35067. name: "Back",
  35068. image: {
  35069. source: "./media/characters/cindy/back.svg",
  35070. extra: 1384/1346,
  35071. bottom: 14/1398
  35072. }
  35073. },
  35074. },
  35075. [
  35076. {
  35077. name: "Normal",
  35078. height: math.unit(5, "feet"),
  35079. default: true
  35080. },
  35081. ]
  35082. ))
  35083. characterMakers.push(() => makeCharacter(
  35084. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35085. {
  35086. front: {
  35087. height: math.unit(6 + 9/12, "feet"),
  35088. weight: math.unit(440, "lb"),
  35089. name: "Front",
  35090. image: {
  35091. source: "./media/characters/wilbur-owen/front.svg",
  35092. extra: 1575/1448,
  35093. bottom: 72/1647
  35094. }
  35095. },
  35096. back: {
  35097. height: math.unit(6 + 9/12, "feet"),
  35098. weight: math.unit(440, "lb"),
  35099. name: "Back",
  35100. image: {
  35101. source: "./media/characters/wilbur-owen/back.svg",
  35102. extra: 1578/1445,
  35103. bottom: 36/1614
  35104. }
  35105. },
  35106. },
  35107. [
  35108. {
  35109. name: "Normal",
  35110. height: math.unit(6 + 9/12, "feet"),
  35111. default: true
  35112. },
  35113. ]
  35114. ))
  35115. characterMakers.push(() => makeCharacter(
  35116. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35117. {
  35118. front: {
  35119. height: math.unit(6 + 5/12, "feet"),
  35120. weight: math.unit(650, "lb"),
  35121. name: "Front",
  35122. image: {
  35123. source: "./media/characters/keegan/front.svg",
  35124. extra: 2387/2198,
  35125. bottom: 33/2420
  35126. }
  35127. },
  35128. side: {
  35129. height: math.unit(6 + 5/12, "feet"),
  35130. weight: math.unit(650, "lb"),
  35131. name: "Side",
  35132. image: {
  35133. source: "./media/characters/keegan/side.svg",
  35134. extra: 2390/2202,
  35135. bottom: 47/2437
  35136. }
  35137. },
  35138. back: {
  35139. height: math.unit(6 + 5/12, "feet"),
  35140. weight: math.unit(650, "lb"),
  35141. name: "Back",
  35142. image: {
  35143. source: "./media/characters/keegan/back.svg",
  35144. extra: 2418/2268,
  35145. bottom: 15/2433
  35146. }
  35147. },
  35148. frontSfw: {
  35149. height: math.unit(6 + 5/12, "feet"),
  35150. weight: math.unit(650, "lb"),
  35151. name: "Front (SFW)",
  35152. image: {
  35153. source: "./media/characters/keegan/front-sfw.svg",
  35154. extra: 2387/2198,
  35155. bottom: 33/2420
  35156. }
  35157. },
  35158. beans: {
  35159. height: math.unit(1.85, "feet"),
  35160. name: "Beans",
  35161. image: {
  35162. source: "./media/characters/keegan/beans.svg"
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(6 + 5/12, "feet"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35176. {
  35177. front: {
  35178. height: math.unit(9, "feet"),
  35179. name: "Front",
  35180. image: {
  35181. source: "./media/characters/colton/front.svg",
  35182. extra: 1589/1326,
  35183. bottom: 139/1728
  35184. }
  35185. },
  35186. },
  35187. [
  35188. {
  35189. name: "Normal",
  35190. height: math.unit(9, "feet"),
  35191. default: true
  35192. },
  35193. ]
  35194. ))
  35195. characterMakers.push(() => makeCharacter(
  35196. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35197. {
  35198. front: {
  35199. height: math.unit(2 + 9/12, "feet"),
  35200. name: "Front",
  35201. image: {
  35202. source: "./media/characters/bora/front.svg",
  35203. extra: 1265/1250,
  35204. bottom: 24/1289
  35205. }
  35206. },
  35207. },
  35208. [
  35209. {
  35210. name: "Normal",
  35211. height: math.unit(2 + 9/12, "feet"),
  35212. default: true
  35213. },
  35214. ]
  35215. ))
  35216. characterMakers.push(() => makeCharacter(
  35217. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35218. {
  35219. front: {
  35220. height: math.unit(8, "feet"),
  35221. name: "Front",
  35222. image: {
  35223. source: "./media/characters/myu-myu/front.svg",
  35224. extra: 1949/1857,
  35225. bottom: 90/2039
  35226. }
  35227. },
  35228. },
  35229. [
  35230. {
  35231. name: "Normal",
  35232. height: math.unit(8, "feet"),
  35233. default: true
  35234. },
  35235. {
  35236. name: "Big",
  35237. height: math.unit(15, "feet")
  35238. },
  35239. {
  35240. name: "BIG",
  35241. height: math.unit(25, "feet")
  35242. },
  35243. ]
  35244. ))
  35245. characterMakers.push(() => makeCharacter(
  35246. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35247. {
  35248. side: {
  35249. height: math.unit(7 + 5/12, "feet"),
  35250. weight: math.unit(2800, "lb"),
  35251. name: "Side",
  35252. image: {
  35253. source: "./media/characters/haloren/side.svg",
  35254. extra: 1793/409,
  35255. bottom: 59/1852
  35256. }
  35257. },
  35258. frontPaw: {
  35259. height: math.unit(2.36, "feet"),
  35260. name: "Front paw",
  35261. image: {
  35262. source: "./media/characters/haloren/front-paw.svg"
  35263. }
  35264. },
  35265. hindPaw: {
  35266. height: math.unit(3.18, "feet"),
  35267. name: "Hind paw",
  35268. image: {
  35269. source: "./media/characters/haloren/hind-paw.svg"
  35270. }
  35271. },
  35272. maw: {
  35273. height: math.unit(5.05, "feet"),
  35274. name: "Maw",
  35275. image: {
  35276. source: "./media/characters/haloren/maw.svg"
  35277. }
  35278. },
  35279. dick: {
  35280. height: math.unit(2.90, "feet"),
  35281. name: "Dick",
  35282. image: {
  35283. source: "./media/characters/haloren/dick.svg"
  35284. }
  35285. },
  35286. },
  35287. [
  35288. {
  35289. name: "Normal",
  35290. height: math.unit(7 + 5/12, "feet"),
  35291. default: true
  35292. },
  35293. {
  35294. name: "Enhanced",
  35295. height: math.unit(14 + 3/12, "feet")
  35296. },
  35297. ]
  35298. ))
  35299. characterMakers.push(() => makeCharacter(
  35300. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35301. {
  35302. front: {
  35303. height: math.unit(171, "cm"),
  35304. name: "Front",
  35305. image: {
  35306. source: "./media/characters/kimmy/front.svg",
  35307. extra: 1491/1435,
  35308. bottom: 53/1544
  35309. }
  35310. },
  35311. },
  35312. [
  35313. {
  35314. name: "Small",
  35315. height: math.unit(9, "cm")
  35316. },
  35317. {
  35318. name: "Normal",
  35319. height: math.unit(171, "cm"),
  35320. default: true
  35321. },
  35322. ]
  35323. ))
  35324. characterMakers.push(() => makeCharacter(
  35325. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35326. {
  35327. front: {
  35328. height: math.unit(8, "feet"),
  35329. weight: math.unit(300, "lb"),
  35330. name: "Front",
  35331. image: {
  35332. source: "./media/characters/galeboomer/front.svg",
  35333. extra: 4651/4415,
  35334. bottom: 162/4813
  35335. }
  35336. },
  35337. back: {
  35338. height: math.unit(8, "feet"),
  35339. weight: math.unit(300, "lb"),
  35340. name: "Back",
  35341. image: {
  35342. source: "./media/characters/galeboomer/back.svg",
  35343. extra: 4544/4314,
  35344. bottom: 16/4560
  35345. }
  35346. },
  35347. frontAlt: {
  35348. height: math.unit(8, "feet"),
  35349. weight: math.unit(300, "lb"),
  35350. name: "Front (Alt)",
  35351. image: {
  35352. source: "./media/characters/galeboomer/front-alt.svg",
  35353. extra: 4458/4228,
  35354. bottom: 68/4526
  35355. }
  35356. },
  35357. maw: {
  35358. height: math.unit(1.2, "feet"),
  35359. name: "Maw",
  35360. image: {
  35361. source: "./media/characters/galeboomer/maw.svg"
  35362. }
  35363. },
  35364. },
  35365. [
  35366. {
  35367. name: "Normal",
  35368. height: math.unit(8, "feet"),
  35369. default: true
  35370. },
  35371. ]
  35372. ))
  35373. characterMakers.push(() => makeCharacter(
  35374. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35375. {
  35376. front: {
  35377. height: math.unit(5 + 9/12, "feet"),
  35378. weight: math.unit(120, "lb"),
  35379. name: "Front",
  35380. image: {
  35381. source: "./media/characters/chyr/front.svg",
  35382. extra: 1323/1254,
  35383. bottom: 63/1386
  35384. }
  35385. },
  35386. back: {
  35387. height: math.unit(5 + 9/12, "feet"),
  35388. weight: math.unit(120, "lb"),
  35389. name: "Back",
  35390. image: {
  35391. source: "./media/characters/chyr/back.svg",
  35392. extra: 1323/1252,
  35393. bottom: 48/1371
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Normal",
  35400. height: math.unit(5 + 9/12, "feet"),
  35401. default: true
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(7, "feet"),
  35410. weight: math.unit(310, "lb"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/solarus/front.svg",
  35414. extra: 2415/2021,
  35415. bottom: 103/2518
  35416. }
  35417. },
  35418. back: {
  35419. height: math.unit(7, "feet"),
  35420. weight: math.unit(310, "lb"),
  35421. name: "Back",
  35422. image: {
  35423. source: "./media/characters/solarus/back.svg",
  35424. extra: 2463/2089,
  35425. bottom: 79/2542
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(7, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(16, "feet"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35445. extra: 1844/1780,
  35446. bottom: 58/1902
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(16, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(11 + 6/12, "feet"),
  35463. weight: math.unit(1366, "lb"),
  35464. name: "Front",
  35465. image: {
  35466. source: "./media/characters/lexor/front.svg",
  35467. extra: 1560/1481,
  35468. bottom: 211/1771
  35469. }
  35470. },
  35471. back: {
  35472. height: math.unit(11 + 6/12, "feet"),
  35473. weight: math.unit(1366, "lb"),
  35474. name: "Back",
  35475. image: {
  35476. source: "./media/characters/lexor/back.svg",
  35477. extra: 1614/1533,
  35478. bottom: 76/1690
  35479. }
  35480. },
  35481. maw: {
  35482. height: math.unit(3, "feet"),
  35483. name: "Maw",
  35484. image: {
  35485. source: "./media/characters/lexor/maw.svg"
  35486. }
  35487. },
  35488. dick: {
  35489. height: math.unit(2.59, "feet"),
  35490. name: "Dick",
  35491. image: {
  35492. source: "./media/characters/lexor/dick.svg"
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Normal",
  35499. height: math.unit(11 + 6/12, "feet"),
  35500. default: true
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(5 + 8/12, "feet"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/magnum/front.svg",
  35512. extra: 942/855,
  35513. bottom: 26/968
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Normal",
  35520. height: math.unit(5 + 8/12, "feet"),
  35521. default: true
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35527. {
  35528. front: {
  35529. height: math.unit(18 + 4/12, "feet"),
  35530. weight: math.unit(1500, "kg"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/solas-sharpsman/front.svg",
  35534. extra: 1698/1589,
  35535. bottom: 0/1698
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(18 + 4/12, "feet"),
  35543. default: true
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35549. {
  35550. front: {
  35551. height: math.unit(5 + 5/12, "feet"),
  35552. weight: math.unit(180, "lb"),
  35553. name: "Front",
  35554. image: {
  35555. source: "./media/characters/october/front.svg",
  35556. extra: 1800/1650,
  35557. bottom: 0/1800
  35558. }
  35559. },
  35560. frontNsfw: {
  35561. height: math.unit(5 + 5/12, "feet"),
  35562. weight: math.unit(180, "lb"),
  35563. name: "Front (NSFW)",
  35564. image: {
  35565. source: "./media/characters/october/front-nsfw.svg",
  35566. extra: 1392/1307,
  35567. bottom: 42/1434
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(5 + 5/12, "feet"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(8 + 6/12, "feet"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/essynkardi/front.svg",
  35587. extra: 1914/1846,
  35588. bottom: 22/1936
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(8 + 6/12, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35602. {
  35603. front: {
  35604. height: math.unit(6 + 6/12, "feet"),
  35605. weight: math.unit(7, "lb"),
  35606. name: "Front",
  35607. image: {
  35608. source: "./media/characters/icky/front.svg",
  35609. extra: 813/782,
  35610. bottom: 66/879
  35611. }
  35612. },
  35613. back: {
  35614. height: math.unit(6 + 6/12, "feet"),
  35615. weight: math.unit(7, "lb"),
  35616. name: "Back",
  35617. image: {
  35618. source: "./media/characters/icky/back.svg",
  35619. extra: 754/735,
  35620. bottom: 56/810
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(6 + 6/12, "feet"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35634. {
  35635. front: {
  35636. height: math.unit(15, "feet"),
  35637. name: "Front",
  35638. image: {
  35639. source: "./media/characters/rojas/front.svg",
  35640. extra: 1462/1408,
  35641. bottom: 95/1557
  35642. }
  35643. },
  35644. back: {
  35645. height: math.unit(15, "feet"),
  35646. name: "Back",
  35647. image: {
  35648. source: "./media/characters/rojas/back.svg",
  35649. extra: 1023/954,
  35650. bottom: 28/1051
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(15, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35664. {
  35665. frontHuman: {
  35666. height: math.unit(5 + 7/12, "feet"),
  35667. name: "Front (Human)",
  35668. image: {
  35669. source: "./media/characters/alek-dryagan/front-human.svg",
  35670. extra: 1687/1667,
  35671. bottom: 69/1756
  35672. }
  35673. },
  35674. backHuman: {
  35675. height: math.unit(5 + 7/12, "feet"),
  35676. name: "Back (Human)",
  35677. image: {
  35678. source: "./media/characters/alek-dryagan/back-human.svg",
  35679. extra: 1670/1649,
  35680. bottom: 65/1735
  35681. }
  35682. },
  35683. frontDemi: {
  35684. height: math.unit(65, "feet"),
  35685. name: "Front (Demi)",
  35686. image: {
  35687. source: "./media/characters/alek-dryagan/front-demi.svg",
  35688. extra: 1669/1642,
  35689. bottom: 49/1718
  35690. }
  35691. },
  35692. backDemi: {
  35693. height: math.unit(65, "feet"),
  35694. name: "Back (Demi)",
  35695. image: {
  35696. source: "./media/characters/alek-dryagan/back-demi.svg",
  35697. extra: 1658/1637,
  35698. bottom: 40/1698
  35699. }
  35700. },
  35701. mawHuman: {
  35702. height: math.unit(0.3, "feet"),
  35703. name: "Maw (Human)",
  35704. image: {
  35705. source: "./media/characters/alek-dryagan/maw-human.svg"
  35706. }
  35707. },
  35708. mawDemi: {
  35709. height: math.unit(3.8, "feet"),
  35710. name: "Maw (Demi)",
  35711. image: {
  35712. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35713. }
  35714. },
  35715. },
  35716. [
  35717. {
  35718. name: "Normal",
  35719. height: math.unit(5 + 7/12, "feet"),
  35720. default: true
  35721. },
  35722. ]
  35723. ))
  35724. characterMakers.push(() => makeCharacter(
  35725. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35726. {
  35727. frontHuman: {
  35728. height: math.unit(5 + 2/12, "feet"),
  35729. name: "Front (Human)",
  35730. image: {
  35731. source: "./media/characters/gen/front-human.svg",
  35732. extra: 1627/1538,
  35733. bottom: 71/1698
  35734. }
  35735. },
  35736. backHuman: {
  35737. height: math.unit(5 + 2/12, "feet"),
  35738. name: "Back (Human)",
  35739. image: {
  35740. source: "./media/characters/gen/back-human.svg",
  35741. extra: 1638/1548,
  35742. bottom: 69/1707
  35743. }
  35744. },
  35745. frontDemi: {
  35746. height: math.unit(5 + 2/12, "feet"),
  35747. name: "Front (Demi)",
  35748. image: {
  35749. source: "./media/characters/gen/front-demi.svg",
  35750. extra: 1627/1538,
  35751. bottom: 71/1698
  35752. }
  35753. },
  35754. backDemi: {
  35755. height: math.unit(5 + 2/12, "feet"),
  35756. name: "Back (Demi)",
  35757. image: {
  35758. source: "./media/characters/gen/back-demi.svg",
  35759. extra: 1638/1548,
  35760. bottom: 69/1707
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(5 + 2/12, "feet"),
  35768. default: true
  35769. },
  35770. ]
  35771. ))
  35772. characterMakers.push(() => makeCharacter(
  35773. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35774. {
  35775. frontImp: {
  35776. height: math.unit(1 + 11/12, "feet"),
  35777. name: "Front (Imp)",
  35778. image: {
  35779. source: "./media/characters/max-kobold/front-imp.svg",
  35780. extra: 1238/1134,
  35781. bottom: 81/1319
  35782. }
  35783. },
  35784. backImp: {
  35785. height: math.unit(1 + 11/12, "feet"),
  35786. name: "Back (Imp)",
  35787. image: {
  35788. source: "./media/characters/max-kobold/back-imp.svg",
  35789. extra: 1334/1175,
  35790. bottom: 34/1368
  35791. }
  35792. },
  35793. frontDemi: {
  35794. height: math.unit(5 + 9/12, "feet"),
  35795. name: "Front (Demi)",
  35796. image: {
  35797. source: "./media/characters/max-kobold/front-demi.svg",
  35798. extra: 1715/1685,
  35799. bottom: 54/1769
  35800. }
  35801. },
  35802. backDemi: {
  35803. height: math.unit(5 + 9/12, "feet"),
  35804. name: "Back (Demi)",
  35805. image: {
  35806. source: "./media/characters/max-kobold/back-demi.svg",
  35807. extra: 1752/1729,
  35808. bottom: 41/1793
  35809. }
  35810. },
  35811. handImp: {
  35812. height: math.unit(0.45, "feet"),
  35813. name: "Hand (Imp)",
  35814. image: {
  35815. source: "./media/characters/max-kobold/hand.svg"
  35816. }
  35817. },
  35818. pawImp: {
  35819. height: math.unit(0.46, "feet"),
  35820. name: "Paw (Imp)",
  35821. image: {
  35822. source: "./media/characters/max-kobold/paw.svg"
  35823. }
  35824. },
  35825. handDemi: {
  35826. height: math.unit(0.80, "feet"),
  35827. name: "Hand (Demi)",
  35828. image: {
  35829. source: "./media/characters/max-kobold/hand.svg"
  35830. }
  35831. },
  35832. pawDemi: {
  35833. height: math.unit(1.1, "feet"),
  35834. name: "Paw (Demi)",
  35835. image: {
  35836. source: "./media/characters/max-kobold/paw.svg"
  35837. }
  35838. },
  35839. headImp: {
  35840. height: math.unit(1.33, "feet"),
  35841. name: "Head (Imp)",
  35842. image: {
  35843. source: "./media/characters/max-kobold/head-imp.svg"
  35844. }
  35845. },
  35846. mawImp: {
  35847. height: math.unit(0.75, "feet"),
  35848. name: "Maw (Imp)",
  35849. image: {
  35850. source: "./media/characters/max-kobold/maw-imp.svg"
  35851. }
  35852. },
  35853. mawDemi: {
  35854. height: math.unit(0.42, "feet"),
  35855. name: "Maw (Demi)",
  35856. image: {
  35857. source: "./media/characters/max-kobold/maw-demi.svg"
  35858. }
  35859. },
  35860. },
  35861. [
  35862. {
  35863. name: "Normal",
  35864. height: math.unit(1 + 11/12, "feet"),
  35865. default: true
  35866. },
  35867. ]
  35868. ))
  35869. characterMakers.push(() => makeCharacter(
  35870. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35871. {
  35872. front: {
  35873. height: math.unit(7 + 5/12, "feet"),
  35874. name: "Front",
  35875. image: {
  35876. source: "./media/characters/carbon/front.svg",
  35877. extra: 1754/1689,
  35878. bottom: 65/1819
  35879. }
  35880. },
  35881. back: {
  35882. height: math.unit(7 + 5/12, "feet"),
  35883. name: "Back",
  35884. image: {
  35885. source: "./media/characters/carbon/back.svg",
  35886. extra: 1762/1695,
  35887. bottom: 24/1786
  35888. }
  35889. },
  35890. frontGigantamax: {
  35891. height: math.unit(150, "feet"),
  35892. name: "Front (Gigantamax)",
  35893. image: {
  35894. source: "./media/characters/carbon/front-gigantamax.svg",
  35895. extra: 1826/1669,
  35896. bottom: 59/1885
  35897. }
  35898. },
  35899. backGigantamax: {
  35900. height: math.unit(150, "feet"),
  35901. name: "Back (Gigantamax)",
  35902. image: {
  35903. source: "./media/characters/carbon/back-gigantamax.svg",
  35904. extra: 1796/1653,
  35905. bottom: 53/1849
  35906. }
  35907. },
  35908. maw: {
  35909. height: math.unit(0.48, "feet"),
  35910. name: "Maw",
  35911. image: {
  35912. source: "./media/characters/carbon/maw.svg"
  35913. }
  35914. },
  35915. mawGigantamax: {
  35916. height: math.unit(7.5, "feet"),
  35917. name: "Maw (Gigantamax)",
  35918. image: {
  35919. source: "./media/characters/carbon/maw-gigantamax.svg"
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Normal",
  35926. height: math.unit(7 + 5/12, "feet"),
  35927. default: true
  35928. },
  35929. ]
  35930. ))
  35931. characterMakers.push(() => makeCharacter(
  35932. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35933. {
  35934. front: {
  35935. height: math.unit(6, "feet"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/maverick/front.svg",
  35939. extra: 1672/1661,
  35940. bottom: 85/1757
  35941. }
  35942. },
  35943. back: {
  35944. height: math.unit(6, "feet"),
  35945. name: "Back",
  35946. image: {
  35947. source: "./media/characters/maverick/back.svg",
  35948. extra: 1642/1631,
  35949. bottom: 38/1680
  35950. }
  35951. },
  35952. },
  35953. [
  35954. {
  35955. name: "Normal",
  35956. height: math.unit(6, "feet"),
  35957. default: true
  35958. },
  35959. ]
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  35963. {
  35964. front: {
  35965. height: math.unit(15, "feet"),
  35966. weight: math.unit(615, "lb"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/grockle/front.svg",
  35970. extra: 1535/1427,
  35971. bottom: 56/1591
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Normal",
  35978. height: math.unit(15, "feet"),
  35979. default: true
  35980. },
  35981. {
  35982. name: "Large",
  35983. height: math.unit(150, "feet")
  35984. },
  35985. {
  35986. name: "Macro",
  35987. height: math.unit(1876, "feet")
  35988. },
  35989. {
  35990. name: "Mega Macro",
  35991. height: math.unit(121940, "feet")
  35992. },
  35993. {
  35994. name: "Giga Macro",
  35995. height: math.unit(750, "km")
  35996. },
  35997. {
  35998. name: "Tera Macro",
  35999. height: math.unit(750000, "km")
  36000. },
  36001. {
  36002. name: "Galactic",
  36003. height: math.unit(1.4e5, "km")
  36004. },
  36005. {
  36006. name: "Godlike",
  36007. height: math.unit(9.8e280, "galaxies")
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(11, "meters"),
  36016. weight: math.unit(20, "tonnes"),
  36017. name: "Front",
  36018. image: {
  36019. source: "./media/characters/alistair/front.svg",
  36020. extra: 1265/1009,
  36021. bottom: 93/1358
  36022. }
  36023. },
  36024. },
  36025. [
  36026. {
  36027. name: "Normal",
  36028. height: math.unit(11, "meters"),
  36029. default: true
  36030. },
  36031. ]
  36032. ))
  36033. characterMakers.push(() => makeCharacter(
  36034. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36035. {
  36036. front: {
  36037. height: math.unit(5 + 8/12, "feet"),
  36038. name: "Front",
  36039. image: {
  36040. source: "./media/characters/haruka/front.svg",
  36041. extra: 2012/1952,
  36042. bottom: 0/2012
  36043. }
  36044. },
  36045. },
  36046. [
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(5 + 8/12, "feet"),
  36050. default: true
  36051. },
  36052. ]
  36053. ))
  36054. characterMakers.push(() => makeCharacter(
  36055. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36056. {
  36057. back: {
  36058. height: math.unit(9, "feet"),
  36059. name: "Back",
  36060. image: {
  36061. source: "./media/characters/vivian-sylveon/back.svg",
  36062. extra: 1853/1714,
  36063. bottom: 0/1853
  36064. }
  36065. },
  36066. },
  36067. [
  36068. {
  36069. name: "Normal",
  36070. height: math.unit(9, "feet"),
  36071. default: true
  36072. },
  36073. {
  36074. name: "Macro",
  36075. height: math.unit(500, "feet")
  36076. },
  36077. {
  36078. name: "Megamacro",
  36079. height: math.unit(600, "miles")
  36080. },
  36081. {
  36082. name: "Gigamacro",
  36083. height: math.unit(30000, "miles")
  36084. },
  36085. ]
  36086. ))
  36087. characterMakers.push(() => makeCharacter(
  36088. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36089. {
  36090. anthro: {
  36091. height: math.unit(5 + 10/12, "feet"),
  36092. weight: math.unit(100, "lb"),
  36093. name: "Anthro",
  36094. image: {
  36095. source: "./media/characters/daiki/anthro.svg",
  36096. extra: 1115/1027,
  36097. bottom: 69/1184
  36098. }
  36099. },
  36100. feral: {
  36101. height: math.unit(200, "feet"),
  36102. name: "Feral",
  36103. image: {
  36104. source: "./media/characters/daiki/feral.svg",
  36105. extra: 1256/313,
  36106. bottom: 39/1295
  36107. }
  36108. },
  36109. feralHead: {
  36110. height: math.unit(171, "feet"),
  36111. name: "Feral Head",
  36112. image: {
  36113. source: "./media/characters/daiki/feral-head.svg"
  36114. }
  36115. },
  36116. },
  36117. [
  36118. {
  36119. name: "Normal",
  36120. height: math.unit(5 + 10/12, "feet"),
  36121. default: true
  36122. },
  36123. ]
  36124. ))
  36125. //characters
  36126. function makeCharacters() {
  36127. const results = [];
  36128. characterMakers.forEach(character => {
  36129. results.push(character());
  36130. });
  36131. return results;
  36132. }