less copy protection, more size visualization
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

41829 rindas
1.0 MiB

  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. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. },
  1698. "sika-deer": {
  1699. name: "Sika Deer",
  1700. parents: ["deer"]
  1701. },
  1702. "vaporeon": {
  1703. name: "Vaporeon",
  1704. parents: ["eeveelution"]
  1705. },
  1706. "leafeon": {
  1707. name: "Leafeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "jolteon": {
  1711. name: "Jolteon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "spireborn": {
  1715. name: "Spireborn",
  1716. parents: ["zorgoia"]
  1717. },
  1718. "vampire": {
  1719. name: "Vampire",
  1720. parents: ["monster"]
  1721. },
  1722. }
  1723. //species
  1724. function getSpeciesInfo(speciesList) {
  1725. let result = new Set();
  1726. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1727. result.add(entry)
  1728. });
  1729. return Array.from(result);
  1730. };
  1731. function getSpeciesInfoHelper(species) {
  1732. if (!speciesData[species]) {
  1733. console.warn(species + " doesn't exist");
  1734. return [];
  1735. }
  1736. if (speciesData[species].parents) {
  1737. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1738. } else {
  1739. return [species];
  1740. }
  1741. }
  1742. characterMakers.push(() => makeCharacter(
  1743. {
  1744. name: "Fen",
  1745. species: ["crux"],
  1746. description: {
  1747. title: "Bio",
  1748. text: "Very furry. Sheds on everything."
  1749. },
  1750. tags: [
  1751. "anthro",
  1752. "goo"
  1753. ]
  1754. },
  1755. {
  1756. back: {
  1757. height: math.unit(2.2428, "meter"),
  1758. weight: math.unit(124.738, "kg"),
  1759. name: "Back",
  1760. image: {
  1761. source: "./media/characters/fen/back.svg",
  1762. },
  1763. info: {
  1764. description: {
  1765. mode: "append",
  1766. text: "\n\nHe is not currently looking at you."
  1767. }
  1768. }
  1769. },
  1770. full: {
  1771. height: math.unit(1.34, "meter"),
  1772. weight: math.unit(225, "kg"),
  1773. name: "Full",
  1774. image: {
  1775. source: "./media/characters/fen/full.svg"
  1776. },
  1777. info: {
  1778. description: {
  1779. mode: "append",
  1780. text: "\n\nMunch."
  1781. }
  1782. }
  1783. },
  1784. kneeling: {
  1785. height: math.unit(5.4, "feet"),
  1786. weight: math.unit(124.738, "kg"),
  1787. name: "Kneeling",
  1788. image: {
  1789. source: "./media/characters/fen/kneeling.svg",
  1790. extra: 563 / 507
  1791. }
  1792. },
  1793. goo: {
  1794. height: math.unit(2.8, "feet"),
  1795. weight: math.unit(125, "kg"),
  1796. capacity: math.unit(1, "people"),
  1797. name: "Goo",
  1798. image: {
  1799. source: "./media/characters/fen/goo.svg",
  1800. bottom: 116 / 613
  1801. }
  1802. },
  1803. lounging: {
  1804. height: math.unit(6.5, "feet"),
  1805. weight: math.unit(125, "kg"),
  1806. name: "Lounging",
  1807. image: {
  1808. source: "./media/characters/fen/lounging.svg"
  1809. }
  1810. },
  1811. },
  1812. [
  1813. {
  1814. name: "Normal",
  1815. height: math.unit(2.2428, "meter")
  1816. },
  1817. {
  1818. name: "Big",
  1819. height: math.unit(12, "feet")
  1820. },
  1821. {
  1822. name: "Minimacro",
  1823. height: math.unit(40, "feet"),
  1824. default: true,
  1825. info: {
  1826. description: {
  1827. mode: "append",
  1828. text: "\n\nTOO DAMN BIG"
  1829. }
  1830. }
  1831. },
  1832. {
  1833. name: "Macro",
  1834. height: math.unit(100, "feet"),
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nTOO DAMN BIG"
  1839. }
  1840. }
  1841. },
  1842. {
  1843. name: "Macro+",
  1844. height: math.unit(300, "feet")
  1845. },
  1846. {
  1847. name: "Megamacro",
  1848. height: math.unit(2, "miles")
  1849. }
  1850. ]
  1851. ))
  1852. characterMakers.push(() => makeCharacter(
  1853. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1854. {
  1855. front: {
  1856. height: math.unit(183, "cm"),
  1857. weight: math.unit(80, "kg"),
  1858. name: "Front",
  1859. image: {
  1860. source: "./media/characters/sofia-fluttertail/front.svg",
  1861. bottom: 0.01,
  1862. extra: 2154 / 2081
  1863. }
  1864. },
  1865. frontAlt: {
  1866. height: math.unit(183, "cm"),
  1867. weight: math.unit(80, "kg"),
  1868. name: "Front (alt)",
  1869. image: {
  1870. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1871. }
  1872. },
  1873. back: {
  1874. height: math.unit(183, "cm"),
  1875. weight: math.unit(80, "kg"),
  1876. name: "Back",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/back.svg"
  1879. }
  1880. },
  1881. kneeling: {
  1882. height: math.unit(125, "cm"),
  1883. weight: math.unit(80, "kg"),
  1884. name: "Kneeling",
  1885. image: {
  1886. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1887. extra: 1033 / 977,
  1888. bottom: 23.7 / 1057
  1889. }
  1890. },
  1891. maw: {
  1892. height: math.unit(183 / 5, "cm"),
  1893. name: "Maw",
  1894. image: {
  1895. source: "./media/characters/sofia-fluttertail/maw.svg"
  1896. }
  1897. },
  1898. mawcloseup: {
  1899. height: math.unit(183 / 5 * 0.41, "cm"),
  1900. name: "Maw (Closeup)",
  1901. image: {
  1902. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1903. }
  1904. },
  1905. paws: {
  1906. height: math.unit(1.17, "feet"),
  1907. name: "Paws",
  1908. image: {
  1909. source: "./media/characters/sofia-fluttertail/paws.svg",
  1910. extra: 851 / 851,
  1911. bottom: 17 / 868
  1912. }
  1913. },
  1914. },
  1915. [
  1916. {
  1917. name: "Normal",
  1918. height: math.unit(1.83, "meter")
  1919. },
  1920. {
  1921. name: "Size Thief",
  1922. height: math.unit(18, "feet")
  1923. },
  1924. {
  1925. name: "50 Foot Collie",
  1926. height: math.unit(50, "feet")
  1927. },
  1928. {
  1929. name: "Macro",
  1930. height: math.unit(96, "feet"),
  1931. default: true
  1932. },
  1933. {
  1934. name: "Megamerger",
  1935. height: math.unit(650, "feet")
  1936. },
  1937. ]
  1938. ))
  1939. characterMakers.push(() => makeCharacter(
  1940. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1941. {
  1942. front: {
  1943. height: math.unit(7, "feet"),
  1944. weight: math.unit(100, "kg"),
  1945. name: "Front",
  1946. image: {
  1947. source: "./media/characters/march/front.svg",
  1948. extra: 1992/1851,
  1949. bottom: 39/2031
  1950. }
  1951. },
  1952. foot: {
  1953. height: math.unit(0.9, "feet"),
  1954. name: "Foot",
  1955. image: {
  1956. source: "./media/characters/march/foot.svg"
  1957. }
  1958. },
  1959. },
  1960. [
  1961. {
  1962. name: "Normal",
  1963. height: math.unit(7.9, "feet")
  1964. },
  1965. {
  1966. name: "Macro",
  1967. height: math.unit(220, "meters")
  1968. },
  1969. {
  1970. name: "Megamacro",
  1971. height: math.unit(2.98, "km"),
  1972. default: true
  1973. },
  1974. {
  1975. name: "Gigamacro",
  1976. height: math.unit(15963, "km")
  1977. },
  1978. {
  1979. name: "Teramacro",
  1980. height: math.unit(2980000000, "km")
  1981. },
  1982. {
  1983. name: "Examacro",
  1984. height: math.unit(250, "parsecs")
  1985. },
  1986. ]
  1987. ))
  1988. characterMakers.push(() => makeCharacter(
  1989. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1990. {
  1991. front: {
  1992. height: math.unit(6, "feet"),
  1993. weight: math.unit(60, "kg"),
  1994. name: "Front",
  1995. image: {
  1996. source: "./media/characters/noir/front.svg",
  1997. extra: 1,
  1998. bottom: 0.032
  1999. }
  2000. },
  2001. },
  2002. [
  2003. {
  2004. name: "Normal",
  2005. height: math.unit(6.6, "feet")
  2006. },
  2007. {
  2008. name: "Macro",
  2009. height: math.unit(500, "feet")
  2010. },
  2011. {
  2012. name: "Megamacro",
  2013. height: math.unit(2.5, "km"),
  2014. default: true
  2015. },
  2016. {
  2017. name: "Gigamacro",
  2018. height: math.unit(22500, "km")
  2019. },
  2020. {
  2021. name: "Teramacro",
  2022. height: math.unit(2500000000, "km")
  2023. },
  2024. {
  2025. name: "Examacro",
  2026. height: math.unit(200, "parsecs")
  2027. },
  2028. ]
  2029. ))
  2030. characterMakers.push(() => makeCharacter(
  2031. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2032. {
  2033. front: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(100, "kg"),
  2036. name: "Front",
  2037. image: {
  2038. source: "./media/characters/okuri/front.svg",
  2039. extra: 1,
  2040. bottom: 0.037
  2041. }
  2042. },
  2043. back: {
  2044. height: math.unit(7, "feet"),
  2045. weight: math.unit(100, "kg"),
  2046. name: "Back",
  2047. image: {
  2048. source: "./media/characters/okuri/back.svg",
  2049. extra: 1,
  2050. bottom: 0.007
  2051. }
  2052. },
  2053. },
  2054. [
  2055. {
  2056. name: "Megamacro",
  2057. height: math.unit(100, "miles"),
  2058. default: true
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(100, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/manny/front.svg",
  2071. extra: 1,
  2072. bottom: 0.06
  2073. }
  2074. },
  2075. back: {
  2076. height: math.unit(7, "feet"),
  2077. weight: math.unit(100, "kg"),
  2078. name: "Back",
  2079. image: {
  2080. source: "./media/characters/manny/back.svg",
  2081. extra: 1,
  2082. bottom: 0.014
  2083. }
  2084. },
  2085. },
  2086. [
  2087. {
  2088. name: "Normal",
  2089. height: math.unit(7, "feet"),
  2090. },
  2091. {
  2092. name: "Macro",
  2093. height: math.unit(78, "feet"),
  2094. default: true
  2095. },
  2096. {
  2097. name: "Macro+",
  2098. height: math.unit(300, "meters")
  2099. },
  2100. {
  2101. name: "Macro++",
  2102. height: math.unit(2400, "meters")
  2103. },
  2104. {
  2105. name: "Megamacro",
  2106. height: math.unit(5167, "meters")
  2107. },
  2108. {
  2109. name: "Gigamacro",
  2110. height: math.unit(41769, "miles")
  2111. },
  2112. ]
  2113. ))
  2114. characterMakers.push(() => makeCharacter(
  2115. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2116. {
  2117. front: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Front",
  2121. image: {
  2122. source: "./media/characters/adake/front-1.svg"
  2123. }
  2124. },
  2125. frontAlt: {
  2126. height: math.unit(7, "feet"),
  2127. weight: math.unit(100, "kg"),
  2128. name: "Front (Alt)",
  2129. image: {
  2130. source: "./media/characters/adake/front-2.svg",
  2131. extra: 1,
  2132. bottom: 0.01
  2133. }
  2134. },
  2135. back: {
  2136. height: math.unit(7, "feet"),
  2137. weight: math.unit(100, "kg"),
  2138. name: "Back",
  2139. image: {
  2140. source: "./media/characters/adake/back.svg",
  2141. }
  2142. },
  2143. kneel: {
  2144. height: math.unit(5.385, "feet"),
  2145. weight: math.unit(100, "kg"),
  2146. name: "Kneeling",
  2147. image: {
  2148. source: "./media/characters/adake/kneel.svg",
  2149. bottom: 0.052
  2150. }
  2151. },
  2152. },
  2153. [
  2154. {
  2155. name: "Normal",
  2156. height: math.unit(7, "feet"),
  2157. },
  2158. {
  2159. name: "Macro",
  2160. height: math.unit(78, "feet"),
  2161. default: true
  2162. },
  2163. {
  2164. name: "Macro+",
  2165. height: math.unit(300, "meters")
  2166. },
  2167. {
  2168. name: "Macro++",
  2169. height: math.unit(2400, "meters")
  2170. },
  2171. {
  2172. name: "Megamacro",
  2173. height: math.unit(5167, "meters")
  2174. },
  2175. {
  2176. name: "Gigamacro",
  2177. height: math.unit(41769, "miles")
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(1.65, "meters"),
  2186. weight: math.unit(50, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/elijah/front.svg",
  2190. extra: 858 / 830,
  2191. bottom: 95.5 / 953.8559
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(1.65, "meters"),
  2196. weight: math.unit(50, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/elijah/back.svg",
  2200. extra: 895 / 850,
  2201. bottom: 5.3 / 897.956
  2202. }
  2203. },
  2204. frontNsfw: {
  2205. height: math.unit(1.65, "meters"),
  2206. weight: math.unit(50, "kg"),
  2207. name: "Front (NSFW)",
  2208. image: {
  2209. source: "./media/characters/elijah/front-nsfw.svg",
  2210. extra: 858 / 830,
  2211. bottom: 95.5 / 953.8559
  2212. }
  2213. },
  2214. backNsfw: {
  2215. height: math.unit(1.65, "meters"),
  2216. weight: math.unit(50, "kg"),
  2217. name: "Back (NSFW)",
  2218. image: {
  2219. source: "./media/characters/elijah/back-nsfw.svg",
  2220. extra: 895 / 850,
  2221. bottom: 5.3 / 897.956
  2222. }
  2223. },
  2224. dick: {
  2225. height: math.unit(1, "feet"),
  2226. name: "Dick",
  2227. image: {
  2228. source: "./media/characters/elijah/dick.svg"
  2229. }
  2230. },
  2231. beakOpen: {
  2232. height: math.unit(1.25, "feet"),
  2233. name: "Beak (Open)",
  2234. image: {
  2235. source: "./media/characters/elijah/beak-open.svg"
  2236. }
  2237. },
  2238. beakShut: {
  2239. height: math.unit(1.25, "feet"),
  2240. name: "Beak (Shut)",
  2241. image: {
  2242. source: "./media/characters/elijah/beak-shut.svg"
  2243. }
  2244. },
  2245. footFlexing: {
  2246. height: math.unit(1.61, "feet"),
  2247. name: "Foot (Flexing)",
  2248. image: {
  2249. source: "./media/characters/elijah/foot-flexing.svg"
  2250. }
  2251. },
  2252. footStepping: {
  2253. height: math.unit(1.44, "feet"),
  2254. name: "Foot (Stepping)",
  2255. image: {
  2256. source: "./media/characters/elijah/foot-stepping.svg"
  2257. }
  2258. },
  2259. plantigradeLeg: {
  2260. height: math.unit(2.34, "feet"),
  2261. name: "Plantigrade Leg",
  2262. image: {
  2263. source: "./media/characters/elijah/plantigrade-leg.svg"
  2264. }
  2265. },
  2266. plantigradeFootLeft: {
  2267. height: math.unit(0.9, "feet"),
  2268. name: "Plantigrade Foot (Left)",
  2269. image: {
  2270. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2271. }
  2272. },
  2273. plantigradeFootRight: {
  2274. height: math.unit(0.9, "feet"),
  2275. name: "Plantigrade Foot (Right)",
  2276. image: {
  2277. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2278. }
  2279. },
  2280. },
  2281. [
  2282. {
  2283. name: "Normal",
  2284. height: math.unit(1.65, "meters")
  2285. },
  2286. {
  2287. name: "Macro",
  2288. height: math.unit(55, "meters"),
  2289. default: true
  2290. },
  2291. {
  2292. name: "Macro+",
  2293. height: math.unit(105, "meters")
  2294. },
  2295. ]
  2296. ))
  2297. characterMakers.push(() => makeCharacter(
  2298. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2299. {
  2300. front: {
  2301. height: math.unit(11, "feet"),
  2302. weight: math.unit(320, "kg"),
  2303. name: "Front",
  2304. image: {
  2305. source: "./media/characters/rai/front.svg",
  2306. extra: 1802/1696,
  2307. bottom: 68/1870
  2308. }
  2309. },
  2310. frontDressed: {
  2311. height: math.unit(11, "feet"),
  2312. weight: math.unit(320, "kg"),
  2313. name: "Front (Dressed)",
  2314. image: {
  2315. source: "./media/characters/rai/front-dressed.svg",
  2316. extra: 1802/1696,
  2317. bottom: 68/1870
  2318. }
  2319. },
  2320. side: {
  2321. height: math.unit(11, "feet"),
  2322. weight: math.unit(320, "kg"),
  2323. name: "Side",
  2324. image: {
  2325. source: "./media/characters/rai/side.svg",
  2326. extra: 1789/1710,
  2327. bottom: 115/1904
  2328. }
  2329. },
  2330. back: {
  2331. height: math.unit(11, "feet"),
  2332. weight: math.unit(320, "kg"),
  2333. name: "Back",
  2334. image: {
  2335. source: "./media/characters/rai/back.svg",
  2336. extra: 1770/1707,
  2337. bottom: 28/1798
  2338. }
  2339. },
  2340. feral: {
  2341. height: math.unit(11, "feet"),
  2342. weight: math.unit(640, "kg"),
  2343. name: "Feral",
  2344. image: {
  2345. source: "./media/characters/rai/feral.svg",
  2346. extra: 1035/642,
  2347. bottom: 86/1121
  2348. }
  2349. },
  2350. dragon: {
  2351. height: math.unit(23, "feet"),
  2352. weight: math.unit(50000, "lb"),
  2353. name: "Dragon",
  2354. image: {
  2355. source: "./media/characters/rai/dragon.svg",
  2356. extra: 2498 / 2030,
  2357. bottom: 85.2 / 2584
  2358. }
  2359. },
  2360. maw: {
  2361. height: math.unit(6 / 3.81416, "feet"),
  2362. name: "Maw",
  2363. image: {
  2364. source: "./media/characters/rai/maw.svg"
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Normal",
  2371. height: math.unit(11, "feet")
  2372. },
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(302, "feet"),
  2376. default: true
  2377. },
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2382. {
  2383. frontDressed: {
  2384. height: math.unit(216, "feet"),
  2385. weight: math.unit(7000000, "lb"),
  2386. name: "Front (Dressed)",
  2387. image: {
  2388. source: "./media/characters/jazzy/front-dressed.svg",
  2389. extra: 2738 / 2651,
  2390. bottom: 41.8 / 2786
  2391. }
  2392. },
  2393. backDressed: {
  2394. height: math.unit(216, "feet"),
  2395. weight: math.unit(7000000, "lb"),
  2396. name: "Back (Dressed)",
  2397. image: {
  2398. source: "./media/characters/jazzy/back-dressed.svg",
  2399. extra: 2775 / 2673,
  2400. bottom: 36.8 / 2817
  2401. }
  2402. },
  2403. front: {
  2404. height: math.unit(216, "feet"),
  2405. weight: math.unit(7000000, "lb"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/jazzy/front.svg",
  2409. extra: 2738 / 2651,
  2410. bottom: 41.8 / 2786
  2411. }
  2412. },
  2413. back: {
  2414. height: math.unit(216, "feet"),
  2415. weight: math.unit(7000000, "lb"),
  2416. name: "Back",
  2417. image: {
  2418. source: "./media/characters/jazzy/back.svg",
  2419. extra: 2775 / 2673,
  2420. bottom: 36.8 / 2817
  2421. }
  2422. },
  2423. maw: {
  2424. height: math.unit(20, "feet"),
  2425. name: "Maw",
  2426. image: {
  2427. source: "./media/characters/jazzy/maw.svg"
  2428. }
  2429. },
  2430. paws: {
  2431. height: math.unit(27.5, "feet"),
  2432. name: "Paws",
  2433. image: {
  2434. source: "./media/characters/jazzy/paws.svg"
  2435. }
  2436. },
  2437. eye: {
  2438. height: math.unit(4.4, "feet"),
  2439. name: "Eye",
  2440. image: {
  2441. source: "./media/characters/jazzy/eye.svg"
  2442. }
  2443. },
  2444. droneOffense: {
  2445. height: math.unit(9.5, "inches"),
  2446. name: "Drone (Offense)",
  2447. image: {
  2448. source: "./media/characters/jazzy/drone-offense.svg"
  2449. }
  2450. },
  2451. droneRecon: {
  2452. height: math.unit(9.5, "inches"),
  2453. name: "Drone (Recon)",
  2454. image: {
  2455. source: "./media/characters/jazzy/drone-recon.svg"
  2456. }
  2457. },
  2458. droneDefense: {
  2459. height: math.unit(9.5, "inches"),
  2460. name: "Drone (Defense)",
  2461. image: {
  2462. source: "./media/characters/jazzy/drone-defense.svg"
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Macro",
  2469. height: math.unit(216, "feet"),
  2470. default: true
  2471. },
  2472. ]
  2473. ))
  2474. characterMakers.push(() => makeCharacter(
  2475. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2476. {
  2477. front: {
  2478. height: math.unit(9 + 6/12, "feet"),
  2479. weight: math.unit(700, "lb"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/flamm/front.svg",
  2483. extra: 1751/1632,
  2484. bottom: 46/1797
  2485. }
  2486. },
  2487. buff: {
  2488. height: math.unit(9 + 6/12, "feet"),
  2489. weight: math.unit(950, "lb"),
  2490. name: "Buff",
  2491. image: {
  2492. source: "./media/characters/flamm/buff.svg",
  2493. extra: 3018/2874,
  2494. bottom: 221/3239
  2495. }
  2496. },
  2497. },
  2498. [
  2499. {
  2500. name: "Normal",
  2501. height: math.unit(9.5, "feet")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(200, "feet"),
  2506. default: true
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(5 + 3/12, "feet"),
  2515. weight: math.unit(60, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/zephiro/front.svg",
  2519. extra: 2309 / 2162,
  2520. bottom: 0.069
  2521. }
  2522. },
  2523. side: {
  2524. height: math.unit(5 + 3/12, "feet"),
  2525. weight: math.unit(60, "kg"),
  2526. name: "Side",
  2527. image: {
  2528. source: "./media/characters/zephiro/side.svg",
  2529. extra: 2403 / 2279,
  2530. bottom: 0.015
  2531. }
  2532. },
  2533. back: {
  2534. height: math.unit(5 + 3/12, "feet"),
  2535. weight: math.unit(60, "kg"),
  2536. name: "Back",
  2537. image: {
  2538. source: "./media/characters/zephiro/back.svg",
  2539. extra: 2373 / 2244,
  2540. bottom: 0.013
  2541. }
  2542. },
  2543. hand: {
  2544. height: math.unit(0.68, "feet"),
  2545. name: "Hand",
  2546. image: {
  2547. source: "./media/characters/zephiro/hand.svg"
  2548. }
  2549. },
  2550. paw: {
  2551. height: math.unit(1, "feet"),
  2552. name: "Paw",
  2553. image: {
  2554. source: "./media/characters/zephiro/paw.svg"
  2555. }
  2556. },
  2557. beans: {
  2558. height: math.unit(0.93, "feet"),
  2559. name: "Beans",
  2560. image: {
  2561. source: "./media/characters/zephiro/beans.svg"
  2562. }
  2563. },
  2564. },
  2565. [
  2566. {
  2567. name: "Micro",
  2568. height: math.unit(3, "inches")
  2569. },
  2570. {
  2571. name: "Normal",
  2572. height: math.unit(5 + 3 / 12, "feet"),
  2573. default: true
  2574. },
  2575. {
  2576. name: "Macro",
  2577. height: math.unit(118, "feet")
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2583. {
  2584. front: {
  2585. height: math.unit(5, "feet"),
  2586. weight: math.unit(90, "kg"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/fory/front.svg",
  2590. extra: 2862 / 2674,
  2591. bottom: 180 / 3043.8
  2592. }
  2593. },
  2594. back: {
  2595. height: math.unit(5, "feet"),
  2596. weight: math.unit(90, "kg"),
  2597. name: "Back",
  2598. image: {
  2599. source: "./media/characters/fory/back.svg",
  2600. extra: 2962 / 2791,
  2601. bottom: 106 / 3071.8
  2602. }
  2603. },
  2604. foot: {
  2605. height: math.unit(2.14, "feet"),
  2606. name: "Foot",
  2607. image: {
  2608. source: "./media/characters/fory/foot.svg"
  2609. }
  2610. },
  2611. },
  2612. [
  2613. {
  2614. name: "Normal",
  2615. height: math.unit(5, "feet")
  2616. },
  2617. {
  2618. name: "Macro",
  2619. height: math.unit(50, "feet"),
  2620. default: true
  2621. },
  2622. {
  2623. name: "Megamacro",
  2624. height: math.unit(10, "miles")
  2625. },
  2626. {
  2627. name: "Gigamacro",
  2628. height: math.unit(5, "earths")
  2629. },
  2630. ]
  2631. ))
  2632. characterMakers.push(() => makeCharacter(
  2633. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2634. {
  2635. front: {
  2636. height: math.unit(7, "feet"),
  2637. weight: math.unit(90, "kg"),
  2638. name: "Front",
  2639. image: {
  2640. source: "./media/characters/kurrikage/front.svg",
  2641. extra: 1,
  2642. bottom: 0.035
  2643. }
  2644. },
  2645. back: {
  2646. height: math.unit(7, "feet"),
  2647. weight: math.unit(90, "lb"),
  2648. name: "Back",
  2649. image: {
  2650. source: "./media/characters/kurrikage/back.svg"
  2651. }
  2652. },
  2653. paw: {
  2654. height: math.unit(1.5, "feet"),
  2655. name: "Paw",
  2656. image: {
  2657. source: "./media/characters/kurrikage/paw.svg"
  2658. }
  2659. },
  2660. staff: {
  2661. height: math.unit(6.7, "feet"),
  2662. name: "Staff",
  2663. image: {
  2664. source: "./media/characters/kurrikage/staff.svg"
  2665. }
  2666. },
  2667. peek: {
  2668. height: math.unit(1.05, "feet"),
  2669. name: "Peeking",
  2670. image: {
  2671. source: "./media/characters/kurrikage/peek.svg",
  2672. bottom: 0.08
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(12, "feet"),
  2680. default: true
  2681. },
  2682. {
  2683. name: "Big",
  2684. height: math.unit(20, "feet")
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(500, "feet")
  2689. },
  2690. {
  2691. name: "Megamacro",
  2692. height: math.unit(20, "miles")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(6, "feet"),
  2701. weight: math.unit(75, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/shingo/front.svg",
  2705. extra: 706/681,
  2706. bottom: 11/717
  2707. }
  2708. },
  2709. frontAlt: {
  2710. height: math.unit(6, "feet"),
  2711. weight: math.unit(75, "kg"),
  2712. name: "Front (Alt)",
  2713. image: {
  2714. source: "./media/characters/shingo/front-alt.svg",
  2715. extra: 3511 / 3338,
  2716. bottom: 0.005
  2717. }
  2718. },
  2719. paw: {
  2720. height: math.unit(1, "feet"),
  2721. name: "Paw",
  2722. image: {
  2723. source: "./media/characters/shingo/paw.svg"
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Micro",
  2730. height: math.unit(4, "inches")
  2731. },
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(6, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(108, "feet")
  2740. },
  2741. {
  2742. name: "Macro+",
  2743. height: math.unit(1500, "feet")
  2744. },
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2749. {
  2750. side: {
  2751. height: math.unit(6, "feet"),
  2752. weight: math.unit(75, "kg"),
  2753. name: "Side",
  2754. image: {
  2755. source: "./media/characters/aigey/side.svg"
  2756. }
  2757. },
  2758. },
  2759. [
  2760. {
  2761. name: "Macro",
  2762. height: math.unit(200, "feet"),
  2763. default: true
  2764. },
  2765. {
  2766. name: "Megamacro",
  2767. height: math.unit(100, "miles")
  2768. },
  2769. ]
  2770. )
  2771. )
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2774. {
  2775. front: {
  2776. height: math.unit(5 + 5 / 12, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/natasha/front.svg",
  2781. extra: 859 / 824,
  2782. bottom: 23 / 879.6
  2783. }
  2784. },
  2785. frontNsfw: {
  2786. height: math.unit(5 + 5 / 12, "feet"),
  2787. weight: math.unit(75, "kg"),
  2788. name: "Front (NSFW)",
  2789. image: {
  2790. source: "./media/characters/natasha/front-nsfw.svg",
  2791. extra: 859 / 824,
  2792. bottom: 23 / 879.6
  2793. }
  2794. },
  2795. frontErect: {
  2796. height: math.unit(5 + 5 / 12, "feet"),
  2797. weight: math.unit(75, "kg"),
  2798. name: "Front (Erect)",
  2799. image: {
  2800. source: "./media/characters/natasha/front-erect.svg",
  2801. extra: 859 / 824,
  2802. bottom: 23 / 879.6
  2803. }
  2804. },
  2805. back: {
  2806. height: math.unit(5 + 5 / 12, "feet"),
  2807. weight: math.unit(75, "kg"),
  2808. name: "Back",
  2809. image: {
  2810. source: "./media/characters/natasha/back.svg",
  2811. extra: 887.9 / 852.6,
  2812. bottom: 9.7 / 896.4
  2813. }
  2814. },
  2815. backAlt: {
  2816. height: math.unit(5 + 5 / 12, "feet"),
  2817. weight: math.unit(75, "kg"),
  2818. name: "Back (Alt)",
  2819. image: {
  2820. source: "./media/characters/natasha/back-alt.svg",
  2821. extra: 1236.7 / 1192,
  2822. bottom: 22.3 / 1258.2
  2823. }
  2824. },
  2825. dick: {
  2826. height: math.unit(1.772, "feet"),
  2827. name: "Dick",
  2828. image: {
  2829. source: "./media/characters/natasha/dick.svg"
  2830. }
  2831. },
  2832. paw: {
  2833. height: math.unit(0.250, "meters"),
  2834. name: "Paw",
  2835. image: {
  2836. source: "./media/characters/natasha/paw.svg"
  2837. }
  2838. },
  2839. },
  2840. [
  2841. {
  2842. name: "Normal",
  2843. height: math.unit(5 + 5 / 12, "feet")
  2844. },
  2845. {
  2846. name: "Large",
  2847. height: math.unit(12, "feet")
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(100, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro+",
  2856. height: math.unit(260, "feet")
  2857. },
  2858. {
  2859. name: "Macro++",
  2860. height: math.unit(1, "mile")
  2861. },
  2862. ]
  2863. ))
  2864. characterMakers.push(() => makeCharacter(
  2865. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2866. {
  2867. front: {
  2868. height: math.unit(6, "feet"),
  2869. weight: math.unit(75, "kg"),
  2870. name: "Front",
  2871. image: {
  2872. source: "./media/characters/malik/front.svg"
  2873. }
  2874. },
  2875. side: {
  2876. height: math.unit(6, "feet"),
  2877. weight: math.unit(75, "kg"),
  2878. name: "Side",
  2879. image: {
  2880. source: "./media/characters/malik/side.svg",
  2881. extra: 1.1539
  2882. }
  2883. },
  2884. back: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Back",
  2888. image: {
  2889. source: "./media/characters/malik/back.svg"
  2890. }
  2891. },
  2892. },
  2893. [
  2894. {
  2895. name: "Macro",
  2896. height: math.unit(156, "feet"),
  2897. default: true
  2898. },
  2899. {
  2900. name: "Macro+",
  2901. height: math.unit(1188, "feet")
  2902. },
  2903. ]
  2904. ))
  2905. characterMakers.push(() => makeCharacter(
  2906. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2907. {
  2908. front: {
  2909. height: math.unit(6, "feet"),
  2910. weight: math.unit(75, "kg"),
  2911. name: "Front",
  2912. image: {
  2913. source: "./media/characters/sefer/front.svg",
  2914. extra: 848 / 659,
  2915. bottom: 28.3 / 876.442
  2916. }
  2917. },
  2918. back: {
  2919. height: math.unit(6, "feet"),
  2920. weight: math.unit(75, "kg"),
  2921. name: "Back",
  2922. image: {
  2923. source: "./media/characters/sefer/back.svg",
  2924. extra: 864 / 695,
  2925. bottom: 10 / 871
  2926. }
  2927. },
  2928. frontDressed: {
  2929. height: math.unit(6, "feet"),
  2930. weight: math.unit(75, "kg"),
  2931. name: "Front (Dressed)",
  2932. image: {
  2933. source: "./media/characters/sefer/front-dressed.svg",
  2934. extra: 839 / 653,
  2935. bottom: 37.6 / 878
  2936. }
  2937. },
  2938. },
  2939. [
  2940. {
  2941. name: "Normal",
  2942. height: math.unit(6, "feet"),
  2943. default: true
  2944. },
  2945. ]
  2946. ))
  2947. characterMakers.push(() => makeCharacter(
  2948. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2949. {
  2950. body: {
  2951. height: math.unit(2.2428, "meter"),
  2952. weight: math.unit(124.738, "kg"),
  2953. name: "Body",
  2954. image: {
  2955. extra: 1225 / 1050,
  2956. source: "./media/characters/north/front.svg"
  2957. }
  2958. }
  2959. },
  2960. [
  2961. {
  2962. name: "Micro",
  2963. height: math.unit(4, "inches")
  2964. },
  2965. {
  2966. name: "Macro",
  2967. height: math.unit(63, "meters")
  2968. },
  2969. {
  2970. name: "Megamacro",
  2971. height: math.unit(101, "miles"),
  2972. default: true
  2973. }
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2978. {
  2979. angled: {
  2980. height: math.unit(4, "meter"),
  2981. weight: math.unit(150, "kg"),
  2982. name: "Angled",
  2983. image: {
  2984. source: "./media/characters/talan/angled-sfw.svg",
  2985. bottom: 29 / 3734
  2986. }
  2987. },
  2988. angledNsfw: {
  2989. height: math.unit(4, "meter"),
  2990. weight: math.unit(150, "kg"),
  2991. name: "Angled (NSFW)",
  2992. image: {
  2993. source: "./media/characters/talan/angled-nsfw.svg",
  2994. bottom: 29 / 3734
  2995. }
  2996. },
  2997. frontNsfw: {
  2998. height: math.unit(4, "meter"),
  2999. weight: math.unit(150, "kg"),
  3000. name: "Front (NSFW)",
  3001. image: {
  3002. source: "./media/characters/talan/front-nsfw.svg",
  3003. bottom: 29 / 3734
  3004. }
  3005. },
  3006. sideNsfw: {
  3007. height: math.unit(4, "meter"),
  3008. weight: math.unit(150, "kg"),
  3009. name: "Side (NSFW)",
  3010. image: {
  3011. source: "./media/characters/talan/side-nsfw.svg",
  3012. bottom: 29 / 3734
  3013. }
  3014. },
  3015. back: {
  3016. height: math.unit(4, "meter"),
  3017. weight: math.unit(150, "kg"),
  3018. name: "Back",
  3019. image: {
  3020. source: "./media/characters/talan/back.svg"
  3021. }
  3022. },
  3023. dickBottom: {
  3024. height: math.unit(0.621, "meter"),
  3025. name: "Dick (Bottom)",
  3026. image: {
  3027. source: "./media/characters/talan/dick-bottom.svg"
  3028. }
  3029. },
  3030. dickTop: {
  3031. height: math.unit(0.621, "meter"),
  3032. name: "Dick (Top)",
  3033. image: {
  3034. source: "./media/characters/talan/dick-top.svg"
  3035. }
  3036. },
  3037. dickSide: {
  3038. height: math.unit(0.305, "meter"),
  3039. name: "Dick (Side)",
  3040. image: {
  3041. source: "./media/characters/talan/dick-side.svg"
  3042. }
  3043. },
  3044. dickFront: {
  3045. height: math.unit(0.305, "meter"),
  3046. name: "Dick (Front)",
  3047. image: {
  3048. source: "./media/characters/talan/dick-front.svg"
  3049. }
  3050. },
  3051. },
  3052. [
  3053. {
  3054. name: "Normal",
  3055. height: math.unit(4, "meters")
  3056. },
  3057. {
  3058. name: "Macro",
  3059. height: math.unit(100, "meters")
  3060. },
  3061. {
  3062. name: "Megamacro",
  3063. height: math.unit(2, "miles"),
  3064. default: true
  3065. },
  3066. {
  3067. name: "Gigamacro",
  3068. height: math.unit(5000, "miles")
  3069. },
  3070. {
  3071. name: "Teramacro",
  3072. height: math.unit(100, "parsecs")
  3073. }
  3074. ]
  3075. ))
  3076. characterMakers.push(() => makeCharacter(
  3077. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3078. {
  3079. front: {
  3080. height: math.unit(2, "meter"),
  3081. weight: math.unit(90, "kg"),
  3082. name: "Front",
  3083. image: {
  3084. source: "./media/characters/gael'rathus/front.svg"
  3085. }
  3086. },
  3087. frontAlt: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(90, "kg"),
  3090. name: "Front (alt)",
  3091. image: {
  3092. source: "./media/characters/gael'rathus/front-alt.svg"
  3093. }
  3094. },
  3095. frontAlt2: {
  3096. height: math.unit(2, "meter"),
  3097. weight: math.unit(90, "kg"),
  3098. name: "Front (alt 2)",
  3099. image: {
  3100. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3101. }
  3102. }
  3103. },
  3104. [
  3105. {
  3106. name: "Normal",
  3107. height: math.unit(9, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Large",
  3112. height: math.unit(25, "feet")
  3113. },
  3114. {
  3115. name: "Macro",
  3116. height: math.unit(0.25, "miles")
  3117. },
  3118. {
  3119. name: "Megamacro",
  3120. height: math.unit(10, "miles")
  3121. }
  3122. ]
  3123. ))
  3124. characterMakers.push(() => makeCharacter(
  3125. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3126. {
  3127. side: {
  3128. height: math.unit(2, "meter"),
  3129. weight: math.unit(140, "kg"),
  3130. name: "Side",
  3131. image: {
  3132. source: "./media/characters/sosha/side.svg",
  3133. bottom: 0.042
  3134. }
  3135. },
  3136. },
  3137. [
  3138. {
  3139. name: "Normal",
  3140. height: math.unit(12, "feet"),
  3141. default: true
  3142. }
  3143. ]
  3144. ))
  3145. characterMakers.push(() => makeCharacter(
  3146. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3147. {
  3148. side: {
  3149. height: math.unit(5 + 5 / 12, "feet"),
  3150. weight: math.unit(170, "kg"),
  3151. name: "Side",
  3152. image: {
  3153. source: "./media/characters/runnola/side.svg",
  3154. extra: 741 / 448,
  3155. bottom: 0.05
  3156. }
  3157. },
  3158. },
  3159. [
  3160. {
  3161. name: "Small",
  3162. height: math.unit(3, "feet")
  3163. },
  3164. {
  3165. name: "Normal",
  3166. height: math.unit(5 + 5 / 12, "feet"),
  3167. default: true
  3168. },
  3169. {
  3170. name: "Big",
  3171. height: math.unit(10, "feet")
  3172. },
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3177. {
  3178. front: {
  3179. height: math.unit(2, "meter"),
  3180. weight: math.unit(50, "kg"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/kurribird/front.svg",
  3184. bottom: 0.015
  3185. }
  3186. },
  3187. frontAlt: {
  3188. height: math.unit(1.5, "meter"),
  3189. weight: math.unit(50, "kg"),
  3190. name: "Front (Alt)",
  3191. image: {
  3192. source: "./media/characters/kurribird/front-alt.svg",
  3193. extra: 1.45
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(7, "feet")
  3201. },
  3202. {
  3203. name: "Big",
  3204. height: math.unit(12, "feet"),
  3205. default: true
  3206. },
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(1500, "feet")
  3210. },
  3211. {
  3212. name: "Megamacro",
  3213. height: math.unit(2, "miles")
  3214. }
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(2, "meter"),
  3222. weight: math.unit(80, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/elbial/front.svg",
  3226. extra: 1643 / 1556,
  3227. bottom: 60.2 / 1696
  3228. }
  3229. },
  3230. side: {
  3231. height: math.unit(2, "meter"),
  3232. weight: math.unit(80, "kg"),
  3233. name: "Side",
  3234. image: {
  3235. source: "./media/characters/elbial/side.svg",
  3236. extra: 1630 / 1565,
  3237. bottom: 71.5 / 1697
  3238. }
  3239. },
  3240. back: {
  3241. height: math.unit(2, "meter"),
  3242. weight: math.unit(80, "kg"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/elbial/back.svg",
  3246. extra: 1668 / 1595,
  3247. bottom: 5.6 / 1672
  3248. }
  3249. },
  3250. frontDressed: {
  3251. height: math.unit(2, "meter"),
  3252. weight: math.unit(80, "kg"),
  3253. name: "Front (Dressed)",
  3254. image: {
  3255. source: "./media/characters/elbial/front-dressed.svg",
  3256. extra: 1653 / 1584,
  3257. bottom: 57 / 1708
  3258. }
  3259. },
  3260. genitals: {
  3261. height: math.unit(2 / 3.367, "meter"),
  3262. name: "Genitals",
  3263. image: {
  3264. source: "./media/characters/elbial/genitals.svg"
  3265. }
  3266. },
  3267. },
  3268. [
  3269. {
  3270. name: "Large",
  3271. height: math.unit(100, "feet")
  3272. },
  3273. {
  3274. name: "Macro",
  3275. height: math.unit(500, "feet"),
  3276. default: true
  3277. },
  3278. {
  3279. name: "Megamacro",
  3280. height: math.unit(10, "miles")
  3281. },
  3282. {
  3283. name: "Gigamacro",
  3284. height: math.unit(25000, "miles")
  3285. },
  3286. {
  3287. name: "Full-Size",
  3288. height: math.unit(8000000, "gigaparsecs")
  3289. }
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3294. {
  3295. front: {
  3296. height: math.unit(2, "meter"),
  3297. weight: math.unit(60, "kg"),
  3298. name: "Front",
  3299. image: {
  3300. source: "./media/characters/noah/front.svg"
  3301. }
  3302. },
  3303. talons: {
  3304. height: math.unit(0.315, "meter"),
  3305. name: "Talons",
  3306. image: {
  3307. source: "./media/characters/noah/talons.svg"
  3308. }
  3309. }
  3310. },
  3311. [
  3312. {
  3313. name: "Large",
  3314. height: math.unit(50, "feet")
  3315. },
  3316. {
  3317. name: "Macro",
  3318. height: math.unit(750, "feet"),
  3319. default: true
  3320. },
  3321. {
  3322. name: "Megamacro",
  3323. height: math.unit(50, "miles")
  3324. },
  3325. {
  3326. name: "Gigamacro",
  3327. height: math.unit(100000, "miles")
  3328. },
  3329. {
  3330. name: "Full-Size",
  3331. height: math.unit(3000000000, "miles")
  3332. }
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(80, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/natalya/front.svg"
  3344. }
  3345. },
  3346. back: {
  3347. height: math.unit(2, "meter"),
  3348. weight: math.unit(80, "kg"),
  3349. name: "Back",
  3350. image: {
  3351. source: "./media/characters/natalya/back.svg"
  3352. }
  3353. }
  3354. },
  3355. [
  3356. {
  3357. name: "Normal",
  3358. height: math.unit(150, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Megamacro",
  3363. height: math.unit(5, "miles")
  3364. },
  3365. {
  3366. name: "Full-Size",
  3367. height: math.unit(600, "kiloparsecs")
  3368. }
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(50, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/erestrebah/front.svg",
  3380. extra: 208 / 193,
  3381. bottom: 0.055
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(50, "kg"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/erestrebah/back.svg",
  3390. extra: 1.3
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(10, "feet")
  3398. },
  3399. {
  3400. name: "Large",
  3401. height: math.unit(50, "feet"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(300, "feet")
  3407. },
  3408. {
  3409. name: "Macro+",
  3410. height: math.unit(750, "feet")
  3411. },
  3412. {
  3413. name: "Megamacro",
  3414. height: math.unit(3, "miles")
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3420. {
  3421. front: {
  3422. height: math.unit(2, "meter"),
  3423. weight: math.unit(80, "kg"),
  3424. name: "Front",
  3425. image: {
  3426. source: "./media/characters/jennifer/front.svg",
  3427. bottom: 0.11,
  3428. extra: 1.16
  3429. }
  3430. },
  3431. frontAlt: {
  3432. height: math.unit(2, "meter"),
  3433. weight: math.unit(80, "kg"),
  3434. name: "Front (Alt)",
  3435. image: {
  3436. source: "./media/characters/jennifer/front-alt.svg"
  3437. }
  3438. }
  3439. },
  3440. [
  3441. {
  3442. name: "Canon Height",
  3443. height: math.unit(120, "feet"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Macro+",
  3448. height: math.unit(300, "feet")
  3449. },
  3450. {
  3451. name: "Megamacro",
  3452. height: math.unit(20000, "feet")
  3453. }
  3454. ]
  3455. ))
  3456. characterMakers.push(() => makeCharacter(
  3457. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3458. {
  3459. front: {
  3460. height: math.unit(2, "meter"),
  3461. weight: math.unit(50, "kg"),
  3462. name: "Front",
  3463. image: {
  3464. source: "./media/characters/kalista/front.svg",
  3465. extra: 1947 / 1700,
  3466. bottom: 76.6 / 1412.98
  3467. }
  3468. },
  3469. back: {
  3470. height: math.unit(2, "meter"),
  3471. weight: math.unit(50, "kg"),
  3472. name: "Back",
  3473. image: {
  3474. source: "./media/characters/kalista/back.svg",
  3475. extra: 1366 / 1156,
  3476. bottom: 33.9 / 1362.78
  3477. }
  3478. }
  3479. },
  3480. [
  3481. {
  3482. name: "Uncomfortably Small",
  3483. height: math.unit(10, "feet")
  3484. },
  3485. {
  3486. name: "Small",
  3487. height: math.unit(30, "feet")
  3488. },
  3489. {
  3490. name: "Macro",
  3491. height: math.unit(100, "feet"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Macro+",
  3496. height: math.unit(2000, "feet")
  3497. },
  3498. {
  3499. name: "True Form",
  3500. height: math.unit(8924, "miles")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(120, "kg"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/ggv/front.svg"
  3513. }
  3514. },
  3515. side: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(120, "kg"),
  3518. name: "Side",
  3519. image: {
  3520. source: "./media/characters/ggv/side.svg"
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Extremely Puny",
  3527. height: math.unit(9 + 5 / 12, "feet")
  3528. },
  3529. {
  3530. name: "Horribly Small",
  3531. height: math.unit(47.7, "miles"),
  3532. default: true
  3533. },
  3534. {
  3535. name: "Reasonably Sized",
  3536. height: math.unit(25000, "parsecs")
  3537. },
  3538. {
  3539. name: "Slightly Uncompressed",
  3540. height: math.unit(7.77e31, "parsecs")
  3541. },
  3542. {
  3543. name: "Omniversal",
  3544. height: math.unit(1e300, "meters")
  3545. },
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(75, "lb"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/napalm/front.svg"
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(75, "lb"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/napalm/back.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Standard",
  3571. height: math.unit(55, "feet"),
  3572. default: true
  3573. }
  3574. ]
  3575. ))
  3576. characterMakers.push(() => makeCharacter(
  3577. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3578. {
  3579. front: {
  3580. height: math.unit(7 + 5 / 6, "feet"),
  3581. weight: math.unit(325, "lb"),
  3582. name: "Front",
  3583. image: {
  3584. source: "./media/characters/asana/front.svg",
  3585. extra: 1133 / 1060,
  3586. bottom: 15.2 / 1148.6
  3587. }
  3588. },
  3589. back: {
  3590. height: math.unit(7 + 5 / 6, "feet"),
  3591. weight: math.unit(325, "lb"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/asana/back.svg",
  3595. extra: 1114 / 1043,
  3596. bottom: 5 / 1120
  3597. }
  3598. },
  3599. dressedDark: {
  3600. height: math.unit(7 + 5 / 6, "feet"),
  3601. weight: math.unit(325, "lb"),
  3602. name: "Dressed (Dark)",
  3603. image: {
  3604. source: "./media/characters/asana/dressed-dark.svg",
  3605. extra: 1133 / 1060,
  3606. bottom: 15.2 / 1148.6
  3607. }
  3608. },
  3609. dressedLight: {
  3610. height: math.unit(7 + 5 / 6, "feet"),
  3611. weight: math.unit(325, "lb"),
  3612. name: "Dressed (Light)",
  3613. image: {
  3614. source: "./media/characters/asana/dressed-light.svg",
  3615. extra: 1133 / 1060,
  3616. bottom: 15.2 / 1148.6
  3617. }
  3618. },
  3619. },
  3620. [
  3621. {
  3622. name: "Standard",
  3623. height: math.unit(7 + 5 / 6, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Large",
  3628. height: math.unit(10, "meters")
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(2500, "meters")
  3633. },
  3634. {
  3635. name: "Megamacro",
  3636. height: math.unit(5e6, "meters")
  3637. },
  3638. {
  3639. name: "Examacro",
  3640. height: math.unit(5e12, "lightyears")
  3641. },
  3642. {
  3643. name: "Max Size",
  3644. height: math.unit(1e31, "lightyears")
  3645. }
  3646. ]
  3647. ))
  3648. characterMakers.push(() => makeCharacter(
  3649. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3650. {
  3651. front: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(60, "kg"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/ebony/front.svg",
  3657. bottom: 0.03,
  3658. extra: 1045 / 810 + 0.03
  3659. }
  3660. },
  3661. side: {
  3662. height: math.unit(2, "meter"),
  3663. weight: math.unit(60, "kg"),
  3664. name: "Side",
  3665. image: {
  3666. source: "./media/characters/ebony/side.svg",
  3667. bottom: 0.03,
  3668. extra: 1045 / 810 + 0.03
  3669. }
  3670. },
  3671. back: {
  3672. height: math.unit(2, "meter"),
  3673. weight: math.unit(60, "kg"),
  3674. name: "Back",
  3675. image: {
  3676. source: "./media/characters/ebony/back.svg",
  3677. bottom: 0.01,
  3678. extra: 1045 / 810 + 0.01
  3679. }
  3680. },
  3681. },
  3682. [
  3683. // TODO check why I did this lol
  3684. {
  3685. name: "Standard",
  3686. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3687. default: true
  3688. },
  3689. {
  3690. name: "Macro",
  3691. height: math.unit(200, "feet")
  3692. },
  3693. {
  3694. name: "Gigamacro",
  3695. height: math.unit(13000, "km")
  3696. }
  3697. ]
  3698. ))
  3699. characterMakers.push(() => makeCharacter(
  3700. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3701. {
  3702. front: {
  3703. height: math.unit(6, "feet"),
  3704. weight: math.unit(175, "lb"),
  3705. name: "Front",
  3706. image: {
  3707. source: "./media/characters/mountain/front.svg",
  3708. extra: 972 / 955,
  3709. bottom: 64 / 1036.6
  3710. }
  3711. },
  3712. back: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(175, "lb"),
  3715. name: "Back",
  3716. image: {
  3717. source: "./media/characters/mountain/back.svg",
  3718. extra: 970 / 950,
  3719. bottom: 28.25 / 999
  3720. }
  3721. },
  3722. },
  3723. [
  3724. {
  3725. name: "Large",
  3726. height: math.unit(20, "meters")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(300, "meters")
  3731. },
  3732. {
  3733. name: "Gigamacro",
  3734. height: math.unit(10000, "km"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Examacro",
  3739. height: math.unit(10e9, "lightyears")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(8, "feet"),
  3748. weight: math.unit(500, "lb"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/rick/front.svg"
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Normal",
  3758. height: math.unit(8, "feet"),
  3759. default: true
  3760. },
  3761. {
  3762. name: "Macro",
  3763. height: math.unit(5, "km")
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3769. {
  3770. front: {
  3771. height: math.unit(8, "feet"),
  3772. weight: math.unit(120, "lb"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/ona/front.svg"
  3776. }
  3777. },
  3778. frontAlt: {
  3779. height: math.unit(8, "feet"),
  3780. weight: math.unit(120, "lb"),
  3781. name: "Front (Alt)",
  3782. image: {
  3783. source: "./media/characters/ona/front-alt.svg"
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(8, "feet"),
  3788. weight: math.unit(120, "lb"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/ona/back.svg"
  3792. }
  3793. },
  3794. foot: {
  3795. height: math.unit(1.1, "feet"),
  3796. name: "Foot",
  3797. image: {
  3798. source: "./media/characters/ona/foot.svg"
  3799. }
  3800. }
  3801. },
  3802. [
  3803. {
  3804. name: "Megamacro",
  3805. height: math.unit(70, "km"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Gigamacro",
  3810. height: math.unit(681818, "miles")
  3811. },
  3812. {
  3813. name: "Examacro",
  3814. height: math.unit(3800000, "lightyears")
  3815. },
  3816. ]
  3817. ))
  3818. characterMakers.push(() => makeCharacter(
  3819. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3820. {
  3821. front: {
  3822. height: math.unit(12, "feet"),
  3823. weight: math.unit(3000, "lb"),
  3824. name: "Front",
  3825. image: {
  3826. source: "./media/characters/mech/front.svg",
  3827. extra: 2900 / 2770,
  3828. bottom: 110 / 3010
  3829. }
  3830. },
  3831. back: {
  3832. height: math.unit(12, "feet"),
  3833. weight: math.unit(3000, "lb"),
  3834. name: "Back",
  3835. image: {
  3836. source: "./media/characters/mech/back.svg",
  3837. extra: 3011 / 2890,
  3838. bottom: 94 / 3105
  3839. }
  3840. },
  3841. maw: {
  3842. height: math.unit(3.07, "feet"),
  3843. name: "Maw",
  3844. image: {
  3845. source: "./media/characters/mech/maw.svg"
  3846. }
  3847. },
  3848. head: {
  3849. height: math.unit(2.82, "feet"),
  3850. name: "Head",
  3851. image: {
  3852. source: "./media/characters/mech/head.svg"
  3853. }
  3854. },
  3855. dick: {
  3856. height: math.unit(1.43, "feet"),
  3857. name: "Dick",
  3858. image: {
  3859. source: "./media/characters/mech/dick.svg"
  3860. }
  3861. },
  3862. },
  3863. [
  3864. {
  3865. name: "Normal",
  3866. height: math.unit(12, "feet")
  3867. },
  3868. {
  3869. name: "Macro",
  3870. height: math.unit(300, "feet"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Macro+",
  3875. height: math.unit(1500, "feet")
  3876. },
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(1.3, "meter"),
  3884. weight: math.unit(30, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/gregory/front.svg",
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Normal",
  3894. height: math.unit(1.3, "meter"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Macro",
  3899. height: math.unit(20, "meter")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(2.8, "meter"),
  3908. weight: math.unit(200, "kg"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/elory/front.svg",
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(2.8, "meter"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Macro",
  3923. height: math.unit(38, "meter")
  3924. }
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3929. {
  3930. front: {
  3931. height: math.unit(470, "feet"),
  3932. weight: math.unit(924, "tons"),
  3933. name: "Front",
  3934. image: {
  3935. source: "./media/characters/angelpatamon/front.svg",
  3936. }
  3937. }
  3938. },
  3939. [
  3940. {
  3941. name: "Normal",
  3942. height: math.unit(470, "feet"),
  3943. default: true
  3944. },
  3945. {
  3946. name: "Deity Size I",
  3947. height: math.unit(28651.2, "km")
  3948. },
  3949. {
  3950. name: "Deity Size II",
  3951. height: math.unit(171907.2, "km")
  3952. }
  3953. ]
  3954. ))
  3955. characterMakers.push(() => makeCharacter(
  3956. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3957. {
  3958. side: {
  3959. height: math.unit(7.2, "meter"),
  3960. weight: math.unit(8.2, "tons"),
  3961. name: "Side",
  3962. image: {
  3963. source: "./media/characters/cryae/side.svg",
  3964. extra: 3500 / 1500
  3965. }
  3966. }
  3967. },
  3968. [
  3969. {
  3970. name: "Normal",
  3971. height: math.unit(7.2, "meter"),
  3972. default: true
  3973. }
  3974. ]
  3975. ))
  3976. characterMakers.push(() => makeCharacter(
  3977. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3978. {
  3979. front: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(175, "lb"),
  3982. name: "Front",
  3983. image: {
  3984. source: "./media/characters/xera/front.svg",
  3985. extra: 2377 / 1972,
  3986. bottom: 75.5 / 2452
  3987. }
  3988. },
  3989. side: {
  3990. height: math.unit(6, "feet"),
  3991. weight: math.unit(175, "lb"),
  3992. name: "Side",
  3993. image: {
  3994. source: "./media/characters/xera/side.svg",
  3995. extra: 2345 / 2019,
  3996. bottom: 39.7 / 2384
  3997. }
  3998. },
  3999. back: {
  4000. height: math.unit(6, "feet"),
  4001. weight: math.unit(175, "lb"),
  4002. name: "Back",
  4003. image: {
  4004. source: "./media/characters/xera/back.svg",
  4005. extra: 2095 / 1984,
  4006. bottom: 67 / 2166
  4007. }
  4008. },
  4009. },
  4010. [
  4011. {
  4012. name: "Small",
  4013. height: math.unit(10, "feet")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(500, "meters"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Macro+",
  4022. height: math.unit(10, "km")
  4023. },
  4024. {
  4025. name: "Gigamacro",
  4026. height: math.unit(25000, "km")
  4027. },
  4028. {
  4029. name: "Teramacro",
  4030. height: math.unit(3e6, "km")
  4031. }
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(6, "feet"),
  4039. weight: math.unit(175, "lb"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/nebula/front.svg",
  4043. extra: 2566 / 2362,
  4044. bottom: 81 / 2644
  4045. }
  4046. }
  4047. },
  4048. [
  4049. {
  4050. name: "Small",
  4051. height: math.unit(4.5, "meters")
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(1500, "meters"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "Megamacro",
  4060. height: math.unit(150, "km")
  4061. },
  4062. {
  4063. name: "Gigamacro",
  4064. height: math.unit(27000, "km")
  4065. }
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4070. {
  4071. front: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(225, "lb"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/abysgar/front.svg"
  4077. }
  4078. }
  4079. },
  4080. [
  4081. {
  4082. name: "Small",
  4083. height: math.unit(4.5, "meters")
  4084. },
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(1250, "meters"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Megamacro",
  4092. height: math.unit(125, "km")
  4093. },
  4094. {
  4095. name: "Gigamacro",
  4096. height: math.unit(26000, "km")
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(180, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/yakuz/front.svg"
  4109. }
  4110. }
  4111. },
  4112. [
  4113. {
  4114. name: "Small",
  4115. height: math.unit(5, "meters")
  4116. },
  4117. {
  4118. name: "Macro",
  4119. height: math.unit(1500, "meters"),
  4120. default: true
  4121. },
  4122. {
  4123. name: "Megamacro",
  4124. height: math.unit(200, "km")
  4125. },
  4126. {
  4127. name: "Gigamacro",
  4128. height: math.unit(100000, "km")
  4129. }
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4134. {
  4135. front: {
  4136. height: math.unit(6, "feet"),
  4137. weight: math.unit(175, "lb"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/mirova/front.svg",
  4141. extra: 3334 / 3071,
  4142. bottom: 42 / 3375.6
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Small",
  4149. height: math.unit(5, "meters")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(900, "meters"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Megamacro",
  4158. height: math.unit(135, "km")
  4159. },
  4160. {
  4161. name: "Gigamacro",
  4162. height: math.unit(20000, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4168. {
  4169. side: {
  4170. height: math.unit(28.35, "feet"),
  4171. weight: math.unit(99.75, "tons"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/asana-mech/side.svg",
  4175. extra: 923 / 699,
  4176. bottom: 50 / 975
  4177. }
  4178. },
  4179. chaingun: {
  4180. height: math.unit(7, "feet"),
  4181. weight: math.unit(2400, "lb"),
  4182. name: "Chaingun",
  4183. image: {
  4184. source: "./media/characters/asana-mech/chaingun.svg"
  4185. }
  4186. },
  4187. laser: {
  4188. height: math.unit(7.12, "feet"),
  4189. weight: math.unit(2000, "lb"),
  4190. name: "Laser",
  4191. image: {
  4192. source: "./media/characters/asana-mech/laser.svg"
  4193. }
  4194. },
  4195. },
  4196. [
  4197. {
  4198. name: "Normal",
  4199. height: math.unit(28.35, "feet"),
  4200. default: true
  4201. },
  4202. {
  4203. name: "Macro",
  4204. height: math.unit(2500, "feet")
  4205. },
  4206. {
  4207. name: "Megamacro",
  4208. height: math.unit(25, "miles")
  4209. },
  4210. {
  4211. name: "Examacro",
  4212. height: math.unit(6e8, "lightyears")
  4213. },
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4218. {
  4219. front: {
  4220. height: math.unit(5, "meters"),
  4221. weight: math.unit(1000, "kg"),
  4222. name: "Front",
  4223. image: {
  4224. source: "./media/characters/asche/front.svg",
  4225. extra: 1258 / 1190,
  4226. bottom: 47 / 1305
  4227. }
  4228. },
  4229. frontUnderwear: {
  4230. height: math.unit(5, "meters"),
  4231. weight: math.unit(1000, "kg"),
  4232. name: "Front (Underwear)",
  4233. image: {
  4234. source: "./media/characters/asche/front-underwear.svg",
  4235. extra: 1258 / 1190,
  4236. bottom: 47 / 1305
  4237. }
  4238. },
  4239. frontDressed: {
  4240. height: math.unit(5, "meters"),
  4241. weight: math.unit(1000, "kg"),
  4242. name: "Front (Dressed)",
  4243. image: {
  4244. source: "./media/characters/asche/front-dressed.svg",
  4245. extra: 1258 / 1190,
  4246. bottom: 47 / 1305
  4247. }
  4248. },
  4249. frontArmor: {
  4250. height: math.unit(5, "meters"),
  4251. weight: math.unit(1000, "kg"),
  4252. name: "Front (Armored)",
  4253. image: {
  4254. source: "./media/characters/asche/front-armored.svg",
  4255. extra: 1374 / 1308,
  4256. bottom: 23 / 1397
  4257. }
  4258. },
  4259. mp724: {
  4260. height: math.unit(0.96, "meters"),
  4261. weight: math.unit(38, "kg"),
  4262. name: "H&K MP724",
  4263. image: {
  4264. source: "./media/characters/asche/h&k-mp724.svg"
  4265. }
  4266. },
  4267. side: {
  4268. height: math.unit(5, "meters"),
  4269. weight: math.unit(1000, "kg"),
  4270. name: "Side",
  4271. image: {
  4272. source: "./media/characters/asche/side.svg",
  4273. extra: 1717 / 1609,
  4274. bottom: 0.005
  4275. }
  4276. },
  4277. back: {
  4278. height: math.unit(5, "meters"),
  4279. weight: math.unit(1000, "kg"),
  4280. name: "Back",
  4281. image: {
  4282. source: "./media/characters/asche/back.svg",
  4283. extra: 1570 / 1501
  4284. }
  4285. },
  4286. },
  4287. [
  4288. {
  4289. name: "DEFCON 5",
  4290. height: math.unit(5, "meters")
  4291. },
  4292. {
  4293. name: "DEFCON 4",
  4294. height: math.unit(500, "meters"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "DEFCON 3",
  4299. height: math.unit(5, "km")
  4300. },
  4301. {
  4302. name: "DEFCON 2",
  4303. height: math.unit(500, "km")
  4304. },
  4305. {
  4306. name: "DEFCON 1",
  4307. height: math.unit(500000, "km")
  4308. },
  4309. {
  4310. name: "DEFCON 0",
  4311. height: math.unit(3, "gigaparsecs")
  4312. },
  4313. ]
  4314. ))
  4315. characterMakers.push(() => makeCharacter(
  4316. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4317. {
  4318. front: {
  4319. height: math.unit(2, "meters"),
  4320. weight: math.unit(76, "kg"),
  4321. name: "Front",
  4322. image: {
  4323. source: "./media/characters/gale/front.svg"
  4324. }
  4325. },
  4326. frontAlt1: {
  4327. height: math.unit(2, "meters"),
  4328. weight: math.unit(76, "kg"),
  4329. name: "Front (Alt 1)",
  4330. image: {
  4331. source: "./media/characters/gale/front-alt-1.svg"
  4332. }
  4333. },
  4334. frontAlt2: {
  4335. height: math.unit(2, "meters"),
  4336. weight: math.unit(76, "kg"),
  4337. name: "Front (Alt 2)",
  4338. image: {
  4339. source: "./media/characters/gale/front-alt-2.svg"
  4340. }
  4341. },
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(7, "feet")
  4347. },
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(150, "feet"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Macro+",
  4355. height: math.unit(300, "feet")
  4356. },
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(2, "meters"),
  4364. weight: math.unit(76, "kg"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/draylen/front.svg"
  4368. }
  4369. }
  4370. },
  4371. [
  4372. {
  4373. name: "Macro",
  4374. height: math.unit(150, "feet"),
  4375. default: true
  4376. }
  4377. ]
  4378. ))
  4379. characterMakers.push(() => makeCharacter(
  4380. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4381. {
  4382. front: {
  4383. height: math.unit(7 + 9 / 12, "feet"),
  4384. weight: math.unit(379, "lbs"),
  4385. name: "Front",
  4386. image: {
  4387. source: "./media/characters/chez/front.svg"
  4388. }
  4389. },
  4390. side: {
  4391. height: math.unit(7 + 9 / 12, "feet"),
  4392. weight: math.unit(379, "lbs"),
  4393. name: "Side",
  4394. image: {
  4395. source: "./media/characters/chez/side.svg"
  4396. }
  4397. }
  4398. },
  4399. [
  4400. {
  4401. name: "Normal",
  4402. height: math.unit(7 + 9 / 12, "feet"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "God King",
  4407. height: math.unit(9750000, "meters")
  4408. }
  4409. ]
  4410. ))
  4411. characterMakers.push(() => makeCharacter(
  4412. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4413. {
  4414. front: {
  4415. height: math.unit(6, "feet"),
  4416. weight: math.unit(275, "lbs"),
  4417. name: "Front",
  4418. image: {
  4419. source: "./media/characters/kaylum/front.svg",
  4420. bottom: 0.01,
  4421. extra: 1166 / 1031
  4422. }
  4423. },
  4424. frontWingless: {
  4425. height: math.unit(6, "feet"),
  4426. weight: math.unit(275, "lbs"),
  4427. name: "Front (Wingless)",
  4428. image: {
  4429. source: "./media/characters/kaylum/front-wingless.svg",
  4430. bottom: 0.01,
  4431. extra: 1117 / 1031
  4432. }
  4433. }
  4434. },
  4435. [
  4436. {
  4437. name: "Normal",
  4438. height: math.unit(3.05, "meters")
  4439. },
  4440. {
  4441. name: "Master",
  4442. height: math.unit(5.5, "meters")
  4443. },
  4444. {
  4445. name: "Rampage",
  4446. height: math.unit(19, "meters")
  4447. },
  4448. {
  4449. name: "Macro Lite",
  4450. height: math.unit(37, "meters")
  4451. },
  4452. {
  4453. name: "Hyper Predator",
  4454. height: math.unit(61, "meters")
  4455. },
  4456. {
  4457. name: "Macro",
  4458. height: math.unit(138, "meters"),
  4459. default: true
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(150, "lbs"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/geta/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Micro",
  4478. height: math.unit(3, "inches"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Normal",
  4483. height: math.unit(5 + 5 / 12, "feet")
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(300, "lbs"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/tyrnn/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Main Height",
  4502. height: math.unit(355, "feet"),
  4503. default: true
  4504. },
  4505. {
  4506. name: "Fave. Height",
  4507. height: math.unit(2400, "feet")
  4508. }
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4513. {
  4514. front: {
  4515. height: math.unit(6, "feet"),
  4516. weight: math.unit(300, "lbs"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/appledectomy/front.svg"
  4520. }
  4521. }
  4522. },
  4523. [
  4524. {
  4525. name: "Macro",
  4526. height: math.unit(2500, "feet")
  4527. },
  4528. {
  4529. name: "Megamacro",
  4530. height: math.unit(50, "miles"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "Gigamacro",
  4535. height: math.unit(5000, "miles")
  4536. },
  4537. {
  4538. name: "Teramacro",
  4539. height: math.unit(250000, "miles")
  4540. },
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4545. {
  4546. front: {
  4547. height: math.unit(6, "feet"),
  4548. weight: math.unit(200, "lbs"),
  4549. name: "Front",
  4550. image: {
  4551. source: "./media/characters/vulpes/front.svg",
  4552. extra: 573 / 543,
  4553. bottom: 0.033
  4554. }
  4555. },
  4556. side: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(200, "lbs"),
  4559. name: "Side",
  4560. image: {
  4561. source: "./media/characters/vulpes/side.svg",
  4562. extra: 577 / 549,
  4563. bottom: 11 / 588
  4564. }
  4565. },
  4566. back: {
  4567. height: math.unit(6, "feet"),
  4568. weight: math.unit(200, "lbs"),
  4569. name: "Back",
  4570. image: {
  4571. source: "./media/characters/vulpes/back.svg",
  4572. extra: 573 / 549,
  4573. bottom: 20 / 593
  4574. }
  4575. },
  4576. feet: {
  4577. height: math.unit(1.276, "feet"),
  4578. name: "Feet",
  4579. image: {
  4580. source: "./media/characters/vulpes/feet.svg"
  4581. }
  4582. },
  4583. maw: {
  4584. height: math.unit(1.18, "feet"),
  4585. name: "Maw",
  4586. image: {
  4587. source: "./media/characters/vulpes/maw.svg"
  4588. }
  4589. },
  4590. },
  4591. [
  4592. {
  4593. name: "Micro",
  4594. height: math.unit(2, "inches")
  4595. },
  4596. {
  4597. name: "Normal",
  4598. height: math.unit(6.3, "feet")
  4599. },
  4600. {
  4601. name: "Macro",
  4602. height: math.unit(850, "feet")
  4603. },
  4604. {
  4605. name: "Megamacro",
  4606. height: math.unit(7500, "feet"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "Gigamacro",
  4611. height: math.unit(570000, "miles")
  4612. }
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4617. {
  4618. front: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(210, "lbs"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/front.svg"
  4624. }
  4625. },
  4626. side: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(210, "lbs"),
  4629. name: "Side",
  4630. image: {
  4631. source: "./media/characters/rain-fallen/side.svg"
  4632. }
  4633. },
  4634. back: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(210, "lbs"),
  4637. name: "Back",
  4638. image: {
  4639. source: "./media/characters/rain-fallen/back.svg"
  4640. }
  4641. },
  4642. feral: {
  4643. height: math.unit(9, "feet"),
  4644. weight: math.unit(700, "lbs"),
  4645. name: "Feral",
  4646. image: {
  4647. source: "./media/characters/rain-fallen/feral.svg"
  4648. }
  4649. },
  4650. },
  4651. [
  4652. {
  4653. name: "Meddling with Mortals",
  4654. height: math.unit(8 + 8/12, "feet")
  4655. },
  4656. {
  4657. name: "Normal",
  4658. height: math.unit(5, "meter")
  4659. },
  4660. {
  4661. name: "Macro",
  4662. height: math.unit(150, "meter"),
  4663. default: true
  4664. },
  4665. {
  4666. name: "Megamacro",
  4667. height: math.unit(278e6, "meter")
  4668. },
  4669. {
  4670. name: "Gigamacro",
  4671. height: math.unit(2e9, "meter")
  4672. },
  4673. {
  4674. name: "Teramacro",
  4675. height: math.unit(8e12, "meter")
  4676. },
  4677. {
  4678. name: "Devourer",
  4679. height: math.unit(14, "zettameters")
  4680. },
  4681. {
  4682. name: "Scarlet King",
  4683. height: math.unit(18, "yottameters")
  4684. },
  4685. {
  4686. name: "Void",
  4687. height: math.unit(1e88, "yottameters")
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4693. {
  4694. standing: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(180, "lbs"),
  4697. name: "Standing",
  4698. image: {
  4699. source: "./media/characters/zaakira/standing.svg",
  4700. extra: 1599/1504,
  4701. bottom: 39/1638
  4702. }
  4703. },
  4704. laying: {
  4705. height: math.unit(3, "feet"),
  4706. weight: math.unit(180, "lbs"),
  4707. name: "Laying",
  4708. image: {
  4709. source: "./media/characters/zaakira/laying.svg"
  4710. }
  4711. },
  4712. },
  4713. [
  4714. {
  4715. name: "Normal",
  4716. height: math.unit(12, "feet")
  4717. },
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(279, "feet"),
  4721. default: true
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4727. {
  4728. femSfw: {
  4729. height: math.unit(8, "feet"),
  4730. weight: math.unit(350, "lb"),
  4731. name: "Fem",
  4732. image: {
  4733. source: "./media/characters/sigvald/fem-sfw.svg",
  4734. extra: 182 / 164,
  4735. bottom: 8.7 / 190.5
  4736. }
  4737. },
  4738. femNsfw: {
  4739. height: math.unit(8, "feet"),
  4740. weight: math.unit(350, "lb"),
  4741. name: "Fem (NSFW)",
  4742. image: {
  4743. source: "./media/characters/sigvald/fem-nsfw.svg",
  4744. extra: 182 / 164,
  4745. bottom: 8.7 / 190.5
  4746. }
  4747. },
  4748. maleNsfw: {
  4749. height: math.unit(8, "feet"),
  4750. weight: math.unit(350, "lb"),
  4751. name: "Male (NSFW)",
  4752. image: {
  4753. source: "./media/characters/sigvald/male-nsfw.svg",
  4754. extra: 182 / 164,
  4755. bottom: 8.7 / 190.5
  4756. }
  4757. },
  4758. hermNsfw: {
  4759. height: math.unit(8, "feet"),
  4760. weight: math.unit(350, "lb"),
  4761. name: "Herm (NSFW)",
  4762. image: {
  4763. source: "./media/characters/sigvald/herm-nsfw.svg",
  4764. extra: 182 / 164,
  4765. bottom: 8.7 / 190.5
  4766. }
  4767. },
  4768. dick: {
  4769. height: math.unit(2.36, "feet"),
  4770. name: "Dick",
  4771. image: {
  4772. source: "./media/characters/sigvald/dick.svg"
  4773. }
  4774. },
  4775. eye: {
  4776. height: math.unit(0.31, "feet"),
  4777. name: "Eye",
  4778. image: {
  4779. source: "./media/characters/sigvald/eye.svg"
  4780. }
  4781. },
  4782. mouth: {
  4783. height: math.unit(0.92, "feet"),
  4784. name: "Mouth",
  4785. image: {
  4786. source: "./media/characters/sigvald/mouth.svg"
  4787. }
  4788. },
  4789. paws: {
  4790. height: math.unit(2.2, "feet"),
  4791. name: "Paws",
  4792. image: {
  4793. source: "./media/characters/sigvald/paws.svg"
  4794. }
  4795. }
  4796. },
  4797. [
  4798. {
  4799. name: "Normal",
  4800. height: math.unit(8, "feet")
  4801. },
  4802. {
  4803. name: "Large",
  4804. height: math.unit(12, "feet")
  4805. },
  4806. {
  4807. name: "Larger",
  4808. height: math.unit(20, "feet")
  4809. },
  4810. {
  4811. name: "Macro",
  4812. height: math.unit(150, "feet")
  4813. },
  4814. {
  4815. name: "Macro+",
  4816. height: math.unit(200, "feet"),
  4817. default: true
  4818. },
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4823. {
  4824. side: {
  4825. height: math.unit(12, "feet"),
  4826. weight: math.unit(2000, "kg"),
  4827. name: "Side",
  4828. image: {
  4829. source: "./media/characters/scott/side.svg",
  4830. extra: 754 / 724,
  4831. bottom: 0.069
  4832. }
  4833. },
  4834. upright: {
  4835. height: math.unit(12, "feet"),
  4836. weight: math.unit(2000, "kg"),
  4837. name: "Upright",
  4838. image: {
  4839. source: "./media/characters/scott/upright.svg",
  4840. extra: 3881 / 3722,
  4841. bottom: 0.05
  4842. }
  4843. },
  4844. },
  4845. [
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(12, "feet"),
  4849. default: true
  4850. },
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4855. {
  4856. side: {
  4857. height: math.unit(8, "meters"),
  4858. weight: math.unit(84755, "lbs"),
  4859. name: "Side",
  4860. image: {
  4861. source: "./media/characters/tobias/side.svg",
  4862. extra: 1474 / 1096,
  4863. bottom: 38.9 / 1513.1235
  4864. }
  4865. },
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(8, "meters"),
  4871. default: true
  4872. },
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4877. {
  4878. front: {
  4879. height: math.unit(5.5, "feet"),
  4880. weight: math.unit(400, "lbs"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/kieran/front.svg",
  4884. extra: 2694 / 2364,
  4885. bottom: 217 / 2908
  4886. }
  4887. },
  4888. side: {
  4889. height: math.unit(5.5, "feet"),
  4890. weight: math.unit(400, "lbs"),
  4891. name: "Side",
  4892. image: {
  4893. source: "./media/characters/kieran/side.svg",
  4894. extra: 875 / 777,
  4895. bottom: 84.6 / 959
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(5.5, "feet"),
  4903. default: true
  4904. },
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4909. {
  4910. side: {
  4911. height: math.unit(2, "meters"),
  4912. weight: math.unit(70, "kg"),
  4913. name: "Side",
  4914. image: {
  4915. source: "./media/characters/sanya/side.svg",
  4916. bottom: 0.02,
  4917. extra: 1.02
  4918. }
  4919. },
  4920. },
  4921. [
  4922. {
  4923. name: "Small",
  4924. height: math.unit(2, "meters")
  4925. },
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(3, "meters")
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(16, "meters"),
  4933. default: true
  4934. },
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4939. {
  4940. front: {
  4941. height: math.unit(2, "meters"),
  4942. weight: math.unit(120, "kg"),
  4943. name: "Front",
  4944. image: {
  4945. source: "./media/characters/miranda/front.svg",
  4946. extra: 195 / 185,
  4947. bottom: 10.9 / 206.5
  4948. }
  4949. },
  4950. back: {
  4951. height: math.unit(2, "meters"),
  4952. weight: math.unit(120, "kg"),
  4953. name: "Back",
  4954. image: {
  4955. source: "./media/characters/miranda/back.svg",
  4956. extra: 201 / 193,
  4957. bottom: 2.3 / 203.7
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(10, "feet"),
  4965. default: true
  4966. }
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "James", species: ["deer"], tags: ["anthro"] },
  4971. {
  4972. side: {
  4973. height: math.unit(2, "meters"),
  4974. weight: math.unit(100, "kg"),
  4975. name: "Front",
  4976. image: {
  4977. source: "./media/characters/james/front.svg",
  4978. extra: 10 / 8.5
  4979. }
  4980. },
  4981. },
  4982. [
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(8.5, "feet"),
  4986. default: true
  4987. }
  4988. ]
  4989. ))
  4990. characterMakers.push(() => makeCharacter(
  4991. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4992. {
  4993. side: {
  4994. height: math.unit(9.5, "feet"),
  4995. weight: math.unit(2500, "lbs"),
  4996. name: "Side",
  4997. image: {
  4998. source: "./media/characters/heather/side.svg"
  4999. }
  5000. },
  5001. },
  5002. [
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(9.5, "feet"),
  5006. default: true
  5007. }
  5008. ]
  5009. ))
  5010. characterMakers.push(() => makeCharacter(
  5011. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5012. {
  5013. side: {
  5014. height: math.unit(6.5, "feet"),
  5015. weight: math.unit(400, "lbs"),
  5016. name: "Side",
  5017. image: {
  5018. source: "./media/characters/lukas/side.svg",
  5019. extra: 7.25 / 6.5
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(6.5, "feet"),
  5027. default: true
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5033. {
  5034. side: {
  5035. height: math.unit(5, "feet"),
  5036. weight: math.unit(3000, "lbs"),
  5037. name: "Side",
  5038. image: {
  5039. source: "./media/characters/louise/side.svg"
  5040. }
  5041. },
  5042. },
  5043. [
  5044. {
  5045. name: "Normal",
  5046. height: math.unit(5, "feet"),
  5047. default: true
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5053. {
  5054. side: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(150, "lbs"),
  5057. name: "Side",
  5058. image: {
  5059. source: "./media/characters/ramona/side.svg"
  5060. }
  5061. },
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(5.3, "meters"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(20, "stories")
  5072. },
  5073. {
  5074. name: "Macro+",
  5075. height: math.unit(50, "stories")
  5076. },
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5081. {
  5082. standing: {
  5083. height: math.unit(5.75, "feet"),
  5084. weight: math.unit(160, "lbs"),
  5085. name: "Standing",
  5086. image: {
  5087. source: "./media/characters/deerpuff/standing.svg",
  5088. extra: 682 / 624
  5089. }
  5090. },
  5091. sitting: {
  5092. height: math.unit(5.75 / 1.79, "feet"),
  5093. weight: math.unit(160, "lbs"),
  5094. name: "Sitting",
  5095. image: {
  5096. source: "./media/characters/deerpuff/sitting.svg",
  5097. bottom: 44 / 400,
  5098. extra: 1
  5099. }
  5100. },
  5101. taurLaying: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(400, "lbs"),
  5104. name: "Taur (Laying)",
  5105. image: {
  5106. source: "./media/characters/deerpuff/taur-laying.svg"
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Puffball",
  5113. height: math.unit(6, "inches")
  5114. },
  5115. {
  5116. name: "Normalpuff",
  5117. height: math.unit(5.75, "feet")
  5118. },
  5119. {
  5120. name: "Macropuff",
  5121. height: math.unit(1500, "feet"),
  5122. default: true
  5123. },
  5124. {
  5125. name: "Megapuff",
  5126. height: math.unit(500, "miles")
  5127. },
  5128. {
  5129. name: "Gigapuff",
  5130. height: math.unit(250000, "miles")
  5131. },
  5132. {
  5133. name: "Omegapuff",
  5134. height: math.unit(1000, "lightyears")
  5135. },
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5140. {
  5141. stomping: {
  5142. height: math.unit(6, "feet"),
  5143. weight: math.unit(170, "lbs"),
  5144. name: "Stomping",
  5145. image: {
  5146. source: "./media/characters/vivian/stomping.svg"
  5147. }
  5148. },
  5149. sitting: {
  5150. height: math.unit(6 / 1.75, "feet"),
  5151. weight: math.unit(170, "lbs"),
  5152. name: "Sitting",
  5153. image: {
  5154. source: "./media/characters/vivian/sitting.svg",
  5155. bottom: 1 / 6.4,
  5156. extra: 1,
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(7, "feet"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Macro",
  5168. height: math.unit(10, "stories")
  5169. },
  5170. {
  5171. name: "Macro+",
  5172. height: math.unit(30, "stories")
  5173. },
  5174. {
  5175. name: "Megamacro",
  5176. height: math.unit(10, "miles")
  5177. },
  5178. {
  5179. name: "Megamacro+",
  5180. height: math.unit(2750000, "meters")
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5186. {
  5187. front: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(160, "lbs"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/prince/front.svg",
  5193. extra: 3400 / 3000
  5194. }
  5195. },
  5196. jumping: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(160, "lbs"),
  5199. name: "Jumping",
  5200. image: {
  5201. source: "./media/characters/prince/jump.svg",
  5202. extra: 2555 / 2134
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(7.75, "feet"),
  5210. default: true
  5211. },
  5212. {
  5213. name: "Not cute",
  5214. height: math.unit(17, "feet")
  5215. },
  5216. {
  5217. name: "I said NOT",
  5218. height: math.unit(91, "feet")
  5219. },
  5220. {
  5221. name: "Please stop",
  5222. height: math.unit(560, "feet")
  5223. },
  5224. {
  5225. name: "What have you done",
  5226. height: math.unit(2200, "feet")
  5227. },
  5228. {
  5229. name: "Deer God",
  5230. height: math.unit(3.6, "miles")
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5236. {
  5237. standing: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(300, "lbs"),
  5240. name: "Standing",
  5241. image: {
  5242. source: "./media/characters/psymon/standing.svg",
  5243. extra: 1888 / 1810,
  5244. bottom: 0.05
  5245. }
  5246. },
  5247. slithering: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(300, "lbs"),
  5250. name: "Slithering",
  5251. image: {
  5252. source: "./media/characters/psymon/slithering.svg",
  5253. extra: 1330 / 1224
  5254. }
  5255. },
  5256. slitheringAlt: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(300, "lbs"),
  5259. name: "Slithering (Alt)",
  5260. image: {
  5261. source: "./media/characters/psymon/slithering-alt.svg",
  5262. extra: 1330 / 1224
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(11.25, "feet"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Large",
  5274. height: math.unit(27, "feet")
  5275. },
  5276. {
  5277. name: "Giant",
  5278. height: math.unit(87, "feet")
  5279. },
  5280. {
  5281. name: "Macro",
  5282. height: math.unit(365, "feet")
  5283. },
  5284. {
  5285. name: "Megamacro",
  5286. height: math.unit(3, "miles")
  5287. },
  5288. {
  5289. name: "World Serpent",
  5290. height: math.unit(8000, "miles")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(180, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/daimos/front.svg",
  5303. extra: 4160 / 3897,
  5304. bottom: 0.021
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Normal",
  5311. height: math.unit(8, "feet"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Big Dog",
  5316. height: math.unit(22, "feet")
  5317. },
  5318. {
  5319. name: "Macro",
  5320. height: math.unit(127, "feet")
  5321. },
  5322. {
  5323. name: "Megamacro",
  5324. height: math.unit(3600, "feet")
  5325. },
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5330. {
  5331. side: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(180, "lbs"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/blake/side.svg",
  5337. extra: 1212 / 1120,
  5338. bottom: 0.05
  5339. }
  5340. },
  5341. crouched: {
  5342. height: math.unit(6 * 0.57, "feet"),
  5343. weight: math.unit(180, "lbs"),
  5344. name: "Crouched",
  5345. image: {
  5346. source: "./media/characters/blake/crouched.svg",
  5347. extra: 840 / 587,
  5348. bottom: 0.04
  5349. }
  5350. },
  5351. bent: {
  5352. height: math.unit(6 * 0.75, "feet"),
  5353. weight: math.unit(180, "lbs"),
  5354. name: "Bent",
  5355. image: {
  5356. source: "./media/characters/blake/bent.svg",
  5357. extra: 592 / 544,
  5358. bottom: 0.035
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(8 + 1 / 6, "feet"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Big Backside",
  5370. height: math.unit(37, "feet")
  5371. },
  5372. {
  5373. name: "Subway Shredder",
  5374. height: math.unit(72, "feet")
  5375. },
  5376. {
  5377. name: "City Carver",
  5378. height: math.unit(1675, "feet")
  5379. },
  5380. {
  5381. name: "Tectonic Tweaker",
  5382. height: math.unit(2300, "miles")
  5383. },
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5388. {
  5389. front: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(180, "lbs"),
  5392. name: "Front",
  5393. image: {
  5394. source: "./media/characters/guisetto/front.svg",
  5395. extra: 856 / 817,
  5396. bottom: 0.06
  5397. }
  5398. },
  5399. airborne: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(180, "lbs"),
  5402. name: "Airborne",
  5403. image: {
  5404. source: "./media/characters/guisetto/airborne.svg",
  5405. extra: 584 / 525
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(10 + 11 / 12, "feet"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Large",
  5417. height: math.unit(35, "feet")
  5418. },
  5419. {
  5420. name: "Macro",
  5421. height: math.unit(475, "feet")
  5422. },
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(180, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/luxor/front.svg",
  5434. extra: 2940 / 2152
  5435. }
  5436. },
  5437. back: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(180, "lbs"),
  5440. name: "Back",
  5441. image: {
  5442. source: "./media/characters/luxor/back.svg",
  5443. extra: 1083 / 960
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(5 + 5 / 6, "feet"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Lamp",
  5455. height: math.unit(50, "feet")
  5456. },
  5457. {
  5458. name: "Lämp",
  5459. height: math.unit(300, "feet")
  5460. },
  5461. {
  5462. name: "The sun is a lamp",
  5463. height: math.unit(250000, "miles")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(50, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/huoyan/front.svg"
  5476. }
  5477. },
  5478. side: {
  5479. height: math.unit(6, "feet"),
  5480. weight: math.unit(180, "lbs"),
  5481. name: "Side",
  5482. image: {
  5483. source: "./media/characters/huoyan/side.svg"
  5484. }
  5485. },
  5486. },
  5487. [
  5488. {
  5489. name: "Chef",
  5490. height: math.unit(9, "feet")
  5491. },
  5492. {
  5493. name: "Normal",
  5494. height: math.unit(65, "feet"),
  5495. default: true
  5496. },
  5497. {
  5498. name: "Macro",
  5499. height: math.unit(780, "feet")
  5500. },
  5501. {
  5502. name: "Flaming Mountain",
  5503. height: math.unit(4.8, "miles")
  5504. },
  5505. {
  5506. name: "Celestial",
  5507. height: math.unit(765000, "miles")
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(5 + 3 / 4, "feet"),
  5516. weight: math.unit(120, "lbs"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/tails/front.svg"
  5520. }
  5521. }
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(5 + 3 / 4, "feet"),
  5527. default: true
  5528. }
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(4, "feet"),
  5536. weight: math.unit(50, "lbs"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/rainy/front.svg"
  5540. }
  5541. }
  5542. },
  5543. [
  5544. {
  5545. name: "Macro",
  5546. height: math.unit(800, "feet"),
  5547. default: true
  5548. }
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(150, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/rainier/front.svg"
  5560. }
  5561. }
  5562. },
  5563. [
  5564. {
  5565. name: "Micro",
  5566. height: math.unit(2, "mm"),
  5567. default: true
  5568. }
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(8 + 4/12, "feet"),
  5576. name: "Front",
  5577. image: {
  5578. source: "./media/characters/andy-renard/front.svg",
  5579. extra: 1839/1726,
  5580. bottom: 134/1973
  5581. }
  5582. },
  5583. back: {
  5584. height: math.unit(8 + 4/12, "feet"),
  5585. name: "Back",
  5586. image: {
  5587. source: "./media/characters/andy-renard/back.svg",
  5588. extra: 1838/1710,
  5589. bottom: 105/1943
  5590. }
  5591. },
  5592. },
  5593. [
  5594. {
  5595. name: "Tall",
  5596. height: math.unit(8 + 4/12, "feet")
  5597. },
  5598. {
  5599. name: "Mini Macro",
  5600. height: math.unit(15, "feet"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Macro",
  5605. height: math.unit(100, "feet")
  5606. },
  5607. {
  5608. name: "Mega Macro",
  5609. height: math.unit(1000, "feet")
  5610. },
  5611. {
  5612. name: "Giga Macro",
  5613. height: math.unit(10, "miles")
  5614. },
  5615. {
  5616. name: "God Macro",
  5617. height: math.unit(1, "multiverse")
  5618. },
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(210, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/cimmaron/front-sfw.svg",
  5630. extra: 701 / 676,
  5631. bottom: 0.046
  5632. }
  5633. },
  5634. back: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(210, "lbs"),
  5637. name: "Back",
  5638. image: {
  5639. source: "./media/characters/cimmaron/back-sfw.svg",
  5640. extra: 701 / 676,
  5641. bottom: 0.046
  5642. }
  5643. },
  5644. frontNsfw: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(210, "lbs"),
  5647. name: "Front (NSFW)",
  5648. image: {
  5649. source: "./media/characters/cimmaron/front-nsfw.svg",
  5650. extra: 701 / 676,
  5651. bottom: 0.046
  5652. }
  5653. },
  5654. backNsfw: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(210, "lbs"),
  5657. name: "Back (NSFW)",
  5658. image: {
  5659. source: "./media/characters/cimmaron/back-nsfw.svg",
  5660. extra: 701 / 676,
  5661. bottom: 0.046
  5662. }
  5663. },
  5664. dick: {
  5665. height: math.unit(1.714, "feet"),
  5666. name: "Dick",
  5667. image: {
  5668. source: "./media/characters/cimmaron/dick.svg"
  5669. }
  5670. },
  5671. },
  5672. [
  5673. {
  5674. name: "Normal",
  5675. height: math.unit(6, "feet"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "Macro Mayor",
  5680. height: math.unit(350, "meters")
  5681. },
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(200, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/akari/front.svg",
  5693. extra: 962 / 901,
  5694. bottom: 0.04
  5695. }
  5696. }
  5697. },
  5698. [
  5699. {
  5700. name: "Micro",
  5701. height: math.unit(5, "inches"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Normal",
  5706. height: math.unit(7, "feet")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(140, "lbs"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/cynosura/front.svg",
  5719. extra: 896 / 847
  5720. }
  5721. },
  5722. back: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(140, "lbs"),
  5725. name: "Back",
  5726. image: {
  5727. source: "./media/characters/cynosura/back.svg",
  5728. extra: 1365 / 1250
  5729. }
  5730. },
  5731. },
  5732. [
  5733. {
  5734. name: "Micro",
  5735. height: math.unit(4, "inches")
  5736. },
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(5.75, "feet"),
  5740. default: true
  5741. },
  5742. {
  5743. name: "Tall",
  5744. height: math.unit(10, "feet")
  5745. },
  5746. {
  5747. name: "Big",
  5748. height: math.unit(20, "feet")
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(50, "feet")
  5753. },
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5758. {
  5759. front: {
  5760. height: math.unit(13 + 2/12, "feet"),
  5761. weight: math.unit(800, "kg"),
  5762. name: "Front",
  5763. image: {
  5764. source: "./media/characters/gin/front.svg",
  5765. extra: 1312/1191,
  5766. bottom: 45/1357
  5767. }
  5768. },
  5769. mouth: {
  5770. height: math.unit(2.39 * 1.8, "feet"),
  5771. name: "Mouth",
  5772. image: {
  5773. source: "./media/characters/gin/mouth.svg"
  5774. }
  5775. },
  5776. hand: {
  5777. height: math.unit(1.57 * 2.19, "feet"),
  5778. name: "Hand",
  5779. image: {
  5780. source: "./media/characters/gin/hand.svg"
  5781. }
  5782. },
  5783. foot: {
  5784. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5785. name: "Foot",
  5786. image: {
  5787. source: "./media/characters/gin/foot.svg"
  5788. }
  5789. },
  5790. sole: {
  5791. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5792. name: "Sole",
  5793. image: {
  5794. source: "./media/characters/gin/sole.svg"
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Very Small",
  5801. height: math.unit(13 + 2 / 12, "feet")
  5802. },
  5803. {
  5804. name: "Micro",
  5805. height: math.unit(600, "miles")
  5806. },
  5807. {
  5808. name: "Regular",
  5809. height: math.unit(20, "earths"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(2.2, "solarradii")
  5815. },
  5816. {
  5817. name: "Teramacro",
  5818. height: math.unit(1.2, "galaxies")
  5819. },
  5820. {
  5821. name: "Omegamacro",
  5822. height: math.unit(200, "universes")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(6 + 1 / 6, "feet"),
  5831. weight: math.unit(178, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/guy/front.svg"
  5835. }
  5836. }
  5837. },
  5838. [
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(6 + 1 / 6, "feet"),
  5842. default: true
  5843. },
  5844. {
  5845. name: "Large",
  5846. height: math.unit(25 + 7 / 12, "feet")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(60 + 9 / 12, "feet")
  5851. },
  5852. {
  5853. name: "Macro+",
  5854. height: math.unit(246, "feet")
  5855. },
  5856. {
  5857. name: "Macro++",
  5858. height: math.unit(878, "feet")
  5859. }
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5864. {
  5865. front: {
  5866. height: math.unit(9, "feet"),
  5867. weight: math.unit(800, "lbs"),
  5868. name: "Front",
  5869. image: {
  5870. source: "./media/characters/tiberius/front.svg",
  5871. extra: 2295 / 2071
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(9, "feet"),
  5876. weight: math.unit(800, "lbs"),
  5877. name: "Back",
  5878. image: {
  5879. source: "./media/characters/tiberius/back.svg",
  5880. extra: 2373 / 2160
  5881. }
  5882. },
  5883. },
  5884. [
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(9, "feet"),
  5888. default: true
  5889. }
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5894. {
  5895. front: {
  5896. height: math.unit(6, "feet"),
  5897. weight: math.unit(600, "lbs"),
  5898. name: "Front",
  5899. image: {
  5900. source: "./media/characters/surgo/front.svg",
  5901. extra: 3591 / 2227
  5902. }
  5903. },
  5904. back: {
  5905. height: math.unit(6, "feet"),
  5906. weight: math.unit(600, "lbs"),
  5907. name: "Back",
  5908. image: {
  5909. source: "./media/characters/surgo/back.svg",
  5910. extra: 3557 / 2228
  5911. }
  5912. },
  5913. laying: {
  5914. height: math.unit(6 * 0.85, "feet"),
  5915. weight: math.unit(600, "lbs"),
  5916. name: "Laying",
  5917. image: {
  5918. source: "./media/characters/surgo/laying.svg"
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(6, "feet"),
  5926. default: true
  5927. }
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5932. {
  5933. side: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(150, "lbs"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/cibus/side.svg",
  5939. extra: 800 / 400
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(6, "feet"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(240, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/nibbles/front.svg"
  5960. }
  5961. },
  5962. side: {
  5963. height: math.unit(6, "feet"),
  5964. weight: math.unit(240, "lbs"),
  5965. name: "Side",
  5966. image: {
  5967. source: "./media/characters/nibbles/side.svg"
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(9, "feet"),
  5975. default: true
  5976. }
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5981. {
  5982. side: {
  5983. height: math.unit(5 + 1 / 6, "feet"),
  5984. weight: math.unit(130, "lbs"),
  5985. name: "Side",
  5986. image: {
  5987. source: "./media/characters/rikky/side.svg",
  5988. extra: 851 / 801
  5989. }
  5990. },
  5991. },
  5992. [
  5993. {
  5994. name: "Normal",
  5995. height: math.unit(5 + 1 / 6, "feet")
  5996. },
  5997. {
  5998. name: "Macro",
  5999. height: math.unit(152, "feet"),
  6000. default: true
  6001. },
  6002. {
  6003. name: "Megamacro",
  6004. height: math.unit(7, "miles")
  6005. }
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6010. {
  6011. side: {
  6012. height: math.unit(370, "cm"),
  6013. weight: math.unit(350, "lbs"),
  6014. name: "Side",
  6015. image: {
  6016. source: "./media/characters/malfressa/side.svg"
  6017. }
  6018. },
  6019. walking: {
  6020. height: math.unit(370, "cm"),
  6021. weight: math.unit(350, "lbs"),
  6022. name: "Walking",
  6023. image: {
  6024. source: "./media/characters/malfressa/walking.svg"
  6025. }
  6026. },
  6027. feral: {
  6028. height: math.unit(2500, "cm"),
  6029. weight: math.unit(100000, "lbs"),
  6030. name: "Feral",
  6031. image: {
  6032. source: "./media/characters/malfressa/feral.svg",
  6033. extra: 2108 / 837,
  6034. bottom: 0.02
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(370, "cm")
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(300, "meters"),
  6046. default: true
  6047. }
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6052. {
  6053. front: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(60, "kg"),
  6056. name: "Front",
  6057. image: {
  6058. source: "./media/characters/jaro/front.svg"
  6059. }
  6060. },
  6061. back: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(60, "kg"),
  6064. name: "Back",
  6065. image: {
  6066. source: "./media/characters/jaro/back.svg"
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Micro",
  6073. height: math.unit(7, "inches")
  6074. },
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(5.5, "feet"),
  6078. default: true
  6079. },
  6080. {
  6081. name: "Minimacro",
  6082. height: math.unit(20, "feet")
  6083. },
  6084. {
  6085. name: "Macro",
  6086. height: math.unit(200, "meters")
  6087. }
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(195, "lb"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/rogue/front.svg"
  6099. }
  6100. },
  6101. },
  6102. [
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(90, "feet"),
  6106. default: true
  6107. },
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(5 + 8 / 12, "feet"),
  6115. weight: math.unit(140, "lb"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/piper/front.svg",
  6119. extra: 3948/3655,
  6120. bottom: 0/3948
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Micro",
  6127. height: math.unit(2, "inches")
  6128. },
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(5 + 8 / 12, "feet")
  6132. },
  6133. {
  6134. name: "Macro",
  6135. height: math.unit(250, "feet"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Megamacro",
  6140. height: math.unit(7, "miles")
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(220, "lb"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/gemini/front.svg"
  6153. }
  6154. },
  6155. back: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(220, "lb"),
  6158. name: "Back",
  6159. image: {
  6160. source: "./media/characters/gemini/back.svg"
  6161. }
  6162. },
  6163. kneeling: {
  6164. height: math.unit(6 / 1.5, "feet"),
  6165. weight: math.unit(220, "lb"),
  6166. name: "Kneeling",
  6167. image: {
  6168. source: "./media/characters/gemini/kneeling.svg",
  6169. bottom: 0.02
  6170. }
  6171. },
  6172. },
  6173. [
  6174. {
  6175. name: "Macro",
  6176. height: math.unit(300, "meters"),
  6177. default: true
  6178. },
  6179. {
  6180. name: "Megamacro",
  6181. height: math.unit(6900, "meters")
  6182. },
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6187. {
  6188. anthro: {
  6189. height: math.unit(2.35, "meters"),
  6190. weight: math.unit(73, "kg"),
  6191. name: "Anthro",
  6192. image: {
  6193. source: "./media/characters/alicia/anthro.svg",
  6194. extra: 2571 / 2385,
  6195. bottom: 75 / 2648
  6196. }
  6197. },
  6198. paw: {
  6199. height: math.unit(1.32, "feet"),
  6200. name: "Paw",
  6201. image: {
  6202. source: "./media/characters/alicia/paw.svg"
  6203. }
  6204. },
  6205. feral: {
  6206. height: math.unit(1.69, "meters"),
  6207. weight: math.unit(73, "kg"),
  6208. name: "Feral",
  6209. image: {
  6210. source: "./media/characters/alicia/feral.svg",
  6211. extra: 2123 / 1715,
  6212. bottom: 222 / 2349
  6213. }
  6214. },
  6215. },
  6216. [
  6217. {
  6218. name: "Normal",
  6219. height: math.unit(2.35, "meters")
  6220. },
  6221. {
  6222. name: "Macro",
  6223. height: math.unit(60, "meters"),
  6224. default: true
  6225. },
  6226. {
  6227. name: "Megamacro",
  6228. height: math.unit(10000, "kilometers")
  6229. },
  6230. ]
  6231. ))
  6232. characterMakers.push(() => makeCharacter(
  6233. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6234. {
  6235. front: {
  6236. height: math.unit(7, "feet"),
  6237. weight: math.unit(250, "lbs"),
  6238. name: "Front",
  6239. image: {
  6240. source: "./media/characters/archy/front.svg"
  6241. }
  6242. }
  6243. },
  6244. [
  6245. {
  6246. name: "Micro",
  6247. height: math.unit(1, "inch")
  6248. },
  6249. {
  6250. name: "Shorty",
  6251. height: math.unit(5, "feet")
  6252. },
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(7, "feet")
  6256. },
  6257. {
  6258. name: "Macro",
  6259. height: math.unit(600, "meters"),
  6260. default: true
  6261. },
  6262. {
  6263. name: "Megamacro",
  6264. height: math.unit(1, "mile")
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(1.65, "meters"),
  6273. weight: math.unit(74, "kg"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/berri/front.svg",
  6277. extra: 857 / 837,
  6278. bottom: 18 / 877
  6279. }
  6280. },
  6281. bum: {
  6282. height: math.unit(1.46, "feet"),
  6283. name: "Bum",
  6284. image: {
  6285. source: "./media/characters/berri/bum.svg"
  6286. }
  6287. },
  6288. mouth: {
  6289. height: math.unit(0.44, "feet"),
  6290. name: "Mouth",
  6291. image: {
  6292. source: "./media/characters/berri/mouth.svg"
  6293. }
  6294. },
  6295. paw: {
  6296. height: math.unit(0.826, "feet"),
  6297. name: "Paw",
  6298. image: {
  6299. source: "./media/characters/berri/paw.svg"
  6300. }
  6301. },
  6302. },
  6303. [
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(1.65, "meters")
  6307. },
  6308. {
  6309. name: "Macro",
  6310. height: math.unit(60, "m"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Megamacro",
  6315. height: math.unit(9.213, "km")
  6316. },
  6317. {
  6318. name: "Planet Eater",
  6319. height: math.unit(489, "megameters")
  6320. },
  6321. {
  6322. name: "Teramacro",
  6323. height: math.unit(2471635000000, "meters")
  6324. },
  6325. {
  6326. name: "Examacro",
  6327. height: math.unit(8.0624e+26, "meters")
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6333. {
  6334. front: {
  6335. height: math.unit(1.72, "meters"),
  6336. weight: math.unit(68, "kg"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/lexi/front.svg"
  6340. }
  6341. }
  6342. },
  6343. [
  6344. {
  6345. name: "Very Smol",
  6346. height: math.unit(10, "mm")
  6347. },
  6348. {
  6349. name: "Micro",
  6350. height: math.unit(6.8, "cm"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Normal",
  6355. height: math.unit(1.72, "m")
  6356. }
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(1.69, "meters"),
  6364. weight: math.unit(68, "kg"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/martin/front.svg",
  6368. extra: 596 / 581
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(6.85, "cm"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(1.69, "m")
  6381. }
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(1.69, "meters"),
  6389. weight: math.unit(68, "kg"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/juno/front.svg"
  6393. }
  6394. }
  6395. },
  6396. [
  6397. {
  6398. name: "Micro",
  6399. height: math.unit(7, "cm")
  6400. },
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(1.89, "m")
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(353, "meters"),
  6408. default: true
  6409. }
  6410. ]
  6411. ))
  6412. characterMakers.push(() => makeCharacter(
  6413. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6414. {
  6415. front: {
  6416. height: math.unit(1.93, "meters"),
  6417. weight: math.unit(83, "kg"),
  6418. name: "Front",
  6419. image: {
  6420. source: "./media/characters/samantha/front.svg"
  6421. }
  6422. },
  6423. frontClothed: {
  6424. height: math.unit(1.93, "meters"),
  6425. weight: math.unit(83, "kg"),
  6426. name: "Front (Clothed)",
  6427. image: {
  6428. source: "./media/characters/samantha/front-clothed.svg"
  6429. }
  6430. },
  6431. back: {
  6432. height: math.unit(1.93, "meters"),
  6433. weight: math.unit(83, "kg"),
  6434. name: "Back",
  6435. image: {
  6436. source: "./media/characters/samantha/back.svg"
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(1.93, "m")
  6444. },
  6445. {
  6446. name: "Macro",
  6447. height: math.unit(74, "meters"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Macro+",
  6452. height: math.unit(223, "meters"),
  6453. },
  6454. {
  6455. name: "Megamacro",
  6456. height: math.unit(8381, "meters"),
  6457. },
  6458. {
  6459. name: "Megamacro+",
  6460. height: math.unit(12000, "kilometers")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(1.92, "meters"),
  6469. weight: math.unit(80, "kg"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/dr-clay/front.svg"
  6473. }
  6474. },
  6475. frontClothed: {
  6476. height: math.unit(1.92, "meters"),
  6477. weight: math.unit(80, "kg"),
  6478. name: "Front (Clothed)",
  6479. image: {
  6480. source: "./media/characters/dr-clay/front-clothed.svg"
  6481. }
  6482. }
  6483. },
  6484. [
  6485. {
  6486. name: "Normal",
  6487. height: math.unit(1.92, "m")
  6488. },
  6489. {
  6490. name: "Macro",
  6491. height: math.unit(214, "meters"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Macro+",
  6496. height: math.unit(12.237, "meters"),
  6497. },
  6498. {
  6499. name: "Megamacro",
  6500. height: math.unit(557, "megameters"),
  6501. },
  6502. {
  6503. name: "Unimaginable",
  6504. height: math.unit(120e9, "lightyears")
  6505. },
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6510. {
  6511. front: {
  6512. height: math.unit(2, "meters"),
  6513. weight: math.unit(80, "kg"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6517. }
  6518. }
  6519. },
  6520. [
  6521. {
  6522. name: "Teramacro",
  6523. height: math.unit(500000, "lightyears"),
  6524. default: true
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6530. {
  6531. crux: {
  6532. height: math.unit(2, "meters"),
  6533. weight: math.unit(150, "kg"),
  6534. name: "Crux",
  6535. image: {
  6536. source: "./media/characters/vemus/crux.svg",
  6537. extra: 1074/936,
  6538. bottom: 23/1097
  6539. }
  6540. },
  6541. skunkTanuki: {
  6542. height: math.unit(2, "meters"),
  6543. weight: math.unit(150, "kg"),
  6544. name: "Skunk-Tanuki",
  6545. image: {
  6546. source: "./media/characters/vemus/skunk-tanuki.svg",
  6547. extra: 926/893,
  6548. bottom: 20/946
  6549. }
  6550. },
  6551. },
  6552. [
  6553. {
  6554. name: "Normal",
  6555. height: math.unit(3.75, "meters"),
  6556. default: true
  6557. },
  6558. {
  6559. name: "Big",
  6560. height: math.unit(8, "meters")
  6561. },
  6562. {
  6563. name: "Macro",
  6564. height: math.unit(100, "meters")
  6565. },
  6566. {
  6567. name: "Macro+",
  6568. height: math.unit(1500, "meters")
  6569. },
  6570. {
  6571. name: "Stellar",
  6572. height: math.unit(14e8, "meters")
  6573. },
  6574. ]
  6575. ))
  6576. characterMakers.push(() => makeCharacter(
  6577. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6578. {
  6579. front: {
  6580. height: math.unit(2, "meters"),
  6581. weight: math.unit(70, "kg"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/beherit/front.svg",
  6585. extra: 1408 / 1242
  6586. }
  6587. }
  6588. },
  6589. [
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(6, "feet")
  6593. },
  6594. {
  6595. name: "Lorg",
  6596. height: math.unit(25, "feet"),
  6597. default: true
  6598. },
  6599. {
  6600. name: "Lorger",
  6601. height: math.unit(75, "feet")
  6602. },
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(200, "meters")
  6606. },
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(2, "meters"),
  6614. weight: math.unit(150, "kg"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/everett/front.svg",
  6618. extra: 2038 / 1737,
  6619. bottom: 0.03
  6620. }
  6621. },
  6622. paw: {
  6623. height: math.unit(2 / 3.6, "meters"),
  6624. name: "Paw",
  6625. image: {
  6626. source: "./media/characters/everett/paw.svg"
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Normal",
  6633. height: math.unit(15, "feet"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Lorg",
  6638. height: math.unit(70, "feet"),
  6639. default: true
  6640. },
  6641. {
  6642. name: "Lorger",
  6643. height: math.unit(250, "feet")
  6644. },
  6645. {
  6646. name: "Macro",
  6647. height: math.unit(500, "meters")
  6648. },
  6649. ]
  6650. ))
  6651. characterMakers.push(() => makeCharacter(
  6652. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6653. {
  6654. front: {
  6655. height: math.unit(2, "meters"),
  6656. weight: math.unit(86, "kg"),
  6657. name: "Front",
  6658. image: {
  6659. source: "./media/characters/rose/front.svg",
  6660. extra: 1785/1636,
  6661. bottom: 30/1815
  6662. }
  6663. },
  6664. frontSporty: {
  6665. height: math.unit(2, "meters"),
  6666. weight: math.unit(86, "kg"),
  6667. name: "Front (Sporty)",
  6668. image: {
  6669. source: "./media/characters/rose/front-sporty.svg",
  6670. extra: 350/335,
  6671. bottom: 10/360
  6672. }
  6673. },
  6674. frontAlt: {
  6675. height: math.unit(1.6, "meters"),
  6676. weight: math.unit(86, "kg"),
  6677. name: "Front (Alt)",
  6678. image: {
  6679. source: "./media/characters/rose/front-alt.svg",
  6680. extra: 299/283,
  6681. bottom: 3/302
  6682. }
  6683. },
  6684. plush: {
  6685. height: math.unit(2, "meters"),
  6686. weight: math.unit(86/3, "kg"),
  6687. name: "Plush",
  6688. image: {
  6689. source: "./media/characters/rose/plush.svg",
  6690. extra: 361/337,
  6691. bottom: 11/372
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "True Micro",
  6698. height: math.unit(9, "cm")
  6699. },
  6700. {
  6701. name: "Micro",
  6702. height: math.unit(16, "cm")
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(1.85, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Mini-Macro",
  6711. height: math.unit(5, "meters")
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(15, "meters")
  6716. },
  6717. {
  6718. name: "True Macro",
  6719. height: math.unit(40, "meters")
  6720. },
  6721. {
  6722. name: "City Scale",
  6723. height: math.unit(1, "km")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(2, "meters"),
  6732. weight: math.unit(350, "lbs"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/regal/front.svg"
  6736. }
  6737. },
  6738. back: {
  6739. height: math.unit(2, "meters"),
  6740. weight: math.unit(350, "lbs"),
  6741. name: "Back",
  6742. image: {
  6743. source: "./media/characters/regal/back.svg"
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(350, "feet"),
  6751. default: true
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(4 + 11 / 12, "feet"),
  6760. weight: math.unit(100, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/opal/front.svg"
  6764. }
  6765. },
  6766. frontAlt: {
  6767. height: math.unit(4 + 11 / 12, "feet"),
  6768. weight: math.unit(100, "lbs"),
  6769. name: "Front (Alt)",
  6770. image: {
  6771. source: "./media/characters/opal/front-alt.svg"
  6772. }
  6773. },
  6774. },
  6775. [
  6776. {
  6777. name: "Small",
  6778. height: math.unit(4 + 11 / 12, "feet")
  6779. },
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(20, "feet"),
  6783. default: true
  6784. },
  6785. {
  6786. name: "Macro",
  6787. height: math.unit(120, "feet")
  6788. },
  6789. {
  6790. name: "Megamacro",
  6791. height: math.unit(80, "miles")
  6792. },
  6793. {
  6794. name: "True Size",
  6795. height: math.unit(100000, "lightyears")
  6796. },
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6801. {
  6802. front: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(200, "lbs"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/vector-wuff/front.svg"
  6808. }
  6809. }
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(2.8, "meters")
  6815. },
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(450, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Megamacro",
  6823. height: math.unit(15, "kilometers")
  6824. }
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(6, "feet"),
  6832. weight: math.unit(256, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/dannik/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Macro",
  6842. height: math.unit(69.57, "meters"),
  6843. default: true
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(120, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/azura-saharah/front.svg"
  6856. }
  6857. },
  6858. back: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(120, "lbs"),
  6861. name: "Back",
  6862. image: {
  6863. source: "./media/characters/azura-saharah/back.svg"
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Macro",
  6870. height: math.unit(100, "feet"),
  6871. default: true
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6877. {
  6878. side: {
  6879. height: math.unit(5 + 4 / 12, "feet"),
  6880. weight: math.unit(163, "lbs"),
  6881. name: "Side",
  6882. image: {
  6883. source: "./media/characters/kennedy/side.svg"
  6884. }
  6885. }
  6886. },
  6887. [
  6888. {
  6889. name: "Standard Doggo",
  6890. height: math.unit(5 + 4 / 12, "feet")
  6891. },
  6892. {
  6893. name: "Big Doggo",
  6894. height: math.unit(25 + 3 / 12, "feet"),
  6895. default: true
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(90, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/odi-lunar/front.svg"
  6908. }
  6909. }
  6910. },
  6911. [
  6912. {
  6913. name: "Micro",
  6914. height: math.unit(3, "inches"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Normal",
  6919. height: math.unit(5.5, "feet")
  6920. }
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6925. {
  6926. back: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(220, "lbs"),
  6929. name: "Back",
  6930. image: {
  6931. source: "./media/characters/mandake/back.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(7, "feet"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(78, "feet")
  6944. },
  6945. {
  6946. name: "Macro+",
  6947. height: math.unit(300, "meters")
  6948. },
  6949. {
  6950. name: "Macro++",
  6951. height: math.unit(2400, "feet")
  6952. },
  6953. {
  6954. name: "Megamacro",
  6955. height: math.unit(5167, "meters")
  6956. },
  6957. {
  6958. name: "Gigamacro",
  6959. height: math.unit(41769, "miles")
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(120, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/yozey/front.svg"
  6972. }
  6973. },
  6974. frontAlt: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(120, "lbs"),
  6977. name: "Front (Alt)",
  6978. image: {
  6979. source: "./media/characters/yozey/front-alt.svg"
  6980. }
  6981. },
  6982. side: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(120, "lbs"),
  6985. name: "Side",
  6986. image: {
  6987. source: "./media/characters/yozey/side.svg"
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Micro",
  6994. height: math.unit(3, "inches"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(6, "feet")
  7000. }
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(6, "feet"),
  7008. weight: math.unit(103, "lbs"),
  7009. name: "Front",
  7010. image: {
  7011. source: "./media/characters/valeska-voss/front.svg"
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Mini-Sized Sub",
  7018. height: math.unit(3.1, "inches")
  7019. },
  7020. {
  7021. name: "Mid-Sized Sub",
  7022. height: math.unit(6.2, "inches")
  7023. },
  7024. {
  7025. name: "Full-Sized Sub",
  7026. height: math.unit(9.3, "inches")
  7027. },
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(5 + 2 / 12, "foot"),
  7031. default: true
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(160, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/gene-zeta/front.svg",
  7044. extra: 3006 / 2826,
  7045. bottom: 182 / 3188
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(6, "inches")
  7053. },
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(5 + 11 / 12, "foot"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Macro",
  7061. height: math.unit(140, "feet")
  7062. },
  7063. {
  7064. name: "Supercharged",
  7065. height: math.unit(2500, "feet")
  7066. },
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(350, "lbs"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/razinox/front.svg",
  7078. extra: 1686 / 1548,
  7079. bottom: 28.2 / 1868
  7080. }
  7081. },
  7082. back: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(350, "lbs"),
  7085. name: "Back",
  7086. image: {
  7087. source: "./media/characters/razinox/back.svg",
  7088. extra: 1660 / 1590,
  7089. bottom: 15 / 1665
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(10 + 8 / 12, "foot")
  7097. },
  7098. {
  7099. name: "Minimacro",
  7100. height: math.unit(15, "foot")
  7101. },
  7102. {
  7103. name: "Macro",
  7104. height: math.unit(60, "foot"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Megamacro",
  7109. height: math.unit(5, "miles")
  7110. },
  7111. {
  7112. name: "Gigamacro",
  7113. height: math.unit(6000, "miles")
  7114. },
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(150, "lbs"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/cobalt/front.svg"
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(8 + 1 / 12, "foot")
  7133. },
  7134. {
  7135. name: "Macro",
  7136. height: math.unit(111, "foot"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Supracosmic",
  7141. height: math.unit(1e42, "feet")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(140, "lbs"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/amanda/front.svg"
  7154. }
  7155. }
  7156. },
  7157. [
  7158. {
  7159. name: "Micro",
  7160. height: math.unit(5, "inches"),
  7161. default: true
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7167. {
  7168. front: {
  7169. height: math.unit(2.75, "meters"),
  7170. weight: math.unit(1200, "lb"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/teal/front.svg",
  7174. extra: 2463 / 2320,
  7175. bottom: 166 / 2629
  7176. }
  7177. },
  7178. back: {
  7179. height: math.unit(2.75, "meters"),
  7180. weight: math.unit(1200, "lb"),
  7181. name: "Back",
  7182. image: {
  7183. source: "./media/characters/teal/back.svg",
  7184. extra: 2580 / 2489,
  7185. bottom: 151 / 2731
  7186. }
  7187. },
  7188. sitting: {
  7189. height: math.unit(1.9, "meters"),
  7190. weight: math.unit(1200, "lb"),
  7191. name: "Sitting",
  7192. image: {
  7193. source: "./media/characters/teal/sitting.svg",
  7194. extra: 623 / 590,
  7195. bottom: 121 / 744
  7196. }
  7197. },
  7198. standing: {
  7199. height: math.unit(2.75, "meters"),
  7200. weight: math.unit(1200, "lb"),
  7201. name: "Standing",
  7202. image: {
  7203. source: "./media/characters/teal/standing.svg",
  7204. extra: 923 / 893,
  7205. bottom: 60 / 983
  7206. }
  7207. },
  7208. stretching: {
  7209. height: math.unit(3.65, "meters"),
  7210. weight: math.unit(1200, "lb"),
  7211. name: "Stretching",
  7212. image: {
  7213. source: "./media/characters/teal/stretching.svg",
  7214. extra: 1276 / 1244,
  7215. bottom: 0 / 1276
  7216. }
  7217. },
  7218. legged: {
  7219. height: math.unit(1.3, "meters"),
  7220. weight: math.unit(100, "lb"),
  7221. name: "Legged",
  7222. image: {
  7223. source: "./media/characters/teal/legged.svg",
  7224. extra: 462 / 437,
  7225. bottom: 24 / 486
  7226. }
  7227. },
  7228. naga: {
  7229. height: math.unit(5.4, "meters"),
  7230. weight: math.unit(4000, "lb"),
  7231. name: "Naga",
  7232. image: {
  7233. source: "./media/characters/teal/naga.svg",
  7234. extra: 1902 / 1858,
  7235. bottom: 0 / 1902
  7236. }
  7237. },
  7238. hand: {
  7239. height: math.unit(0.52, "meters"),
  7240. name: "Hand",
  7241. image: {
  7242. source: "./media/characters/teal/hand.svg"
  7243. }
  7244. },
  7245. maw: {
  7246. height: math.unit(0.43, "meters"),
  7247. name: "Maw",
  7248. image: {
  7249. source: "./media/characters/teal/maw.svg"
  7250. }
  7251. },
  7252. slit: {
  7253. height: math.unit(0.25, "meters"),
  7254. name: "Slit",
  7255. image: {
  7256. source: "./media/characters/teal/slit.svg"
  7257. }
  7258. },
  7259. },
  7260. [
  7261. {
  7262. name: "Normal",
  7263. height: math.unit(2.75, "meters"),
  7264. default: true
  7265. },
  7266. {
  7267. name: "Macro",
  7268. height: math.unit(300, "feet")
  7269. },
  7270. {
  7271. name: "Macro+",
  7272. height: math.unit(2000, "feet")
  7273. },
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7278. {
  7279. frontCat: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(180, "lbs"),
  7282. name: "Front (Cat)",
  7283. image: {
  7284. source: "./media/characters/ravin-amulet/front-cat.svg"
  7285. }
  7286. },
  7287. frontCatAlt: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(180, "lbs"),
  7290. name: "Front (Alt, Cat)",
  7291. image: {
  7292. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7293. }
  7294. },
  7295. frontWerewolf: {
  7296. height: math.unit(6 * 1.2, "feet"),
  7297. weight: math.unit(225, "lbs"),
  7298. name: "Front (Werewolf)",
  7299. image: {
  7300. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7301. }
  7302. },
  7303. backWerewolf: {
  7304. height: math.unit(6 * 1.2, "feet"),
  7305. weight: math.unit(225, "lbs"),
  7306. name: "Back (Werewolf)",
  7307. image: {
  7308. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7309. }
  7310. },
  7311. },
  7312. [
  7313. {
  7314. name: "Nano",
  7315. height: math.unit(1, "micrometer")
  7316. },
  7317. {
  7318. name: "Micro",
  7319. height: math.unit(1, "inch")
  7320. },
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(6, "feet"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(60, "feet")
  7329. }
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(165, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/fluoresce/front.svg"
  7341. }
  7342. }
  7343. },
  7344. [
  7345. {
  7346. name: "Micro",
  7347. height: math.unit(6, "cm")
  7348. },
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(5 + 7 / 12, "feet"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(56, "feet")
  7357. },
  7358. {
  7359. name: "Megamacro",
  7360. height: math.unit(1.9, "miles")
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(9 + 6 / 12, "feet"),
  7369. weight: math.unit(523, "lbs"),
  7370. name: "Side",
  7371. image: {
  7372. source: "./media/characters/aurora/side.svg"
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(9 + 6 / 12, "feet")
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(96, "feet"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Macro+",
  7388. height: math.unit(243, "feet")
  7389. },
  7390. ]
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7394. {
  7395. front: {
  7396. height: math.unit(194, "cm"),
  7397. weight: math.unit(90, "kg"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/ranek/front.svg"
  7401. }
  7402. },
  7403. side: {
  7404. height: math.unit(194, "cm"),
  7405. weight: math.unit(90, "kg"),
  7406. name: "Side",
  7407. image: {
  7408. source: "./media/characters/ranek/side.svg"
  7409. }
  7410. },
  7411. back: {
  7412. height: math.unit(194, "cm"),
  7413. weight: math.unit(90, "kg"),
  7414. name: "Back",
  7415. image: {
  7416. source: "./media/characters/ranek/back.svg"
  7417. }
  7418. },
  7419. feral: {
  7420. height: math.unit(30, "cm"),
  7421. weight: math.unit(1.6, "lbs"),
  7422. name: "Feral",
  7423. image: {
  7424. source: "./media/characters/ranek/feral.svg"
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(194, "cm"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Macro",
  7436. height: math.unit(100, "meters")
  7437. },
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(5 + 6 / 12, "feet"),
  7445. weight: math.unit(153, "lbs"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/andrew-cooper/front.svg"
  7449. }
  7450. },
  7451. },
  7452. [
  7453. {
  7454. name: "Nano",
  7455. height: math.unit(1, "mm")
  7456. },
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(2, "inches")
  7460. },
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(5 + 6 / 12, "feet"),
  7464. default: true
  7465. }
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(6, "feet"),
  7473. weight: math.unit(180, "lbs"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/akane-sato/front.svg",
  7477. extra: 1219 / 1140
  7478. }
  7479. },
  7480. back: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(180, "lbs"),
  7483. name: "Back",
  7484. image: {
  7485. source: "./media/characters/akane-sato/back.svg",
  7486. extra: 1219 / 1170
  7487. }
  7488. },
  7489. },
  7490. [
  7491. {
  7492. name: "Normal",
  7493. height: math.unit(2.5, "meters")
  7494. },
  7495. {
  7496. name: "Macro",
  7497. height: math.unit(250, "meters"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Megamacro",
  7502. height: math.unit(25, "km")
  7503. },
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(6, "feet"),
  7511. weight: math.unit(65, "kg"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/rook/front.svg",
  7515. extra: 960 / 950
  7516. }
  7517. }
  7518. },
  7519. [
  7520. {
  7521. name: "Normal",
  7522. height: math.unit(8.8, "feet")
  7523. },
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(88, "feet"),
  7527. default: true
  7528. },
  7529. {
  7530. name: "Megamacro",
  7531. height: math.unit(8, "miles")
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7537. {
  7538. front: {
  7539. height: math.unit(12 + 2 / 12, "feet"),
  7540. weight: math.unit(808, "lbs"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/prodigy/front.svg"
  7544. }
  7545. }
  7546. },
  7547. [
  7548. {
  7549. name: "Normal",
  7550. height: math.unit(12 + 2 / 12, "feet"),
  7551. default: true
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(143, "feet")
  7556. },
  7557. {
  7558. name: "Macro+",
  7559. height: math.unit(400, "feet")
  7560. },
  7561. ]
  7562. ))
  7563. characterMakers.push(() => makeCharacter(
  7564. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7565. {
  7566. front: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(225, "lbs"),
  7569. name: "Front",
  7570. image: {
  7571. source: "./media/characters/daniel/front.svg"
  7572. }
  7573. },
  7574. leaning: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(225, "lbs"),
  7577. name: "Leaning",
  7578. image: {
  7579. source: "./media/characters/daniel/leaning.svg"
  7580. }
  7581. },
  7582. },
  7583. [
  7584. {
  7585. name: "Macro",
  7586. height: math.unit(1000, "feet"),
  7587. default: true
  7588. },
  7589. ]
  7590. ))
  7591. characterMakers.push(() => makeCharacter(
  7592. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7593. {
  7594. front: {
  7595. height: math.unit(6, "feet"),
  7596. weight: math.unit(88, "lbs"),
  7597. name: "Front",
  7598. image: {
  7599. source: "./media/characters/chiros/front.svg",
  7600. extra: 306 / 226
  7601. }
  7602. },
  7603. side: {
  7604. height: math.unit(6, "feet"),
  7605. weight: math.unit(88, "lbs"),
  7606. name: "Side",
  7607. image: {
  7608. source: "./media/characters/chiros/side.svg",
  7609. extra: 306 / 226
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(6, "cm"),
  7617. default: true
  7618. },
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7623. {
  7624. front: {
  7625. height: math.unit(6, "feet"),
  7626. weight: math.unit(100, "lbs"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/selka/front.svg",
  7630. extra: 947 / 887
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(5, "cm"),
  7638. default: true
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(8 + 3 / 12, "feet"),
  7647. weight: math.unit(424, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/verin/front.svg",
  7651. extra: 1845 / 1550
  7652. }
  7653. },
  7654. frontArmored: {
  7655. height: math.unit(8 + 3 / 12, "feet"),
  7656. weight: math.unit(424, "lbs"),
  7657. name: "Front (Armored)",
  7658. image: {
  7659. source: "./media/characters/verin/front-armor.svg",
  7660. extra: 1845 / 1550,
  7661. bottom: 0.01
  7662. }
  7663. },
  7664. back: {
  7665. height: math.unit(8 + 3 / 12, "feet"),
  7666. weight: math.unit(424, "lbs"),
  7667. name: "Back",
  7668. image: {
  7669. source: "./media/characters/verin/back.svg",
  7670. bottom: 0.1,
  7671. extra: 1
  7672. }
  7673. },
  7674. foot: {
  7675. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7676. name: "Foot",
  7677. image: {
  7678. source: "./media/characters/verin/foot.svg"
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(8 + 3 / 12, "feet")
  7686. },
  7687. {
  7688. name: "Minimacro",
  7689. height: math.unit(21, "feet"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(626, "feet")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(2.718, "meters"),
  7703. weight: math.unit(150, "lbs"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/sovrim-terraquian/front.svg"
  7707. }
  7708. },
  7709. back: {
  7710. height: math.unit(2.718, "meters"),
  7711. weight: math.unit(150, "lbs"),
  7712. name: "Back",
  7713. image: {
  7714. source: "./media/characters/sovrim-terraquian/back.svg"
  7715. }
  7716. }
  7717. },
  7718. [
  7719. {
  7720. name: "Micro",
  7721. height: math.unit(2, "inches")
  7722. },
  7723. {
  7724. name: "Small",
  7725. height: math.unit(1, "meter")
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(Math.E, "meters"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(20, "meters")
  7735. },
  7736. {
  7737. name: "Macro+",
  7738. height: math.unit(400, "meters")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(7, "feet"),
  7747. weight: math.unit(489, "lbs"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/reece-silvermane/front.svg",
  7751. bottom: 0.02,
  7752. extra: 1
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(1.5, "miles"),
  7760. default: true
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(78, "kg"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/kane/front.svg",
  7773. extra: 978 / 899
  7774. }
  7775. },
  7776. },
  7777. [
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(2.1, "m"),
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(1, "km"),
  7785. default: true
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(200, "kg"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/tegon/front.svg",
  7798. bottom: 0.01,
  7799. extra: 1
  7800. }
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "Micro",
  7806. height: math.unit(1, "inch")
  7807. },
  7808. {
  7809. name: "Normal",
  7810. height: math.unit(6 + 3 / 12, "feet"),
  7811. default: true
  7812. },
  7813. {
  7814. name: "Macro",
  7815. height: math.unit(300, "feet")
  7816. },
  7817. {
  7818. name: "Megamacro",
  7819. height: math.unit(69, "miles")
  7820. },
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7825. {
  7826. side: {
  7827. height: math.unit(6, "feet"),
  7828. weight: math.unit(2304, "lbs"),
  7829. name: "Side",
  7830. image: {
  7831. source: "./media/characters/arcturax/side.svg",
  7832. extra: 790 / 376,
  7833. bottom: 0.01
  7834. }
  7835. },
  7836. },
  7837. [
  7838. {
  7839. name: "Micro",
  7840. height: math.unit(2, "inch")
  7841. },
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(6, "feet")
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(39, "feet"),
  7849. default: true
  7850. },
  7851. {
  7852. name: "Megamacro",
  7853. height: math.unit(7, "miles")
  7854. },
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(50, "lbs"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/sentri/front.svg",
  7866. extra: 1750 / 1570,
  7867. bottom: 0.025
  7868. }
  7869. },
  7870. frontAlt: {
  7871. height: math.unit(6, "feet"),
  7872. weight: math.unit(50, "lbs"),
  7873. name: "Front (Alt)",
  7874. image: {
  7875. source: "./media/characters/sentri/front-alt.svg",
  7876. extra: 1750 / 1570,
  7877. bottom: 0.025
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Normal",
  7884. height: math.unit(15, "feet"),
  7885. default: true
  7886. },
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(2500, "feet")
  7890. }
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(5 + 8 / 12, "feet"),
  7898. weight: math.unit(130, "lbs"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/corvin/front.svg",
  7902. extra: 1803 / 1629
  7903. }
  7904. },
  7905. frontShirt: {
  7906. height: math.unit(5 + 8 / 12, "feet"),
  7907. weight: math.unit(130, "lbs"),
  7908. name: "Front (Shirt)",
  7909. image: {
  7910. source: "./media/characters/corvin/front-shirt.svg",
  7911. extra: 1803 / 1629
  7912. }
  7913. },
  7914. frontPoncho: {
  7915. height: math.unit(5 + 8 / 12, "feet"),
  7916. weight: math.unit(130, "lbs"),
  7917. name: "Front (Poncho)",
  7918. image: {
  7919. source: "./media/characters/corvin/front-poncho.svg",
  7920. extra: 1803 / 1629
  7921. }
  7922. },
  7923. side: {
  7924. height: math.unit(5 + 8 / 12, "feet"),
  7925. weight: math.unit(130, "lbs"),
  7926. name: "Side",
  7927. image: {
  7928. source: "./media/characters/corvin/side.svg",
  7929. extra: 1012 / 945
  7930. }
  7931. },
  7932. back: {
  7933. height: math.unit(5 + 8 / 12, "feet"),
  7934. weight: math.unit(130, "lbs"),
  7935. name: "Back",
  7936. image: {
  7937. source: "./media/characters/corvin/back.svg",
  7938. extra: 1803 / 1629
  7939. }
  7940. },
  7941. },
  7942. [
  7943. {
  7944. name: "Micro",
  7945. height: math.unit(3, "inches")
  7946. },
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(5 + 8 / 12, "feet")
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(300, "feet"),
  7954. default: true
  7955. },
  7956. {
  7957. name: "Megamacro",
  7958. height: math.unit(500, "miles")
  7959. }
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(6, "feet"),
  7967. weight: math.unit(135, "lbs"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/q/front.svg",
  7971. extra: 854 / 752,
  7972. bottom: 0.005
  7973. }
  7974. },
  7975. back: {
  7976. height: math.unit(6, "feet"),
  7977. weight: math.unit(130, "lbs"),
  7978. name: "Back",
  7979. image: {
  7980. source: "./media/characters/q/back.svg",
  7981. extra: 854 / 752
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(90, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Extra Macro",
  7993. height: math.unit(300, "feet"),
  7994. },
  7995. {
  7996. name: "BIG WALF",
  7997. height: math.unit(750, "feet"),
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(150, "lbs"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/carley/front.svg",
  8010. extra: 3927 / 3540,
  8011. bottom: 29.2 / 735
  8012. }
  8013. }
  8014. },
  8015. [
  8016. {
  8017. name: "Normal",
  8018. height: math.unit(6 + 3 / 12, "feet")
  8019. },
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(185, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Megamacro",
  8027. height: math.unit(8, "miles"),
  8028. },
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(3, "feet"),
  8036. weight: math.unit(28, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/citrine/front.svg"
  8040. }
  8041. }
  8042. },
  8043. [
  8044. {
  8045. name: "Normal",
  8046. height: math.unit(3, "feet"),
  8047. default: true
  8048. }
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8053. {
  8054. front: {
  8055. height: math.unit(14, "feet"),
  8056. weight: math.unit(1450, "kg"),
  8057. capacity: math.unit(15, "people"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/aura-starwind/front.svg",
  8061. extra: 1455 / 1335
  8062. }
  8063. },
  8064. side: {
  8065. height: math.unit(14, "feet"),
  8066. weight: math.unit(1450, "kg"),
  8067. capacity: math.unit(15, "people"),
  8068. name: "Side",
  8069. image: {
  8070. source: "./media/characters/aura-starwind/side.svg",
  8071. extra: 1654 / 1497
  8072. }
  8073. },
  8074. taur: {
  8075. height: math.unit(18, "feet"),
  8076. weight: math.unit(5500, "kg"),
  8077. capacity: math.unit(50, "people"),
  8078. name: "Taur",
  8079. image: {
  8080. source: "./media/characters/aura-starwind/taur.svg",
  8081. extra: 1760 / 1650
  8082. }
  8083. },
  8084. feral: {
  8085. height: math.unit(46, "feet"),
  8086. weight: math.unit(25000, "kg"),
  8087. capacity: math.unit(120, "people"),
  8088. name: "Feral",
  8089. image: {
  8090. source: "./media/characters/aura-starwind/feral.svg"
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(14, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(50, "meters")
  8103. },
  8104. {
  8105. name: "Megamacro",
  8106. height: math.unit(5000, "meters")
  8107. },
  8108. {
  8109. name: "Gigamacro",
  8110. height: math.unit(100000, "kilometers")
  8111. },
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(2 + 7 / 12, "feet"),
  8119. weight: math.unit(32, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/rivet/front.svg",
  8123. extra: 1716 / 1658,
  8124. bottom: 0.03
  8125. }
  8126. },
  8127. foot: {
  8128. height: math.unit(0.551, "feet"),
  8129. name: "Rivet's Foot",
  8130. image: {
  8131. source: "./media/characters/rivet/foot.svg"
  8132. },
  8133. rename: true
  8134. }
  8135. },
  8136. [
  8137. {
  8138. name: "Micro",
  8139. height: math.unit(1.5, "inches"),
  8140. },
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(2 + 7 / 12, "feet"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(85, "feet")
  8149. },
  8150. {
  8151. name: "Megamacro",
  8152. height: math.unit(2.2, "km")
  8153. }
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(5 + 9 / 12, "feet"),
  8161. weight: math.unit(150, "lbs"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/coffee/front.svg",
  8165. extra: 3666 / 3032,
  8166. bottom: 0.04
  8167. }
  8168. },
  8169. foot: {
  8170. height: math.unit(1.29, "feet"),
  8171. name: "Foot",
  8172. image: {
  8173. source: "./media/characters/coffee/foot.svg"
  8174. }
  8175. },
  8176. },
  8177. [
  8178. {
  8179. name: "Micro",
  8180. height: math.unit(2, "inches"),
  8181. },
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(5 + 9 / 12, "feet"),
  8185. default: true
  8186. },
  8187. {
  8188. name: "Macro",
  8189. height: math.unit(800, "feet")
  8190. },
  8191. {
  8192. name: "Megamacro",
  8193. height: math.unit(25, "miles")
  8194. }
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(6, "feet"),
  8202. weight: math.unit(200, "lbs"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/chari-gal/front.svg",
  8206. extra: 1568 / 1385,
  8207. bottom: 0.047
  8208. }
  8209. },
  8210. gigantamax: {
  8211. height: math.unit(6 * 16, "feet"),
  8212. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8213. name: "Gigantamax",
  8214. image: {
  8215. source: "./media/characters/chari-gal/gigantamax.svg",
  8216. extra: 1124 / 888,
  8217. bottom: 0.03
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Normal",
  8224. height: math.unit(5 + 7 / 12, "feet")
  8225. },
  8226. {
  8227. name: "Macro",
  8228. height: math.unit(200, "feet"),
  8229. default: true
  8230. }
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8235. {
  8236. front: {
  8237. height: math.unit(6, "feet"),
  8238. weight: math.unit(150, "lbs"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/nova/front.svg",
  8242. extra: 5000 / 4722,
  8243. bottom: 0.02
  8244. }
  8245. }
  8246. },
  8247. [
  8248. {
  8249. name: "Micro-",
  8250. height: math.unit(0.8, "inches")
  8251. },
  8252. {
  8253. name: "Micro",
  8254. height: math.unit(2, "inches"),
  8255. default: true
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8261. {
  8262. front: {
  8263. height: math.unit(3 + 1 / 12, "feet"),
  8264. weight: math.unit(21.7, "lbs"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/argent/front.svg",
  8268. extra: 1471 / 1331,
  8269. bottom: 100.8 / 1575.5
  8270. }
  8271. }
  8272. },
  8273. [
  8274. {
  8275. name: "Micro",
  8276. height: math.unit(2, "inches")
  8277. },
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(3 + 1 / 12, "feet"),
  8281. default: true
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(120, "feet")
  8286. },
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8291. {
  8292. lamp: {
  8293. height: math.unit(7 * 1559 / 989, "feet"),
  8294. name: "Magic Lamp",
  8295. image: {
  8296. source: "./media/characters/mira-al-cul/lamp.svg",
  8297. extra: 1617 / 1559
  8298. }
  8299. },
  8300. front: {
  8301. height: math.unit(7, "feet"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/mira-al-cul/front.svg",
  8305. extra: 1044 / 990
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Heavily Restricted",
  8312. height: math.unit(7 * 1559 / 989, "feet")
  8313. },
  8314. {
  8315. name: "Freshly Freed",
  8316. height: math.unit(50 * 1559 / 989, "feet")
  8317. },
  8318. {
  8319. name: "World Encompassing",
  8320. height: math.unit(10000 * 1559 / 989, "miles")
  8321. },
  8322. {
  8323. name: "Galactic",
  8324. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8325. },
  8326. {
  8327. name: "Palmed Universe",
  8328. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8329. default: true
  8330. },
  8331. {
  8332. name: "Multiversal Matriarch",
  8333. height: math.unit(8.87e10, "yottameters")
  8334. },
  8335. {
  8336. name: "Void Mother",
  8337. height: math.unit(3.14e110, "yottaparsecs")
  8338. },
  8339. {
  8340. name: "Toying with Transcendence",
  8341. height: math.unit(1e307, "meters")
  8342. },
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8347. {
  8348. front: {
  8349. height: math.unit(17 + 1 / 12, "feet"),
  8350. weight: math.unit(476.2 * 5, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/kuro-shi-uchū/front.svg",
  8354. extra: 2329 / 1835,
  8355. bottom: 0.02
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Micro",
  8362. height: math.unit(2, "inches")
  8363. },
  8364. {
  8365. name: "Normal",
  8366. height: math.unit(12, "meters")
  8367. },
  8368. {
  8369. name: "Planetary",
  8370. height: math.unit(0.00929, "AU"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Universal",
  8375. height: math.unit(20, "gigaparsecs")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(5 + 2 / 12, "feet"),
  8384. weight: math.unit(120, "lbs"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/katherine/front.svg",
  8388. extra: 2075 / 1969
  8389. }
  8390. },
  8391. dress: {
  8392. height: math.unit(5 + 2 / 12, "feet"),
  8393. weight: math.unit(120, "lbs"),
  8394. name: "Dress",
  8395. image: {
  8396. source: "./media/characters/katherine/dress.svg",
  8397. extra: 2258 / 2064
  8398. }
  8399. },
  8400. },
  8401. [
  8402. {
  8403. name: "Micro",
  8404. height: math.unit(1, "inches"),
  8405. default: true
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(5 + 2 / 12, "feet")
  8410. },
  8411. {
  8412. name: "Macro",
  8413. height: math.unit(100, "meters")
  8414. },
  8415. {
  8416. name: "Megamacro",
  8417. height: math.unit(80, "miles")
  8418. },
  8419. ]
  8420. ))
  8421. characterMakers.push(() => makeCharacter(
  8422. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8423. {
  8424. front: {
  8425. height: math.unit(7 + 8 / 12, "feet"),
  8426. weight: math.unit(250, "lbs"),
  8427. name: "Front",
  8428. image: {
  8429. source: "./media/characters/yevis/front.svg",
  8430. extra: 1938 / 1755
  8431. }
  8432. }
  8433. },
  8434. [
  8435. {
  8436. name: "Mortal",
  8437. height: math.unit(7 + 8 / 12, "feet")
  8438. },
  8439. {
  8440. name: "Battle",
  8441. height: math.unit(25 + 11 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Wrath",
  8445. height: math.unit(1654 + 11 / 12, "feet")
  8446. },
  8447. {
  8448. name: "Planet Destroyer",
  8449. height: math.unit(12000, "miles")
  8450. },
  8451. {
  8452. name: "Galaxy Conqueror",
  8453. height: math.unit(1.45, "zettameters"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Universal War",
  8458. height: math.unit(184, "gigaparsecs")
  8459. },
  8460. {
  8461. name: "Eternity War",
  8462. height: math.unit(1.98e55, "yottaparsecs")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(5 + 8 / 12, "feet"),
  8471. weight: math.unit(63, "kg"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/xavier/front.svg",
  8475. extra: 944 / 883
  8476. }
  8477. },
  8478. frontStretch: {
  8479. height: math.unit(5 + 8 / 12, "feet"),
  8480. weight: math.unit(63, "kg"),
  8481. name: "Stretching",
  8482. image: {
  8483. source: "./media/characters/xavier/front-stretch.svg",
  8484. extra: 962 / 820
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(5 + 8 / 12, "feet")
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(100, "meters"),
  8496. default: true
  8497. },
  8498. {
  8499. name: "McLargeHuge",
  8500. height: math.unit(10, "miles")
  8501. },
  8502. ]
  8503. ))
  8504. characterMakers.push(() => makeCharacter(
  8505. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8506. {
  8507. front: {
  8508. height: math.unit(5 + 5 / 12, "feet"),
  8509. weight: math.unit(150, "lb"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/joshii/front.svg",
  8513. extra: 765 / 653,
  8514. bottom: 51 / 816
  8515. }
  8516. },
  8517. foot: {
  8518. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8519. name: "Foot",
  8520. image: {
  8521. source: "./media/characters/joshii/foot.svg"
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Micro",
  8528. height: math.unit(2, "inches"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Normal",
  8533. height: math.unit(5 + 5 / 12, "feet")
  8534. },
  8535. {
  8536. name: "Macro",
  8537. height: math.unit(785, "feet")
  8538. },
  8539. {
  8540. name: "Megamacro",
  8541. height: math.unit(24.5, "miles")
  8542. },
  8543. ]
  8544. ))
  8545. characterMakers.push(() => makeCharacter(
  8546. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8547. {
  8548. front: {
  8549. height: math.unit(6, "feet"),
  8550. weight: math.unit(150, "lb"),
  8551. name: "Front",
  8552. image: {
  8553. source: "./media/characters/goddess-elizabeth/front.svg",
  8554. extra: 1800 / 1525,
  8555. bottom: 0.005
  8556. }
  8557. },
  8558. foot: {
  8559. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8560. name: "Foot",
  8561. image: {
  8562. source: "./media/characters/goddess-elizabeth/foot.svg"
  8563. }
  8564. },
  8565. mouth: {
  8566. height: math.unit(6, "feet"),
  8567. name: "Mouth",
  8568. image: {
  8569. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8570. }
  8571. },
  8572. },
  8573. [
  8574. {
  8575. name: "Micro",
  8576. height: math.unit(12, "feet")
  8577. },
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(80, "miles"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(15000, "parsecs")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(5 + 9 / 12, "feet"),
  8594. weight: math.unit(144, "lb"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/kara/front.svg"
  8598. }
  8599. },
  8600. feet: {
  8601. height: math.unit(6 / 6.765, "feet"),
  8602. name: "Kara's Feet",
  8603. rename: true,
  8604. image: {
  8605. source: "./media/characters/kara/feet.svg"
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Normal",
  8612. height: math.unit(5 + 9 / 12, "feet")
  8613. },
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(174, "feet"),
  8617. default: true
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(18, "feet"),
  8626. weight: math.unit(4050, "lb"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/tyrone/front.svg",
  8630. extra: 2405 / 2270,
  8631. bottom: 182 / 2587
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Normal",
  8638. height: math.unit(18, "feet"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Macro",
  8643. height: math.unit(300, "feet")
  8644. },
  8645. {
  8646. name: "Megamacro",
  8647. height: math.unit(15, "km")
  8648. },
  8649. {
  8650. name: "Gigamacro",
  8651. height: math.unit(500, "km")
  8652. },
  8653. {
  8654. name: "Teramacro",
  8655. height: math.unit(0.5, "gigameters")
  8656. },
  8657. {
  8658. name: "Omnimacro",
  8659. height: math.unit(1e252, "yottauniverse")
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(7 + 8 / 12, "feet"),
  8668. weight: math.unit(120, "lb"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/danny/front.svg",
  8672. extra: 1490 / 1350
  8673. }
  8674. },
  8675. back: {
  8676. height: math.unit(7 + 8 / 12, "feet"),
  8677. weight: math.unit(120, "lb"),
  8678. name: "Back",
  8679. image: {
  8680. source: "./media/characters/danny/back.svg",
  8681. extra: 1490 / 1350
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(7 + 8 / 12, "feet"),
  8689. default: true
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8695. {
  8696. front: {
  8697. height: math.unit(3.5, "inches"),
  8698. weight: math.unit(19, "grams"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/mallow/front.svg",
  8702. extra: 471 / 431
  8703. }
  8704. },
  8705. back: {
  8706. height: math.unit(3.5, "inches"),
  8707. weight: math.unit(19, "grams"),
  8708. name: "Back",
  8709. image: {
  8710. source: "./media/characters/mallow/back.svg",
  8711. extra: 471 / 431
  8712. }
  8713. },
  8714. },
  8715. [
  8716. {
  8717. name: "Normal",
  8718. height: math.unit(3.5, "inches"),
  8719. default: true
  8720. },
  8721. ]
  8722. ))
  8723. characterMakers.push(() => makeCharacter(
  8724. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8725. {
  8726. front: {
  8727. height: math.unit(9, "feet"),
  8728. weight: math.unit(230, "kg"),
  8729. name: "Front",
  8730. image: {
  8731. source: "./media/characters/starry-aqua/front.svg"
  8732. }
  8733. },
  8734. back: {
  8735. height: math.unit(9, "feet"),
  8736. weight: math.unit(230, "kg"),
  8737. name: "Back",
  8738. image: {
  8739. source: "./media/characters/starry-aqua/back.svg"
  8740. }
  8741. },
  8742. hand: {
  8743. height: math.unit(9 * 0.1168, "feet"),
  8744. name: "Hand",
  8745. image: {
  8746. source: "./media/characters/starry-aqua/hand.svg"
  8747. }
  8748. },
  8749. foot: {
  8750. height: math.unit(9 * 0.18, "feet"),
  8751. name: "Foot",
  8752. image: {
  8753. source: "./media/characters/starry-aqua/foot.svg"
  8754. }
  8755. }
  8756. },
  8757. [
  8758. {
  8759. name: "Micro",
  8760. height: math.unit(3, "inches")
  8761. },
  8762. {
  8763. name: "Normal",
  8764. height: math.unit(9, "feet")
  8765. },
  8766. {
  8767. name: "Macro",
  8768. height: math.unit(300, "feet"),
  8769. default: true
  8770. },
  8771. {
  8772. name: "Megamacro",
  8773. height: math.unit(3200, "feet")
  8774. }
  8775. ]
  8776. ))
  8777. characterMakers.push(() => makeCharacter(
  8778. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8779. {
  8780. front: {
  8781. height: math.unit(6, "feet"),
  8782. weight: math.unit(230, "lb"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/luka/front.svg",
  8786. extra: 1,
  8787. bottom: 0.025
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(12 + 8 / 12, "feet"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Minimacro",
  8799. height: math.unit(20, "feet")
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(250, "feet")
  8804. },
  8805. {
  8806. name: "Megamacro",
  8807. height: math.unit(5, "miles")
  8808. },
  8809. {
  8810. name: "Gigamacro",
  8811. height: math.unit(8000, "miles")
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(150, "lb"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/natalie-nightring/front.svg",
  8824. extra: 1,
  8825. bottom: 0.06
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Uh Oh",
  8832. height: math.unit(0.1, "mm")
  8833. },
  8834. {
  8835. name: "Small",
  8836. height: math.unit(3, "inches")
  8837. },
  8838. {
  8839. name: "Human Scale",
  8840. height: math.unit(6, "feet")
  8841. },
  8842. {
  8843. name: "Librarian",
  8844. height: math.unit(50, "feet"),
  8845. default: true
  8846. },
  8847. {
  8848. name: "Immense",
  8849. height: math.unit(200, "miles")
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8855. {
  8856. front: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(180, "lbs"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/danni-rosie/front.svg",
  8862. extra: 1260 / 1128,
  8863. bottom: 0.022
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Micro",
  8870. height: math.unit(2, "inches"),
  8871. default: true
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(5 + 9 / 12, "feet"),
  8880. weight: math.unit(220, "lb"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/samantha-kruse/front.svg",
  8884. extra: (985 / 935),
  8885. bottom: 0.03
  8886. }
  8887. },
  8888. frontUndressed: {
  8889. height: math.unit(5 + 9 / 12, "feet"),
  8890. weight: math.unit(220, "lb"),
  8891. name: "Front (Undressed)",
  8892. image: {
  8893. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8894. extra: (973 / 923),
  8895. bottom: 0.025
  8896. }
  8897. },
  8898. fat: {
  8899. height: math.unit(5 + 9 / 12, "feet"),
  8900. weight: math.unit(900, "lb"),
  8901. name: "Front (Fat)",
  8902. image: {
  8903. source: "./media/characters/samantha-kruse/fat.svg",
  8904. extra: 2688 / 2561
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(5 + 9 / 12, "feet"),
  8912. default: true
  8913. }
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8918. {
  8919. back: {
  8920. height: math.unit(5 + 4 / 12, "feet"),
  8921. weight: math.unit(4963, "lb"),
  8922. name: "Back",
  8923. image: {
  8924. source: "./media/characters/amelia-rosie/back.svg",
  8925. extra: 1113 / 963,
  8926. bottom: 0.01
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Level 0",
  8933. height: math.unit(5 + 4 / 12, "feet")
  8934. },
  8935. {
  8936. name: "Level 1",
  8937. height: math.unit(164597, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Level 2",
  8942. height: math.unit(956243, "miles")
  8943. },
  8944. {
  8945. name: "Level 3",
  8946. height: math.unit(29421709423, "miles")
  8947. },
  8948. {
  8949. name: "Level 4",
  8950. height: math.unit(154, "lightyears")
  8951. },
  8952. {
  8953. name: "Level 5",
  8954. height: math.unit(4738272, "lightyears")
  8955. },
  8956. {
  8957. name: "Level 6",
  8958. height: math.unit(145787152896, "lightyears")
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(5 + 11 / 12, "feet"),
  8967. weight: math.unit(65, "kg"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/rook-kitara/front.svg",
  8971. extra: 1347 / 1274,
  8972. bottom: 0.005
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Totally Unfair",
  8979. height: math.unit(1.8, "mm")
  8980. },
  8981. {
  8982. name: "Lap Rookie",
  8983. height: math.unit(1.4, "feet")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(5 + 11 / 12, "feet"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "How Did This Happen",
  8992. height: math.unit(80, "miles")
  8993. }
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(7, "feet"),
  9001. weight: math.unit(300, "lb"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/pisces/front.svg",
  9005. extra: 2255 / 2115,
  9006. bottom: 0.03
  9007. }
  9008. },
  9009. back: {
  9010. height: math.unit(7, "feet"),
  9011. weight: math.unit(300, "lb"),
  9012. name: "Back",
  9013. image: {
  9014. source: "./media/characters/pisces/back.svg",
  9015. extra: 2146 / 2055,
  9016. bottom: 0.04
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(7, "feet"),
  9024. default: true
  9025. },
  9026. {
  9027. name: "Swimming Pool",
  9028. height: math.unit(12.2, "meters")
  9029. },
  9030. {
  9031. name: "Olympic Swimming Pool",
  9032. height: math.unit(56.3, "meters")
  9033. },
  9034. {
  9035. name: "Lake Superior",
  9036. height: math.unit(93900, "meters")
  9037. },
  9038. {
  9039. name: "Mediterranean Sea",
  9040. height: math.unit(644457, "meters")
  9041. },
  9042. {
  9043. name: "World's Oceans",
  9044. height: math.unit(4567491, "meters")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(2.3, "meters"),
  9053. weight: math.unit(120, "kg"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/zelas/front.svg"
  9057. }
  9058. },
  9059. side: {
  9060. height: math.unit(2.3, "meters"),
  9061. weight: math.unit(120, "kg"),
  9062. name: "Side",
  9063. image: {
  9064. source: "./media/characters/zelas/side.svg"
  9065. }
  9066. },
  9067. back: {
  9068. height: math.unit(2.3, "meters"),
  9069. weight: math.unit(120, "kg"),
  9070. name: "Back",
  9071. image: {
  9072. source: "./media/characters/zelas/back.svg"
  9073. }
  9074. },
  9075. foot: {
  9076. height: math.unit(1.116, "feet"),
  9077. name: "Foot",
  9078. image: {
  9079. source: "./media/characters/zelas/foot.svg"
  9080. }
  9081. },
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(2.3, "meters")
  9087. },
  9088. {
  9089. name: "Macro",
  9090. height: math.unit(30, "meters"),
  9091. default: true
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(1, "inch"),
  9100. weight: math.unit(0.21, "grams"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/talbot/front.svg",
  9104. extra: 594 / 544
  9105. }
  9106. },
  9107. },
  9108. [
  9109. {
  9110. name: "Micro",
  9111. height: math.unit(1, "inch"),
  9112. default: true
  9113. },
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9118. {
  9119. front: {
  9120. height: math.unit(3 + 3 / 12, "feet"),
  9121. weight: math.unit(51.8, "lb"),
  9122. name: "Front",
  9123. image: {
  9124. source: "./media/characters/fliss/front.svg",
  9125. extra: 840 / 640
  9126. }
  9127. },
  9128. },
  9129. [
  9130. {
  9131. name: "Teeny Tiny",
  9132. height: math.unit(1, "mm")
  9133. },
  9134. {
  9135. name: "Small",
  9136. height: math.unit(1, "inch"),
  9137. default: true
  9138. },
  9139. {
  9140. name: "Standard Sylveon",
  9141. height: math.unit(3 + 3 / 12, "feet")
  9142. },
  9143. {
  9144. name: "Large Nuisance",
  9145. height: math.unit(33, "feet")
  9146. },
  9147. {
  9148. name: "City Filler",
  9149. height: math.unit(3000, "feet")
  9150. },
  9151. {
  9152. name: "New Horizon",
  9153. height: math.unit(6000, "miles")
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9159. {
  9160. front: {
  9161. height: math.unit(5, "cm"),
  9162. weight: math.unit(1.94, "g"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/fleta/front.svg",
  9166. extra: 835 / 803
  9167. }
  9168. },
  9169. back: {
  9170. height: math.unit(5, "cm"),
  9171. weight: math.unit(1.94, "g"),
  9172. name: "Back",
  9173. image: {
  9174. source: "./media/characters/fleta/back.svg",
  9175. extra: 835 / 803
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Micro",
  9182. height: math.unit(5, "cm"),
  9183. default: true
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(6, "feet"),
  9192. weight: math.unit(225, "lb"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/dominic/front.svg",
  9196. extra: 1770 / 1620,
  9197. bottom: 0.025
  9198. }
  9199. },
  9200. back: {
  9201. height: math.unit(6, "feet"),
  9202. weight: math.unit(225, "lb"),
  9203. name: "Back",
  9204. image: {
  9205. source: "./media/characters/dominic/back.svg",
  9206. extra: 1745 / 1620,
  9207. bottom: 0.065
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Nano",
  9214. height: math.unit(0.1, "mm")
  9215. },
  9216. {
  9217. name: "Micro-",
  9218. height: math.unit(1, "mm")
  9219. },
  9220. {
  9221. name: "Micro",
  9222. height: math.unit(4, "inches")
  9223. },
  9224. {
  9225. name: "Normal",
  9226. height: math.unit(6 + 4 / 12, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(115, "feet")
  9232. },
  9233. {
  9234. name: "Macro+",
  9235. height: math.unit(955, "feet")
  9236. },
  9237. {
  9238. name: "Megamacro",
  9239. height: math.unit(8990, "feet")
  9240. },
  9241. {
  9242. name: "Gigmacro",
  9243. height: math.unit(9310, "miles")
  9244. },
  9245. {
  9246. name: "Teramacro",
  9247. height: math.unit(1567005010, "miles")
  9248. },
  9249. {
  9250. name: "Examacro",
  9251. height: math.unit(1425, "parsecs")
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(400, "feet"),
  9260. weight: math.unit(44444444, "lb"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/major-colonel/front.svg"
  9264. }
  9265. },
  9266. back: {
  9267. height: math.unit(400, "feet"),
  9268. weight: math.unit(44444444, "lb"),
  9269. name: "Back",
  9270. image: {
  9271. source: "./media/characters/major-colonel/back.svg"
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(400, "feet"),
  9279. default: true
  9280. },
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9285. {
  9286. catFront: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(120, "lb"),
  9289. name: "Front (Cat Side)",
  9290. image: {
  9291. source: "./media/characters/axel-lycan/cat-front.svg",
  9292. extra: 430 / 402,
  9293. bottom: 43 / 472.35
  9294. }
  9295. },
  9296. catBack: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(120, "lb"),
  9299. name: "Back (Cat Side)",
  9300. image: {
  9301. source: "./media/characters/axel-lycan/cat-back.svg",
  9302. extra: 447 / 419,
  9303. bottom: 23.3 / 469
  9304. }
  9305. },
  9306. wolfFront: {
  9307. height: math.unit(6, "feet"),
  9308. weight: math.unit(120, "lb"),
  9309. name: "Front (Wolf Side)",
  9310. image: {
  9311. source: "./media/characters/axel-lycan/wolf-front.svg",
  9312. extra: 485 / 456,
  9313. bottom: 19 / 504
  9314. }
  9315. },
  9316. wolfBack: {
  9317. height: math.unit(6, "feet"),
  9318. weight: math.unit(120, "lb"),
  9319. name: "Back (Wolf Side)",
  9320. image: {
  9321. source: "./media/characters/axel-lycan/wolf-back.svg",
  9322. extra: 475 / 438,
  9323. bottom: 39.2 / 514
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(1, "km"),
  9331. default: true
  9332. },
  9333. ]
  9334. ))
  9335. characterMakers.push(() => makeCharacter(
  9336. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9337. {
  9338. front: {
  9339. height: math.unit(5 + 9 / 12, "feet"),
  9340. weight: math.unit(175, "lb"),
  9341. name: "Front",
  9342. image: {
  9343. source: "./media/characters/vanrel-hyena/front.svg",
  9344. extra: 1086 / 1010,
  9345. bottom: 0.04
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(5 + 9 / 12, "feet"),
  9353. default: true
  9354. },
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(6, "feet"),
  9362. weight: math.unit(103, "lb"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/abbott-absol/front.svg",
  9366. extra: 2010 / 1842
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Megamicro",
  9373. height: math.unit(0.1, "mm")
  9374. },
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(1, "inch")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(6, "feet"),
  9382. default: true
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(264, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/hector/front.svg",
  9395. extra: 2280 / 2130,
  9396. bottom: 0.07
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(12.25, "foot"),
  9404. default: true
  9405. },
  9406. {
  9407. name: "Macro",
  9408. height: math.unit(160, "feet")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(150, "lb"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/sal/front.svg",
  9421. extra: 1846 / 1699,
  9422. bottom: 0.04
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Megamacro",
  9429. height: math.unit(10, "miles"),
  9430. default: true
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9436. {
  9437. front: {
  9438. height: math.unit(3, "meters"),
  9439. weight: math.unit(450, "kg"),
  9440. name: "front",
  9441. image: {
  9442. source: "./media/characters/ranger/front.svg",
  9443. extra: 2401 / 2243,
  9444. bottom: 0.05
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(3, "meters"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9458. {
  9459. front: {
  9460. height: math.unit(14, "feet"),
  9461. weight: math.unit(800, "kg"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/theresa/front.svg",
  9465. extra: 3575 / 3346,
  9466. bottom: 0.03
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(14, "feet"),
  9474. default: true
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(3, "kg"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/ine/front.svg",
  9487. extra: 678 / 539,
  9488. bottom: 0.023
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(2.265, "feet"),
  9496. default: true
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9502. {
  9503. front: {
  9504. height: math.unit(5, "feet"),
  9505. weight: math.unit(30, "kg"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/vial/front.svg",
  9509. extra: 1365 / 1277,
  9510. bottom: 0.04
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(5, "feet"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9524. {
  9525. side: {
  9526. height: math.unit(3.4, "meters"),
  9527. weight: math.unit(1000, "lb"),
  9528. name: "Side",
  9529. image: {
  9530. source: "./media/characters/rovoska/side.svg",
  9531. extra: 4403 / 1515
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Normal",
  9538. height: math.unit(3.4, "meters"),
  9539. default: true
  9540. },
  9541. ]
  9542. ))
  9543. characterMakers.push(() => makeCharacter(
  9544. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9545. {
  9546. front: {
  9547. height: math.unit(8, "feet"),
  9548. weight: math.unit(315, "lb"),
  9549. name: "Front",
  9550. image: {
  9551. source: "./media/characters/gunner-rotthbauer/front.svg"
  9552. }
  9553. },
  9554. back: {
  9555. height: math.unit(8, "feet"),
  9556. weight: math.unit(315, "lb"),
  9557. name: "Back",
  9558. image: {
  9559. source: "./media/characters/gunner-rotthbauer/back.svg"
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Micro",
  9566. height: math.unit(3.5, "inches")
  9567. },
  9568. {
  9569. name: "Normal",
  9570. height: math.unit(8, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Macro",
  9575. height: math.unit(250, "feet")
  9576. },
  9577. {
  9578. name: "Megamacro",
  9579. height: math.unit(1, "AU")
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(5 + 5 / 12, "feet"),
  9588. weight: math.unit(140, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/allatia/front.svg",
  9592. extra: 1227 / 1180,
  9593. bottom: 0.027
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(5 + 5 / 12, "feet")
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(250, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(8, "miles")
  9610. }
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(120, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/tene/front.svg",
  9622. extra: 1728 / 1578,
  9623. bottom: 0.022
  9624. }
  9625. },
  9626. stomping: {
  9627. height: math.unit(2.025, "meters"),
  9628. weight: math.unit(120, "lb"),
  9629. name: "Stomping",
  9630. image: {
  9631. source: "./media/characters/tene/stomping.svg",
  9632. extra: 938 / 873,
  9633. bottom: 0.01
  9634. }
  9635. },
  9636. sitting: {
  9637. height: math.unit(1, "meter"),
  9638. weight: math.unit(120, "lb"),
  9639. name: "Sitting",
  9640. image: {
  9641. source: "./media/characters/tene/sitting.svg",
  9642. extra: 437 / 415,
  9643. bottom: 0.1
  9644. }
  9645. },
  9646. feral: {
  9647. height: math.unit(3.9, "feet"),
  9648. weight: math.unit(250, "lb"),
  9649. name: "Feral",
  9650. image: {
  9651. source: "./media/characters/tene/feral.svg",
  9652. extra: 717 / 458,
  9653. bottom: 0.179
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(6, "feet")
  9661. },
  9662. {
  9663. name: "Macro",
  9664. height: math.unit(300, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(5, "miles")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9675. {
  9676. side: {
  9677. height: math.unit(6, "feet"),
  9678. name: "Side",
  9679. image: {
  9680. source: "./media/characters/evander/side.svg",
  9681. extra: 877 / 477
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(0.83, "meters"),
  9689. default: true
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(12, "feet"),
  9698. weight: math.unit(1000, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9702. extra: 1762 / 1611
  9703. }
  9704. },
  9705. back: {
  9706. height: math.unit(12, "feet"),
  9707. weight: math.unit(1000, "lb"),
  9708. name: "Back",
  9709. image: {
  9710. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9711. extra: 1762 / 1611
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(12, "feet"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Kaiju",
  9723. height: math.unit(150, "feet")
  9724. },
  9725. ]
  9726. ))
  9727. characterMakers.push(() => makeCharacter(
  9728. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9729. {
  9730. front: {
  9731. height: math.unit(6, "feet"),
  9732. weight: math.unit(150, "lb"),
  9733. name: "Front",
  9734. image: {
  9735. source: "./media/characters/zero-alurus/front.svg"
  9736. }
  9737. },
  9738. back: {
  9739. height: math.unit(6, "feet"),
  9740. weight: math.unit(150, "lb"),
  9741. name: "Back",
  9742. image: {
  9743. source: "./media/characters/zero-alurus/back.svg"
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(5 + 10 / 12, "feet")
  9751. },
  9752. {
  9753. name: "Macro",
  9754. height: math.unit(60, "feet"),
  9755. default: true
  9756. },
  9757. {
  9758. name: "Macro+",
  9759. height: math.unit(450, "feet")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(6, "feet"),
  9768. weight: math.unit(200, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/mega-shi/front.svg",
  9772. extra: 1279 / 1250,
  9773. bottom: 0.02
  9774. }
  9775. },
  9776. back: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(200, "lb"),
  9779. name: "Back",
  9780. image: {
  9781. source: "./media/characters/mega-shi/back.svg",
  9782. extra: 1279 / 1250,
  9783. bottom: 0.02
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Micro",
  9790. height: math.unit(16 + 6 / 12, "feet")
  9791. },
  9792. {
  9793. name: "Third Dimension",
  9794. height: math.unit(40, "meters")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(660, "feet"),
  9799. default: true
  9800. },
  9801. {
  9802. name: "Megamacro",
  9803. height: math.unit(10, "miles")
  9804. },
  9805. {
  9806. name: "Planetary Launch",
  9807. height: math.unit(500, "miles")
  9808. },
  9809. {
  9810. name: "Interstellar",
  9811. height: math.unit(1e9, "miles")
  9812. },
  9813. {
  9814. name: "Leaving the Universe",
  9815. height: math.unit(1, "gigaparsec")
  9816. },
  9817. {
  9818. name: "Travelling Universes",
  9819. height: math.unit(30e15, "parsecs")
  9820. },
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9825. {
  9826. front: {
  9827. height: math.unit(6, "feet"),
  9828. weight: math.unit(150, "lb"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/odyssey/front.svg",
  9832. extra: 1782 / 1582,
  9833. bottom: 0.01
  9834. }
  9835. },
  9836. side: {
  9837. height: math.unit(5.7, "feet"),
  9838. weight: math.unit(140, "lb"),
  9839. name: "Side",
  9840. image: {
  9841. source: "./media/characters/odyssey/side.svg",
  9842. extra: 6462 / 5700
  9843. }
  9844. },
  9845. },
  9846. [
  9847. {
  9848. name: "Normal",
  9849. height: math.unit(5 + 4 / 12, "feet")
  9850. },
  9851. {
  9852. name: "Macro",
  9853. height: math.unit(1, "km")
  9854. },
  9855. {
  9856. name: "Megamacro",
  9857. height: math.unit(3000, "km")
  9858. },
  9859. {
  9860. name: "Gigamacro",
  9861. height: math.unit(1, "AU"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Omniversal",
  9866. height: math.unit(100e14, "lightyears")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(300, "lb"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/mekuto/front.svg",
  9879. extra: 921 / 832,
  9880. bottom: 0.03
  9881. }
  9882. },
  9883. hand: {
  9884. height: math.unit(6 / 10.24, "feet"),
  9885. name: "Hand",
  9886. image: {
  9887. source: "./media/characters/mekuto/hand.svg"
  9888. }
  9889. },
  9890. foot: {
  9891. height: math.unit(6 / 5.05, "feet"),
  9892. name: "Foot",
  9893. image: {
  9894. source: "./media/characters/mekuto/foot.svg"
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Minimicro",
  9901. height: math.unit(0.2, "inches")
  9902. },
  9903. {
  9904. name: "Micro",
  9905. height: math.unit(1.5, "inches")
  9906. },
  9907. {
  9908. name: "Normal",
  9909. height: math.unit(5 + 11 / 12, "feet"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Minimacro",
  9914. height: math.unit(17 + 9 / 12, "feet")
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(177.5, "feet")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(152, "miles")
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9928. {
  9929. front: {
  9930. height: math.unit(6.5, "inches"),
  9931. weight: math.unit(13, "oz"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/dafydd-tomos/front.svg",
  9935. extra: 2990 / 2603,
  9936. bottom: 0.03
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(6.5, "inches"),
  9944. default: true
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9950. {
  9951. front: {
  9952. height: math.unit(6, "feet"),
  9953. weight: math.unit(150, "lb"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/splinter/front.svg",
  9957. extra: 2990 / 2882,
  9958. bottom: 0.04
  9959. }
  9960. },
  9961. back: {
  9962. height: math.unit(6, "feet"),
  9963. weight: math.unit(150, "lb"),
  9964. name: "Back",
  9965. image: {
  9966. source: "./media/characters/splinter/back.svg",
  9967. extra: 2990 / 2882,
  9968. bottom: 0.04
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(6, "feet")
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(230, "meters"),
  9980. default: true
  9981. },
  9982. ]
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(4 + 10 / 12, "feet"),
  9989. weight: math.unit(480, "lb"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/snow-gabumon/front.svg",
  9993. extra: 1140 / 963,
  9994. bottom: 0.058
  9995. }
  9996. },
  9997. back: {
  9998. height: math.unit(4 + 10 / 12, "feet"),
  9999. weight: math.unit(480, "lb"),
  10000. name: "Back",
  10001. image: {
  10002. source: "./media/characters/snow-gabumon/back.svg",
  10003. extra: 1115 / 962,
  10004. bottom: 0.041
  10005. }
  10006. },
  10007. frontUndresed: {
  10008. height: math.unit(4 + 10 / 12, "feet"),
  10009. weight: math.unit(480, "lb"),
  10010. name: "Front (Undressed)",
  10011. image: {
  10012. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10013. extra: 1061 / 960,
  10014. bottom: 0.045
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Micro",
  10021. height: math.unit(1, "inch")
  10022. },
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(4 + 10 / 12, "feet"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Macro",
  10030. height: math.unit(200, "feet")
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(120, "miles")
  10035. },
  10036. {
  10037. name: "Gigamacro",
  10038. height: math.unit(9800, "miles")
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(1.7, "meters"),
  10047. weight: math.unit(140, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/moody/front.svg",
  10051. extra: 3226 / 3007,
  10052. bottom: 0.087
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Micro",
  10059. height: math.unit(1, "mm")
  10060. },
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(1.7, "meters"),
  10064. default: true
  10065. },
  10066. {
  10067. name: "Macro",
  10068. height: math.unit(80, "meters")
  10069. },
  10070. {
  10071. name: "Macro+",
  10072. height: math.unit(500, "meters")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10078. {
  10079. front: {
  10080. height: math.unit(6, "feet"),
  10081. weight: math.unit(150, "lb"),
  10082. name: "Front",
  10083. image: {
  10084. source: "./media/characters/zyas/front.svg",
  10085. extra: 1180 / 1120,
  10086. bottom: 0.045
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(10, "feet"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Macro",
  10098. height: math.unit(500, "feet")
  10099. },
  10100. {
  10101. name: "Megamacro",
  10102. height: math.unit(5, "miles")
  10103. },
  10104. {
  10105. name: "Teramacro",
  10106. height: math.unit(150000, "miles")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(150, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/cuon/front.svg",
  10119. extra: 1390 / 1320,
  10120. bottom: 0.008
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Micro",
  10127. height: math.unit(3, "inches")
  10128. },
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(18 + 9 / 12, "feet"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(360, "feet")
  10137. },
  10138. {
  10139. name: "Megamacro",
  10140. height: math.unit(360, "miles")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(2.4, "meters"),
  10149. weight: math.unit(70, "kg"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/nyanuxk/front.svg",
  10153. extra: 1172 / 1084,
  10154. bottom: 0.065
  10155. }
  10156. },
  10157. side: {
  10158. height: math.unit(2.4, "meters"),
  10159. weight: math.unit(70, "kg"),
  10160. name: "Side",
  10161. image: {
  10162. source: "./media/characters/nyanuxk/side.svg",
  10163. extra: 1190 / 1132,
  10164. bottom: 0.007
  10165. }
  10166. },
  10167. back: {
  10168. height: math.unit(2.4, "meters"),
  10169. weight: math.unit(70, "kg"),
  10170. name: "Back",
  10171. image: {
  10172. source: "./media/characters/nyanuxk/back.svg",
  10173. extra: 1200 / 1141,
  10174. bottom: 0.015
  10175. }
  10176. },
  10177. foot: {
  10178. height: math.unit(0.52, "meters"),
  10179. name: "Foot",
  10180. image: {
  10181. source: "./media/characters/nyanuxk/foot.svg"
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(2, "cm")
  10189. },
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(2.4, "meters"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Smaller Macro",
  10197. height: math.unit(120, "meters")
  10198. },
  10199. {
  10200. name: "Bigger Macro",
  10201. height: math.unit(1.2, "km")
  10202. },
  10203. {
  10204. name: "Megamacro",
  10205. height: math.unit(15, "kilometers")
  10206. },
  10207. {
  10208. name: "Gigamacro",
  10209. height: math.unit(2000, "km")
  10210. },
  10211. {
  10212. name: "Teramacro",
  10213. height: math.unit(500000, "km")
  10214. },
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10219. {
  10220. side: {
  10221. height: math.unit(6, "feet"),
  10222. name: "Side",
  10223. image: {
  10224. source: "./media/characters/ailbhe/side.svg",
  10225. extra: 757 / 464,
  10226. bottom: 0.041
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(1.07, "meters"),
  10234. default: true
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(6, "feet"),
  10243. weight: math.unit(120, "kg"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/zevulfius/front.svg",
  10247. extra: 965 / 903
  10248. }
  10249. },
  10250. side: {
  10251. height: math.unit(6, "feet"),
  10252. weight: math.unit(120, "kg"),
  10253. name: "Side",
  10254. image: {
  10255. source: "./media/characters/zevulfius/side.svg",
  10256. extra: 939 / 900
  10257. }
  10258. },
  10259. back: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(120, "kg"),
  10262. name: "Back",
  10263. image: {
  10264. source: "./media/characters/zevulfius/back.svg",
  10265. extra: 918 / 854,
  10266. bottom: 0.005
  10267. }
  10268. },
  10269. foot: {
  10270. height: math.unit(6 / 3.72, "feet"),
  10271. name: "Foot",
  10272. image: {
  10273. source: "./media/characters/zevulfius/foot.svg"
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(750, "meters")
  10281. },
  10282. {
  10283. name: "Megamacro",
  10284. height: math.unit(20, "km"),
  10285. default: true
  10286. },
  10287. {
  10288. name: "Gigamacro",
  10289. height: math.unit(2000, "km")
  10290. },
  10291. {
  10292. name: "Teramacro",
  10293. height: math.unit(250000, "km")
  10294. },
  10295. ]
  10296. ))
  10297. characterMakers.push(() => makeCharacter(
  10298. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10299. {
  10300. front: {
  10301. height: math.unit(100, "feet"),
  10302. weight: math.unit(350, "kg"),
  10303. name: "Front",
  10304. image: {
  10305. source: "./media/characters/rikes/front.svg",
  10306. extra: 1565 / 1483,
  10307. bottom: 0.017
  10308. }
  10309. },
  10310. },
  10311. [
  10312. {
  10313. name: "Macro",
  10314. height: math.unit(100, "feet"),
  10315. default: true
  10316. },
  10317. ]
  10318. ))
  10319. characterMakers.push(() => makeCharacter(
  10320. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10321. {
  10322. anthro: {
  10323. height: math.unit(8, "feet"),
  10324. weight: math.unit(120, "kg"),
  10325. name: "Anthro",
  10326. image: {
  10327. source: "./media/characters/adam-silver-mane/anthro.svg",
  10328. extra: 5743 / 5339,
  10329. bottom: 0.07
  10330. }
  10331. },
  10332. taur: {
  10333. height: math.unit(16, "feet"),
  10334. weight: math.unit(1500, "kg"),
  10335. name: "Taur",
  10336. image: {
  10337. source: "./media/characters/adam-silver-mane/taur.svg",
  10338. extra: 1713 / 1571,
  10339. bottom: 0.01
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(8, "feet")
  10347. },
  10348. {
  10349. name: "Minimacro",
  10350. height: math.unit(80, "feet")
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(800, "feet"),
  10355. default: true
  10356. },
  10357. {
  10358. name: "Megamacro",
  10359. height: math.unit(8000, "feet")
  10360. },
  10361. {
  10362. name: "Gigamacro",
  10363. height: math.unit(800, "miles")
  10364. },
  10365. {
  10366. name: "Teramacro",
  10367. height: math.unit(80000, "miles")
  10368. },
  10369. {
  10370. name: "Celestial",
  10371. height: math.unit(8e6, "miles")
  10372. },
  10373. {
  10374. name: "Star Dragon",
  10375. height: math.unit(800000, "parsecs")
  10376. },
  10377. {
  10378. name: "Godly",
  10379. height: math.unit(800, "teraparsecs")
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(6, "feet"),
  10388. weight: math.unit(150, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/ky'owin/front.svg",
  10392. extra: 3888 / 3068,
  10393. bottom: 0.015
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(6 + 8 / 12, "feet")
  10401. },
  10402. {
  10403. name: "Large",
  10404. height: math.unit(68, "feet")
  10405. },
  10406. {
  10407. name: "Macro",
  10408. height: math.unit(132, "feet")
  10409. },
  10410. {
  10411. name: "Macro+",
  10412. height: math.unit(340, "feet")
  10413. },
  10414. {
  10415. name: "Macro++",
  10416. height: math.unit(680, "feet"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Megamacro",
  10421. height: math.unit(1, "mile")
  10422. },
  10423. {
  10424. name: "Megamacro+",
  10425. height: math.unit(10, "miles")
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10431. {
  10432. front: {
  10433. height: math.unit(4, "feet"),
  10434. weight: math.unit(50, "lb"),
  10435. name: "Front",
  10436. image: {
  10437. source: "./media/characters/mal/front.svg",
  10438. extra: 785 / 724,
  10439. bottom: 0.07
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Micro",
  10446. height: math.unit(4, "inches")
  10447. },
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(4, "feet"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Macro",
  10455. height: math.unit(200, "feet")
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10461. {
  10462. front: {
  10463. height: math.unit(6, "feet"),
  10464. weight: math.unit(150, "lb"),
  10465. name: "Front",
  10466. image: {
  10467. source: "./media/characters/jordan-deware/front.svg",
  10468. extra: 1191 / 1012
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Nano",
  10475. height: math.unit(0.01, "mm")
  10476. },
  10477. {
  10478. name: "Minimicro",
  10479. height: math.unit(1, "mm")
  10480. },
  10481. {
  10482. name: "Micro",
  10483. height: math.unit(0.5, "inches")
  10484. },
  10485. {
  10486. name: "Normal",
  10487. height: math.unit(4, "feet"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Minimacro",
  10492. height: math.unit(40, "meters")
  10493. },
  10494. {
  10495. name: "Small Macro",
  10496. height: math.unit(400, "meters")
  10497. },
  10498. {
  10499. name: "Macro",
  10500. height: math.unit(4, "miles")
  10501. },
  10502. {
  10503. name: "Megamacro",
  10504. height: math.unit(40, "miles")
  10505. },
  10506. {
  10507. name: "Megamacro+",
  10508. height: math.unit(400, "miles")
  10509. },
  10510. {
  10511. name: "Gigamacro",
  10512. height: math.unit(400000, "miles")
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10518. {
  10519. side: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(150, "lb"),
  10522. name: "Side",
  10523. image: {
  10524. source: "./media/characters/kimiko/side.svg",
  10525. extra: 600 / 358
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(15, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(220, "feet")
  10538. },
  10539. {
  10540. name: "Macro+",
  10541. height: math.unit(1450, "feet")
  10542. },
  10543. {
  10544. name: "Megamacro",
  10545. height: math.unit(11500, "feet")
  10546. },
  10547. {
  10548. name: "Gigamacro",
  10549. height: math.unit(9500, "miles")
  10550. },
  10551. {
  10552. name: "Teramacro",
  10553. height: math.unit(2208005005, "miles")
  10554. },
  10555. {
  10556. name: "Examacro",
  10557. height: math.unit(2750, "parsecs")
  10558. },
  10559. {
  10560. name: "Zettamacro",
  10561. height: math.unit(101500, "parsecs")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(70, "kg"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/andrew-sleepy/front.svg"
  10574. }
  10575. },
  10576. side: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(70, "kg"),
  10579. name: "Side",
  10580. image: {
  10581. source: "./media/characters/andrew-sleepy/side.svg"
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Micro",
  10588. height: math.unit(1, "mm"),
  10589. default: true
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(150, "lb"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/judio/front.svg",
  10602. extra: 1258 / 1110
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(5 + 6 / 12, "feet")
  10610. },
  10611. {
  10612. name: "Macro",
  10613. height: math.unit(1000, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(10, "miles")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(68, "kg"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/nomaxice/front.svg",
  10631. extra: 1498 / 1073,
  10632. bottom: 0.075
  10633. }
  10634. },
  10635. foot: {
  10636. height: math.unit(1.1, "feet"),
  10637. name: "Foot",
  10638. image: {
  10639. source: "./media/characters/nomaxice/foot.svg"
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Micro",
  10646. height: math.unit(8, "cm")
  10647. },
  10648. {
  10649. name: "Norm",
  10650. height: math.unit(1.82, "m")
  10651. },
  10652. {
  10653. name: "Norm+",
  10654. height: math.unit(8.8, "feet")
  10655. },
  10656. {
  10657. name: "Big",
  10658. height: math.unit(8, "meters"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(18, "meters")
  10664. },
  10665. {
  10666. name: "Macro+",
  10667. height: math.unit(88, "meters")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(12, "feet"),
  10676. weight: math.unit(1.5, "tons"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/dydros/front.svg",
  10680. extra: 863 / 800,
  10681. bottom: 0.015
  10682. }
  10683. },
  10684. back: {
  10685. height: math.unit(12, "feet"),
  10686. weight: math.unit(1.5, "tons"),
  10687. name: "Back",
  10688. image: {
  10689. source: "./media/characters/dydros/back.svg",
  10690. extra: 900 / 843,
  10691. bottom: 0.005
  10692. }
  10693. },
  10694. },
  10695. [
  10696. {
  10697. name: "Normal",
  10698. height: math.unit(12, "feet"),
  10699. default: true
  10700. },
  10701. ]
  10702. ))
  10703. characterMakers.push(() => makeCharacter(
  10704. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10705. {
  10706. front: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(100, "kg"),
  10709. name: "Front",
  10710. image: {
  10711. source: "./media/characters/riggi/front.svg",
  10712. extra: 5787 / 5303
  10713. }
  10714. },
  10715. hyper: {
  10716. height: math.unit(6 * 5 / 3, "feet"),
  10717. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10718. name: "Hyper",
  10719. image: {
  10720. source: "./media/characters/riggi/hyper.svg",
  10721. extra: 3595 / 3485
  10722. }
  10723. },
  10724. },
  10725. [
  10726. {
  10727. name: "Small Macro",
  10728. height: math.unit(50, "feet")
  10729. },
  10730. {
  10731. name: "Default",
  10732. height: math.unit(200, "feet"),
  10733. default: true
  10734. },
  10735. {
  10736. name: "Loom",
  10737. height: math.unit(10000, "feet")
  10738. },
  10739. {
  10740. name: "Cruising Altitude",
  10741. height: math.unit(30000, "feet")
  10742. },
  10743. {
  10744. name: "Megamacro",
  10745. height: math.unit(100, "miles")
  10746. },
  10747. {
  10748. name: "Continent Sized",
  10749. height: math.unit(2800, "miles")
  10750. },
  10751. {
  10752. name: "Earth Sized",
  10753. height: math.unit(8000, "miles")
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(250, "lb"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/alexi/front.svg",
  10766. extra: 3483 / 3291,
  10767. bottom: 0.04
  10768. }
  10769. },
  10770. back: {
  10771. height: math.unit(6, "feet"),
  10772. weight: math.unit(250, "lb"),
  10773. name: "Back",
  10774. image: {
  10775. source: "./media/characters/alexi/back.svg",
  10776. extra: 3533 / 3356,
  10777. bottom: 0.021
  10778. }
  10779. },
  10780. frontTransforming: {
  10781. height: math.unit(8.58, "feet"),
  10782. weight: math.unit(1300, "lb"),
  10783. name: "Transforming",
  10784. image: {
  10785. source: "./media/characters/alexi/front-transforming.svg",
  10786. extra: 437 / 409,
  10787. bottom: 19 / 458.66
  10788. }
  10789. },
  10790. frontTransformed: {
  10791. height: math.unit(12.5, "feet"),
  10792. weight: math.unit(4000, "lb"),
  10793. name: "Transformed",
  10794. image: {
  10795. source: "./media/characters/alexi/front-transformed.svg",
  10796. extra: 639 / 614,
  10797. bottom: 30.55 / 671
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Normal",
  10804. height: math.unit(14, "feet"),
  10805. default: true
  10806. },
  10807. {
  10808. name: "Minimacro",
  10809. height: math.unit(30, "meters")
  10810. },
  10811. {
  10812. name: "Macro",
  10813. height: math.unit(500, "meters")
  10814. },
  10815. {
  10816. name: "Megamacro",
  10817. height: math.unit(9000, "km")
  10818. },
  10819. {
  10820. name: "Teramacro",
  10821. height: math.unit(384000, "km")
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10827. {
  10828. front: {
  10829. height: math.unit(6, "feet"),
  10830. weight: math.unit(150, "lb"),
  10831. name: "Front",
  10832. image: {
  10833. source: "./media/characters/kayroo/front.svg",
  10834. extra: 1153 / 1038,
  10835. bottom: 0.06
  10836. }
  10837. },
  10838. foot: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(150, "lb"),
  10841. name: "Foot",
  10842. image: {
  10843. source: "./media/characters/kayroo/foot.svg"
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Normal",
  10850. height: math.unit(8, "feet"),
  10851. default: true
  10852. },
  10853. {
  10854. name: "Minimacro",
  10855. height: math.unit(250, "feet")
  10856. },
  10857. {
  10858. name: "Macro",
  10859. height: math.unit(2800, "feet")
  10860. },
  10861. {
  10862. name: "Megamacro",
  10863. height: math.unit(5200, "feet")
  10864. },
  10865. {
  10866. name: "Gigamacro",
  10867. height: math.unit(27000, "feet")
  10868. },
  10869. {
  10870. name: "Omega",
  10871. height: math.unit(45000, "feet")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10877. {
  10878. front: {
  10879. height: math.unit(18, "feet"),
  10880. weight: math.unit(5800, "lb"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/rhys/front.svg",
  10884. extra: 3386 / 3090,
  10885. bottom: 0.07
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(18, "feet"),
  10893. default: true
  10894. },
  10895. {
  10896. name: "Working Size",
  10897. height: math.unit(200, "feet")
  10898. },
  10899. {
  10900. name: "Demolition Size",
  10901. height: math.unit(2000, "feet")
  10902. },
  10903. {
  10904. name: "Maximum Licensed Size",
  10905. height: math.unit(5, "miles")
  10906. },
  10907. {
  10908. name: "Maximum Observed Size",
  10909. height: math.unit(10, "yottameters")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(250, "lb"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/toto/front.svg",
  10922. extra: 527 / 479,
  10923. bottom: 0.05
  10924. }
  10925. },
  10926. },
  10927. [
  10928. {
  10929. name: "Micro",
  10930. height: math.unit(3, "feet")
  10931. },
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(10, "feet")
  10935. },
  10936. {
  10937. name: "Macro",
  10938. height: math.unit(150, "feet"),
  10939. default: true
  10940. },
  10941. {
  10942. name: "Megamacro",
  10943. height: math.unit(1200, "feet")
  10944. },
  10945. ]
  10946. ))
  10947. characterMakers.push(() => makeCharacter(
  10948. { name: "King", species: ["lion"], tags: ["anthro"] },
  10949. {
  10950. back: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(150, "lb"),
  10953. name: "Back",
  10954. image: {
  10955. source: "./media/characters/king/back.svg"
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Micro",
  10962. height: math.unit(2, "inches")
  10963. },
  10964. {
  10965. name: "Normal",
  10966. height: math.unit(8, "feet")
  10967. },
  10968. {
  10969. name: "Macro",
  10970. height: math.unit(200, "feet"),
  10971. default: true
  10972. },
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(50, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10981. {
  10982. anthro: {
  10983. height: math.unit(6 + 5 / 12, "feet"),
  10984. weight: math.unit(280, "lb"),
  10985. name: "Anthro",
  10986. image: {
  10987. source: "./media/characters/cordite/anthro.svg",
  10988. extra: 1986 / 1905,
  10989. bottom: 0.025
  10990. }
  10991. },
  10992. feral: {
  10993. height: math.unit(2, "feet"),
  10994. weight: math.unit(90, "lb"),
  10995. name: "Feral",
  10996. image: {
  10997. source: "./media/characters/cordite/feral.svg",
  10998. extra: 1260 / 755,
  10999. bottom: 0.05
  11000. }
  11001. },
  11002. },
  11003. [
  11004. {
  11005. name: "Normal",
  11006. height: math.unit(6 + 5 / 12, "feet"),
  11007. default: true
  11008. },
  11009. ]
  11010. ))
  11011. characterMakers.push(() => makeCharacter(
  11012. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11013. {
  11014. front: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(150, "lb"),
  11017. name: "Front",
  11018. image: {
  11019. source: "./media/characters/pianostrong/front.svg",
  11020. extra: 6577 / 6254,
  11021. bottom: 0.02
  11022. }
  11023. },
  11024. side: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(150, "lb"),
  11027. name: "Side",
  11028. image: {
  11029. source: "./media/characters/pianostrong/side.svg",
  11030. extra: 6106 / 5730
  11031. }
  11032. },
  11033. back: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Back",
  11037. image: {
  11038. source: "./media/characters/pianostrong/back.svg",
  11039. extra: 6085 / 5733,
  11040. bottom: 0.01
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Macro",
  11047. height: math.unit(100, "feet")
  11048. },
  11049. {
  11050. name: "Macro+",
  11051. height: math.unit(300, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Macro++",
  11056. height: math.unit(1000, "feet")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(150, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/kona/front.svg",
  11069. extra: 2960 / 2629,
  11070. bottom: 0.005
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Normal",
  11077. height: math.unit(11 + 8 / 12, "feet")
  11078. },
  11079. {
  11080. name: "Macro",
  11081. height: math.unit(850, "feet"),
  11082. default: true
  11083. },
  11084. {
  11085. name: "Macro+",
  11086. height: math.unit(1.5, "km"),
  11087. default: true
  11088. },
  11089. {
  11090. name: "Megamacro",
  11091. height: math.unit(80, "miles")
  11092. },
  11093. {
  11094. name: "Gigamacro",
  11095. height: math.unit(3500, "miles")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11101. {
  11102. side: {
  11103. height: math.unit(1.9, "meters"),
  11104. weight: math.unit(326, "kg"),
  11105. name: "Side",
  11106. image: {
  11107. source: "./media/characters/levi/side.svg",
  11108. extra: 1704 / 1334,
  11109. bottom: 0.02
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(1.9, "meters"),
  11117. default: true
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(20, "meters")
  11122. },
  11123. {
  11124. name: "Macro+",
  11125. height: math.unit(200, "meters")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(2, "km")
  11130. },
  11131. {
  11132. name: "Megamacro+",
  11133. height: math.unit(20, "km")
  11134. },
  11135. {
  11136. name: "Gigamacro",
  11137. height: math.unit(2500, "km")
  11138. },
  11139. {
  11140. name: "Gigamacro+",
  11141. height: math.unit(120000, "km")
  11142. },
  11143. {
  11144. name: "Teramacro",
  11145. height: math.unit(7.77e6, "km")
  11146. },
  11147. ]
  11148. ))
  11149. characterMakers.push(() => makeCharacter(
  11150. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11151. {
  11152. front: {
  11153. height: math.unit(6 + 4 / 12, "feet"),
  11154. weight: math.unit(188, "lb"),
  11155. name: "Front",
  11156. image: {
  11157. source: "./media/characters/bmc/front.svg",
  11158. extra: 1067 / 1022,
  11159. bottom: 0.047
  11160. }
  11161. },
  11162. },
  11163. [
  11164. {
  11165. name: "Human-sized",
  11166. height: math.unit(6 + 4 / 12, "feet")
  11167. },
  11168. {
  11169. name: "Small",
  11170. height: math.unit(250, "feet")
  11171. },
  11172. {
  11173. name: "Normal",
  11174. height: math.unit(1250, "feet"),
  11175. default: true
  11176. },
  11177. {
  11178. name: "Good Day",
  11179. height: math.unit(88, "miles")
  11180. },
  11181. {
  11182. name: "Largest Measured Size",
  11183. height: math.unit(11.2e6, "lightyears")
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(20, "feet"),
  11192. weight: math.unit(2016, "kg"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/sven-the-kaiju/front.svg",
  11196. extra: 1277/1250,
  11197. bottom: 35/1312
  11198. }
  11199. },
  11200. mouth: {
  11201. height: math.unit(1.85, "feet"),
  11202. name: "Mouth",
  11203. image: {
  11204. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Fairy",
  11211. height: math.unit(6, "inches")
  11212. },
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(20, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Rampage",
  11220. height: math.unit(200, "feet")
  11221. },
  11222. {
  11223. name: "Archfey Forest Guardian",
  11224. height: math.unit(1, "mile")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(4, "meters"),
  11233. weight: math.unit(2, "tons"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/marik/front.svg",
  11237. extra: 1057 / 1003,
  11238. bottom: 0.08
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(4, "meters"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(20, "meters")
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(50, "km")
  11255. },
  11256. {
  11257. name: "Gigamacro",
  11258. height: math.unit(100, "km")
  11259. },
  11260. {
  11261. name: "Alpha Macro",
  11262. height: math.unit(7.88e7, "yottameters")
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(6, "feet"),
  11271. weight: math.unit(110, "lb"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/mel/front.svg",
  11275. extra: 736 / 617,
  11276. bottom: 0.017
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Pico",
  11283. height: math.unit(3, "pm")
  11284. },
  11285. {
  11286. name: "Nano",
  11287. height: math.unit(3, "nm")
  11288. },
  11289. {
  11290. name: "Micro",
  11291. height: math.unit(0.3, "mm"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Micro+",
  11296. height: math.unit(3, "mm")
  11297. },
  11298. {
  11299. name: "Normal",
  11300. height: math.unit(5 + 10.5 / 12, "feet")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11306. {
  11307. kaiju: {
  11308. height: math.unit(1.75, "meters"),
  11309. weight: math.unit(55, "kg"),
  11310. name: "Kaiju",
  11311. image: {
  11312. source: "./media/characters/lykonous/kaiju.svg",
  11313. extra: 1055 / 946,
  11314. bottom: 0.135
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(2.5, "meters"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Kaiju Dragon",
  11326. height: math.unit(60, "meters")
  11327. },
  11328. {
  11329. name: "Mega Kaiju",
  11330. height: math.unit(120, "km")
  11331. },
  11332. {
  11333. name: "Giga Kaiju",
  11334. height: math.unit(200, "megameters")
  11335. },
  11336. {
  11337. name: "Terra Kaiju",
  11338. height: math.unit(400, "gigameters")
  11339. },
  11340. {
  11341. name: "Kaiju Dragon God",
  11342. height: math.unit(13000, "exaparsecs")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(150, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/blü/front.svg",
  11355. extra: 1883 / 1564,
  11356. bottom: 0.031
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(13, "feet"),
  11364. default: true
  11365. },
  11366. {
  11367. name: "Big Boi",
  11368. height: math.unit(150, "meters")
  11369. },
  11370. {
  11371. name: "Mini Stomper",
  11372. height: math.unit(300, "meters")
  11373. },
  11374. {
  11375. name: "Macro",
  11376. height: math.unit(1000, "meters")
  11377. },
  11378. {
  11379. name: "Megamacro",
  11380. height: math.unit(11000, "meters")
  11381. },
  11382. {
  11383. name: "Gigamacro",
  11384. height: math.unit(11000, "km")
  11385. },
  11386. {
  11387. name: "Teramacro",
  11388. height: math.unit(420000, "km")
  11389. },
  11390. {
  11391. name: "Examacro",
  11392. height: math.unit(120, "parsecs")
  11393. },
  11394. {
  11395. name: "God Tho",
  11396. height: math.unit(98000000000, "parsecs")
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11402. {
  11403. taurFront: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(200, "lb"),
  11406. name: "Taur (Front)",
  11407. image: {
  11408. source: "./media/characters/scales/taur-front.svg",
  11409. extra: 1,
  11410. bottom: 0.05
  11411. }
  11412. },
  11413. taurBack: {
  11414. height: math.unit(6, "feet"),
  11415. weight: math.unit(200, "lb"),
  11416. name: "Taur (Back)",
  11417. image: {
  11418. source: "./media/characters/scales/taur-back.svg",
  11419. extra: 1,
  11420. bottom: 0.08
  11421. }
  11422. },
  11423. anthro: {
  11424. height: math.unit(6 * 7 / 12, "feet"),
  11425. weight: math.unit(100, "lb"),
  11426. name: "Anthro",
  11427. image: {
  11428. source: "./media/characters/scales/anthro.svg",
  11429. extra: 1,
  11430. bottom: 0.06
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(12, "feet"),
  11438. default: true
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/koragos/front.svg",
  11451. extra: 841 / 794,
  11452. bottom: 0.035
  11453. }
  11454. },
  11455. back: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(150, "lb"),
  11458. name: "Back",
  11459. image: {
  11460. source: "./media/characters/koragos/back.svg",
  11461. extra: 841 / 810,
  11462. bottom: 0.022
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(6 + 11 / 12, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(490, "feet")
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(10, "miles")
  11479. },
  11480. {
  11481. name: "Gigamacro",
  11482. height: math.unit(50, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(6, "feet"),
  11491. weight: math.unit(250, "lb"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/xylrem/front.svg",
  11495. extra: 3323 / 3050,
  11496. bottom: 0.065
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Micro",
  11503. height: math.unit(4, "feet")
  11504. },
  11505. {
  11506. name: "Normal",
  11507. height: math.unit(16, "feet"),
  11508. default: true
  11509. },
  11510. {
  11511. name: "Macro",
  11512. height: math.unit(2720, "feet")
  11513. },
  11514. {
  11515. name: "Megamacro",
  11516. height: math.unit(25000, "miles")
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(8, "feet"),
  11525. weight: math.unit(250, "kg"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/ikideru/front.svg",
  11529. extra: 930 / 870,
  11530. bottom: 0.087
  11531. }
  11532. },
  11533. back: {
  11534. height: math.unit(8, "feet"),
  11535. weight: math.unit(250, "kg"),
  11536. name: "Back",
  11537. image: {
  11538. source: "./media/characters/ikideru/back.svg",
  11539. extra: 919 / 852,
  11540. bottom: 0.055
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Rare",
  11547. height: math.unit(8, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Playful Loom",
  11552. height: math.unit(80, "feet")
  11553. },
  11554. {
  11555. name: "City Leaner",
  11556. height: math.unit(230, "feet")
  11557. },
  11558. {
  11559. name: "Megamacro",
  11560. height: math.unit(2500, "feet")
  11561. },
  11562. {
  11563. name: "Gigamacro",
  11564. height: math.unit(26400, "feet")
  11565. },
  11566. {
  11567. name: "Tectonic Shifter",
  11568. height: math.unit(1.7, "megameters")
  11569. },
  11570. {
  11571. name: "Planet Carer",
  11572. height: math.unit(21, "megameters")
  11573. },
  11574. {
  11575. name: "God",
  11576. height: math.unit(11157.22, "parsecs")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(120, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/neo/front.svg"
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Micro",
  11595. height: math.unit(2, "inches"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Human Size",
  11600. height: math.unit(5 + 8 / 12, "feet")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(13 + 10 / 12, "feet"),
  11609. weight: math.unit(5320, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/chauncey-chantz/front.svg",
  11613. extra: 1587 / 1435,
  11614. bottom: 0.02
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(13 + 10 / 12, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(45, "feet")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(250, "miles")
  11631. },
  11632. {
  11633. name: "Planetary",
  11634. height: math.unit(10000, "miles")
  11635. },
  11636. {
  11637. name: "Galactic",
  11638. height: math.unit(40000, "parsecs")
  11639. },
  11640. {
  11641. name: "Universal",
  11642. height: math.unit(1, "yottameter")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(150, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/epifox/front.svg",
  11655. extra: 1,
  11656. bottom: 0.075
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(6, "inches")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(12, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(3810, "feet")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(500, "miles")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11682. {
  11683. front: {
  11684. height: math.unit(1.8796, "m"),
  11685. weight: math.unit(230, "lb"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/colin-t/front.svg",
  11689. extra: 1272 / 1193,
  11690. bottom: 0.07
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Micro",
  11697. height: math.unit(0.571, "meters")
  11698. },
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(1.8796, "meters"),
  11702. default: true
  11703. },
  11704. {
  11705. name: "Tall",
  11706. height: math.unit(4, "meters")
  11707. },
  11708. {
  11709. name: "Macro",
  11710. height: math.unit(67.241, "meters")
  11711. },
  11712. {
  11713. name: "Megamacro",
  11714. height: math.unit(371.856, "meters")
  11715. },
  11716. {
  11717. name: "Planetary",
  11718. height: math.unit(12631.5689, "km")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(1.85, "meters"),
  11727. weight: math.unit(80, "kg"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/matvei/front.svg",
  11731. extra: 614 / 594,
  11732. bottom: 0.01
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(1.85, "meters"),
  11740. default: true
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(5 + 9 / 12, "feet"),
  11749. weight: math.unit(70, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/quincy/front.svg",
  11753. extra: 3041 / 2751
  11754. }
  11755. },
  11756. back: {
  11757. height: math.unit(5 + 9 / 12, "feet"),
  11758. weight: math.unit(70, "lb"),
  11759. name: "Back",
  11760. image: {
  11761. source: "./media/characters/quincy/back.svg",
  11762. extra: 3041 / 2751
  11763. }
  11764. },
  11765. flying: {
  11766. height: math.unit(5 + 4 / 12, "feet"),
  11767. weight: math.unit(70, "lb"),
  11768. name: "Flying",
  11769. image: {
  11770. source: "./media/characters/quincy/flying.svg",
  11771. extra: 1044 / 930
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Micro",
  11778. height: math.unit(3, "cm")
  11779. },
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(5 + 9 / 12, "feet")
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(200, "meters"),
  11787. default: true
  11788. },
  11789. {
  11790. name: "Megamacro",
  11791. height: math.unit(1000, "meters")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(3 + 11/12, "feet"),
  11800. weight: math.unit(50, "lb"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/vanrel/front.svg",
  11804. extra: 1104/949,
  11805. bottom: 52/1156
  11806. }
  11807. },
  11808. back: {
  11809. height: math.unit(3 + 11/12, "feet"),
  11810. weight: math.unit(50, "lb"),
  11811. name: "Back",
  11812. image: {
  11813. source: "./media/characters/vanrel/back.svg",
  11814. extra: 1119/976,
  11815. bottom: 37/1156
  11816. }
  11817. },
  11818. tome: {
  11819. height: math.unit(1.35, "feet"),
  11820. weight: math.unit(10, "lb"),
  11821. name: "Vanrel's Tome",
  11822. rename: true,
  11823. image: {
  11824. source: "./media/characters/vanrel/tome.svg"
  11825. }
  11826. },
  11827. beans: {
  11828. height: math.unit(0.89, "feet"),
  11829. name: "Beans",
  11830. image: {
  11831. source: "./media/characters/vanrel/beans.svg"
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(3 + 11/12, "feet"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(7 + 5 / 12, "feet"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/kuiper-vanrel/front.svg",
  11851. extra: 1219/1169,
  11852. bottom: 69/1288
  11853. }
  11854. },
  11855. back: {
  11856. height: math.unit(7 + 5 / 12, "feet"),
  11857. name: "Back",
  11858. image: {
  11859. source: "./media/characters/kuiper-vanrel/back.svg",
  11860. extra: 1236/1193,
  11861. bottom: 27/1263
  11862. }
  11863. },
  11864. foot: {
  11865. height: math.unit(0.55, "meters"),
  11866. name: "Foot",
  11867. image: {
  11868. source: "./media/characters/kuiper-vanrel/foot.svg",
  11869. }
  11870. },
  11871. battle: {
  11872. height: math.unit(6.824, "feet"),
  11873. name: "Battle",
  11874. image: {
  11875. source: "./media/characters/kuiper-vanrel/battle.svg",
  11876. extra: 1466 / 1327,
  11877. bottom: 29 / 1492.5
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(7 + 5 / 12, "feet"),
  11885. default: true
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(8 + 5 / 12, "feet"),
  11894. name: "Front",
  11895. image: {
  11896. source: "./media/characters/keset-vanrel/front.svg",
  11897. extra: 1231/1148,
  11898. bottom: 82/1313
  11899. }
  11900. },
  11901. back: {
  11902. height: math.unit(8 + 5 / 12, "feet"),
  11903. name: "Back",
  11904. image: {
  11905. source: "./media/characters/keset-vanrel/back.svg",
  11906. extra: 1240/1174,
  11907. bottom: 33/1273
  11908. }
  11909. },
  11910. hand: {
  11911. height: math.unit(0.6, "meters"),
  11912. name: "Hand",
  11913. image: {
  11914. source: "./media/characters/keset-vanrel/hand.svg"
  11915. }
  11916. },
  11917. foot: {
  11918. height: math.unit(0.94978, "meters"),
  11919. name: "Foot",
  11920. image: {
  11921. source: "./media/characters/keset-vanrel/foot.svg"
  11922. }
  11923. },
  11924. battle: {
  11925. height: math.unit(7.408, "feet"),
  11926. name: "Battle",
  11927. image: {
  11928. source: "./media/characters/keset-vanrel/battle.svg",
  11929. extra: 1890 / 1386,
  11930. bottom: 73.28 / 1970
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Normal",
  11937. height: math.unit(8 + 5 / 12, "feet"),
  11938. default: true
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(150, "lb"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/neos/front.svg",
  11951. extra: 1696 / 992,
  11952. bottom: 0.14
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(54, "cm"),
  11960. default: true
  11961. },
  11962. {
  11963. name: "Macro",
  11964. height: math.unit(100, "m")
  11965. },
  11966. {
  11967. name: "Megamacro",
  11968. height: math.unit(10, "km")
  11969. },
  11970. {
  11971. name: "Megamacro+",
  11972. height: math.unit(100, "km")
  11973. },
  11974. {
  11975. name: "Gigamacro",
  11976. height: math.unit(100, "Mm")
  11977. },
  11978. {
  11979. name: "Teramacro",
  11980. height: math.unit(100, "Gm")
  11981. },
  11982. {
  11983. name: "Examacro",
  11984. height: math.unit(100, "Em")
  11985. },
  11986. {
  11987. name: "Godly",
  11988. height: math.unit(10000, "Ym")
  11989. },
  11990. {
  11991. name: "Beyond Godly",
  11992. height: math.unit(25, "multiverses")
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11998. {
  11999. feminine: {
  12000. height: math.unit(5, "feet"),
  12001. weight: math.unit(100, "lb"),
  12002. name: "Feminine",
  12003. image: {
  12004. source: "./media/characters/sammy-mouse/feminine.svg",
  12005. extra: 2526 / 2425,
  12006. bottom: 0.123
  12007. }
  12008. },
  12009. masculine: {
  12010. height: math.unit(5, "feet"),
  12011. weight: math.unit(100, "lb"),
  12012. name: "Masculine",
  12013. image: {
  12014. source: "./media/characters/sammy-mouse/masculine.svg",
  12015. extra: 2526 / 2425,
  12016. bottom: 0.123
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Micro",
  12023. height: math.unit(5, "inches")
  12024. },
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(5, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(60, "feet")
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(4, "feet"),
  12041. weight: math.unit(50, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/kole/front.svg",
  12045. extra: 1423 / 1303,
  12046. bottom: 0.025
  12047. }
  12048. },
  12049. back: {
  12050. height: math.unit(4, "feet"),
  12051. weight: math.unit(50, "lb"),
  12052. name: "Back",
  12053. image: {
  12054. source: "./media/characters/kole/back.svg",
  12055. extra: 1426 / 1280,
  12056. bottom: 0.02
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Normal",
  12063. height: math.unit(4, "feet"),
  12064. default: true
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(2 + 6 / 12, "feet"),
  12073. weight: math.unit(20, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/rufran/front.svg",
  12077. extra: 2041 / 1839,
  12078. bottom: 0.055
  12079. }
  12080. },
  12081. back: {
  12082. height: math.unit(2 + 6 / 12, "feet"),
  12083. weight: math.unit(20, "lb"),
  12084. name: "Back",
  12085. image: {
  12086. source: "./media/characters/rufran/back.svg",
  12087. extra: 2054 / 1839,
  12088. bottom: 0.01
  12089. }
  12090. },
  12091. hand: {
  12092. height: math.unit(0.2166, "meters"),
  12093. name: "Hand",
  12094. image: {
  12095. source: "./media/characters/rufran/hand.svg"
  12096. }
  12097. },
  12098. foot: {
  12099. height: math.unit(0.185, "meters"),
  12100. name: "Foot",
  12101. image: {
  12102. source: "./media/characters/rufran/foot.svg"
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Micro",
  12109. height: math.unit(1, "inch")
  12110. },
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(2 + 6 / 12, "feet"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Big",
  12118. height: math.unit(60, "feet")
  12119. },
  12120. {
  12121. name: "Macro",
  12122. height: math.unit(325, "feet")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(0.3, "meters"),
  12131. weight: math.unit(3.5, "kg"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/chip/front.svg",
  12135. extra: 748 / 674
  12136. }
  12137. },
  12138. },
  12139. [
  12140. {
  12141. name: "Micro",
  12142. height: math.unit(1, "inch"),
  12143. default: true
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12149. {
  12150. side: {
  12151. height: math.unit(2.3, "meters"),
  12152. weight: math.unit(3500, "lb"),
  12153. name: "Side",
  12154. image: {
  12155. source: "./media/characters/torvid/side.svg",
  12156. extra: 1972 / 722,
  12157. bottom: 0.035
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Normal",
  12164. height: math.unit(2.3, "meters"),
  12165. default: true
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(2, "meters"),
  12174. weight: math.unit(150.5, "kg"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/susan/front.svg",
  12178. extra: 693 / 635,
  12179. bottom: 0.05
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Megamacro",
  12186. height: math.unit(505, "miles"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/raindrops/front.svg",
  12200. extra: 2655 / 2461,
  12201. bottom: 49 / 2705
  12202. }
  12203. },
  12204. back: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(150, "lb"),
  12207. name: "Back",
  12208. image: {
  12209. source: "./media/characters/raindrops/back.svg",
  12210. extra: 2574 / 2400,
  12211. bottom: 65 / 2634
  12212. }
  12213. },
  12214. },
  12215. [
  12216. {
  12217. name: "Micro",
  12218. height: math.unit(6, "inches")
  12219. },
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(6 + 2 / 12, "feet")
  12223. },
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(131, "feet"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Megamacro",
  12231. height: math.unit(15, "miles")
  12232. },
  12233. {
  12234. name: "Gigamacro",
  12235. height: math.unit(4000, "miles")
  12236. },
  12237. {
  12238. name: "Teramacro",
  12239. height: math.unit(315000, "miles")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(2.794, "meters"),
  12248. weight: math.unit(325, "kg"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/tezwa/front.svg",
  12252. extra: 2083 / 1906,
  12253. bottom: 0.031
  12254. }
  12255. },
  12256. foot: {
  12257. height: math.unit(0.687, "meters"),
  12258. name: "Foot",
  12259. image: {
  12260. source: "./media/characters/tezwa/foot.svg"
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(9 + 2 / 12, "feet"),
  12268. default: true
  12269. },
  12270. ]
  12271. ))
  12272. characterMakers.push(() => makeCharacter(
  12273. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12274. {
  12275. front: {
  12276. height: math.unit(58, "feet"),
  12277. weight: math.unit(89000, "lb"),
  12278. name: "Front",
  12279. image: {
  12280. source: "./media/characters/typhus/front.svg",
  12281. extra: 816 / 800,
  12282. bottom: 0.065
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Macro",
  12289. height: math.unit(58, "feet"),
  12290. default: true
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(12, "feet"),
  12299. weight: math.unit(6, "tonnes"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/lyra-von-wulf/front.svg",
  12303. extra: 1,
  12304. bottom: 0.10
  12305. }
  12306. },
  12307. frontMecha: {
  12308. height: math.unit(12, "feet"),
  12309. weight: math.unit(12, "tonnes"),
  12310. name: "Front (Mecha)",
  12311. image: {
  12312. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12313. extra: 1,
  12314. bottom: 0.042
  12315. }
  12316. },
  12317. maw: {
  12318. height: math.unit(2.2, "feet"),
  12319. name: "Maw",
  12320. image: {
  12321. source: "./media/characters/lyra-von-wulf/maw.svg"
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Normal",
  12328. height: math.unit(12, "feet"),
  12329. default: true
  12330. },
  12331. {
  12332. name: "Classic",
  12333. height: math.unit(50, "feet")
  12334. },
  12335. {
  12336. name: "Macro",
  12337. height: math.unit(500, "feet")
  12338. },
  12339. {
  12340. name: "Megamacro",
  12341. height: math.unit(1, "mile")
  12342. },
  12343. {
  12344. name: "Gigamacro",
  12345. height: math.unit(400, "miles")
  12346. },
  12347. {
  12348. name: "Teramacro",
  12349. height: math.unit(22000, "miles")
  12350. },
  12351. {
  12352. name: "Solarmacro",
  12353. height: math.unit(8600000, "miles")
  12354. },
  12355. {
  12356. name: "Galactic",
  12357. height: math.unit(1057000, "lightyears")
  12358. },
  12359. ]
  12360. ))
  12361. characterMakers.push(() => makeCharacter(
  12362. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12363. {
  12364. front: {
  12365. height: math.unit(6 + 10 / 12, "feet"),
  12366. weight: math.unit(150, "lb"),
  12367. name: "Front",
  12368. image: {
  12369. source: "./media/characters/dixon/front.svg",
  12370. extra: 3361 / 3209,
  12371. bottom: 0.01
  12372. }
  12373. },
  12374. },
  12375. [
  12376. {
  12377. name: "Normal",
  12378. height: math.unit(6 + 10 / 12, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Big",
  12383. height: math.unit(12, "meters")
  12384. },
  12385. {
  12386. name: "Macro",
  12387. height: math.unit(500, "meters")
  12388. },
  12389. {
  12390. name: "Megamacro",
  12391. height: math.unit(2, "km")
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12397. {
  12398. front: {
  12399. height: math.unit(185, "cm"),
  12400. weight: math.unit(68, "kg"),
  12401. name: "Front",
  12402. image: {
  12403. source: "./media/characters/kauko/front.svg",
  12404. extra: 1455 / 1421,
  12405. bottom: 0.03
  12406. }
  12407. },
  12408. back: {
  12409. height: math.unit(185, "cm"),
  12410. weight: math.unit(68, "kg"),
  12411. name: "Back",
  12412. image: {
  12413. source: "./media/characters/kauko/back.svg",
  12414. extra: 1455 / 1421,
  12415. bottom: 0.004
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Normal",
  12422. height: math.unit(185, "cm"),
  12423. default: true
  12424. },
  12425. ]
  12426. ))
  12427. characterMakers.push(() => makeCharacter(
  12428. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12429. {
  12430. front: {
  12431. height: math.unit(6, "feet"),
  12432. weight: math.unit(150, "kg"),
  12433. name: "Front",
  12434. image: {
  12435. source: "./media/characters/varg/front.svg",
  12436. extra: 1108 / 1018,
  12437. bottom: 0.0375
  12438. }
  12439. },
  12440. },
  12441. [
  12442. {
  12443. name: "Normal",
  12444. height: math.unit(5, "meters")
  12445. },
  12446. {
  12447. name: "Macro",
  12448. height: math.unit(200, "meters")
  12449. },
  12450. {
  12451. name: "Megamacro",
  12452. height: math.unit(20, "kilometers")
  12453. },
  12454. {
  12455. name: "True Size",
  12456. height: math.unit(211, "km"),
  12457. default: true
  12458. },
  12459. {
  12460. name: "Gigamacro",
  12461. height: math.unit(1000, "km")
  12462. },
  12463. {
  12464. name: "Gigamacro+",
  12465. height: math.unit(8000, "km")
  12466. },
  12467. {
  12468. name: "Teramacro",
  12469. height: math.unit(1000000, "km")
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(7 + 7 / 12, "feet"),
  12478. weight: math.unit(267, "lb"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/dayza/front.svg",
  12482. extra: 1262 / 1200,
  12483. bottom: 0.035
  12484. }
  12485. },
  12486. side: {
  12487. height: math.unit(7 + 7 / 12, "feet"),
  12488. weight: math.unit(267, "lb"),
  12489. name: "Side",
  12490. image: {
  12491. source: "./media/characters/dayza/side.svg",
  12492. extra: 1295 / 1245,
  12493. bottom: 0.05
  12494. }
  12495. },
  12496. back: {
  12497. height: math.unit(7 + 7 / 12, "feet"),
  12498. weight: math.unit(267, "lb"),
  12499. name: "Back",
  12500. image: {
  12501. source: "./media/characters/dayza/back.svg",
  12502. extra: 1241 / 1170
  12503. }
  12504. },
  12505. },
  12506. [
  12507. {
  12508. name: "Normal",
  12509. height: math.unit(7 + 7 / 12, "feet"),
  12510. default: true
  12511. },
  12512. {
  12513. name: "Macro",
  12514. height: math.unit(155, "feet")
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12520. {
  12521. front: {
  12522. height: math.unit(6 + 5 / 12, "feet"),
  12523. weight: math.unit(160, "lb"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/xanthos/front.svg",
  12527. extra: 1,
  12528. bottom: 0.04
  12529. }
  12530. },
  12531. back: {
  12532. height: math.unit(6 + 5 / 12, "feet"),
  12533. weight: math.unit(160, "lb"),
  12534. name: "Back",
  12535. image: {
  12536. source: "./media/characters/xanthos/back.svg",
  12537. extra: 1,
  12538. bottom: 0.03
  12539. }
  12540. },
  12541. hand: {
  12542. height: math.unit(0.928, "feet"),
  12543. name: "Hand",
  12544. image: {
  12545. source: "./media/characters/xanthos/hand.svg"
  12546. }
  12547. },
  12548. foot: {
  12549. height: math.unit(1.286, "feet"),
  12550. name: "Foot",
  12551. image: {
  12552. source: "./media/characters/xanthos/foot.svg"
  12553. }
  12554. },
  12555. },
  12556. [
  12557. {
  12558. name: "Normal",
  12559. height: math.unit(6 + 5 / 12, "feet"),
  12560. default: true
  12561. },
  12562. {
  12563. name: "Normal+",
  12564. height: math.unit(6, "meters")
  12565. },
  12566. {
  12567. name: "Macro",
  12568. height: math.unit(40, "feet")
  12569. },
  12570. {
  12571. name: "Macro+",
  12572. height: math.unit(200, "meters")
  12573. },
  12574. {
  12575. name: "Megamacro",
  12576. height: math.unit(20, "km")
  12577. },
  12578. {
  12579. name: "Megamacro+",
  12580. height: math.unit(100, "km")
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(6 + 3 / 12, "feet"),
  12589. weight: math.unit(215, "lb"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/grynn/front.svg",
  12593. extra: 4627 / 4209,
  12594. bottom: 0.047
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Micro",
  12601. height: math.unit(6, "inches")
  12602. },
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(6 + 3 / 12, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Big",
  12610. height: math.unit(104, "feet")
  12611. },
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(944, "feet")
  12615. },
  12616. {
  12617. name: "Macro+",
  12618. height: math.unit(9480, "feet")
  12619. },
  12620. {
  12621. name: "Megamacro",
  12622. height: math.unit(78752, "feet")
  12623. },
  12624. {
  12625. name: "Megamacro+",
  12626. height: math.unit(630128, "feet")
  12627. },
  12628. {
  12629. name: "Megamacro++",
  12630. height: math.unit(3150695, "feet")
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(7 + 5 / 12, "feet"),
  12639. weight: math.unit(450, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/mocha-aura/front.svg",
  12643. extra: 1907 / 1817,
  12644. bottom: 0.04
  12645. }
  12646. },
  12647. back: {
  12648. height: math.unit(7 + 5 / 12, "feet"),
  12649. weight: math.unit(450, "lb"),
  12650. name: "Back",
  12651. image: {
  12652. source: "./media/characters/mocha-aura/back.svg",
  12653. extra: 1900 / 1825,
  12654. bottom: 0.045
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Nano",
  12661. height: math.unit(1, "nm")
  12662. },
  12663. {
  12664. name: "Megamicro",
  12665. height: math.unit(1, "mm")
  12666. },
  12667. {
  12668. name: "Micro",
  12669. height: math.unit(3, "inches")
  12670. },
  12671. {
  12672. name: "Normal",
  12673. height: math.unit(7 + 5 / 12, "feet"),
  12674. default: true
  12675. },
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(30, "feet")
  12679. },
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(3500, "feet")
  12683. },
  12684. {
  12685. name: "Teramacro",
  12686. height: math.unit(500000, "miles")
  12687. },
  12688. {
  12689. name: "Petamacro",
  12690. height: math.unit(50000000000000000, "parsecs")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(150, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/ilisha-devya/front.svg",
  12703. extra: 1,
  12704. bottom: 0.175
  12705. }
  12706. },
  12707. back: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(150, "lb"),
  12710. name: "Back",
  12711. image: {
  12712. source: "./media/characters/ilisha-devya/back.svg",
  12713. extra: 1,
  12714. bottom: 0.015
  12715. }
  12716. },
  12717. },
  12718. [
  12719. {
  12720. name: "Macro",
  12721. height: math.unit(500, "feet"),
  12722. default: true
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(10, "miles")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(100000, "miles")
  12731. },
  12732. {
  12733. name: "Examacro",
  12734. height: math.unit(1e9, "lightyears")
  12735. },
  12736. {
  12737. name: "Omniversal",
  12738. height: math.unit(1e33, "lightyears")
  12739. },
  12740. {
  12741. name: "Beyond Infinite",
  12742. height: math.unit(1e100, "lightyears")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12748. {
  12749. Side: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(150, "lb"),
  12752. name: "Side",
  12753. image: {
  12754. source: "./media/characters/mira/side.svg",
  12755. extra: 900 / 799,
  12756. bottom: 0.02
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Human Size",
  12763. height: math.unit(6, "feet")
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(100, "feet"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Megamacro",
  12772. height: math.unit(10, "miles")
  12773. },
  12774. {
  12775. name: "Gigamacro",
  12776. height: math.unit(25000, "miles")
  12777. },
  12778. {
  12779. name: "Teramacro",
  12780. height: math.unit(300, "AU")
  12781. },
  12782. {
  12783. name: "Full Size",
  12784. height: math.unit(4.5e10, "lightyears")
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/holly/front.svg",
  12797. extra: 639 / 606
  12798. }
  12799. },
  12800. back: {
  12801. height: math.unit(6, "feet"),
  12802. weight: math.unit(150, "lb"),
  12803. name: "Back",
  12804. image: {
  12805. source: "./media/characters/holly/back.svg",
  12806. extra: 623 / 598
  12807. }
  12808. },
  12809. frontWorking: {
  12810. height: math.unit(6, "feet"),
  12811. weight: math.unit(150, "lb"),
  12812. name: "Front (Working)",
  12813. image: {
  12814. source: "./media/characters/holly/front-working.svg",
  12815. extra: 607 / 577,
  12816. bottom: 0.048
  12817. }
  12818. },
  12819. },
  12820. [
  12821. {
  12822. name: "Normal",
  12823. height: math.unit(12 + 3 / 12, "feet"),
  12824. default: true
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(150, "lb"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/porter/front.svg",
  12837. extra: 1,
  12838. bottom: 0.01
  12839. }
  12840. },
  12841. frontRobes: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(150, "lb"),
  12844. name: "Front (Robes)",
  12845. image: {
  12846. source: "./media/characters/porter/front-robes.svg",
  12847. extra: 1.01,
  12848. bottom: 0.01
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Normal",
  12855. height: math.unit(11 + 9 / 12, "feet"),
  12856. default: true
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12862. {
  12863. legendary: {
  12864. height: math.unit(6, "feet"),
  12865. weight: math.unit(150, "lb"),
  12866. name: "Legendary",
  12867. image: {
  12868. source: "./media/characters/lucy/legendary.svg",
  12869. extra: 1355 / 1100,
  12870. bottom: 0.045
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Legendary",
  12877. height: math.unit(86882 * 2, "miles"),
  12878. default: true
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/drusilla/front.svg",
  12891. extra: 678 / 635,
  12892. bottom: 0.03
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(150, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/drusilla/back.svg",
  12901. extra: 678 / 635,
  12902. bottom: 0.005
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Macro",
  12909. height: math.unit(100, "feet")
  12910. },
  12911. {
  12912. name: "Canon Height",
  12913. height: math.unit(2000, "feet"),
  12914. default: true
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(6, "feet"),
  12923. weight: math.unit(180, "lb"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/renard-thatch/front.svg",
  12927. extra: 2411 / 2275,
  12928. bottom: 0.01
  12929. }
  12930. },
  12931. frontPosing: {
  12932. height: math.unit(6, "feet"),
  12933. weight: math.unit(180, "lb"),
  12934. name: "Front (Posing)",
  12935. image: {
  12936. source: "./media/characters/renard-thatch/front-posing.svg",
  12937. extra: 2381 / 2261,
  12938. bottom: 0.01
  12939. }
  12940. },
  12941. back: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(180, "lb"),
  12944. name: "Back",
  12945. image: {
  12946. source: "./media/characters/renard-thatch/back.svg",
  12947. extra: 2428 / 2288
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Micro",
  12954. height: math.unit(3, "inches")
  12955. },
  12956. {
  12957. name: "Default",
  12958. height: math.unit(6, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(75, "feet")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(1450, "feet"),
  12972. weight: math.unit(1.21e6, "tons"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/sekvra/front.svg",
  12976. extra: 1,
  12977. bottom: 0.03
  12978. }
  12979. },
  12980. frontClothed: {
  12981. height: math.unit(1450, "feet"),
  12982. weight: math.unit(1.21e6, "tons"),
  12983. name: "Front (Clothed)",
  12984. image: {
  12985. source: "./media/characters/sekvra/front-clothed.svg",
  12986. extra: 1,
  12987. bottom: 0.03
  12988. }
  12989. },
  12990. side: {
  12991. height: math.unit(1450, "feet"),
  12992. weight: math.unit(1.21e6, "tons"),
  12993. name: "Side",
  12994. image: {
  12995. source: "./media/characters/sekvra/side.svg",
  12996. extra: 1,
  12997. bottom: 0.025
  12998. }
  12999. },
  13000. back: {
  13001. height: math.unit(1450, "feet"),
  13002. weight: math.unit(1.21e6, "tons"),
  13003. name: "Back",
  13004. image: {
  13005. source: "./media/characters/sekvra/back.svg",
  13006. extra: 1,
  13007. bottom: 0.005
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Macro",
  13014. height: math.unit(1450, "feet"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Megamacro",
  13019. height: math.unit(15000, "feet")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/carmine/front.svg",
  13032. extra: 1,
  13033. bottom: 0.035
  13034. }
  13035. },
  13036. frontArmor: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Front (Armor)",
  13040. image: {
  13041. source: "./media/characters/carmine/front-armor.svg",
  13042. extra: 1,
  13043. bottom: 0.035
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Large",
  13050. height: math.unit(1, "mile")
  13051. },
  13052. {
  13053. name: "Huge",
  13054. height: math.unit(40, "miles"),
  13055. default: true
  13056. },
  13057. {
  13058. name: "Colossal",
  13059. height: math.unit(2500, "miles")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/elyssia/front.svg",
  13072. extra: 2201 / 2035,
  13073. bottom: 0.05
  13074. }
  13075. },
  13076. frontClothed: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(150, "lb"),
  13079. name: "Front (Clothed)",
  13080. image: {
  13081. source: "./media/characters/elyssia/front-clothed.svg",
  13082. extra: 2201 / 2035,
  13083. bottom: 0.05
  13084. }
  13085. },
  13086. back: {
  13087. height: math.unit(6, "feet"),
  13088. weight: math.unit(150, "lb"),
  13089. name: "Back",
  13090. image: {
  13091. source: "./media/characters/elyssia/back.svg",
  13092. extra: 2201 / 2035,
  13093. bottom: 0.013
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Smaller",
  13100. height: math.unit(150, "feet")
  13101. },
  13102. {
  13103. name: "Standard",
  13104. height: math.unit(1400, "feet"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Distracted",
  13109. height: math.unit(15000, "feet")
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(7 + 4 / 12, "feet"),
  13118. weight: math.unit(500, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/geno-maxwell/front.svg",
  13122. extra: 2207 / 2040,
  13123. bottom: 0.015
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Micro",
  13130. height: math.unit(3, "inches")
  13131. },
  13132. {
  13133. name: "Normal",
  13134. height: math.unit(7 + 4 / 12, "feet"),
  13135. default: true
  13136. },
  13137. {
  13138. name: "Macro",
  13139. height: math.unit(220, "feet")
  13140. },
  13141. {
  13142. name: "Megamacro",
  13143. height: math.unit(11, "miles")
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(7 + 4 / 12, "feet"),
  13152. weight: math.unit(500, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/regena-maxwell/front.svg",
  13156. extra: 3115 / 2770,
  13157. bottom: 0.02
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Normal",
  13164. height: math.unit(7 + 4 / 12, "feet"),
  13165. default: true
  13166. },
  13167. {
  13168. name: "Macro",
  13169. height: math.unit(220, "feet")
  13170. },
  13171. {
  13172. name: "Megamacro",
  13173. height: math.unit(11, "miles")
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13179. {
  13180. front: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Front",
  13184. image: {
  13185. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13186. extra: 860 / 690,
  13187. bottom: 0.03
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(1.7, "meters"),
  13195. default: true
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/quilly/front.svg",
  13208. extra: 890 / 776
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Gigamacro",
  13215. height: math.unit(404090, "miles"),
  13216. default: true
  13217. },
  13218. ]
  13219. ))
  13220. characterMakers.push(() => makeCharacter(
  13221. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13222. {
  13223. front: {
  13224. height: math.unit(7 + 8 / 12, "feet"),
  13225. weight: math.unit(350, "lb"),
  13226. name: "Front",
  13227. image: {
  13228. source: "./media/characters/tempest/front.svg",
  13229. extra: 1175 / 1086,
  13230. bottom: 0.02
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Normal",
  13237. height: math.unit(7 + 8 / 12, "feet"),
  13238. default: true
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13244. {
  13245. side: {
  13246. height: math.unit(4 + 5 / 12, "feet"),
  13247. weight: math.unit(80, "lb"),
  13248. name: "Side",
  13249. image: {
  13250. source: "./media/characters/rodger/side.svg",
  13251. extra: 1235 / 1118
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Micro",
  13258. height: math.unit(1, "inch")
  13259. },
  13260. {
  13261. name: "Normal",
  13262. height: math.unit(4 + 5 / 12, "feet"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Macro",
  13267. height: math.unit(120, "feet")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/danyel/front.svg",
  13280. extra: 1185 / 1123,
  13281. bottom: 0.05
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Shrunken",
  13288. height: math.unit(0.5, "mm")
  13289. },
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(1, "mm"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Upsized",
  13297. height: math.unit(5 + 5 / 12, "feet")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(5 + 6 / 12, "feet"),
  13306. weight: math.unit(200, "lb"),
  13307. name: "Front",
  13308. image: {
  13309. source: "./media/characters/vivian-bijoux/front.svg",
  13310. extra: 1,
  13311. bottom: 0.072
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(5 + 6 / 12, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Bad Dream",
  13323. height: math.unit(500, "feet")
  13324. },
  13325. {
  13326. name: "Nightmare",
  13327. height: math.unit(500, "miles")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(6 + 1 / 12, "feet"),
  13336. weight: math.unit(260, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/zeta/front.svg",
  13340. extra: 1968 / 1889,
  13341. bottom: 0.06
  13342. }
  13343. },
  13344. back: {
  13345. height: math.unit(6 + 1 / 12, "feet"),
  13346. weight: math.unit(260, "lb"),
  13347. name: "Back",
  13348. image: {
  13349. source: "./media/characters/zeta/back.svg",
  13350. extra: 1944 / 1858,
  13351. bottom: 0.03
  13352. }
  13353. },
  13354. hand: {
  13355. height: math.unit(1.112, "feet"),
  13356. name: "Hand",
  13357. image: {
  13358. source: "./media/characters/zeta/hand.svg"
  13359. }
  13360. },
  13361. foot: {
  13362. height: math.unit(1.48, "feet"),
  13363. name: "Foot",
  13364. image: {
  13365. source: "./media/characters/zeta/foot.svg"
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Micro",
  13372. height: math.unit(6, "inches")
  13373. },
  13374. {
  13375. name: "Normal",
  13376. height: math.unit(6 + 1 / 12, "feet"),
  13377. default: true
  13378. },
  13379. {
  13380. name: "Macro",
  13381. height: math.unit(20, "feet")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(6, "feet"),
  13390. weight: math.unit(150, "lb"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/jamie-larsen/front.svg",
  13394. extra: 962 / 933,
  13395. bottom: 0.02
  13396. }
  13397. },
  13398. back: {
  13399. height: math.unit(6, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Back",
  13402. image: {
  13403. source: "./media/characters/jamie-larsen/back.svg",
  13404. extra: 997 / 946
  13405. }
  13406. },
  13407. },
  13408. [
  13409. {
  13410. name: "Macro",
  13411. height: math.unit(28 + 7 / 12, "feet"),
  13412. default: true
  13413. },
  13414. {
  13415. name: "Macro+",
  13416. height: math.unit(180, "feet")
  13417. },
  13418. {
  13419. name: "Megamacro",
  13420. height: math.unit(10, "miles")
  13421. },
  13422. {
  13423. name: "Gigamacro",
  13424. height: math.unit(200000, "miles")
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(6, "feet"),
  13433. weight: math.unit(120, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/vance/front.svg",
  13437. extra: 1980 / 1890,
  13438. bottom: 0.09
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(120, "lb"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/vance/back.svg",
  13447. extra: 2081 / 1994,
  13448. bottom: 0.014
  13449. }
  13450. },
  13451. hand: {
  13452. height: math.unit(0.88, "feet"),
  13453. name: "Hand",
  13454. image: {
  13455. source: "./media/characters/vance/hand.svg"
  13456. }
  13457. },
  13458. foot: {
  13459. height: math.unit(0.64, "feet"),
  13460. name: "Foot",
  13461. image: {
  13462. source: "./media/characters/vance/foot.svg"
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Small",
  13469. height: math.unit(90, "feet"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Macro",
  13474. height: math.unit(100, "meters")
  13475. },
  13476. {
  13477. name: "Megamacro",
  13478. height: math.unit(15, "miles")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(180, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/xochitl/front.svg",
  13491. extra: 2297 / 2261,
  13492. bottom: 0.065
  13493. }
  13494. },
  13495. back: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(180, "lb"),
  13498. name: "Back",
  13499. image: {
  13500. source: "./media/characters/xochitl/back.svg",
  13501. extra: 2386 / 2354,
  13502. bottom: 0.01
  13503. }
  13504. },
  13505. foot: {
  13506. height: math.unit(6 / 5 * 1.15, "feet"),
  13507. weight: math.unit(150, "lb"),
  13508. name: "Foot",
  13509. image: {
  13510. source: "./media/characters/xochitl/foot.svg"
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(80, "feet")
  13518. },
  13519. {
  13520. name: "Macro+",
  13521. height: math.unit(400, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Gigamacro",
  13526. height: math.unit(80000, "miles")
  13527. },
  13528. {
  13529. name: "Gigamacro+",
  13530. height: math.unit(400000, "miles")
  13531. },
  13532. {
  13533. name: "Teramacro",
  13534. height: math.unit(300, "AU")
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(150, "lb"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/vincent/front.svg",
  13547. extra: 1130 / 1080,
  13548. bottom: 0.055
  13549. }
  13550. },
  13551. beak: {
  13552. height: math.unit(6 * 0.1, "feet"),
  13553. name: "Beak",
  13554. image: {
  13555. source: "./media/characters/vincent/beak.svg"
  13556. }
  13557. },
  13558. hand: {
  13559. height: math.unit(6 * 0.85, "feet"),
  13560. weight: math.unit(150, "lb"),
  13561. name: "Hand",
  13562. image: {
  13563. source: "./media/characters/vincent/hand.svg"
  13564. }
  13565. },
  13566. foot: {
  13567. height: math.unit(6 * 0.19, "feet"),
  13568. weight: math.unit(150, "lb"),
  13569. name: "Foot",
  13570. image: {
  13571. source: "./media/characters/vincent/foot.svg"
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Base",
  13578. height: math.unit(6 + 5 / 12, "feet"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Macro",
  13583. height: math.unit(300, "feet")
  13584. },
  13585. {
  13586. name: "Megamacro",
  13587. height: math.unit(2, "miles")
  13588. },
  13589. {
  13590. name: "Gigamacro",
  13591. height: math.unit(1000, "miles")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13597. {
  13598. front: {
  13599. height: math.unit(2, "meters"),
  13600. weight: math.unit(500, "kg"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/coatl/front.svg",
  13604. extra: 3948 / 3500,
  13605. bottom: 0.082
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(4, "meters")
  13613. },
  13614. {
  13615. name: "Macro",
  13616. height: math.unit(100, "meters"),
  13617. default: true
  13618. },
  13619. {
  13620. name: "Macro+",
  13621. height: math.unit(300, "meters")
  13622. },
  13623. {
  13624. name: "Megamacro",
  13625. height: math.unit(3, "gigameters")
  13626. },
  13627. {
  13628. name: "Megamacro+",
  13629. height: math.unit(300, "terameters")
  13630. },
  13631. {
  13632. name: "Megamacro++",
  13633. height: math.unit(3, "lightyears")
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(6, "feet"),
  13642. weight: math.unit(50, "kg"),
  13643. name: "front",
  13644. image: {
  13645. source: "./media/characters/shiroryu/front.svg",
  13646. extra: 1990 / 1935
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Mortal Mingling",
  13653. height: math.unit(3, "meters")
  13654. },
  13655. {
  13656. name: "Kaiju-ish",
  13657. height: math.unit(250, "meters")
  13658. },
  13659. {
  13660. name: "Somewhat Godly",
  13661. height: math.unit(400, "km"),
  13662. default: true
  13663. },
  13664. {
  13665. name: "Planetary",
  13666. height: math.unit(300, "megameters")
  13667. },
  13668. {
  13669. name: "Galaxy-dwarfing",
  13670. height: math.unit(450, "kiloparsecs")
  13671. },
  13672. {
  13673. name: "Universe Eater",
  13674. height: math.unit(150, "gigaparsecs")
  13675. },
  13676. {
  13677. name: "Almost Immeasurable",
  13678. height: math.unit(1.3e266, "yottaparsecs")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/umeko/front.svg",
  13691. extra: 1,
  13692. bottom: 0.019
  13693. }
  13694. },
  13695. frontArmored: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front (Armored)",
  13699. image: {
  13700. source: "./media/characters/umeko/front-armored.svg",
  13701. extra: 1,
  13702. bottom: 0.021
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Macro",
  13709. height: math.unit(220, "feet"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Guardian Dragon",
  13714. height: math.unit(50, "miles")
  13715. },
  13716. {
  13717. name: "Cosmic",
  13718. height: math.unit(800000, "miles")
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(150, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/cassidy/front.svg",
  13731. extra: 1,
  13732. bottom: 0.043
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Canon Height",
  13739. height: math.unit(120, "feet"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Macro+",
  13744. height: math.unit(400, "feet")
  13745. },
  13746. {
  13747. name: "Macro++",
  13748. height: math.unit(4000, "feet")
  13749. },
  13750. {
  13751. name: "Megamacro",
  13752. height: math.unit(3, "miles")
  13753. },
  13754. ]
  13755. ))
  13756. characterMakers.push(() => makeCharacter(
  13757. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13758. {
  13759. front: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(150, "lb"),
  13762. name: "Front",
  13763. image: {
  13764. source: "./media/characters/isaac/front.svg",
  13765. extra: 896 / 815,
  13766. bottom: 0.11
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Human Size",
  13773. height: math.unit(8, "feet"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(400, "feet")
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(50, "miles")
  13783. },
  13784. {
  13785. name: "Canon Height",
  13786. height: math.unit(200, "AU")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13792. {
  13793. front: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(72, "kg"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/sleekit/front.svg",
  13799. extra: 4693 / 4487,
  13800. bottom: 0.012
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Minimum Height",
  13807. height: math.unit(10, "meters")
  13808. },
  13809. {
  13810. name: "Smaller",
  13811. height: math.unit(25, "meters")
  13812. },
  13813. {
  13814. name: "Larger",
  13815. height: math.unit(38, "meters"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Maximum height",
  13820. height: math.unit(100, "meters")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(150, "lb"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/nillia/front.svg",
  13833. extra: 2195 / 2037,
  13834. bottom: 0.005
  13835. }
  13836. },
  13837. back: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(150, "lb"),
  13840. name: "Back",
  13841. image: {
  13842. source: "./media/characters/nillia/back.svg",
  13843. extra: 2195 / 2037,
  13844. bottom: 0.005
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Canon Height",
  13851. height: math.unit(489, "feet"),
  13852. default: true
  13853. }
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/mesmyriza/front.svg",
  13865. extra: 2067 / 1784,
  13866. bottom: 0.035
  13867. }
  13868. },
  13869. foot: {
  13870. height: math.unit(6 / (250 / 35), "feet"),
  13871. name: "Foot",
  13872. image: {
  13873. source: "./media/characters/mesmyriza/foot.svg"
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Macro",
  13880. height: math.unit(457, "meters"),
  13881. default: true
  13882. },
  13883. {
  13884. name: "Megamacro",
  13885. height: math.unit(8, "megameters")
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(250, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/saudade/front.svg",
  13898. extra: 1172 / 1139,
  13899. bottom: 0.035
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Micro",
  13906. height: math.unit(3, "inches")
  13907. },
  13908. {
  13909. name: "Normal",
  13910. height: math.unit(6, "feet"),
  13911. default: true
  13912. },
  13913. {
  13914. name: "Macro",
  13915. height: math.unit(50, "feet")
  13916. },
  13917. {
  13918. name: "Megamacro",
  13919. height: math.unit(2800, "feet")
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13925. {
  13926. front: {
  13927. height: math.unit(5 + 4 / 12, "feet"),
  13928. weight: math.unit(100, "lb"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/keireer/front.svg",
  13932. extra: 716 / 666,
  13933. bottom: 0.05
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(5 + 4 / 12, "feet"),
  13941. default: true
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(6, "feet"),
  13950. weight: math.unit(90, "kg"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/mirja/front.svg",
  13954. extra: 1789 / 1683,
  13955. bottom: 0.05
  13956. }
  13957. },
  13958. frontDressed: {
  13959. height: math.unit(6, "feet"),
  13960. weight: math.unit(90, "lb"),
  13961. name: "Front (Dressed)",
  13962. image: {
  13963. source: "./media/characters/mirja/front-dressed.svg",
  13964. extra: 1789 / 1683,
  13965. bottom: 0.05
  13966. }
  13967. },
  13968. back: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(90, "lb"),
  13971. name: "Back",
  13972. image: {
  13973. source: "./media/characters/mirja/back.svg",
  13974. extra: 953 / 917,
  13975. bottom: 0.017
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "\"Incognito\"",
  13982. height: math.unit(3, "meters")
  13983. },
  13984. {
  13985. name: "Strolling Size",
  13986. height: math.unit(15, "km")
  13987. },
  13988. {
  13989. name: "Larger Strolling Size",
  13990. height: math.unit(400, "km")
  13991. },
  13992. {
  13993. name: "Preferred Size",
  13994. height: math.unit(5000, "km")
  13995. },
  13996. {
  13997. name: "True Size",
  13998. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13999. default: true
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(15, "feet"),
  14008. weight: math.unit(880, "kg"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/nightraver/front.svg",
  14012. extra: 2444 / 2160,
  14013. bottom: 0.027
  14014. }
  14015. },
  14016. back: {
  14017. height: math.unit(15, "feet"),
  14018. weight: math.unit(880, "kg"),
  14019. name: "Back",
  14020. image: {
  14021. source: "./media/characters/nightraver/back.svg",
  14022. extra: 2309 / 2180,
  14023. bottom: 0.005
  14024. }
  14025. },
  14026. sole: {
  14027. height: math.unit(2.878, "feet"),
  14028. name: "Sole",
  14029. image: {
  14030. source: "./media/characters/nightraver/sole.svg"
  14031. }
  14032. },
  14033. foot: {
  14034. height: math.unit(2.285, "feet"),
  14035. name: "Foot",
  14036. image: {
  14037. source: "./media/characters/nightraver/foot.svg"
  14038. }
  14039. },
  14040. maw: {
  14041. height: math.unit(2.67, "feet"),
  14042. name: "Maw",
  14043. image: {
  14044. source: "./media/characters/nightraver/maw.svg"
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(1, "cm")
  14052. },
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(15, "feet"),
  14056. default: true
  14057. },
  14058. {
  14059. name: "Macro",
  14060. height: math.unit(300, "feet")
  14061. },
  14062. {
  14063. name: "Megamacro",
  14064. height: math.unit(300, "miles")
  14065. },
  14066. {
  14067. name: "Gigamacro",
  14068. height: math.unit(10000, "miles")
  14069. },
  14070. ]
  14071. ))
  14072. characterMakers.push(() => makeCharacter(
  14073. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14074. {
  14075. side: {
  14076. height: math.unit(2, "inches"),
  14077. weight: math.unit(5, "grams"),
  14078. name: "Side",
  14079. image: {
  14080. source: "./media/characters/arc/side.svg"
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Micro",
  14087. height: math.unit(2, "inches"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(1.1938, "meters"),
  14097. weight: math.unit(54, "kg"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/nebula-shahar/front.svg",
  14101. extra: 1642 / 1436,
  14102. bottom: 0.06
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Megamicro",
  14109. height: math.unit(0.3, "mm")
  14110. },
  14111. {
  14112. name: "Micro",
  14113. height: math.unit(3, "cm")
  14114. },
  14115. {
  14116. name: "Normal",
  14117. height: math.unit(138, "cm"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(30, "m")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(5.24, "feet"),
  14131. weight: math.unit(150, "lb"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/shayla/front.svg",
  14135. extra: 1512 / 1414,
  14136. bottom: 0.01
  14137. }
  14138. },
  14139. back: {
  14140. height: math.unit(5.24, "feet"),
  14141. weight: math.unit(150, "lb"),
  14142. name: "Back",
  14143. image: {
  14144. source: "./media/characters/shayla/back.svg",
  14145. extra: 1512 / 1414
  14146. }
  14147. },
  14148. hand: {
  14149. height: math.unit(0.7781496062992126, "feet"),
  14150. name: "Hand",
  14151. image: {
  14152. source: "./media/characters/shayla/hand.svg"
  14153. }
  14154. },
  14155. foot: {
  14156. height: math.unit(1.4206036745406823, "feet"),
  14157. name: "Foot",
  14158. image: {
  14159. source: "./media/characters/shayla/foot.svg"
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Micro",
  14166. height: math.unit(0.32, "feet")
  14167. },
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(5.24, "feet"),
  14171. default: true
  14172. },
  14173. {
  14174. name: "Macro",
  14175. height: math.unit(492.12, "feet")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(186.41, "miles")
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(2.2, "m"),
  14188. weight: math.unit(120, "kg"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/pia-jr/front.svg",
  14192. extra: 1000 / 970,
  14193. bottom: 0.035
  14194. }
  14195. },
  14196. hand: {
  14197. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14198. name: "Hand",
  14199. image: {
  14200. source: "./media/characters/pia-jr/hand.svg"
  14201. }
  14202. },
  14203. paw: {
  14204. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14205. name: "Paw",
  14206. image: {
  14207. source: "./media/characters/pia-jr/paw.svg"
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Micro",
  14214. height: math.unit(1.2, "cm")
  14215. },
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(2.2, "m"),
  14219. default: true
  14220. },
  14221. {
  14222. name: "Macro",
  14223. height: math.unit(180, "m")
  14224. },
  14225. {
  14226. name: "Megamacro",
  14227. height: math.unit(420, "km")
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(2, "m"),
  14236. weight: math.unit(115, "kg"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/pia-sr/front.svg",
  14240. extra: 760 / 730,
  14241. bottom: 0.015
  14242. }
  14243. },
  14244. back: {
  14245. height: math.unit(2, "m"),
  14246. weight: math.unit(115, "kg"),
  14247. name: "Back",
  14248. image: {
  14249. source: "./media/characters/pia-sr/back.svg",
  14250. extra: 760 / 730,
  14251. bottom: 0.01
  14252. }
  14253. },
  14254. hand: {
  14255. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14256. name: "Hand",
  14257. image: {
  14258. source: "./media/characters/pia-sr/hand.svg"
  14259. }
  14260. },
  14261. foot: {
  14262. height: math.unit(1.83, "feet"),
  14263. name: "Foot",
  14264. image: {
  14265. source: "./media/characters/pia-sr/foot.svg"
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Micro",
  14272. height: math.unit(88, "mm")
  14273. },
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(2, "m"),
  14277. default: true
  14278. },
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(200, "m")
  14282. },
  14283. {
  14284. name: "Megamacro",
  14285. height: math.unit(420, "km")
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(8 + 2 / 12, "feet"),
  14294. weight: math.unit(300, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/kibibyte/front.svg",
  14298. extra: 2221 / 2098,
  14299. bottom: 0.04
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(8 + 2 / 12, "feet"),
  14307. default: true
  14308. },
  14309. {
  14310. name: "Socialable Macro",
  14311. height: math.unit(50, "feet")
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(300, "feet")
  14316. },
  14317. {
  14318. name: "Megamacro",
  14319. height: math.unit(500, "miles")
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(6, "feet"),
  14328. weight: math.unit(150, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/felix/front.svg",
  14332. extra: 762 / 722,
  14333. bottom: 0.02
  14334. }
  14335. },
  14336. frontClothed: {
  14337. height: math.unit(6, "feet"),
  14338. weight: math.unit(150, "lb"),
  14339. name: "Front (Clothed)",
  14340. image: {
  14341. source: "./media/characters/felix/front-clothed.svg",
  14342. extra: 762 / 722,
  14343. bottom: 0.02
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(6 + 8 / 12, "feet"),
  14351. default: true
  14352. },
  14353. {
  14354. name: "Macro",
  14355. height: math.unit(2600, "feet")
  14356. },
  14357. {
  14358. name: "Megamacro",
  14359. height: math.unit(450, "miles")
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14365. {
  14366. front: {
  14367. height: math.unit(6 + 1 / 12, "feet"),
  14368. weight: math.unit(250, "lb"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/tobo/front.svg",
  14372. extra: 608 / 586,
  14373. bottom: 0.023
  14374. }
  14375. },
  14376. back: {
  14377. height: math.unit(6 + 1 / 12, "feet"),
  14378. weight: math.unit(250, "lb"),
  14379. name: "Back",
  14380. image: {
  14381. source: "./media/characters/tobo/back.svg",
  14382. extra: 608 / 586
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Nano",
  14389. height: math.unit(2, "nm")
  14390. },
  14391. {
  14392. name: "Megamicro",
  14393. height: math.unit(0.1, "mm")
  14394. },
  14395. {
  14396. name: "Micro",
  14397. height: math.unit(1, "inch"),
  14398. default: true
  14399. },
  14400. {
  14401. name: "Human-sized",
  14402. height: math.unit(6 + 1 / 12, "feet")
  14403. },
  14404. {
  14405. name: "Macro",
  14406. height: math.unit(250, "feet")
  14407. },
  14408. {
  14409. name: "Megamacro",
  14410. height: math.unit(75, "miles")
  14411. },
  14412. {
  14413. name: "Texas-sized",
  14414. height: math.unit(750, "miles")
  14415. },
  14416. {
  14417. name: "Teramacro",
  14418. height: math.unit(50000, "miles")
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14424. {
  14425. front: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(269, "lb"),
  14428. name: "Front",
  14429. image: {
  14430. source: "./media/characters/danny-kapowsky/front.svg",
  14431. extra: 766 / 736,
  14432. bottom: 0.044
  14433. }
  14434. },
  14435. back: {
  14436. height: math.unit(6, "feet"),
  14437. weight: math.unit(269, "lb"),
  14438. name: "Back",
  14439. image: {
  14440. source: "./media/characters/danny-kapowsky/back.svg",
  14441. extra: 797 / 760,
  14442. bottom: 0.025
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Macro",
  14449. height: math.unit(150, "feet"),
  14450. default: true
  14451. },
  14452. {
  14453. name: "Macro+",
  14454. height: math.unit(200, "feet")
  14455. },
  14456. {
  14457. name: "Macro++",
  14458. height: math.unit(300, "feet")
  14459. },
  14460. {
  14461. name: "Macro+++",
  14462. height: math.unit(400, "feet")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14468. {
  14469. side: {
  14470. height: math.unit(6, "feet"),
  14471. weight: math.unit(170, "lb"),
  14472. name: "Side",
  14473. image: {
  14474. source: "./media/characters/finn/side.svg",
  14475. extra: 1953 / 1807,
  14476. bottom: 0.057
  14477. }
  14478. },
  14479. },
  14480. [
  14481. {
  14482. name: "Megamacro",
  14483. height: math.unit(14445, "feet"),
  14484. default: true
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14490. {
  14491. front: {
  14492. height: math.unit(5 + 6 / 12, "feet"),
  14493. weight: math.unit(125, "lb"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/roy/front.svg",
  14497. extra: 1,
  14498. bottom: 0.11
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Micro",
  14505. height: math.unit(3, "inches"),
  14506. default: true
  14507. },
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(5 + 6 / 12, "feet")
  14511. },
  14512. {
  14513. name: "Lesser Macro",
  14514. height: math.unit(60, "feet")
  14515. },
  14516. {
  14517. name: "Greater Macro",
  14518. height: math.unit(120, "feet")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(100, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/aevsivs/front.svg",
  14531. extra: 1,
  14532. bottom: 0.03
  14533. }
  14534. },
  14535. back: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(100, "lb"),
  14538. name: "Back",
  14539. image: {
  14540. source: "./media/characters/aevsivs/back.svg"
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Micro",
  14547. height: math.unit(2, "inches"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(5, "feet")
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(5 + 7 / 12, "feet"),
  14561. weight: math.unit(159, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/hildegard/front.svg",
  14565. extra: 289 / 269,
  14566. bottom: 7.63 / 297.8
  14567. }
  14568. },
  14569. back: {
  14570. height: math.unit(5 + 7 / 12, "feet"),
  14571. weight: math.unit(159, "lb"),
  14572. name: "Back",
  14573. image: {
  14574. source: "./media/characters/hildegard/back.svg",
  14575. extra: 280 / 260,
  14576. bottom: 2.3 / 282
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Normal",
  14583. height: math.unit(5 + 7 / 12, "feet"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14590. {
  14591. bernard: {
  14592. height: math.unit(2 + 7 / 12, "feet"),
  14593. weight: math.unit(66, "lb"),
  14594. name: "Bernard",
  14595. rename: true,
  14596. image: {
  14597. source: "./media/characters/bernard-wilder/bernard.svg",
  14598. extra: 192 / 128,
  14599. bottom: 0.05
  14600. }
  14601. },
  14602. wilder: {
  14603. height: math.unit(5 + 8 / 12, "feet"),
  14604. weight: math.unit(143, "lb"),
  14605. name: "Wilder",
  14606. rename: true,
  14607. image: {
  14608. source: "./media/characters/bernard-wilder/wilder.svg",
  14609. extra: 361 / 312,
  14610. bottom: 0.02
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(2 + 7 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14624. {
  14625. anthro: {
  14626. height: math.unit(6 + 1 / 12, "feet"),
  14627. weight: math.unit(155, "lb"),
  14628. name: "Anthro",
  14629. image: {
  14630. source: "./media/characters/hearth/anthro.svg",
  14631. extra: 260 / 250,
  14632. bottom: 0.02
  14633. }
  14634. },
  14635. feral: {
  14636. height: math.unit(3.78, "feet"),
  14637. weight: math.unit(35, "kg"),
  14638. name: "Feral",
  14639. image: {
  14640. source: "./media/characters/hearth/feral.svg",
  14641. extra: 153 / 135,
  14642. bottom: 0.03
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(6 + 1 / 12, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(182, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/ingrid/front.svg",
  14663. extra: 294 / 268,
  14664. bottom: 0.027
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(6, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14678. {
  14679. eevee: {
  14680. height: math.unit(2 + 10 / 12, "feet"),
  14681. weight: math.unit(86, "lb"),
  14682. name: "Malgam",
  14683. image: {
  14684. source: "./media/characters/malgam/eevee.svg",
  14685. extra: 218 / 180,
  14686. bottom: 0.2
  14687. }
  14688. },
  14689. sylveon: {
  14690. height: math.unit(4, "feet"),
  14691. weight: math.unit(101, "lb"),
  14692. name: "Future Malgam",
  14693. rename: true,
  14694. image: {
  14695. source: "./media/characters/malgam/sylveon.svg",
  14696. extra: 371 / 325,
  14697. bottom: 0.015
  14698. }
  14699. },
  14700. gigantamax: {
  14701. height: math.unit(50, "feet"),
  14702. name: "Gigantamax Malgam",
  14703. rename: true,
  14704. image: {
  14705. source: "./media/characters/malgam/gigantamax.svg"
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Normal",
  14712. height: math.unit(2 + 10 / 12, "feet"),
  14713. default: true
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(5 + 11 / 12, "feet"),
  14722. weight: math.unit(188, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/fleur/front.svg",
  14726. extra: 309 / 283,
  14727. bottom: 0.007
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(5 + 11 / 12, "feet"),
  14735. default: true
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(5 + 4 / 12, "feet"),
  14744. weight: math.unit(122, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/jude/front.svg",
  14748. extra: 288 / 273,
  14749. bottom: 0.03
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Normal",
  14756. height: math.unit(5 + 4 / 12, "feet"),
  14757. default: true
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(5 + 11 / 12, "feet"),
  14766. weight: math.unit(190, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/seara/front.svg",
  14770. extra: 1,
  14771. bottom: 0.05
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Normal",
  14778. height: math.unit(5 + 11 / 12, "feet"),
  14779. default: true
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(16 + 5 / 12, "feet"),
  14788. weight: math.unit(524, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/caspian/front.svg",
  14792. extra: 1,
  14793. bottom: 0.04
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(16 + 5 / 12, "feet"),
  14801. default: true
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14807. {
  14808. front: {
  14809. height: math.unit(5 + 7 / 12, "feet"),
  14810. weight: math.unit(170, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/mika/front.svg",
  14814. extra: 1,
  14815. bottom: 0.016
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(5 + 7 / 12, "feet"),
  14823. default: true
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(6 + 2 / 12, "feet"),
  14832. weight: math.unit(268, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/sol/front.svg",
  14836. extra: 247 / 231,
  14837. bottom: 0.05
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(6 + 2 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14851. {
  14852. buizel: {
  14853. height: math.unit(2 + 5 / 12, "feet"),
  14854. weight: math.unit(87, "lb"),
  14855. name: "Buizel",
  14856. image: {
  14857. source: "./media/characters/umiko/buizel.svg",
  14858. extra: 172 / 157,
  14859. bottom: 0.01
  14860. }
  14861. },
  14862. floatzel: {
  14863. height: math.unit(5 + 9 / 12, "feet"),
  14864. weight: math.unit(250, "lb"),
  14865. name: "Floatzel",
  14866. image: {
  14867. source: "./media/characters/umiko/floatzel.svg",
  14868. extra: 262 / 248
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(2 + 5 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6 + 2 / 12, "feet"),
  14885. weight: math.unit(146, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/iliac/front.svg",
  14889. extra: 389 / 365,
  14890. bottom: 0.035
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(6 + 2 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(170, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/topaz/front.svg",
  14911. extra: 317 / 303,
  14912. bottom: 0.055
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(6, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(5 + 11 / 12, "feet"),
  14929. weight: math.unit(144, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/gabriel/front.svg",
  14933. extra: 285 / 262,
  14934. bottom: 0.004
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(5 + 11 / 12, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14948. {
  14949. side: {
  14950. height: math.unit(6 + 5 / 12, "feet"),
  14951. weight: math.unit(300, "lb"),
  14952. name: "Side",
  14953. image: {
  14954. source: "./media/characters/tempest-suicune/side.svg",
  14955. extra: 195 / 154,
  14956. bottom: 0.04
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(6 + 5 / 12, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(7 + 2 / 12, "feet"),
  14973. weight: math.unit(322, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/vulcan/front.svg",
  14977. extra: 154 / 147,
  14978. bottom: 0.04
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(7 + 2 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(5 + 10 / 12, "feet"),
  14995. weight: math.unit(264, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/gault/front.svg",
  14999. extra: 161 / 140,
  15000. bottom: 0.028
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(5 + 10 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(6, "feet"),
  15017. weight: math.unit(150, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/shard/front.svg",
  15021. extra: 273 / 238,
  15022. bottom: 0.02
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(3 + 6 / 12, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(5 + 11 / 12, "feet"),
  15039. weight: math.unit(146, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/ashe/front.svg",
  15043. extra: 400 / 373,
  15044. bottom: 0.01
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(5 + 11 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(5 + 5 / 12, "feet"),
  15061. weight: math.unit(135, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/beatrix/front.svg",
  15065. extra: 392 / 379,
  15066. bottom: 0.01
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(6, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(6, "feet"),
  15083. weight: math.unit(150, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/ignatius/front.svg",
  15087. extra: 245 / 222,
  15088. bottom: 0.01
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(5 + 5 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(6 + 2 / 12, "feet"),
  15105. weight: math.unit(138, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/mei-li/front.svg",
  15109. extra: 237 / 229,
  15110. bottom: 0.03
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(6 + 2 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(2 + 4 / 12, "feet"),
  15127. weight: math.unit(62, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/puru/front.svg",
  15131. extra: 206 / 149,
  15132. bottom: 0.06
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(2 + 4 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15146. {
  15147. anthro: {
  15148. height: math.unit(5 + 8/12, "feet"),
  15149. weight: math.unit(200, "lb"),
  15150. energyNeed: math.unit(2000, "kcal"),
  15151. name: "Anthro",
  15152. image: {
  15153. source: "./media/characters/kee/anthro.svg",
  15154. extra: 3251/3184,
  15155. bottom: 250/3501
  15156. }
  15157. },
  15158. taur: {
  15159. height: math.unit(11, "feet"),
  15160. weight: math.unit(500, "lb"),
  15161. energyNeed: math.unit(5000, "kcal"),
  15162. name: "Taur",
  15163. image: {
  15164. source: "./media/characters/kee/taur.svg",
  15165. extra: 1362/1320,
  15166. bottom: 83/1445
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(5 + 8/12, "feet"),
  15174. default: true
  15175. },
  15176. {
  15177. name: "Macro",
  15178. height: math.unit(35, "feet")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15184. {
  15185. anthro: {
  15186. height: math.unit(7, "feet"),
  15187. weight: math.unit(190, "lb"),
  15188. name: "Anthro",
  15189. image: {
  15190. source: "./media/characters/cobalt-dracha/anthro.svg",
  15191. extra: 231 / 225,
  15192. bottom: 0.04
  15193. }
  15194. },
  15195. feral: {
  15196. height: math.unit(9 + 7 / 12, "feet"),
  15197. weight: math.unit(294, "lb"),
  15198. name: "Feral",
  15199. image: {
  15200. source: "./media/characters/cobalt-dracha/feral.svg",
  15201. extra: 692 / 633,
  15202. bottom: 0.05
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(7, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15216. {
  15217. fallen: {
  15218. height: math.unit(11 + 8 / 12, "feet"),
  15219. weight: math.unit(485, "lb"),
  15220. name: "Java (Fallen)",
  15221. rename: true,
  15222. image: {
  15223. source: "./media/characters/java/fallen.svg",
  15224. extra: 226 / 208,
  15225. bottom: 0.005
  15226. }
  15227. },
  15228. godkin: {
  15229. height: math.unit(10 + 6 / 12, "feet"),
  15230. weight: math.unit(328, "lb"),
  15231. name: "Java (Godkin)",
  15232. rename: true,
  15233. image: {
  15234. source: "./media/characters/java/godkin.svg",
  15235. extra: 270 / 262,
  15236. bottom: 0.02
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(11 + 8 / 12, "feet"),
  15244. default: true
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(7 + 8 / 12, "feet"),
  15253. weight: math.unit(320, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/skoll/front.svg",
  15257. extra: 232 / 220,
  15258. bottom: 0.02
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(7 + 8 / 12, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(5 + 9 / 12, "feet"),
  15275. weight: math.unit(170, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/purna/front.svg",
  15279. extra: 239 / 229,
  15280. bottom: 0.01
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(5 + 9 / 12, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(5 + 9 / 12, "feet"),
  15297. weight: math.unit(142, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/kuva/front.svg",
  15301. extra: 281 / 271,
  15302. bottom: 0.006
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(5 + 9 / 12, "feet"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15316. {
  15317. anthro: {
  15318. height: math.unit(9 + 2 / 12, "feet"),
  15319. weight: math.unit(270, "lb"),
  15320. name: "Anthro",
  15321. image: {
  15322. source: "./media/characters/embra/anthro.svg",
  15323. extra: 200 / 187,
  15324. bottom: 0.02
  15325. }
  15326. },
  15327. feral: {
  15328. height: math.unit(18 + 8 / 12, "feet"),
  15329. weight: math.unit(576, "lb"),
  15330. name: "Feral",
  15331. image: {
  15332. source: "./media/characters/embra/feral.svg",
  15333. extra: 152 / 137,
  15334. bottom: 0.037
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(9 + 2 / 12, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15348. {
  15349. anthro: {
  15350. height: math.unit(10 + 9 / 12, "feet"),
  15351. weight: math.unit(224, "lb"),
  15352. name: "Anthro",
  15353. image: {
  15354. source: "./media/characters/grottos/anthro.svg",
  15355. extra: 350 / 332,
  15356. bottom: 0.045
  15357. }
  15358. },
  15359. feral: {
  15360. height: math.unit(20 + 7 / 12, "feet"),
  15361. weight: math.unit(629, "lb"),
  15362. name: "Feral",
  15363. image: {
  15364. source: "./media/characters/grottos/feral.svg",
  15365. extra: 207 / 190,
  15366. bottom: 0.05
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(10 + 9 / 12, "feet"),
  15374. default: true
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15380. {
  15381. anthro: {
  15382. height: math.unit(9 + 6 / 12, "feet"),
  15383. weight: math.unit(298, "lb"),
  15384. name: "Anthro",
  15385. image: {
  15386. source: "./media/characters/frifna/anthro.svg",
  15387. extra: 282 / 269,
  15388. bottom: 0.015
  15389. }
  15390. },
  15391. feral: {
  15392. height: math.unit(16 + 2 / 12, "feet"),
  15393. weight: math.unit(624, "lb"),
  15394. name: "Feral",
  15395. image: {
  15396. source: "./media/characters/frifna/feral.svg"
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(9 + 6 / 12, "feet"),
  15404. default: true
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(6 + 2 / 12, "feet"),
  15413. weight: math.unit(168, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/elise/front.svg",
  15417. extra: 276 / 271
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(6 + 2 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(5 + 10 / 12, "feet"),
  15434. weight: math.unit(210, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/glade/front.svg",
  15438. extra: 258 / 247,
  15439. bottom: 0.008
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(5 + 10 / 12, "feet"),
  15447. default: true
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(5 + 10 / 12, "feet"),
  15456. weight: math.unit(129, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/rina/front.svg",
  15460. extra: 266 / 255,
  15461. bottom: 0.005
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(5 + 10 / 12, "feet"),
  15469. default: true
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15475. {
  15476. front: {
  15477. height: math.unit(6 + 1 / 12, "feet"),
  15478. weight: math.unit(192, "lb"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/veronica/front.svg",
  15482. extra: 319 / 309,
  15483. bottom: 0.005
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Normal",
  15490. height: math.unit(6 + 1 / 12, "feet"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(9 + 3 / 12, "feet"),
  15500. weight: math.unit(1100, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/braxton/front.svg",
  15504. extra: 1057 / 984,
  15505. bottom: 0.05
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(9 + 3 / 12, "feet")
  15513. },
  15514. {
  15515. name: "Giant",
  15516. height: math.unit(300, "feet"),
  15517. default: true
  15518. },
  15519. {
  15520. name: "Macro",
  15521. height: math.unit(700, "feet")
  15522. },
  15523. {
  15524. name: "Megamacro",
  15525. height: math.unit(6000, "feet")
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(6 + 7 / 12, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/blue-feyonics/front.svg",
  15538. extra: 1403 / 1306,
  15539. bottom: 0.047
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(6 + 7 / 12, "feet"),
  15547. default: true
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(1.8, "meters"),
  15556. weight: math.unit(60, "kg"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/maxwell/front.svg",
  15560. extra: 2060 / 1873
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Micro",
  15567. height: math.unit(1, "mm")
  15568. },
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(1.8, "meter"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Macro",
  15576. height: math.unit(30, "meters")
  15577. },
  15578. {
  15579. name: "Megamacro",
  15580. height: math.unit(10, "km")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/jack/front.svg",
  15593. extra: 1754 / 1640,
  15594. bottom: 0.01
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(80000, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Max size",
  15606. height: math.unit(10, "lightyears")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15612. {
  15613. urban: {
  15614. height: math.unit(5, "feet"),
  15615. weight: math.unit(240, "lb"),
  15616. name: "Urban",
  15617. image: {
  15618. source: "./media/characters/cafat/urban.svg",
  15619. extra: 1223/1126,
  15620. bottom: 205/1428
  15621. }
  15622. },
  15623. summer: {
  15624. height: math.unit(5, "feet"),
  15625. weight: math.unit(240, "lb"),
  15626. name: "Summer",
  15627. image: {
  15628. source: "./media/characters/cafat/summer.svg",
  15629. extra: 1223/1126,
  15630. bottom: 205/1428
  15631. }
  15632. },
  15633. winter: {
  15634. height: math.unit(5, "feet"),
  15635. weight: math.unit(240, "lb"),
  15636. name: "Winter",
  15637. image: {
  15638. source: "./media/characters/cafat/winter.svg",
  15639. extra: 1223/1126,
  15640. bottom: 205/1428
  15641. }
  15642. },
  15643. lingerie: {
  15644. height: math.unit(5, "feet"),
  15645. weight: math.unit(240, "lb"),
  15646. name: "Lingerie",
  15647. image: {
  15648. source: "./media/characters/cafat/lingerie.svg",
  15649. extra: 1223/1126,
  15650. bottom: 205/1428
  15651. }
  15652. },
  15653. upright: {
  15654. height: math.unit(6.3, "feet"),
  15655. weight: math.unit(240, "lb"),
  15656. name: "Upright",
  15657. image: {
  15658. source: "./media/characters/cafat/upright.svg",
  15659. bottom: 0.01
  15660. }
  15661. },
  15662. uprightFull: {
  15663. height: math.unit(6.3, "feet"),
  15664. weight: math.unit(240, "lb"),
  15665. name: "Upright (Full)",
  15666. image: {
  15667. source: "./media/characters/cafat/upright-full.svg",
  15668. bottom: 0.01
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Small",
  15675. height: math.unit(5, "feet"),
  15676. default: true
  15677. },
  15678. {
  15679. name: "Large",
  15680. height: math.unit(13, "feet")
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6, "feet"),
  15689. weight: math.unit(150, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/verin-raharra/front.svg",
  15693. extra: 5019 / 4835,
  15694. bottom: 0.023
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(7 + 5 / 12, "feet"),
  15702. default: true
  15703. },
  15704. {
  15705. name: "Upsized",
  15706. height: math.unit(20, "feet")
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(7, "feet"),
  15715. weight: math.unit(230, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/nakata/front.svg",
  15719. extra: 1.005,
  15720. bottom: 0.01
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(7, "feet"),
  15728. default: true
  15729. },
  15730. {
  15731. name: "Big",
  15732. height: math.unit(14, "feet")
  15733. },
  15734. {
  15735. name: "Macro",
  15736. height: math.unit(400, "feet")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(4.91, "feet"),
  15745. weight: math.unit(100, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/lily/front.svg",
  15749. extra: 1585 / 1415,
  15750. bottom: 0.02
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(4.91, "feet"),
  15758. default: true
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15764. {
  15765. laying: {
  15766. height: math.unit(4 + 4 / 12, "feet"),
  15767. weight: math.unit(600, "lb"),
  15768. name: "Laying",
  15769. image: {
  15770. source: "./media/characters/sheila/laying.svg",
  15771. extra: 1333 / 1265,
  15772. bottom: 0.16
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(4 + 4 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(190, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/sax/front.svg",
  15793. extra: 1187 / 973,
  15794. bottom: 0.042
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Micro",
  15801. height: math.unit(4, "inches"),
  15802. default: true
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(6, "feet"),
  15811. weight: math.unit(150, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/pandora/front.svg",
  15815. extra: 2720 / 2556,
  15816. bottom: 0.015
  15817. }
  15818. },
  15819. back: {
  15820. height: math.unit(6, "feet"),
  15821. weight: math.unit(150, "lb"),
  15822. name: "Back",
  15823. image: {
  15824. source: "./media/characters/pandora/back.svg",
  15825. extra: 2720 / 2556,
  15826. bottom: 0.01
  15827. }
  15828. },
  15829. beans: {
  15830. height: math.unit(6 / 8, "feet"),
  15831. name: "Beans",
  15832. image: {
  15833. source: "./media/characters/pandora/beans.svg"
  15834. }
  15835. },
  15836. collar: {
  15837. height: math.unit(0.31, "feet"),
  15838. name: "Collar",
  15839. image: {
  15840. source: "./media/characters/pandora/collar.svg"
  15841. }
  15842. },
  15843. skirt: {
  15844. height: math.unit(6, "feet"),
  15845. weight: math.unit(150, "lb"),
  15846. name: "Skirt",
  15847. image: {
  15848. source: "./media/characters/pandora/skirt.svg",
  15849. extra: 1622 / 1525,
  15850. bottom: 0.015
  15851. }
  15852. },
  15853. hoodie: {
  15854. height: math.unit(6, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Hoodie",
  15857. image: {
  15858. source: "./media/characters/pandora/hoodie.svg",
  15859. extra: 1622 / 1525,
  15860. bottom: 0.015
  15861. }
  15862. },
  15863. casual: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(150, "lb"),
  15866. name: "Casual",
  15867. image: {
  15868. source: "./media/characters/pandora/casual.svg",
  15869. extra: 1622 / 1525,
  15870. bottom: 0.015
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(6, "feet")
  15878. },
  15879. {
  15880. name: "Big Steppy",
  15881. height: math.unit(1, "km"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Galactic Steppy",
  15886. height: math.unit(2, "gigameters")
  15887. },
  15888. ]
  15889. ))
  15890. characterMakers.push(() => makeCharacter(
  15891. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15892. {
  15893. side: {
  15894. height: math.unit(10, "feet"),
  15895. weight: math.unit(800, "kg"),
  15896. name: "Side",
  15897. image: {
  15898. source: "./media/characters/venio-darcony/side.svg",
  15899. extra: 1373 / 1003,
  15900. bottom: 0.037
  15901. }
  15902. },
  15903. front: {
  15904. height: math.unit(19, "feet"),
  15905. weight: math.unit(800, "kg"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/venio-darcony/front.svg"
  15909. }
  15910. },
  15911. back: {
  15912. height: math.unit(19, "feet"),
  15913. weight: math.unit(800, "kg"),
  15914. name: "Back",
  15915. image: {
  15916. source: "./media/characters/venio-darcony/back.svg"
  15917. }
  15918. },
  15919. sideNsfw: {
  15920. height: math.unit(10, "feet"),
  15921. weight: math.unit(800, "kg"),
  15922. name: "Side (NSFW)",
  15923. image: {
  15924. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15925. extra: 1373 / 1003,
  15926. bottom: 0.037
  15927. }
  15928. },
  15929. frontNsfw: {
  15930. height: math.unit(19, "feet"),
  15931. weight: math.unit(800, "kg"),
  15932. name: "Front (NSFW)",
  15933. image: {
  15934. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15935. }
  15936. },
  15937. backNsfw: {
  15938. height: math.unit(19, "feet"),
  15939. weight: math.unit(800, "kg"),
  15940. name: "Back (NSFW)",
  15941. image: {
  15942. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15943. }
  15944. },
  15945. sideArmored: {
  15946. height: math.unit(10, "feet"),
  15947. weight: math.unit(800, "kg"),
  15948. name: "Side (Armored)",
  15949. image: {
  15950. source: "./media/characters/venio-darcony/side-armored.svg",
  15951. extra: 1373 / 1003,
  15952. bottom: 0.037
  15953. }
  15954. },
  15955. frontArmored: {
  15956. height: math.unit(19, "feet"),
  15957. weight: math.unit(900, "kg"),
  15958. name: "Front (Armored)",
  15959. image: {
  15960. source: "./media/characters/venio-darcony/front-armored.svg"
  15961. }
  15962. },
  15963. backArmored: {
  15964. height: math.unit(19, "feet"),
  15965. weight: math.unit(900, "kg"),
  15966. name: "Back (Armored)",
  15967. image: {
  15968. source: "./media/characters/venio-darcony/back-armored.svg"
  15969. }
  15970. },
  15971. sword: {
  15972. height: math.unit(10, "feet"),
  15973. weight: math.unit(50, "lb"),
  15974. name: "Sword",
  15975. image: {
  15976. source: "./media/characters/venio-darcony/sword.svg"
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(10, "feet")
  15984. },
  15985. {
  15986. name: "Macro",
  15987. height: math.unit(130, "feet"),
  15988. default: true
  15989. },
  15990. {
  15991. name: "Macro+",
  15992. height: math.unit(240, "feet")
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(6, "feet"),
  16001. weight: math.unit(150, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/veski/front.svg",
  16005. extra: 1299 / 1225,
  16006. bottom: 0.04
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(150, "lb"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/veski/back.svg",
  16015. extra: 1299 / 1225,
  16016. bottom: 0.008
  16017. }
  16018. },
  16019. maw: {
  16020. height: math.unit(1.5 * 1.21, "feet"),
  16021. name: "Maw",
  16022. image: {
  16023. source: "./media/characters/veski/maw.svg"
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Macro",
  16030. height: math.unit(2, "km"),
  16031. default: true
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16037. {
  16038. front: {
  16039. height: math.unit(5 + 7 / 12, "feet"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/isabelle/front.svg",
  16043. extra: 2130 / 1976,
  16044. bottom: 0.05
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Supermicro",
  16051. height: math.unit(10, "micrometers")
  16052. },
  16053. {
  16054. name: "Micro",
  16055. height: math.unit(1, "inch")
  16056. },
  16057. {
  16058. name: "Tiny",
  16059. height: math.unit(5, "inches")
  16060. },
  16061. {
  16062. name: "Standard",
  16063. height: math.unit(5 + 7 / 12, "inches")
  16064. },
  16065. {
  16066. name: "Macro",
  16067. height: math.unit(80, "meters"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Megamacro",
  16072. height: math.unit(250, "meters")
  16073. },
  16074. {
  16075. name: "Gigamacro",
  16076. height: math.unit(5, "km")
  16077. },
  16078. {
  16079. name: "Cosmic",
  16080. height: math.unit(2.5e6, "miles")
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(6, "feet"),
  16089. weight: math.unit(150, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/hanzo/front.svg",
  16093. extra: 374 / 344,
  16094. bottom: 0.02
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(8, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(7, "feet"),
  16111. weight: math.unit(130, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/anna/front.svg",
  16115. extra: 169 / 145,
  16116. bottom: 0.06
  16117. }
  16118. },
  16119. full: {
  16120. height: math.unit(4.96, "feet"),
  16121. weight: math.unit(220, "lb"),
  16122. name: "Full",
  16123. image: {
  16124. source: "./media/characters/anna/full.svg",
  16125. extra: 138 / 114,
  16126. bottom: 0.15
  16127. }
  16128. },
  16129. tongue: {
  16130. height: math.unit(2.53, "feet"),
  16131. name: "Tongue",
  16132. image: {
  16133. source: "./media/characters/anna/tongue.svg"
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(7, "feet"),
  16141. default: true
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16147. {
  16148. front: {
  16149. height: math.unit(7, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Front",
  16152. image: {
  16153. source: "./media/characters/ian-corvid/front.svg",
  16154. extra: 150 / 142,
  16155. bottom: 0.02
  16156. }
  16157. },
  16158. back: {
  16159. height: math.unit(7, "feet"),
  16160. weight: math.unit(150, "lb"),
  16161. name: "Back",
  16162. image: {
  16163. source: "./media/characters/ian-corvid/back.svg",
  16164. extra: 150 / 143,
  16165. bottom: 0.01
  16166. }
  16167. },
  16168. stomping: {
  16169. height: math.unit(7, "feet"),
  16170. weight: math.unit(150, "lb"),
  16171. name: "Stomping",
  16172. image: {
  16173. source: "./media/characters/ian-corvid/stomping.svg",
  16174. extra: 76 / 72
  16175. }
  16176. },
  16177. sitting: {
  16178. height: math.unit(7 / 1.8, "feet"),
  16179. weight: math.unit(150, "lb"),
  16180. name: "Sitting",
  16181. image: {
  16182. source: "./media/characters/ian-corvid/sitting.svg",
  16183. extra: 1400 / 1269,
  16184. bottom: 0.15
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Tiny Microw",
  16191. height: math.unit(1, "inch")
  16192. },
  16193. {
  16194. name: "Microw",
  16195. height: math.unit(6, "inches")
  16196. },
  16197. {
  16198. name: "Crow",
  16199. height: math.unit(7 + 1 / 12, "feet"),
  16200. default: true
  16201. },
  16202. {
  16203. name: "Macrow",
  16204. height: math.unit(176, "feet")
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(5 + 7 / 12, "feet"),
  16213. weight: math.unit(147, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/natalie-kellon/front.svg",
  16217. extra: 1214 / 1141,
  16218. bottom: 0.02
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Micro",
  16225. height: math.unit(1 / 16, "inch")
  16226. },
  16227. {
  16228. name: "Tiny",
  16229. height: math.unit(4, "inches")
  16230. },
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(5 + 7 / 12, "feet"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "Amazon",
  16238. height: math.unit(12, "feet")
  16239. },
  16240. {
  16241. name: "Giantess",
  16242. height: math.unit(160, "meters")
  16243. },
  16244. {
  16245. name: "Titaness",
  16246. height: math.unit(800, "meters")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6, "feet"),
  16255. weight: math.unit(150, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/alluria/front.svg",
  16259. extra: 806 / 738,
  16260. bottom: 0.01
  16261. }
  16262. },
  16263. side: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(150, "lb"),
  16266. name: "Side",
  16267. image: {
  16268. source: "./media/characters/alluria/side.svg",
  16269. extra: 800 / 750,
  16270. }
  16271. },
  16272. back: {
  16273. height: math.unit(6, "feet"),
  16274. weight: math.unit(150, "lb"),
  16275. name: "Back",
  16276. image: {
  16277. source: "./media/characters/alluria/back.svg",
  16278. extra: 806 / 738,
  16279. }
  16280. },
  16281. frontMaid: {
  16282. height: math.unit(6, "feet"),
  16283. weight: math.unit(150, "lb"),
  16284. name: "Front (Maid)",
  16285. image: {
  16286. source: "./media/characters/alluria/front-maid.svg",
  16287. extra: 806 / 738,
  16288. bottom: 0.01
  16289. }
  16290. },
  16291. sideMaid: {
  16292. height: math.unit(6, "feet"),
  16293. weight: math.unit(150, "lb"),
  16294. name: "Side (Maid)",
  16295. image: {
  16296. source: "./media/characters/alluria/side-maid.svg",
  16297. extra: 800 / 750,
  16298. bottom: 0.005
  16299. }
  16300. },
  16301. backMaid: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Back (Maid)",
  16305. image: {
  16306. source: "./media/characters/alluria/back-maid.svg",
  16307. extra: 806 / 738,
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Micro",
  16314. height: math.unit(6, "inches"),
  16315. default: true
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16321. {
  16322. front: {
  16323. height: math.unit(6, "feet"),
  16324. weight: math.unit(150, "lb"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/kyle/front.svg",
  16328. extra: 1069 / 962,
  16329. bottom: 77.228 / 1727.45
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Macro",
  16336. height: math.unit(150, "feet"),
  16337. default: true
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16343. {
  16344. front: {
  16345. height: math.unit(6, "feet"),
  16346. weight: math.unit(300, "lb"),
  16347. name: "Front",
  16348. image: {
  16349. source: "./media/characters/duncan/front.svg",
  16350. extra: 1650 / 1482,
  16351. bottom: 0.05
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Macro",
  16358. height: math.unit(100, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(5 + 4 / 12, "feet"),
  16368. weight: math.unit(220, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/memory/front.svg",
  16372. extra: 3641 / 3545,
  16373. bottom: 0.03
  16374. }
  16375. },
  16376. back: {
  16377. height: math.unit(5 + 4 / 12, "feet"),
  16378. weight: math.unit(220, "lb"),
  16379. name: "Back",
  16380. image: {
  16381. source: "./media/characters/memory/back.svg",
  16382. extra: 3641 / 3545,
  16383. bottom: 0.025
  16384. }
  16385. },
  16386. frontSkirt: {
  16387. height: math.unit(5 + 4 / 12, "feet"),
  16388. weight: math.unit(220, "lb"),
  16389. name: "Front (Skirt)",
  16390. image: {
  16391. source: "./media/characters/memory/front-skirt.svg",
  16392. extra: 3641 / 3545,
  16393. bottom: 0.03
  16394. }
  16395. },
  16396. frontDress: {
  16397. height: math.unit(5 + 4 / 12, "feet"),
  16398. weight: math.unit(220, "lb"),
  16399. name: "Front (Dress)",
  16400. image: {
  16401. source: "./media/characters/memory/front-dress.svg",
  16402. extra: 3641 / 3545,
  16403. bottom: 0.03
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Micro",
  16410. height: math.unit(6, "inches"),
  16411. default: true
  16412. },
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(5 + 4 / 12, "feet")
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(4 + 11 / 12, "feet"),
  16424. weight: math.unit(100, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/luno/front.svg",
  16428. extra: 1535 / 1487,
  16429. bottom: 0.03
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Micro",
  16436. height: math.unit(3, "inches")
  16437. },
  16438. {
  16439. name: "Normal",
  16440. height: math.unit(4 + 11 / 12, "feet"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "Macro",
  16445. height: math.unit(300, "feet")
  16446. },
  16447. {
  16448. name: "Megamacro",
  16449. height: math.unit(700, "miles")
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(6 + 2 / 12, "feet"),
  16458. weight: math.unit(170, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/jamesy/front.svg",
  16462. extra: 440 / 382,
  16463. bottom: 0.005
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Micro",
  16470. height: math.unit(3, "inches")
  16471. },
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(6 + 2 / 12, "feet"),
  16475. default: true
  16476. },
  16477. {
  16478. name: "Macro",
  16479. height: math.unit(300, "feet")
  16480. },
  16481. {
  16482. name: "Megamacro",
  16483. height: math.unit(700, "miles")
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6, "feet"),
  16492. weight: math.unit(160, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/mark/front.svg",
  16496. extra: 3300 / 3100,
  16497. bottom: 136.42 / 3440.47
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Macro",
  16504. height: math.unit(120, "meters")
  16505. },
  16506. {
  16507. name: "Bigger Macro",
  16508. height: math.unit(350, "meters")
  16509. },
  16510. {
  16511. name: "Megamacro",
  16512. height: math.unit(8, "km"),
  16513. default: true
  16514. },
  16515. {
  16516. name: "Continental",
  16517. height: math.unit(4550, "km")
  16518. },
  16519. {
  16520. name: "Planetary",
  16521. height: math.unit(65000, "km")
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(6, "feet"),
  16530. weight: math.unit(400, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/mac/front.svg",
  16534. extra: 1048 / 987.7,
  16535. bottom: 60 / 1107.6,
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Macro",
  16542. height: math.unit(500, "feet"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(5 + 2 / 12, "feet"),
  16552. weight: math.unit(190, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/bari/front.svg",
  16556. extra: 3156 / 2880,
  16557. bottom: 0.03
  16558. }
  16559. },
  16560. back: {
  16561. height: math.unit(5 + 2 / 12, "feet"),
  16562. weight: math.unit(190, "lb"),
  16563. name: "Back",
  16564. image: {
  16565. source: "./media/characters/bari/back.svg",
  16566. extra: 3260 / 2834,
  16567. bottom: 0.025
  16568. }
  16569. },
  16570. frontPlush: {
  16571. height: math.unit(5 + 2 / 12, "feet"),
  16572. weight: math.unit(190, "lb"),
  16573. name: "Front (Plush)",
  16574. image: {
  16575. source: "./media/characters/bari/front-plush.svg",
  16576. extra: 1112 / 1061,
  16577. bottom: 0.002
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Micro",
  16584. height: math.unit(3, "inches")
  16585. },
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(5 + 2 / 12, "feet"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Macro",
  16593. height: math.unit(20, "feet")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(6 + 1 / 12, "feet"),
  16602. weight: math.unit(275, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/hunter-misha-raven/front.svg"
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Mortal",
  16612. height: math.unit(6 + 1 / 12, "feet")
  16613. },
  16614. {
  16615. name: "Divine",
  16616. height: math.unit(1.12134e34, "parsecs"),
  16617. default: true
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(6 + 3 / 12, "feet"),
  16626. weight: math.unit(220, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/max-calore/front.svg",
  16630. extra: 1700 / 1648,
  16631. bottom: 0.01
  16632. }
  16633. },
  16634. back: {
  16635. height: math.unit(6 + 3 / 12, "feet"),
  16636. weight: math.unit(220, "lb"),
  16637. name: "Back",
  16638. image: {
  16639. source: "./media/characters/max-calore/back.svg",
  16640. extra: 1700 / 1648,
  16641. bottom: 0.01
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(6 + 3 / 12, "feet"),
  16649. default: true
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16655. {
  16656. side: {
  16657. height: math.unit(2 + 8 / 12, "feet"),
  16658. weight: math.unit(99, "lb"),
  16659. name: "Side",
  16660. image: {
  16661. source: "./media/characters/aspen/side.svg",
  16662. extra: 152 / 138,
  16663. bottom: 0.032
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(2 + 8 / 12, "feet"),
  16671. default: true
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16677. {
  16678. side: {
  16679. height: math.unit(3 + 2 / 12, "feet"),
  16680. weight: math.unit(224, "lb"),
  16681. name: "Side",
  16682. image: {
  16683. source: "./media/characters/sheila-feral-wolf/side.svg",
  16684. extra: 179 / 166,
  16685. bottom: 0.03
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(3 + 2 / 12, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16699. {
  16700. side: {
  16701. height: math.unit(1 + 9 / 12, "feet"),
  16702. weight: math.unit(38, "lb"),
  16703. name: "Side",
  16704. image: {
  16705. source: "./media/characters/michelle/side.svg",
  16706. extra: 147 / 136.7,
  16707. bottom: 0.03
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(1 + 9 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(1 + 1 / 12, "feet"),
  16724. weight: math.unit(18, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/nino/front.svg"
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(1 + 1 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(1, "feet"),
  16744. weight: math.unit(16, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/viola/front.svg"
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(1, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(6 + 5 / 12, "feet"),
  16764. weight: math.unit(580, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/atlas/front.svg",
  16768. extra: 298.5 / 290,
  16769. bottom: 0.015
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(6 + 5 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16783. {
  16784. side: {
  16785. height: math.unit(1 + 10 / 12, "feet"),
  16786. weight: math.unit(25, "lb"),
  16787. name: "Side",
  16788. image: {
  16789. source: "./media/characters/davy/side.svg",
  16790. extra: 200 / 170,
  16791. bottom: 0.01
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(1 + 10 / 12, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16805. {
  16806. side: {
  16807. height: math.unit(4 + 8 / 12, "feet"),
  16808. weight: math.unit(166, "lb"),
  16809. name: "Side",
  16810. image: {
  16811. source: "./media/characters/fiona/side.svg",
  16812. extra: 232 / 220,
  16813. bottom: 0.03
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(4 + 8 / 12, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16827. {
  16828. front: {
  16829. height: math.unit(2, "feet"),
  16830. weight: math.unit(62, "lb"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/lyla/front.svg",
  16834. bottom: 0.1
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(2, "feet"),
  16842. default: true
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16848. {
  16849. side: {
  16850. height: math.unit(1.8, "feet"),
  16851. weight: math.unit(44, "lb"),
  16852. name: "Side",
  16853. image: {
  16854. source: "./media/characters/perseus/side.svg",
  16855. bottom: 0.21
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(1.8, "feet"),
  16863. default: true
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16869. {
  16870. side: {
  16871. height: math.unit(4 + 2 / 12, "feet"),
  16872. weight: math.unit(20, "lb"),
  16873. name: "Side",
  16874. image: {
  16875. source: "./media/characters/remus/side.svg"
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(4 + 2 / 12, "feet"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(4 + 11 / 12, "feet"),
  16892. weight: math.unit(114, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/raf/front.svg",
  16896. bottom: 20.5 / 1863
  16897. }
  16898. },
  16899. side: {
  16900. height: math.unit(4 + 11 / 12, "feet"),
  16901. weight: math.unit(114, "lb"),
  16902. name: "Side",
  16903. image: {
  16904. source: "./media/characters/raf/side.svg",
  16905. bottom: 22 / 1822
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Micro",
  16912. height: math.unit(2, "inches")
  16913. },
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(4 + 11 / 12, "feet"),
  16917. default: true
  16918. },
  16919. {
  16920. name: "Macro",
  16921. height: math.unit(70, "feet")
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(1.5, "meters"),
  16930. weight: math.unit(68, "kg"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/liam-einarr/front.svg",
  16934. extra: 2822 / 2666
  16935. }
  16936. },
  16937. back: {
  16938. height: math.unit(1.5, "meters"),
  16939. weight: math.unit(68, "kg"),
  16940. name: "Back",
  16941. image: {
  16942. source: "./media/characters/liam-einarr/back.svg",
  16943. extra: 2822 / 2666,
  16944. bottom: 0.015
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(1.5, "meters"),
  16952. default: true
  16953. },
  16954. {
  16955. name: "Macro",
  16956. height: math.unit(150, "meters")
  16957. },
  16958. {
  16959. name: "Megamacro",
  16960. height: math.unit(35, "km")
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(6, "feet"),
  16969. weight: math.unit(75, "kg"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/linda/front.svg",
  16973. extra: 930 / 874,
  16974. bottom: 0.004
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(6, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(6 + 8 / 12, "feet"),
  16991. weight: math.unit(220, "lb"),
  16992. name: "Front",
  16993. image: {
  16994. source: "./media/characters/caylex/front.svg",
  16995. extra: 821 / 772,
  16996. bottom: 0.07
  16997. }
  16998. },
  16999. back: {
  17000. height: math.unit(6 + 8 / 12, "feet"),
  17001. weight: math.unit(220, "lb"),
  17002. name: "Back",
  17003. image: {
  17004. source: "./media/characters/caylex/back.svg",
  17005. extra: 821 / 772,
  17006. bottom: 0.022
  17007. }
  17008. },
  17009. hand: {
  17010. height: math.unit(1.25, "feet"),
  17011. name: "Hand",
  17012. image: {
  17013. source: "./media/characters/caylex/hand.svg"
  17014. }
  17015. },
  17016. foot: {
  17017. height: math.unit(1.6, "feet"),
  17018. name: "Foot",
  17019. image: {
  17020. source: "./media/characters/caylex/foot.svg"
  17021. }
  17022. },
  17023. armored: {
  17024. height: math.unit(6 + 8 / 12, "feet"),
  17025. weight: math.unit(250, "lb"),
  17026. name: "Armored",
  17027. image: {
  17028. source: "./media/characters/caylex/armored.svg",
  17029. extra: 1420 / 1310,
  17030. bottom: 0.045
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(6 + 8 / 12, "feet"),
  17038. default: true
  17039. },
  17040. {
  17041. name: "Normal+",
  17042. height: math.unit(12, "feet")
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17048. {
  17049. front: {
  17050. height: math.unit(7 + 6 / 12, "feet"),
  17051. weight: math.unit(288, "lb"),
  17052. name: "Front",
  17053. image: {
  17054. source: "./media/characters/alana/front.svg",
  17055. extra: 679 / 653,
  17056. bottom: 22.5 / 701
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(7 + 6 / 12, "feet")
  17064. },
  17065. {
  17066. name: "Large",
  17067. height: math.unit(50, "feet")
  17068. },
  17069. {
  17070. name: "Macro",
  17071. height: math.unit(100, "feet"),
  17072. default: true
  17073. },
  17074. {
  17075. name: "Macro+",
  17076. height: math.unit(200, "feet")
  17077. },
  17078. ]
  17079. ))
  17080. characterMakers.push(() => makeCharacter(
  17081. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17082. {
  17083. front: {
  17084. height: math.unit(6 + 1 / 12, "feet"),
  17085. weight: math.unit(210, "lb"),
  17086. name: "Front",
  17087. image: {
  17088. source: "./media/characters/hasani/front.svg",
  17089. extra: 244 / 232,
  17090. bottom: 0.01
  17091. }
  17092. },
  17093. back: {
  17094. height: math.unit(6 + 1 / 12, "feet"),
  17095. weight: math.unit(210, "lb"),
  17096. name: "Back",
  17097. image: {
  17098. source: "./media/characters/hasani/back.svg",
  17099. extra: 244 / 232,
  17100. bottom: 0.01
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(6 + 1 / 12, "feet")
  17108. },
  17109. {
  17110. name: "Macro",
  17111. height: math.unit(175, "feet"),
  17112. default: true
  17113. },
  17114. ]
  17115. ))
  17116. characterMakers.push(() => makeCharacter(
  17117. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17118. {
  17119. front: {
  17120. height: math.unit(1.82, "meters"),
  17121. weight: math.unit(140, "lb"),
  17122. name: "Front",
  17123. image: {
  17124. source: "./media/characters/nita/front.svg",
  17125. extra: 2473 / 2363,
  17126. bottom: 0.01
  17127. }
  17128. },
  17129. },
  17130. [
  17131. {
  17132. name: "Normal",
  17133. height: math.unit(1.82, "m")
  17134. },
  17135. {
  17136. name: "Macro",
  17137. height: math.unit(300, "m")
  17138. },
  17139. {
  17140. name: "Mistake Canon",
  17141. height: math.unit(0.5, "miles"),
  17142. default: true
  17143. },
  17144. {
  17145. name: "Big Mistake",
  17146. height: math.unit(13, "miles")
  17147. },
  17148. {
  17149. name: "Playing God",
  17150. height: math.unit(2450, "miles")
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17156. {
  17157. front: {
  17158. height: math.unit(4, "feet"),
  17159. weight: math.unit(120, "lb"),
  17160. name: "Front",
  17161. image: {
  17162. source: "./media/characters/shiriko/front.svg",
  17163. extra: 970/934,
  17164. bottom: 5/975
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(4, "feet"),
  17172. default: true
  17173. },
  17174. ]
  17175. ))
  17176. characterMakers.push(() => makeCharacter(
  17177. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17178. {
  17179. front: {
  17180. height: math.unit(6, "feet"),
  17181. name: "front",
  17182. image: {
  17183. source: "./media/characters/deja/front.svg",
  17184. extra: 926 / 840,
  17185. bottom: 0.07
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Planck Length",
  17192. height: math.unit(1.6e-35, "meters")
  17193. },
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(30.48, "meters"),
  17197. default: true
  17198. },
  17199. {
  17200. name: "Universal",
  17201. height: math.unit(8.8e26, "meters")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17207. {
  17208. side: {
  17209. height: math.unit(8, "feet"),
  17210. weight: math.unit(6300, "lb"),
  17211. name: "Side",
  17212. image: {
  17213. source: "./media/characters/anima/side.svg",
  17214. bottom: 0.035
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(8, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(8, "feet"),
  17231. weight: math.unit(350, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/bianca/front.svg",
  17235. extra: 234 / 225,
  17236. bottom: 0.03
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(8, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(6, "feet"),
  17253. weight: math.unit(150, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/adinia/front.svg",
  17257. extra: 1845 / 1672,
  17258. bottom: 0.02
  17259. }
  17260. },
  17261. back: {
  17262. height: math.unit(6, "feet"),
  17263. weight: math.unit(150, "lb"),
  17264. name: "Back",
  17265. image: {
  17266. source: "./media/characters/adinia/back.svg",
  17267. extra: 1845 / 1672,
  17268. bottom: 0.002
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(11 + 5 / 12, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(3, "meters"),
  17285. weight: math.unit(200, "kg"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/lykasa/front.svg",
  17289. extra: 1076 / 976,
  17290. bottom: 0.06
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(3, "meters")
  17298. },
  17299. {
  17300. name: "Kaiju",
  17301. height: math.unit(120, "meters"),
  17302. default: true
  17303. },
  17304. {
  17305. name: "Mega Kaiju",
  17306. height: math.unit(240, "km")
  17307. },
  17308. {
  17309. name: "Giga Kaiju",
  17310. height: math.unit(400, "megameters")
  17311. },
  17312. {
  17313. name: "Tera Kaiju",
  17314. height: math.unit(800, "gigameters")
  17315. },
  17316. {
  17317. name: "Kaiju Dragon Goddess",
  17318. height: math.unit(26, "zettaparsecs")
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17324. {
  17325. side: {
  17326. height: math.unit(283 / 124 * 6, "feet"),
  17327. weight: math.unit(35000, "lb"),
  17328. name: "Side",
  17329. image: {
  17330. source: "./media/characters/malfaren/side.svg",
  17331. extra: 2500 / 1010,
  17332. bottom: 0.01
  17333. }
  17334. },
  17335. front: {
  17336. height: math.unit(22.36, "feet"),
  17337. weight: math.unit(35000, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/malfaren/front.svg",
  17341. extra: 1631 / 1476,
  17342. bottom: 0.01
  17343. }
  17344. },
  17345. maw: {
  17346. height: math.unit(6.9, "feet"),
  17347. name: "Maw",
  17348. image: {
  17349. source: "./media/characters/malfaren/maw.svg"
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Big",
  17356. height: math.unit(283 / 162 * 6, "feet"),
  17357. },
  17358. {
  17359. name: "Bigger",
  17360. height: math.unit(283 / 124 * 6, "feet")
  17361. },
  17362. {
  17363. name: "Massive",
  17364. height: math.unit(283 / 92 * 6, "feet"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "👀💦",
  17369. height: math.unit(283 / 73 * 6, "feet"),
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(1.7, "m"),
  17378. weight: math.unit(70, "kg"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/kernel/front.svg",
  17382. extra: 222 / 210,
  17383. bottom: 0.007
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Nano",
  17390. height: math.unit(17, "micrometers")
  17391. },
  17392. {
  17393. name: "Micro",
  17394. height: math.unit(1.7, "mm")
  17395. },
  17396. {
  17397. name: "Small",
  17398. height: math.unit(1.7, "cm")
  17399. },
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(1.7, "m"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17409. {
  17410. front: {
  17411. height: math.unit(1.75, "meters"),
  17412. weight: math.unit(65, "kg"),
  17413. name: "Front",
  17414. image: {
  17415. source: "./media/characters/jayne-folest/front.svg",
  17416. extra: 2115 / 2007,
  17417. bottom: 0.02
  17418. }
  17419. },
  17420. back: {
  17421. height: math.unit(1.75, "meters"),
  17422. weight: math.unit(65, "kg"),
  17423. name: "Back",
  17424. image: {
  17425. source: "./media/characters/jayne-folest/back.svg",
  17426. extra: 2115 / 2007,
  17427. bottom: 0.005
  17428. }
  17429. },
  17430. frontClothed: {
  17431. height: math.unit(1.75, "meters"),
  17432. weight: math.unit(65, "kg"),
  17433. name: "Front (Clothed)",
  17434. image: {
  17435. source: "./media/characters/jayne-folest/front-clothed.svg",
  17436. extra: 2115 / 2007,
  17437. bottom: 0.035
  17438. }
  17439. },
  17440. hand: {
  17441. height: math.unit(1 / 1.260, "feet"),
  17442. name: "Hand",
  17443. image: {
  17444. source: "./media/characters/jayne-folest/hand.svg"
  17445. }
  17446. },
  17447. foot: {
  17448. height: math.unit(1 / 0.918, "feet"),
  17449. name: "Foot",
  17450. image: {
  17451. source: "./media/characters/jayne-folest/foot.svg"
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Micro",
  17458. height: math.unit(4, "cm")
  17459. },
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(1.75, "meters")
  17463. },
  17464. {
  17465. name: "Macro",
  17466. height: math.unit(47.5, "meters"),
  17467. default: true
  17468. },
  17469. ]
  17470. ))
  17471. characterMakers.push(() => makeCharacter(
  17472. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17473. {
  17474. front: {
  17475. height: math.unit(180, "cm"),
  17476. weight: math.unit(70, "kg"),
  17477. name: "Front",
  17478. image: {
  17479. source: "./media/characters/algier/front.svg",
  17480. extra: 596 / 572,
  17481. bottom: 0.04
  17482. }
  17483. },
  17484. back: {
  17485. height: math.unit(180, "cm"),
  17486. weight: math.unit(70, "kg"),
  17487. name: "Back",
  17488. image: {
  17489. source: "./media/characters/algier/back.svg",
  17490. extra: 596 / 572,
  17491. bottom: 0.025
  17492. }
  17493. },
  17494. frontdressed: {
  17495. height: math.unit(180, "cm"),
  17496. weight: math.unit(150, "kg"),
  17497. name: "Front-dressed",
  17498. image: {
  17499. source: "./media/characters/algier/front-dressed.svg",
  17500. extra: 596 / 572,
  17501. bottom: 0.038
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Micro",
  17508. height: math.unit(5, "cm")
  17509. },
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(180, "cm"),
  17513. default: true
  17514. },
  17515. {
  17516. name: "Macro",
  17517. height: math.unit(64, "m")
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17523. {
  17524. upright: {
  17525. height: math.unit(7, "feet"),
  17526. weight: math.unit(300, "lb"),
  17527. name: "Upright",
  17528. image: {
  17529. source: "./media/characters/pretzel/upright.svg",
  17530. extra: 534 / 522,
  17531. bottom: 0.065
  17532. }
  17533. },
  17534. sprawling: {
  17535. height: math.unit(3.75, "feet"),
  17536. weight: math.unit(300, "lb"),
  17537. name: "Sprawling",
  17538. image: {
  17539. source: "./media/characters/pretzel/sprawling.svg",
  17540. extra: 314 / 281,
  17541. bottom: 0.1
  17542. }
  17543. },
  17544. tongue: {
  17545. height: math.unit(2, "feet"),
  17546. name: "Tongue",
  17547. image: {
  17548. source: "./media/characters/pretzel/tongue.svg"
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(7, "feet"),
  17556. default: true
  17557. },
  17558. {
  17559. name: "Oversized",
  17560. height: math.unit(15, "feet")
  17561. },
  17562. {
  17563. name: "Huge",
  17564. height: math.unit(30, "feet")
  17565. },
  17566. {
  17567. name: "Macro",
  17568. height: math.unit(250, "feet")
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17574. {
  17575. sideFront: {
  17576. height: math.unit(5 + 2 / 12, "feet"),
  17577. weight: math.unit(120, "lb"),
  17578. name: "Front Side",
  17579. image: {
  17580. source: "./media/characters/roxi/side-front.svg",
  17581. extra: 2924 / 2717,
  17582. bottom: 0.08
  17583. }
  17584. },
  17585. sideBack: {
  17586. height: math.unit(5 + 2 / 12, "feet"),
  17587. weight: math.unit(120, "lb"),
  17588. name: "Back Side",
  17589. image: {
  17590. source: "./media/characters/roxi/side-back.svg",
  17591. extra: 2904 / 2693,
  17592. bottom: 0.06
  17593. }
  17594. },
  17595. front: {
  17596. height: math.unit(5 + 2 / 12, "feet"),
  17597. weight: math.unit(120, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/roxi/front.svg",
  17601. extra: 2028 / 1907,
  17602. bottom: 0.01
  17603. }
  17604. },
  17605. frontAlt: {
  17606. height: math.unit(5 + 2 / 12, "feet"),
  17607. weight: math.unit(120, "lb"),
  17608. name: "Front (Alt)",
  17609. image: {
  17610. source: "./media/characters/roxi/front-alt.svg",
  17611. extra: 1828 / 1798,
  17612. bottom: 0.01
  17613. }
  17614. },
  17615. sitting: {
  17616. height: math.unit(2.8, "feet"),
  17617. weight: math.unit(120, "lb"),
  17618. name: "Sitting",
  17619. image: {
  17620. source: "./media/characters/roxi/sitting.svg",
  17621. extra: 2660 / 2462,
  17622. bottom: 0.1
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(5 + 2 / 12, "feet"),
  17630. default: true
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17636. {
  17637. side: {
  17638. height: math.unit(55, "feet"),
  17639. weight: math.unit(153, "tons"),
  17640. name: "Side",
  17641. image: {
  17642. source: "./media/characters/shadow/side.svg",
  17643. extra: 701 / 628,
  17644. bottom: 0.02
  17645. }
  17646. },
  17647. flying: {
  17648. height: math.unit(145, "feet"),
  17649. weight: math.unit(153, "tons"),
  17650. name: "Flying",
  17651. image: {
  17652. source: "./media/characters/shadow/flying.svg"
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(55, "feet"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(6, "feet"),
  17669. weight: math.unit(200, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/marcie/front.svg",
  17673. extra: 960 / 876,
  17674. bottom: 58 / 1017.87
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Macro",
  17681. height: math.unit(1, "mile"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(7, "feet"),
  17691. weight: math.unit(200, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/kachina/front.svg",
  17695. extra: 1290.68 / 1119,
  17696. bottom: 36.5 / 1327.18
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(7, "feet"),
  17704. default: true
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17710. {
  17711. looking: {
  17712. height: math.unit(2, "meters"),
  17713. weight: math.unit(300, "kg"),
  17714. name: "Looking",
  17715. image: {
  17716. source: "./media/characters/kash/looking.svg",
  17717. extra: 474 / 344,
  17718. bottom: 0.03
  17719. }
  17720. },
  17721. side: {
  17722. height: math.unit(2, "meters"),
  17723. weight: math.unit(300, "kg"),
  17724. name: "Side",
  17725. image: {
  17726. source: "./media/characters/kash/side.svg",
  17727. extra: 302 / 251,
  17728. bottom: 0.03
  17729. }
  17730. },
  17731. front: {
  17732. height: math.unit(2, "meters"),
  17733. weight: math.unit(300, "kg"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/kash/front.svg",
  17737. extra: 495 / 360,
  17738. bottom: 0.015
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(2, "meters"),
  17746. default: true
  17747. },
  17748. {
  17749. name: "Big",
  17750. height: math.unit(3, "meters")
  17751. },
  17752. {
  17753. name: "Large",
  17754. height: math.unit(5, "meters")
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17760. {
  17761. feeding: {
  17762. height: math.unit(6.7, "feet"),
  17763. weight: math.unit(350, "lb"),
  17764. name: "Feeding",
  17765. image: {
  17766. source: "./media/characters/lalim/feeding.svg",
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(6.7, "feet"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17780. {
  17781. front: {
  17782. height: math.unit(9.5, "feet"),
  17783. weight: math.unit(600, "lb"),
  17784. name: "Front",
  17785. image: {
  17786. source: "./media/characters/de'vout/front.svg",
  17787. extra: 1443 / 1328,
  17788. bottom: 0.025
  17789. }
  17790. },
  17791. back: {
  17792. height: math.unit(9.5, "feet"),
  17793. weight: math.unit(600, "lb"),
  17794. name: "Back",
  17795. image: {
  17796. source: "./media/characters/de'vout/back.svg",
  17797. extra: 1443 / 1328
  17798. }
  17799. },
  17800. frontDressed: {
  17801. height: math.unit(9.5, "feet"),
  17802. weight: math.unit(600, "lb"),
  17803. name: "Front (Dressed",
  17804. image: {
  17805. source: "./media/characters/de'vout/front-dressed.svg",
  17806. extra: 1443 / 1328,
  17807. bottom: 0.025
  17808. }
  17809. },
  17810. backDressed: {
  17811. height: math.unit(9.5, "feet"),
  17812. weight: math.unit(600, "lb"),
  17813. name: "Back (Dressed",
  17814. image: {
  17815. source: "./media/characters/de'vout/back-dressed.svg",
  17816. extra: 1443 / 1328
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Normal",
  17823. height: math.unit(9.5, "feet"),
  17824. default: true
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(8, "feet"),
  17833. weight: math.unit(225, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/talana/front.svg",
  17837. extra: 1410 / 1300,
  17838. bottom: 0.015
  17839. }
  17840. },
  17841. frontDressed: {
  17842. height: math.unit(8, "feet"),
  17843. weight: math.unit(225, "lb"),
  17844. name: "Front (Dressed",
  17845. image: {
  17846. source: "./media/characters/talana/front-dressed.svg",
  17847. extra: 1410 / 1300,
  17848. bottom: 0.015
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(8, "feet"),
  17856. default: true
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17862. {
  17863. side: {
  17864. height: math.unit(7.2, "feet"),
  17865. weight: math.unit(150, "lb"),
  17866. name: "Side",
  17867. image: {
  17868. source: "./media/characters/xeauvok/side.svg",
  17869. extra: 1975 / 1523,
  17870. bottom: 0.07
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(7.2, "feet"),
  17878. default: true
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17884. {
  17885. side: {
  17886. height: math.unit(10, "feet"),
  17887. weight: math.unit(900, "kg"),
  17888. name: "Side",
  17889. image: {
  17890. source: "./media/characters/zara/side.svg",
  17891. extra: 504 / 498
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Normal",
  17898. height: math.unit(10, "feet"),
  17899. default: true
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17905. {
  17906. side: {
  17907. height: math.unit(6, "feet"),
  17908. weight: math.unit(150, "lb"),
  17909. name: "Side",
  17910. image: {
  17911. source: "./media/characters/richard-dragon/side.svg",
  17912. extra: 845 / 340,
  17913. bottom: 0.017
  17914. }
  17915. },
  17916. maw: {
  17917. height: math.unit(2.97, "feet"),
  17918. name: "Maw",
  17919. image: {
  17920. source: "./media/characters/richard-dragon/maw.svg"
  17921. }
  17922. },
  17923. },
  17924. [
  17925. ]
  17926. ))
  17927. characterMakers.push(() => makeCharacter(
  17928. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17929. {
  17930. front: {
  17931. height: math.unit(4, "feet"),
  17932. weight: math.unit(100, "lb"),
  17933. name: "Front",
  17934. image: {
  17935. source: "./media/characters/richard-smeargle/front.svg",
  17936. extra: 2952 / 2820,
  17937. bottom: 0.028
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(4, "feet"),
  17945. default: true
  17946. },
  17947. {
  17948. name: "Dynamax",
  17949. height: math.unit(20, "meters")
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17955. {
  17956. front: {
  17957. height: math.unit(6, "feet"),
  17958. weight: math.unit(110, "lb"),
  17959. name: "Front",
  17960. image: {
  17961. source: "./media/characters/klay/front.svg",
  17962. extra: 962 / 883,
  17963. bottom: 0.04
  17964. }
  17965. },
  17966. back: {
  17967. height: math.unit(6, "feet"),
  17968. weight: math.unit(110, "lb"),
  17969. name: "Back",
  17970. image: {
  17971. source: "./media/characters/klay/back.svg",
  17972. extra: 962 / 883
  17973. }
  17974. },
  17975. beans: {
  17976. height: math.unit(1.15, "feet"),
  17977. name: "Beans",
  17978. image: {
  17979. source: "./media/characters/klay/beans.svg"
  17980. }
  17981. },
  17982. },
  17983. [
  17984. {
  17985. name: "Micro",
  17986. height: math.unit(6, "inches")
  17987. },
  17988. {
  17989. name: "Mini",
  17990. height: math.unit(3, "feet")
  17991. },
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(6, "feet"),
  17995. default: true
  17996. },
  17997. {
  17998. name: "Big",
  17999. height: math.unit(25, "feet")
  18000. },
  18001. {
  18002. name: "Macro",
  18003. height: math.unit(100, "feet")
  18004. },
  18005. {
  18006. name: "Megamacro",
  18007. height: math.unit(400, "feet")
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18013. {
  18014. front: {
  18015. height: math.unit(6, "feet"),
  18016. weight: math.unit(160, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/marcus/front.svg",
  18020. extra: 734 / 676,
  18021. bottom: 0.03
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Little",
  18028. height: math.unit(6, "feet")
  18029. },
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(110, "feet"),
  18033. default: true
  18034. },
  18035. {
  18036. name: "Macro",
  18037. height: math.unit(250, "feet")
  18038. },
  18039. {
  18040. name: "Megamacro",
  18041. height: math.unit(1000, "feet")
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(7, "feet"),
  18050. weight: math.unit(275, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/claude-delroute/front.svg",
  18054. extra: 230 / 214,
  18055. bottom: 0.007
  18056. }
  18057. },
  18058. side: {
  18059. height: math.unit(7, "feet"),
  18060. weight: math.unit(275, "lb"),
  18061. name: "Side",
  18062. image: {
  18063. source: "./media/characters/claude-delroute/side.svg",
  18064. extra: 222 / 214,
  18065. bottom: 0.01
  18066. }
  18067. },
  18068. back: {
  18069. height: math.unit(7, "feet"),
  18070. weight: math.unit(275, "lb"),
  18071. name: "Back",
  18072. image: {
  18073. source: "./media/characters/claude-delroute/back.svg",
  18074. extra: 230 / 214,
  18075. bottom: 0.015
  18076. }
  18077. },
  18078. maw: {
  18079. height: math.unit(0.6407, "meters"),
  18080. name: "Maw",
  18081. image: {
  18082. source: "./media/characters/claude-delroute/maw.svg"
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(7, "feet"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Lorge",
  18094. height: math.unit(20, "feet")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(8 + 4 / 12, "feet"),
  18103. weight: math.unit(600, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/dragonien/front.svg",
  18107. extra: 100 / 94,
  18108. bottom: 3.3 / 103.3445
  18109. }
  18110. },
  18111. back: {
  18112. height: math.unit(8 + 4 / 12, "feet"),
  18113. weight: math.unit(600, "lb"),
  18114. name: "Back",
  18115. image: {
  18116. source: "./media/characters/dragonien/back.svg",
  18117. extra: 776 / 746,
  18118. bottom: 6.4 / 782.0616
  18119. }
  18120. },
  18121. foot: {
  18122. height: math.unit(1.54, "feet"),
  18123. name: "Foot",
  18124. image: {
  18125. source: "./media/characters/dragonien/foot.svg",
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(8 + 4 / 12, "feet"),
  18133. default: true
  18134. },
  18135. {
  18136. name: "Macro",
  18137. height: math.unit(200, "feet")
  18138. },
  18139. {
  18140. name: "Megamacro",
  18141. height: math.unit(1, "mile")
  18142. },
  18143. {
  18144. name: "Gigamacro",
  18145. height: math.unit(1000, "miles")
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18151. {
  18152. front: {
  18153. height: math.unit(5 + 2 / 12, "feet"),
  18154. weight: math.unit(110, "lb"),
  18155. name: "Front",
  18156. image: {
  18157. source: "./media/characters/desta/front.svg",
  18158. extra: 767 / 726,
  18159. bottom: 11.7 / 779
  18160. }
  18161. },
  18162. back: {
  18163. height: math.unit(5 + 2 / 12, "feet"),
  18164. weight: math.unit(110, "lb"),
  18165. name: "Back",
  18166. image: {
  18167. source: "./media/characters/desta/back.svg",
  18168. extra: 777 / 728,
  18169. bottom: 6 / 784
  18170. }
  18171. },
  18172. frontAlt: {
  18173. height: math.unit(5 + 2 / 12, "feet"),
  18174. weight: math.unit(110, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/desta/front-alt.svg",
  18178. extra: 1482 / 1417
  18179. }
  18180. },
  18181. side: {
  18182. height: math.unit(5 + 2 / 12, "feet"),
  18183. weight: math.unit(110, "lb"),
  18184. name: "Side",
  18185. image: {
  18186. source: "./media/characters/desta/side.svg",
  18187. extra: 2579 / 2491,
  18188. bottom: 0.053
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Micro",
  18195. height: math.unit(6, "inches")
  18196. },
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(5 + 2 / 12, "feet"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Macro",
  18204. height: math.unit(62, "feet")
  18205. },
  18206. {
  18207. name: "Megamacro",
  18208. height: math.unit(1800, "feet")
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(10, "feet"),
  18217. weight: math.unit(700, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/storm-alystar/front.svg",
  18221. extra: 2112 / 1898,
  18222. bottom: 0.034
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Micro",
  18229. height: math.unit(3.5, "inches")
  18230. },
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(10, "feet"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Macro",
  18238. height: math.unit(400, "feet")
  18239. },
  18240. {
  18241. name: "Deific",
  18242. height: math.unit(60, "miles")
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(2.35, "meters"),
  18251. weight: math.unit(119, "kg"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/ilia/front.svg",
  18255. extra: 1285 / 1255,
  18256. bottom: 0.06
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(2.35, "meters")
  18264. },
  18265. {
  18266. name: "Macro",
  18267. height: math.unit(140, "meters"),
  18268. default: true
  18269. },
  18270. {
  18271. name: "Megamacro",
  18272. height: math.unit(100, "miles")
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(6 + 5 / 12, "feet"),
  18281. weight: math.unit(190, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/kingdead/front.svg",
  18285. extra: 1228 / 1177
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Micro",
  18292. height: math.unit(7, "inches")
  18293. },
  18294. {
  18295. name: "Normal",
  18296. height: math.unit(6 + 5 / 12, "feet")
  18297. },
  18298. {
  18299. name: "Macro",
  18300. height: math.unit(150, "feet"),
  18301. default: true
  18302. },
  18303. {
  18304. name: "Megamacro",
  18305. height: math.unit(200, "miles")
  18306. },
  18307. ]
  18308. ))
  18309. characterMakers.push(() => makeCharacter(
  18310. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18311. {
  18312. front: {
  18313. height: math.unit(8, "feet"),
  18314. weight: math.unit(600, "lb"),
  18315. name: "Front",
  18316. image: {
  18317. source: "./media/characters/kyrehx/front.svg",
  18318. extra: 1195 / 1095,
  18319. bottom: 0.034
  18320. }
  18321. },
  18322. },
  18323. [
  18324. {
  18325. name: "Micro",
  18326. height: math.unit(2, "inches")
  18327. },
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(8, "feet"),
  18331. default: true
  18332. },
  18333. {
  18334. name: "Macro",
  18335. height: math.unit(255, "feet")
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18341. {
  18342. front: {
  18343. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18344. weight: math.unit(184, "lb"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/xang/front.svg",
  18348. extra: 845 / 755
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18356. default: true
  18357. },
  18358. {
  18359. name: "Macro",
  18360. height: math.unit(0.935 * 146, "feet")
  18361. },
  18362. {
  18363. name: "Megamacro",
  18364. height: math.unit(0.935 * 3, "miles")
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18370. {
  18371. frontDressed: {
  18372. height: math.unit(5 + 7 / 12, "feet"),
  18373. weight: math.unit(140, "lb"),
  18374. name: "Front (Dressed)",
  18375. image: {
  18376. source: "./media/characters/doc-weardno/front-dressed.svg",
  18377. extra: 263 / 234
  18378. }
  18379. },
  18380. backDressed: {
  18381. height: math.unit(5 + 7 / 12, "feet"),
  18382. weight: math.unit(140, "lb"),
  18383. name: "Back (Dressed)",
  18384. image: {
  18385. source: "./media/characters/doc-weardno/back-dressed.svg",
  18386. extra: 266 / 238
  18387. }
  18388. },
  18389. front: {
  18390. height: math.unit(5 + 7 / 12, "feet"),
  18391. weight: math.unit(140, "lb"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/doc-weardno/front.svg",
  18395. extra: 254 / 233
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Micro",
  18402. height: math.unit(3, "inches")
  18403. },
  18404. {
  18405. name: "Normal",
  18406. height: math.unit(5 + 7 / 12, "feet"),
  18407. default: true
  18408. },
  18409. {
  18410. name: "Macro",
  18411. height: math.unit(25, "feet")
  18412. },
  18413. {
  18414. name: "Megamacro",
  18415. height: math.unit(2, "miles")
  18416. },
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18421. {
  18422. front: {
  18423. height: math.unit(6 + 2 / 12, "feet"),
  18424. weight: math.unit(153, "lb"),
  18425. name: "Front",
  18426. image: {
  18427. source: "./media/characters/seth-whilst/front.svg",
  18428. bottom: 0.07
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Micro",
  18435. height: math.unit(5, "inches")
  18436. },
  18437. {
  18438. name: "Normal",
  18439. height: math.unit(6 + 2 / 12, "feet"),
  18440. default: true
  18441. },
  18442. ]
  18443. ))
  18444. characterMakers.push(() => makeCharacter(
  18445. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18446. {
  18447. front: {
  18448. height: math.unit(3, "inches"),
  18449. weight: math.unit(8, "grams"),
  18450. name: "Front",
  18451. image: {
  18452. source: "./media/characters/pocket-jabari/front.svg",
  18453. extra: 1024 / 974,
  18454. bottom: 0.039
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Minimicro",
  18461. height: math.unit(8, "mm")
  18462. },
  18463. {
  18464. name: "Micro",
  18465. height: math.unit(3, "inches"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(3, "feet")
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(15, "feet"),
  18479. weight: math.unit(3280, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/sapphy/front.svg",
  18483. extra: 671 / 577,
  18484. bottom: 0.085
  18485. }
  18486. },
  18487. back: {
  18488. height: math.unit(15, "feet"),
  18489. weight: math.unit(3280, "lb"),
  18490. name: "Back",
  18491. image: {
  18492. source: "./media/characters/sapphy/back.svg",
  18493. extra: 631 / 607,
  18494. bottom: 0.045
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(15, "feet")
  18502. },
  18503. {
  18504. name: "Casual Macro",
  18505. height: math.unit(120, "feet")
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(2150, "feet"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Megamacro",
  18514. height: math.unit(8, "miles")
  18515. },
  18516. {
  18517. name: "Galaxy Mom",
  18518. height: math.unit(6, "megalightyears")
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(6, "feet"),
  18527. weight: math.unit(170, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/kiro/front.svg",
  18531. extra: 1064 / 1012,
  18532. bottom: 0.052
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Micro",
  18539. height: math.unit(6, "inches")
  18540. },
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(6, "feet"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Macro",
  18548. height: math.unit(72, "feet")
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(5 + 9 / 12, "feet"),
  18557. weight: math.unit(175, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/irishfox/front.svg",
  18561. extra: 1912 / 1680,
  18562. bottom: 0.02
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Nano",
  18569. height: math.unit(1, "mm")
  18570. },
  18571. {
  18572. name: "Micro",
  18573. height: math.unit(2, "inches")
  18574. },
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(5 + 9 / 12, "feet"),
  18578. default: true
  18579. },
  18580. {
  18581. name: "Macro",
  18582. height: math.unit(45, "feet")
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18588. {
  18589. front: {
  18590. height: math.unit(6 + 1 / 12, "feet"),
  18591. weight: math.unit(75, "lb"),
  18592. name: "Front",
  18593. image: {
  18594. source: "./media/characters/aronai-sieyes/front.svg",
  18595. extra: 1556 / 1480,
  18596. bottom: 0.015
  18597. }
  18598. },
  18599. side: {
  18600. height: math.unit(6 + 1 / 12, "feet"),
  18601. weight: math.unit(75, "lb"),
  18602. name: "Side",
  18603. image: {
  18604. source: "./media/characters/aronai-sieyes/side.svg",
  18605. extra: 1433 / 1390,
  18606. bottom: 0.0393
  18607. }
  18608. },
  18609. back: {
  18610. height: math.unit(6 + 1 / 12, "feet"),
  18611. weight: math.unit(75, "lb"),
  18612. name: "Back",
  18613. image: {
  18614. source: "./media/characters/aronai-sieyes/back.svg",
  18615. extra: 1544 / 1494,
  18616. bottom: 0.02
  18617. }
  18618. },
  18619. frontClothed: {
  18620. height: math.unit(6 + 1 / 12, "feet"),
  18621. weight: math.unit(75, "lb"),
  18622. name: "Front (Clothed)",
  18623. image: {
  18624. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18625. extra: 1582 / 1527
  18626. }
  18627. },
  18628. feral: {
  18629. height: math.unit(18, "feet"),
  18630. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18631. name: "Feral",
  18632. image: {
  18633. source: "./media/characters/aronai-sieyes/feral.svg",
  18634. extra: 1530 / 1240,
  18635. bottom: 0.035
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Micro",
  18642. height: math.unit(2, "inches")
  18643. },
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(6 + 1 / 12, "feet"),
  18647. default: true
  18648. }
  18649. ]
  18650. ))
  18651. characterMakers.push(() => makeCharacter(
  18652. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18653. {
  18654. front: {
  18655. height: math.unit(12, "feet"),
  18656. weight: math.unit(410, "kg"),
  18657. name: "Front",
  18658. image: {
  18659. source: "./media/characters/xuna/front.svg",
  18660. extra: 2184 / 1980
  18661. }
  18662. },
  18663. side: {
  18664. height: math.unit(12, "feet"),
  18665. weight: math.unit(410, "kg"),
  18666. name: "Side",
  18667. image: {
  18668. source: "./media/characters/xuna/side.svg",
  18669. extra: 2184 / 1980
  18670. }
  18671. },
  18672. back: {
  18673. height: math.unit(12, "feet"),
  18674. weight: math.unit(410, "kg"),
  18675. name: "Back",
  18676. image: {
  18677. source: "./media/characters/xuna/back.svg",
  18678. extra: 2184 / 1980
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Nano glow",
  18685. height: math.unit(10, "nm")
  18686. },
  18687. {
  18688. name: "Micro floof",
  18689. height: math.unit(0.3, "m")
  18690. },
  18691. {
  18692. name: "Huggable softy boi",
  18693. height: math.unit(3.6576, "m"),
  18694. default: true
  18695. },
  18696. {
  18697. name: "Admirable floof",
  18698. height: math.unit(80, "meters")
  18699. },
  18700. {
  18701. name: "Gentle macro",
  18702. height: math.unit(300, "meters")
  18703. },
  18704. {
  18705. name: "Very careful floof",
  18706. height: math.unit(3200, "meters")
  18707. },
  18708. {
  18709. name: "The mega floof",
  18710. height: math.unit(36000, "meters")
  18711. },
  18712. {
  18713. name: "Giga-fur-Wicker",
  18714. height: math.unit(4800000, "meters")
  18715. },
  18716. {
  18717. name: "Licky world",
  18718. height: math.unit(20000000, "meters")
  18719. },
  18720. {
  18721. name: "Floofy cyan sun",
  18722. height: math.unit(1500000000, "meters")
  18723. },
  18724. {
  18725. name: "Milky Wicker",
  18726. height: math.unit(1000000000000000000000, "meters")
  18727. },
  18728. {
  18729. name: "The observing Wicker",
  18730. height: math.unit(999999999999999999999999999, "meters")
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18736. {
  18737. front: {
  18738. height: math.unit(5 + 9 / 12, "feet"),
  18739. weight: math.unit(150, "lb"),
  18740. name: "Front",
  18741. image: {
  18742. source: "./media/characters/arokha-sieyes/front.svg",
  18743. extra: 1425 / 1284,
  18744. bottom: 0.05
  18745. }
  18746. },
  18747. },
  18748. [
  18749. {
  18750. name: "Normal",
  18751. height: math.unit(5 + 9 / 12, "feet")
  18752. },
  18753. {
  18754. name: "Macro",
  18755. height: math.unit(30, "meters"),
  18756. default: true
  18757. },
  18758. ]
  18759. ))
  18760. characterMakers.push(() => makeCharacter(
  18761. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18762. {
  18763. front: {
  18764. height: math.unit(6, "feet"),
  18765. weight: math.unit(180, "lb"),
  18766. name: "Front",
  18767. image: {
  18768. source: "./media/characters/arokh-sieyes/front.svg",
  18769. extra: 1830 / 1769,
  18770. bottom: 0.01
  18771. }
  18772. },
  18773. },
  18774. [
  18775. {
  18776. name: "Normal",
  18777. height: math.unit(6, "feet")
  18778. },
  18779. {
  18780. name: "Macro",
  18781. height: math.unit(30, "meters"),
  18782. default: true
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18788. {
  18789. side: {
  18790. height: math.unit(13 + 1 / 12, "feet"),
  18791. weight: math.unit(8.5, "tonnes"),
  18792. name: "Side",
  18793. image: {
  18794. source: "./media/characters/goldeneye/side.svg",
  18795. extra: 1182 / 778,
  18796. bottom: 0.067
  18797. }
  18798. },
  18799. paw: {
  18800. height: math.unit(3.4, "feet"),
  18801. name: "Paw",
  18802. image: {
  18803. source: "./media/characters/goldeneye/paw.svg"
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Normal",
  18810. height: math.unit(13 + 1 / 12, "feet"),
  18811. default: true
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18817. {
  18818. front: {
  18819. height: math.unit(6 + 1 / 12, "feet"),
  18820. weight: math.unit(210, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/leonardo-lycheborne/front.svg",
  18824. extra: 390 / 365,
  18825. bottom: 0.032
  18826. }
  18827. },
  18828. side: {
  18829. height: math.unit(6 + 1 / 12, "feet"),
  18830. weight: math.unit(210, "lb"),
  18831. name: "Side",
  18832. image: {
  18833. source: "./media/characters/leonardo-lycheborne/side.svg",
  18834. extra: 390 / 365,
  18835. bottom: 0.005
  18836. }
  18837. },
  18838. back: {
  18839. height: math.unit(6 + 1 / 12, "feet"),
  18840. weight: math.unit(210, "lb"),
  18841. name: "Back",
  18842. image: {
  18843. source: "./media/characters/leonardo-lycheborne/back.svg",
  18844. extra: 392 / 366,
  18845. bottom: 0.01
  18846. }
  18847. },
  18848. hand: {
  18849. height: math.unit(1.08, "feet"),
  18850. name: "Hand",
  18851. image: {
  18852. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18853. }
  18854. },
  18855. foot: {
  18856. height: math.unit(1.32, "feet"),
  18857. name: "Foot",
  18858. image: {
  18859. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18860. }
  18861. },
  18862. were: {
  18863. height: math.unit(20, "feet"),
  18864. weight: math.unit(7800, "lb"),
  18865. name: "Were",
  18866. image: {
  18867. source: "./media/characters/leonardo-lycheborne/were.svg",
  18868. extra: 308 / 294,
  18869. bottom: 0.048
  18870. }
  18871. },
  18872. feral: {
  18873. height: math.unit(7.5, "feet"),
  18874. weight: math.unit(600, "lb"),
  18875. name: "Feral",
  18876. image: {
  18877. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18878. extra: 210 / 186,
  18879. bottom: 0.108
  18880. }
  18881. },
  18882. taur: {
  18883. height: math.unit(11, "feet"),
  18884. weight: math.unit(3300, "lb"),
  18885. name: "Taur",
  18886. image: {
  18887. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18888. extra: 320 / 303,
  18889. bottom: 0.025
  18890. }
  18891. },
  18892. barghest: {
  18893. height: math.unit(11, "feet"),
  18894. weight: math.unit(1300, "lb"),
  18895. name: "Barghest",
  18896. image: {
  18897. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18898. extra: 323 / 302,
  18899. bottom: 0.027
  18900. }
  18901. },
  18902. dick: {
  18903. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18904. name: "Dick",
  18905. image: {
  18906. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18907. }
  18908. },
  18909. dickWere: {
  18910. height: math.unit((20) / 3.8, "feet"),
  18911. name: "Dick (Were)",
  18912. image: {
  18913. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(6 + 1 / 12, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18927. {
  18928. front: {
  18929. height: math.unit(10, "feet"),
  18930. weight: math.unit(350, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/jet/front.svg",
  18934. extra: 2050 / 1980,
  18935. bottom: 0.013
  18936. }
  18937. },
  18938. back: {
  18939. height: math.unit(10, "feet"),
  18940. weight: math.unit(350, "lb"),
  18941. name: "Back",
  18942. image: {
  18943. source: "./media/characters/jet/back.svg",
  18944. extra: 2050 / 1980,
  18945. bottom: 0.013
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Micro",
  18952. height: math.unit(6, "inches")
  18953. },
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(10, "feet"),
  18957. default: true
  18958. },
  18959. {
  18960. name: "Macro",
  18961. height: math.unit(100, "feet")
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18967. {
  18968. front: {
  18969. height: math.unit(15, "feet"),
  18970. weight: math.unit(2800, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/tanarath/front.svg",
  18974. extra: 2392 / 2220,
  18975. bottom: 0.03
  18976. }
  18977. },
  18978. back: {
  18979. height: math.unit(15, "feet"),
  18980. weight: math.unit(2800, "lb"),
  18981. name: "Back",
  18982. image: {
  18983. source: "./media/characters/tanarath/back.svg",
  18984. extra: 2392 / 2220,
  18985. bottom: 0.03
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(15, "feet"),
  18993. default: true
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(7 + 1 / 12, "feet"),
  19002. weight: math.unit(175, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/patty-cattybatty/front.svg",
  19006. extra: 908 / 874,
  19007. bottom: 0.025
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Micro",
  19014. height: math.unit(1, "inch")
  19015. },
  19016. {
  19017. name: "Normal",
  19018. height: math.unit(7 + 1 / 12, "feet")
  19019. },
  19020. {
  19021. name: "Mini Macro",
  19022. height: math.unit(155, "feet")
  19023. },
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(1077, "feet")
  19027. },
  19028. {
  19029. name: "Mega Macro",
  19030. height: math.unit(47650, "feet"),
  19031. default: true
  19032. },
  19033. {
  19034. name: "Giga Macro",
  19035. height: math.unit(440, "miles")
  19036. },
  19037. {
  19038. name: "Tera Macro",
  19039. height: math.unit(8700, "miles")
  19040. },
  19041. {
  19042. name: "Planetary Macro",
  19043. height: math.unit(32700, "miles")
  19044. },
  19045. {
  19046. name: "Solar Macro",
  19047. height: math.unit(550000, "miles")
  19048. },
  19049. {
  19050. name: "Celestial Macro",
  19051. height: math.unit(2.5, "AU")
  19052. },
  19053. ]
  19054. ))
  19055. characterMakers.push(() => makeCharacter(
  19056. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19057. {
  19058. front: {
  19059. height: math.unit(4 + 5 / 12, "feet"),
  19060. weight: math.unit(90, "lb"),
  19061. name: "Front",
  19062. image: {
  19063. source: "./media/characters/cappu/front.svg",
  19064. extra: 1247 / 1152,
  19065. bottom: 0.012
  19066. }
  19067. },
  19068. },
  19069. [
  19070. {
  19071. name: "Normal",
  19072. height: math.unit(4 + 5 / 12, "feet"),
  19073. default: true
  19074. },
  19075. ]
  19076. ))
  19077. characterMakers.push(() => makeCharacter(
  19078. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19079. {
  19080. frontDressed: {
  19081. height: math.unit(70, "cm"),
  19082. weight: math.unit(6, "kg"),
  19083. name: "Front (Dressed)",
  19084. image: {
  19085. source: "./media/characters/sebi/front-dressed.svg",
  19086. extra: 713.5 / 686.5,
  19087. bottom: 0.003
  19088. }
  19089. },
  19090. front: {
  19091. height: math.unit(70, "cm"),
  19092. weight: math.unit(5, "kg"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/sebi/front.svg",
  19096. extra: 713.5 / 686.5,
  19097. bottom: 0.003
  19098. }
  19099. }
  19100. },
  19101. [
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(70, "cm"),
  19105. default: true
  19106. },
  19107. {
  19108. name: "Macro",
  19109. height: math.unit(8, "meters")
  19110. },
  19111. ]
  19112. ))
  19113. characterMakers.push(() => makeCharacter(
  19114. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19115. {
  19116. front: {
  19117. height: math.unit(6, "feet"),
  19118. weight: math.unit(150, "lb"),
  19119. name: "Front",
  19120. image: {
  19121. source: "./media/characters/typhek/front.svg",
  19122. extra: 1948 / 1929,
  19123. bottom: 0.025
  19124. }
  19125. },
  19126. side: {
  19127. height: math.unit(6, "feet"),
  19128. weight: math.unit(150, "lb"),
  19129. name: "Side",
  19130. image: {
  19131. source: "./media/characters/typhek/side.svg",
  19132. extra: 2034 / 2010,
  19133. bottom: 0.003
  19134. }
  19135. },
  19136. back: {
  19137. height: math.unit(6, "feet"),
  19138. weight: math.unit(150, "lb"),
  19139. name: "Back",
  19140. image: {
  19141. source: "./media/characters/typhek/back.svg",
  19142. extra: 2005 / 1978,
  19143. bottom: 0.004
  19144. }
  19145. },
  19146. palm: {
  19147. height: math.unit(1.2, "feet"),
  19148. name: "Palm",
  19149. image: {
  19150. source: "./media/characters/typhek/palm.svg"
  19151. }
  19152. },
  19153. fist: {
  19154. height: math.unit(1.1, "feet"),
  19155. name: "Fist",
  19156. image: {
  19157. source: "./media/characters/typhek/fist.svg"
  19158. }
  19159. },
  19160. foot: {
  19161. height: math.unit(1.57, "feet"),
  19162. name: "Foot",
  19163. image: {
  19164. source: "./media/characters/typhek/foot.svg"
  19165. }
  19166. },
  19167. sole: {
  19168. height: math.unit(2.05, "feet"),
  19169. name: "Sole",
  19170. image: {
  19171. source: "./media/characters/typhek/sole.svg"
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Macro",
  19178. height: math.unit(40, "stories"),
  19179. default: true
  19180. },
  19181. {
  19182. name: "Megamacro",
  19183. height: math.unit(1, "mile")
  19184. },
  19185. {
  19186. name: "Gigamacro",
  19187. height: math.unit(4000, "solarradii")
  19188. },
  19189. {
  19190. name: "Universal",
  19191. height: math.unit(1.1, "universes")
  19192. }
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19197. {
  19198. side: {
  19199. height: math.unit(5 + 7 / 12, "feet"),
  19200. weight: math.unit(150, "lb"),
  19201. name: "Side",
  19202. image: {
  19203. source: "./media/characters/kassy/side.svg",
  19204. extra: 1280 / 1225,
  19205. bottom: 0.002
  19206. }
  19207. },
  19208. front: {
  19209. height: math.unit(5 + 7 / 12, "feet"),
  19210. weight: math.unit(150, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/kassy/front.svg",
  19214. extra: 1280 / 1225,
  19215. bottom: 0.025
  19216. }
  19217. },
  19218. back: {
  19219. height: math.unit(5 + 7 / 12, "feet"),
  19220. weight: math.unit(150, "lb"),
  19221. name: "Back",
  19222. image: {
  19223. source: "./media/characters/kassy/back.svg",
  19224. extra: 1280 / 1225,
  19225. bottom: 0.002
  19226. }
  19227. },
  19228. foot: {
  19229. height: math.unit(1.266, "feet"),
  19230. name: "Foot",
  19231. image: {
  19232. source: "./media/characters/kassy/foot.svg"
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(5 + 7 / 12, "feet")
  19240. },
  19241. {
  19242. name: "Macro",
  19243. height: math.unit(137, "feet"),
  19244. default: true
  19245. },
  19246. {
  19247. name: "Megamacro",
  19248. height: math.unit(1, "mile")
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(6 + 1 / 12, "feet"),
  19257. weight: math.unit(200, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/neil/front.svg",
  19261. extra: 1326 / 1250,
  19262. bottom: 0.023
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(6 + 1 / 12, "feet"),
  19270. default: true
  19271. },
  19272. {
  19273. name: "Macro",
  19274. height: math.unit(200, "feet")
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(5 + 9 / 12, "feet"),
  19283. weight: math.unit(190, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/atticus/front.svg",
  19287. extra: 2934 / 2785,
  19288. bottom: 0.025
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(5 + 9 / 12, "feet"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Macro",
  19300. height: math.unit(180, "feet")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19306. {
  19307. side: {
  19308. height: math.unit(9, "feet"),
  19309. weight: math.unit(650, "lb"),
  19310. name: "Side",
  19311. image: {
  19312. source: "./media/characters/milo/side.svg",
  19313. extra: 2644 / 2310,
  19314. bottom: 0.032
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(9, "feet"),
  19322. default: true
  19323. },
  19324. {
  19325. name: "Macro",
  19326. height: math.unit(300, "feet")
  19327. },
  19328. ]
  19329. ))
  19330. characterMakers.push(() => makeCharacter(
  19331. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19332. {
  19333. side: {
  19334. height: math.unit(8, "meters"),
  19335. weight: math.unit(90000, "kg"),
  19336. name: "Side",
  19337. image: {
  19338. source: "./media/characters/ijzer/side.svg",
  19339. extra: 2756 / 1600,
  19340. bottom: 0.01
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Small",
  19347. height: math.unit(3, "meters")
  19348. },
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(8, "meters"),
  19352. default: true
  19353. },
  19354. {
  19355. name: "Normal+",
  19356. height: math.unit(10, "meters")
  19357. },
  19358. {
  19359. name: "Bigger",
  19360. height: math.unit(24, "meters")
  19361. },
  19362. {
  19363. name: "Huge",
  19364. height: math.unit(80, "meters")
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(6 + 2 / 12, "feet"),
  19373. weight: math.unit(153, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/luca-cervicum/front.svg",
  19377. extra: 370 / 327,
  19378. bottom: 0.015
  19379. }
  19380. },
  19381. back: {
  19382. height: math.unit(6 + 2 / 12, "feet"),
  19383. weight: math.unit(153, "lb"),
  19384. name: "Back",
  19385. image: {
  19386. source: "./media/characters/luca-cervicum/back.svg",
  19387. extra: 367 / 333,
  19388. bottom: 0.005
  19389. }
  19390. },
  19391. frontGear: {
  19392. height: math.unit(6 + 2 / 12, "feet"),
  19393. weight: math.unit(173, "lb"),
  19394. name: "Front (Gear)",
  19395. image: {
  19396. source: "./media/characters/luca-cervicum/front-gear.svg",
  19397. extra: 377 / 333,
  19398. bottom: 0.006
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(6 + 2 / 12, "feet"),
  19406. default: true
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19412. {
  19413. front: {
  19414. height: math.unit(6 + 1 / 12, "feet"),
  19415. weight: math.unit(304, "lb"),
  19416. name: "Front",
  19417. image: {
  19418. source: "./media/characters/oliver/front.svg",
  19419. extra: 157 / 143,
  19420. bottom: 0.08
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(6 + 1 / 12, "feet"),
  19428. default: true
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(5 + 7 / 12, "feet"),
  19437. weight: math.unit(140, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/shane/front.svg",
  19441. extra: 304 / 289,
  19442. bottom: 0.005
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(5 + 7 / 12, "feet"),
  19450. default: true
  19451. },
  19452. ]
  19453. ))
  19454. characterMakers.push(() => makeCharacter(
  19455. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19456. {
  19457. front: {
  19458. height: math.unit(5 + 9 / 12, "feet"),
  19459. weight: math.unit(178, "lb"),
  19460. name: "Front",
  19461. image: {
  19462. source: "./media/characters/shin/front.svg",
  19463. extra: 159 / 151,
  19464. bottom: 0.015
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(5 + 9 / 12, "feet"),
  19472. default: true
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(5 + 10 / 12, "feet"),
  19481. weight: math.unit(168, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/xerxes/front.svg",
  19485. extra: 282 / 260,
  19486. bottom: 0.045
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(5 + 10 / 12, "feet"),
  19494. default: true
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19500. {
  19501. front: {
  19502. height: math.unit(6 + 7 / 12, "feet"),
  19503. weight: math.unit(208, "lb"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/chaska/front.svg",
  19507. extra: 332 / 319,
  19508. bottom: 0.015
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(6 + 7 / 12, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(5 + 8 / 12, "feet"),
  19525. weight: math.unit(208, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/enuk/front.svg",
  19529. extra: 437 / 406,
  19530. bottom: 0.02
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(5 + 8 / 12, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19544. {
  19545. front: {
  19546. height: math.unit(5 + 10 / 12, "feet"),
  19547. weight: math.unit(252, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/bruun/front.svg",
  19551. extra: 197 / 187,
  19552. bottom: 0.012
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(5 + 10 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(6 + 10 / 12, "feet"),
  19569. weight: math.unit(255, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/alexeev/front.svg",
  19573. extra: 213 / 200,
  19574. bottom: 0.05
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(6 + 10 / 12, "feet"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(2 + 8 / 12, "feet"),
  19591. weight: math.unit(22, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/evelyn/front.svg",
  19595. extra: 208 / 180
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(2 + 8 / 12, "feet"),
  19603. default: true
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(5 + 9 / 12, "feet"),
  19612. weight: math.unit(139, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/inca/front.svg",
  19616. extra: 294 / 291,
  19617. bottom: 0.03
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(5 + 9 / 12, "feet"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(5 + 1 / 12, "feet"),
  19634. weight: math.unit(84, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/magdalene/front.svg",
  19638. extra: 293 / 273
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(5 + 1 / 12, "feet"),
  19646. default: true
  19647. },
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19652. {
  19653. front: {
  19654. height: math.unit(6 + 3 / 12, "feet"),
  19655. weight: math.unit(185, "lb"),
  19656. name: "Front",
  19657. image: {
  19658. source: "./media/characters/mera/front.svg",
  19659. extra: 291 / 277,
  19660. bottom: 0.03
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(6 + 3 / 12, "feet"),
  19668. default: true
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19674. {
  19675. front: {
  19676. height: math.unit(6 + 7 / 12, "feet"),
  19677. weight: math.unit(160, "lb"),
  19678. name: "Front",
  19679. image: {
  19680. source: "./media/characters/ceres/front.svg",
  19681. extra: 1023 / 950,
  19682. bottom: 0.027
  19683. }
  19684. },
  19685. back: {
  19686. height: math.unit(6 + 7 / 12, "feet"),
  19687. weight: math.unit(160, "lb"),
  19688. name: "Back",
  19689. image: {
  19690. source: "./media/characters/ceres/back.svg",
  19691. extra: 1023 / 950
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(6 + 7 / 12, "feet"),
  19699. default: true
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19705. {
  19706. front: {
  19707. height: math.unit(5 + 10 / 12, "feet"),
  19708. weight: math.unit(150, "lb"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/kris/front.svg",
  19712. extra: 885 / 803,
  19713. bottom: 0.03
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(5 + 10 / 12, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(7, "feet"),
  19730. weight: math.unit(120, "kg"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/taluthus/front.svg",
  19734. extra: 903 / 833,
  19735. bottom: 0.015
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(7, "feet"),
  19743. default: true
  19744. },
  19745. {
  19746. name: "Macro",
  19747. height: math.unit(300, "feet")
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(5 + 9 / 12, "feet"),
  19756. weight: math.unit(145, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/dawn/front.svg",
  19760. extra: 2094 / 2016,
  19761. bottom: 0.025
  19762. }
  19763. },
  19764. back: {
  19765. height: math.unit(5 + 9 / 12, "feet"),
  19766. weight: math.unit(160, "lb"),
  19767. name: "Back",
  19768. image: {
  19769. source: "./media/characters/dawn/back.svg",
  19770. extra: 2112 / 2080,
  19771. bottom: 0.005
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(6 + 7 / 12, "feet"),
  19779. default: true
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19785. {
  19786. anthro: {
  19787. height: math.unit(8 + 3 / 12, "feet"),
  19788. weight: math.unit(450, "lb"),
  19789. name: "Anthro",
  19790. image: {
  19791. source: "./media/characters/arador/anthro.svg",
  19792. extra: 1835 / 1718,
  19793. bottom: 0.025
  19794. }
  19795. },
  19796. feral: {
  19797. height: math.unit(4, "feet"),
  19798. weight: math.unit(200, "lb"),
  19799. name: "Feral",
  19800. image: {
  19801. source: "./media/characters/arador/feral.svg",
  19802. extra: 1683 / 1514,
  19803. bottom: 0.07
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(8 + 3 / 12, "feet")
  19811. },
  19812. {
  19813. name: "Macro",
  19814. height: math.unit(82.5, "feet"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(5 + 10 / 12, "feet"),
  19824. weight: math.unit(125, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/dharsi/front.svg",
  19828. extra: 716 / 630,
  19829. bottom: 0.035
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Nano",
  19836. height: math.unit(100, "nm")
  19837. },
  19838. {
  19839. name: "Micro",
  19840. height: math.unit(2, "inches")
  19841. },
  19842. {
  19843. name: "Normal",
  19844. height: math.unit(5 + 10 / 12, "feet"),
  19845. default: true
  19846. },
  19847. {
  19848. name: "Macro",
  19849. height: math.unit(1000, "feet")
  19850. },
  19851. {
  19852. name: "Megamacro",
  19853. height: math.unit(10, "miles")
  19854. },
  19855. {
  19856. name: "Gigamacro",
  19857. height: math.unit(3000, "miles")
  19858. },
  19859. {
  19860. name: "Teramacro",
  19861. height: math.unit(500000, "miles")
  19862. },
  19863. {
  19864. name: "Teramacro+",
  19865. height: math.unit(30, "galaxies")
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(6, "feet"),
  19874. weight: math.unit(150, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/deathy/front.svg",
  19878. extra: 1552 / 1463,
  19879. bottom: 0.025
  19880. }
  19881. },
  19882. side: {
  19883. height: math.unit(6, "feet"),
  19884. weight: math.unit(150, "lb"),
  19885. name: "Side",
  19886. image: {
  19887. source: "./media/characters/deathy/side.svg",
  19888. extra: 1604 / 1455,
  19889. bottom: 0.025
  19890. }
  19891. },
  19892. back: {
  19893. height: math.unit(6, "feet"),
  19894. weight: math.unit(150, "lb"),
  19895. name: "Back",
  19896. image: {
  19897. source: "./media/characters/deathy/back.svg",
  19898. extra: 1580 / 1463,
  19899. bottom: 0.005
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Micro",
  19906. height: math.unit(5, "millimeters")
  19907. },
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(6 + 5 / 12, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19917. {
  19918. front: {
  19919. height: math.unit(16, "feet"),
  19920. weight: math.unit(4000, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/juniper/front.svg",
  19924. bottom: 0.04
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(16, "feet"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19938. {
  19939. front: {
  19940. height: math.unit(6, "feet"),
  19941. weight: math.unit(150, "lb"),
  19942. name: "Front",
  19943. image: {
  19944. source: "./media/characters/hipster/front.svg",
  19945. extra: 1312 / 1209,
  19946. bottom: 0.025
  19947. }
  19948. },
  19949. back: {
  19950. height: math.unit(6, "feet"),
  19951. weight: math.unit(150, "lb"),
  19952. name: "Back",
  19953. image: {
  19954. source: "./media/characters/hipster/back.svg",
  19955. extra: 1281 / 1196,
  19956. bottom: 0.01
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Micro",
  19963. height: math.unit(1, "mm")
  19964. },
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(4, "inches"),
  19968. default: true
  19969. },
  19970. {
  19971. name: "Macro",
  19972. height: math.unit(500, "feet")
  19973. },
  19974. {
  19975. name: "Megamacro",
  19976. height: math.unit(1000, "miles")
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(6, "feet"),
  19985. weight: math.unit(150, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/tendirmuldr/front.svg",
  19989. extra: 1878 / 1772,
  19990. bottom: 0.015
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Megamacro",
  19997. height: math.unit(1500, "miles"),
  19998. default: true
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20004. {
  20005. front: {
  20006. height: math.unit(14, "feet"),
  20007. weight: math.unit(12000, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/mort/front.svg",
  20011. extra: 365 / 318,
  20012. bottom: 0.01
  20013. }
  20014. },
  20015. side: {
  20016. height: math.unit(14, "feet"),
  20017. weight: math.unit(12000, "lb"),
  20018. name: "Side",
  20019. image: {
  20020. source: "./media/characters/mort/side.svg",
  20021. extra: 365 / 318,
  20022. bottom: 0.052
  20023. },
  20024. default: true
  20025. },
  20026. back: {
  20027. height: math.unit(14, "feet"),
  20028. weight: math.unit(12000, "lb"),
  20029. name: "Back",
  20030. image: {
  20031. source: "./media/characters/mort/back.svg",
  20032. extra: 371 / 332,
  20033. bottom: 0.18
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(14, "feet"),
  20041. default: true
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20047. {
  20048. front: {
  20049. height: math.unit(8, "feet"),
  20050. weight: math.unit(1, "ton"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/lycoa/front.svg",
  20054. extra: 1875 / 1789,
  20055. bottom: 0.022
  20056. }
  20057. },
  20058. back: {
  20059. height: math.unit(8, "feet"),
  20060. weight: math.unit(1, "ton"),
  20061. name: "Back",
  20062. image: {
  20063. source: "./media/characters/lycoa/back.svg",
  20064. extra: 1835 / 1781,
  20065. bottom: 0.03
  20066. }
  20067. },
  20068. head: {
  20069. height: math.unit(2.1, "feet"),
  20070. name: "Head",
  20071. image: {
  20072. source: "./media/characters/lycoa/head.svg"
  20073. }
  20074. },
  20075. tailmaw: {
  20076. height: math.unit(1.9, "feet"),
  20077. name: "Tailmaw",
  20078. image: {
  20079. source: "./media/characters/lycoa/tailmaw.svg"
  20080. }
  20081. },
  20082. tentacles: {
  20083. height: math.unit(2.1, "feet"),
  20084. name: "Tentacles",
  20085. image: {
  20086. source: "./media/characters/lycoa/tentacles.svg"
  20087. }
  20088. },
  20089. dick: {
  20090. height: math.unit(1.73, "feet"),
  20091. name: "Dick",
  20092. image: {
  20093. source: "./media/characters/lycoa/dick.svg"
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(8, "feet"),
  20101. default: true
  20102. },
  20103. {
  20104. name: "Macro",
  20105. height: math.unit(30, "feet")
  20106. },
  20107. ]
  20108. ))
  20109. characterMakers.push(() => makeCharacter(
  20110. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20111. {
  20112. front: {
  20113. height: math.unit(4 + 2 / 12, "feet"),
  20114. weight: math.unit(70, "lb"),
  20115. name: "Front",
  20116. image: {
  20117. source: "./media/characters/naldara/front.svg",
  20118. extra: 841 / 720,
  20119. bottom: 0.04
  20120. }
  20121. },
  20122. naga: {
  20123. height: math.unit(23, "feet"),
  20124. weight: math.unit(15000, "kg"),
  20125. name: "Naga",
  20126. image: {
  20127. source: "./media/characters/naldara/naga.svg",
  20128. extra: 3290 / 2959,
  20129. bottom: 124 / 3432
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(4 + 2 / 12, "feet"),
  20137. default: true
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20143. {
  20144. front: {
  20145. height: math.unit(13 + 7 / 12, "feet"),
  20146. weight: math.unit(1500, "lb"),
  20147. name: "Front",
  20148. image: {
  20149. source: "./media/characters/briar/front.svg",
  20150. extra: 626 / 596,
  20151. bottom: 0.08
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(13 + 7 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20165. {
  20166. side: {
  20167. height: math.unit(10, "feet"),
  20168. weight: math.unit(500, "lb"),
  20169. name: "Side",
  20170. image: {
  20171. source: "./media/characters/vanguard/side.svg",
  20172. extra: 502 / 425,
  20173. bottom: 0.087
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(10, "feet"),
  20181. default: true
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(7.5, "feet"),
  20190. weight: math.unit(2, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/artemis/front.svg",
  20194. extra: 1192 / 1075,
  20195. bottom: 0.07
  20196. }
  20197. },
  20198. frontNsfw: {
  20199. height: math.unit(7.5, "feet"),
  20200. weight: math.unit(2, "lb"),
  20201. name: "Front (NSFW)",
  20202. image: {
  20203. source: "./media/characters/artemis/front-nsfw.svg",
  20204. extra: 1192 / 1075,
  20205. bottom: 0.07
  20206. }
  20207. },
  20208. frontNsfwer: {
  20209. height: math.unit(7.5, "feet"),
  20210. weight: math.unit(2, "lb"),
  20211. name: "Front (NSFW-er)",
  20212. image: {
  20213. source: "./media/characters/artemis/front-nsfwer.svg",
  20214. extra: 1192 / 1075,
  20215. bottom: 0.07
  20216. }
  20217. },
  20218. side: {
  20219. height: math.unit(7.5, "feet"),
  20220. weight: math.unit(2, "lb"),
  20221. name: "Side",
  20222. image: {
  20223. source: "./media/characters/artemis/side.svg",
  20224. extra: 1192 / 1075,
  20225. bottom: 0.07
  20226. }
  20227. },
  20228. sideNsfw: {
  20229. height: math.unit(7.5, "feet"),
  20230. weight: math.unit(2, "lb"),
  20231. name: "Side (NSFW)",
  20232. image: {
  20233. source: "./media/characters/artemis/side-nsfw.svg",
  20234. extra: 1192 / 1075,
  20235. bottom: 0.07
  20236. }
  20237. },
  20238. sideNsfwer: {
  20239. height: math.unit(7.5, "feet"),
  20240. weight: math.unit(2, "lb"),
  20241. name: "Side (NSFW-er)",
  20242. image: {
  20243. source: "./media/characters/artemis/side-nsfwer.svg",
  20244. extra: 1192 / 1075,
  20245. bottom: 0.07
  20246. }
  20247. },
  20248. maw: {
  20249. height: math.unit(1.1, "feet"),
  20250. name: "Maw",
  20251. image: {
  20252. source: "./media/characters/artemis/maw.svg"
  20253. }
  20254. },
  20255. stomach: {
  20256. height: math.unit(0.95, "feet"),
  20257. name: "Stomach",
  20258. image: {
  20259. source: "./media/characters/artemis/stomach.svg"
  20260. }
  20261. },
  20262. dickCanine: {
  20263. height: math.unit(1, "feet"),
  20264. name: "Dick (Canine)",
  20265. image: {
  20266. source: "./media/characters/artemis/dick-canine.svg"
  20267. }
  20268. },
  20269. dickEquine: {
  20270. height: math.unit(0.85, "feet"),
  20271. name: "Dick (Equine)",
  20272. image: {
  20273. source: "./media/characters/artemis/dick-equine.svg"
  20274. }
  20275. },
  20276. dickExotic: {
  20277. height: math.unit(0.85, "feet"),
  20278. name: "Dick (Exotic)",
  20279. image: {
  20280. source: "./media/characters/artemis/dick-exotic.svg"
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(7.5, "feet"),
  20288. default: true
  20289. },
  20290. {
  20291. name: "Enlarged",
  20292. height: math.unit(12, "feet")
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20298. {
  20299. front: {
  20300. height: math.unit(5 + 3 / 12, "feet"),
  20301. weight: math.unit(160, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/kira/front.svg",
  20305. extra: 906 / 786,
  20306. bottom: 0.01
  20307. }
  20308. },
  20309. back: {
  20310. height: math.unit(5 + 3 / 12, "feet"),
  20311. weight: math.unit(160, "lb"),
  20312. name: "Back",
  20313. image: {
  20314. source: "./media/characters/kira/back.svg",
  20315. extra: 882 / 757,
  20316. bottom: 0.005
  20317. }
  20318. },
  20319. frontDressed: {
  20320. height: math.unit(5 + 3 / 12, "feet"),
  20321. weight: math.unit(160, "lb"),
  20322. name: "Front (Dressed)",
  20323. image: {
  20324. source: "./media/characters/kira/front-dressed.svg",
  20325. extra: 906 / 786,
  20326. bottom: 0.01
  20327. }
  20328. },
  20329. beans: {
  20330. height: math.unit(0.92, "feet"),
  20331. name: "Beans",
  20332. image: {
  20333. source: "./media/characters/kira/beans.svg"
  20334. }
  20335. },
  20336. },
  20337. [
  20338. {
  20339. name: "Normal",
  20340. height: math.unit(5 + 3 / 12, "feet"),
  20341. default: true
  20342. },
  20343. ]
  20344. ))
  20345. characterMakers.push(() => makeCharacter(
  20346. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20347. {
  20348. front: {
  20349. height: math.unit(5 + 4 / 12, "feet"),
  20350. weight: math.unit(145, "lb"),
  20351. name: "Front",
  20352. image: {
  20353. source: "./media/characters/scramble/front.svg",
  20354. extra: 763 / 727,
  20355. bottom: 0.05
  20356. }
  20357. },
  20358. back: {
  20359. height: math.unit(5 + 4 / 12, "feet"),
  20360. weight: math.unit(145, "lb"),
  20361. name: "Back",
  20362. image: {
  20363. source: "./media/characters/scramble/back.svg",
  20364. extra: 826 / 737,
  20365. bottom: 0.002
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(5 + 4 / 12, "feet"),
  20373. default: true
  20374. },
  20375. ]
  20376. ))
  20377. characterMakers.push(() => makeCharacter(
  20378. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20379. {
  20380. side: {
  20381. height: math.unit(6 + 2 / 12, "feet"),
  20382. weight: math.unit(190, "lb"),
  20383. name: "Side",
  20384. image: {
  20385. source: "./media/characters/biscuit/side.svg",
  20386. extra: 858 / 791,
  20387. bottom: 0.044
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(6 + 2 / 12, "feet"),
  20395. default: true
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20401. {
  20402. front: {
  20403. height: math.unit(5 + 2 / 12, "feet"),
  20404. weight: math.unit(120, "lb"),
  20405. name: "Front",
  20406. image: {
  20407. source: "./media/characters/poffin/front.svg",
  20408. extra: 786 / 680,
  20409. bottom: 0.005
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(5 + 2 / 12, "feet"),
  20417. default: true
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20423. {
  20424. front: {
  20425. height: math.unit(6 + 3 / 12, "feet"),
  20426. weight: math.unit(519, "lb"),
  20427. name: "Front",
  20428. image: {
  20429. source: "./media/characters/dhari/front.svg",
  20430. extra: 1048 / 946,
  20431. bottom: 0.015
  20432. }
  20433. },
  20434. back: {
  20435. height: math.unit(6 + 3 / 12, "feet"),
  20436. weight: math.unit(519, "lb"),
  20437. name: "Back",
  20438. image: {
  20439. source: "./media/characters/dhari/back.svg",
  20440. extra: 1048 / 931,
  20441. bottom: 0.005
  20442. }
  20443. },
  20444. frontDressed: {
  20445. height: math.unit(6 + 3 / 12, "feet"),
  20446. weight: math.unit(519, "lb"),
  20447. name: "Front (Dressed)",
  20448. image: {
  20449. source: "./media/characters/dhari/front-dressed.svg",
  20450. extra: 1713 / 1546,
  20451. bottom: 0.02
  20452. }
  20453. },
  20454. backDressed: {
  20455. height: math.unit(6 + 3 / 12, "feet"),
  20456. weight: math.unit(519, "lb"),
  20457. name: "Back (Dressed)",
  20458. image: {
  20459. source: "./media/characters/dhari/back-dressed.svg",
  20460. extra: 1699 / 1537,
  20461. bottom: 0.01
  20462. }
  20463. },
  20464. maw: {
  20465. height: math.unit(0.95, "feet"),
  20466. name: "Maw",
  20467. image: {
  20468. source: "./media/characters/dhari/maw.svg"
  20469. }
  20470. },
  20471. wereFront: {
  20472. height: math.unit(12 + 8 / 12, "feet"),
  20473. weight: math.unit(4000, "lb"),
  20474. name: "Front (Were)",
  20475. image: {
  20476. source: "./media/characters/dhari/were-front.svg",
  20477. extra: 1065 / 969,
  20478. bottom: 0.015
  20479. }
  20480. },
  20481. wereBack: {
  20482. height: math.unit(12 + 8 / 12, "feet"),
  20483. weight: math.unit(4000, "lb"),
  20484. name: "Back (Were)",
  20485. image: {
  20486. source: "./media/characters/dhari/were-back.svg",
  20487. extra: 1065 / 969,
  20488. bottom: 0.012
  20489. }
  20490. },
  20491. wereMaw: {
  20492. height: math.unit(0.625, "meters"),
  20493. name: "Maw (Were)",
  20494. image: {
  20495. source: "./media/characters/dhari/were-maw.svg"
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(6 + 3 / 12, "feet"),
  20503. default: true
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20509. {
  20510. anthro: {
  20511. height: math.unit(5 + 7 / 12, "feet"),
  20512. weight: math.unit(175, "lb"),
  20513. name: "Anthro",
  20514. image: {
  20515. source: "./media/characters/rena-dyne/anthro.svg",
  20516. extra: 1849 / 1785,
  20517. bottom: 0.005
  20518. }
  20519. },
  20520. taur: {
  20521. height: math.unit(15 + 6 / 12, "feet"),
  20522. weight: math.unit(8000, "lb"),
  20523. name: "Taur",
  20524. image: {
  20525. source: "./media/characters/rena-dyne/taur.svg",
  20526. extra: 2315 / 2234,
  20527. bottom: 0.033
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(5 + 7 / 12, "feet"),
  20535. default: true
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20541. {
  20542. front: {
  20543. height: math.unit(8, "feet"),
  20544. weight: math.unit(600, "lb"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/weremeep/front.svg",
  20548. extra: 967 / 862,
  20549. bottom: 0.01
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(8, "feet"),
  20557. default: true
  20558. },
  20559. {
  20560. name: "Lorg",
  20561. height: math.unit(12, "feet")
  20562. },
  20563. {
  20564. name: "Oh Lawd She Comin'",
  20565. height: math.unit(20, "feet")
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20571. {
  20572. front: {
  20573. height: math.unit(4, "feet"),
  20574. weight: math.unit(90, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/reza/front.svg",
  20578. extra: 1183 / 1111,
  20579. bottom: 0.017
  20580. }
  20581. },
  20582. back: {
  20583. height: math.unit(4, "feet"),
  20584. weight: math.unit(90, "lb"),
  20585. name: "Back",
  20586. image: {
  20587. source: "./media/characters/reza/back.svg",
  20588. extra: 1183 / 1111,
  20589. bottom: 0.01
  20590. }
  20591. },
  20592. drake: {
  20593. height: math.unit(30, "feet"),
  20594. weight: math.unit(246960, "lb"),
  20595. name: "Drake",
  20596. image: {
  20597. source: "./media/characters/reza/drake.svg",
  20598. extra: 2350 / 2024,
  20599. bottom: 60.7 / 2403
  20600. }
  20601. },
  20602. },
  20603. [
  20604. {
  20605. name: "Normal",
  20606. height: math.unit(4, "feet"),
  20607. default: true
  20608. },
  20609. ]
  20610. ))
  20611. characterMakers.push(() => makeCharacter(
  20612. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20613. {
  20614. side: {
  20615. height: math.unit(15, "feet"),
  20616. weight: math.unit(14, "tons"),
  20617. name: "Side",
  20618. image: {
  20619. source: "./media/characters/athea/side.svg",
  20620. extra: 960 / 540,
  20621. bottom: 0.003
  20622. }
  20623. },
  20624. sitting: {
  20625. height: math.unit(6 * 2.85, "feet"),
  20626. weight: math.unit(14, "tons"),
  20627. name: "Sitting",
  20628. image: {
  20629. source: "./media/characters/athea/sitting.svg",
  20630. extra: 621 / 581,
  20631. bottom: 0.075
  20632. }
  20633. },
  20634. maw: {
  20635. height: math.unit(7.59498031496063, "feet"),
  20636. name: "Maw",
  20637. image: {
  20638. source: "./media/characters/athea/maw.svg"
  20639. }
  20640. },
  20641. },
  20642. [
  20643. {
  20644. name: "Lap Cat",
  20645. height: math.unit(2.5, "feet")
  20646. },
  20647. {
  20648. name: "Minimacro",
  20649. height: math.unit(15, "feet"),
  20650. default: true
  20651. },
  20652. {
  20653. name: "Macro",
  20654. height: math.unit(120, "feet")
  20655. },
  20656. {
  20657. name: "Macro+",
  20658. height: math.unit(640, "feet")
  20659. },
  20660. {
  20661. name: "Colossus",
  20662. height: math.unit(2.2, "miles")
  20663. },
  20664. ]
  20665. ))
  20666. characterMakers.push(() => makeCharacter(
  20667. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20668. {
  20669. front: {
  20670. height: math.unit(8 + 8 / 12, "feet"),
  20671. weight: math.unit(130, "kg"),
  20672. name: "Front",
  20673. image: {
  20674. source: "./media/characters/seroko/front.svg",
  20675. extra: 1385 / 1280,
  20676. bottom: 0.025
  20677. }
  20678. },
  20679. back: {
  20680. height: math.unit(8 + 8 / 12, "feet"),
  20681. weight: math.unit(130, "kg"),
  20682. name: "Back",
  20683. image: {
  20684. source: "./media/characters/seroko/back.svg",
  20685. extra: 1369 / 1238,
  20686. bottom: 0.018
  20687. }
  20688. },
  20689. frontDressed: {
  20690. height: math.unit(8 + 8 / 12, "feet"),
  20691. weight: math.unit(130, "kg"),
  20692. name: "Front (Dressed)",
  20693. image: {
  20694. source: "./media/characters/seroko/front-dressed.svg",
  20695. extra: 1366 / 1275,
  20696. bottom: 0.03
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(8 + 8 / 12, "feet"),
  20704. default: true
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(5.5, "feet"),
  20713. weight: math.unit(160, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/quatzi/front.svg",
  20717. extra: 2346 / 2242,
  20718. bottom: 0.015
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(5.5, "feet"),
  20726. default: true
  20727. },
  20728. {
  20729. name: "Big",
  20730. height: math.unit(7.7, "feet")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(5 + 11 / 12, "feet"),
  20739. weight: math.unit(180, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/sen/front.svg",
  20743. extra: 1321 / 1254,
  20744. bottom: 0.015
  20745. }
  20746. },
  20747. side: {
  20748. height: math.unit(5 + 11 / 12, "feet"),
  20749. weight: math.unit(180, "lb"),
  20750. name: "Side",
  20751. image: {
  20752. source: "./media/characters/sen/side.svg",
  20753. extra: 1321 / 1254,
  20754. bottom: 0.007
  20755. }
  20756. },
  20757. back: {
  20758. height: math.unit(5 + 11 / 12, "feet"),
  20759. weight: math.unit(180, "lb"),
  20760. name: "Back",
  20761. image: {
  20762. source: "./media/characters/sen/back.svg",
  20763. extra: 1321 / 1254
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(5 + 11 / 12, "feet"),
  20771. default: true
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20777. {
  20778. front: {
  20779. height: math.unit(166.6, "cm"),
  20780. weight: math.unit(66.6, "kg"),
  20781. name: "Front",
  20782. image: {
  20783. source: "./media/characters/fruity/front.svg",
  20784. extra: 1510 / 1386,
  20785. bottom: 0.04
  20786. }
  20787. },
  20788. back: {
  20789. height: math.unit(166.6, "cm"),
  20790. weight: math.unit(66.6, "lb"),
  20791. name: "Back",
  20792. image: {
  20793. source: "./media/characters/fruity/back.svg",
  20794. extra: 1563 / 1435,
  20795. bottom: 0.005
  20796. }
  20797. },
  20798. },
  20799. [
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(166.6, "cm"),
  20803. default: true
  20804. },
  20805. {
  20806. name: "Demonic",
  20807. height: math.unit(166.6, "feet")
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20813. {
  20814. side: {
  20815. height: math.unit(10, "feet"),
  20816. weight: math.unit(500, "lb"),
  20817. name: "Side",
  20818. image: {
  20819. source: "./media/characters/zost/side.svg",
  20820. extra: 966 / 880,
  20821. bottom: 0.075
  20822. }
  20823. },
  20824. mawFront: {
  20825. height: math.unit(1.08, "meters"),
  20826. name: "Maw (Front)",
  20827. image: {
  20828. source: "./media/characters/zost/maw-front.svg"
  20829. }
  20830. },
  20831. mawSide: {
  20832. height: math.unit(2.66, "feet"),
  20833. name: "Maw (Side)",
  20834. image: {
  20835. source: "./media/characters/zost/maw-side.svg"
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(10, "feet"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(5 + 4 / 12, "feet"),
  20852. weight: math.unit(120, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/luci/front.svg",
  20856. extra: 1985 / 1884,
  20857. bottom: 0.04
  20858. }
  20859. },
  20860. back: {
  20861. height: math.unit(5 + 4 / 12, "feet"),
  20862. weight: math.unit(120, "lb"),
  20863. name: "Back",
  20864. image: {
  20865. source: "./media/characters/luci/back.svg",
  20866. extra: 1892 / 1791,
  20867. bottom: 0.002
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(5 + 4 / 12, "feet"),
  20875. default: true
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20881. {
  20882. front: {
  20883. height: math.unit(1500, "feet"),
  20884. weight: math.unit(3.8e6, "tons"),
  20885. name: "Front",
  20886. image: {
  20887. source: "./media/characters/2th/front.svg",
  20888. extra: 3489 / 3350,
  20889. bottom: 0.1
  20890. }
  20891. },
  20892. foot: {
  20893. height: math.unit(461, "feet"),
  20894. name: "Foot",
  20895. image: {
  20896. source: "./media/characters/2th/foot.svg"
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "\"Micro\"",
  20903. height: math.unit(15 + 7 / 12, "feet")
  20904. },
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(1500, "feet"),
  20908. default: true
  20909. },
  20910. {
  20911. name: "Macro",
  20912. height: math.unit(5000, "feet")
  20913. },
  20914. {
  20915. name: "Megamacro",
  20916. height: math.unit(15, "miles")
  20917. },
  20918. {
  20919. name: "Gigamacro",
  20920. height: math.unit(4000, "miles")
  20921. },
  20922. {
  20923. name: "Galactic",
  20924. height: math.unit(50, "AU")
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20930. {
  20931. front: {
  20932. height: math.unit(5 + 6 / 12, "feet"),
  20933. weight: math.unit(220, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/amethyst/front.svg",
  20937. extra: 2078 / 2040,
  20938. bottom: 0.045
  20939. }
  20940. },
  20941. back: {
  20942. height: math.unit(5 + 6 / 12, "feet"),
  20943. weight: math.unit(220, "lb"),
  20944. name: "Back",
  20945. image: {
  20946. source: "./media/characters/amethyst/back.svg",
  20947. extra: 2021 / 1989,
  20948. bottom: 0.02
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(5 + 6 / 12, "feet"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20962. {
  20963. front: {
  20964. height: math.unit(4 + 11 / 12, "feet"),
  20965. weight: math.unit(120, "lb"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/yumi-akiyama/front.svg",
  20969. extra: 1327 / 1235,
  20970. bottom: 0.02
  20971. }
  20972. },
  20973. back: {
  20974. height: math.unit(4 + 11 / 12, "feet"),
  20975. weight: math.unit(120, "lb"),
  20976. name: "Back",
  20977. image: {
  20978. source: "./media/characters/yumi-akiyama/back.svg",
  20979. extra: 1287 / 1245,
  20980. bottom: 0.002
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Galactic",
  20987. height: math.unit(50, "galaxies"),
  20988. default: true
  20989. },
  20990. {
  20991. name: "Universal",
  20992. height: math.unit(100, "universes")
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(8, "feet"),
  21001. weight: math.unit(500, "lb"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/rifter-yrmori/front.svg",
  21005. extra: 1180 / 1125,
  21006. bottom: 0.02
  21007. }
  21008. },
  21009. back: {
  21010. height: math.unit(8, "feet"),
  21011. weight: math.unit(500, "lb"),
  21012. name: "Back",
  21013. image: {
  21014. source: "./media/characters/rifter-yrmori/back.svg",
  21015. extra: 1190 / 1145,
  21016. bottom: 0.001
  21017. }
  21018. },
  21019. wings: {
  21020. height: math.unit(7.75, "feet"),
  21021. weight: math.unit(500, "lb"),
  21022. name: "Wings",
  21023. image: {
  21024. source: "./media/characters/rifter-yrmori/wings.svg",
  21025. extra: 1357 / 1285
  21026. }
  21027. },
  21028. maw: {
  21029. height: math.unit(0.8, "feet"),
  21030. name: "Maw",
  21031. image: {
  21032. source: "./media/characters/rifter-yrmori/maw.svg"
  21033. }
  21034. },
  21035. mawfront: {
  21036. height: math.unit(1.45, "feet"),
  21037. name: "Maw (Front)",
  21038. image: {
  21039. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21040. }
  21041. },
  21042. },
  21043. [
  21044. {
  21045. name: "Normal",
  21046. height: math.unit(8, "feet"),
  21047. default: true
  21048. },
  21049. {
  21050. name: "Macro",
  21051. height: math.unit(42, "meters")
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21057. {
  21058. were: {
  21059. height: math.unit(25 + 6 / 12, "feet"),
  21060. weight: math.unit(10000, "lb"),
  21061. name: "Were",
  21062. image: {
  21063. source: "./media/characters/tahajin/were.svg",
  21064. extra: 801 / 770,
  21065. bottom: 0.042
  21066. }
  21067. },
  21068. aquatic: {
  21069. height: math.unit(6 + 4 / 12, "feet"),
  21070. weight: math.unit(160, "lb"),
  21071. name: "Aquatic",
  21072. image: {
  21073. source: "./media/characters/tahajin/aquatic.svg",
  21074. extra: 572 / 542,
  21075. bottom: 0.04
  21076. }
  21077. },
  21078. chow: {
  21079. height: math.unit(8 + 11 / 12, "feet"),
  21080. weight: math.unit(450, "lb"),
  21081. name: "Chow",
  21082. image: {
  21083. source: "./media/characters/tahajin/chow.svg",
  21084. extra: 660 / 640,
  21085. bottom: 0.015
  21086. }
  21087. },
  21088. demiNaga: {
  21089. height: math.unit(6 + 8 / 12, "feet"),
  21090. weight: math.unit(300, "lb"),
  21091. name: "Demi Naga",
  21092. image: {
  21093. source: "./media/characters/tahajin/demi-naga.svg",
  21094. extra: 643 / 615,
  21095. bottom: 0.1
  21096. }
  21097. },
  21098. data: {
  21099. height: math.unit(5, "inches"),
  21100. weight: math.unit(0.1, "lb"),
  21101. name: "Data",
  21102. image: {
  21103. source: "./media/characters/tahajin/data.svg"
  21104. }
  21105. },
  21106. fluu: {
  21107. height: math.unit(5 + 7 / 12, "feet"),
  21108. weight: math.unit(140, "lb"),
  21109. name: "Fluu",
  21110. image: {
  21111. source: "./media/characters/tahajin/fluu.svg",
  21112. extra: 628 / 592,
  21113. bottom: 0.02
  21114. }
  21115. },
  21116. starWarrior: {
  21117. height: math.unit(4 + 5 / 12, "feet"),
  21118. weight: math.unit(50, "lb"),
  21119. name: "Star Warrior",
  21120. image: {
  21121. source: "./media/characters/tahajin/star-warrior.svg"
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Normal",
  21128. height: math.unit(25 + 6 / 12, "feet"),
  21129. default: true
  21130. },
  21131. ]
  21132. ))
  21133. characterMakers.push(() => makeCharacter(
  21134. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21135. {
  21136. front: {
  21137. height: math.unit(8, "feet"),
  21138. weight: math.unit(350, "lb"),
  21139. name: "Front",
  21140. image: {
  21141. source: "./media/characters/gabira/front.svg",
  21142. extra: 608 / 580,
  21143. bottom: 0.03
  21144. }
  21145. },
  21146. back: {
  21147. height: math.unit(8, "feet"),
  21148. weight: math.unit(350, "lb"),
  21149. name: "Back",
  21150. image: {
  21151. source: "./media/characters/gabira/back.svg",
  21152. extra: 608 / 580,
  21153. bottom: 0.03
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Normal",
  21160. height: math.unit(8, "feet"),
  21161. default: true
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21167. {
  21168. front: {
  21169. height: math.unit(5 + 3 / 12, "feet"),
  21170. weight: math.unit(137, "lb"),
  21171. name: "Front",
  21172. image: {
  21173. source: "./media/characters/sasha-katraine/front.svg",
  21174. bottom: 0.045
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Micro",
  21181. height: math.unit(5, "inches")
  21182. },
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(5 + 3 / 12, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21192. {
  21193. side: {
  21194. height: math.unit(4, "inches"),
  21195. weight: math.unit(200, "grams"),
  21196. name: "Side",
  21197. image: {
  21198. source: "./media/characters/der/side.svg",
  21199. extra: 719 / 400,
  21200. bottom: 30.6 / 749.9187
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Micro",
  21207. height: math.unit(4, "inches"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21214. {
  21215. side: {
  21216. height: math.unit(30, "meters"),
  21217. weight: math.unit(700, "tonnes"),
  21218. name: "Side",
  21219. image: {
  21220. source: "./media/characters/fixerdragon/side.svg",
  21221. extra: (1293.0514 - 116.03) / 1106.86,
  21222. bottom: 116.03 / 1293.0514
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Planck",
  21229. height: math.unit(1.6e-35, "meters")
  21230. },
  21231. {
  21232. name: "Micro",
  21233. height: math.unit(0.4, "meters")
  21234. },
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(30, "meters"),
  21238. default: true
  21239. },
  21240. {
  21241. name: "Megamacro",
  21242. height: math.unit(1.2, "megameters")
  21243. },
  21244. {
  21245. name: "Teramacro",
  21246. height: math.unit(130, "terameters")
  21247. },
  21248. {
  21249. name: "Yottamacro",
  21250. height: math.unit(6200, "yottameters")
  21251. },
  21252. ]
  21253. ));
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(8, "feet"),
  21259. weight: math.unit(250, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/kite/front.svg",
  21263. extra: 2796 / 2659,
  21264. bottom: 0.002
  21265. }
  21266. },
  21267. },
  21268. [
  21269. {
  21270. name: "Normal",
  21271. height: math.unit(8, "feet"),
  21272. default: true
  21273. },
  21274. {
  21275. name: "Macro",
  21276. height: math.unit(360, "feet")
  21277. },
  21278. {
  21279. name: "Megamacro",
  21280. height: math.unit(1500, "feet")
  21281. },
  21282. ]
  21283. ))
  21284. characterMakers.push(() => makeCharacter(
  21285. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21286. {
  21287. front: {
  21288. height: math.unit(5 + 10 / 12, "feet"),
  21289. weight: math.unit(150, "lb"),
  21290. name: "Front",
  21291. image: {
  21292. source: "./media/characters/poojawa-vynar/front.svg",
  21293. extra: (1506.1547 - 55) / 1356.6,
  21294. bottom: 55 / 1506.1547
  21295. }
  21296. },
  21297. frontTailless: {
  21298. height: math.unit(5 + 10 / 12, "feet"),
  21299. weight: math.unit(150, "lb"),
  21300. name: "Front (Tailless)",
  21301. image: {
  21302. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21303. extra: (1506.1547 - 55) / 1356.6,
  21304. bottom: 55 / 1506.1547
  21305. }
  21306. },
  21307. },
  21308. [
  21309. {
  21310. name: "Normal",
  21311. height: math.unit(5 + 10 / 12, "feet"),
  21312. default: true
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21318. {
  21319. front: {
  21320. height: math.unit(293, "meters"),
  21321. weight: math.unit(70400, "tons"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/violette/front.svg",
  21325. extra: 1227 / 1180,
  21326. bottom: 0.005
  21327. }
  21328. },
  21329. back: {
  21330. height: math.unit(293, "meters"),
  21331. weight: math.unit(70400, "tons"),
  21332. name: "Back",
  21333. image: {
  21334. source: "./media/characters/violette/back.svg",
  21335. extra: 1227 / 1180,
  21336. bottom: 0.005
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Macro",
  21343. height: math.unit(293, "meters"),
  21344. default: true
  21345. },
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21350. {
  21351. front: {
  21352. height: math.unit(1050, "feet"),
  21353. weight: math.unit(200000, "tons"),
  21354. name: "Front",
  21355. image: {
  21356. source: "./media/characters/alessandra/front.svg",
  21357. extra: 960 / 912,
  21358. bottom: 0.06
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Macro",
  21365. height: math.unit(1050, "feet")
  21366. },
  21367. {
  21368. name: "Macro+",
  21369. height: math.unit(900, "meters"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(5, "feet"),
  21379. weight: math.unit(187, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/person/front.svg",
  21383. extra: 3087 / 2945,
  21384. bottom: 91 / 3181
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Micro",
  21391. height: math.unit(3, "inches")
  21392. },
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(5, "feet"),
  21396. default: true
  21397. },
  21398. {
  21399. name: "Macro",
  21400. height: math.unit(90, "feet")
  21401. },
  21402. {
  21403. name: "Max Size",
  21404. height: math.unit(280, "feet")
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21410. {
  21411. front: {
  21412. height: math.unit(4.5, "meters"),
  21413. weight: math.unit(3200, "lb"),
  21414. name: "Front",
  21415. image: {
  21416. source: "./media/characters/ty/front.svg",
  21417. extra: 1038 / 960,
  21418. bottom: 31.156 / 1068
  21419. }
  21420. },
  21421. back: {
  21422. height: math.unit(4.5, "meters"),
  21423. weight: math.unit(3200, "lb"),
  21424. name: "Back",
  21425. image: {
  21426. source: "./media/characters/ty/back.svg",
  21427. extra: 1044 / 966,
  21428. bottom: 7.48 / 1049
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(4.5, "meters"),
  21436. default: true
  21437. },
  21438. ]
  21439. ))
  21440. characterMakers.push(() => makeCharacter(
  21441. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21442. {
  21443. front: {
  21444. height: math.unit(5 + 4 / 12, "feet"),
  21445. weight: math.unit(115, "lb"),
  21446. name: "Front",
  21447. image: {
  21448. source: "./media/characters/rocky/front.svg",
  21449. extra: 1012 / 975,
  21450. bottom: 54 / 1066
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(5 + 4 / 12, "feet"),
  21458. default: true
  21459. },
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21464. {
  21465. upright: {
  21466. height: math.unit(6, "meters"),
  21467. weight: math.unit(4000, "kg"),
  21468. name: "Upright",
  21469. image: {
  21470. source: "./media/characters/ruin/upright.svg",
  21471. extra: 668 / 661,
  21472. bottom: 42 / 799.8396
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Normal",
  21479. height: math.unit(6, "meters"),
  21480. default: true
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21486. {
  21487. front: {
  21488. height: math.unit(5, "feet"),
  21489. weight: math.unit(106, "lb"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/robin/front.svg",
  21493. extra: 862 / 799,
  21494. bottom: 42.4 / 914.8856
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Normal",
  21501. height: math.unit(5, "feet"),
  21502. default: true
  21503. },
  21504. ]
  21505. ))
  21506. characterMakers.push(() => makeCharacter(
  21507. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21508. {
  21509. side: {
  21510. height: math.unit(3, "feet"),
  21511. weight: math.unit(225, "lb"),
  21512. name: "Side",
  21513. image: {
  21514. source: "./media/characters/saian/side.svg",
  21515. extra: 566 / 356,
  21516. bottom: 79.7 / 643
  21517. }
  21518. },
  21519. maw: {
  21520. height: math.unit(2.85, "feet"),
  21521. name: "Maw",
  21522. image: {
  21523. source: "./media/characters/saian/maw.svg"
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(3, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21537. {
  21538. side: {
  21539. height: math.unit(8, "feet"),
  21540. weight: math.unit(300, "lb"),
  21541. name: "Side",
  21542. image: {
  21543. source: "./media/characters/equus-silvermane/side.svg",
  21544. extra: 2176 / 2050,
  21545. bottom: 65.7 / 2245
  21546. }
  21547. },
  21548. front: {
  21549. height: math.unit(8, "feet"),
  21550. weight: math.unit(300, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/equus-silvermane/front.svg",
  21554. extra: 4633 / 4400,
  21555. bottom: 71.3 / 4706.915
  21556. }
  21557. },
  21558. sideStepping: {
  21559. height: math.unit(8, "feet"),
  21560. weight: math.unit(300, "lb"),
  21561. name: "Side (Stepping)",
  21562. image: {
  21563. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21564. extra: 1968 / 1860,
  21565. bottom: 16.4 / 1989
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Normal",
  21572. height: math.unit(8, "feet")
  21573. },
  21574. {
  21575. name: "Minimacro",
  21576. height: math.unit(75, "feet"),
  21577. default: true
  21578. },
  21579. {
  21580. name: "Macro",
  21581. height: math.unit(150, "feet")
  21582. },
  21583. {
  21584. name: "Macro+",
  21585. height: math.unit(1000, "feet")
  21586. },
  21587. {
  21588. name: "Megamacro",
  21589. height: math.unit(1, "mile")
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21595. {
  21596. side: {
  21597. height: math.unit(20, "feet"),
  21598. weight: math.unit(30000, "kg"),
  21599. name: "Side",
  21600. image: {
  21601. source: "./media/characters/windar/side.svg",
  21602. extra: 1491 / 1248,
  21603. bottom: 82.56 / 1568
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Normal",
  21610. height: math.unit(20, "feet"),
  21611. default: true
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21617. {
  21618. side: {
  21619. height: math.unit(15.66, "feet"),
  21620. weight: math.unit(150, "lb"),
  21621. name: "Side",
  21622. image: {
  21623. source: "./media/characters/melody/side.svg",
  21624. extra: 1097 / 944,
  21625. bottom: 11.8 / 1109
  21626. }
  21627. },
  21628. sideOutfit: {
  21629. height: math.unit(15.66, "feet"),
  21630. weight: math.unit(150, "lb"),
  21631. name: "Side (Outfit)",
  21632. image: {
  21633. source: "./media/characters/melody/side-outfit.svg",
  21634. extra: 1097 / 944,
  21635. bottom: 11.8 / 1109
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(15.66, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(8, "feet"),
  21652. weight: math.unit(325, "lb"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/windera/front.svg",
  21656. extra: 3180 / 2845,
  21657. bottom: 178 / 3365
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(8, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21671. {
  21672. front: {
  21673. height: math.unit(28.75, "feet"),
  21674. weight: math.unit(2000, "kg"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/sonear/front.svg",
  21678. extra: 1041.1 / 964.9,
  21679. bottom: 53.7 / 1096.6
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Normal",
  21686. height: math.unit(28.75, "feet"),
  21687. default: true
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21693. {
  21694. side: {
  21695. height: math.unit(25.5, "feet"),
  21696. weight: math.unit(23000, "kg"),
  21697. name: "Side",
  21698. image: {
  21699. source: "./media/characters/kanara/side.svg"
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Normal",
  21706. height: math.unit(25.5, "feet"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21713. {
  21714. side: {
  21715. height: math.unit(10, "feet"),
  21716. weight: math.unit(1000, "kg"),
  21717. name: "Side",
  21718. image: {
  21719. source: "./media/characters/ereus/side.svg",
  21720. extra: 1157 / 959,
  21721. bottom: 153 / 1312.5
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(10, "feet"),
  21729. default: true
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21735. {
  21736. side: {
  21737. height: math.unit(4.5, "feet"),
  21738. weight: math.unit(500, "lb"),
  21739. name: "Side",
  21740. image: {
  21741. source: "./media/characters/e-ter/side.svg",
  21742. extra: 1550 / 1248,
  21743. bottom: 146 / 1694
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(4.5, "feet"),
  21751. default: true
  21752. },
  21753. ]
  21754. ))
  21755. characterMakers.push(() => makeCharacter(
  21756. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21757. {
  21758. side: {
  21759. height: math.unit(9.7, "feet"),
  21760. weight: math.unit(4000, "kg"),
  21761. name: "Side",
  21762. image: {
  21763. source: "./media/characters/yamie/side.svg"
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(9.7, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(50, "feet"),
  21780. weight: math.unit(50000, "kg"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/anders/front.svg",
  21784. extra: 570 / 539,
  21785. bottom: 14.7 / 586.7
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Large",
  21792. height: math.unit(50, "feet")
  21793. },
  21794. {
  21795. name: "Macro",
  21796. height: math.unit(2000, "feet"),
  21797. default: true
  21798. },
  21799. {
  21800. name: "Megamacro",
  21801. height: math.unit(12, "miles")
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(7 + 2 / 12, "feet"),
  21810. weight: math.unit(300, "lb"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/reban/front.svg",
  21814. extra: 516 / 487,
  21815. bottom: 42.82 / 558.356
  21816. }
  21817. },
  21818. dick: {
  21819. height: math.unit(7 / 5, "feet"),
  21820. name: "Dick",
  21821. image: {
  21822. source: "./media/characters/reban/dick.svg"
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Natural Height",
  21829. height: math.unit(7 + 2 / 12, "feet")
  21830. },
  21831. {
  21832. name: "Macro",
  21833. height: math.unit(500, "feet"),
  21834. default: true
  21835. },
  21836. {
  21837. name: "Canon Height",
  21838. height: math.unit(50, "AU")
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(6, "feet"),
  21847. weight: math.unit(150, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/terrance-keayes/front.svg",
  21851. extra: 1.005,
  21852. bottom: 151 / 1615
  21853. }
  21854. },
  21855. side: {
  21856. height: math.unit(6, "feet"),
  21857. weight: math.unit(150, "lb"),
  21858. name: "Side",
  21859. image: {
  21860. source: "./media/characters/terrance-keayes/side.svg",
  21861. extra: 1.005,
  21862. bottom: 129.4 / 1544
  21863. }
  21864. },
  21865. back: {
  21866. height: math.unit(6, "feet"),
  21867. weight: math.unit(150, "lb"),
  21868. name: "Back",
  21869. image: {
  21870. source: "./media/characters/terrance-keayes/back.svg",
  21871. extra: 1.005,
  21872. bottom: 58.4 / 1557.3
  21873. }
  21874. },
  21875. dick: {
  21876. height: math.unit(6 * 0.208, "feet"),
  21877. name: "Dick",
  21878. image: {
  21879. source: "./media/characters/terrance-keayes/dick.svg"
  21880. }
  21881. },
  21882. },
  21883. [
  21884. {
  21885. name: "Canon Height",
  21886. height: math.unit(35, "miles"),
  21887. default: true
  21888. },
  21889. ]
  21890. ))
  21891. characterMakers.push(() => makeCharacter(
  21892. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21893. {
  21894. front: {
  21895. height: math.unit(6, "feet"),
  21896. weight: math.unit(150, "lb"),
  21897. name: "Front",
  21898. image: {
  21899. source: "./media/characters/ofelia/front.svg",
  21900. extra: 546 / 541,
  21901. bottom: 39 / 583
  21902. }
  21903. },
  21904. back: {
  21905. height: math.unit(6, "feet"),
  21906. weight: math.unit(150, "lb"),
  21907. name: "Back",
  21908. image: {
  21909. source: "./media/characters/ofelia/back.svg",
  21910. extra: 564 / 559.5,
  21911. bottom: 8.69 / 573.02
  21912. }
  21913. },
  21914. maw: {
  21915. height: math.unit(1, "feet"),
  21916. name: "Maw",
  21917. image: {
  21918. source: "./media/characters/ofelia/maw.svg"
  21919. }
  21920. },
  21921. foot: {
  21922. height: math.unit(1.949, "feet"),
  21923. name: "Foot",
  21924. image: {
  21925. source: "./media/characters/ofelia/foot.svg"
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Canon Height",
  21932. height: math.unit(2000, "miles"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(6, "feet"),
  21942. weight: math.unit(150, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/samuel/front.svg",
  21946. extra: 265 / 258,
  21947. bottom: 2 / 266.1566
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Macro",
  21954. height: math.unit(100, "feet"),
  21955. default: true
  21956. },
  21957. {
  21958. name: "Full Size",
  21959. height: math.unit(1000, "miles")
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(6, "feet"),
  21968. weight: math.unit(300, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/beishir-kiel/front.svg",
  21972. extra: 569 / 547,
  21973. bottom: 41.9 / 609
  21974. }
  21975. },
  21976. maw: {
  21977. height: math.unit(6 * 0.202, "feet"),
  21978. name: "Maw",
  21979. image: {
  21980. source: "./media/characters/beishir-kiel/maw.svg"
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Macro",
  21987. height: math.unit(300, "feet"),
  21988. default: true
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(5 + 7/12, "feet"),
  21997. weight: math.unit(120, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/logan-grey/front.svg",
  22001. extra: 1836/1738,
  22002. bottom: 108/1944
  22003. }
  22004. },
  22005. back: {
  22006. height: math.unit(5 + 7/12, "feet"),
  22007. weight: math.unit(120, "lb"),
  22008. name: "Back",
  22009. image: {
  22010. source: "./media/characters/logan-grey/back.svg",
  22011. extra: 1880/1794,
  22012. bottom: 24/1904
  22013. }
  22014. },
  22015. frontSfw: {
  22016. height: math.unit(5 + 7/12, "feet"),
  22017. weight: math.unit(120, "lb"),
  22018. name: "Front (SFW)",
  22019. image: {
  22020. source: "./media/characters/logan-grey/front-sfw.svg",
  22021. extra: 1836/1738,
  22022. bottom: 108/1944
  22023. }
  22024. },
  22025. backSfw: {
  22026. height: math.unit(5 + 7/12, "feet"),
  22027. weight: math.unit(120, "lb"),
  22028. name: "Back (SFW)",
  22029. image: {
  22030. source: "./media/characters/logan-grey/back-sfw.svg",
  22031. extra: 1880/1794,
  22032. bottom: 24/1904
  22033. }
  22034. },
  22035. hands: {
  22036. height: math.unit(0.84, "feet"),
  22037. name: "Hands",
  22038. image: {
  22039. source: "./media/characters/logan-grey/hands.svg"
  22040. }
  22041. },
  22042. paws: {
  22043. height: math.unit(0.72, "feet"),
  22044. name: "Paws",
  22045. image: {
  22046. source: "./media/characters/logan-grey/paws.svg"
  22047. }
  22048. },
  22049. cock: {
  22050. height: math.unit(1.45, "feet"),
  22051. name: "Cock",
  22052. image: {
  22053. source: "./media/characters/logan-grey/cock.svg"
  22054. }
  22055. },
  22056. cockAlt: {
  22057. height: math.unit(1.437, "feet"),
  22058. name: "Cock (alt)",
  22059. image: {
  22060. source: "./media/characters/logan-grey/cock-alt.svg"
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(5 + 8 / 12, "feet")
  22068. },
  22069. {
  22070. name: "The 500 Foot Femboy",
  22071. height: math.unit(500, "feet"),
  22072. default: true
  22073. },
  22074. {
  22075. name: "Megmacro",
  22076. height: math.unit(20, "miles")
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(8 + 2 / 12, "feet"),
  22085. weight: math.unit(275, "lb"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/draganta/front.svg",
  22089. extra: 1177 / 1135,
  22090. bottom: 33.46 / 1212.1
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(8 + 6 / 12, "feet"),
  22098. default: true
  22099. },
  22100. {
  22101. name: "Macro",
  22102. height: math.unit(150, "feet")
  22103. },
  22104. {
  22105. name: "Megamacro",
  22106. height: math.unit(1000, "miles")
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(1.72, "m"),
  22115. weight: math.unit(80, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/voski/front.svg",
  22119. extra: 2076.22 / 2022.4,
  22120. bottom: 102.7 / 2177.3866
  22121. }
  22122. },
  22123. frontNsfw: {
  22124. height: math.unit(1.72, "m"),
  22125. weight: math.unit(80, "lb"),
  22126. name: "Front (NSFW)",
  22127. image: {
  22128. source: "./media/characters/voski/front-nsfw.svg",
  22129. extra: 2076.22 / 2022.4,
  22130. bottom: 102.7 / 2177.3866
  22131. }
  22132. },
  22133. back: {
  22134. height: math.unit(1.72, "m"),
  22135. weight: math.unit(80, "lb"),
  22136. name: "Back",
  22137. image: {
  22138. source: "./media/characters/voski/back.svg",
  22139. extra: 2104 / 2051,
  22140. bottom: 10.45 / 2113.63
  22141. }
  22142. },
  22143. },
  22144. [
  22145. {
  22146. name: "Normal",
  22147. height: math.unit(1.72, "m")
  22148. },
  22149. {
  22150. name: "Macro",
  22151. height: math.unit(55, "m"),
  22152. default: true
  22153. },
  22154. {
  22155. name: "Macro+",
  22156. height: math.unit(300, "m")
  22157. },
  22158. {
  22159. name: "Macro++",
  22160. height: math.unit(700, "m")
  22161. },
  22162. {
  22163. name: "Macro+++",
  22164. height: math.unit(4500, "m")
  22165. },
  22166. {
  22167. name: "Macro++++",
  22168. height: math.unit(45, "km")
  22169. },
  22170. {
  22171. name: "Macro+++++",
  22172. height: math.unit(1220, "km")
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22178. {
  22179. front: {
  22180. height: math.unit(2.3, "m"),
  22181. weight: math.unit(304, "kg"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/icowom-lee/front.svg",
  22185. extra: 985 / 955,
  22186. bottom: 25.4 / 1012
  22187. }
  22188. },
  22189. fronttentacles: {
  22190. height: math.unit(2.3, "m"),
  22191. weight: math.unit(304, "kg"),
  22192. name: "Front-tentacles",
  22193. image: {
  22194. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22195. extra: 985 / 955,
  22196. bottom: 25.4 / 1012
  22197. }
  22198. },
  22199. back: {
  22200. height: math.unit(2.3, "m"),
  22201. weight: math.unit(304, "kg"),
  22202. name: "Back",
  22203. image: {
  22204. source: "./media/characters/icowom-lee/back.svg",
  22205. extra: 975 / 954,
  22206. bottom: 9.5 / 985
  22207. }
  22208. },
  22209. backtentacles: {
  22210. height: math.unit(2.3, "m"),
  22211. weight: math.unit(304, "kg"),
  22212. name: "Back-tentacles",
  22213. image: {
  22214. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22215. extra: 975 / 954,
  22216. bottom: 9.5 / 985
  22217. }
  22218. },
  22219. frontDressed: {
  22220. height: math.unit(2.3, "m"),
  22221. weight: math.unit(304, "kg"),
  22222. name: "Front (Dressed)",
  22223. image: {
  22224. source: "./media/characters/icowom-lee/front-dressed.svg",
  22225. extra: 3076 / 2933,
  22226. bottom: 51.4 / 3125.1889
  22227. }
  22228. },
  22229. rump: {
  22230. height: math.unit(0.776, "meters"),
  22231. name: "Rump",
  22232. image: {
  22233. source: "./media/characters/icowom-lee/rump.svg"
  22234. }
  22235. },
  22236. genitals: {
  22237. height: math.unit(0.78, "meters"),
  22238. name: "Genitals",
  22239. image: {
  22240. source: "./media/characters/icowom-lee/genitals.svg"
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Normal",
  22247. height: math.unit(2.3, "meters"),
  22248. default: true
  22249. },
  22250. {
  22251. name: "Macro",
  22252. height: math.unit(94, "meters"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22259. {
  22260. front: {
  22261. height: math.unit(22, "meters"),
  22262. weight: math.unit(21000, "kg"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/shock-diamond/front.svg",
  22266. extra: 2204 / 2053,
  22267. bottom: 65 / 2239.47
  22268. }
  22269. },
  22270. frontNude: {
  22271. height: math.unit(22, "meters"),
  22272. weight: math.unit(21000, "kg"),
  22273. name: "Front (Nude)",
  22274. image: {
  22275. source: "./media/characters/shock-diamond/front-nude.svg",
  22276. extra: 2514 / 2285,
  22277. bottom: 13 / 2527.56
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(3, "meters")
  22285. },
  22286. {
  22287. name: "Macro",
  22288. height: math.unit(22, "meters"),
  22289. default: true
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22295. {
  22296. front: {
  22297. height: math.unit(5 + 4 / 12, "feet"),
  22298. weight: math.unit(120, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/rory/front.svg",
  22302. extra: 1318/1241,
  22303. bottom: 42/1360
  22304. }
  22305. },
  22306. back: {
  22307. height: math.unit(5 + 4 / 12, "feet"),
  22308. weight: math.unit(120, "lb"),
  22309. name: "Back",
  22310. image: {
  22311. source: "./media/characters/rory/back.svg",
  22312. extra: 1318/1241,
  22313. bottom: 42/1360
  22314. }
  22315. },
  22316. butt: {
  22317. height: math.unit(1.74, "feet"),
  22318. name: "Butt",
  22319. image: {
  22320. source: "./media/characters/rory/butt.svg"
  22321. }
  22322. },
  22323. dick: {
  22324. height: math.unit(1.02, "feet"),
  22325. name: "Dick",
  22326. image: {
  22327. source: "./media/characters/rory/dick.svg"
  22328. }
  22329. },
  22330. paws: {
  22331. height: math.unit(1, "feet"),
  22332. name: "Paws",
  22333. image: {
  22334. source: "./media/characters/rory/paws.svg"
  22335. }
  22336. },
  22337. frontAlt: {
  22338. height: math.unit(5 + 4 / 12, "feet"),
  22339. weight: math.unit(120, "lb"),
  22340. name: "Front (Alt)",
  22341. image: {
  22342. source: "./media/characters/rory/front-alt.svg",
  22343. extra: 589 / 556,
  22344. bottom: 45.7 / 635.76
  22345. }
  22346. },
  22347. frontAltNude: {
  22348. height: math.unit(5 + 4 / 12, "feet"),
  22349. weight: math.unit(120, "lb"),
  22350. name: "Front (Alt, Nude)",
  22351. image: {
  22352. source: "./media/characters/rory/front-alt-nude.svg",
  22353. extra: 589 / 556,
  22354. bottom: 45.7 / 635.76
  22355. }
  22356. },
  22357. side: {
  22358. height: math.unit(5 + 4 / 12, "feet"),
  22359. weight: math.unit(120, "lb"),
  22360. name: "Side",
  22361. image: {
  22362. source: "./media/characters/rory/side.svg",
  22363. extra: 597 / 564,
  22364. bottom: 55 / 653
  22365. }
  22366. },
  22367. backAlt: {
  22368. height: math.unit(5 + 4 / 12, "feet"),
  22369. weight: math.unit(120, "lb"),
  22370. name: "Back (Alt)",
  22371. image: {
  22372. source: "./media/characters/rory/back-alt.svg",
  22373. extra: 620 / 585,
  22374. bottom: 8.86 / 630.43
  22375. }
  22376. },
  22377. dickAlt: {
  22378. height: math.unit(0.86, "feet"),
  22379. name: "Dick (Alt)",
  22380. image: {
  22381. source: "./media/characters/rory/dick-alt.svg"
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Normal",
  22388. height: math.unit(5 + 4 / 12, "feet"),
  22389. default: true
  22390. },
  22391. {
  22392. name: "Macro",
  22393. height: math.unit(100, "feet")
  22394. },
  22395. {
  22396. name: "Macro+",
  22397. height: math.unit(140, "feet")
  22398. },
  22399. {
  22400. name: "Macro++",
  22401. height: math.unit(300, "feet")
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22407. {
  22408. front: {
  22409. height: math.unit(5 + 9 / 12, "feet"),
  22410. weight: math.unit(190, "lb"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/sprisk/front.svg",
  22414. extra: 1225 / 1180,
  22415. bottom: 42.7 / 1266.4
  22416. }
  22417. },
  22418. frontNsfw: {
  22419. height: math.unit(5 + 9 / 12, "feet"),
  22420. weight: math.unit(190, "lb"),
  22421. name: "Front (NSFW)",
  22422. image: {
  22423. source: "./media/characters/sprisk/front-nsfw.svg",
  22424. extra: 1225 / 1180,
  22425. bottom: 42.7 / 1266.4
  22426. }
  22427. },
  22428. back: {
  22429. height: math.unit(5 + 9 / 12, "feet"),
  22430. weight: math.unit(190, "lb"),
  22431. name: "Back",
  22432. image: {
  22433. source: "./media/characters/sprisk/back.svg",
  22434. extra: 1247 / 1200,
  22435. bottom: 5.6 / 1253.04
  22436. }
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Tiny",
  22442. height: math.unit(2, "inches")
  22443. },
  22444. {
  22445. name: "Normal",
  22446. height: math.unit(5 + 9 / 12, "feet"),
  22447. default: true
  22448. },
  22449. {
  22450. name: "Mini Macro",
  22451. height: math.unit(18, "feet")
  22452. },
  22453. {
  22454. name: "Macro",
  22455. height: math.unit(100, "feet")
  22456. },
  22457. {
  22458. name: "MACRO",
  22459. height: math.unit(50, "miles")
  22460. },
  22461. {
  22462. name: "M A C R O",
  22463. height: math.unit(300, "miles")
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22469. {
  22470. side: {
  22471. height: math.unit(15.6, "meters"),
  22472. weight: math.unit(700000, "kg"),
  22473. name: "Side",
  22474. image: {
  22475. source: "./media/characters/bunsen/side.svg",
  22476. extra: 1644 / 358
  22477. }
  22478. },
  22479. foot: {
  22480. height: math.unit(1.611 * 1644 / 358, "meter"),
  22481. name: "Foot",
  22482. image: {
  22483. source: "./media/characters/bunsen/foot.svg"
  22484. }
  22485. },
  22486. },
  22487. [
  22488. {
  22489. name: "Small",
  22490. height: math.unit(10, "feet")
  22491. },
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(15.6, "meters"),
  22495. default: true
  22496. },
  22497. ]
  22498. ))
  22499. characterMakers.push(() => makeCharacter(
  22500. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22501. {
  22502. front: {
  22503. height: math.unit(4 + 11 / 12, "feet"),
  22504. weight: math.unit(140, "lb"),
  22505. name: "Front",
  22506. image: {
  22507. source: "./media/characters/sesh/front.svg",
  22508. extra: 3420 / 3231,
  22509. bottom: 72 / 3949.5
  22510. }
  22511. },
  22512. },
  22513. [
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(4 + 11 / 12, "feet")
  22517. },
  22518. {
  22519. name: "Grown",
  22520. height: math.unit(15, "feet"),
  22521. default: true
  22522. },
  22523. {
  22524. name: "Macro",
  22525. height: math.unit(1500, "feet")
  22526. },
  22527. {
  22528. name: "Megamacro",
  22529. height: math.unit(30, "miles")
  22530. },
  22531. {
  22532. name: "Continental",
  22533. height: math.unit(3000, "miles")
  22534. },
  22535. {
  22536. name: "Gravity Mass",
  22537. height: math.unit(300000, "miles")
  22538. },
  22539. {
  22540. name: "Planet Buster",
  22541. height: math.unit(30000000, "miles")
  22542. },
  22543. {
  22544. name: "Big",
  22545. height: math.unit(3000000000, "miles")
  22546. },
  22547. ]
  22548. ))
  22549. characterMakers.push(() => makeCharacter(
  22550. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22551. {
  22552. front: {
  22553. height: math.unit(9, "feet"),
  22554. weight: math.unit(350, "lb"),
  22555. name: "Front",
  22556. image: {
  22557. source: "./media/characters/pepper/front.svg",
  22558. extra: 1448 / 1312,
  22559. bottom: 9.4 / 1457.88
  22560. }
  22561. },
  22562. back: {
  22563. height: math.unit(9, "feet"),
  22564. weight: math.unit(350, "lb"),
  22565. name: "Back",
  22566. image: {
  22567. source: "./media/characters/pepper/back.svg",
  22568. extra: 1423 / 1300,
  22569. bottom: 4.6 / 1429
  22570. }
  22571. },
  22572. maw: {
  22573. height: math.unit(0.932, "feet"),
  22574. name: "Maw",
  22575. image: {
  22576. source: "./media/characters/pepper/maw.svg"
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(9, "feet"),
  22584. default: true
  22585. },
  22586. ]
  22587. ))
  22588. characterMakers.push(() => makeCharacter(
  22589. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22590. {
  22591. front: {
  22592. height: math.unit(6, "feet"),
  22593. weight: math.unit(150, "lb"),
  22594. name: "Front",
  22595. image: {
  22596. source: "./media/characters/maelstrom/front.svg",
  22597. extra: 2100 / 1883,
  22598. bottom: 94 / 2196.7
  22599. }
  22600. },
  22601. },
  22602. [
  22603. {
  22604. name: "Less Kaiju",
  22605. height: math.unit(200, "feet")
  22606. },
  22607. {
  22608. name: "Kaiju",
  22609. height: math.unit(400, "feet"),
  22610. default: true
  22611. },
  22612. {
  22613. name: "Kaiju-er",
  22614. height: math.unit(600, "feet")
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22620. {
  22621. front: {
  22622. height: math.unit(6 + 5 / 12, "feet"),
  22623. weight: math.unit(180, "lb"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/lexir/front.svg",
  22627. extra: 180 / 172,
  22628. bottom: 12 / 192
  22629. }
  22630. },
  22631. back: {
  22632. height: math.unit(6 + 5 / 12, "feet"),
  22633. weight: math.unit(180, "lb"),
  22634. name: "Back",
  22635. image: {
  22636. source: "./media/characters/lexir/back.svg",
  22637. extra: 183.84 / 175.5,
  22638. bottom: 3.1 / 187
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Very Smal",
  22645. height: math.unit(1, "nm")
  22646. },
  22647. {
  22648. name: "Normal",
  22649. height: math.unit(6 + 5 / 12, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Macro",
  22654. height: math.unit(1, "mile")
  22655. },
  22656. {
  22657. name: "Megamacro",
  22658. height: math.unit(50, "miles")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(1.5, "meters"),
  22667. weight: math.unit(100, "lb"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/maksio/front.svg",
  22671. extra: 1549 / 1531,
  22672. bottom: 123.7 / 1674.5429
  22673. }
  22674. },
  22675. back: {
  22676. height: math.unit(1.5, "meters"),
  22677. weight: math.unit(100, "lb"),
  22678. name: "Back",
  22679. image: {
  22680. source: "./media/characters/maksio/back.svg",
  22681. extra: 1541 / 1509,
  22682. bottom: 97 / 1639
  22683. }
  22684. },
  22685. hand: {
  22686. height: math.unit(0.621, "feet"),
  22687. name: "Hand",
  22688. image: {
  22689. source: "./media/characters/maksio/hand.svg"
  22690. }
  22691. },
  22692. foot: {
  22693. height: math.unit(1.611, "feet"),
  22694. name: "Foot",
  22695. image: {
  22696. source: "./media/characters/maksio/foot.svg"
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Shrunken",
  22703. height: math.unit(10, "cm")
  22704. },
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(150, "cm"),
  22708. default: true
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22714. {
  22715. front: {
  22716. height: math.unit(100, "feet"),
  22717. name: "Front",
  22718. image: {
  22719. source: "./media/characters/erza-bear/front.svg",
  22720. extra: 2449 / 2390,
  22721. bottom: 46 / 2494
  22722. }
  22723. },
  22724. back: {
  22725. height: math.unit(100, "feet"),
  22726. name: "Back",
  22727. image: {
  22728. source: "./media/characters/erza-bear/back.svg",
  22729. extra: 2489 / 2430,
  22730. bottom: 85.4 / 2480
  22731. }
  22732. },
  22733. tail: {
  22734. height: math.unit(42, "feet"),
  22735. name: "Tail",
  22736. image: {
  22737. source: "./media/characters/erza-bear/tail.svg"
  22738. }
  22739. },
  22740. tongue: {
  22741. height: math.unit(8, "feet"),
  22742. name: "Tongue",
  22743. image: {
  22744. source: "./media/characters/erza-bear/tongue.svg"
  22745. }
  22746. },
  22747. dick: {
  22748. height: math.unit(10.5, "feet"),
  22749. name: "Dick",
  22750. image: {
  22751. source: "./media/characters/erza-bear/dick.svg"
  22752. }
  22753. },
  22754. dickVertical: {
  22755. height: math.unit(16.9, "feet"),
  22756. name: "Dick (Vertical)",
  22757. image: {
  22758. source: "./media/characters/erza-bear/dick-vertical.svg"
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Macro",
  22765. height: math.unit(100, "feet"),
  22766. default: true
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(172, "cm"),
  22775. weight: math.unit(73, "kg"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/violet-flor/front.svg",
  22779. extra: 1530 / 1442,
  22780. bottom: 61.9 / 1588.8
  22781. }
  22782. },
  22783. back: {
  22784. height: math.unit(180, "cm"),
  22785. weight: math.unit(73, "kg"),
  22786. name: "Back",
  22787. image: {
  22788. source: "./media/characters/violet-flor/back.svg",
  22789. extra: 1692 / 1630,
  22790. bottom: 20 / 1712
  22791. }
  22792. },
  22793. },
  22794. [
  22795. {
  22796. name: "Normal",
  22797. height: math.unit(172, "cm"),
  22798. default: true
  22799. },
  22800. ]
  22801. ))
  22802. characterMakers.push(() => makeCharacter(
  22803. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22804. {
  22805. front: {
  22806. height: math.unit(6, "feet"),
  22807. weight: math.unit(220, "lb"),
  22808. name: "Front",
  22809. image: {
  22810. source: "./media/characters/lynn-rhea/front.svg",
  22811. extra: 310 / 273
  22812. }
  22813. },
  22814. back: {
  22815. height: math.unit(6, "feet"),
  22816. weight: math.unit(220, "lb"),
  22817. name: "Back",
  22818. image: {
  22819. source: "./media/characters/lynn-rhea/back.svg",
  22820. extra: 310 / 273
  22821. }
  22822. },
  22823. dicks: {
  22824. height: math.unit(0.9, "feet"),
  22825. name: "Dicks",
  22826. image: {
  22827. source: "./media/characters/lynn-rhea/dicks.svg"
  22828. }
  22829. },
  22830. slit: {
  22831. height: math.unit(0.4, "feet"),
  22832. name: "Slit",
  22833. image: {
  22834. source: "./media/characters/lynn-rhea/slit.svg"
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Micro",
  22841. height: math.unit(1, "inch")
  22842. },
  22843. {
  22844. name: "Macro",
  22845. height: math.unit(60, "feet"),
  22846. default: true
  22847. },
  22848. {
  22849. name: "Megamacro",
  22850. height: math.unit(2, "miles")
  22851. },
  22852. {
  22853. name: "Gigamacro",
  22854. height: math.unit(3, "earths")
  22855. },
  22856. {
  22857. name: "Galactic",
  22858. height: math.unit(0.8, "galaxies")
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22864. {
  22865. front: {
  22866. height: math.unit(1600, "feet"),
  22867. weight: math.unit(85758785169, "kg"),
  22868. name: "Front",
  22869. image: {
  22870. source: "./media/characters/valathos/front.svg",
  22871. extra: 1451 / 1339
  22872. }
  22873. },
  22874. },
  22875. [
  22876. {
  22877. name: "Macro",
  22878. height: math.unit(1600, "feet"),
  22879. default: true
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(7 + 5 / 12, "feet"),
  22888. weight: math.unit(300, "lb"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/azula/front.svg",
  22892. extra: 3208 / 2880,
  22893. bottom: 80.2 / 3277
  22894. }
  22895. },
  22896. back: {
  22897. height: math.unit(7 + 5 / 12, "feet"),
  22898. weight: math.unit(300, "lb"),
  22899. name: "Back",
  22900. image: {
  22901. source: "./media/characters/azula/back.svg",
  22902. extra: 3169 / 2822,
  22903. bottom: 150.6 / 3321
  22904. }
  22905. },
  22906. },
  22907. [
  22908. {
  22909. name: "Normal",
  22910. height: math.unit(7 + 5 / 12, "feet"),
  22911. default: true
  22912. },
  22913. {
  22914. name: "Big",
  22915. height: math.unit(20, "feet")
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22921. {
  22922. front: {
  22923. height: math.unit(5 + 1 / 12, "feet"),
  22924. weight: math.unit(110, "lb"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/rupert/front.svg",
  22928. extra: 1549 / 1495,
  22929. bottom: 54.2 / 1604.4
  22930. }
  22931. },
  22932. },
  22933. [
  22934. {
  22935. name: "Normal",
  22936. height: math.unit(5 + 1 / 12, "feet"),
  22937. default: true
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22943. {
  22944. front: {
  22945. height: math.unit(8 + 4 / 12, "feet"),
  22946. weight: math.unit(350, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/sheera-castellar/front.svg",
  22950. extra: 1957 / 1894,
  22951. bottom: 26.97 / 1975.017
  22952. }
  22953. },
  22954. side: {
  22955. height: math.unit(8 + 4 / 12, "feet"),
  22956. weight: math.unit(350, "lb"),
  22957. name: "Side",
  22958. image: {
  22959. source: "./media/characters/sheera-castellar/side.svg",
  22960. extra: 1957 / 1894
  22961. }
  22962. },
  22963. back: {
  22964. height: math.unit(8 + 4 / 12, "feet"),
  22965. weight: math.unit(350, "lb"),
  22966. name: "Back",
  22967. image: {
  22968. source: "./media/characters/sheera-castellar/back.svg",
  22969. extra: 1957 / 1894
  22970. }
  22971. },
  22972. angled: {
  22973. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22974. weight: math.unit(350, "lb"),
  22975. name: "Angled",
  22976. image: {
  22977. source: "./media/characters/sheera-castellar/angled.svg",
  22978. extra: 1807 / 1707,
  22979. bottom: 68 / 1875
  22980. }
  22981. },
  22982. genitals: {
  22983. height: math.unit(2.2, "feet"),
  22984. name: "Genitals",
  22985. image: {
  22986. source: "./media/characters/sheera-castellar/genitals.svg"
  22987. }
  22988. },
  22989. taur: {
  22990. height: math.unit(10 + 6/12, "feet"),
  22991. name: "Taur",
  22992. image: {
  22993. source: "./media/characters/sheera-castellar/taur.svg",
  22994. extra: 2017/1909,
  22995. bottom: 185/2202
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "Normal",
  23002. height: math.unit(8 + 4 / 12, "feet")
  23003. },
  23004. {
  23005. name: "Macro",
  23006. height: math.unit(150, "feet"),
  23007. default: true
  23008. },
  23009. {
  23010. name: "Macro+",
  23011. height: math.unit(800, "feet")
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23017. {
  23018. front: {
  23019. height: math.unit(6, "feet"),
  23020. weight: math.unit(150, "lb"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/jaipur/front.svg",
  23024. extra: 3860 / 3731,
  23025. bottom: 287 / 4140
  23026. }
  23027. },
  23028. back: {
  23029. height: math.unit(6, "feet"),
  23030. weight: math.unit(150, "lb"),
  23031. name: "Back",
  23032. image: {
  23033. source: "./media/characters/jaipur/back.svg",
  23034. extra: 4060 / 3930,
  23035. bottom: 151 / 4200
  23036. }
  23037. },
  23038. },
  23039. [
  23040. {
  23041. name: "Normal",
  23042. height: math.unit(1.85, "meters"),
  23043. default: true
  23044. },
  23045. {
  23046. name: "Macro",
  23047. height: math.unit(150, "meters")
  23048. },
  23049. {
  23050. name: "Macro+",
  23051. height: math.unit(0.5, "miles")
  23052. },
  23053. {
  23054. name: "Macro++",
  23055. height: math.unit(2.5, "miles")
  23056. },
  23057. {
  23058. name: "Macro+++",
  23059. height: math.unit(12, "miles")
  23060. },
  23061. {
  23062. name: "Macro++++",
  23063. height: math.unit(120, "miles")
  23064. },
  23065. {
  23066. name: "Macro+++++",
  23067. height: math.unit(1200, "miles")
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(6, "feet"),
  23076. weight: math.unit(150, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/sheila-wolf/front.svg",
  23080. extra: 1931 / 1808,
  23081. bottom: 29.5 / 1960
  23082. }
  23083. },
  23084. dick: {
  23085. height: math.unit(1.464, "feet"),
  23086. name: "Dick",
  23087. image: {
  23088. source: "./media/characters/sheila-wolf/dick.svg"
  23089. }
  23090. },
  23091. muzzle: {
  23092. height: math.unit(0.513, "feet"),
  23093. name: "Muzzle",
  23094. image: {
  23095. source: "./media/characters/sheila-wolf/muzzle.svg"
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Macro",
  23102. height: math.unit(70, "feet"),
  23103. default: true
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(32, "meters"),
  23112. weight: math.unit(300000, "kg"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/almor/front.svg",
  23116. extra: 1408 / 1322,
  23117. bottom: 94.6 / 1506.5
  23118. }
  23119. },
  23120. },
  23121. [
  23122. {
  23123. name: "Macro",
  23124. height: math.unit(32, "meters"),
  23125. default: true
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23131. {
  23132. front: {
  23133. height: math.unit(7, "feet"),
  23134. weight: math.unit(200, "lb"),
  23135. name: "Front",
  23136. image: {
  23137. source: "./media/characters/silver/front.svg",
  23138. extra: 472.1 / 450.5,
  23139. bottom: 26.5 / 499.424
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Normal",
  23146. height: math.unit(7, "feet"),
  23147. default: true
  23148. },
  23149. {
  23150. name: "Macro",
  23151. height: math.unit(800, "feet")
  23152. },
  23153. {
  23154. name: "Megamacro",
  23155. height: math.unit(250, "miles")
  23156. },
  23157. ]
  23158. ))
  23159. characterMakers.push(() => makeCharacter(
  23160. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23161. {
  23162. front: {
  23163. height: math.unit(6, "feet"),
  23164. weight: math.unit(150, "lb"),
  23165. name: "Front",
  23166. image: {
  23167. source: "./media/characters/pliskin/front.svg",
  23168. extra: 1469 / 1359,
  23169. bottom: 70 / 1540
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Micro",
  23176. height: math.unit(3, "inches")
  23177. },
  23178. {
  23179. name: "Normal",
  23180. height: math.unit(5 + 11 / 12, "feet"),
  23181. default: true
  23182. },
  23183. {
  23184. name: "Macro",
  23185. height: math.unit(120, "feet")
  23186. },
  23187. ]
  23188. ))
  23189. characterMakers.push(() => makeCharacter(
  23190. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23191. {
  23192. front: {
  23193. height: math.unit(6, "feet"),
  23194. weight: math.unit(150, "lb"),
  23195. name: "Front",
  23196. image: {
  23197. source: "./media/characters/sammy/front.svg",
  23198. extra: 1193 / 1089,
  23199. bottom: 30.5 / 1226
  23200. }
  23201. },
  23202. },
  23203. [
  23204. {
  23205. name: "Macro",
  23206. height: math.unit(1700, "feet"),
  23207. default: true
  23208. },
  23209. {
  23210. name: "Examacro",
  23211. height: math.unit(2.5e9, "lightyears")
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(21, "meters"),
  23220. weight: math.unit(12, "tonnes"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/kuru/front.svg",
  23224. extra: 4301 / 3785,
  23225. bottom: 371.3 / 4691
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Macro",
  23232. height: math.unit(21, "meters"),
  23233. default: true
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23239. {
  23240. front: {
  23241. height: math.unit(23, "meters"),
  23242. weight: math.unit(12.2, "tonnes"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/rakka/front.svg",
  23246. extra: 4670 / 4169,
  23247. bottom: 301 / 4968.7
  23248. }
  23249. },
  23250. },
  23251. [
  23252. {
  23253. name: "Macro",
  23254. height: math.unit(23, "meters"),
  23255. default: true
  23256. },
  23257. ]
  23258. ))
  23259. characterMakers.push(() => makeCharacter(
  23260. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23261. {
  23262. front: {
  23263. height: math.unit(6, "feet"),
  23264. weight: math.unit(150, "lb"),
  23265. name: "Front",
  23266. image: {
  23267. source: "./media/characters/rhys-feline/front.svg",
  23268. extra: 2488 / 2308,
  23269. bottom: 35.67 / 2519.19
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Really Small",
  23276. height: math.unit(1, "nm")
  23277. },
  23278. {
  23279. name: "Micro",
  23280. height: math.unit(4, "inches")
  23281. },
  23282. {
  23283. name: "Normal",
  23284. height: math.unit(4 + 10 / 12, "feet"),
  23285. default: true
  23286. },
  23287. {
  23288. name: "Macro",
  23289. height: math.unit(100, "feet")
  23290. },
  23291. {
  23292. name: "Megamacto",
  23293. height: math.unit(50, "miles")
  23294. },
  23295. ]
  23296. ))
  23297. characterMakers.push(() => makeCharacter(
  23298. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23299. {
  23300. side: {
  23301. height: math.unit(30, "feet"),
  23302. weight: math.unit(35000, "kg"),
  23303. name: "Side",
  23304. image: {
  23305. source: "./media/characters/alydar/side.svg",
  23306. extra: 234 / 222,
  23307. bottom: 6.5 / 241
  23308. }
  23309. },
  23310. front: {
  23311. height: math.unit(30, "feet"),
  23312. weight: math.unit(35000, "kg"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/alydar/front.svg",
  23316. extra: 223.37 / 210.2,
  23317. bottom: 22.3 / 246.76
  23318. }
  23319. },
  23320. top: {
  23321. height: math.unit(64.54, "feet"),
  23322. weight: math.unit(35000, "kg"),
  23323. name: "Top",
  23324. image: {
  23325. source: "./media/characters/alydar/top.svg"
  23326. }
  23327. },
  23328. anthro: {
  23329. height: math.unit(30, "feet"),
  23330. weight: math.unit(9000, "kg"),
  23331. name: "Anthro",
  23332. image: {
  23333. source: "./media/characters/alydar/anthro.svg",
  23334. extra: 432 / 421,
  23335. bottom: 7.18 / 440
  23336. }
  23337. },
  23338. maw: {
  23339. height: math.unit(11.693, "feet"),
  23340. name: "Maw",
  23341. image: {
  23342. source: "./media/characters/alydar/maw.svg"
  23343. }
  23344. },
  23345. head: {
  23346. height: math.unit(11.693, "feet"),
  23347. name: "Head",
  23348. image: {
  23349. source: "./media/characters/alydar/head.svg"
  23350. }
  23351. },
  23352. headAlt: {
  23353. height: math.unit(12.861, "feet"),
  23354. name: "Head (Alt)",
  23355. image: {
  23356. source: "./media/characters/alydar/head-alt.svg"
  23357. }
  23358. },
  23359. wing: {
  23360. height: math.unit(20.712, "feet"),
  23361. name: "Wing",
  23362. image: {
  23363. source: "./media/characters/alydar/wing.svg"
  23364. }
  23365. },
  23366. wingFeather: {
  23367. height: math.unit(9.662, "feet"),
  23368. name: "Wing Feather",
  23369. image: {
  23370. source: "./media/characters/alydar/wing-feather.svg"
  23371. }
  23372. },
  23373. countourFeather: {
  23374. height: math.unit(4.154, "feet"),
  23375. name: "Contour Feather",
  23376. image: {
  23377. source: "./media/characters/alydar/contour-feather.svg"
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "Diplomatic",
  23384. height: math.unit(13, "feet"),
  23385. default: true
  23386. },
  23387. {
  23388. name: "Small",
  23389. height: math.unit(30, "feet")
  23390. },
  23391. {
  23392. name: "Normal",
  23393. height: math.unit(95, "feet"),
  23394. default: true
  23395. },
  23396. {
  23397. name: "Large",
  23398. height: math.unit(285, "feet")
  23399. },
  23400. {
  23401. name: "Incomprehensible",
  23402. height: math.unit(450, "megameters")
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23408. {
  23409. side: {
  23410. height: math.unit(11, "feet"),
  23411. weight: math.unit(1750, "kg"),
  23412. name: "Side",
  23413. image: {
  23414. source: "./media/characters/selicia/side.svg",
  23415. extra: 440 / 396,
  23416. bottom: 24.8 / 465.979
  23417. }
  23418. },
  23419. maw: {
  23420. height: math.unit(4.665, "feet"),
  23421. name: "Maw",
  23422. image: {
  23423. source: "./media/characters/selicia/maw.svg"
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(11, "feet"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23437. {
  23438. side: {
  23439. height: math.unit(2 + 6 / 12, "feet"),
  23440. weight: math.unit(30, "lb"),
  23441. name: "Side",
  23442. image: {
  23443. source: "./media/characters/layla/side.svg",
  23444. extra: 244 / 188,
  23445. bottom: 18.2 / 262.1
  23446. }
  23447. },
  23448. back: {
  23449. height: math.unit(2 + 6 / 12, "feet"),
  23450. weight: math.unit(30, "lb"),
  23451. name: "Back",
  23452. image: {
  23453. source: "./media/characters/layla/back.svg",
  23454. extra: 308 / 241.5,
  23455. bottom: 8.9 / 316.8
  23456. }
  23457. },
  23458. cumming: {
  23459. height: math.unit(2 + 6 / 12, "feet"),
  23460. weight: math.unit(30, "lb"),
  23461. name: "Cumming",
  23462. image: {
  23463. source: "./media/characters/layla/cumming.svg",
  23464. extra: 342 / 279,
  23465. bottom: 595 / 938
  23466. }
  23467. },
  23468. dickFlaccid: {
  23469. height: math.unit(2.595, "feet"),
  23470. name: "Flaccid Genitals",
  23471. image: {
  23472. source: "./media/characters/layla/dick-flaccid.svg"
  23473. }
  23474. },
  23475. dickErect: {
  23476. height: math.unit(2.359, "feet"),
  23477. name: "Erect Genitals",
  23478. image: {
  23479. source: "./media/characters/layla/dick-erect.svg"
  23480. }
  23481. },
  23482. dragon: {
  23483. height: math.unit(40, "feet"),
  23484. name: "Dragon",
  23485. image: {
  23486. source: "./media/characters/layla/dragon.svg",
  23487. extra: 610/535,
  23488. bottom: 367/977
  23489. }
  23490. },
  23491. taur: {
  23492. height: math.unit(30, "feet"),
  23493. name: "Taur",
  23494. image: {
  23495. source: "./media/characters/layla/taur.svg",
  23496. extra: 1268/1199,
  23497. bottom: 112/1380
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Micro",
  23504. height: math.unit(1, "inch")
  23505. },
  23506. {
  23507. name: "Small",
  23508. height: math.unit(1, "foot")
  23509. },
  23510. {
  23511. name: "Normal",
  23512. height: math.unit(2 + 6 / 12, "feet"),
  23513. default: true
  23514. },
  23515. {
  23516. name: "Macro",
  23517. height: math.unit(200, "feet")
  23518. },
  23519. {
  23520. name: "Megamacro",
  23521. height: math.unit(1000, "miles")
  23522. },
  23523. {
  23524. name: "Planetary",
  23525. height: math.unit(8000, "miles")
  23526. },
  23527. {
  23528. name: "True Layla",
  23529. height: math.unit(200000 * 7, "multiverses")
  23530. },
  23531. ]
  23532. ))
  23533. characterMakers.push(() => makeCharacter(
  23534. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23535. {
  23536. back: {
  23537. height: math.unit(10.5, "feet"),
  23538. weight: math.unit(800, "lb"),
  23539. name: "Back",
  23540. image: {
  23541. source: "./media/characters/knox/back.svg",
  23542. extra: 1486 / 1089,
  23543. bottom: 107 / 1601.4
  23544. }
  23545. },
  23546. side: {
  23547. height: math.unit(10.5, "feet"),
  23548. weight: math.unit(800, "lb"),
  23549. name: "Side",
  23550. image: {
  23551. source: "./media/characters/knox/side.svg",
  23552. extra: 244 / 218,
  23553. bottom: 14 / 260
  23554. }
  23555. },
  23556. },
  23557. [
  23558. {
  23559. name: "Compact",
  23560. height: math.unit(10.5, "feet"),
  23561. default: true
  23562. },
  23563. {
  23564. name: "Dynamax",
  23565. height: math.unit(210, "feet")
  23566. },
  23567. {
  23568. name: "Full Macro",
  23569. height: math.unit(850, "feet")
  23570. },
  23571. ]
  23572. ))
  23573. characterMakers.push(() => makeCharacter(
  23574. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23575. {
  23576. front: {
  23577. height: math.unit(6, "feet"),
  23578. weight: math.unit(152, "lb"),
  23579. name: "Front",
  23580. image: {
  23581. source: "./media/characters/shin-pikachu/front.svg",
  23582. extra: 1854/1602,
  23583. bottom: 166/2020
  23584. }
  23585. },
  23586. hand: {
  23587. height: math.unit(1.055, "feet"),
  23588. name: "Hand",
  23589. image: {
  23590. source: "./media/characters/shin-pikachu/hand.svg"
  23591. }
  23592. },
  23593. foot: {
  23594. height: math.unit(1.1, "feet"),
  23595. name: "Foot",
  23596. image: {
  23597. source: "./media/characters/shin-pikachu/foot.svg"
  23598. }
  23599. },
  23600. collar: {
  23601. height: math.unit(0.386, "feet"),
  23602. name: "Collar",
  23603. image: {
  23604. source: "./media/characters/shin-pikachu/collar.svg"
  23605. }
  23606. },
  23607. },
  23608. [
  23609. {
  23610. name: "Smallest",
  23611. height: math.unit(0.5, "inches")
  23612. },
  23613. {
  23614. name: "Micro",
  23615. height: math.unit(6, "inches")
  23616. },
  23617. {
  23618. name: "Normal",
  23619. height: math.unit(6, "feet"),
  23620. default: true
  23621. },
  23622. {
  23623. name: "Macro",
  23624. height: math.unit(150, "feet")
  23625. },
  23626. ]
  23627. ))
  23628. characterMakers.push(() => makeCharacter(
  23629. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23630. {
  23631. front: {
  23632. height: math.unit(28, "feet"),
  23633. weight: math.unit(10500, "lb"),
  23634. name: "Front",
  23635. image: {
  23636. source: "./media/characters/kayda/front.svg",
  23637. extra: 1536 / 1428,
  23638. bottom: 68.7 / 1603
  23639. }
  23640. },
  23641. back: {
  23642. height: math.unit(28, "feet"),
  23643. weight: math.unit(10500, "lb"),
  23644. name: "Back",
  23645. image: {
  23646. source: "./media/characters/kayda/back.svg",
  23647. extra: 1557 / 1464,
  23648. bottom: 39.5 / 1597.49
  23649. }
  23650. },
  23651. dick: {
  23652. height: math.unit(3.858, "feet"),
  23653. name: "Dick",
  23654. image: {
  23655. source: "./media/characters/kayda/dick.svg"
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Macro",
  23662. height: math.unit(28, "feet"),
  23663. default: true
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(10 + 11 / 12, "feet"),
  23672. weight: math.unit(1400, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/brian/front.svg",
  23676. extra: 737 / 692,
  23677. bottom: 55.4 / 785
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(10 + 11 / 12, "feet"),
  23685. default: true
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23691. {
  23692. front: {
  23693. height: math.unit(5 + 8 / 12, "feet"),
  23694. weight: math.unit(140, "lb"),
  23695. name: "Front",
  23696. image: {
  23697. source: "./media/characters/khemri/front.svg",
  23698. extra: 4780 / 4059,
  23699. bottom: 80.1 / 4859.25
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Micro",
  23706. height: math.unit(6, "inches")
  23707. },
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(5 + 8 / 12, "feet"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23717. {
  23718. front: {
  23719. height: math.unit(13, "feet"),
  23720. weight: math.unit(1700, "lb"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/felix-braveheart/front.svg",
  23724. extra: 1222 / 1157,
  23725. bottom: 53.2 / 1280
  23726. }
  23727. },
  23728. back: {
  23729. height: math.unit(13, "feet"),
  23730. weight: math.unit(1700, "lb"),
  23731. name: "Back",
  23732. image: {
  23733. source: "./media/characters/felix-braveheart/back.svg",
  23734. extra: 1277 / 1203,
  23735. bottom: 50.2 / 1327
  23736. }
  23737. },
  23738. feral: {
  23739. height: math.unit(6, "feet"),
  23740. weight: math.unit(400, "lb"),
  23741. name: "Feral",
  23742. image: {
  23743. source: "./media/characters/felix-braveheart/feral.svg",
  23744. extra: 682 / 625,
  23745. bottom: 6.9 / 688
  23746. }
  23747. },
  23748. },
  23749. [
  23750. {
  23751. name: "Normal",
  23752. height: math.unit(13, "feet"),
  23753. default: true
  23754. },
  23755. ]
  23756. ))
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23759. {
  23760. side: {
  23761. height: math.unit(5 + 11 / 12, "feet"),
  23762. weight: math.unit(1400, "lb"),
  23763. name: "Side",
  23764. image: {
  23765. source: "./media/characters/shadow-blade/side.svg",
  23766. extra: 1726 / 1267,
  23767. bottom: 58.4 / 1785
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(5 + 11 / 12, "feet"),
  23775. default: true
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(1 + 6 / 12, "feet"),
  23784. weight: math.unit(25, "lb"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/karla-halldor/front.svg",
  23788. extra: 1459 / 1383,
  23789. bottom: 12 / 1472
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Normal",
  23796. height: math.unit(1 + 6 / 12, "feet"),
  23797. default: true
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23803. {
  23804. front: {
  23805. height: math.unit(6 + 2 / 12, "feet"),
  23806. weight: math.unit(160, "lb"),
  23807. name: "Front",
  23808. image: {
  23809. source: "./media/characters/ariam/front.svg",
  23810. extra: 714 / 617,
  23811. bottom: 23.4 / 737,
  23812. }
  23813. },
  23814. squatting: {
  23815. height: math.unit(4.1, "feet"),
  23816. weight: math.unit(160, "lb"),
  23817. name: "Squatting",
  23818. image: {
  23819. source: "./media/characters/ariam/squatting.svg",
  23820. extra: 2617 / 2112,
  23821. bottom: 61.2 / 2681,
  23822. }
  23823. },
  23824. },
  23825. [
  23826. {
  23827. name: "Normal",
  23828. height: math.unit(6 + 2 / 12, "feet"),
  23829. default: true
  23830. },
  23831. {
  23832. name: "Normal+",
  23833. height: math.unit(4, "meters")
  23834. },
  23835. {
  23836. name: "Macro",
  23837. height: math.unit(50, "meters")
  23838. },
  23839. {
  23840. name: "Macro+",
  23841. height: math.unit(100, "meters")
  23842. },
  23843. {
  23844. name: "Megamacro",
  23845. height: math.unit(20, "km")
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23851. {
  23852. front: {
  23853. height: math.unit(1.67, "meters"),
  23854. weight: math.unit(140, "lb"),
  23855. name: "Front",
  23856. image: {
  23857. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23858. extra: 438 / 410,
  23859. bottom: 0.75 / 439
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Shrunken",
  23866. height: math.unit(7.6, "cm")
  23867. },
  23868. {
  23869. name: "Human Scale",
  23870. height: math.unit(1.67, "meters")
  23871. },
  23872. {
  23873. name: "Wolxi Scale",
  23874. height: math.unit(36.7, "meters"),
  23875. default: true
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(1.73, "meters"),
  23884. weight: math.unit(240, "lb"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/izue-two-mothers/front.svg",
  23888. extra: 469 / 437,
  23889. bottom: 1.24 / 470.6
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Shrunken",
  23896. height: math.unit(7.86, "cm")
  23897. },
  23898. {
  23899. name: "Human Scale",
  23900. height: math.unit(1.73, "meters")
  23901. },
  23902. {
  23903. name: "Wolxi Scale",
  23904. height: math.unit(38, "meters"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23911. {
  23912. front: {
  23913. height: math.unit(1.55, "meters"),
  23914. weight: math.unit(120, "lb"),
  23915. name: "Front",
  23916. image: {
  23917. source: "./media/characters/teeku-love-shack/front.svg",
  23918. extra: 387 / 362,
  23919. bottom: 1.51 / 388
  23920. }
  23921. },
  23922. },
  23923. [
  23924. {
  23925. name: "Shrunken",
  23926. height: math.unit(7, "cm")
  23927. },
  23928. {
  23929. name: "Human Scale",
  23930. height: math.unit(1.55, "meters")
  23931. },
  23932. {
  23933. name: "Wolxi Scale",
  23934. height: math.unit(34.1, "meters"),
  23935. default: true
  23936. },
  23937. ]
  23938. ))
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23941. {
  23942. front: {
  23943. height: math.unit(1.83, "meters"),
  23944. weight: math.unit(135, "lb"),
  23945. name: "Front",
  23946. image: {
  23947. source: "./media/characters/dejma-the-red/front.svg",
  23948. extra: 480 / 458,
  23949. bottom: 1.8 / 482
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Shrunken",
  23956. height: math.unit(8.3, "cm")
  23957. },
  23958. {
  23959. name: "Human Scale",
  23960. height: math.unit(1.83, "meters")
  23961. },
  23962. {
  23963. name: "Wolxi Scale",
  23964. height: math.unit(40, "meters"),
  23965. default: true
  23966. },
  23967. ]
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23971. {
  23972. front: {
  23973. height: math.unit(1.78, "meters"),
  23974. weight: math.unit(65, "kg"),
  23975. name: "Front",
  23976. image: {
  23977. source: "./media/characters/aki/front.svg",
  23978. extra: 452 / 415
  23979. }
  23980. },
  23981. frontNsfw: {
  23982. height: math.unit(1.78, "meters"),
  23983. weight: math.unit(65, "kg"),
  23984. name: "Front (NSFW)",
  23985. image: {
  23986. source: "./media/characters/aki/front-nsfw.svg",
  23987. extra: 452 / 415
  23988. }
  23989. },
  23990. back: {
  23991. height: math.unit(1.78, "meters"),
  23992. weight: math.unit(65, "kg"),
  23993. name: "Back",
  23994. image: {
  23995. source: "./media/characters/aki/back.svg",
  23996. extra: 452 / 415
  23997. }
  23998. },
  23999. rump: {
  24000. height: math.unit(2.05, "feet"),
  24001. name: "Rump",
  24002. image: {
  24003. source: "./media/characters/aki/rump.svg"
  24004. }
  24005. },
  24006. dick: {
  24007. height: math.unit(0.95, "feet"),
  24008. name: "Dick",
  24009. image: {
  24010. source: "./media/characters/aki/dick.svg"
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Micro",
  24017. height: math.unit(15, "cm")
  24018. },
  24019. {
  24020. name: "Normal",
  24021. height: math.unit(178, "cm"),
  24022. default: true
  24023. },
  24024. {
  24025. name: "Macro",
  24026. height: math.unit(214, "m")
  24027. },
  24028. {
  24029. name: "Macro+",
  24030. height: math.unit(534, "m")
  24031. },
  24032. ]
  24033. ))
  24034. characterMakers.push(() => makeCharacter(
  24035. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24036. {
  24037. front: {
  24038. height: math.unit(5 + 5 / 12, "feet"),
  24039. weight: math.unit(120, "lb"),
  24040. name: "Front",
  24041. image: {
  24042. source: "./media/characters/ari/front.svg",
  24043. extra: 714.5 / 682,
  24044. bottom: 8 / 722.5
  24045. }
  24046. },
  24047. },
  24048. [
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(5 + 5 / 12, "feet")
  24052. },
  24053. {
  24054. name: "Macro",
  24055. height: math.unit(100, "feet"),
  24056. default: true
  24057. },
  24058. {
  24059. name: "Megamacro",
  24060. height: math.unit(100, "miles")
  24061. },
  24062. {
  24063. name: "Gigamacro",
  24064. height: math.unit(80000, "miles")
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24070. {
  24071. side: {
  24072. height: math.unit(9, "feet"),
  24073. weight: math.unit(400, "kg"),
  24074. name: "Side",
  24075. image: {
  24076. source: "./media/characters/bolt/side.svg",
  24077. extra: 1126 / 896,
  24078. bottom: 60 / 1187.3,
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Micro",
  24085. height: math.unit(5, "inches")
  24086. },
  24087. {
  24088. name: "Normal",
  24089. height: math.unit(9, "feet"),
  24090. default: true
  24091. },
  24092. {
  24093. name: "Macro",
  24094. height: math.unit(700, "feet")
  24095. },
  24096. {
  24097. name: "Max Size",
  24098. height: math.unit(1.52e22, "yottameters")
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24104. {
  24105. front: {
  24106. height: math.unit(4.53, "meters"),
  24107. weight: math.unit(3, "tons"),
  24108. name: "Front",
  24109. image: {
  24110. source: "./media/characters/draekon-sylviar/front.svg",
  24111. extra: 1228 / 1068,
  24112. bottom: 41 / 1270
  24113. }
  24114. },
  24115. tail: {
  24116. height: math.unit(1.772, "meter"),
  24117. name: "Tail",
  24118. image: {
  24119. source: "./media/characters/draekon-sylviar/tail.svg"
  24120. }
  24121. },
  24122. head: {
  24123. height: math.unit(1.331, "meter"),
  24124. name: "Head",
  24125. image: {
  24126. source: "./media/characters/draekon-sylviar/head.svg"
  24127. }
  24128. },
  24129. hand: {
  24130. height: math.unit(0.564, "meter"),
  24131. name: "Hand",
  24132. image: {
  24133. source: "./media/characters/draekon-sylviar/hand.svg"
  24134. }
  24135. },
  24136. foot: {
  24137. height: math.unit(0.621, "meter"),
  24138. name: "Foot",
  24139. image: {
  24140. source: "./media/characters/draekon-sylviar/foot.svg",
  24141. bottom: 32 / 324
  24142. }
  24143. },
  24144. dick: {
  24145. height: math.unit(61, "cm"),
  24146. name: "Dick",
  24147. image: {
  24148. source: "./media/characters/draekon-sylviar/dick.svg"
  24149. }
  24150. },
  24151. dickseparated: {
  24152. height: math.unit(61, "cm"),
  24153. name: "Dick-separated",
  24154. image: {
  24155. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Small",
  24162. height: math.unit(4.53 / 2, "meters"),
  24163. default: true
  24164. },
  24165. {
  24166. name: "Normal",
  24167. height: math.unit(4.53, "meters"),
  24168. default: true
  24169. },
  24170. {
  24171. name: "Large",
  24172. height: math.unit(4.53 * 2, "meters"),
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(6 + 2 / 12, "feet"),
  24181. weight: math.unit(180, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/brawler/front.svg",
  24185. extra: 3301 / 3027,
  24186. bottom: 138 / 3439
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(6 + 2 / 12, "feet"),
  24194. default: true
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24200. {
  24201. front: {
  24202. height: math.unit(11, "feet"),
  24203. weight: math.unit(1000, "lb"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/alex/front.svg",
  24207. bottom: 44.5 / 620
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Micro",
  24214. height: math.unit(5, "inches")
  24215. },
  24216. {
  24217. name: "Normal",
  24218. height: math.unit(11, "feet"),
  24219. default: true
  24220. },
  24221. {
  24222. name: "Macro",
  24223. height: math.unit(9.5e9, "feet")
  24224. },
  24225. {
  24226. name: "Max Size",
  24227. height: math.unit(1.4e283, "yottameters")
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24233. {
  24234. female: {
  24235. height: math.unit(29.9, "m"),
  24236. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24237. name: "Female",
  24238. image: {
  24239. source: "./media/characters/zenari/female.svg",
  24240. extra: 3281.6 / 3217,
  24241. bottom: 72.2 / 3353
  24242. }
  24243. },
  24244. male: {
  24245. height: math.unit(27.7, "m"),
  24246. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24247. name: "Male",
  24248. image: {
  24249. source: "./media/characters/zenari/male.svg",
  24250. extra: 3008 / 2991,
  24251. bottom: 54.6 / 3069
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Macro",
  24258. height: math.unit(29.7, "meters"),
  24259. default: true
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24265. {
  24266. female: {
  24267. height: math.unit(23.8, "m"),
  24268. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24269. name: "Female",
  24270. image: {
  24271. source: "./media/characters/mactarian/female.svg",
  24272. extra: 2662 / 2569,
  24273. bottom: 73 / 2736
  24274. }
  24275. },
  24276. male: {
  24277. height: math.unit(23.8, "m"),
  24278. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24279. name: "Male",
  24280. image: {
  24281. source: "./media/characters/mactarian/male.svg",
  24282. extra: 2673 / 2600,
  24283. bottom: 76 / 2750
  24284. }
  24285. },
  24286. },
  24287. [
  24288. {
  24289. name: "Macro",
  24290. height: math.unit(23.8, "meters"),
  24291. default: true
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24297. {
  24298. female: {
  24299. height: math.unit(19.3, "m"),
  24300. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24301. name: "Female",
  24302. image: {
  24303. source: "./media/characters/umok/female.svg",
  24304. extra: 2186 / 2078,
  24305. bottom: 87 / 2277
  24306. }
  24307. },
  24308. male: {
  24309. height: math.unit(19.5, "m"),
  24310. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24311. name: "Male",
  24312. image: {
  24313. source: "./media/characters/umok/male.svg",
  24314. extra: 2233 / 2140,
  24315. bottom: 24.4 / 2258
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Macro",
  24322. height: math.unit(19.3, "meters"),
  24323. default: true
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24329. {
  24330. female: {
  24331. height: math.unit(26.15, "m"),
  24332. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24333. name: "Female",
  24334. image: {
  24335. source: "./media/characters/joraxian/female.svg",
  24336. extra: 2912 / 2824,
  24337. bottom: 36 / 2956
  24338. }
  24339. },
  24340. male: {
  24341. height: math.unit(25.4, "m"),
  24342. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24343. name: "Male",
  24344. image: {
  24345. source: "./media/characters/joraxian/male.svg",
  24346. extra: 2877 / 2721,
  24347. bottom: 82 / 2967
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Macro",
  24354. height: math.unit(26.15, "meters"),
  24355. default: true
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24361. {
  24362. female: {
  24363. height: math.unit(21.6, "m"),
  24364. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24365. name: "Female",
  24366. image: {
  24367. source: "./media/characters/sthara/female.svg",
  24368. extra: 2516 / 2347,
  24369. bottom: 21.5 / 2537
  24370. }
  24371. },
  24372. male: {
  24373. height: math.unit(24, "m"),
  24374. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24375. name: "Male",
  24376. image: {
  24377. source: "./media/characters/sthara/male.svg",
  24378. extra: 2732 / 2607,
  24379. bottom: 23 / 2732
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Macro",
  24386. height: math.unit(21.6, "meters"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(6 + 4 / 12, "feet"),
  24396. weight: math.unit(175, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/luka-bryzant/front.svg",
  24400. extra: 311 / 289,
  24401. bottom: 4 / 315
  24402. }
  24403. },
  24404. back: {
  24405. height: math.unit(6 + 4 / 12, "feet"),
  24406. weight: math.unit(175, "lb"),
  24407. name: "Back",
  24408. image: {
  24409. source: "./media/characters/luka-bryzant/back.svg",
  24410. extra: 311 / 289,
  24411. bottom: 3.8 / 313.7
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Micro",
  24418. height: math.unit(10, "inches")
  24419. },
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(6 + 4 / 12, "feet"),
  24423. default: true
  24424. },
  24425. {
  24426. name: "Large",
  24427. height: math.unit(12, "feet")
  24428. },
  24429. ]
  24430. ))
  24431. characterMakers.push(() => makeCharacter(
  24432. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24433. {
  24434. front: {
  24435. height: math.unit(5 + 7 / 12, "feet"),
  24436. weight: math.unit(185, "lb"),
  24437. name: "Front",
  24438. image: {
  24439. source: "./media/characters/aman-aquila/front.svg",
  24440. extra: 1013 / 976,
  24441. bottom: 45.6 / 1057
  24442. }
  24443. },
  24444. side: {
  24445. height: math.unit(5 + 7 / 12, "feet"),
  24446. weight: math.unit(185, "lb"),
  24447. name: "Side",
  24448. image: {
  24449. source: "./media/characters/aman-aquila/side.svg",
  24450. extra: 1054 / 1011,
  24451. bottom: 15 / 1070
  24452. }
  24453. },
  24454. back: {
  24455. height: math.unit(5 + 7 / 12, "feet"),
  24456. weight: math.unit(185, "lb"),
  24457. name: "Back",
  24458. image: {
  24459. source: "./media/characters/aman-aquila/back.svg",
  24460. extra: 1026 / 970,
  24461. bottom: 12 / 1039
  24462. }
  24463. },
  24464. head: {
  24465. height: math.unit(1.211, "feet"),
  24466. name: "Head",
  24467. image: {
  24468. source: "./media/characters/aman-aquila/head.svg",
  24469. }
  24470. },
  24471. },
  24472. [
  24473. {
  24474. name: "Minimicro",
  24475. height: math.unit(0.057, "inches")
  24476. },
  24477. {
  24478. name: "Micro",
  24479. height: math.unit(7, "inches")
  24480. },
  24481. {
  24482. name: "Mini",
  24483. height: math.unit(3 + 7 / 12, "feet")
  24484. },
  24485. {
  24486. name: "Normal",
  24487. height: math.unit(5 + 7 / 12, "feet"),
  24488. default: true
  24489. },
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(157 + 7 / 12, "feet")
  24493. },
  24494. {
  24495. name: "Megamacro",
  24496. height: math.unit(1557 + 7 / 12, "feet")
  24497. },
  24498. {
  24499. name: "Gigamacro",
  24500. height: math.unit(15557 + 7 / 12, "feet")
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(3 + 2 / 12, "inches"),
  24509. weight: math.unit(0.3, "ounces"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/hiphae/front.svg",
  24513. extra: 1931 / 1683,
  24514. bottom: 24 / 1955
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(3 + 1 / 2, "inches"),
  24522. default: true
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(5 + 10 / 12, "feet"),
  24531. weight: math.unit(165, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/nicky/front.svg",
  24535. extra: 3144 / 2886,
  24536. bottom: 45.6 / 3192
  24537. }
  24538. },
  24539. back: {
  24540. height: math.unit(5 + 10 / 12, "feet"),
  24541. weight: math.unit(165, "lb"),
  24542. name: "Back",
  24543. image: {
  24544. source: "./media/characters/nicky/back.svg",
  24545. extra: 3055 / 2804,
  24546. bottom: 28.4 / 3087
  24547. }
  24548. },
  24549. frontclothed: {
  24550. height: math.unit(5 + 10 / 12, "feet"),
  24551. weight: math.unit(165, "lb"),
  24552. name: "Front-clothed",
  24553. image: {
  24554. source: "./media/characters/nicky/front-clothed.svg",
  24555. extra: 3184.9 / 2926.9,
  24556. bottom: 86.5 / 3239.9
  24557. }
  24558. },
  24559. foot: {
  24560. height: math.unit(1.16, "feet"),
  24561. name: "Foot",
  24562. image: {
  24563. source: "./media/characters/nicky/foot.svg"
  24564. }
  24565. },
  24566. feet: {
  24567. height: math.unit(1.34, "feet"),
  24568. name: "Feet",
  24569. image: {
  24570. source: "./media/characters/nicky/feet.svg"
  24571. }
  24572. },
  24573. maw: {
  24574. height: math.unit(0.9, "feet"),
  24575. name: "Maw",
  24576. image: {
  24577. source: "./media/characters/nicky/maw.svg"
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Normal",
  24584. height: math.unit(5 + 10 / 12, "feet"),
  24585. default: true
  24586. },
  24587. {
  24588. name: "Macro",
  24589. height: math.unit(60, "feet")
  24590. },
  24591. {
  24592. name: "Megamacro",
  24593. height: math.unit(1, "mile")
  24594. },
  24595. ]
  24596. ))
  24597. characterMakers.push(() => makeCharacter(
  24598. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24599. {
  24600. side: {
  24601. height: math.unit(10, "feet"),
  24602. weight: math.unit(600, "lb"),
  24603. name: "Side",
  24604. image: {
  24605. source: "./media/characters/blair/side.svg",
  24606. bottom: 16.6 / 475,
  24607. extra: 458 / 431
  24608. }
  24609. },
  24610. },
  24611. [
  24612. {
  24613. name: "Micro",
  24614. height: math.unit(8, "inches")
  24615. },
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(10, "feet"),
  24619. default: true
  24620. },
  24621. {
  24622. name: "Macro",
  24623. height: math.unit(180, "feet")
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(5 + 4 / 12, "feet"),
  24632. weight: math.unit(125, "lb"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/fisher/front.svg",
  24636. extra: 444 / 390,
  24637. bottom: 2 / 444.8
  24638. }
  24639. },
  24640. },
  24641. [
  24642. {
  24643. name: "Micro",
  24644. height: math.unit(4, "inches")
  24645. },
  24646. {
  24647. name: "Normal",
  24648. height: math.unit(5 + 4 / 12, "feet"),
  24649. default: true
  24650. },
  24651. {
  24652. name: "Macro",
  24653. height: math.unit(100, "feet")
  24654. },
  24655. ]
  24656. ))
  24657. characterMakers.push(() => makeCharacter(
  24658. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24659. {
  24660. front: {
  24661. height: math.unit(6.71, "feet"),
  24662. weight: math.unit(200, "lb"),
  24663. capacity: math.unit(1000000, "people"),
  24664. name: "Front",
  24665. image: {
  24666. source: "./media/characters/gliss/front.svg",
  24667. extra: 2347 / 2231,
  24668. bottom: 113 / 2462
  24669. }
  24670. },
  24671. hammerspaceSize: {
  24672. height: math.unit(6.71 * 717, "feet"),
  24673. weight: math.unit(200, "lb"),
  24674. capacity: math.unit(1000000, "people"),
  24675. name: "Hammerspace Size",
  24676. image: {
  24677. source: "./media/characters/gliss/front.svg",
  24678. extra: 2347 / 2231,
  24679. bottom: 113 / 2462
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Normal",
  24686. height: math.unit(6.71, "feet"),
  24687. default: true
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24693. {
  24694. side: {
  24695. height: math.unit(1.44, "m"),
  24696. weight: math.unit(80, "kg"),
  24697. name: "Side",
  24698. image: {
  24699. source: "./media/characters/dune-anderson/side.svg",
  24700. bottom: 49 / 1426
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Wolf-sized",
  24707. height: math.unit(1.44, "meters")
  24708. },
  24709. {
  24710. name: "Normal",
  24711. height: math.unit(5.05, "meters"),
  24712. default: true
  24713. },
  24714. {
  24715. name: "Big",
  24716. height: math.unit(14.4, "meters")
  24717. },
  24718. {
  24719. name: "Huge",
  24720. height: math.unit(144, "meters")
  24721. },
  24722. ]
  24723. ))
  24724. characterMakers.push(() => makeCharacter(
  24725. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24726. {
  24727. front: {
  24728. height: math.unit(7, "feet"),
  24729. weight: math.unit(425, "lb"),
  24730. name: "Front",
  24731. image: {
  24732. source: "./media/characters/hind/front.svg",
  24733. extra: 2091 / 1860,
  24734. bottom: 129 / 2220
  24735. }
  24736. },
  24737. back: {
  24738. height: math.unit(7, "feet"),
  24739. weight: math.unit(425, "lb"),
  24740. name: "Back",
  24741. image: {
  24742. source: "./media/characters/hind/back.svg",
  24743. extra: 2091 / 1860,
  24744. bottom: 24.6 / 2309
  24745. }
  24746. },
  24747. tail: {
  24748. height: math.unit(2.8, "feet"),
  24749. name: "Tail",
  24750. image: {
  24751. source: "./media/characters/hind/tail.svg"
  24752. }
  24753. },
  24754. head: {
  24755. height: math.unit(2.55, "feet"),
  24756. name: "Head",
  24757. image: {
  24758. source: "./media/characters/hind/head.svg"
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "XS",
  24765. height: math.unit(0.7, "feet")
  24766. },
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(7, "feet"),
  24770. default: true
  24771. },
  24772. {
  24773. name: "XL",
  24774. height: math.unit(70, "feet")
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(6, "feet"),
  24783. weight: math.unit(150, "lb"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/dylan-skaven/front.svg",
  24787. extra: 2318 / 2063,
  24788. bottom: 93.4 / 2410
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Nano",
  24795. height: math.unit(1, "mm")
  24796. },
  24797. {
  24798. name: "Micro",
  24799. height: math.unit(1, "cm")
  24800. },
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(2.1, "meters"),
  24804. default: true
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(7 + 5 / 12, "feet"),
  24813. weight: math.unit(357, "lb"),
  24814. name: "Front",
  24815. image: {
  24816. source: "./media/characters/solex-draconov/front.svg",
  24817. extra: 1993 / 1865,
  24818. bottom: 117 / 2111
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Natural Height",
  24825. height: math.unit(7 + 5 / 12, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Macro",
  24830. height: math.unit(350, "feet")
  24831. },
  24832. {
  24833. name: "Macro+",
  24834. height: math.unit(1000, "feet")
  24835. },
  24836. {
  24837. name: "Megamacro",
  24838. height: math.unit(20, "km")
  24839. },
  24840. {
  24841. name: "Megamacro+",
  24842. height: math.unit(1000, "km")
  24843. },
  24844. {
  24845. name: "Gigamacro",
  24846. height: math.unit(2.5, "Gm")
  24847. },
  24848. {
  24849. name: "Teramacro",
  24850. height: math.unit(15, "Tm")
  24851. },
  24852. {
  24853. name: "Galactic",
  24854. height: math.unit(30, "Zm")
  24855. },
  24856. {
  24857. name: "Universal",
  24858. height: math.unit(21000, "Ym")
  24859. },
  24860. {
  24861. name: "Omniversal",
  24862. height: math.unit(9.861e50, "Ym")
  24863. },
  24864. {
  24865. name: "Existential",
  24866. height: math.unit(1e300, "meters")
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24872. {
  24873. side: {
  24874. height: math.unit(25, "feet"),
  24875. weight: math.unit(90000, "lb"),
  24876. name: "Side",
  24877. image: {
  24878. source: "./media/characters/mandarax/side.svg",
  24879. extra: 614 / 332,
  24880. bottom: 55 / 630
  24881. }
  24882. },
  24883. head: {
  24884. height: math.unit(11.4, "feet"),
  24885. name: "Head",
  24886. image: {
  24887. source: "./media/characters/mandarax/head.svg"
  24888. }
  24889. },
  24890. belly: {
  24891. height: math.unit(33, "feet"),
  24892. name: "Belly",
  24893. capacity: math.unit(500, "people"),
  24894. image: {
  24895. source: "./media/characters/mandarax/belly.svg"
  24896. }
  24897. },
  24898. dick: {
  24899. height: math.unit(8.46, "feet"),
  24900. name: "Dick",
  24901. image: {
  24902. source: "./media/characters/mandarax/dick.svg"
  24903. }
  24904. },
  24905. top: {
  24906. height: math.unit(28, "meters"),
  24907. name: "Top",
  24908. image: {
  24909. source: "./media/characters/mandarax/top.svg"
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Normal",
  24916. height: math.unit(25, "feet"),
  24917. default: true
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24923. {
  24924. front: {
  24925. height: math.unit(5, "feet"),
  24926. weight: math.unit(90, "lb"),
  24927. name: "Front",
  24928. image: {
  24929. source: "./media/characters/pixil/front.svg",
  24930. extra: 2000 / 1618,
  24931. bottom: 12.3 / 2011
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(5, "feet"),
  24939. default: true
  24940. },
  24941. {
  24942. name: "Megamacro",
  24943. height: math.unit(10, "miles"),
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24949. {
  24950. front: {
  24951. height: math.unit(7 + 2 / 12, "feet"),
  24952. weight: math.unit(200, "lb"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/angel/front.svg",
  24956. extra: 1830 / 1737,
  24957. bottom: 22.6 / 1854,
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(7 + 2 / 12, "feet"),
  24965. default: true
  24966. },
  24967. {
  24968. name: "Macro",
  24969. height: math.unit(1000, "feet")
  24970. },
  24971. {
  24972. name: "Megamacro",
  24973. height: math.unit(2, "miles")
  24974. },
  24975. {
  24976. name: "Gigamacro",
  24977. height: math.unit(20, "earths")
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(5, "feet"),
  24986. weight: math.unit(180, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/mekana/front.svg",
  24990. extra: 1671 / 1605,
  24991. bottom: 3.5 / 1691
  24992. }
  24993. },
  24994. side: {
  24995. height: math.unit(5, "feet"),
  24996. weight: math.unit(180, "lb"),
  24997. name: "Side",
  24998. image: {
  24999. source: "./media/characters/mekana/side.svg",
  25000. extra: 1671 / 1605,
  25001. bottom: 3.5 / 1691
  25002. }
  25003. },
  25004. back: {
  25005. height: math.unit(5, "feet"),
  25006. weight: math.unit(180, "lb"),
  25007. name: "Back",
  25008. image: {
  25009. source: "./media/characters/mekana/back.svg",
  25010. extra: 1671 / 1605,
  25011. bottom: 3.5 / 1691
  25012. }
  25013. },
  25014. },
  25015. [
  25016. {
  25017. name: "Normal",
  25018. height: math.unit(5, "feet"),
  25019. default: true
  25020. },
  25021. ]
  25022. ))
  25023. characterMakers.push(() => makeCharacter(
  25024. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25025. {
  25026. front: {
  25027. height: math.unit(4 + 6 / 12, "feet"),
  25028. weight: math.unit(80, "lb"),
  25029. name: "Front",
  25030. image: {
  25031. source: "./media/characters/pixie/front.svg",
  25032. extra: 1924 / 1825,
  25033. bottom: 22.4 / 1946
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Normal",
  25040. height: math.unit(4 + 6 / 12, "feet"),
  25041. default: true
  25042. },
  25043. {
  25044. name: "Macro",
  25045. height: math.unit(40, "feet")
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(2.1, "meters"),
  25054. weight: math.unit(200, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/the-lascivious/front.svg",
  25058. extra: 1 / 0.893,
  25059. bottom: 3.5 / 573.7
  25060. }
  25061. },
  25062. },
  25063. [
  25064. {
  25065. name: "Human Scale",
  25066. height: math.unit(2.1, "meters")
  25067. },
  25068. {
  25069. name: "Wolxi Scale",
  25070. height: math.unit(46.2, "m"),
  25071. default: true
  25072. },
  25073. {
  25074. name: "Boinker of Buildings",
  25075. height: math.unit(10, "km")
  25076. },
  25077. {
  25078. name: "Shagger of Skyscrapers",
  25079. height: math.unit(40, "km")
  25080. },
  25081. {
  25082. name: "Banger of Boroughs",
  25083. height: math.unit(4000, "km")
  25084. },
  25085. {
  25086. name: "Screwer of States",
  25087. height: math.unit(100000, "km")
  25088. },
  25089. {
  25090. name: "Pounder of Planets",
  25091. height: math.unit(2000000, "km")
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(6, "feet"),
  25100. weight: math.unit(150, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/aj/front.svg",
  25104. extra: 2039 / 1562,
  25105. bottom: 40 / 2079
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Normal",
  25112. height: math.unit(11 + 6 / 12, "feet"),
  25113. default: true
  25114. },
  25115. {
  25116. name: "Megamacro",
  25117. height: math.unit(60, "megameters")
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25123. {
  25124. side: {
  25125. height: math.unit(31 + 8 / 12, "feet"),
  25126. weight: math.unit(75000, "kg"),
  25127. name: "Side",
  25128. image: {
  25129. source: "./media/characters/koros/side.svg",
  25130. extra: 1442 / 1297,
  25131. bottom: 122.7 / 1562
  25132. }
  25133. },
  25134. dicksKingsCrown: {
  25135. height: math.unit(6, "feet"),
  25136. name: "Dicks (King's Crown)",
  25137. image: {
  25138. source: "./media/characters/koros/dicks-kings-crown.svg"
  25139. }
  25140. },
  25141. dicksTailSet: {
  25142. height: math.unit(3, "feet"),
  25143. name: "Dicks (Tail Set)",
  25144. image: {
  25145. source: "./media/characters/koros/dicks-tail-set.svg"
  25146. }
  25147. },
  25148. dickCumming: {
  25149. height: math.unit(7.98, "feet"),
  25150. name: "Dick (Cumming)",
  25151. image: {
  25152. source: "./media/characters/koros/dick-cumming.svg"
  25153. }
  25154. },
  25155. dicksBack: {
  25156. height: math.unit(5.9, "feet"),
  25157. name: "Dicks (Back)",
  25158. image: {
  25159. source: "./media/characters/koros/dicks-back.svg"
  25160. }
  25161. },
  25162. dicksFront: {
  25163. height: math.unit(3.72, "feet"),
  25164. name: "Dicks (Front)",
  25165. image: {
  25166. source: "./media/characters/koros/dicks-front.svg"
  25167. }
  25168. },
  25169. dicksPeeking: {
  25170. height: math.unit(3.0, "feet"),
  25171. name: "Dicks (Peeking)",
  25172. image: {
  25173. source: "./media/characters/koros/dicks-peeking.svg"
  25174. }
  25175. },
  25176. eye: {
  25177. height: math.unit(1.7, "feet"),
  25178. name: "Eye",
  25179. image: {
  25180. source: "./media/characters/koros/eye.svg"
  25181. }
  25182. },
  25183. headFront: {
  25184. height: math.unit(11.69, "feet"),
  25185. name: "Head (Front)",
  25186. image: {
  25187. source: "./media/characters/koros/head-front.svg"
  25188. }
  25189. },
  25190. headSide: {
  25191. height: math.unit(14, "feet"),
  25192. name: "Head (Side)",
  25193. image: {
  25194. source: "./media/characters/koros/head-side.svg"
  25195. }
  25196. },
  25197. leg: {
  25198. height: math.unit(17, "feet"),
  25199. name: "Leg",
  25200. image: {
  25201. source: "./media/characters/koros/leg.svg"
  25202. }
  25203. },
  25204. mawSide: {
  25205. height: math.unit(12.8, "feet"),
  25206. name: "Maw (Side)",
  25207. image: {
  25208. source: "./media/characters/koros/maw-side.svg"
  25209. }
  25210. },
  25211. mawSpitting: {
  25212. height: math.unit(17, "feet"),
  25213. name: "Maw (Spitting)",
  25214. image: {
  25215. source: "./media/characters/koros/maw-spitting.svg"
  25216. }
  25217. },
  25218. slit: {
  25219. height: math.unit(2.8, "feet"),
  25220. name: "Slit",
  25221. image: {
  25222. source: "./media/characters/koros/slit.svg"
  25223. }
  25224. },
  25225. stomach: {
  25226. height: math.unit(6.8, "feet"),
  25227. capacity: math.unit(20, "people"),
  25228. name: "Stomach",
  25229. image: {
  25230. source: "./media/characters/koros/stomach.svg"
  25231. }
  25232. },
  25233. wingspanBottom: {
  25234. height: math.unit(114, "feet"),
  25235. name: "Wingspan (Bottom)",
  25236. image: {
  25237. source: "./media/characters/koros/wingspan-bottom.svg"
  25238. }
  25239. },
  25240. wingspanTop: {
  25241. height: math.unit(104, "feet"),
  25242. name: "Wingspan (Top)",
  25243. image: {
  25244. source: "./media/characters/koros/wingspan-top.svg"
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(31 + 8 / 12, "feet"),
  25252. default: true
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25258. {
  25259. front: {
  25260. height: math.unit(18 + 5 / 12, "feet"),
  25261. weight: math.unit(3750, "kg"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/vexx/front.svg",
  25265. extra: 426 / 396,
  25266. bottom: 31.5 / 458
  25267. }
  25268. },
  25269. maw: {
  25270. height: math.unit(6, "feet"),
  25271. name: "Maw",
  25272. image: {
  25273. source: "./media/characters/vexx/maw.svg"
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(18 + 5 / 12, "feet"),
  25281. default: true
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25287. {
  25288. front: {
  25289. height: math.unit(17 + 6 / 12, "feet"),
  25290. weight: math.unit(150, "lb"),
  25291. name: "Front",
  25292. image: {
  25293. source: "./media/characters/baadra/front.svg",
  25294. extra: 3137 / 2890,
  25295. bottom: 168.4 / 3305
  25296. }
  25297. },
  25298. back: {
  25299. height: math.unit(17 + 6 / 12, "feet"),
  25300. weight: math.unit(150, "lb"),
  25301. name: "Back",
  25302. image: {
  25303. source: "./media/characters/baadra/back.svg",
  25304. extra: 3142 / 2890,
  25305. bottom: 220 / 3371
  25306. }
  25307. },
  25308. head: {
  25309. height: math.unit(5.45, "feet"),
  25310. name: "Head",
  25311. image: {
  25312. source: "./media/characters/baadra/head.svg"
  25313. }
  25314. },
  25315. headAngry: {
  25316. height: math.unit(4.95, "feet"),
  25317. name: "Head (Angry)",
  25318. image: {
  25319. source: "./media/characters/baadra/head-angry.svg"
  25320. }
  25321. },
  25322. headOpen: {
  25323. height: math.unit(6, "feet"),
  25324. name: "Head (Open)",
  25325. image: {
  25326. source: "./media/characters/baadra/head-open.svg"
  25327. }
  25328. },
  25329. },
  25330. [
  25331. {
  25332. name: "Normal",
  25333. height: math.unit(17 + 6 / 12, "feet"),
  25334. default: true
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25340. {
  25341. front: {
  25342. height: math.unit(7 + 3 / 12, "feet"),
  25343. weight: math.unit(180, "lb"),
  25344. name: "Front",
  25345. image: {
  25346. source: "./media/characters/juri/front.svg",
  25347. extra: 1401 / 1237,
  25348. bottom: 18.5 / 1418
  25349. }
  25350. },
  25351. side: {
  25352. height: math.unit(7 + 3 / 12, "feet"),
  25353. weight: math.unit(180, "lb"),
  25354. name: "Side",
  25355. image: {
  25356. source: "./media/characters/juri/side.svg",
  25357. extra: 1424 / 1242,
  25358. bottom: 18.5 / 1447
  25359. }
  25360. },
  25361. sitting: {
  25362. height: math.unit(6, "feet"),
  25363. weight: math.unit(180, "lb"),
  25364. name: "Sitting",
  25365. image: {
  25366. source: "./media/characters/juri/sitting.svg",
  25367. extra: 1270 / 1143,
  25368. bottom: 100 / 1343
  25369. }
  25370. },
  25371. back: {
  25372. height: math.unit(7 + 3 / 12, "feet"),
  25373. weight: math.unit(180, "lb"),
  25374. name: "Back",
  25375. image: {
  25376. source: "./media/characters/juri/back.svg",
  25377. extra: 1377 / 1240,
  25378. bottom: 23.7 / 1405
  25379. }
  25380. },
  25381. maw: {
  25382. height: math.unit(2.8, "feet"),
  25383. name: "Maw",
  25384. image: {
  25385. source: "./media/characters/juri/maw.svg"
  25386. }
  25387. },
  25388. stomach: {
  25389. height: math.unit(0.89, "feet"),
  25390. capacity: math.unit(4, "liters"),
  25391. name: "Stomach",
  25392. image: {
  25393. source: "./media/characters/juri/stomach.svg"
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Normal",
  25400. height: math.unit(7 + 3 / 12, "feet"),
  25401. default: true
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25407. {
  25408. fox: {
  25409. height: math.unit(5 + 6 / 12, "feet"),
  25410. weight: math.unit(140, "lb"),
  25411. name: "Fox",
  25412. image: {
  25413. source: "./media/characters/maxene-sita/fox.svg",
  25414. extra: 146 / 138,
  25415. bottom: 2.1 / 148.19
  25416. }
  25417. },
  25418. foxLaying: {
  25419. height: math.unit(1.70, "feet"),
  25420. weight: math.unit(140, "lb"),
  25421. name: "Fox (Laying)",
  25422. image: {
  25423. source: "./media/characters/maxene-sita/fox-laying.svg",
  25424. extra: 910 / 572,
  25425. bottom: 71 / 981
  25426. }
  25427. },
  25428. kitsune: {
  25429. height: math.unit(10, "feet"),
  25430. weight: math.unit(800, "lb"),
  25431. name: "Kitsune",
  25432. image: {
  25433. source: "./media/characters/maxene-sita/kitsune.svg",
  25434. extra: 185 / 176,
  25435. bottom: 4.7 / 189.9
  25436. }
  25437. },
  25438. hellhound: {
  25439. height: math.unit(10, "feet"),
  25440. weight: math.unit(700, "lb"),
  25441. name: "Hellhound",
  25442. image: {
  25443. source: "./media/characters/maxene-sita/hellhound.svg",
  25444. extra: 1600 / 1545,
  25445. bottom: 81 / 1681
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(5 + 6 / 12, "feet"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25459. {
  25460. front: {
  25461. height: math.unit(3 + 4 / 12, "feet"),
  25462. weight: math.unit(70, "lb"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/maia/front.svg",
  25466. extra: 227 / 219.5,
  25467. bottom: 40 / 267
  25468. }
  25469. },
  25470. back: {
  25471. height: math.unit(3 + 4 / 12, "feet"),
  25472. weight: math.unit(70, "lb"),
  25473. name: "Back",
  25474. image: {
  25475. source: "./media/characters/maia/back.svg",
  25476. extra: 237 / 225
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(3 + 4 / 12, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(5 + 10 / 12, "feet"),
  25493. weight: math.unit(197, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/jabaro/front.svg",
  25497. extra: 225 / 216,
  25498. bottom: 5.06 / 230
  25499. }
  25500. },
  25501. back: {
  25502. height: math.unit(5 + 10 / 12, "feet"),
  25503. weight: math.unit(197, "lb"),
  25504. name: "Back",
  25505. image: {
  25506. source: "./media/characters/jabaro/back.svg",
  25507. extra: 225 / 219,
  25508. bottom: 1.9 / 227
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Normal",
  25515. height: math.unit(5 + 10 / 12, "feet"),
  25516. default: true
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25522. {
  25523. front: {
  25524. height: math.unit(5 + 8 / 12, "feet"),
  25525. weight: math.unit(139, "lb"),
  25526. name: "Front",
  25527. image: {
  25528. source: "./media/characters/risa/front.svg",
  25529. extra: 270 / 260,
  25530. bottom: 11.2 / 282
  25531. }
  25532. },
  25533. back: {
  25534. height: math.unit(5 + 8 / 12, "feet"),
  25535. weight: math.unit(139, "lb"),
  25536. name: "Back",
  25537. image: {
  25538. source: "./media/characters/risa/back.svg",
  25539. extra: 264 / 255,
  25540. bottom: 4 / 268
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Normal",
  25547. height: math.unit(5 + 8 / 12, "feet"),
  25548. default: true
  25549. },
  25550. ]
  25551. ))
  25552. characterMakers.push(() => makeCharacter(
  25553. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25554. {
  25555. front: {
  25556. height: math.unit(2 + 11 / 12, "feet"),
  25557. weight: math.unit(30, "lb"),
  25558. name: "Front",
  25559. image: {
  25560. source: "./media/characters/weatley/front.svg",
  25561. bottom: 10.7 / 414,
  25562. extra: 403.5 / 362
  25563. }
  25564. },
  25565. back: {
  25566. height: math.unit(2 + 11 / 12, "feet"),
  25567. weight: math.unit(30, "lb"),
  25568. name: "Back",
  25569. image: {
  25570. source: "./media/characters/weatley/back.svg",
  25571. bottom: 10.7 / 414,
  25572. extra: 403.5 / 362
  25573. }
  25574. },
  25575. },
  25576. [
  25577. {
  25578. name: "Normal",
  25579. height: math.unit(2 + 11 / 12, "feet"),
  25580. default: true
  25581. },
  25582. ]
  25583. ))
  25584. characterMakers.push(() => makeCharacter(
  25585. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25586. {
  25587. front: {
  25588. height: math.unit(5 + 2 / 12, "feet"),
  25589. weight: math.unit(50, "kg"),
  25590. name: "Front",
  25591. image: {
  25592. source: "./media/characters/mercury-crescent/front.svg",
  25593. extra: 1088 / 1033,
  25594. bottom: 18.9 / 1109
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(5 + 2 / 12, "feet"),
  25602. default: true
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(2, "feet"),
  25611. weight: math.unit(15, "kg"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/diamond-jones/front.svg",
  25615. extra: 727/723,
  25616. bottom: 46/773
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(2, "feet"),
  25624. default: true
  25625. },
  25626. ]
  25627. ))
  25628. characterMakers.push(() => makeCharacter(
  25629. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25630. {
  25631. front: {
  25632. height: math.unit(3, "feet"),
  25633. weight: math.unit(30, "kg"),
  25634. name: "Front",
  25635. image: {
  25636. source: "./media/characters/sweet-bit/front.svg",
  25637. extra: 675 / 567,
  25638. bottom: 27.7 / 703
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(3, "feet"),
  25646. default: true
  25647. },
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25652. {
  25653. side: {
  25654. height: math.unit(9.178, "feet"),
  25655. weight: math.unit(500, "lb"),
  25656. name: "Side",
  25657. image: {
  25658. source: "./media/characters/umbrazen/side.svg",
  25659. extra: 1730 / 1473,
  25660. bottom: 34.6 / 1765
  25661. }
  25662. },
  25663. },
  25664. [
  25665. {
  25666. name: "Normal",
  25667. height: math.unit(9.178, "feet"),
  25668. default: true
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(10, "feet"),
  25677. weight: math.unit(750, "lb"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/arlist/front.svg",
  25681. extra: 961 / 778,
  25682. bottom: 6.2 / 986
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(10, "feet"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(5 + 1 / 12, "feet"),
  25699. weight: math.unit(110, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/aradel/front.svg",
  25703. extra: 324 / 303,
  25704. bottom: 3.6 / 329.4
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(5 + 1 / 12, "feet"),
  25712. default: true
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(3 + 8 / 12, "feet"),
  25721. weight: math.unit(50, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/serryn/front.svg",
  25725. extra: 1792 / 1656,
  25726. bottom: 43.5 / 1840
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Normal",
  25733. height: math.unit(3 + 8 / 12, "feet"),
  25734. default: true
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(7 + 10 / 12, "feet"),
  25743. weight: math.unit(255, "lb"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/xavier-thyme/front.svg",
  25747. extra: 3733 / 3642,
  25748. bottom: 131 / 3869
  25749. }
  25750. },
  25751. frontRaven: {
  25752. height: math.unit(7 + 10 / 12, "feet"),
  25753. weight: math.unit(255, "lb"),
  25754. name: "Front (Raven)",
  25755. image: {
  25756. source: "./media/characters/xavier-thyme/front-raven.svg",
  25757. extra: 4385 / 3642,
  25758. bottom: 131 / 4517
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(7 + 10 / 12, "feet"),
  25766. default: true
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(1.6, "m"),
  25775. weight: math.unit(50, "kg"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/kiki/front.svg",
  25779. extra: 4682 / 3610,
  25780. bottom: 115 / 4777
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Normal",
  25787. height: math.unit(1.6, "meters"),
  25788. default: true
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(50, "m"),
  25797. weight: math.unit(500, "tonnes"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/ryoko/front.svg",
  25801. extra: 4632 / 3926,
  25802. bottom: 193 / 4823
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Normal",
  25809. height: math.unit(50, "meters"),
  25810. default: true
  25811. },
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(30, "m"),
  25819. weight: math.unit(22, "tonnes"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/elio/front.svg",
  25823. extra: 4582 / 3720,
  25824. bottom: 236 / 4828
  25825. }
  25826. },
  25827. },
  25828. [
  25829. {
  25830. name: "Normal",
  25831. height: math.unit(30, "meters"),
  25832. default: true
  25833. },
  25834. ]
  25835. ))
  25836. characterMakers.push(() => makeCharacter(
  25837. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25838. {
  25839. front: {
  25840. height: math.unit(6 + 3 / 12, "feet"),
  25841. weight: math.unit(120, "lb"),
  25842. name: "Front",
  25843. image: {
  25844. source: "./media/characters/azura/front.svg",
  25845. extra: 1149 / 1135,
  25846. bottom: 45 / 1194
  25847. }
  25848. },
  25849. frontClothed: {
  25850. height: math.unit(6 + 3 / 12, "feet"),
  25851. weight: math.unit(120, "lb"),
  25852. name: "Front (Clothed)",
  25853. image: {
  25854. source: "./media/characters/azura/front-clothed.svg",
  25855. extra: 1149 / 1135,
  25856. bottom: 45 / 1194
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(6 + 3 / 12, "feet"),
  25864. default: true
  25865. },
  25866. {
  25867. name: "Macro",
  25868. height: math.unit(20 + 6 / 12, "feet")
  25869. },
  25870. {
  25871. name: "Megamacro",
  25872. height: math.unit(12, "miles")
  25873. },
  25874. {
  25875. name: "Gigamacro",
  25876. height: math.unit(10000, "miles")
  25877. },
  25878. {
  25879. name: "Teramacro",
  25880. height: math.unit(900000, "miles")
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25886. {
  25887. front: {
  25888. height: math.unit(12, "feet"),
  25889. weight: math.unit(1, "ton"),
  25890. capacity: math.unit(660000, "gallons"),
  25891. name: "Front",
  25892. image: {
  25893. source: "./media/characters/zeus/front.svg",
  25894. extra: 5005 / 4717,
  25895. bottom: 363 / 5388
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(12, "feet")
  25903. },
  25904. {
  25905. name: "Preferred Size",
  25906. height: math.unit(0.5, "miles"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Giga Horse",
  25911. height: math.unit(300, "miles")
  25912. },
  25913. {
  25914. name: "Riding Planets",
  25915. height: math.unit(30, "megameters")
  25916. },
  25917. {
  25918. name: "Cosmic Giant",
  25919. height: math.unit(3, "zettameters")
  25920. },
  25921. {
  25922. name: "Breeding God",
  25923. height: math.unit(9.92e22, "yottameters")
  25924. },
  25925. ]
  25926. ))
  25927. characterMakers.push(() => makeCharacter(
  25928. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25929. {
  25930. side: {
  25931. height: math.unit(9, "feet"),
  25932. weight: math.unit(1500, "kg"),
  25933. name: "Side",
  25934. image: {
  25935. source: "./media/characters/fang/side.svg",
  25936. extra: 924 / 866,
  25937. bottom: 47.5 / 972.3
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(9, "feet"),
  25945. default: true
  25946. },
  25947. {
  25948. name: "Macro",
  25949. height: math.unit(75 + 6 / 12, "feet")
  25950. },
  25951. {
  25952. name: "Teramacro",
  25953. height: math.unit(50000, "miles")
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(10, "feet"),
  25962. weight: math.unit(2, "tons"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/rekhit/front.svg",
  25966. extra: 2796 / 2590,
  25967. bottom: 225 / 3022
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(10, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Macro",
  25979. height: math.unit(500, "feet")
  25980. },
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25985. {
  25986. front: {
  25987. height: math.unit(7 + 6.451 / 12, "feet"),
  25988. weight: math.unit(310, "lb"),
  25989. name: "Front",
  25990. image: {
  25991. source: "./media/characters/dahlia-verrick/front.svg",
  25992. extra: 1488 / 1365,
  25993. bottom: 6.2 / 1495
  25994. }
  25995. },
  25996. back: {
  25997. height: math.unit(7 + 6.451 / 12, "feet"),
  25998. weight: math.unit(310, "lb"),
  25999. name: "Back",
  26000. image: {
  26001. source: "./media/characters/dahlia-verrick/back.svg",
  26002. extra: 1472 / 1351,
  26003. bottom: 5.28 / 1477
  26004. }
  26005. },
  26006. frontBusiness: {
  26007. height: math.unit(7 + 6.451 / 12, "feet"),
  26008. weight: math.unit(200, "lb"),
  26009. name: "Front (Business)",
  26010. image: {
  26011. source: "./media/characters/dahlia-verrick/front-business.svg",
  26012. extra: 1478 / 1381,
  26013. bottom: 5.5 / 1484
  26014. }
  26015. },
  26016. frontCasual: {
  26017. height: math.unit(7 + 6.451 / 12, "feet"),
  26018. weight: math.unit(200, "lb"),
  26019. name: "Front (Casual)",
  26020. image: {
  26021. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26022. extra: 1478 / 1381,
  26023. bottom: 5.5 / 1484
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Travel-Sized",
  26030. height: math.unit(7.45, "inches")
  26031. },
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(7 + 6.451 / 12, "feet"),
  26035. default: true
  26036. },
  26037. {
  26038. name: "Hitting the Town",
  26039. height: math.unit(37 + 8 / 12, "feet")
  26040. },
  26041. {
  26042. name: "Stomp in the Suburbs",
  26043. height: math.unit(964 + 9.728 / 12, "feet")
  26044. },
  26045. {
  26046. name: "Sit on the City",
  26047. height: math.unit(61747 + 10.592 / 12, "feet")
  26048. },
  26049. {
  26050. name: "Glomp the Globe",
  26051. height: math.unit(252919327 + 4.832 / 12, "feet")
  26052. },
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(6 + 4 / 12, "feet"),
  26060. weight: math.unit(320, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/balina-mahigan/front.svg",
  26064. extra: 447 / 428,
  26065. bottom: 18 / 466
  26066. }
  26067. },
  26068. back: {
  26069. height: math.unit(6 + 4 / 12, "feet"),
  26070. weight: math.unit(320, "lb"),
  26071. name: "Back",
  26072. image: {
  26073. source: "./media/characters/balina-mahigan/back.svg",
  26074. extra: 445 / 428,
  26075. bottom: 4.07 / 448
  26076. }
  26077. },
  26078. arm: {
  26079. height: math.unit(1.88, "feet"),
  26080. name: "Arm",
  26081. image: {
  26082. source: "./media/characters/balina-mahigan/arm.svg"
  26083. }
  26084. },
  26085. backPort: {
  26086. height: math.unit(0.685, "feet"),
  26087. name: "Back Port",
  26088. image: {
  26089. source: "./media/characters/balina-mahigan/back-port.svg"
  26090. }
  26091. },
  26092. hoofpaw: {
  26093. height: math.unit(1.41, "feet"),
  26094. name: "Hoofpaw",
  26095. image: {
  26096. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26097. }
  26098. },
  26099. leftHandBack: {
  26100. height: math.unit(0.938, "feet"),
  26101. name: "Left Hand (Back)",
  26102. image: {
  26103. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26104. }
  26105. },
  26106. leftHandFront: {
  26107. height: math.unit(0.938, "feet"),
  26108. name: "Left Hand (Front)",
  26109. image: {
  26110. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26111. }
  26112. },
  26113. rightHandBack: {
  26114. height: math.unit(0.95, "feet"),
  26115. name: "Right Hand (Back)",
  26116. image: {
  26117. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26118. }
  26119. },
  26120. rightHandFront: {
  26121. height: math.unit(0.95, "feet"),
  26122. name: "Right Hand (Front)",
  26123. image: {
  26124. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(6 + 4 / 12, "feet"),
  26132. default: true
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26138. {
  26139. front: {
  26140. height: math.unit(6, "feet"),
  26141. weight: math.unit(320, "lb"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/balina-mejeri/front.svg",
  26145. extra: 517 / 488,
  26146. bottom: 44.2 / 561
  26147. }
  26148. },
  26149. },
  26150. [
  26151. {
  26152. name: "Normal",
  26153. height: math.unit(6 + 4 / 12, "feet")
  26154. },
  26155. {
  26156. name: "Business",
  26157. height: math.unit(155, "feet"),
  26158. default: true
  26159. },
  26160. ]
  26161. ))
  26162. characterMakers.push(() => makeCharacter(
  26163. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26164. {
  26165. kneeling: {
  26166. height: math.unit(6 + 4 / 12, "feet"),
  26167. weight: math.unit(300 * 20, "lb"),
  26168. name: "Kneeling",
  26169. image: {
  26170. source: "./media/characters/balbarian/kneeling.svg",
  26171. extra: 922 / 862,
  26172. bottom: 42.4 / 965
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Normal",
  26179. height: math.unit(6 + 4 / 12, "feet")
  26180. },
  26181. {
  26182. name: "Treasured",
  26183. height: math.unit(18 + 9 / 12, "feet"),
  26184. default: true
  26185. },
  26186. {
  26187. name: "Macro",
  26188. height: math.unit(900, "feet")
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(6 + 4 / 12, "feet"),
  26197. weight: math.unit(325, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/balina-amarini/front.svg",
  26201. extra: 415 / 403,
  26202. bottom: 19 / 433.4
  26203. }
  26204. },
  26205. back: {
  26206. height: math.unit(6 + 4 / 12, "feet"),
  26207. weight: math.unit(325, "lb"),
  26208. name: "Back",
  26209. image: {
  26210. source: "./media/characters/balina-amarini/back.svg",
  26211. extra: 415 / 403,
  26212. bottom: 13.5 / 432
  26213. }
  26214. },
  26215. overdrive: {
  26216. height: math.unit(6 + 4 / 12, "feet"),
  26217. weight: math.unit(400, "lb"),
  26218. name: "Overdrive",
  26219. image: {
  26220. source: "./media/characters/balina-amarini/overdrive.svg",
  26221. extra: 269 / 259,
  26222. bottom: 12 / 282
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Boom",
  26229. height: math.unit(9 + 10 / 12, "feet"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Macro",
  26234. height: math.unit(280, "feet")
  26235. },
  26236. ]
  26237. ))
  26238. characterMakers.push(() => makeCharacter(
  26239. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26240. {
  26241. goddess: {
  26242. height: math.unit(600, "feet"),
  26243. weight: math.unit(2000000, "tons"),
  26244. name: "Goddess",
  26245. image: {
  26246. source: "./media/characters/lady-kubwa/goddess.svg",
  26247. extra: 1240.5 / 1223,
  26248. bottom: 22 / 1263
  26249. }
  26250. },
  26251. goddesser: {
  26252. height: math.unit(900, "feet"),
  26253. weight: math.unit(20000000, "lb"),
  26254. name: "Goddess-er",
  26255. image: {
  26256. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26257. extra: 899 / 888,
  26258. bottom: 12.6 / 912
  26259. }
  26260. },
  26261. },
  26262. [
  26263. {
  26264. name: "Macro",
  26265. height: math.unit(600, "feet"),
  26266. default: true
  26267. },
  26268. {
  26269. name: "Megamacro",
  26270. height: math.unit(250, "miles")
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(7 + 7 / 12, "feet"),
  26279. weight: math.unit(250, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/tala-grovehorn/front.svg",
  26283. extra: 2636 / 2525,
  26284. bottom: 147 / 2781
  26285. }
  26286. },
  26287. back: {
  26288. height: math.unit(7 + 7 / 12, "feet"),
  26289. weight: math.unit(250, "lb"),
  26290. name: "Back",
  26291. image: {
  26292. source: "./media/characters/tala-grovehorn/back.svg",
  26293. extra: 2635 / 2539,
  26294. bottom: 100 / 2732.8
  26295. }
  26296. },
  26297. mouth: {
  26298. height: math.unit(1.15, "feet"),
  26299. name: "Mouth",
  26300. image: {
  26301. source: "./media/characters/tala-grovehorn/mouth.svg"
  26302. }
  26303. },
  26304. dick: {
  26305. height: math.unit(2.36, "feet"),
  26306. name: "Dick",
  26307. image: {
  26308. source: "./media/characters/tala-grovehorn/dick.svg"
  26309. }
  26310. },
  26311. slit: {
  26312. height: math.unit(0.61, "feet"),
  26313. name: "Slit",
  26314. image: {
  26315. source: "./media/characters/tala-grovehorn/slit.svg"
  26316. }
  26317. },
  26318. },
  26319. [
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26324. {
  26325. front: {
  26326. height: math.unit(7 + 7 / 12, "feet"),
  26327. weight: math.unit(225, "lb"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/epona/front.svg",
  26331. extra: 2445 / 2290,
  26332. bottom: 251 / 2696
  26333. }
  26334. },
  26335. back: {
  26336. height: math.unit(7 + 7 / 12, "feet"),
  26337. weight: math.unit(225, "lb"),
  26338. name: "Back",
  26339. image: {
  26340. source: "./media/characters/epona/back.svg",
  26341. extra: 2546 / 2408,
  26342. bottom: 44 / 2589
  26343. }
  26344. },
  26345. genitals: {
  26346. height: math.unit(1.5, "feet"),
  26347. name: "Genitals",
  26348. image: {
  26349. source: "./media/characters/epona/genitals.svg"
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(7 + 7 / 12, "feet"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(7, "feet"),
  26366. weight: math.unit(518, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/avia-bloodbourn/front.svg",
  26370. extra: 1466 / 1350,
  26371. bottom: 65 / 1527
  26372. }
  26373. },
  26374. },
  26375. [
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(9.35, "feet"),
  26383. weight: math.unit(600, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/amera/front.svg",
  26387. extra: 891 / 818,
  26388. bottom: 30 / 922.7
  26389. }
  26390. },
  26391. back: {
  26392. height: math.unit(9.35, "feet"),
  26393. weight: math.unit(600, "lb"),
  26394. name: "Back",
  26395. image: {
  26396. source: "./media/characters/amera/back.svg",
  26397. extra: 876 / 824,
  26398. bottom: 6.8 / 884
  26399. }
  26400. },
  26401. dick: {
  26402. height: math.unit(2.14, "feet"),
  26403. name: "Dick",
  26404. image: {
  26405. source: "./media/characters/amera/dick.svg"
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(9.35, "feet"),
  26413. default: true
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26419. {
  26420. kneeling: {
  26421. height: math.unit(3 + 4 / 12, "feet"),
  26422. weight: math.unit(90, "lb"),
  26423. name: "Kneeling",
  26424. image: {
  26425. source: "./media/characters/rosewen/kneeling.svg",
  26426. extra: 1835 / 1571,
  26427. bottom: 27.7 / 1862
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(3 + 4 / 12, "feet"),
  26435. default: true
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26441. {
  26442. front: {
  26443. height: math.unit(5 + 10 / 12, "feet"),
  26444. weight: math.unit(200, "lb"),
  26445. name: "Front",
  26446. image: {
  26447. source: "./media/characters/sabah/front.svg",
  26448. extra: 849 / 763,
  26449. bottom: 33.9 / 881
  26450. }
  26451. },
  26452. },
  26453. [
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(5 + 10 / 12, "feet"),
  26457. default: true
  26458. },
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26463. {
  26464. front: {
  26465. height: math.unit(3 + 5 / 12, "feet"),
  26466. weight: math.unit(40, "kg"),
  26467. name: "Front",
  26468. image: {
  26469. source: "./media/characters/purple-flame/front.svg",
  26470. extra: 1577 / 1412,
  26471. bottom: 97 / 1694
  26472. }
  26473. },
  26474. frontDressed: {
  26475. height: math.unit(3 + 5 / 12, "feet"),
  26476. weight: math.unit(40, "kg"),
  26477. name: "Front (Dressed)",
  26478. image: {
  26479. source: "./media/characters/purple-flame/front-dressed.svg",
  26480. extra: 1577 / 1412,
  26481. bottom: 97 / 1694
  26482. }
  26483. },
  26484. headphones: {
  26485. height: math.unit(0.85, "feet"),
  26486. name: "Headphones",
  26487. image: {
  26488. source: "./media/characters/purple-flame/headphones.svg"
  26489. }
  26490. },
  26491. },
  26492. [
  26493. {
  26494. name: "Really Small",
  26495. height: math.unit(5, "cm")
  26496. },
  26497. {
  26498. name: "Micro",
  26499. height: math.unit(1 + 5 / 12, "feet")
  26500. },
  26501. {
  26502. name: "Normal",
  26503. height: math.unit(3 + 5 / 12, "feet"),
  26504. default: true
  26505. },
  26506. {
  26507. name: "Minimacro",
  26508. height: math.unit(125, "feet")
  26509. },
  26510. {
  26511. name: "Macro",
  26512. height: math.unit(0.5, "miles")
  26513. },
  26514. {
  26515. name: "Megamacro",
  26516. height: math.unit(50, "miles")
  26517. },
  26518. {
  26519. name: "Gigantic",
  26520. height: math.unit(750, "miles")
  26521. },
  26522. {
  26523. name: "Planetary",
  26524. height: math.unit(15000, "miles")
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(14, "feet"),
  26533. weight: math.unit(959, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/arsenal/front.svg",
  26537. extra: 2357 / 2157,
  26538. bottom: 93 / 2458
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Normal",
  26545. height: math.unit(14, "feet"),
  26546. default: true
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26552. {
  26553. front: {
  26554. height: math.unit(6, "feet"),
  26555. weight: math.unit(150, "lb"),
  26556. name: "Front",
  26557. image: {
  26558. source: "./media/characters/adira/front.svg",
  26559. extra: 1078 / 1029,
  26560. bottom: 87 / 1166
  26561. }
  26562. },
  26563. },
  26564. [
  26565. {
  26566. name: "Micro",
  26567. height: math.unit(4, "inches"),
  26568. default: true
  26569. },
  26570. {
  26571. name: "Macro",
  26572. height: math.unit(50, "feet")
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26578. {
  26579. front: {
  26580. height: math.unit(16, "feet"),
  26581. weight: math.unit(1000, "lb"),
  26582. name: "Front",
  26583. image: {
  26584. source: "./media/characters/grim/front.svg",
  26585. extra: 622 / 614,
  26586. bottom: 18.1 / 642
  26587. }
  26588. },
  26589. back: {
  26590. height: math.unit(16, "feet"),
  26591. weight: math.unit(1000, "lb"),
  26592. name: "Back",
  26593. image: {
  26594. source: "./media/characters/grim/back.svg",
  26595. extra: 610.6 / 602,
  26596. bottom: 40.8 / 652
  26597. }
  26598. },
  26599. hunched: {
  26600. height: math.unit(9.75, "feet"),
  26601. weight: math.unit(1000, "lb"),
  26602. name: "Hunched",
  26603. image: {
  26604. source: "./media/characters/grim/hunched.svg",
  26605. extra: 304 / 297,
  26606. bottom: 35.4 / 394
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Normal",
  26613. height: math.unit(16, "feet"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26620. {
  26621. front: {
  26622. height: math.unit(2.3, "meters"),
  26623. weight: math.unit(300, "lb"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/sinja/front-sfw.svg",
  26627. extra: 1393 / 1294,
  26628. bottom: 70 / 1463
  26629. }
  26630. },
  26631. frontNsfw: {
  26632. height: math.unit(2.3, "meters"),
  26633. weight: math.unit(300, "lb"),
  26634. name: "Front (NSFW)",
  26635. image: {
  26636. source: "./media/characters/sinja/front-nsfw.svg",
  26637. extra: 1393 / 1294,
  26638. bottom: 70 / 1463
  26639. }
  26640. },
  26641. back: {
  26642. height: math.unit(2.3, "meters"),
  26643. weight: math.unit(300, "lb"),
  26644. name: "Back",
  26645. image: {
  26646. source: "./media/characters/sinja/back.svg",
  26647. extra: 1393 / 1294,
  26648. bottom: 70 / 1463
  26649. }
  26650. },
  26651. head: {
  26652. height: math.unit(1.771, "feet"),
  26653. name: "Head",
  26654. image: {
  26655. source: "./media/characters/sinja/head.svg"
  26656. }
  26657. },
  26658. slit: {
  26659. height: math.unit(0.8, "feet"),
  26660. name: "Slit",
  26661. image: {
  26662. source: "./media/characters/sinja/slit.svg"
  26663. }
  26664. },
  26665. },
  26666. [
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(2.3, "meters")
  26670. },
  26671. {
  26672. name: "Macro",
  26673. height: math.unit(91, "meters"),
  26674. default: true
  26675. },
  26676. {
  26677. name: "Megamacro",
  26678. height: math.unit(91440, "meters")
  26679. },
  26680. {
  26681. name: "Gigamacro",
  26682. height: math.unit(60960000, "meters")
  26683. },
  26684. {
  26685. name: "Teramacro",
  26686. height: math.unit(9144000000, "meters")
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(1.7, "meters"),
  26695. weight: math.unit(130, "lb"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/kyu/front.svg",
  26699. extra: 415 / 395,
  26700. bottom: 5 / 420
  26701. }
  26702. },
  26703. head: {
  26704. height: math.unit(1.75, "feet"),
  26705. name: "Head",
  26706. image: {
  26707. source: "./media/characters/kyu/head.svg"
  26708. }
  26709. },
  26710. foot: {
  26711. height: math.unit(0.81, "feet"),
  26712. name: "Foot",
  26713. image: {
  26714. source: "./media/characters/kyu/foot.svg"
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(1.7, "meters")
  26722. },
  26723. {
  26724. name: "Macro",
  26725. height: math.unit(131, "feet"),
  26726. default: true
  26727. },
  26728. {
  26729. name: "Megamacro",
  26730. height: math.unit(91440, "meters")
  26731. },
  26732. {
  26733. name: "Gigamacro",
  26734. height: math.unit(60960000, "meters")
  26735. },
  26736. {
  26737. name: "Teramacro",
  26738. height: math.unit(9144000000, "meters")
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(7 + 1 / 12, "feet"),
  26747. weight: math.unit(250, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/joey/front.svg",
  26751. extra: 1791 / 1537,
  26752. bottom: 28 / 1816
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Micro",
  26759. height: math.unit(3, "inches")
  26760. },
  26761. {
  26762. name: "Normal",
  26763. height: math.unit(7 + 1 / 12, "feet"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(165, "cm"),
  26773. weight: math.unit(140, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/sam-evans/front.svg",
  26777. extra: 3417 / 3230,
  26778. bottom: 41.3 / 3417
  26779. }
  26780. },
  26781. frontSixTails: {
  26782. height: math.unit(165, "cm"),
  26783. weight: math.unit(140, "lb"),
  26784. name: "Front-six-tails",
  26785. image: {
  26786. source: "./media/characters/sam-evans/front-six-tails.svg",
  26787. extra: 3417 / 3230,
  26788. bottom: 41.3 / 3417
  26789. }
  26790. },
  26791. back: {
  26792. height: math.unit(165, "cm"),
  26793. weight: math.unit(140, "lb"),
  26794. name: "Back",
  26795. image: {
  26796. source: "./media/characters/sam-evans/back.svg",
  26797. extra: 3227 / 3032,
  26798. bottom: 6.8 / 3234
  26799. }
  26800. },
  26801. face: {
  26802. height: math.unit(0.68, "feet"),
  26803. name: "Face",
  26804. image: {
  26805. source: "./media/characters/sam-evans/face.svg"
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(165, "cm"),
  26813. default: true
  26814. },
  26815. {
  26816. name: "Macro",
  26817. height: math.unit(100, "meters")
  26818. },
  26819. {
  26820. name: "Macro+",
  26821. height: math.unit(800, "meters")
  26822. },
  26823. {
  26824. name: "Macro++",
  26825. height: math.unit(3, "km")
  26826. },
  26827. {
  26828. name: "Macro+++",
  26829. height: math.unit(30, "km")
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(10, "feet"),
  26838. weight: math.unit(750, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/juliet-a/front.svg",
  26842. extra: 1766 / 1720,
  26843. bottom: 43 / 1809
  26844. }
  26845. },
  26846. back: {
  26847. height: math.unit(10, "feet"),
  26848. weight: math.unit(750, "lb"),
  26849. name: "Back",
  26850. image: {
  26851. source: "./media/characters/juliet-a/back.svg",
  26852. extra: 1781 / 1734,
  26853. bottom: 35 / 1810,
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(10, "feet"),
  26861. default: true
  26862. },
  26863. {
  26864. name: "Dragon Form",
  26865. height: math.unit(250, "feet")
  26866. },
  26867. {
  26868. name: "Macro",
  26869. height: math.unit(1000, "feet")
  26870. },
  26871. {
  26872. name: "Megamacro",
  26873. height: math.unit(10000, "feet")
  26874. }
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26879. {
  26880. regular: {
  26881. height: math.unit(7 + 3 / 12, "feet"),
  26882. weight: math.unit(260, "lb"),
  26883. name: "Regular",
  26884. image: {
  26885. source: "./media/characters/wild/regular.svg",
  26886. extra: 97.45 / 92,
  26887. bottom: 6.8 / 104.3
  26888. }
  26889. },
  26890. biggums: {
  26891. height: math.unit(8 + 6 / 12, "feet"),
  26892. weight: math.unit(425, "lb"),
  26893. name: "Biggums",
  26894. image: {
  26895. source: "./media/characters/wild/biggums.svg",
  26896. extra: 97.45 / 92,
  26897. bottom: 7.5 / 132.34
  26898. }
  26899. },
  26900. mawRegular: {
  26901. height: math.unit(1.24, "feet"),
  26902. name: "Maw (Regular)",
  26903. image: {
  26904. source: "./media/characters/wild/maw.svg"
  26905. }
  26906. },
  26907. mawBiggums: {
  26908. height: math.unit(1.47, "feet"),
  26909. name: "Maw (Biggums)",
  26910. image: {
  26911. source: "./media/characters/wild/maw.svg"
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Normal",
  26918. height: math.unit(7 + 3 / 12, "feet"),
  26919. default: true
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26925. {
  26926. front: {
  26927. height: math.unit(2.5, "meters"),
  26928. weight: math.unit(200, "kg"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/vidar/front.svg",
  26932. extra: 2994 / 2795,
  26933. bottom: 56 / 3061
  26934. }
  26935. },
  26936. back: {
  26937. height: math.unit(2.5, "meters"),
  26938. weight: math.unit(200, "kg"),
  26939. name: "Back",
  26940. image: {
  26941. source: "./media/characters/vidar/back.svg",
  26942. extra: 3131 / 2928,
  26943. bottom: 13.5 / 3141.5
  26944. }
  26945. },
  26946. feral: {
  26947. height: math.unit(2.5, "meters"),
  26948. weight: math.unit(2000, "kg"),
  26949. name: "Feral",
  26950. image: {
  26951. source: "./media/characters/vidar/feral.svg",
  26952. extra: 2790 / 1765,
  26953. bottom: 6 / 2796
  26954. }
  26955. },
  26956. },
  26957. [
  26958. {
  26959. name: "Normal",
  26960. height: math.unit(2.5, "meters"),
  26961. default: true
  26962. },
  26963. {
  26964. name: "Macro",
  26965. height: math.unit(100, "meters")
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(5 + 9 / 12, "feet"),
  26974. weight: math.unit(120, "lb"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/ash/front.svg",
  26978. extra: 2189 / 1961,
  26979. bottom: 5.2 / 2194
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Normal",
  26986. height: math.unit(5 + 9 / 12, "feet"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(9, "feet"),
  26996. weight: math.unit(10000, "lb"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/gygabite/front.svg",
  27000. bottom: 31.7 / 537.8,
  27001. extra: 505 / 370
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(9, "feet"),
  27009. default: true
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(12, "feet"),
  27018. weight: math.unit(35000, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/p0tat0/front.svg",
  27022. extra: 1065 / 921,
  27023. bottom: 55.7 / 1121.25
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(12, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27037. {
  27038. side: {
  27039. height: math.unit(6.5, "feet"),
  27040. weight: math.unit(800, "lb"),
  27041. name: "Side",
  27042. image: {
  27043. source: "./media/characters/dusk/side.svg",
  27044. extra: 615 / 373,
  27045. bottom: 53 / 664
  27046. }
  27047. },
  27048. sitting: {
  27049. height: math.unit(7, "feet"),
  27050. weight: math.unit(800, "lb"),
  27051. name: "Sitting",
  27052. image: {
  27053. source: "./media/characters/dusk/sitting.svg",
  27054. extra: 753 / 425,
  27055. bottom: 33 / 774
  27056. }
  27057. },
  27058. head: {
  27059. height: math.unit(6.1, "feet"),
  27060. name: "Head",
  27061. image: {
  27062. source: "./media/characters/dusk/head.svg"
  27063. }
  27064. },
  27065. },
  27066. [
  27067. {
  27068. name: "Normal",
  27069. height: math.unit(7, "feet"),
  27070. default: true
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27076. {
  27077. front: {
  27078. height: math.unit(15, "feet"),
  27079. weight: math.unit(7000, "lb"),
  27080. name: "Front",
  27081. image: {
  27082. source: "./media/characters/jay-direwolf/front.svg",
  27083. extra: 1810 / 1732,
  27084. bottom: 66 / 1892
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(15, "feet"),
  27092. default: true
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(4 + 9 / 12, "feet"),
  27101. weight: math.unit(130, "lb"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/anchovie/front.svg",
  27105. extra: 382 / 350,
  27106. bottom: 25 / 409
  27107. }
  27108. },
  27109. back: {
  27110. height: math.unit(4 + 9 / 12, "feet"),
  27111. weight: math.unit(130, "lb"),
  27112. name: "Back",
  27113. image: {
  27114. source: "./media/characters/anchovie/back.svg",
  27115. extra: 385 / 352,
  27116. bottom: 16.6 / 402
  27117. }
  27118. },
  27119. frontDressed: {
  27120. height: math.unit(4 + 9 / 12, "feet"),
  27121. weight: math.unit(130, "lb"),
  27122. name: "Front (Dressed)",
  27123. image: {
  27124. source: "./media/characters/anchovie/front-dressed.svg",
  27125. extra: 382 / 350,
  27126. bottom: 25 / 409
  27127. }
  27128. },
  27129. backDressed: {
  27130. height: math.unit(4 + 9 / 12, "feet"),
  27131. weight: math.unit(130, "lb"),
  27132. name: "Back (Dressed)",
  27133. image: {
  27134. source: "./media/characters/anchovie/back-dressed.svg",
  27135. extra: 385 / 352,
  27136. bottom: 16.6 / 402
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Micro",
  27143. height: math.unit(6.4, "inches")
  27144. },
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(4 + 9 / 12, "feet"),
  27148. default: true
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(2, "meters"),
  27157. weight: math.unit(180, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/acidrenamon/front.svg",
  27161. extra: 987 / 890,
  27162. bottom: 22.8 / 1009
  27163. }
  27164. },
  27165. back: {
  27166. height: math.unit(2, "meters"),
  27167. weight: math.unit(180, "lb"),
  27168. name: "Back",
  27169. image: {
  27170. source: "./media/characters/acidrenamon/back.svg",
  27171. extra: 983 / 891,
  27172. bottom: 8.4 / 992
  27173. }
  27174. },
  27175. head: {
  27176. height: math.unit(1.92, "feet"),
  27177. name: "Head",
  27178. image: {
  27179. source: "./media/characters/acidrenamon/head.svg"
  27180. }
  27181. },
  27182. rump: {
  27183. height: math.unit(1.72, "feet"),
  27184. name: "Rump",
  27185. image: {
  27186. source: "./media/characters/acidrenamon/rump.svg"
  27187. }
  27188. },
  27189. tail: {
  27190. height: math.unit(4.2, "feet"),
  27191. name: "Tail",
  27192. image: {
  27193. source: "./media/characters/acidrenamon/tail.svg"
  27194. }
  27195. },
  27196. },
  27197. [
  27198. {
  27199. name: "Normal",
  27200. height: math.unit(2, "meters"),
  27201. default: true
  27202. },
  27203. {
  27204. name: "Minimacro",
  27205. height: math.unit(7, "meters")
  27206. },
  27207. {
  27208. name: "Macro",
  27209. height: math.unit(200, "meters")
  27210. },
  27211. {
  27212. name: "Gigamacro",
  27213. height: math.unit(0.2, "earths")
  27214. },
  27215. ]
  27216. ))
  27217. characterMakers.push(() => makeCharacter(
  27218. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27219. {
  27220. front: {
  27221. height: math.unit(6, "feet"),
  27222. weight: math.unit(150, "lb"),
  27223. name: "Front",
  27224. image: {
  27225. source: "./media/characters/kenzie-lee/front.svg",
  27226. extra: 1525 / 1465,
  27227. bottom: 45 / 1570
  27228. }
  27229. },
  27230. side: {
  27231. height: math.unit(6, "feet"),
  27232. weight: math.unit(150, "lb"),
  27233. name: "Side",
  27234. image: {
  27235. source: "./media/characters/kenzie-lee/side.svg",
  27236. extra: 5505 / 5383,
  27237. bottom: 60 / 5573
  27238. }
  27239. },
  27240. paw: {
  27241. height: math.unit(0.57, "feet"),
  27242. name: "Paw",
  27243. image: {
  27244. source: "./media/characters/kenzie-lee/paw.svg"
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(152, "feet"),
  27252. default: true
  27253. },
  27254. {
  27255. name: "Megamacro",
  27256. height: math.unit(7, "miles")
  27257. },
  27258. {
  27259. name: "Gigamacro",
  27260. height: math.unit(8000, "miles")
  27261. },
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27266. {
  27267. side: {
  27268. height: math.unit(6, "feet"),
  27269. weight: math.unit(150, "lb"),
  27270. name: "Side",
  27271. image: {
  27272. source: "./media/characters/withers/side.svg",
  27273. extra: 1830 / 1728,
  27274. bottom: 96 / 1927
  27275. }
  27276. },
  27277. front: {
  27278. height: math.unit(6, "feet"),
  27279. weight: math.unit(150, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/withers/front.svg",
  27283. extra: 1514 / 1438,
  27284. bottom: 118 / 1632
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Macro",
  27291. height: math.unit(168, "feet"),
  27292. default: true
  27293. },
  27294. {
  27295. name: "Megamacro",
  27296. height: math.unit(15, "miles")
  27297. }
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(6 + 7 / 12, "feet"),
  27305. weight: math.unit(250, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/nemoskii/front.svg",
  27309. extra: 2270 / 1734,
  27310. bottom: 86 / 2354
  27311. }
  27312. },
  27313. back: {
  27314. height: math.unit(6 + 7 / 12, "feet"),
  27315. weight: math.unit(250, "lb"),
  27316. name: "Back",
  27317. image: {
  27318. source: "./media/characters/nemoskii/back.svg",
  27319. extra: 1845 / 1788,
  27320. bottom: 10.5 / 1852
  27321. }
  27322. },
  27323. head: {
  27324. height: math.unit(1.31, "feet"),
  27325. name: "Head",
  27326. image: {
  27327. source: "./media/characters/nemoskii/head.svg"
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Micro",
  27334. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27335. },
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(6 + 7 / 12, "feet"),
  27339. default: true
  27340. },
  27341. {
  27342. name: "Macro",
  27343. height: math.unit((6 + 7 / 12) * 150, "feet")
  27344. },
  27345. {
  27346. name: "Macro+",
  27347. height: math.unit((6 + 7 / 12) * 500, "feet")
  27348. },
  27349. {
  27350. name: "Megamacro",
  27351. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27352. },
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27357. {
  27358. front: {
  27359. height: math.unit(1, "mile"),
  27360. weight: math.unit(265261.9, "lb"),
  27361. name: "Front",
  27362. image: {
  27363. source: "./media/characters/shui/front.svg",
  27364. extra: 1633 / 1564,
  27365. bottom: 91.5 / 1726
  27366. }
  27367. },
  27368. },
  27369. [
  27370. {
  27371. name: "Macro",
  27372. height: math.unit(1, "mile"),
  27373. default: true
  27374. },
  27375. ]
  27376. ))
  27377. characterMakers.push(() => makeCharacter(
  27378. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27379. {
  27380. front: {
  27381. height: math.unit(12 + 6 / 12, "feet"),
  27382. weight: math.unit(1342, "lb"),
  27383. name: "Front",
  27384. image: {
  27385. source: "./media/characters/arokh-takakura/front.svg",
  27386. extra: 1089 / 1043,
  27387. bottom: 77.4 / 1176.7
  27388. }
  27389. },
  27390. back: {
  27391. height: math.unit(12 + 6 / 12, "feet"),
  27392. weight: math.unit(1342, "lb"),
  27393. name: "Back",
  27394. image: {
  27395. source: "./media/characters/arokh-takakura/back.svg",
  27396. extra: 1046 / 1019,
  27397. bottom: 102 / 1150
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Big",
  27404. height: math.unit(12 + 6 / 12, "feet"),
  27405. default: true
  27406. },
  27407. ]
  27408. ))
  27409. characterMakers.push(() => makeCharacter(
  27410. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27411. {
  27412. front: {
  27413. height: math.unit(5 + 6 / 12, "feet"),
  27414. weight: math.unit(150, "lb"),
  27415. name: "Front",
  27416. image: {
  27417. source: "./media/characters/theo/front.svg",
  27418. extra: 1184 / 1131,
  27419. bottom: 7.4 / 1191
  27420. }
  27421. },
  27422. },
  27423. [
  27424. {
  27425. name: "Micro",
  27426. height: math.unit(5, "inches")
  27427. },
  27428. {
  27429. name: "Normal",
  27430. height: math.unit(5 + 6 / 12, "feet"),
  27431. default: true
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27437. {
  27438. front: {
  27439. height: math.unit(5 + 9 / 12, "feet"),
  27440. weight: math.unit(130, "lb"),
  27441. name: "Front",
  27442. image: {
  27443. source: "./media/characters/cecelia-swift/front.svg",
  27444. extra: 502 / 484,
  27445. bottom: 23 / 523
  27446. }
  27447. },
  27448. back: {
  27449. height: math.unit(5 + 9 / 12, "feet"),
  27450. weight: math.unit(130, "lb"),
  27451. name: "Back",
  27452. image: {
  27453. source: "./media/characters/cecelia-swift/back.svg",
  27454. extra: 499 / 485,
  27455. bottom: 12 / 511
  27456. }
  27457. },
  27458. head: {
  27459. height: math.unit(0.90, "feet"),
  27460. name: "Head",
  27461. image: {
  27462. source: "./media/characters/cecelia-swift/head.svg"
  27463. }
  27464. },
  27465. rump: {
  27466. height: math.unit(1.75, "feet"),
  27467. name: "Rump",
  27468. image: {
  27469. source: "./media/characters/cecelia-swift/rump.svg"
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(5 + 9 / 12, "feet"),
  27477. default: true
  27478. },
  27479. {
  27480. name: "Big",
  27481. height: math.unit(50, "feet")
  27482. },
  27483. {
  27484. name: "Macro",
  27485. height: math.unit(100, "feet")
  27486. },
  27487. {
  27488. name: "Macro+",
  27489. height: math.unit(500, "feet")
  27490. },
  27491. {
  27492. name: "Macro++",
  27493. height: math.unit(1000, "feet")
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(6, "feet"),
  27502. weight: math.unit(150, "lb"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/kaunan/front.svg",
  27506. extra: 2890 / 2523,
  27507. bottom: 49 / 2939
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Macro",
  27514. height: math.unit(150, "feet"),
  27515. default: true
  27516. },
  27517. ]
  27518. ))
  27519. characterMakers.push(() => makeCharacter(
  27520. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27521. {
  27522. front: {
  27523. height: math.unit(175, "cm"),
  27524. weight: math.unit(60, "kg"),
  27525. name: "Front",
  27526. image: {
  27527. source: "./media/characters/fei/front.svg",
  27528. extra: 1873/1723,
  27529. bottom: 53/1926
  27530. }
  27531. },
  27532. },
  27533. [
  27534. {
  27535. name: "Mortal",
  27536. height: math.unit(175, "cm")
  27537. },
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(3500, "m"),
  27541. default: true
  27542. },
  27543. {
  27544. name: "Stroll",
  27545. height: math.unit(17.5, "km")
  27546. },
  27547. {
  27548. name: "Showoff",
  27549. height: math.unit(175, "km")
  27550. },
  27551. ]
  27552. ))
  27553. characterMakers.push(() => makeCharacter(
  27554. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27555. {
  27556. front: {
  27557. height: math.unit(7, "feet"),
  27558. weight: math.unit(1000, "kg"),
  27559. name: "Front",
  27560. image: {
  27561. source: "./media/characters/edrax/front.svg",
  27562. extra: 2838 / 2550,
  27563. bottom: 130 / 2968
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Small",
  27570. height: math.unit(7, "feet")
  27571. },
  27572. {
  27573. name: "Normal",
  27574. height: math.unit(1500, "meters")
  27575. },
  27576. {
  27577. name: "Mega",
  27578. height: math.unit(12000000, "km"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Megamacro",
  27583. height: math.unit(10600000, "lightyears")
  27584. },
  27585. {
  27586. name: "Hypermacro",
  27587. height: math.unit(256, "yottameters")
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(10, "feet"),
  27596. weight: math.unit(750, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/clove/front.svg",
  27600. extra: 2031 / 1860,
  27601. bottom: 47.8 / 2080
  27602. }
  27603. },
  27604. back: {
  27605. height: math.unit(10, "feet"),
  27606. weight: math.unit(750, "lb"),
  27607. name: "Back",
  27608. image: {
  27609. source: "./media/characters/clove/back.svg",
  27610. extra: 2025 / 1859,
  27611. bottom: 46 / 2071
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(10, "feet"),
  27619. default: true
  27620. },
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27625. {
  27626. front: {
  27627. height: math.unit(4, "feet"),
  27628. weight: math.unit(50, "lb"),
  27629. name: "Front",
  27630. image: {
  27631. source: "./media/characters/alex-rabbit/front.svg",
  27632. extra: 507 / 458,
  27633. bottom: 18.5 / 527
  27634. }
  27635. },
  27636. back: {
  27637. height: math.unit(4, "feet"),
  27638. weight: math.unit(50, "lb"),
  27639. name: "Back",
  27640. image: {
  27641. source: "./media/characters/alex-rabbit/back.svg",
  27642. extra: 502 / 460,
  27643. bottom: 18.9 / 521
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(4, "feet"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(1 + 3 / 12, "feet"),
  27660. weight: math.unit(80, "lb"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/zander-rose/front.svg",
  27664. extra: 916 / 797,
  27665. bottom: 17 / 933
  27666. }
  27667. },
  27668. back: {
  27669. height: math.unit(1 + 3 / 12, "feet"),
  27670. weight: math.unit(80, "lb"),
  27671. name: "Back",
  27672. image: {
  27673. source: "./media/characters/zander-rose/back.svg",
  27674. extra: 903 / 779,
  27675. bottom: 31 / 934
  27676. }
  27677. },
  27678. },
  27679. [
  27680. {
  27681. name: "Normal",
  27682. height: math.unit(1 + 3 / 12, "feet"),
  27683. default: true
  27684. },
  27685. ]
  27686. ))
  27687. characterMakers.push(() => makeCharacter(
  27688. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27689. {
  27690. anthro: {
  27691. height: math.unit(6, "feet"),
  27692. weight: math.unit(150, "lb"),
  27693. name: "Anthro",
  27694. image: {
  27695. source: "./media/characters/razz/anthro.svg",
  27696. extra: 1437 / 1343,
  27697. bottom: 48 / 1485
  27698. }
  27699. },
  27700. feral: {
  27701. height: math.unit(6, "feet"),
  27702. weight: math.unit(150, "lb"),
  27703. name: "Feral",
  27704. image: {
  27705. source: "./media/characters/razz/feral.svg",
  27706. extra: 2569 / 1385,
  27707. bottom: 95 / 2664
  27708. }
  27709. },
  27710. },
  27711. [
  27712. {
  27713. name: "Normal",
  27714. height: math.unit(6, "feet"),
  27715. default: true
  27716. },
  27717. ]
  27718. ))
  27719. characterMakers.push(() => makeCharacter(
  27720. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27721. {
  27722. front: {
  27723. height: math.unit(9 + 4 / 12, "feet"),
  27724. weight: math.unit(500, "lb"),
  27725. name: "Front",
  27726. image: {
  27727. source: "./media/characters/morrigan/front.svg",
  27728. extra: 2707 / 2579,
  27729. bottom: 156 / 2863
  27730. }
  27731. },
  27732. },
  27733. [
  27734. {
  27735. name: "Normal",
  27736. height: math.unit(9 + 4 / 12, "feet"),
  27737. default: true
  27738. },
  27739. ]
  27740. ))
  27741. characterMakers.push(() => makeCharacter(
  27742. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27743. {
  27744. front: {
  27745. height: math.unit(5, "stories"),
  27746. weight: math.unit(4000, "lb"),
  27747. name: "Front",
  27748. image: {
  27749. source: "./media/characters/jenene/front.svg",
  27750. extra: 1780 / 1710,
  27751. bottom: 57 / 1837
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Normal",
  27758. height: math.unit(5, "stories"),
  27759. default: true
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27765. {
  27766. taurSfw: {
  27767. height: math.unit(10, "meters"),
  27768. weight: math.unit(17500, "kg"),
  27769. name: "Taur",
  27770. image: {
  27771. source: "./media/characters/faey/taur-sfw.svg",
  27772. extra: 1200 / 968,
  27773. bottom: 41 / 1241
  27774. }
  27775. },
  27776. chestmaw: {
  27777. height: math.unit(2.01, "meters"),
  27778. name: "Chestmaw",
  27779. image: {
  27780. source: "./media/characters/faey/chestmaw.svg"
  27781. }
  27782. },
  27783. foot: {
  27784. height: math.unit(2.43, "meters"),
  27785. name: "Foot",
  27786. image: {
  27787. source: "./media/characters/faey/foot.svg"
  27788. }
  27789. },
  27790. jaws: {
  27791. height: math.unit(1.66, "meters"),
  27792. name: "Jaws",
  27793. image: {
  27794. source: "./media/characters/faey/jaws.svg"
  27795. }
  27796. },
  27797. tongues: {
  27798. height: math.unit(2.01, "meters"),
  27799. name: "Tongues",
  27800. image: {
  27801. source: "./media/characters/faey/tongues.svg"
  27802. }
  27803. },
  27804. },
  27805. [
  27806. {
  27807. name: "Small",
  27808. height: math.unit(10, "meters"),
  27809. default: true
  27810. },
  27811. {
  27812. name: "Big",
  27813. height: math.unit(500000, "km")
  27814. },
  27815. ]
  27816. ))
  27817. characterMakers.push(() => makeCharacter(
  27818. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27819. {
  27820. front: {
  27821. height: math.unit(7, "feet"),
  27822. weight: math.unit(275, "lb"),
  27823. name: "Front",
  27824. image: {
  27825. source: "./media/characters/roku/front.svg",
  27826. extra: 903 / 878,
  27827. bottom: 37 / 940
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(7, "feet"),
  27835. default: true
  27836. },
  27837. {
  27838. name: "Macro",
  27839. height: math.unit(500, "feet")
  27840. },
  27841. {
  27842. name: "Megamacro",
  27843. height: math.unit(200, "miles")
  27844. },
  27845. ]
  27846. ))
  27847. characterMakers.push(() => makeCharacter(
  27848. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27849. {
  27850. front: {
  27851. height: math.unit(6 + 2 / 12, "feet"),
  27852. weight: math.unit(150, "lb"),
  27853. name: "Front",
  27854. image: {
  27855. source: "./media/characters/lira/front.svg",
  27856. extra: 1727 / 1605,
  27857. bottom: 26 / 1753
  27858. }
  27859. },
  27860. back: {
  27861. height: math.unit(6 + 2 / 12, "feet"),
  27862. weight: math.unit(150, "lb"),
  27863. name: "Back",
  27864. image: {
  27865. source: "./media/characters/lira/back.svg",
  27866. extra: 1713/1621,
  27867. bottom: 20/1733
  27868. }
  27869. },
  27870. hand: {
  27871. height: math.unit(0.75, "feet"),
  27872. name: "Hand",
  27873. image: {
  27874. source: "./media/characters/lira/hand.svg"
  27875. }
  27876. },
  27877. maw: {
  27878. height: math.unit(0.65, "feet"),
  27879. name: "Maw",
  27880. image: {
  27881. source: "./media/characters/lira/maw.svg"
  27882. }
  27883. },
  27884. pawDigi: {
  27885. height: math.unit(1.6, "feet"),
  27886. name: "Paw Digi",
  27887. image: {
  27888. source: "./media/characters/lira/paw-digi.svg"
  27889. }
  27890. },
  27891. pawPlanti: {
  27892. height: math.unit(1.4, "feet"),
  27893. name: "Paw Planti",
  27894. image: {
  27895. source: "./media/characters/lira/paw-planti.svg"
  27896. }
  27897. },
  27898. },
  27899. [
  27900. {
  27901. name: "Normal",
  27902. height: math.unit(6 + 2 / 12, "feet"),
  27903. default: true
  27904. },
  27905. {
  27906. name: "Macro",
  27907. height: math.unit(100, "feet")
  27908. },
  27909. {
  27910. name: "Macro²",
  27911. height: math.unit(1600, "feet")
  27912. },
  27913. {
  27914. name: "Planetary",
  27915. height: math.unit(20, "earths")
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27921. {
  27922. front: {
  27923. height: math.unit(6, "feet"),
  27924. weight: math.unit(150, "lb"),
  27925. name: "Front",
  27926. image: {
  27927. source: "./media/characters/hadjet/front.svg",
  27928. extra: 1480 / 1346,
  27929. bottom: 26 / 1506
  27930. }
  27931. },
  27932. frontNsfw: {
  27933. height: math.unit(6, "feet"),
  27934. weight: math.unit(150, "lb"),
  27935. name: "Front (NSFW)",
  27936. image: {
  27937. source: "./media/characters/hadjet/front-nsfw.svg",
  27938. extra: 1440 / 1358,
  27939. bottom: 52 / 1492
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Macro",
  27946. height: math.unit(10, "stories"),
  27947. default: true
  27948. },
  27949. {
  27950. name: "Megamacro",
  27951. height: math.unit(1.5, "miles")
  27952. },
  27953. {
  27954. name: "Megamacro+",
  27955. height: math.unit(5, "miles")
  27956. },
  27957. ]
  27958. ))
  27959. characterMakers.push(() => makeCharacter(
  27960. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27961. {
  27962. side: {
  27963. height: math.unit(106, "feet"),
  27964. weight: math.unit(500, "tonnes"),
  27965. name: "Side",
  27966. image: {
  27967. source: "./media/characters/kodran/side.svg",
  27968. extra: 553 / 480,
  27969. bottom: 33 / 586
  27970. }
  27971. },
  27972. front: {
  27973. height: math.unit(132, "feet"),
  27974. weight: math.unit(500, "tonnes"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/kodran/front.svg",
  27978. extra: 667 / 643,
  27979. bottom: 42 / 709
  27980. }
  27981. },
  27982. flying: {
  27983. height: math.unit(350, "feet"),
  27984. weight: math.unit(500, "tonnes"),
  27985. name: "Flying",
  27986. image: {
  27987. source: "./media/characters/kodran/flying.svg"
  27988. }
  27989. },
  27990. foot: {
  27991. height: math.unit(33, "feet"),
  27992. name: "Foot",
  27993. image: {
  27994. source: "./media/characters/kodran/foot.svg"
  27995. }
  27996. },
  27997. footFront: {
  27998. height: math.unit(19, "feet"),
  27999. name: "Foot (Front)",
  28000. image: {
  28001. source: "./media/characters/kodran/foot-front.svg",
  28002. extra: 261 / 261,
  28003. bottom: 91 / 352
  28004. }
  28005. },
  28006. headFront: {
  28007. height: math.unit(53, "feet"),
  28008. name: "Head (Front)",
  28009. image: {
  28010. source: "./media/characters/kodran/head-front.svg"
  28011. }
  28012. },
  28013. headSide: {
  28014. height: math.unit(65, "feet"),
  28015. name: "Head (Side)",
  28016. image: {
  28017. source: "./media/characters/kodran/head-side.svg"
  28018. }
  28019. },
  28020. throat: {
  28021. height: math.unit(79, "feet"),
  28022. name: "Throat",
  28023. image: {
  28024. source: "./media/characters/kodran/throat.svg"
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Large",
  28031. height: math.unit(106, "feet"),
  28032. default: true
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28038. {
  28039. side: {
  28040. height: math.unit(11, "feet"),
  28041. weight: math.unit(150, "lb"),
  28042. name: "Side",
  28043. image: {
  28044. source: "./media/characters/pyxaron/side.svg",
  28045. extra: 305 / 195,
  28046. bottom: 17 / 322
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Normal",
  28053. height: math.unit(11, "feet"),
  28054. default: true
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(6, "feet"),
  28063. weight: math.unit(150, "lb"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/meep/front.svg",
  28067. extra: 88 / 80,
  28068. bottom: 6 / 94
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Fun Sized",
  28075. height: math.unit(2, "inches"),
  28076. default: true
  28077. },
  28078. {
  28079. name: "Friend Sized",
  28080. height: math.unit(8, "inches")
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28086. {
  28087. front: {
  28088. height: math.unit(15, "feet"),
  28089. weight: math.unit(2500, "lb"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/holly-rabbit/front.svg",
  28093. extra: 1433 / 1233,
  28094. bottom: 125 / 1558
  28095. }
  28096. },
  28097. dick: {
  28098. height: math.unit(4.6, "feet"),
  28099. name: "Dick",
  28100. image: {
  28101. source: "./media/characters/holly-rabbit/dick.svg"
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(15, "feet"),
  28109. default: true
  28110. },
  28111. {
  28112. name: "Macro",
  28113. height: math.unit(250, "feet")
  28114. },
  28115. {
  28116. name: "Macro+",
  28117. height: math.unit(2500, "feet")
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28123. {
  28124. front: {
  28125. height: math.unit(3.02, "meters"),
  28126. weight: math.unit(500, "kg"),
  28127. name: "Front",
  28128. image: {
  28129. source: "./media/characters/drena/front.svg",
  28130. extra: 282 / 243,
  28131. bottom: 8 / 290
  28132. }
  28133. },
  28134. side: {
  28135. height: math.unit(3.02, "meters"),
  28136. weight: math.unit(500, "kg"),
  28137. name: "Side",
  28138. image: {
  28139. source: "./media/characters/drena/side.svg",
  28140. extra: 280 / 245,
  28141. bottom: 10 / 290
  28142. }
  28143. },
  28144. back: {
  28145. height: math.unit(3.02, "meters"),
  28146. weight: math.unit(500, "kg"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/drena/back.svg",
  28150. extra: 278 / 243,
  28151. bottom: 2 / 280
  28152. }
  28153. },
  28154. foot: {
  28155. height: math.unit(0.75, "meters"),
  28156. name: "Foot",
  28157. image: {
  28158. source: "./media/characters/drena/foot.svg"
  28159. }
  28160. },
  28161. maw: {
  28162. height: math.unit(0.82, "meters"),
  28163. name: "Maw",
  28164. image: {
  28165. source: "./media/characters/drena/maw.svg"
  28166. }
  28167. },
  28168. rump: {
  28169. height: math.unit(0.93, "meters"),
  28170. name: "Rump",
  28171. image: {
  28172. source: "./media/characters/drena/rump.svg"
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Normal",
  28179. height: math.unit(3.02, "meters"),
  28180. default: true
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28186. {
  28187. front: {
  28188. height: math.unit(6 + 4 / 12, "feet"),
  28189. weight: math.unit(250, "lb"),
  28190. name: "Front",
  28191. image: {
  28192. source: "./media/characters/remmyzilla/front.svg",
  28193. extra: 4033 / 3588,
  28194. bottom: 123 / 4156
  28195. }
  28196. },
  28197. back: {
  28198. height: math.unit(6 + 4 / 12, "feet"),
  28199. weight: math.unit(250, "lb"),
  28200. name: "Back",
  28201. image: {
  28202. source: "./media/characters/remmyzilla/back.svg",
  28203. extra: 2687 / 2555,
  28204. bottom: 48 / 2735
  28205. }
  28206. },
  28207. paw: {
  28208. height: math.unit(1.73, "feet"),
  28209. name: "Paw",
  28210. image: {
  28211. source: "./media/characters/remmyzilla/paw.svg"
  28212. }
  28213. },
  28214. maw: {
  28215. height: math.unit(1.73, "feet"),
  28216. name: "Maw",
  28217. image: {
  28218. source: "./media/characters/remmyzilla/maw.svg"
  28219. }
  28220. },
  28221. },
  28222. [
  28223. {
  28224. name: "Normal",
  28225. height: math.unit(6 + 4 / 12, "feet")
  28226. },
  28227. {
  28228. name: "Minimacro",
  28229. height: math.unit(12 + 8 / 12, "feet")
  28230. },
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(640, "feet"),
  28234. default: true
  28235. },
  28236. {
  28237. name: "Megamacro",
  28238. height: math.unit(6400, "feet")
  28239. },
  28240. {
  28241. name: "Gigamacro",
  28242. height: math.unit(64000, "miles")
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28248. {
  28249. front: {
  28250. height: math.unit(2.5, "meters"),
  28251. weight: math.unit(300, "lb"),
  28252. name: "Front",
  28253. image: {
  28254. source: "./media/characters/lawrence/front.svg",
  28255. extra: 357 / 335,
  28256. bottom: 30 / 387
  28257. }
  28258. },
  28259. back: {
  28260. height: math.unit(2.5, "meters"),
  28261. weight: math.unit(300, "lb"),
  28262. name: "Back",
  28263. image: {
  28264. source: "./media/characters/lawrence/back.svg",
  28265. extra: 357 / 338,
  28266. bottom: 16 / 373
  28267. }
  28268. },
  28269. head: {
  28270. height: math.unit(0.9, "meter"),
  28271. name: "Head",
  28272. image: {
  28273. source: "./media/characters/lawrence/head.svg"
  28274. }
  28275. },
  28276. maw: {
  28277. height: math.unit(0.7, "meter"),
  28278. name: "Maw",
  28279. image: {
  28280. source: "./media/characters/lawrence/maw.svg"
  28281. }
  28282. },
  28283. footBottom: {
  28284. height: math.unit(0.5, "meter"),
  28285. name: "Foot (Bottom)",
  28286. image: {
  28287. source: "./media/characters/lawrence/foot-bottom.svg"
  28288. }
  28289. },
  28290. footTop: {
  28291. height: math.unit(0.5, "meter"),
  28292. name: "Foot (Top)",
  28293. image: {
  28294. source: "./media/characters/lawrence/foot-top.svg"
  28295. }
  28296. },
  28297. },
  28298. [
  28299. {
  28300. name: "Normal",
  28301. height: math.unit(2.5, "meters"),
  28302. default: true
  28303. },
  28304. {
  28305. name: "Macro",
  28306. height: math.unit(95, "meters")
  28307. },
  28308. {
  28309. name: "Megamacro",
  28310. height: math.unit(150, "km")
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28316. {
  28317. front: {
  28318. height: math.unit(4.2, "meters"),
  28319. name: "Front",
  28320. image: {
  28321. source: "./media/characters/sydney/front.svg",
  28322. extra: 1323 / 1277,
  28323. bottom: 111 / 1434
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(4.2, "meters"),
  28331. default: true
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28337. {
  28338. back: {
  28339. height: math.unit(201, "feet"),
  28340. name: "Back",
  28341. image: {
  28342. source: "./media/characters/jessica/back.svg",
  28343. extra: 273 / 259,
  28344. bottom: 7 / 280
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(201, "feet"),
  28352. default: true
  28353. },
  28354. {
  28355. name: "Megamacro",
  28356. height: math.unit(8, "miles")
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28362. {
  28363. side: {
  28364. height: math.unit(320, "cm"),
  28365. name: "Side",
  28366. image: {
  28367. source: "./media/characters/victoria/side.svg",
  28368. extra: 778 / 346,
  28369. bottom: 56 / 834
  28370. }
  28371. },
  28372. maw: {
  28373. height: math.unit(5.9, "feet"),
  28374. name: "Maw",
  28375. image: {
  28376. source: "./media/characters/victoria/maw.svg"
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(320, "cm"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28390. {
  28391. front: {
  28392. height: math.unit(5 + 6 / 12, "feet"),
  28393. name: "Front",
  28394. image: {
  28395. source: "./media/characters/cat/front.svg",
  28396. extra: 1449/1295,
  28397. bottom: 34/1483
  28398. }
  28399. },
  28400. back: {
  28401. height: math.unit(5 + 6 / 12, "feet"),
  28402. name: "Back",
  28403. image: {
  28404. source: "./media/characters/cat/back.svg",
  28405. extra: 1466/1301,
  28406. bottom: 19/1485
  28407. }
  28408. },
  28409. taur: {
  28410. height: math.unit(7, "feet"),
  28411. name: "Taur",
  28412. image: {
  28413. source: "./media/characters/cat/taur.svg",
  28414. extra: 1389/1233,
  28415. bottom: 83/1472
  28416. }
  28417. },
  28418. lucarioFront: {
  28419. height: math.unit(4, "feet"),
  28420. name: "Lucario (Front)",
  28421. image: {
  28422. source: "./media/characters/cat/lucario-front.svg",
  28423. extra: 1149/1019,
  28424. bottom: 84/1233
  28425. }
  28426. },
  28427. lucarioBack: {
  28428. height: math.unit(4, "feet"),
  28429. name: "Lucario (Back)",
  28430. image: {
  28431. source: "./media/characters/cat/lucario-back.svg",
  28432. extra: 1190/1059,
  28433. bottom: 33/1223
  28434. }
  28435. },
  28436. megaLucario: {
  28437. height: math.unit(4, "feet"),
  28438. name: "Mega Lucario",
  28439. image: {
  28440. source: "./media/characters/cat/mega-lucario.svg",
  28441. extra: 1515 / 1319,
  28442. bottom: 63 / 1578
  28443. }
  28444. },
  28445. nickit: {
  28446. height: math.unit(2, "feet"),
  28447. name: "Nickit",
  28448. image: {
  28449. source: "./media/characters/cat/nickit.svg",
  28450. extra: 1980 / 1585,
  28451. bottom: 102 / 2082
  28452. }
  28453. },
  28454. lopunnyFront: {
  28455. height: math.unit(5, "feet"),
  28456. name: "Lopunny (Front)",
  28457. image: {
  28458. source: "./media/characters/cat/lopunny-front.svg",
  28459. extra: 1782 / 1469,
  28460. bottom: 38 / 1820
  28461. }
  28462. },
  28463. lopunnyBack: {
  28464. height: math.unit(5, "feet"),
  28465. name: "Lopunny (Back)",
  28466. image: {
  28467. source: "./media/characters/cat/lopunny-back.svg",
  28468. extra: 1660 / 1490,
  28469. bottom: 25 / 1685
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Really small",
  28476. height: math.unit(1, "nm")
  28477. },
  28478. {
  28479. name: "Micro",
  28480. height: math.unit(5, "inches")
  28481. },
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(5 + 6 / 12, "feet"),
  28485. default: true
  28486. },
  28487. {
  28488. name: "Macro",
  28489. height: math.unit(50, "feet")
  28490. },
  28491. {
  28492. name: "Macro+",
  28493. height: math.unit(150, "feet")
  28494. },
  28495. {
  28496. name: "Megamacro",
  28497. height: math.unit(100, "miles")
  28498. },
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28503. {
  28504. front: {
  28505. height: math.unit(63.4, "meters"),
  28506. weight: math.unit(3.28349e+6, "kilograms"),
  28507. name: "Front",
  28508. image: {
  28509. source: "./media/characters/kirina-violet/front.svg",
  28510. extra: 2812 / 2725,
  28511. bottom: 0 / 2812
  28512. }
  28513. },
  28514. back: {
  28515. height: math.unit(63.4, "meters"),
  28516. weight: math.unit(3.28349e+6, "kilograms"),
  28517. name: "Back",
  28518. image: {
  28519. source: "./media/characters/kirina-violet/back.svg",
  28520. extra: 2812 / 2725,
  28521. bottom: 0 / 2812
  28522. }
  28523. },
  28524. mouth: {
  28525. height: math.unit(4.35, "meters"),
  28526. name: "Mouth",
  28527. image: {
  28528. source: "./media/characters/kirina-violet/mouth.svg"
  28529. }
  28530. },
  28531. paw: {
  28532. height: math.unit(5.6, "meters"),
  28533. name: "Paw",
  28534. image: {
  28535. source: "./media/characters/kirina-violet/paw.svg"
  28536. }
  28537. },
  28538. tail: {
  28539. height: math.unit(18, "meters"),
  28540. name: "Tail",
  28541. image: {
  28542. source: "./media/characters/kirina-violet/tail.svg"
  28543. }
  28544. },
  28545. },
  28546. [
  28547. {
  28548. name: "Macro",
  28549. height: math.unit(63.4, "meters"),
  28550. default: true
  28551. },
  28552. ]
  28553. ))
  28554. characterMakers.push(() => makeCharacter(
  28555. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28556. {
  28557. front: {
  28558. height: math.unit(75, "feet"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/cat-gigachu/front.svg",
  28562. extra: 1239/1027,
  28563. bottom: 32/1271
  28564. }
  28565. },
  28566. back: {
  28567. height: math.unit(75, "feet"),
  28568. name: "Back",
  28569. image: {
  28570. source: "./media/characters/cat-gigachu/back.svg",
  28571. extra: 1229/1030,
  28572. bottom: 9/1238
  28573. }
  28574. },
  28575. },
  28576. [
  28577. {
  28578. name: "Dynamax",
  28579. height: math.unit(75, "feet"),
  28580. default: true
  28581. },
  28582. ]
  28583. ))
  28584. characterMakers.push(() => makeCharacter(
  28585. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28586. {
  28587. front: {
  28588. height: math.unit(6, "feet"),
  28589. weight: math.unit(150, "lb"),
  28590. name: "Front",
  28591. image: {
  28592. source: "./media/characters/sfaiyan/front.svg",
  28593. extra: 999 / 978,
  28594. bottom: 5 / 1004
  28595. }
  28596. },
  28597. },
  28598. [
  28599. {
  28600. name: "Normal",
  28601. height: math.unit(1.82, "meters")
  28602. },
  28603. {
  28604. name: "Giant",
  28605. height: math.unit(2.27, "km"),
  28606. default: true
  28607. },
  28608. ]
  28609. ))
  28610. characterMakers.push(() => makeCharacter(
  28611. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28612. {
  28613. front: {
  28614. height: math.unit(179, "cm"),
  28615. weight: math.unit(100, "kg"),
  28616. name: "Front",
  28617. image: {
  28618. source: "./media/characters/raunehkeli/front.svg",
  28619. extra: 1934 / 1926,
  28620. bottom: 0 / 1934
  28621. }
  28622. },
  28623. },
  28624. [
  28625. {
  28626. name: "Normal",
  28627. height: math.unit(179, "cm")
  28628. },
  28629. {
  28630. name: "Maximum",
  28631. height: math.unit(575, "meters"),
  28632. default: true
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28638. {
  28639. front: {
  28640. height: math.unit(6, "feet"),
  28641. weight: math.unit(150, "lb"),
  28642. name: "Front",
  28643. image: {
  28644. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28645. extra: 2625 / 2518,
  28646. bottom: 60 / 2685
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(6 + 2 / 12, "feet")
  28654. },
  28655. {
  28656. name: "Macro",
  28657. height: math.unit(1180, "feet"),
  28658. default: true
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(5 + 6 / 12, "feet"),
  28667. weight: math.unit(108, "lb"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/lilith-zott/front.svg",
  28671. extra: 2510 / 2238,
  28672. bottom: 100 / 2610
  28673. }
  28674. },
  28675. frontDressed: {
  28676. height: math.unit(5 + 6 / 12, "feet"),
  28677. weight: math.unit(108, "lb"),
  28678. name: "Front (Dressed)",
  28679. image: {
  28680. source: "./media/characters/lilith-zott/front-dressed.svg",
  28681. extra: 2510 / 2238,
  28682. bottom: 100 / 2610
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Normal",
  28689. height: math.unit(5 + 6 / 12, "feet")
  28690. },
  28691. {
  28692. name: "Macro",
  28693. height: math.unit(1030, "feet"),
  28694. default: true
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(6, "feet"),
  28703. weight: math.unit(150, "lb"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28707. extra: 2567 / 2435,
  28708. bottom: 39 / 2606
  28709. }
  28710. },
  28711. frontSuper: {
  28712. height: math.unit(6, "feet"),
  28713. name: "Front (Super)",
  28714. image: {
  28715. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28716. extra: 2567 / 2435,
  28717. bottom: 39 / 2606
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(5 + 10 / 12, "feet")
  28725. },
  28726. {
  28727. name: "Macro",
  28728. height: math.unit(1100, "feet"),
  28729. default: true
  28730. },
  28731. ]
  28732. ))
  28733. characterMakers.push(() => makeCharacter(
  28734. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28735. {
  28736. front: {
  28737. height: math.unit(100, "miles"),
  28738. name: "Front",
  28739. image: {
  28740. source: "./media/characters/sona/front.svg",
  28741. extra: 2433 / 2201,
  28742. bottom: 53 / 2486
  28743. }
  28744. },
  28745. foot: {
  28746. height: math.unit(16.1, "miles"),
  28747. name: "Foot",
  28748. image: {
  28749. source: "./media/characters/sona/foot.svg"
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Macro",
  28756. height: math.unit(100, "miles"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(6, "feet"),
  28766. weight: math.unit(150, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/bailey/front.svg",
  28770. extra: 1778 / 1724,
  28771. bottom: 30 / 1808
  28772. }
  28773. },
  28774. },
  28775. [
  28776. {
  28777. name: "Micro",
  28778. height: math.unit(4, "inches")
  28779. },
  28780. {
  28781. name: "Normal",
  28782. height: math.unit(5 + 5 / 12, "feet"),
  28783. default: true
  28784. },
  28785. {
  28786. name: "Macro",
  28787. height: math.unit(250, "feet")
  28788. },
  28789. {
  28790. name: "Megamacro",
  28791. height: math.unit(100, "miles")
  28792. },
  28793. ]
  28794. ))
  28795. characterMakers.push(() => makeCharacter(
  28796. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28797. {
  28798. front: {
  28799. height: math.unit(5 + 2 / 12, "feet"),
  28800. weight: math.unit(120, "lb"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/snaps/front.svg",
  28804. extra: 2370 / 2177,
  28805. bottom: 48 / 2418
  28806. }
  28807. },
  28808. back: {
  28809. height: math.unit(5 + 2 / 12, "feet"),
  28810. weight: math.unit(120, "lb"),
  28811. name: "Back",
  28812. image: {
  28813. source: "./media/characters/snaps/back.svg",
  28814. extra: 2408 / 2258,
  28815. bottom: 15 / 2423
  28816. }
  28817. },
  28818. },
  28819. [
  28820. {
  28821. name: "Micro",
  28822. height: math.unit(9, "inches")
  28823. },
  28824. {
  28825. name: "Normal",
  28826. height: math.unit(5 + 2 / 12, "feet"),
  28827. default: true
  28828. },
  28829. {
  28830. name: "Mini Macro",
  28831. height: math.unit(10, "feet")
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28837. {
  28838. front: {
  28839. height: math.unit(1.8, "meters"),
  28840. weight: math.unit(85, "kg"),
  28841. name: "Front",
  28842. image: {
  28843. source: "./media/characters/azteck/front.svg",
  28844. extra: 2815 / 2625,
  28845. bottom: 89 / 2904
  28846. }
  28847. },
  28848. back: {
  28849. height: math.unit(1.8, "meters"),
  28850. weight: math.unit(85, "kg"),
  28851. name: "Back",
  28852. image: {
  28853. source: "./media/characters/azteck/back.svg",
  28854. extra: 2856 / 2648,
  28855. bottom: 85 / 2941
  28856. }
  28857. },
  28858. frontDressed: {
  28859. height: math.unit(1.8, "meters"),
  28860. weight: math.unit(85, "kg"),
  28861. name: "Front (Dressed)",
  28862. image: {
  28863. source: "./media/characters/azteck/front-dressed.svg",
  28864. extra: 2147 / 2003,
  28865. bottom: 68 / 2215
  28866. }
  28867. },
  28868. head: {
  28869. height: math.unit(0.47, "meters"),
  28870. weight: math.unit(85, "kg"),
  28871. name: "Head",
  28872. image: {
  28873. source: "./media/characters/azteck/head.svg"
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Bite sized",
  28880. height: math.unit(16, "cm")
  28881. },
  28882. {
  28883. name: "Normal",
  28884. height: math.unit(1.8, "meters"),
  28885. default: true
  28886. },
  28887. ]
  28888. ))
  28889. characterMakers.push(() => makeCharacter(
  28890. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28891. {
  28892. front: {
  28893. height: math.unit(6, "feet"),
  28894. weight: math.unit(150, "lb"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/pidge/front.svg",
  28898. extra: 620 / 588,
  28899. bottom: 9 / 629
  28900. }
  28901. },
  28902. back: {
  28903. height: math.unit(6, "feet"),
  28904. weight: math.unit(150, "lb"),
  28905. name: "Back",
  28906. image: {
  28907. source: "./media/characters/pidge/back.svg",
  28908. extra: 620 / 588,
  28909. bottom: 9 / 629
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Macro",
  28916. height: math.unit(1, "mile"),
  28917. default: true
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(6, "feet"),
  28926. weight: math.unit(150, "lb"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/en/front.svg",
  28930. extra: 1697 / 1563,
  28931. bottom: 103 / 1800
  28932. }
  28933. },
  28934. back: {
  28935. height: math.unit(6, "feet"),
  28936. weight: math.unit(150, "lb"),
  28937. name: "Back",
  28938. image: {
  28939. source: "./media/characters/en/back.svg",
  28940. extra: 1700 / 1570,
  28941. bottom: 51 / 1751
  28942. }
  28943. },
  28944. frontDressed: {
  28945. height: math.unit(6, "feet"),
  28946. weight: math.unit(150, "lb"),
  28947. name: "Front (Dressed)",
  28948. image: {
  28949. source: "./media/characters/en/front-dressed.svg",
  28950. extra: 1697 / 1563,
  28951. bottom: 103 / 1800
  28952. }
  28953. },
  28954. backDressed: {
  28955. height: math.unit(6, "feet"),
  28956. weight: math.unit(150, "lb"),
  28957. name: "Back (Dressed)",
  28958. image: {
  28959. source: "./media/characters/en/back-dressed.svg",
  28960. extra: 1700 / 1570,
  28961. bottom: 51 / 1751
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Macro",
  28968. height: math.unit(210, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(6, "feet"),
  28978. weight: math.unit(150, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/haze-orris/front.svg",
  28982. extra: 3975 / 3525,
  28983. bottom: 137 / 4112
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Micro",
  28990. height: math.unit(150, "mm"),
  28991. default: true
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(6, "feet"),
  29000. weight: math.unit(150, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/casselene-yaro/front.svg",
  29004. extra: 4721 / 4541,
  29005. bottom: 82 / 4803
  29006. }
  29007. },
  29008. back: {
  29009. height: math.unit(6, "feet"),
  29010. weight: math.unit(150, "lb"),
  29011. name: "Back",
  29012. image: {
  29013. source: "./media/characters/casselene-yaro/back.svg",
  29014. extra: 4569 / 4377,
  29015. bottom: 69 / 4638
  29016. }
  29017. },
  29018. frontDressed: {
  29019. height: math.unit(6, "feet"),
  29020. weight: math.unit(150, "lb"),
  29021. name: "Front-dressed",
  29022. image: {
  29023. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29024. extra: 4721 / 4541,
  29025. bottom: 82 / 4803
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Macro",
  29032. height: math.unit(190, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(6, "feet"),
  29042. weight: math.unit(150, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/myra-rue-delore/front.svg",
  29046. extra: 1340 / 1308,
  29047. bottom: 67 / 1407
  29048. }
  29049. },
  29050. back: {
  29051. height: math.unit(6, "feet"),
  29052. weight: math.unit(150, "lb"),
  29053. name: "Back",
  29054. image: {
  29055. source: "./media/characters/myra-rue-delore/back.svg",
  29056. extra: 1341 / 1310,
  29057. bottom: 40 / 1381
  29058. }
  29059. },
  29060. frontDressed: {
  29061. height: math.unit(6, "feet"),
  29062. weight: math.unit(150, "lb"),
  29063. name: "Front (Dressed)",
  29064. image: {
  29065. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29066. extra: 1340 / 1308,
  29067. bottom: 67 / 1407
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Macro",
  29074. height: math.unit(150, "feet"),
  29075. default: true
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(10, "feet"),
  29084. weight: math.unit(15015, "lb"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/fem!plat/front.svg",
  29088. extra: 2799 / 2604,
  29089. bottom: 149 / 2948
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(10, "feet"),
  29097. default: true
  29098. },
  29099. {
  29100. name: "Macro",
  29101. height: math.unit(100, "feet")
  29102. },
  29103. {
  29104. name: "Megamacro",
  29105. height: math.unit(1000, "feet")
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29111. {
  29112. front: {
  29113. height: math.unit(15 + 5 / 12, "feet"),
  29114. weight: math.unit(4600, "lb"),
  29115. name: "Front",
  29116. image: {
  29117. source: "./media/characters/neapolitan-ananassa/front.svg",
  29118. extra: 2903 / 2736,
  29119. bottom: 0 / 2903
  29120. }
  29121. },
  29122. side: {
  29123. height: math.unit(15 + 5 / 12, "feet"),
  29124. weight: math.unit(4600, "lb"),
  29125. name: "Side",
  29126. image: {
  29127. source: "./media/characters/neapolitan-ananassa/side.svg",
  29128. extra: 2925 / 2719,
  29129. bottom: 0 / 2925
  29130. }
  29131. },
  29132. back: {
  29133. height: math.unit(15 + 5 / 12, "feet"),
  29134. weight: math.unit(4600, "lb"),
  29135. name: "Back",
  29136. image: {
  29137. source: "./media/characters/neapolitan-ananassa/back.svg",
  29138. extra: 2903 / 2736,
  29139. bottom: 0 / 2903
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(15 + 5 / 12, "feet"),
  29147. default: true
  29148. },
  29149. {
  29150. name: "Post-Millenium",
  29151. height: math.unit(35 + 5 / 12, "feet")
  29152. },
  29153. {
  29154. name: "Post-Era",
  29155. height: math.unit(450 + 5 / 12, "feet")
  29156. },
  29157. ]
  29158. ))
  29159. characterMakers.push(() => makeCharacter(
  29160. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29161. {
  29162. front: {
  29163. height: math.unit(300, "meters"),
  29164. weight: math.unit(125000, "tonnes"),
  29165. name: "Front",
  29166. image: {
  29167. source: "./media/characters/pazuzu/front.svg",
  29168. extra: 877 / 794,
  29169. bottom: 47 / 924
  29170. }
  29171. },
  29172. },
  29173. [
  29174. {
  29175. name: "Macro",
  29176. height: math.unit(300, "meters"),
  29177. default: true
  29178. },
  29179. ]
  29180. ))
  29181. characterMakers.push(() => makeCharacter(
  29182. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29183. {
  29184. side: {
  29185. height: math.unit(10 + 7 / 12, "feet"),
  29186. weight: math.unit(2.5, "tons"),
  29187. name: "Side",
  29188. image: {
  29189. source: "./media/characters/aasha/side.svg",
  29190. extra: 1345 / 1245,
  29191. bottom: 111 / 1456
  29192. }
  29193. },
  29194. back: {
  29195. height: math.unit(10 + 7 / 12, "feet"),
  29196. weight: math.unit(2.5, "tons"),
  29197. name: "Back",
  29198. image: {
  29199. source: "./media/characters/aasha/back.svg",
  29200. extra: 1133 / 1057,
  29201. bottom: 257 / 1390
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Normal",
  29208. height: math.unit(10 + 7 / 12, "feet"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(6 + 3 / 12, "feet"),
  29218. name: "Front",
  29219. image: {
  29220. source: "./media/characters/nevan/front.svg",
  29221. extra: 704 / 704,
  29222. bottom: 28 / 732
  29223. }
  29224. },
  29225. back: {
  29226. height: math.unit(6 + 3 / 12, "feet"),
  29227. name: "Back",
  29228. image: {
  29229. source: "./media/characters/nevan/back.svg",
  29230. extra: 714 / 714,
  29231. bottom: 21 / 735
  29232. }
  29233. },
  29234. frontFlaccid: {
  29235. height: math.unit(6 + 3 / 12, "feet"),
  29236. name: "Front (Flaccid)",
  29237. image: {
  29238. source: "./media/characters/nevan/front-flaccid.svg",
  29239. extra: 704 / 704,
  29240. bottom: 28 / 732
  29241. }
  29242. },
  29243. frontErect: {
  29244. height: math.unit(6 + 3 / 12, "feet"),
  29245. name: "Front (Erect)",
  29246. image: {
  29247. source: "./media/characters/nevan/front-erect.svg",
  29248. extra: 704 / 704,
  29249. bottom: 28 / 732
  29250. }
  29251. },
  29252. backFlaccid: {
  29253. height: math.unit(6 + 3 / 12, "feet"),
  29254. name: "Back (Flaccid)",
  29255. image: {
  29256. source: "./media/characters/nevan/back-flaccid.svg",
  29257. extra: 714 / 714,
  29258. bottom: 21 / 735
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(6 + 3 / 12, "feet"),
  29266. default: true
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(4, "feet"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/arhan/front.svg",
  29278. extra: 3368 / 3133,
  29279. bottom: 0 / 3368
  29280. }
  29281. },
  29282. side: {
  29283. height: math.unit(4, "feet"),
  29284. name: "Side",
  29285. image: {
  29286. source: "./media/characters/arhan/side.svg",
  29287. extra: 3347 / 3105,
  29288. bottom: 0 / 3347
  29289. }
  29290. },
  29291. tongue: {
  29292. height: math.unit(1.42, "feet"),
  29293. name: "Tongue",
  29294. image: {
  29295. source: "./media/characters/arhan/tongue.svg"
  29296. }
  29297. },
  29298. head: {
  29299. height: math.unit(0.85, "feet"),
  29300. name: "Head",
  29301. image: {
  29302. source: "./media/characters/arhan/head.svg"
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(4, "feet"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(5 + 7.5 / 12, "feet"),
  29319. weight: math.unit(120, "lb"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/digi-duncan/front.svg",
  29323. extra: 330 / 326,
  29324. bottom: 16 / 346
  29325. }
  29326. },
  29327. side: {
  29328. height: math.unit(5 + 7.5 / 12, "feet"),
  29329. weight: math.unit(120, "lb"),
  29330. name: "Side",
  29331. image: {
  29332. source: "./media/characters/digi-duncan/side.svg",
  29333. extra: 341 / 337,
  29334. bottom: 1 / 342
  29335. }
  29336. },
  29337. back: {
  29338. height: math.unit(5 + 7.5 / 12, "feet"),
  29339. weight: math.unit(120, "lb"),
  29340. name: "Back",
  29341. image: {
  29342. source: "./media/characters/digi-duncan/back.svg",
  29343. extra: 330 / 326,
  29344. bottom: 12 / 342
  29345. }
  29346. },
  29347. },
  29348. [
  29349. {
  29350. name: "Speck",
  29351. height: math.unit(0.25, "mm")
  29352. },
  29353. {
  29354. name: "Micro",
  29355. height: math.unit(5, "mm")
  29356. },
  29357. {
  29358. name: "Tiny",
  29359. height: math.unit(0.5, "inches"),
  29360. default: true
  29361. },
  29362. {
  29363. name: "Human",
  29364. height: math.unit(5 + 7.5 / 12, "feet")
  29365. },
  29366. {
  29367. name: "Minigiant",
  29368. height: math.unit(8 + 5.25, "feet")
  29369. },
  29370. {
  29371. name: "Giant",
  29372. height: math.unit(2000, "feet")
  29373. },
  29374. {
  29375. name: "Mega",
  29376. height: math.unit(371.1, "miles")
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29382. {
  29383. front: {
  29384. height: math.unit(2, "meters"),
  29385. weight: math.unit(350, "kg"),
  29386. name: "Front",
  29387. image: {
  29388. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29389. extra: 898 / 838,
  29390. bottom: 9 / 907
  29391. }
  29392. },
  29393. },
  29394. [
  29395. {
  29396. name: "Micro",
  29397. height: math.unit(8, "meters")
  29398. },
  29399. {
  29400. name: "Normal",
  29401. height: math.unit(50, "meters"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(500, "meters")
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(6 + 6 / 12, "feet"),
  29415. name: "Front",
  29416. image: {
  29417. source: "./media/characters/khardesh/front.svg",
  29418. extra: 888 / 797,
  29419. bottom: 25 / 913
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Normal",
  29426. height: math.unit(6 + 6 / 12, "feet"),
  29427. default: true
  29428. },
  29429. {
  29430. name: "Normal+",
  29431. height: math.unit(4, "meters")
  29432. },
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(50, "meters")
  29436. },
  29437. {
  29438. name: "Macro+",
  29439. height: math.unit(100, "meters")
  29440. },
  29441. {
  29442. name: "Megamacro",
  29443. height: math.unit(20, "km")
  29444. },
  29445. ]
  29446. ))
  29447. characterMakers.push(() => makeCharacter(
  29448. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29449. {
  29450. front: {
  29451. height: math.unit(6, "feet"),
  29452. weight: math.unit(150, "lb"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/kosho/front.svg",
  29456. extra: 1847 / 1847,
  29457. bottom: 86 / 1933
  29458. }
  29459. },
  29460. },
  29461. [
  29462. {
  29463. name: "Second-stage micro",
  29464. height: math.unit(0.5, "inches")
  29465. },
  29466. {
  29467. name: "First-stage micro",
  29468. height: math.unit(6, "inches")
  29469. },
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(6, "feet"),
  29473. default: true
  29474. },
  29475. {
  29476. name: "First-stage macro",
  29477. height: math.unit(72, "feet")
  29478. },
  29479. {
  29480. name: "Second-stage macro",
  29481. height: math.unit(864, "feet")
  29482. },
  29483. ]
  29484. ))
  29485. characterMakers.push(() => makeCharacter(
  29486. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29487. {
  29488. normal: {
  29489. height: math.unit(4 + 6 / 12, "feet"),
  29490. name: "Normal",
  29491. image: {
  29492. source: "./media/characters/hydra/normal.svg",
  29493. extra: 2833 / 2634,
  29494. bottom: 68 / 2901
  29495. }
  29496. },
  29497. smol: {
  29498. height: math.unit(0.705, "inches"),
  29499. name: "Smol",
  29500. image: {
  29501. source: "./media/characters/hydra/smol.svg",
  29502. extra: 2715 / 2540,
  29503. bottom: 0 / 2715
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Normal",
  29510. height: math.unit(4 + 6 / 12, "feet"),
  29511. default: true
  29512. }
  29513. ]
  29514. ))
  29515. characterMakers.push(() => makeCharacter(
  29516. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29517. {
  29518. front: {
  29519. height: math.unit(0.6, "cm"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/daz/front.svg",
  29523. extra: 1682 / 1164,
  29524. bottom: 42 / 1724
  29525. }
  29526. },
  29527. },
  29528. [
  29529. {
  29530. name: "Normal",
  29531. height: math.unit(0.6, "cm"),
  29532. default: true
  29533. },
  29534. ]
  29535. ))
  29536. characterMakers.push(() => makeCharacter(
  29537. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29538. {
  29539. front: {
  29540. height: math.unit(6, "feet"),
  29541. weight: math.unit(235, "lb"),
  29542. name: "Front",
  29543. image: {
  29544. source: "./media/characters/theo-pangolin/front.svg",
  29545. extra: 1996 / 1969,
  29546. bottom: 115 / 2111
  29547. }
  29548. },
  29549. back: {
  29550. height: math.unit(6, "feet"),
  29551. weight: math.unit(235, "lb"),
  29552. name: "Back",
  29553. image: {
  29554. source: "./media/characters/theo-pangolin/back.svg",
  29555. extra: 1979 / 1979,
  29556. bottom: 40 / 2019
  29557. }
  29558. },
  29559. feral: {
  29560. height: math.unit(2, "feet"),
  29561. weight: math.unit(30, "lb"),
  29562. name: "Feral",
  29563. image: {
  29564. source: "./media/characters/theo-pangolin/feral.svg",
  29565. extra: 803 / 791,
  29566. bottom: 181 / 984
  29567. }
  29568. },
  29569. footFive: {
  29570. height: math.unit(1.43, "feet"),
  29571. name: "Foot (Five Toes)",
  29572. image: {
  29573. source: "./media/characters/theo-pangolin/foot-five.svg"
  29574. }
  29575. },
  29576. footFour: {
  29577. height: math.unit(1.43, "feet"),
  29578. name: "Foot (Four Toes)",
  29579. image: {
  29580. source: "./media/characters/theo-pangolin/foot-four.svg"
  29581. }
  29582. },
  29583. handFour: {
  29584. height: math.unit(0.81, "feet"),
  29585. name: "Hand (Four Fingers)",
  29586. image: {
  29587. source: "./media/characters/theo-pangolin/hand-four.svg"
  29588. }
  29589. },
  29590. handThree: {
  29591. height: math.unit(0.81, "feet"),
  29592. name: "Hand (Three Fingers)",
  29593. image: {
  29594. source: "./media/characters/theo-pangolin/hand-three.svg"
  29595. }
  29596. },
  29597. headFront: {
  29598. height: math.unit(1.37, "feet"),
  29599. name: "Head (Front)",
  29600. image: {
  29601. source: "./media/characters/theo-pangolin/head-front.svg"
  29602. }
  29603. },
  29604. headSide: {
  29605. height: math.unit(1.43, "feet"),
  29606. name: "Head (Side)",
  29607. image: {
  29608. source: "./media/characters/theo-pangolin/head-side.svg"
  29609. }
  29610. },
  29611. tongue: {
  29612. height: math.unit(2.29, "feet"),
  29613. name: "Tongue",
  29614. image: {
  29615. source: "./media/characters/theo-pangolin/tongue.svg"
  29616. }
  29617. },
  29618. },
  29619. [
  29620. {
  29621. name: "Normal",
  29622. height: math.unit(6, "feet")
  29623. },
  29624. {
  29625. name: "Macro",
  29626. height: math.unit(400, "feet"),
  29627. default: true
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29633. {
  29634. front: {
  29635. height: math.unit(6, "inches"),
  29636. weight: math.unit(0.036, "kg"),
  29637. name: "Front",
  29638. image: {
  29639. source: "./media/characters/renée/front.svg",
  29640. extra: 900 / 886,
  29641. bottom: 8 / 908
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Nano",
  29648. height: math.unit(1, "nm")
  29649. },
  29650. {
  29651. name: "Micro",
  29652. height: math.unit(1, "mm")
  29653. },
  29654. {
  29655. name: "Normal",
  29656. height: math.unit(6, "inches")
  29657. },
  29658. {
  29659. name: "Macro",
  29660. height: math.unit(2000, "feet"),
  29661. default: true
  29662. },
  29663. {
  29664. name: "Megamacro",
  29665. height: math.unit(2, "km")
  29666. },
  29667. {
  29668. name: "Gigamacro",
  29669. height: math.unit(2000, "km")
  29670. },
  29671. {
  29672. name: "Teramacro",
  29673. height: math.unit(250000, "km")
  29674. },
  29675. ]
  29676. ))
  29677. characterMakers.push(() => makeCharacter(
  29678. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29679. {
  29680. front: {
  29681. height: math.unit(4, "meters"),
  29682. weight: math.unit(150, "kg"),
  29683. name: "Front",
  29684. image: {
  29685. source: "./media/characters/caledvwlch/front.svg",
  29686. extra: 1760 / 1551,
  29687. bottom: 28 / 1788
  29688. }
  29689. },
  29690. side: {
  29691. height: math.unit(4, "meters"),
  29692. weight: math.unit(150, "kg"),
  29693. name: "Side",
  29694. image: {
  29695. source: "./media/characters/caledvwlch/side.svg",
  29696. extra: 1605 / 1536,
  29697. bottom: 31 / 1636
  29698. }
  29699. },
  29700. back: {
  29701. height: math.unit(4, "meters"),
  29702. weight: math.unit(150, "kg"),
  29703. name: "Back",
  29704. image: {
  29705. source: "./media/characters/caledvwlch/back.svg",
  29706. extra: 1635 / 1565,
  29707. bottom: 27 / 1662
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "\"Incognito\"",
  29714. height: math.unit(4, "meters")
  29715. },
  29716. {
  29717. name: "Small rampage",
  29718. height: math.unit(600, "meters")
  29719. },
  29720. {
  29721. name: "Mega",
  29722. height: math.unit(30, "km")
  29723. },
  29724. {
  29725. name: "Home-size",
  29726. height: math.unit(50, "km"),
  29727. default: true
  29728. },
  29729. {
  29730. name: "Giga",
  29731. height: math.unit(300, "km")
  29732. },
  29733. {
  29734. name: "Lounging",
  29735. height: math.unit(11000, "km")
  29736. },
  29737. {
  29738. name: "Planet snacking",
  29739. height: math.unit(2000000, "km")
  29740. },
  29741. ]
  29742. ))
  29743. characterMakers.push(() => makeCharacter(
  29744. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29745. {
  29746. front: {
  29747. height: math.unit(6, "feet"),
  29748. weight: math.unit(215, "lb"),
  29749. name: "Front",
  29750. image: {
  29751. source: "./media/characters/sapphire-svell/front.svg",
  29752. extra: 495 / 455,
  29753. bottom: 20 / 515
  29754. }
  29755. },
  29756. back: {
  29757. height: math.unit(6, "feet"),
  29758. weight: math.unit(216, "lb"),
  29759. name: "Back",
  29760. image: {
  29761. source: "./media/characters/sapphire-svell/back.svg",
  29762. extra: 497 / 477,
  29763. bottom: 7 / 504
  29764. }
  29765. },
  29766. maw: {
  29767. height: math.unit(1.57, "feet"),
  29768. name: "Maw",
  29769. image: {
  29770. source: "./media/characters/sapphire-svell/maw.svg"
  29771. }
  29772. },
  29773. foot: {
  29774. height: math.unit(1.07, "feet"),
  29775. name: "Foot",
  29776. image: {
  29777. source: "./media/characters/sapphire-svell/foot.svg"
  29778. }
  29779. },
  29780. toering: {
  29781. height: math.unit(1.7, "inch"),
  29782. name: "Toering",
  29783. image: {
  29784. source: "./media/characters/sapphire-svell/toering.svg"
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(300, "feet"),
  29792. default: true
  29793. },
  29794. {
  29795. name: "Augmented",
  29796. height: math.unit(1250, "feet")
  29797. },
  29798. {
  29799. name: "Unleashed",
  29800. height: math.unit(3000, "feet")
  29801. },
  29802. ]
  29803. ))
  29804. characterMakers.push(() => makeCharacter(
  29805. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29806. {
  29807. side: {
  29808. height: math.unit(2 + 3 / 12, "feet"),
  29809. weight: math.unit(110, "lb"),
  29810. name: "Side",
  29811. image: {
  29812. source: "./media/characters/glitch-flux/side.svg",
  29813. extra: 997 / 805,
  29814. bottom: 20 / 1017
  29815. }
  29816. },
  29817. },
  29818. [
  29819. {
  29820. name: "Normal",
  29821. height: math.unit(2 + 3 / 12, "feet"),
  29822. default: true
  29823. },
  29824. ]
  29825. ))
  29826. characterMakers.push(() => makeCharacter(
  29827. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29828. {
  29829. front: {
  29830. height: math.unit(4, "meters"),
  29831. name: "Front",
  29832. image: {
  29833. source: "./media/characters/mid/front.svg",
  29834. extra: 507 / 476,
  29835. bottom: 17 / 524
  29836. }
  29837. },
  29838. back: {
  29839. height: math.unit(4, "meters"),
  29840. name: "Back",
  29841. image: {
  29842. source: "./media/characters/mid/back.svg",
  29843. extra: 519 / 487,
  29844. bottom: 7 / 526
  29845. }
  29846. },
  29847. stuck: {
  29848. height: math.unit(2.2, "meters"),
  29849. name: "Stuck",
  29850. image: {
  29851. source: "./media/characters/mid/stuck.svg",
  29852. extra: 1951 / 1869,
  29853. bottom: 88 / 2039
  29854. }
  29855. }
  29856. },
  29857. [
  29858. {
  29859. name: "Normal",
  29860. height: math.unit(4, "meters"),
  29861. default: true
  29862. },
  29863. {
  29864. name: "Big",
  29865. height: math.unit(10, "meters")
  29866. },
  29867. {
  29868. name: "Macro",
  29869. height: math.unit(800, "meters")
  29870. },
  29871. {
  29872. name: "Megamacro",
  29873. height: math.unit(100, "km")
  29874. },
  29875. {
  29876. name: "Overgrown",
  29877. height: math.unit(1, "parsec")
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(2.5, "meters"),
  29886. weight: math.unit(225, "kg"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/iris/front.svg",
  29890. extra: 3348 / 3251,
  29891. bottom: 205 / 3553
  29892. }
  29893. },
  29894. maw: {
  29895. height: math.unit(0.56, "meter"),
  29896. name: "Maw",
  29897. image: {
  29898. source: "./media/characters/iris/maw.svg"
  29899. }
  29900. },
  29901. },
  29902. [
  29903. {
  29904. name: "Mewter cat",
  29905. height: math.unit(1.2, "meters")
  29906. },
  29907. {
  29908. name: "Minimacro",
  29909. height: math.unit(2.5, "meters"),
  29910. default: true
  29911. },
  29912. {
  29913. name: "Macro",
  29914. height: math.unit(180, "meters")
  29915. },
  29916. {
  29917. name: "Megamacro",
  29918. height: math.unit(2746, "meters")
  29919. },
  29920. ]
  29921. ))
  29922. characterMakers.push(() => makeCharacter(
  29923. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29924. {
  29925. front: {
  29926. height: math.unit(6, "feet"),
  29927. weight: math.unit(135, "lb"),
  29928. name: "Front",
  29929. image: {
  29930. source: "./media/characters/axel/front.svg",
  29931. extra: 908 / 908,
  29932. bottom: 58 / 966
  29933. }
  29934. },
  29935. side: {
  29936. height: math.unit(6, "feet"),
  29937. weight: math.unit(135, "lb"),
  29938. name: "Side",
  29939. image: {
  29940. source: "./media/characters/axel/side.svg",
  29941. extra: 958 / 958,
  29942. bottom: 11 / 969
  29943. }
  29944. },
  29945. back: {
  29946. height: math.unit(6, "feet"),
  29947. weight: math.unit(135, "lb"),
  29948. name: "Back",
  29949. image: {
  29950. source: "./media/characters/axel/back.svg",
  29951. extra: 887 / 887,
  29952. bottom: 34 / 921
  29953. }
  29954. },
  29955. head: {
  29956. height: math.unit(1.07, "feet"),
  29957. name: "Head",
  29958. image: {
  29959. source: "./media/characters/axel/head.svg"
  29960. }
  29961. },
  29962. beak: {
  29963. height: math.unit(1.4, "feet"),
  29964. name: "Beak",
  29965. image: {
  29966. source: "./media/characters/axel/beak.svg"
  29967. }
  29968. },
  29969. beakSide: {
  29970. height: math.unit(1.4, "feet"),
  29971. name: "Beak Side",
  29972. image: {
  29973. source: "./media/characters/axel/beak-side.svg"
  29974. }
  29975. },
  29976. sheath: {
  29977. height: math.unit(0.5, "feet"),
  29978. name: "Sheath",
  29979. image: {
  29980. source: "./media/characters/axel/sheath.svg"
  29981. }
  29982. },
  29983. dick: {
  29984. height: math.unit(0.98, "feet"),
  29985. name: "Dick",
  29986. image: {
  29987. source: "./media/characters/axel/dick.svg"
  29988. }
  29989. },
  29990. },
  29991. [
  29992. {
  29993. name: "Macro",
  29994. height: math.unit(68, "meters"),
  29995. default: true
  29996. },
  29997. ]
  29998. ))
  29999. characterMakers.push(() => makeCharacter(
  30000. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30001. {
  30002. front: {
  30003. height: math.unit(3.5, "meters"),
  30004. weight: math.unit(1200, "kg"),
  30005. name: "Front",
  30006. image: {
  30007. source: "./media/characters/joanna/front.svg",
  30008. extra: 1596 / 1488,
  30009. bottom: 29 / 1625
  30010. }
  30011. },
  30012. back: {
  30013. height: math.unit(3.5, "meters"),
  30014. weight: math.unit(1200, "kg"),
  30015. name: "Back",
  30016. image: {
  30017. source: "./media/characters/joanna/back.svg",
  30018. extra: 1594 / 1495,
  30019. bottom: 26 / 1620
  30020. }
  30021. },
  30022. frontShorts: {
  30023. height: math.unit(3.5, "meters"),
  30024. weight: math.unit(1200, "kg"),
  30025. name: "Front (Shorts)",
  30026. image: {
  30027. source: "./media/characters/joanna/front-shorts.svg",
  30028. extra: 1596 / 1488,
  30029. bottom: 29 / 1625
  30030. }
  30031. },
  30032. frontBiker: {
  30033. height: math.unit(3.5, "meters"),
  30034. weight: math.unit(1200, "kg"),
  30035. name: "Front (Biker)",
  30036. image: {
  30037. source: "./media/characters/joanna/front-biker.svg",
  30038. extra: 1596 / 1488,
  30039. bottom: 29 / 1625
  30040. }
  30041. },
  30042. backBiker: {
  30043. height: math.unit(3.5, "meters"),
  30044. weight: math.unit(1200, "kg"),
  30045. name: "Back (Biker)",
  30046. image: {
  30047. source: "./media/characters/joanna/back-biker.svg",
  30048. extra: 1594 / 1495,
  30049. bottom: 88 / 1682
  30050. }
  30051. },
  30052. bikeLeft: {
  30053. height: math.unit(2.4, "meters"),
  30054. weight: math.unit(1600, "kg"),
  30055. name: "Bike (Left)",
  30056. image: {
  30057. source: "./media/characters/joanna/bike-left.svg",
  30058. extra: 720 / 720,
  30059. bottom: 8 / 728
  30060. }
  30061. },
  30062. bikeRight: {
  30063. height: math.unit(2.4, "meters"),
  30064. weight: math.unit(1600, "kg"),
  30065. name: "Bike (Right)",
  30066. image: {
  30067. source: "./media/characters/joanna/bike-right.svg",
  30068. extra: 720 / 720,
  30069. bottom: 8 / 728
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Incognito",
  30076. height: math.unit(3.5, "meters")
  30077. },
  30078. {
  30079. name: "Casual Big",
  30080. height: math.unit(200, "meters")
  30081. },
  30082. {
  30083. name: "Macro",
  30084. height: math.unit(600, "meters")
  30085. },
  30086. {
  30087. name: "Original",
  30088. height: math.unit(20, "km"),
  30089. default: true
  30090. },
  30091. {
  30092. name: "Giga",
  30093. height: math.unit(400, "km")
  30094. },
  30095. {
  30096. name: "Lounging",
  30097. height: math.unit(1500, "km")
  30098. },
  30099. {
  30100. name: "Planetary",
  30101. height: math.unit(200000, "km")
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30107. {
  30108. front: {
  30109. height: math.unit(6, "feet"),
  30110. weight: math.unit(150, "lb"),
  30111. name: "Front",
  30112. image: {
  30113. source: "./media/characters/hugo-sigil/front.svg",
  30114. extra: 522 / 500,
  30115. bottom: 2 / 524
  30116. }
  30117. },
  30118. back: {
  30119. height: math.unit(6, "feet"),
  30120. weight: math.unit(150, "lb"),
  30121. name: "Back",
  30122. image: {
  30123. source: "./media/characters/hugo-sigil/back.svg",
  30124. extra: 519 / 495,
  30125. bottom: 5 / 524
  30126. }
  30127. },
  30128. maw: {
  30129. height: math.unit(1.4, "feet"),
  30130. weight: math.unit(150, "lb"),
  30131. name: "Maw",
  30132. image: {
  30133. source: "./media/characters/hugo-sigil/maw.svg"
  30134. }
  30135. },
  30136. feet: {
  30137. height: math.unit(1.56, "feet"),
  30138. weight: math.unit(150, "lb"),
  30139. name: "Feet",
  30140. image: {
  30141. source: "./media/characters/hugo-sigil/feet.svg",
  30142. extra: 177 / 177,
  30143. bottom: 12 / 189
  30144. }
  30145. },
  30146. },
  30147. [
  30148. {
  30149. name: "Normal",
  30150. height: math.unit(6, "feet")
  30151. },
  30152. {
  30153. name: "Macro",
  30154. height: math.unit(200, "feet"),
  30155. default: true
  30156. },
  30157. ]
  30158. ))
  30159. characterMakers.push(() => makeCharacter(
  30160. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30161. {
  30162. front: {
  30163. height: math.unit(6, "feet"),
  30164. weight: math.unit(150, "lb"),
  30165. name: "Front",
  30166. image: {
  30167. source: "./media/characters/peri/front.svg",
  30168. extra: 2354 / 2233,
  30169. bottom: 49 / 2403
  30170. }
  30171. },
  30172. },
  30173. [
  30174. {
  30175. name: "Really Small",
  30176. height: math.unit(1, "nm")
  30177. },
  30178. {
  30179. name: "Micro",
  30180. height: math.unit(4, "inches")
  30181. },
  30182. {
  30183. name: "Normal",
  30184. height: math.unit(7, "inches"),
  30185. default: true
  30186. },
  30187. {
  30188. name: "Macro",
  30189. height: math.unit(400, "feet")
  30190. },
  30191. {
  30192. name: "Megamacro",
  30193. height: math.unit(100, "miles")
  30194. },
  30195. ]
  30196. ))
  30197. characterMakers.push(() => makeCharacter(
  30198. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30199. {
  30200. frontSlim: {
  30201. height: math.unit(7, "feet"),
  30202. name: "Front (Slim)",
  30203. image: {
  30204. source: "./media/characters/issilora/front-slim.svg",
  30205. extra: 529 / 449,
  30206. bottom: 53 / 582
  30207. }
  30208. },
  30209. sideSlim: {
  30210. height: math.unit(7, "feet"),
  30211. name: "Side (Slim)",
  30212. image: {
  30213. source: "./media/characters/issilora/side-slim.svg",
  30214. extra: 570 / 480,
  30215. bottom: 30 / 600
  30216. }
  30217. },
  30218. backSlim: {
  30219. height: math.unit(7, "feet"),
  30220. name: "Back (Slim)",
  30221. image: {
  30222. source: "./media/characters/issilora/back-slim.svg",
  30223. extra: 537 / 455,
  30224. bottom: 46 / 583
  30225. }
  30226. },
  30227. frontBuff: {
  30228. height: math.unit(7, "feet"),
  30229. name: "Front (Buff)",
  30230. image: {
  30231. source: "./media/characters/issilora/front-buff.svg",
  30232. extra: 2310 / 2035,
  30233. bottom: 335 / 2645
  30234. }
  30235. },
  30236. head: {
  30237. height: math.unit(1.94, "feet"),
  30238. name: "Head",
  30239. image: {
  30240. source: "./media/characters/issilora/head.svg"
  30241. }
  30242. },
  30243. },
  30244. [
  30245. {
  30246. name: "Minimum",
  30247. height: math.unit(7, "feet")
  30248. },
  30249. {
  30250. name: "Comfortable",
  30251. height: math.unit(17, "feet")
  30252. },
  30253. {
  30254. name: "Fun Size",
  30255. height: math.unit(47, "feet")
  30256. },
  30257. {
  30258. name: "Natural Macro",
  30259. height: math.unit(137, "feet"),
  30260. default: true
  30261. },
  30262. {
  30263. name: "Maximum Kaiju",
  30264. height: math.unit(397, "feet")
  30265. },
  30266. ]
  30267. ))
  30268. characterMakers.push(() => makeCharacter(
  30269. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30270. {
  30271. front: {
  30272. height: math.unit(50 + 9/12, "feet"),
  30273. weight: math.unit(32.8, "tons"),
  30274. name: "Front",
  30275. image: {
  30276. source: "./media/characters/irb'iiritaahn/front.svg",
  30277. extra: 1878/1826,
  30278. bottom: 326/2204
  30279. }
  30280. },
  30281. back: {
  30282. height: math.unit(50 + 9/12, "feet"),
  30283. weight: math.unit(32.8, "tons"),
  30284. name: "Back",
  30285. image: {
  30286. source: "./media/characters/irb'iiritaahn/back.svg",
  30287. extra: 2052/2018,
  30288. bottom: 152/2204
  30289. }
  30290. },
  30291. head: {
  30292. height: math.unit(12.86, "feet"),
  30293. name: "Head",
  30294. image: {
  30295. source: "./media/characters/irb'iiritaahn/head.svg"
  30296. }
  30297. },
  30298. maw: {
  30299. height: math.unit(9.66, "feet"),
  30300. name: "Maw",
  30301. image: {
  30302. source: "./media/characters/irb'iiritaahn/maw.svg"
  30303. }
  30304. },
  30305. frontDick: {
  30306. height: math.unit(8.78461, "feet"),
  30307. name: "Front Dick",
  30308. image: {
  30309. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30310. }
  30311. },
  30312. rearDick: {
  30313. height: math.unit(8.78461, "feet"),
  30314. name: "Rear Dick",
  30315. image: {
  30316. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30317. }
  30318. },
  30319. rearDickUnfolded: {
  30320. height: math.unit(8.78, "feet"),
  30321. name: "Rear Dick (Unfolded)",
  30322. image: {
  30323. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30324. }
  30325. },
  30326. wings: {
  30327. height: math.unit(43, "feet"),
  30328. name: "Wings",
  30329. image: {
  30330. source: "./media/characters/irb'iiritaahn/wings.svg"
  30331. }
  30332. },
  30333. },
  30334. [
  30335. {
  30336. name: "Macro",
  30337. height: math.unit(50 + 9/12, "feet"),
  30338. default: true
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30344. {
  30345. front: {
  30346. height: math.unit(205, "cm"),
  30347. weight: math.unit(102, "kg"),
  30348. name: "Front",
  30349. image: {
  30350. source: "./media/characters/irbisgreif/front.svg",
  30351. extra: 785/706,
  30352. bottom: 13/798
  30353. }
  30354. },
  30355. back: {
  30356. height: math.unit(205, "cm"),
  30357. weight: math.unit(102, "kg"),
  30358. name: "Back",
  30359. image: {
  30360. source: "./media/characters/irbisgreif/back.svg",
  30361. extra: 713/701,
  30362. bottom: 26/739
  30363. }
  30364. },
  30365. frontDressed: {
  30366. height: math.unit(216, "cm"),
  30367. weight: math.unit(102, "kg"),
  30368. name: "Front-dressed",
  30369. image: {
  30370. source: "./media/characters/irbisgreif/front-dressed.svg",
  30371. extra: 902/776,
  30372. bottom: 14/916
  30373. }
  30374. },
  30375. sideDressed: {
  30376. height: math.unit(195, "cm"),
  30377. weight: math.unit(102, "kg"),
  30378. name: "Side-dressed",
  30379. image: {
  30380. source: "./media/characters/irbisgreif/side-dressed.svg",
  30381. extra: 788/688,
  30382. bottom: 21/809
  30383. }
  30384. },
  30385. backDressed: {
  30386. height: math.unit(216, "cm"),
  30387. weight: math.unit(102, "kg"),
  30388. name: "Back-dressed",
  30389. image: {
  30390. source: "./media/characters/irbisgreif/back-dressed.svg",
  30391. extra: 901/783,
  30392. bottom: 10/911
  30393. }
  30394. },
  30395. dick: {
  30396. height: math.unit(0.49, "feet"),
  30397. name: "Dick",
  30398. image: {
  30399. source: "./media/characters/irbisgreif/dick.svg"
  30400. }
  30401. },
  30402. wingTop: {
  30403. height: math.unit(1.93 , "feet"),
  30404. name: "Wing-top",
  30405. image: {
  30406. source: "./media/characters/irbisgreif/wing-top.svg"
  30407. }
  30408. },
  30409. wingBottom: {
  30410. height: math.unit(1.93 , "feet"),
  30411. name: "Wing-bottom",
  30412. image: {
  30413. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30414. }
  30415. },
  30416. },
  30417. [
  30418. {
  30419. name: "Normal",
  30420. height: math.unit(216, "cm"),
  30421. default: true
  30422. },
  30423. ]
  30424. ))
  30425. characterMakers.push(() => makeCharacter(
  30426. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30427. {
  30428. front: {
  30429. height: math.unit(6, "feet"),
  30430. weight: math.unit(150, "lb"),
  30431. name: "Front",
  30432. image: {
  30433. source: "./media/characters/pride/front.svg",
  30434. extra: 1299/1230,
  30435. bottom: 18/1317
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Normal",
  30442. height: math.unit(7, "feet")
  30443. },
  30444. {
  30445. name: "Mini-macro",
  30446. height: math.unit(11, "feet")
  30447. },
  30448. {
  30449. name: "Macro",
  30450. height: math.unit(15, "meters"),
  30451. default: true
  30452. },
  30453. {
  30454. name: "Macro+",
  30455. height: math.unit(40, "meters")
  30456. },
  30457. ]
  30458. ))
  30459. characterMakers.push(() => makeCharacter(
  30460. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30461. {
  30462. front: {
  30463. height: math.unit(4 + 2 / 12, "feet"),
  30464. weight: math.unit(95, "lb"),
  30465. name: "Front",
  30466. image: {
  30467. source: "./media/characters/vaelophis-nyx/front.svg",
  30468. extra: 2532/2330,
  30469. bottom: 0/2532
  30470. }
  30471. },
  30472. back: {
  30473. height: math.unit(4 + 2 / 12, "feet"),
  30474. weight: math.unit(95, "lb"),
  30475. name: "Back",
  30476. image: {
  30477. source: "./media/characters/vaelophis-nyx/back.svg",
  30478. extra: 2484/2361,
  30479. bottom: 0/2484
  30480. }
  30481. },
  30482. feralSide: {
  30483. height: math.unit(2 + 1/12, "feet"),
  30484. weight: math.unit(20, "lb"),
  30485. name: "Feral (Side)",
  30486. image: {
  30487. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30488. extra: 1721/1581,
  30489. bottom: 70/1791
  30490. }
  30491. },
  30492. feralLazing: {
  30493. height: math.unit(1.08, "feet"),
  30494. weight: math.unit(20, "lb"),
  30495. name: "Feral (Lazing)",
  30496. image: {
  30497. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30498. extra: 822/822,
  30499. bottom: 248/1070
  30500. }
  30501. },
  30502. ear: {
  30503. height: math.unit(0.416, "feet"),
  30504. name: "Ear",
  30505. image: {
  30506. source: "./media/characters/vaelophis-nyx/ear.svg"
  30507. }
  30508. },
  30509. eye: {
  30510. height: math.unit(0.0748, "feet"),
  30511. name: "Eye",
  30512. image: {
  30513. source: "./media/characters/vaelophis-nyx/eye.svg"
  30514. }
  30515. },
  30516. mouth: {
  30517. height: math.unit(0.378, "feet"),
  30518. name: "Mouth",
  30519. image: {
  30520. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30521. }
  30522. },
  30523. spade: {
  30524. height: math.unit(0.55, "feet"),
  30525. name: "Spade",
  30526. image: {
  30527. source: "./media/characters/vaelophis-nyx/spade.svg"
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Normal",
  30534. height: math.unit(4 + 2/12, "feet"),
  30535. default: true
  30536. },
  30537. ]
  30538. ))
  30539. characterMakers.push(() => makeCharacter(
  30540. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30541. {
  30542. front: {
  30543. height: math.unit(7, "feet"),
  30544. weight: math.unit(231, "lb"),
  30545. name: "Front",
  30546. image: {
  30547. source: "./media/characters/flux/front.svg",
  30548. extra: 919/871,
  30549. bottom: 0/919
  30550. }
  30551. },
  30552. back: {
  30553. height: math.unit(7, "feet"),
  30554. weight: math.unit(231, "lb"),
  30555. name: "Back",
  30556. image: {
  30557. source: "./media/characters/flux/back.svg",
  30558. extra: 1040/992,
  30559. bottom: 0/1040
  30560. }
  30561. },
  30562. frontDressed: {
  30563. height: math.unit(7, "feet"),
  30564. weight: math.unit(231, "lb"),
  30565. name: "Front (Dressed)",
  30566. image: {
  30567. source: "./media/characters/flux/front-dressed.svg",
  30568. extra: 919/871,
  30569. bottom: 0/919
  30570. }
  30571. },
  30572. feralSide: {
  30573. height: math.unit(5, "feet"),
  30574. weight: math.unit(150, "lb"),
  30575. name: "Feral (Side)",
  30576. image: {
  30577. source: "./media/characters/flux/feral-side.svg",
  30578. extra: 598/528,
  30579. bottom: 28/626
  30580. }
  30581. },
  30582. head: {
  30583. height: math.unit(1.585, "feet"),
  30584. name: "Head",
  30585. image: {
  30586. source: "./media/characters/flux/head.svg"
  30587. }
  30588. },
  30589. headSide: {
  30590. height: math.unit(1.74, "feet"),
  30591. name: "Head (Side)",
  30592. image: {
  30593. source: "./media/characters/flux/head-side.svg"
  30594. }
  30595. },
  30596. headSideFire: {
  30597. height: math.unit(1.76, "feet"),
  30598. name: "Head (Side, Fire)",
  30599. image: {
  30600. source: "./media/characters/flux/head-side-fire.svg"
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Normal",
  30607. height: math.unit(7, "feet"),
  30608. default: true
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30614. {
  30615. front: {
  30616. height: math.unit(9, "feet"),
  30617. weight: math.unit(1012, "lb"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/ulfra-lupae/front.svg",
  30621. extra: 1083/1011,
  30622. bottom: 67/1150
  30623. }
  30624. },
  30625. },
  30626. [
  30627. {
  30628. name: "Micro",
  30629. height: math.unit(6, "inches")
  30630. },
  30631. {
  30632. name: "Socializing",
  30633. height: math.unit(6 + 5/12, "feet")
  30634. },
  30635. {
  30636. name: "Normal",
  30637. height: math.unit(9, "feet"),
  30638. default: true
  30639. },
  30640. {
  30641. name: "Macro",
  30642. height: math.unit(150, "feet")
  30643. },
  30644. ]
  30645. ))
  30646. characterMakers.push(() => makeCharacter(
  30647. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30648. {
  30649. front: {
  30650. height: math.unit(5 + 2/12, "feet"),
  30651. weight: math.unit(120, "lb"),
  30652. name: "Front",
  30653. image: {
  30654. source: "./media/characters/timber/front.svg",
  30655. extra: 2814/2705,
  30656. bottom: 181/2995
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Normal",
  30663. height: math.unit(5 + 2/12, "feet"),
  30664. default: true
  30665. },
  30666. ]
  30667. ))
  30668. characterMakers.push(() => makeCharacter(
  30669. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30670. {
  30671. front: {
  30672. height: math.unit(5 + 7/12, "feet"),
  30673. weight: math.unit(220, "lb"),
  30674. name: "Front",
  30675. image: {
  30676. source: "./media/characters/nicki/front.svg",
  30677. extra: 453/419,
  30678. bottom: 7/460
  30679. }
  30680. },
  30681. frontAlt: {
  30682. height: math.unit(5 + 7/12, "feet"),
  30683. weight: math.unit(220, "lb"),
  30684. name: "Front-alt",
  30685. image: {
  30686. source: "./media/characters/nicki/front-alt.svg",
  30687. extra: 435/411,
  30688. bottom: 12/447
  30689. }
  30690. },
  30691. back: {
  30692. height: math.unit(5 + 7/12, "feet"),
  30693. weight: math.unit(220, "lb"),
  30694. name: "Back",
  30695. image: {
  30696. source: "./media/characters/nicki/back.svg",
  30697. extra: 440/413,
  30698. bottom: 19/459
  30699. }
  30700. },
  30701. taur: {
  30702. height: math.unit(7 + 6/12, "feet"),
  30703. weight: math.unit(700, "lb"),
  30704. name: "Taur",
  30705. image: {
  30706. source: "./media/characters/nicki/taur.svg",
  30707. extra: 975/773,
  30708. bottom: 0/975
  30709. }
  30710. },
  30711. frontNsfw: {
  30712. height: math.unit(5 + 7/12, "feet"),
  30713. weight: math.unit(220, "lb"),
  30714. name: "Front (NSFW)",
  30715. image: {
  30716. source: "./media/characters/nicki/front-nsfw.svg",
  30717. extra: 453/419,
  30718. bottom: 7/460
  30719. }
  30720. },
  30721. frontNsfwAlt: {
  30722. height: math.unit(5 + 7/12, "feet"),
  30723. weight: math.unit(220, "lb"),
  30724. name: "Front (Alt, NSFW)",
  30725. image: {
  30726. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30727. extra: 435/411,
  30728. bottom: 12/447
  30729. }
  30730. },
  30731. backNsfw: {
  30732. height: math.unit(5 + 7/12, "feet"),
  30733. weight: math.unit(220, "lb"),
  30734. name: "Back (NSFW)",
  30735. image: {
  30736. source: "./media/characters/nicki/back-nsfw.svg",
  30737. extra: 440/413,
  30738. bottom: 19/459
  30739. }
  30740. },
  30741. head: {
  30742. height: math.unit(2.1, "feet"),
  30743. name: "Head",
  30744. image: {
  30745. source: "./media/characters/nicki/head.svg"
  30746. }
  30747. },
  30748. paw: {
  30749. height: math.unit(1.88, "feet"),
  30750. name: "Paw",
  30751. image: {
  30752. source: "./media/characters/nicki/paw.svg"
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Normal",
  30759. height: math.unit(5 + 7/12, "feet"),
  30760. default: true
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30766. {
  30767. front: {
  30768. height: math.unit(7 + 10/12, "feet"),
  30769. weight: math.unit(3.5, "tons"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/lee/front.svg",
  30773. extra: 1773/1615,
  30774. bottom: 86/1859
  30775. }
  30776. },
  30777. hand: {
  30778. height: math.unit(1.78, "feet"),
  30779. name: "Hand",
  30780. image: {
  30781. source: "./media/characters/lee/hand.svg"
  30782. }
  30783. },
  30784. maw: {
  30785. height: math.unit(1.18, "feet"),
  30786. name: "Maw",
  30787. image: {
  30788. source: "./media/characters/lee/maw.svg"
  30789. }
  30790. },
  30791. },
  30792. [
  30793. {
  30794. name: "Normal",
  30795. height: math.unit(7 + 10/12, "feet"),
  30796. default: true
  30797. },
  30798. ]
  30799. ))
  30800. characterMakers.push(() => makeCharacter(
  30801. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30802. {
  30803. front: {
  30804. height: math.unit(9, "feet"),
  30805. name: "Front",
  30806. image: {
  30807. source: "./media/characters/guti/front.svg",
  30808. extra: 4551/4355,
  30809. bottom: 123/4674
  30810. }
  30811. },
  30812. tongue: {
  30813. height: math.unit(1, "feet"),
  30814. name: "Tongue",
  30815. image: {
  30816. source: "./media/characters/guti/tongue.svg"
  30817. }
  30818. },
  30819. paw: {
  30820. height: math.unit(1.18, "feet"),
  30821. name: "Paw",
  30822. image: {
  30823. source: "./media/characters/guti/paw.svg"
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(9, "feet"),
  30831. default: true
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30837. {
  30838. side: {
  30839. height: math.unit(5, "meters"),
  30840. name: "Side",
  30841. image: {
  30842. source: "./media/characters/vesper/side.svg",
  30843. extra: 1605/1518,
  30844. bottom: 0/1605
  30845. }
  30846. },
  30847. },
  30848. [
  30849. {
  30850. name: "Small",
  30851. height: math.unit(5, "meters")
  30852. },
  30853. {
  30854. name: "Sage",
  30855. height: math.unit(100, "meters"),
  30856. default: true
  30857. },
  30858. {
  30859. name: "Fun Size",
  30860. height: math.unit(600, "meters")
  30861. },
  30862. {
  30863. name: "Goddess",
  30864. height: math.unit(20000, "km")
  30865. },
  30866. {
  30867. name: "Maximum",
  30868. height: math.unit(5, "galaxies")
  30869. },
  30870. ]
  30871. ))
  30872. characterMakers.push(() => makeCharacter(
  30873. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30874. {
  30875. front: {
  30876. height: math.unit(6 + 3/12, "feet"),
  30877. weight: math.unit(190, "lb"),
  30878. name: "Front",
  30879. image: {
  30880. source: "./media/characters/gawain/front.svg",
  30881. extra: 2222/2139,
  30882. bottom: 90/2312
  30883. }
  30884. },
  30885. back: {
  30886. height: math.unit(6 + 3/12, "feet"),
  30887. weight: math.unit(190, "lb"),
  30888. name: "Back",
  30889. image: {
  30890. source: "./media/characters/gawain/back.svg",
  30891. extra: 2199/2111,
  30892. bottom: 73/2272
  30893. }
  30894. },
  30895. },
  30896. [
  30897. {
  30898. name: "Normal",
  30899. height: math.unit(6 + 3/12, "feet"),
  30900. default: true
  30901. },
  30902. ]
  30903. ))
  30904. characterMakers.push(() => makeCharacter(
  30905. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30906. {
  30907. side: {
  30908. height: math.unit(3.5, "meters"),
  30909. weight: math.unit(16000, "lb"),
  30910. name: "Side",
  30911. image: {
  30912. source: "./media/characters/dascalti/side.svg",
  30913. extra: 392/273,
  30914. bottom: 47/439
  30915. }
  30916. },
  30917. breath: {
  30918. height: math.unit(7.4, "feet"),
  30919. name: "Breath",
  30920. image: {
  30921. source: "./media/characters/dascalti/breath.svg"
  30922. }
  30923. },
  30924. fed: {
  30925. height: math.unit(3.6, "meters"),
  30926. weight: math.unit(16000, "lb"),
  30927. name: "Fed",
  30928. image: {
  30929. source: "./media/characters/dascalti/fed.svg",
  30930. extra: 1419/820,
  30931. bottom: 95/1514
  30932. }
  30933. },
  30934. },
  30935. [
  30936. {
  30937. name: "Normal",
  30938. height: math.unit(3.5, "meters"),
  30939. default: true
  30940. },
  30941. ]
  30942. ))
  30943. characterMakers.push(() => makeCharacter(
  30944. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30945. {
  30946. front: {
  30947. height: math.unit(3 + 5/12, "feet"),
  30948. name: "Front",
  30949. image: {
  30950. source: "./media/characters/mauve/front.svg",
  30951. extra: 1126/1033,
  30952. bottom: 65/1191
  30953. }
  30954. },
  30955. side: {
  30956. height: math.unit(3 + 5/12, "feet"),
  30957. name: "Side",
  30958. image: {
  30959. source: "./media/characters/mauve/side.svg",
  30960. extra: 1089/1001,
  30961. bottom: 29/1118
  30962. }
  30963. },
  30964. back: {
  30965. height: math.unit(3 + 5/12, "feet"),
  30966. name: "Back",
  30967. image: {
  30968. source: "./media/characters/mauve/back.svg",
  30969. extra: 1173/1053,
  30970. bottom: 109/1282
  30971. }
  30972. },
  30973. },
  30974. [
  30975. {
  30976. name: "Normal",
  30977. height: math.unit(3 + 5/12, "feet"),
  30978. default: true
  30979. },
  30980. ]
  30981. ))
  30982. characterMakers.push(() => makeCharacter(
  30983. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30984. {
  30985. front: {
  30986. height: math.unit(6 + 3/12, "feet"),
  30987. weight: math.unit(430, "lb"),
  30988. name: "Front",
  30989. image: {
  30990. source: "./media/characters/carlos/front.svg",
  30991. extra: 1964/1913,
  30992. bottom: 70/2034
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(6 + 3/12, "feet"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31006. {
  31007. back: {
  31008. height: math.unit(5 + 10/12, "feet"),
  31009. weight: math.unit(200, "lb"),
  31010. name: "Back",
  31011. image: {
  31012. source: "./media/characters/jax/back.svg",
  31013. extra: 764/739,
  31014. bottom: 25/789
  31015. }
  31016. },
  31017. },
  31018. [
  31019. {
  31020. name: "Normal",
  31021. height: math.unit(5 + 10/12, "feet"),
  31022. default: true
  31023. },
  31024. ]
  31025. ))
  31026. characterMakers.push(() => makeCharacter(
  31027. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31028. {
  31029. front: {
  31030. height: math.unit(8, "feet"),
  31031. weight: math.unit(250, "lb"),
  31032. name: "Front",
  31033. image: {
  31034. source: "./media/characters/eikthynir/front.svg",
  31035. extra: 1332/1166,
  31036. bottom: 82/1414
  31037. }
  31038. },
  31039. back: {
  31040. height: math.unit(8, "feet"),
  31041. weight: math.unit(250, "lb"),
  31042. name: "Back",
  31043. image: {
  31044. source: "./media/characters/eikthynir/back.svg",
  31045. extra: 1342/1190,
  31046. bottom: 19/1361
  31047. }
  31048. },
  31049. dick: {
  31050. height: math.unit(2.35, "feet"),
  31051. name: "Dick",
  31052. image: {
  31053. source: "./media/characters/eikthynir/dick.svg"
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Normal",
  31060. height: math.unit(8, "feet"),
  31061. default: true
  31062. },
  31063. ]
  31064. ))
  31065. characterMakers.push(() => makeCharacter(
  31066. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31067. {
  31068. front: {
  31069. height: math.unit(99, "meters"),
  31070. weight: math.unit(13000, "tons"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/zlmos/front.svg",
  31074. extra: 2202/1992,
  31075. bottom: 315/2517
  31076. }
  31077. },
  31078. },
  31079. [
  31080. {
  31081. name: "Macro",
  31082. height: math.unit(99, "meters"),
  31083. default: true
  31084. },
  31085. ]
  31086. ))
  31087. characterMakers.push(() => makeCharacter(
  31088. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31089. {
  31090. front: {
  31091. height: math.unit(6 + 5/12, "feet"),
  31092. name: "Front",
  31093. image: {
  31094. source: "./media/characters/purri/front.svg",
  31095. extra: 1698/1610,
  31096. bottom: 32/1730
  31097. }
  31098. },
  31099. frontAlt: {
  31100. height: math.unit(6 + 5/12, "feet"),
  31101. name: "Front (Alt)",
  31102. image: {
  31103. source: "./media/characters/purri/front-alt.svg",
  31104. extra: 450/420,
  31105. bottom: 26/476
  31106. }
  31107. },
  31108. boots: {
  31109. height: math.unit(5.5, "feet"),
  31110. name: "Boots",
  31111. image: {
  31112. source: "./media/characters/purri/boots.svg",
  31113. extra: 905/853,
  31114. bottom: 18/923
  31115. }
  31116. },
  31117. lying: {
  31118. height: math.unit(2, "feet"),
  31119. name: "Lying",
  31120. image: {
  31121. source: "./media/characters/purri/lying.svg",
  31122. extra: 940/843,
  31123. bottom: 146/1086
  31124. }
  31125. },
  31126. devious: {
  31127. height: math.unit(1.77, "feet"),
  31128. name: "Devious",
  31129. image: {
  31130. source: "./media/characters/purri/devious.svg",
  31131. extra: 1440/1155,
  31132. bottom: 147/1587
  31133. }
  31134. },
  31135. bean: {
  31136. height: math.unit(1.94, "feet"),
  31137. name: "Bean",
  31138. image: {
  31139. source: "./media/characters/purri/bean.svg"
  31140. }
  31141. },
  31142. },
  31143. [
  31144. {
  31145. name: "Micro",
  31146. height: math.unit(1, "mm")
  31147. },
  31148. {
  31149. name: "Normal",
  31150. height: math.unit(6 + 5/12, "feet"),
  31151. default: true
  31152. },
  31153. {
  31154. name: "Macro :3c",
  31155. height: math.unit(2, "miles")
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31161. {
  31162. front: {
  31163. height: math.unit(6 + 2/12, "feet"),
  31164. weight: math.unit(250, "lb"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/moonlight/front.svg",
  31168. extra: 1044/908,
  31169. bottom: 56/1100
  31170. }
  31171. },
  31172. feral: {
  31173. height: math.unit(3 + 1/12, "feet"),
  31174. weight: math.unit(50, "kg"),
  31175. name: "Feral",
  31176. image: {
  31177. source: "./media/characters/moonlight/feral.svg",
  31178. extra: 3705/2791,
  31179. bottom: 145/3850
  31180. }
  31181. },
  31182. paw: {
  31183. height: math.unit(1, "feet"),
  31184. name: "Paw",
  31185. image: {
  31186. source: "./media/characters/moonlight/paw.svg"
  31187. }
  31188. },
  31189. paws: {
  31190. height: math.unit(0.98, "feet"),
  31191. name: "Paws",
  31192. image: {
  31193. source: "./media/characters/moonlight/paws.svg",
  31194. extra: 939/939,
  31195. bottom: 50/989
  31196. }
  31197. },
  31198. mouth: {
  31199. height: math.unit(0.48, "feet"),
  31200. name: "Mouth",
  31201. image: {
  31202. source: "./media/characters/moonlight/mouth.svg"
  31203. }
  31204. },
  31205. dick: {
  31206. height: math.unit(1.46, "feet"),
  31207. name: "Dick",
  31208. image: {
  31209. source: "./media/characters/moonlight/dick.svg"
  31210. }
  31211. },
  31212. },
  31213. [
  31214. {
  31215. name: "Normal",
  31216. height: math.unit(6 + 2/12, "feet"),
  31217. default: true
  31218. },
  31219. {
  31220. name: "Macro",
  31221. height: math.unit(300, "feet")
  31222. },
  31223. {
  31224. name: "Macro+",
  31225. height: math.unit(1, "mile")
  31226. },
  31227. {
  31228. name: "Mt. Moon",
  31229. height: math.unit(5, "miles")
  31230. },
  31231. {
  31232. name: "Megamacro",
  31233. height: math.unit(15, "miles")
  31234. },
  31235. ]
  31236. ))
  31237. characterMakers.push(() => makeCharacter(
  31238. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31239. {
  31240. back: {
  31241. height: math.unit(6, "feet"),
  31242. weight: math.unit(150, "lb"),
  31243. name: "Back",
  31244. image: {
  31245. source: "./media/characters/sylen/back.svg",
  31246. extra: 1335/1273,
  31247. bottom: 107/1442
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Normal",
  31254. height: math.unit(5 + 5/12, "feet")
  31255. },
  31256. {
  31257. name: "Megamacro",
  31258. height: math.unit(3, "miles"),
  31259. default: true
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31265. {
  31266. front: {
  31267. height: math.unit(6, "feet"),
  31268. weight: math.unit(190, "lb"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/huttser/front.svg",
  31272. extra: 1152/1058,
  31273. bottom: 23/1175
  31274. }
  31275. },
  31276. side: {
  31277. height: math.unit(6, "feet"),
  31278. weight: math.unit(190, "lb"),
  31279. name: "Side",
  31280. image: {
  31281. source: "./media/characters/huttser/side.svg",
  31282. extra: 1174/1065,
  31283. bottom: 18/1192
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(6, "feet"),
  31288. weight: math.unit(190, "lb"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/huttser/back.svg",
  31292. extra: 1158/1056,
  31293. bottom: 12/1170
  31294. }
  31295. },
  31296. },
  31297. [
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31302. {
  31303. side: {
  31304. height: math.unit(12 + 9/12, "feet"),
  31305. weight: math.unit(15000, "lb"),
  31306. name: "Side",
  31307. image: {
  31308. source: "./media/characters/faan/side.svg",
  31309. extra: 2747/2697,
  31310. bottom: 0/2747
  31311. }
  31312. },
  31313. front: {
  31314. height: math.unit(12 + 9/12, "feet"),
  31315. weight: math.unit(15000, "lb"),
  31316. name: "Front",
  31317. image: {
  31318. source: "./media/characters/faan/front.svg",
  31319. extra: 607/571,
  31320. bottom: 24/631
  31321. }
  31322. },
  31323. head: {
  31324. height: math.unit(2.85, "feet"),
  31325. name: "Head",
  31326. image: {
  31327. source: "./media/characters/faan/head.svg"
  31328. }
  31329. },
  31330. headAlt: {
  31331. height: math.unit(3.13, "feet"),
  31332. name: "Head-alt",
  31333. image: {
  31334. source: "./media/characters/faan/head-alt.svg"
  31335. }
  31336. },
  31337. },
  31338. [
  31339. {
  31340. name: "Normal",
  31341. height: math.unit(12 + 9/12, "feet"),
  31342. default: true
  31343. },
  31344. ]
  31345. ))
  31346. characterMakers.push(() => makeCharacter(
  31347. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31348. {
  31349. front: {
  31350. height: math.unit(6, "feet"),
  31351. weight: math.unit(300, "lb"),
  31352. name: "Front",
  31353. image: {
  31354. source: "./media/characters/tanio/front.svg",
  31355. extra: 711/673,
  31356. bottom: 25/736
  31357. }
  31358. },
  31359. },
  31360. [
  31361. {
  31362. name: "Normal",
  31363. height: math.unit(6, "feet"),
  31364. default: true
  31365. },
  31366. ]
  31367. ))
  31368. characterMakers.push(() => makeCharacter(
  31369. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31370. {
  31371. front: {
  31372. height: math.unit(3, "inches"),
  31373. name: "Front",
  31374. image: {
  31375. source: "./media/characters/noboru/front.svg",
  31376. extra: 1039/932,
  31377. bottom: 18/1057
  31378. }
  31379. },
  31380. },
  31381. [
  31382. {
  31383. name: "Micro",
  31384. height: math.unit(3, "inches"),
  31385. default: true
  31386. },
  31387. ]
  31388. ))
  31389. characterMakers.push(() => makeCharacter(
  31390. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31391. {
  31392. front: {
  31393. height: math.unit(1.85, "meters"),
  31394. weight: math.unit(80, "kg"),
  31395. name: "Front",
  31396. image: {
  31397. source: "./media/characters/daniel-barrett/front.svg",
  31398. extra: 355/337,
  31399. bottom: 9/364
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Pico",
  31406. height: math.unit(0.0433, "mm")
  31407. },
  31408. {
  31409. name: "Nano",
  31410. height: math.unit(1.5, "mm")
  31411. },
  31412. {
  31413. name: "Micro",
  31414. height: math.unit(5.3, "cm"),
  31415. default: true
  31416. },
  31417. {
  31418. name: "Normal",
  31419. height: math.unit(1.85, "meters")
  31420. },
  31421. {
  31422. name: "Macro",
  31423. height: math.unit(64.7, "meters")
  31424. },
  31425. {
  31426. name: "Megamacro",
  31427. height: math.unit(2.26, "km")
  31428. },
  31429. {
  31430. name: "Gigamacro",
  31431. height: math.unit(79, "km")
  31432. },
  31433. {
  31434. name: "Teramacro",
  31435. height: math.unit(2765, "km")
  31436. },
  31437. {
  31438. name: "Petamacro",
  31439. height: math.unit(96678, "km")
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31445. {
  31446. front: {
  31447. height: math.unit(30, "meters"),
  31448. weight: math.unit(400, "tons"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/zeel/front.svg",
  31452. extra: 2599/2599,
  31453. bottom: 226/2825
  31454. }
  31455. },
  31456. },
  31457. [
  31458. {
  31459. name: "Macro",
  31460. height: math.unit(30, "meters"),
  31461. default: true
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(6 + 7/12, "feet"),
  31470. weight: math.unit(210, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/tarn/front.svg",
  31474. extra: 3517/3220,
  31475. bottom: 91/3608
  31476. }
  31477. },
  31478. back: {
  31479. height: math.unit(6 + 7/12, "feet"),
  31480. weight: math.unit(210, "lb"),
  31481. name: "Back",
  31482. image: {
  31483. source: "./media/characters/tarn/back.svg",
  31484. extra: 3566/3241,
  31485. bottom: 34/3600
  31486. }
  31487. },
  31488. dick: {
  31489. height: math.unit(1.65, "feet"),
  31490. name: "Dick",
  31491. image: {
  31492. source: "./media/characters/tarn/dick.svg"
  31493. }
  31494. },
  31495. paw: {
  31496. height: math.unit(1.80, "feet"),
  31497. name: "Paw",
  31498. image: {
  31499. source: "./media/characters/tarn/paw.svg"
  31500. }
  31501. },
  31502. tongue: {
  31503. height: math.unit(0.97, "feet"),
  31504. name: "Tongue",
  31505. image: {
  31506. source: "./media/characters/tarn/tongue.svg"
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Micro",
  31513. height: math.unit(4, "inches")
  31514. },
  31515. {
  31516. name: "Normal",
  31517. height: math.unit(6 + 7/12, "feet"),
  31518. default: true
  31519. },
  31520. {
  31521. name: "Macro",
  31522. height: math.unit(300, "feet")
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(5 + 7/12, "feet"),
  31531. weight: math.unit(80, "kg"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31535. extra: 3023/2865,
  31536. bottom: 33/3056
  31537. }
  31538. },
  31539. back: {
  31540. height: math.unit(5 + 7/12, "feet"),
  31541. weight: math.unit(80, "kg"),
  31542. name: "Back",
  31543. image: {
  31544. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31545. extra: 3020/2886,
  31546. bottom: 30/3050
  31547. }
  31548. },
  31549. dick: {
  31550. height: math.unit(0.98, "feet"),
  31551. name: "Dick",
  31552. image: {
  31553. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31554. }
  31555. },
  31556. anatomy: {
  31557. height: math.unit(2.86, "feet"),
  31558. name: "Anatomy",
  31559. image: {
  31560. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Really Small",
  31567. height: math.unit(2, "inches")
  31568. },
  31569. {
  31570. name: "Micro",
  31571. height: math.unit(5.583, "inches")
  31572. },
  31573. {
  31574. name: "Normal",
  31575. height: math.unit(5 + 7/12, "feet"),
  31576. default: true
  31577. },
  31578. {
  31579. name: "Macro",
  31580. height: math.unit(67, "feet")
  31581. },
  31582. {
  31583. name: "Megamacro",
  31584. height: math.unit(134, "feet")
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(9, "feet"),
  31593. weight: math.unit(120, "lb"),
  31594. name: "Front",
  31595. image: {
  31596. source: "./media/characters/sally/front.svg",
  31597. extra: 1506/1349,
  31598. bottom: 66/1572
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(9, "feet"),
  31606. default: true
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31612. {
  31613. front: {
  31614. height: math.unit(8, "feet"),
  31615. weight: math.unit(900, "lb"),
  31616. name: "Front",
  31617. image: {
  31618. source: "./media/characters/owen/front.svg",
  31619. extra: 1761/1657,
  31620. bottom: 74/1835
  31621. }
  31622. },
  31623. side: {
  31624. height: math.unit(8, "feet"),
  31625. weight: math.unit(900, "lb"),
  31626. name: "Side",
  31627. image: {
  31628. source: "./media/characters/owen/side.svg",
  31629. extra: 1797/1734,
  31630. bottom: 30/1827
  31631. }
  31632. },
  31633. back: {
  31634. height: math.unit(8, "feet"),
  31635. weight: math.unit(900, "lb"),
  31636. name: "Back",
  31637. image: {
  31638. source: "./media/characters/owen/back.svg",
  31639. extra: 1796/1706,
  31640. bottom: 59/1855
  31641. }
  31642. },
  31643. maw: {
  31644. height: math.unit(1.76, "feet"),
  31645. name: "Maw",
  31646. image: {
  31647. source: "./media/characters/owen/maw.svg"
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Normal",
  31654. height: math.unit(8, "feet"),
  31655. default: true
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31661. {
  31662. front: {
  31663. height: math.unit(4, "feet"),
  31664. weight: math.unit(400, "lb"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/ryth/front.svg",
  31668. extra: 1920/1748,
  31669. bottom: 42/1962
  31670. }
  31671. },
  31672. back: {
  31673. height: math.unit(4, "feet"),
  31674. weight: math.unit(400, "lb"),
  31675. name: "Back",
  31676. image: {
  31677. source: "./media/characters/ryth/back.svg",
  31678. extra: 1897/1690,
  31679. bottom: 89/1986
  31680. }
  31681. },
  31682. mouth: {
  31683. height: math.unit(1.39, "feet"),
  31684. name: "Mouth",
  31685. image: {
  31686. source: "./media/characters/ryth/mouth.svg"
  31687. }
  31688. },
  31689. tailmaw: {
  31690. height: math.unit(1.23, "feet"),
  31691. name: "Tailmaw",
  31692. image: {
  31693. source: "./media/characters/ryth/tailmaw.svg"
  31694. }
  31695. },
  31696. goia: {
  31697. height: math.unit(12, "feet"),
  31698. weight: math.unit(10800, "lb"),
  31699. name: "Goia",
  31700. image: {
  31701. source: "./media/characters/ryth/goia.svg",
  31702. extra: 3450/3198,
  31703. bottom: 61/3511
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(4, "feet"),
  31711. default: true
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31717. {
  31718. front: {
  31719. height: math.unit(7, "feet"),
  31720. weight: math.unit(180, "lb"),
  31721. name: "Front",
  31722. image: {
  31723. source: "./media/characters/necrolance/front.svg",
  31724. extra: 1062/947,
  31725. bottom: 41/1103
  31726. }
  31727. },
  31728. back: {
  31729. height: math.unit(7, "feet"),
  31730. weight: math.unit(180, "lb"),
  31731. name: "Back",
  31732. image: {
  31733. source: "./media/characters/necrolance/back.svg",
  31734. extra: 1045/984,
  31735. bottom: 14/1059
  31736. }
  31737. },
  31738. wing: {
  31739. height: math.unit(2.67, "feet"),
  31740. name: "Wing",
  31741. image: {
  31742. source: "./media/characters/necrolance/wing.svg"
  31743. }
  31744. },
  31745. },
  31746. [
  31747. {
  31748. name: "Normal",
  31749. height: math.unit(7, "feet"),
  31750. default: true
  31751. },
  31752. ]
  31753. ))
  31754. characterMakers.push(() => makeCharacter(
  31755. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31756. {
  31757. front: {
  31758. height: math.unit(76, "meters"),
  31759. weight: math.unit(30000, "tons"),
  31760. name: "Front",
  31761. image: {
  31762. source: "./media/characters/tyler/front.svg",
  31763. extra: 1640/1640,
  31764. bottom: 114/1754
  31765. }
  31766. },
  31767. },
  31768. [
  31769. {
  31770. name: "Macro",
  31771. height: math.unit(76, "meters"),
  31772. default: true
  31773. },
  31774. ]
  31775. ))
  31776. characterMakers.push(() => makeCharacter(
  31777. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31778. {
  31779. front: {
  31780. height: math.unit(4 + 11/12, "feet"),
  31781. weight: math.unit(132, "lb"),
  31782. name: "Front",
  31783. image: {
  31784. source: "./media/characters/icey/front.svg",
  31785. extra: 2750/2550,
  31786. bottom: 33/2783
  31787. }
  31788. },
  31789. back: {
  31790. height: math.unit(4 + 11/12, "feet"),
  31791. weight: math.unit(132, "lb"),
  31792. name: "Back",
  31793. image: {
  31794. source: "./media/characters/icey/back.svg",
  31795. extra: 2624/2481,
  31796. bottom: 35/2659
  31797. }
  31798. },
  31799. },
  31800. [
  31801. {
  31802. name: "Normal",
  31803. height: math.unit(4 + 11/12, "feet"),
  31804. default: true
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(100, "feet"),
  31813. weight: math.unit(0, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/smile/front.svg",
  31817. extra: 2983/2912,
  31818. bottom: 162/3145
  31819. }
  31820. },
  31821. back: {
  31822. height: math.unit(100, "feet"),
  31823. weight: math.unit(0, "lb"),
  31824. name: "Back",
  31825. image: {
  31826. source: "./media/characters/smile/back.svg",
  31827. extra: 3143/3031,
  31828. bottom: 91/3234
  31829. }
  31830. },
  31831. head: {
  31832. height: math.unit(26.3, "feet"),
  31833. weight: math.unit(0, "lb"),
  31834. name: "Head",
  31835. image: {
  31836. source: "./media/characters/smile/head.svg"
  31837. }
  31838. },
  31839. collar: {
  31840. height: math.unit(5.3, "feet"),
  31841. weight: math.unit(0, "lb"),
  31842. name: "Collar",
  31843. image: {
  31844. source: "./media/characters/smile/collar.svg"
  31845. }
  31846. },
  31847. },
  31848. [
  31849. {
  31850. name: "Macro",
  31851. height: math.unit(100, "feet"),
  31852. default: true
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31858. {
  31859. dragon: {
  31860. height: math.unit(26, "feet"),
  31861. weight: math.unit(36, "tons"),
  31862. name: "Dragon",
  31863. image: {
  31864. source: "./media/characters/arimphae/dragon.svg",
  31865. extra: 1574/983,
  31866. bottom: 357/1931
  31867. }
  31868. },
  31869. drake: {
  31870. height: math.unit(9, "feet"),
  31871. weight: math.unit(1.5, "tons"),
  31872. name: "Drake",
  31873. image: {
  31874. source: "./media/characters/arimphae/drake.svg",
  31875. extra: 1120/925,
  31876. bottom: 435/1555
  31877. }
  31878. },
  31879. },
  31880. [
  31881. {
  31882. name: "Small",
  31883. height: math.unit(26*5/9, "feet")
  31884. },
  31885. {
  31886. name: "Normal",
  31887. height: math.unit(26, "feet"),
  31888. default: true
  31889. },
  31890. ]
  31891. ))
  31892. characterMakers.push(() => makeCharacter(
  31893. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31894. {
  31895. front: {
  31896. height: math.unit(8 + 9/12, "feet"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/xander/front.svg",
  31900. extra: 848/673,
  31901. bottom: 62/910
  31902. }
  31903. },
  31904. },
  31905. [
  31906. {
  31907. name: "Normal",
  31908. height: math.unit(8 + 9/12, "feet"),
  31909. default: true
  31910. },
  31911. {
  31912. name: "Gaze Grabber",
  31913. height: math.unit(13 + 8/12, "feet")
  31914. },
  31915. {
  31916. name: "Jaw Dropper",
  31917. height: math.unit(27, "feet")
  31918. },
  31919. {
  31920. name: "Show Stopper",
  31921. height: math.unit(136, "feet")
  31922. },
  31923. {
  31924. name: "Superstar",
  31925. height: math.unit(1.9e6, "miles")
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31931. {
  31932. side: {
  31933. height: math.unit(2100, "feet"),
  31934. name: "Side",
  31935. image: {
  31936. source: "./media/characters/osiris/side.svg",
  31937. extra: 1105/939,
  31938. bottom: 167/1272
  31939. }
  31940. },
  31941. },
  31942. [
  31943. {
  31944. name: "Macro",
  31945. height: math.unit(2100, "feet"),
  31946. default: true
  31947. },
  31948. ]
  31949. ))
  31950. characterMakers.push(() => makeCharacter(
  31951. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31952. {
  31953. front: {
  31954. height: math.unit(6 + 8/12, "feet"),
  31955. weight: math.unit(225, "lb"),
  31956. name: "Front",
  31957. image: {
  31958. source: "./media/characters/rhys-londe/front.svg",
  31959. extra: 2258/2141,
  31960. bottom: 188/2446
  31961. }
  31962. },
  31963. back: {
  31964. height: math.unit(6 + 8/12, "feet"),
  31965. weight: math.unit(225, "lb"),
  31966. name: "Back",
  31967. image: {
  31968. source: "./media/characters/rhys-londe/back.svg",
  31969. extra: 2237/2137,
  31970. bottom: 63/2300
  31971. }
  31972. },
  31973. frontNsfw: {
  31974. height: math.unit(6 + 8/12, "feet"),
  31975. weight: math.unit(225, "lb"),
  31976. name: "Front (NSFW)",
  31977. image: {
  31978. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31979. extra: 2258/2141,
  31980. bottom: 188/2446
  31981. }
  31982. },
  31983. backNsfw: {
  31984. height: math.unit(6 + 8/12, "feet"),
  31985. weight: math.unit(225, "lb"),
  31986. name: "Back (NSFW)",
  31987. image: {
  31988. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31989. extra: 2237/2137,
  31990. bottom: 63/2300
  31991. }
  31992. },
  31993. dick: {
  31994. height: math.unit(30, "inches"),
  31995. name: "Dick",
  31996. image: {
  31997. source: "./media/characters/rhys-londe/dick.svg"
  31998. }
  31999. },
  32000. maw: {
  32001. height: math.unit(1.6, "feet"),
  32002. name: "Maw",
  32003. image: {
  32004. source: "./media/characters/rhys-londe/maw.svg"
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Normal",
  32011. height: math.unit(6 + 8/12, "feet"),
  32012. default: true
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32018. {
  32019. front: {
  32020. height: math.unit(3 + 10/12, "feet"),
  32021. weight: math.unit(90, "lb"),
  32022. name: "Front",
  32023. image: {
  32024. source: "./media/characters/taivas-ensim/front.svg",
  32025. extra: 1327/1216,
  32026. bottom: 96/1423
  32027. }
  32028. },
  32029. back: {
  32030. height: math.unit(3 + 10/12, "feet"),
  32031. weight: math.unit(90, "lb"),
  32032. name: "Back",
  32033. image: {
  32034. source: "./media/characters/taivas-ensim/back.svg",
  32035. extra: 1355/1247,
  32036. bottom: 11/1366
  32037. }
  32038. },
  32039. frontNsfw: {
  32040. height: math.unit(3 + 10/12, "feet"),
  32041. weight: math.unit(90, "lb"),
  32042. name: "Front (NSFW)",
  32043. image: {
  32044. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32045. extra: 1327/1216,
  32046. bottom: 96/1423
  32047. }
  32048. },
  32049. backNsfw: {
  32050. height: math.unit(3 + 10/12, "feet"),
  32051. weight: math.unit(90, "lb"),
  32052. name: "Back (NSFW)",
  32053. image: {
  32054. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32055. extra: 1355/1247,
  32056. bottom: 11/1366
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Normal",
  32063. height: math.unit(3 + 10/12, "feet"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32070. {
  32071. front: {
  32072. height: math.unit(9 + 6/12, "feet"),
  32073. weight: math.unit(940, "lb"),
  32074. name: "Front",
  32075. image: {
  32076. source: "./media/characters/byliss/front.svg",
  32077. extra: 1327/1290,
  32078. bottom: 82/1409
  32079. }
  32080. },
  32081. back: {
  32082. height: math.unit(9 + 6/12, "feet"),
  32083. weight: math.unit(940, "lb"),
  32084. name: "Back",
  32085. image: {
  32086. source: "./media/characters/byliss/back.svg",
  32087. extra: 1376/1349,
  32088. bottom: 9/1385
  32089. }
  32090. },
  32091. frontNsfw: {
  32092. height: math.unit(9 + 6/12, "feet"),
  32093. weight: math.unit(940, "lb"),
  32094. name: "Front (NSFW)",
  32095. image: {
  32096. source: "./media/characters/byliss/front-nsfw.svg",
  32097. extra: 1327/1290,
  32098. bottom: 82/1409
  32099. }
  32100. },
  32101. backNsfw: {
  32102. height: math.unit(9 + 6/12, "feet"),
  32103. weight: math.unit(940, "lb"),
  32104. name: "Back (NSFW)",
  32105. image: {
  32106. source: "./media/characters/byliss/back-nsfw.svg",
  32107. extra: 1376/1349,
  32108. bottom: 9/1385
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(9 + 6/12, "feet"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(5 + 2/12, "feet"),
  32125. weight: math.unit(200, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/noraly/front.svg",
  32129. extra: 4985/4773,
  32130. bottom: 150/5135
  32131. }
  32132. },
  32133. full: {
  32134. height: math.unit(5 + 2/12, "feet"),
  32135. weight: math.unit(164, "lb"),
  32136. name: "Full",
  32137. image: {
  32138. source: "./media/characters/noraly/full.svg",
  32139. extra: 1114/1059,
  32140. bottom: 35/1149
  32141. }
  32142. },
  32143. fuller: {
  32144. height: math.unit(5 + 2/12, "feet"),
  32145. weight: math.unit(230, "lb"),
  32146. name: "Fuller",
  32147. image: {
  32148. source: "./media/characters/noraly/fuller.svg",
  32149. extra: 1114/1059,
  32150. bottom: 35/1149
  32151. }
  32152. },
  32153. fullest: {
  32154. height: math.unit(5 + 2/12, "feet"),
  32155. weight: math.unit(300, "lb"),
  32156. name: "Fullest",
  32157. image: {
  32158. source: "./media/characters/noraly/fullest.svg",
  32159. extra: 1114/1059,
  32160. bottom: 35/1149
  32161. }
  32162. },
  32163. },
  32164. [
  32165. {
  32166. name: "Normal",
  32167. height: math.unit(5 + 2/12, "feet"),
  32168. default: true
  32169. },
  32170. ]
  32171. ))
  32172. characterMakers.push(() => makeCharacter(
  32173. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32174. {
  32175. front: {
  32176. height: math.unit(5 + 2/12, "feet"),
  32177. weight: math.unit(210, "lb"),
  32178. name: "Front",
  32179. image: {
  32180. source: "./media/characters/pera/front.svg",
  32181. extra: 1560/1531,
  32182. bottom: 165/1725
  32183. }
  32184. },
  32185. back: {
  32186. height: math.unit(5 + 2/12, "feet"),
  32187. weight: math.unit(210, "lb"),
  32188. name: "Back",
  32189. image: {
  32190. source: "./media/characters/pera/back.svg",
  32191. extra: 1523/1493,
  32192. bottom: 152/1675
  32193. }
  32194. },
  32195. dick: {
  32196. height: math.unit(2.4, "feet"),
  32197. name: "Dick",
  32198. image: {
  32199. source: "./media/characters/pera/dick.svg"
  32200. }
  32201. },
  32202. },
  32203. [
  32204. {
  32205. name: "Normal",
  32206. height: math.unit(5 + 2/12, "feet"),
  32207. default: true
  32208. },
  32209. ]
  32210. ))
  32211. characterMakers.push(() => makeCharacter(
  32212. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32213. {
  32214. front: {
  32215. height: math.unit(12, "feet"),
  32216. weight: math.unit(3200, "lb"),
  32217. name: "Front",
  32218. image: {
  32219. source: "./media/characters/julian/front.svg",
  32220. extra: 2962/2701,
  32221. bottom: 184/3146
  32222. }
  32223. },
  32224. maw: {
  32225. height: math.unit(5.35, "feet"),
  32226. name: "Maw",
  32227. image: {
  32228. source: "./media/characters/julian/maw.svg"
  32229. }
  32230. },
  32231. paw: {
  32232. height: math.unit(3.07, "feet"),
  32233. name: "Paw",
  32234. image: {
  32235. source: "./media/characters/julian/paw.svg"
  32236. }
  32237. },
  32238. },
  32239. [
  32240. {
  32241. name: "Default",
  32242. height: math.unit(12, "feet"),
  32243. default: true
  32244. },
  32245. {
  32246. name: "Big",
  32247. height: math.unit(50, "feet")
  32248. },
  32249. {
  32250. name: "Really Big",
  32251. height: math.unit(1, "mile")
  32252. },
  32253. {
  32254. name: "Extremely Big",
  32255. height: math.unit(100, "miles")
  32256. },
  32257. {
  32258. name: "Planet Hugger",
  32259. height: math.unit(200, "megameters")
  32260. },
  32261. {
  32262. name: "Unreasonably Big",
  32263. height: math.unit(1e300, "meters")
  32264. },
  32265. ]
  32266. ))
  32267. characterMakers.push(() => makeCharacter(
  32268. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32269. {
  32270. solgooleo: {
  32271. height: math.unit(4, "meters"),
  32272. weight: math.unit(6000*1.5, "kg"),
  32273. volume: math.unit(6000, "liters"),
  32274. name: "Solgooleo",
  32275. image: {
  32276. source: "./media/characters/pi/solgooleo.svg",
  32277. extra: 388/331,
  32278. bottom: 29/417
  32279. }
  32280. },
  32281. },
  32282. [
  32283. {
  32284. name: "Normal",
  32285. height: math.unit(4, "meters"),
  32286. default: true
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32292. {
  32293. front: {
  32294. height: math.unit(8 + 2/12, "feet"),
  32295. weight: math.unit(4, "tons"),
  32296. name: "Front",
  32297. image: {
  32298. source: "./media/characters/shaun/front.svg",
  32299. extra: 1550/1505,
  32300. bottom: 353/1903
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Lorg",
  32307. height: math.unit(8 + 2/12, "feet"),
  32308. default: true
  32309. },
  32310. ]
  32311. ))
  32312. characterMakers.push(() => makeCharacter(
  32313. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32314. {
  32315. front: {
  32316. height: math.unit(7, "feet"),
  32317. name: "Front",
  32318. image: {
  32319. source: "./media/characters/sini/front.svg",
  32320. extra: 726/678,
  32321. bottom: 35/761
  32322. }
  32323. },
  32324. back: {
  32325. height: math.unit(7, "feet"),
  32326. name: "Back",
  32327. image: {
  32328. source: "./media/characters/sini/back.svg",
  32329. extra: 743/701,
  32330. bottom: 12/755
  32331. }
  32332. },
  32333. mawAnthro: {
  32334. height: math.unit(2.14, "feet"),
  32335. name: "Maw (Anthro)",
  32336. image: {
  32337. source: "./media/characters/sini/maw-anthro.svg"
  32338. }
  32339. },
  32340. dick: {
  32341. height: math.unit(1.45, "feet"),
  32342. name: "Dick (Anthro)",
  32343. image: {
  32344. source: "./media/characters/sini/dick-anthro.svg"
  32345. }
  32346. },
  32347. feral: {
  32348. height: math.unit(16, "feet"),
  32349. name: "Feral",
  32350. image: {
  32351. source: "./media/characters/sini/feral.svg",
  32352. extra: 814/605,
  32353. bottom: 11/825
  32354. }
  32355. },
  32356. mawFeral: {
  32357. height: math.unit(5.66, "feet"),
  32358. name: "Maw-feral",
  32359. image: {
  32360. source: "./media/characters/sini/maw-feral.svg"
  32361. }
  32362. },
  32363. footFeral: {
  32364. height: math.unit(5.17, "feet"),
  32365. name: "Foot-feral",
  32366. image: {
  32367. source: "./media/characters/sini/foot-feral.svg"
  32368. }
  32369. },
  32370. },
  32371. [
  32372. {
  32373. name: "Normal",
  32374. height: math.unit(7, "feet"),
  32375. default: true
  32376. },
  32377. ]
  32378. ))
  32379. characterMakers.push(() => makeCharacter(
  32380. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32381. {
  32382. side: {
  32383. height: math.unit(13, "meters"),
  32384. weight: math.unit(9072, "kg"),
  32385. name: "Side",
  32386. image: {
  32387. source: "./media/characters/raylldo/side.svg",
  32388. extra: 403/344,
  32389. bottom: 42/445
  32390. }
  32391. },
  32392. leaping: {
  32393. height: math.unit(12.3, "meters"),
  32394. weight: math.unit(9072, "kg"),
  32395. name: "Leaping",
  32396. image: {
  32397. source: "./media/characters/raylldo/leaping.svg",
  32398. extra: 470/249,
  32399. bottom: 13/483
  32400. }
  32401. },
  32402. flying: {
  32403. height: math.unit(18, "meters"),
  32404. weight: math.unit(9072, "kg"),
  32405. name: "Flying",
  32406. image: {
  32407. source: "./media/characters/raylldo/flying.svg"
  32408. }
  32409. },
  32410. head: {
  32411. height: math.unit(5.85, "meters"),
  32412. name: "Head",
  32413. image: {
  32414. source: "./media/characters/raylldo/head.svg"
  32415. }
  32416. },
  32417. maw: {
  32418. height: math.unit(5.32, "meters"),
  32419. name: "Maw",
  32420. image: {
  32421. source: "./media/characters/raylldo/maw.svg"
  32422. }
  32423. },
  32424. eye: {
  32425. height: math.unit(0.54, "meters"),
  32426. name: "Eye",
  32427. image: {
  32428. source: "./media/characters/raylldo/eye.svg"
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Normal",
  32435. height: math.unit(13, "meters"),
  32436. default: true
  32437. },
  32438. ]
  32439. ))
  32440. characterMakers.push(() => makeCharacter(
  32441. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32442. {
  32443. anthroFront: {
  32444. height: math.unit(9, "feet"),
  32445. weight: math.unit(600, "lb"),
  32446. name: "Anthro (Front)",
  32447. image: {
  32448. source: "./media/characters/glint/anthro-front.svg",
  32449. extra: 1097/1018,
  32450. bottom: 28/1125
  32451. }
  32452. },
  32453. anthroBack: {
  32454. height: math.unit(9, "feet"),
  32455. weight: math.unit(600, "lb"),
  32456. name: "Anthro (Back)",
  32457. image: {
  32458. source: "./media/characters/glint/anthro-back.svg",
  32459. extra: 1154/997,
  32460. bottom: 36/1190
  32461. }
  32462. },
  32463. feral: {
  32464. height: math.unit(11, "feet"),
  32465. weight: math.unit(50000, "lb"),
  32466. name: "Feral",
  32467. image: {
  32468. source: "./media/characters/glint/feral.svg",
  32469. extra: 3035/1585,
  32470. bottom: 1169/4204
  32471. }
  32472. },
  32473. dickAnthro: {
  32474. height: math.unit(0.7, "meters"),
  32475. name: "Dick (Anthro)",
  32476. image: {
  32477. source: "./media/characters/glint/dick-anthro.svg"
  32478. }
  32479. },
  32480. dickFeral: {
  32481. height: math.unit(2.65, "meters"),
  32482. name: "Dick (Feral)",
  32483. image: {
  32484. source: "./media/characters/glint/dick-feral.svg"
  32485. }
  32486. },
  32487. slitHidden: {
  32488. height: math.unit(5.85, "meters"),
  32489. name: "Slit (Hidden)",
  32490. image: {
  32491. source: "./media/characters/glint/slit-hidden.svg"
  32492. }
  32493. },
  32494. slitErect: {
  32495. height: math.unit(5.85, "meters"),
  32496. name: "Slit (Erect)",
  32497. image: {
  32498. source: "./media/characters/glint/slit-erect.svg"
  32499. }
  32500. },
  32501. mawAnthro: {
  32502. height: math.unit(0.63, "meters"),
  32503. name: "Maw (Anthro)",
  32504. image: {
  32505. source: "./media/characters/glint/maw.svg"
  32506. }
  32507. },
  32508. mawFeral: {
  32509. height: math.unit(2.89, "meters"),
  32510. name: "Maw (Feral)",
  32511. image: {
  32512. source: "./media/characters/glint/maw.svg"
  32513. }
  32514. },
  32515. },
  32516. [
  32517. {
  32518. name: "Normal",
  32519. height: math.unit(9, "feet"),
  32520. default: true
  32521. },
  32522. ]
  32523. ))
  32524. characterMakers.push(() => makeCharacter(
  32525. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32526. {
  32527. side: {
  32528. height: math.unit(15, "feet"),
  32529. weight: math.unit(5000, "kg"),
  32530. name: "Side",
  32531. image: {
  32532. source: "./media/characters/kairne/side.svg",
  32533. extra: 979/811,
  32534. bottom: 13/992
  32535. }
  32536. },
  32537. front: {
  32538. height: math.unit(15, "feet"),
  32539. weight: math.unit(5000, "kg"),
  32540. name: "Front",
  32541. image: {
  32542. source: "./media/characters/kairne/front.svg",
  32543. extra: 908/814,
  32544. bottom: 26/934
  32545. }
  32546. },
  32547. sideNsfw: {
  32548. height: math.unit(15, "feet"),
  32549. weight: math.unit(5000, "kg"),
  32550. name: "Side (NSFW)",
  32551. image: {
  32552. source: "./media/characters/kairne/side-nsfw.svg",
  32553. extra: 979/811,
  32554. bottom: 13/992
  32555. }
  32556. },
  32557. frontNsfw: {
  32558. height: math.unit(15, "feet"),
  32559. weight: math.unit(5000, "kg"),
  32560. name: "Front (NSFW)",
  32561. image: {
  32562. source: "./media/characters/kairne/front-nsfw.svg",
  32563. extra: 908/814,
  32564. bottom: 26/934
  32565. }
  32566. },
  32567. dickCaged: {
  32568. height: math.unit(0.65, "meters"),
  32569. name: "Dick-caged",
  32570. image: {
  32571. source: "./media/characters/kairne/dick-caged.svg"
  32572. }
  32573. },
  32574. dick: {
  32575. height: math.unit(0.79, "meters"),
  32576. name: "Dick",
  32577. image: {
  32578. source: "./media/characters/kairne/dick.svg"
  32579. }
  32580. },
  32581. genitals: {
  32582. height: math.unit(1.29, "meters"),
  32583. name: "Genitals",
  32584. image: {
  32585. source: "./media/characters/kairne/genitals.svg"
  32586. }
  32587. },
  32588. maw: {
  32589. height: math.unit(1.73, "meters"),
  32590. name: "Maw",
  32591. image: {
  32592. source: "./media/characters/kairne/maw.svg"
  32593. }
  32594. },
  32595. },
  32596. [
  32597. {
  32598. name: "Normal",
  32599. height: math.unit(15, "feet"),
  32600. default: true
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32606. {
  32607. front: {
  32608. height: math.unit(5 + 8/12, "feet"),
  32609. weight: math.unit(139, "lb"),
  32610. name: "Front",
  32611. image: {
  32612. source: "./media/characters/biscuit-jackal/front.svg",
  32613. extra: 2106/1961,
  32614. bottom: 58/2164
  32615. }
  32616. },
  32617. back: {
  32618. height: math.unit(5 + 8/12, "feet"),
  32619. weight: math.unit(139, "lb"),
  32620. name: "Back",
  32621. image: {
  32622. source: "./media/characters/biscuit-jackal/back.svg",
  32623. extra: 2132/1976,
  32624. bottom: 57/2189
  32625. }
  32626. },
  32627. werejackal: {
  32628. height: math.unit(6 + 3/12, "feet"),
  32629. weight: math.unit(188, "lb"),
  32630. name: "Werejackal",
  32631. image: {
  32632. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32633. extra: 2373/2178,
  32634. bottom: 53/2426
  32635. }
  32636. },
  32637. },
  32638. [
  32639. {
  32640. name: "Normal",
  32641. height: math.unit(5 + 8/12, "feet"),
  32642. default: true
  32643. },
  32644. ]
  32645. ))
  32646. characterMakers.push(() => makeCharacter(
  32647. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32648. {
  32649. front: {
  32650. height: math.unit(140, "cm"),
  32651. weight: math.unit(45, "kg"),
  32652. name: "Front",
  32653. image: {
  32654. source: "./media/characters/tayra-white/front.svg",
  32655. extra: 2229/2192,
  32656. bottom: 75/2304
  32657. }
  32658. },
  32659. },
  32660. [
  32661. {
  32662. name: "Normal",
  32663. height: math.unit(140, "cm"),
  32664. default: true
  32665. },
  32666. ]
  32667. ))
  32668. characterMakers.push(() => makeCharacter(
  32669. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32670. {
  32671. front: {
  32672. height: math.unit(4 + 5/12, "feet"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/scoop/front.svg",
  32676. extra: 1257/1136,
  32677. bottom: 69/1326
  32678. }
  32679. },
  32680. back: {
  32681. height: math.unit(4 + 5/12, "feet"),
  32682. name: "Back",
  32683. image: {
  32684. source: "./media/characters/scoop/back.svg",
  32685. extra: 1321/1152,
  32686. bottom: 32/1353
  32687. }
  32688. },
  32689. maw: {
  32690. height: math.unit(0.68, "feet"),
  32691. name: "Maw",
  32692. image: {
  32693. source: "./media/characters/scoop/maw.svg"
  32694. }
  32695. },
  32696. },
  32697. [
  32698. {
  32699. name: "Really Small",
  32700. height: math.unit(1, "mm")
  32701. },
  32702. {
  32703. name: "Micro",
  32704. height: math.unit(1, "inch")
  32705. },
  32706. {
  32707. name: "Normal",
  32708. height: math.unit(4 + 5/12, "feet"),
  32709. default: true
  32710. },
  32711. {
  32712. name: "Macro",
  32713. height: math.unit(200, "feet")
  32714. },
  32715. {
  32716. name: "Megamacro",
  32717. height: math.unit(3240, "feet")
  32718. },
  32719. {
  32720. name: "Teramacro",
  32721. height: math.unit(2500, "miles")
  32722. },
  32723. ]
  32724. ))
  32725. characterMakers.push(() => makeCharacter(
  32726. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32727. {
  32728. front: {
  32729. height: math.unit(15 + 7/12, "feet"),
  32730. name: "Front",
  32731. image: {
  32732. source: "./media/characters/saphinara/front.svg",
  32733. extra: 604/546,
  32734. bottom: 19/623
  32735. }
  32736. },
  32737. side: {
  32738. height: math.unit(15 + 7/12, "feet"),
  32739. name: "Side",
  32740. image: {
  32741. source: "./media/characters/saphinara/side.svg",
  32742. extra: 605/547,
  32743. bottom: 6/611
  32744. }
  32745. },
  32746. back: {
  32747. height: math.unit(15 + 7/12, "feet"),
  32748. name: "Back",
  32749. image: {
  32750. source: "./media/characters/saphinara/back.svg",
  32751. extra: 591/531,
  32752. bottom: 13/604
  32753. }
  32754. },
  32755. frontTail: {
  32756. height: math.unit(15 + 7/12, "feet"),
  32757. name: "Front (Full Tail)",
  32758. image: {
  32759. source: "./media/characters/saphinara/front-tail.svg",
  32760. extra: 748/547,
  32761. bottom: 66/814
  32762. }
  32763. },
  32764. },
  32765. [
  32766. {
  32767. name: "Normal",
  32768. height: math.unit(15 + 7/12, "feet"),
  32769. default: true
  32770. },
  32771. {
  32772. name: "Angry",
  32773. height: math.unit(30 + 6/12, "feet")
  32774. },
  32775. {
  32776. name: "Enraged",
  32777. height: math.unit(102 + 1/12, "feet")
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32783. {
  32784. front: {
  32785. height: math.unit(6 + 8/12, "feet"),
  32786. weight: math.unit(300, "lb"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/jrain/front.svg",
  32790. extra: 3039/2865,
  32791. bottom: 399/3438
  32792. }
  32793. },
  32794. back: {
  32795. height: math.unit(6 + 8/12, "feet"),
  32796. weight: math.unit(300, "lb"),
  32797. name: "Back",
  32798. image: {
  32799. source: "./media/characters/jrain/back.svg",
  32800. extra: 3089/2938,
  32801. bottom: 172/3261
  32802. }
  32803. },
  32804. head: {
  32805. height: math.unit(2.14, "feet"),
  32806. name: "Head",
  32807. image: {
  32808. source: "./media/characters/jrain/head.svg"
  32809. }
  32810. },
  32811. maw: {
  32812. height: math.unit(1.77, "feet"),
  32813. name: "Maw",
  32814. image: {
  32815. source: "./media/characters/jrain/maw.svg"
  32816. }
  32817. },
  32818. leftHand: {
  32819. height: math.unit(1.1, "feet"),
  32820. name: "Left Hand",
  32821. image: {
  32822. source: "./media/characters/jrain/left-hand.svg"
  32823. }
  32824. },
  32825. rightHand: {
  32826. height: math.unit(1.1, "feet"),
  32827. name: "Right Hand",
  32828. image: {
  32829. source: "./media/characters/jrain/right-hand.svg"
  32830. }
  32831. },
  32832. eye: {
  32833. height: math.unit(0.35, "feet"),
  32834. name: "Eye",
  32835. image: {
  32836. source: "./media/characters/jrain/eye.svg"
  32837. }
  32838. },
  32839. },
  32840. [
  32841. {
  32842. name: "Normal",
  32843. height: math.unit(6 + 8/12, "feet"),
  32844. default: true
  32845. },
  32846. {
  32847. name: "Casually Large",
  32848. height: math.unit(25, "feet")
  32849. },
  32850. {
  32851. name: "Giant",
  32852. height: math.unit(100, "feet")
  32853. },
  32854. {
  32855. name: "Kaiju",
  32856. height: math.unit(300, "feet")
  32857. },
  32858. ]
  32859. ))
  32860. characterMakers.push(() => makeCharacter(
  32861. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32862. {
  32863. dragon: {
  32864. height: math.unit(5, "meters"),
  32865. name: "Dragon",
  32866. image: {
  32867. source: "./media/characters/sabrina/dragon.svg",
  32868. extra: 3670 / 2365,
  32869. bottom: 333 / 4003
  32870. }
  32871. },
  32872. gryphon: {
  32873. height: math.unit(3, "meters"),
  32874. name: "Gryphon",
  32875. image: {
  32876. source: "./media/characters/sabrina/gryphon.svg",
  32877. extra: 1576 / 945,
  32878. bottom: 71 / 1647
  32879. }
  32880. },
  32881. snake: {
  32882. height: math.unit(12, "meters"),
  32883. name: "Snake",
  32884. image: {
  32885. source: "./media/characters/sabrina/snake.svg",
  32886. extra: 1758 / 1320,
  32887. bottom: 186 / 1944
  32888. }
  32889. },
  32890. collar: {
  32891. height: math.unit(1.86, "meters"),
  32892. name: "Collar",
  32893. image: {
  32894. source: "./media/characters/sabrina/collar.svg"
  32895. }
  32896. },
  32897. eye: {
  32898. height: math.unit(0.53, "meters"),
  32899. name: "Eye",
  32900. image: {
  32901. source: "./media/characters/sabrina/eye.svg"
  32902. }
  32903. },
  32904. foot: {
  32905. height: math.unit(1.86, "meters"),
  32906. name: "Foot",
  32907. image: {
  32908. source: "./media/characters/sabrina/foot.svg"
  32909. }
  32910. },
  32911. hand: {
  32912. height: math.unit(1.32, "meters"),
  32913. name: "Hand",
  32914. image: {
  32915. source: "./media/characters/sabrina/hand.svg"
  32916. }
  32917. },
  32918. head: {
  32919. height: math.unit(2.44, "meters"),
  32920. name: "Head",
  32921. image: {
  32922. source: "./media/characters/sabrina/head.svg"
  32923. }
  32924. },
  32925. headAngry: {
  32926. height: math.unit(2.44, "meters"),
  32927. name: "Head (Angry))",
  32928. image: {
  32929. source: "./media/characters/sabrina/head-angry.svg"
  32930. }
  32931. },
  32932. maw: {
  32933. height: math.unit(1.65, "meters"),
  32934. name: "Maw",
  32935. image: {
  32936. source: "./media/characters/sabrina/maw.svg"
  32937. }
  32938. },
  32939. spikes: {
  32940. height: math.unit(1.69, "meters"),
  32941. name: "Spikes",
  32942. image: {
  32943. source: "./media/characters/sabrina/spikes.svg"
  32944. }
  32945. },
  32946. stomach: {
  32947. height: math.unit(1.15, "meters"),
  32948. name: "Stomach",
  32949. image: {
  32950. source: "./media/characters/sabrina/stomach.svg"
  32951. }
  32952. },
  32953. tongue: {
  32954. height: math.unit(1.27, "meters"),
  32955. name: "Tongue",
  32956. image: {
  32957. source: "./media/characters/sabrina/tongue.svg"
  32958. }
  32959. },
  32960. wingDorsal: {
  32961. height: math.unit(4.85, "meters"),
  32962. name: "Wing (Dorsal)",
  32963. image: {
  32964. source: "./media/characters/sabrina/wing-dorsal.svg"
  32965. }
  32966. },
  32967. wingVentral: {
  32968. height: math.unit(4.85, "meters"),
  32969. name: "Wing (Ventral)",
  32970. image: {
  32971. source: "./media/characters/sabrina/wing-ventral.svg"
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Normal",
  32978. height: math.unit(5, "meters"),
  32979. default: true
  32980. },
  32981. ]
  32982. ))
  32983. characterMakers.push(() => makeCharacter(
  32984. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32985. {
  32986. frontMaid: {
  32987. height: math.unit(5 + 5/12, "feet"),
  32988. weight: math.unit(130, "lb"),
  32989. name: "Front (Maid)",
  32990. image: {
  32991. source: "./media/characters/midnight-tales/front-maid.svg",
  32992. extra: 489/454,
  32993. bottom: 61/550
  32994. }
  32995. },
  32996. frontFormal: {
  32997. height: math.unit(5 + 5/12, "feet"),
  32998. weight: math.unit(130, "lb"),
  32999. name: "Front (Formal)",
  33000. image: {
  33001. source: "./media/characters/midnight-tales/front-formal.svg",
  33002. extra: 489/454,
  33003. bottom: 61/550
  33004. }
  33005. },
  33006. back: {
  33007. height: math.unit(5 + 5/12, "feet"),
  33008. weight: math.unit(130, "lb"),
  33009. name: "Back",
  33010. image: {
  33011. source: "./media/characters/midnight-tales/back.svg",
  33012. extra: 498/456,
  33013. bottom: 33/531
  33014. }
  33015. },
  33016. frontBeast: {
  33017. height: math.unit(40, "feet"),
  33018. weight: math.unit(64000, "lb"),
  33019. name: "Front (Beast)",
  33020. image: {
  33021. source: "./media/characters/midnight-tales/front-beast.svg",
  33022. extra: 927/860,
  33023. bottom: 53/980
  33024. }
  33025. },
  33026. backBeast: {
  33027. height: math.unit(40, "feet"),
  33028. weight: math.unit(64000, "lb"),
  33029. name: "Back (Beast)",
  33030. image: {
  33031. source: "./media/characters/midnight-tales/back-beast.svg",
  33032. extra: 929/855,
  33033. bottom: 16/945
  33034. }
  33035. },
  33036. footBeast: {
  33037. height: math.unit(6.7, "feet"),
  33038. name: "Foot (Beast)",
  33039. image: {
  33040. source: "./media/characters/midnight-tales/foot-beast.svg"
  33041. }
  33042. },
  33043. headBeast: {
  33044. height: math.unit(8, "feet"),
  33045. name: "Head (Beast)",
  33046. image: {
  33047. source: "./media/characters/midnight-tales/head-beast.svg"
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(5 + 5 / 12, "feet"),
  33055. default: true
  33056. },
  33057. {
  33058. name: "Macro",
  33059. height: math.unit(25, "feet")
  33060. },
  33061. ]
  33062. ))
  33063. characterMakers.push(() => makeCharacter(
  33064. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33065. {
  33066. front: {
  33067. height: math.unit(5 + 10/12, "feet"),
  33068. name: "Front",
  33069. image: {
  33070. source: "./media/characters/argon/front.svg",
  33071. extra: 2009/1935,
  33072. bottom: 118/2127
  33073. }
  33074. },
  33075. back: {
  33076. height: math.unit(5 + 10/12, "feet"),
  33077. name: "Back",
  33078. image: {
  33079. source: "./media/characters/argon/back.svg",
  33080. extra: 2047/1992,
  33081. bottom: 20/2067
  33082. }
  33083. },
  33084. frontDressed: {
  33085. height: math.unit(5 + 10/12, "feet"),
  33086. name: "Front (Dressed)",
  33087. image: {
  33088. source: "./media/characters/argon/front-dressed.svg",
  33089. extra: 2009/1935,
  33090. bottom: 118/2127
  33091. }
  33092. },
  33093. },
  33094. [
  33095. {
  33096. name: "Normal",
  33097. height: math.unit(5 + 10/12, "feet"),
  33098. default: true
  33099. },
  33100. ]
  33101. ))
  33102. characterMakers.push(() => makeCharacter(
  33103. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33104. {
  33105. front: {
  33106. height: math.unit(8 + 6/12, "feet"),
  33107. weight: math.unit(1150, "lb"),
  33108. name: "Front",
  33109. image: {
  33110. source: "./media/characters/kichi/front.svg",
  33111. extra: 1267/1164,
  33112. bottom: 61/1328
  33113. }
  33114. },
  33115. back: {
  33116. height: math.unit(8 + 6/12, "feet"),
  33117. weight: math.unit(1150, "lb"),
  33118. name: "Back",
  33119. image: {
  33120. source: "./media/characters/kichi/back.svg",
  33121. extra: 1273/1166,
  33122. bottom: 33/1306
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Normal",
  33129. height: math.unit(8 + 6/12, "feet"),
  33130. default: true
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(6, "feet"),
  33139. weight: math.unit(210, "lb"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/manetel-greyscale/front.svg",
  33143. extra: 350/312,
  33144. bottom: 8/358
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Micro",
  33151. height: math.unit(2, "inches")
  33152. },
  33153. {
  33154. name: "Normal",
  33155. height: math.unit(6, "feet"),
  33156. default: true
  33157. },
  33158. {
  33159. name: "Minimacro",
  33160. height: math.unit(17, "feet")
  33161. },
  33162. {
  33163. name: "Macro",
  33164. height: math.unit(117, "feet")
  33165. },
  33166. ]
  33167. ))
  33168. characterMakers.push(() => makeCharacter(
  33169. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33170. {
  33171. side: {
  33172. height: math.unit(5 + 1/12, "feet"),
  33173. weight: math.unit(418, "lb"),
  33174. name: "Side",
  33175. image: {
  33176. source: "./media/characters/softpurr/side.svg",
  33177. extra: 1993/1945,
  33178. bottom: 134/2127
  33179. }
  33180. },
  33181. front: {
  33182. height: math.unit(5 + 1/12, "feet"),
  33183. weight: math.unit(418, "lb"),
  33184. name: "Front",
  33185. image: {
  33186. source: "./media/characters/softpurr/front.svg",
  33187. extra: 1950/1856,
  33188. bottom: 174/2124
  33189. }
  33190. },
  33191. paw: {
  33192. height: math.unit(1, "feet"),
  33193. name: "Paw",
  33194. image: {
  33195. source: "./media/characters/softpurr/paw.svg"
  33196. }
  33197. },
  33198. },
  33199. [
  33200. {
  33201. name: "Normal",
  33202. height: math.unit(5 + 1/12, "feet"),
  33203. default: true
  33204. },
  33205. ]
  33206. ))
  33207. characterMakers.push(() => makeCharacter(
  33208. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33209. {
  33210. front: {
  33211. height: math.unit(260, "meters"),
  33212. name: "Front",
  33213. image: {
  33214. source: "./media/characters/anahita/front.svg",
  33215. extra: 665/635,
  33216. bottom: 89/754
  33217. }
  33218. },
  33219. },
  33220. [
  33221. {
  33222. name: "Macro",
  33223. height: math.unit(260, "meters"),
  33224. default: true
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33230. {
  33231. front: {
  33232. height: math.unit(4 + 10/12, "feet"),
  33233. weight: math.unit(160, "lb"),
  33234. name: "Front",
  33235. image: {
  33236. source: "./media/characters/chip-mouse/front.svg",
  33237. extra: 3528/3408,
  33238. bottom: 0/3528
  33239. }
  33240. },
  33241. frontNsfw: {
  33242. height: math.unit(4 + 10/12, "feet"),
  33243. weight: math.unit(160, "lb"),
  33244. name: "Front (NSFW)",
  33245. image: {
  33246. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33247. extra: 3528/3408,
  33248. bottom: 0/3528
  33249. }
  33250. },
  33251. },
  33252. [
  33253. {
  33254. name: "Normal",
  33255. height: math.unit(4 + 10/12, "feet"),
  33256. default: true
  33257. },
  33258. ]
  33259. ))
  33260. characterMakers.push(() => makeCharacter(
  33261. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33262. {
  33263. side: {
  33264. height: math.unit(10, "feet"),
  33265. weight: math.unit(14000, "lb"),
  33266. name: "Side",
  33267. image: {
  33268. source: "./media/characters/kremm/side.svg",
  33269. extra: 1390/1053,
  33270. bottom: 90/1480
  33271. }
  33272. },
  33273. gut: {
  33274. height: math.unit(5.8, "feet"),
  33275. name: "Gut",
  33276. image: {
  33277. source: "./media/characters/kremm/gut.svg"
  33278. }
  33279. },
  33280. ass: {
  33281. height: math.unit(6.1, "feet"),
  33282. name: "Ass",
  33283. image: {
  33284. source: "./media/characters/kremm/ass.svg"
  33285. }
  33286. },
  33287. jaws: {
  33288. height: math.unit(2.2, "feet"),
  33289. name: "Jaws",
  33290. image: {
  33291. source: "./media/characters/kremm/jaws.svg"
  33292. }
  33293. },
  33294. dick: {
  33295. height: math.unit(4.26, "feet"),
  33296. name: "Dick",
  33297. image: {
  33298. source: "./media/characters/kremm/dick.svg"
  33299. }
  33300. },
  33301. },
  33302. [
  33303. {
  33304. name: "Normal",
  33305. height: math.unit(10, "feet"),
  33306. default: true
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33312. {
  33313. front: {
  33314. height: math.unit(30, "stories"),
  33315. name: "Front",
  33316. image: {
  33317. source: "./media/characters/kai/front.svg",
  33318. extra: 1892/1718,
  33319. bottom: 162/2054
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Macro",
  33326. height: math.unit(30, "stories"),
  33327. default: true
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33333. {
  33334. front: {
  33335. height: math.unit(6 + 4/12, "feet"),
  33336. weight: math.unit(145, "lb"),
  33337. name: "Front",
  33338. image: {
  33339. source: "./media/characters/sykes/front.svg",
  33340. extra: 1321 / 1187,
  33341. bottom: 66 / 1387
  33342. }
  33343. },
  33344. back: {
  33345. height: math.unit(6 + 4/12, "feet"),
  33346. weight: math.unit(145, "lb"),
  33347. name: "Back",
  33348. image: {
  33349. source: "./media/characters/sykes/back.svg",
  33350. extra: 1326/1181,
  33351. bottom: 31/1357
  33352. }
  33353. },
  33354. handBack: {
  33355. height: math.unit(0.9, "feet"),
  33356. name: "Hand (Back)",
  33357. image: {
  33358. source: "./media/characters/sykes/hand-back.svg"
  33359. }
  33360. },
  33361. handFront: {
  33362. height: math.unit(0.839, "feet"),
  33363. name: "Hand (Front)",
  33364. image: {
  33365. source: "./media/characters/sykes/hand-front.svg"
  33366. }
  33367. },
  33368. leftFoot: {
  33369. height: math.unit(1.2, "feet"),
  33370. name: "Foot (Left)",
  33371. image: {
  33372. source: "./media/characters/sykes/foot-left.svg"
  33373. }
  33374. },
  33375. rightFoot: {
  33376. height: math.unit(1.2, "feet"),
  33377. name: "Foot (Right)",
  33378. image: {
  33379. source: "./media/characters/sykes/foot-right.svg"
  33380. }
  33381. },
  33382. maw: {
  33383. height: math.unit(1.93, "feet"),
  33384. name: "Maw",
  33385. image: {
  33386. source: "./media/characters/sykes/maw.svg"
  33387. }
  33388. },
  33389. teeth: {
  33390. height: math.unit(0.51, "feet"),
  33391. name: "Teeth",
  33392. image: {
  33393. source: "./media/characters/sykes/teeth.svg"
  33394. }
  33395. },
  33396. tongue: {
  33397. height: math.unit(2.13, "feet"),
  33398. name: "Tongue",
  33399. image: {
  33400. source: "./media/characters/sykes/tongue.svg"
  33401. }
  33402. },
  33403. uvula: {
  33404. height: math.unit(0.16, "feet"),
  33405. name: "Uvula",
  33406. image: {
  33407. source: "./media/characters/sykes/uvula.svg"
  33408. }
  33409. },
  33410. collar: {
  33411. height: math.unit(0.287, "feet"),
  33412. name: "Collar",
  33413. image: {
  33414. source: "./media/characters/sykes/collar.svg"
  33415. }
  33416. },
  33417. },
  33418. [
  33419. {
  33420. name: "Shrunken",
  33421. height: math.unit(5, "inches")
  33422. },
  33423. {
  33424. name: "Normal",
  33425. height: math.unit(6 + 4 / 12, "feet"),
  33426. default: true
  33427. },
  33428. {
  33429. name: "Big",
  33430. height: math.unit(15, "feet")
  33431. },
  33432. ]
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33436. {
  33437. front: {
  33438. height: math.unit(5 + 8/12, "feet"),
  33439. weight: math.unit(190, "lb"),
  33440. name: "Front",
  33441. image: {
  33442. source: "./media/characters/oven-otter/front.svg",
  33443. extra: 1809/1740,
  33444. bottom: 181/1990
  33445. }
  33446. },
  33447. back: {
  33448. height: math.unit(5 + 8/12, "feet"),
  33449. weight: math.unit(190, "lb"),
  33450. name: "Back",
  33451. image: {
  33452. source: "./media/characters/oven-otter/back.svg",
  33453. extra: 1709/1635,
  33454. bottom: 118/1827
  33455. }
  33456. },
  33457. hand: {
  33458. height: math.unit(1.07, "feet"),
  33459. name: "Hand",
  33460. image: {
  33461. source: "./media/characters/oven-otter/hand.svg"
  33462. }
  33463. },
  33464. beans: {
  33465. height: math.unit(1.74, "feet"),
  33466. name: "Beans",
  33467. image: {
  33468. source: "./media/characters/oven-otter/beans.svg"
  33469. }
  33470. },
  33471. },
  33472. [
  33473. {
  33474. name: "Micro",
  33475. height: math.unit(0.5, "inches")
  33476. },
  33477. {
  33478. name: "Normal",
  33479. height: math.unit(5 + 8/12, "feet"),
  33480. default: true
  33481. },
  33482. {
  33483. name: "Macro",
  33484. height: math.unit(250, "feet")
  33485. },
  33486. {
  33487. name: "Really High",
  33488. height: math.unit(420, "feet")
  33489. },
  33490. ]
  33491. ))
  33492. characterMakers.push(() => makeCharacter(
  33493. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33494. {
  33495. front: {
  33496. height: math.unit(5, "meters"),
  33497. weight: math.unit(292000000000000, "kg"),
  33498. name: "Front",
  33499. image: {
  33500. source: "./media/characters/devourer/front.svg",
  33501. extra: 1800/1733,
  33502. bottom: 211/2011
  33503. }
  33504. },
  33505. maw: {
  33506. height: math.unit(1.1, "meter"),
  33507. name: "Maw",
  33508. image: {
  33509. source: "./media/characters/devourer/maw.svg"
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Small",
  33516. height: math.unit(3, "meters")
  33517. },
  33518. {
  33519. name: "Large",
  33520. height: math.unit(5, "meters"),
  33521. default: true
  33522. },
  33523. ]
  33524. ))
  33525. characterMakers.push(() => makeCharacter(
  33526. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33527. {
  33528. front: {
  33529. height: math.unit(6, "feet"),
  33530. weight: math.unit(400, "lb"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/ellarby/front.svg",
  33534. extra: 1909/1763,
  33535. bottom: 80/1989
  33536. }
  33537. },
  33538. back: {
  33539. height: math.unit(6, "feet"),
  33540. weight: math.unit(400, "lb"),
  33541. name: "Back",
  33542. image: {
  33543. source: "./media/characters/ellarby/back.svg",
  33544. extra: 1914/1784,
  33545. bottom: 172/2086
  33546. }
  33547. },
  33548. },
  33549. [
  33550. {
  33551. name: "Mischief",
  33552. height: math.unit(18, "inches")
  33553. },
  33554. {
  33555. name: "Trouble",
  33556. height: math.unit(12, "feet")
  33557. },
  33558. {
  33559. name: "Havoc",
  33560. height: math.unit(200, "feet"),
  33561. default: true
  33562. },
  33563. {
  33564. name: "Pandemonium",
  33565. height: math.unit(1, "mile")
  33566. },
  33567. {
  33568. name: "Catastrophe",
  33569. height: math.unit(100, "miles")
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33575. {
  33576. front: {
  33577. height: math.unit(4.7, "meters"),
  33578. weight: math.unit(6500, "kg"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/vex/front.svg",
  33582. extra: 1288/1140,
  33583. bottom: 100/1388
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(4.7, "meters"),
  33591. default: true
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33597. {
  33598. normal: {
  33599. height: math.unit(6, "feet"),
  33600. weight: math.unit(350, "lb"),
  33601. name: "Normal",
  33602. image: {
  33603. source: "./media/characters/teshy/normal.svg",
  33604. extra: 1795/1735,
  33605. bottom: 16/1811
  33606. }
  33607. },
  33608. monsterFront: {
  33609. height: math.unit(12, "feet"),
  33610. weight: math.unit(4700, "lb"),
  33611. name: "Monster (Front)",
  33612. image: {
  33613. source: "./media/characters/teshy/monster-front.svg",
  33614. extra: 2042/2034,
  33615. bottom: 128/2170
  33616. }
  33617. },
  33618. monsterSide: {
  33619. height: math.unit(12, "feet"),
  33620. weight: math.unit(4700, "lb"),
  33621. name: "Monster (Side)",
  33622. image: {
  33623. source: "./media/characters/teshy/monster-side.svg",
  33624. extra: 2067/2056,
  33625. bottom: 70/2137
  33626. }
  33627. },
  33628. monsterBack: {
  33629. height: math.unit(12, "feet"),
  33630. weight: math.unit(4700, "lb"),
  33631. name: "Monster (Back)",
  33632. image: {
  33633. source: "./media/characters/teshy/monster-back.svg",
  33634. extra: 1921/1914,
  33635. bottom: 171/2092
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(6, "feet"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(6, "feet"),
  33652. name: "Front",
  33653. image: {
  33654. source: "./media/characters/ramey/front.svg",
  33655. extra: 790/787,
  33656. bottom: 27/817
  33657. }
  33658. },
  33659. },
  33660. [
  33661. {
  33662. name: "Normal",
  33663. height: math.unit(6, "feet"),
  33664. default: true
  33665. },
  33666. ]
  33667. ))
  33668. characterMakers.push(() => makeCharacter(
  33669. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33670. {
  33671. front: {
  33672. height: math.unit(5 + 5/12, "feet"),
  33673. weight: math.unit(120, "lb"),
  33674. name: "Front",
  33675. image: {
  33676. source: "./media/characters/phirae/front.svg",
  33677. extra: 2491/2436,
  33678. bottom: 38/2529
  33679. }
  33680. },
  33681. },
  33682. [
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(5 + 5/12, "feet"),
  33686. default: true
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33692. {
  33693. front: {
  33694. height: math.unit(6, "feet"),
  33695. weight: math.unit(150, "lb"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/stagglas/front.svg",
  33699. extra: 962/882,
  33700. bottom: 53/1015
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(5 + 3/12, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(5 + 4/12, "feet"),
  33717. weight: math.unit(145, "lb"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/starra/front.svg",
  33721. extra: 1790/1691,
  33722. bottom: 91/1881
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(5 + 4/12, "feet"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(2.2, "meters"),
  33739. name: "Front",
  33740. image: {
  33741. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33742. extra: 1194/1005,
  33743. bottom: 25/1219
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Normal",
  33750. height: math.unit(2.2, "meters"),
  33751. default: true
  33752. },
  33753. ]
  33754. ))
  33755. characterMakers.push(() => makeCharacter(
  33756. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33757. {
  33758. side: {
  33759. height: math.unit(8 + 2/12, "feet"),
  33760. weight: math.unit(1240, "lb"),
  33761. name: "Side",
  33762. image: {
  33763. source: "./media/characters/mika-valentine/side.svg",
  33764. extra: 2670/2501,
  33765. bottom: 250/2920
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Normal",
  33772. height: math.unit(8 + 2/12, "feet"),
  33773. default: true
  33774. },
  33775. ]
  33776. ))
  33777. characterMakers.push(() => makeCharacter(
  33778. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33779. {
  33780. front: {
  33781. height: math.unit(7 + 2/12, "feet"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/xoltol/front.svg",
  33785. extra: 2212/2124,
  33786. bottom: 84/2296
  33787. }
  33788. },
  33789. side: {
  33790. height: math.unit(7 + 2/12, "feet"),
  33791. name: "Side",
  33792. image: {
  33793. source: "./media/characters/xoltol/side.svg",
  33794. extra: 2273/2197,
  33795. bottom: 26/2299
  33796. }
  33797. },
  33798. hand: {
  33799. height: math.unit(2.5, "feet"),
  33800. name: "Hand",
  33801. image: {
  33802. source: "./media/characters/xoltol/hand.svg"
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Small-ish",
  33809. height: math.unit(5 + 11/12, "feet")
  33810. },
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(7 + 2/12, "feet")
  33814. },
  33815. {
  33816. name: "\"Macro\"",
  33817. height: math.unit(14 + 9/12, "feet"),
  33818. default: true
  33819. },
  33820. {
  33821. name: "Alternate Height",
  33822. height: math.unit(20, "feet")
  33823. },
  33824. {
  33825. name: "Actually Macro",
  33826. height: math.unit(100, "feet")
  33827. },
  33828. ]
  33829. ))
  33830. characterMakers.push(() => makeCharacter(
  33831. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33832. {
  33833. front: {
  33834. height: math.unit(5 + 2/12, "feet"),
  33835. name: "Front",
  33836. image: {
  33837. source: "./media/characters/kotetsu-redwood/front.svg",
  33838. extra: 1053/942,
  33839. bottom: 60/1113
  33840. }
  33841. },
  33842. },
  33843. [
  33844. {
  33845. name: "Normal",
  33846. height: math.unit(5 + 2/12, "feet"),
  33847. default: true
  33848. },
  33849. ]
  33850. ))
  33851. characterMakers.push(() => makeCharacter(
  33852. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33853. {
  33854. front: {
  33855. height: math.unit(2.4, "meters"),
  33856. weight: math.unit(125, "kg"),
  33857. name: "Front",
  33858. image: {
  33859. source: "./media/characters/lilith/front.svg",
  33860. extra: 1590/1513,
  33861. bottom: 203/1793
  33862. }
  33863. },
  33864. },
  33865. [
  33866. {
  33867. name: "Humanoid",
  33868. height: math.unit(2.4, "meters")
  33869. },
  33870. {
  33871. name: "Normal",
  33872. height: math.unit(6, "meters"),
  33873. default: true
  33874. },
  33875. {
  33876. name: "Largest",
  33877. height: math.unit(55, "meters")
  33878. },
  33879. ]
  33880. ))
  33881. characterMakers.push(() => makeCharacter(
  33882. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33883. {
  33884. front: {
  33885. height: math.unit(8 + 4/12, "feet"),
  33886. weight: math.unit(535, "lb"),
  33887. name: "Front",
  33888. image: {
  33889. source: "./media/characters/beh'kah-bolger/front.svg",
  33890. extra: 1660/1603,
  33891. bottom: 37/1697
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(8 + 4/12, "feet"),
  33899. default: true
  33900. },
  33901. {
  33902. name: "Kaiju",
  33903. height: math.unit(250, "feet")
  33904. },
  33905. {
  33906. name: "Still Growing",
  33907. height: math.unit(10, "miles")
  33908. },
  33909. {
  33910. name: "Continental",
  33911. height: math.unit(5000, "miles")
  33912. },
  33913. {
  33914. name: "Final Form",
  33915. height: math.unit(2500000, "miles")
  33916. },
  33917. ]
  33918. ))
  33919. characterMakers.push(() => makeCharacter(
  33920. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33921. {
  33922. front: {
  33923. height: math.unit(7 + 2/12, "feet"),
  33924. weight: math.unit(230, "kg"),
  33925. name: "Front",
  33926. image: {
  33927. source: "./media/characters/tatyana-milewska/front.svg",
  33928. extra: 1199/1150,
  33929. bottom: 86/1285
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Normal",
  33936. height: math.unit(7 + 2/12, "feet"),
  33937. default: true
  33938. },
  33939. {
  33940. name: "Big",
  33941. height: math.unit(12, "feet")
  33942. },
  33943. {
  33944. name: "Minimacro",
  33945. height: math.unit(20, "feet")
  33946. },
  33947. {
  33948. name: "Macro",
  33949. height: math.unit(120, "feet")
  33950. },
  33951. ]
  33952. ))
  33953. characterMakers.push(() => makeCharacter(
  33954. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33955. {
  33956. front: {
  33957. height: math.unit(7 + 8/12, "feet"),
  33958. weight: math.unit(152, "kg"),
  33959. name: "Front",
  33960. image: {
  33961. source: "./media/characters/helen-arri/front.svg",
  33962. extra: 440/423,
  33963. bottom: 14/454
  33964. }
  33965. },
  33966. back: {
  33967. height: math.unit(7 + 8/12, "feet"),
  33968. weight: math.unit(152, "kg"),
  33969. name: "Back",
  33970. image: {
  33971. source: "./media/characters/helen-arri/back.svg",
  33972. extra: 443/426,
  33973. bottom: 8/451
  33974. }
  33975. },
  33976. },
  33977. [
  33978. {
  33979. name: "Normal",
  33980. height: math.unit(7 + 8/12, "feet"),
  33981. default: true
  33982. },
  33983. {
  33984. name: "Big",
  33985. height: math.unit(14, "feet")
  33986. },
  33987. {
  33988. name: "Minimacro",
  33989. height: math.unit(24, "feet")
  33990. },
  33991. {
  33992. name: "Macro",
  33993. height: math.unit(140, "feet")
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33999. {
  34000. front: {
  34001. height: math.unit(6, "meters"),
  34002. name: "Front",
  34003. image: {
  34004. source: "./media/characters/ehanu-rehu/front.svg",
  34005. extra: 1800/1800,
  34006. bottom: 59/1859
  34007. }
  34008. },
  34009. },
  34010. [
  34011. {
  34012. name: "Normal",
  34013. height: math.unit(6, "meters"),
  34014. default: true
  34015. },
  34016. ]
  34017. ))
  34018. characterMakers.push(() => makeCharacter(
  34019. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34020. {
  34021. front: {
  34022. height: math.unit(7 + 3/12, "feet"),
  34023. name: "Front",
  34024. image: {
  34025. source: "./media/characters/renholder/front.svg",
  34026. extra: 3096/2960,
  34027. bottom: 250/3346
  34028. }
  34029. },
  34030. },
  34031. [
  34032. {
  34033. name: "Normal Bat",
  34034. height: math.unit(7 + 3/12, "feet"),
  34035. default: true
  34036. },
  34037. {
  34038. name: "Slightly Tall Bat",
  34039. height: math.unit(100, "feet")
  34040. },
  34041. {
  34042. name: "Big Bat",
  34043. height: math.unit(1000, "feet")
  34044. },
  34045. {
  34046. name: "City-Sized Bat",
  34047. height: math.unit(200000, "feet")
  34048. },
  34049. {
  34050. name: "Bigger Bat",
  34051. height: math.unit(10000, "miles")
  34052. },
  34053. {
  34054. name: "Solar Sized Bat",
  34055. height: math.unit(100, "AU")
  34056. },
  34057. {
  34058. name: "Galactic Bat",
  34059. height: math.unit(200000, "lightyears")
  34060. },
  34061. {
  34062. name: "Universally Known Bat",
  34063. height: math.unit(1, "universe")
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34069. {
  34070. front: {
  34071. height: math.unit(6 + 11/12, "feet"),
  34072. weight: math.unit(250, "lb"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/cookiecat/front.svg",
  34076. extra: 893/827,
  34077. bottom: 14/907
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Micro",
  34084. height: math.unit(3, "inches")
  34085. },
  34086. {
  34087. name: "Normal",
  34088. height: math.unit(6 + 11/12, "feet"),
  34089. default: true
  34090. },
  34091. {
  34092. name: "Macro",
  34093. height: math.unit(100, "feet")
  34094. },
  34095. {
  34096. name: "Macro+",
  34097. height: math.unit(404, "feet")
  34098. },
  34099. {
  34100. name: "Megamacro",
  34101. height: math.unit(165, "miles")
  34102. },
  34103. {
  34104. name: "Planetary",
  34105. height: math.unit(4600, "miles")
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(10 + 3/12, "feet"),
  34114. weight: math.unit(1500, "lb"),
  34115. name: "Front",
  34116. image: {
  34117. source: "./media/characters/tux-kusanagi/front.svg",
  34118. extra: 944/840,
  34119. bottom: 39/983
  34120. }
  34121. },
  34122. back: {
  34123. height: math.unit(10 + 3/12, "feet"),
  34124. weight: math.unit(1500, "lb"),
  34125. name: "Back",
  34126. image: {
  34127. source: "./media/characters/tux-kusanagi/back.svg",
  34128. extra: 941/842,
  34129. bottom: 28/969
  34130. }
  34131. },
  34132. rump: {
  34133. height: math.unit(5.25, "feet"),
  34134. name: "Rump",
  34135. image: {
  34136. source: "./media/characters/tux-kusanagi/rump.svg"
  34137. }
  34138. },
  34139. beak: {
  34140. height: math.unit(1.54, "feet"),
  34141. name: "Beak",
  34142. image: {
  34143. source: "./media/characters/tux-kusanagi/beak.svg"
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(10 + 3/12, "feet"),
  34151. default: true
  34152. },
  34153. ]
  34154. ))
  34155. characterMakers.push(() => makeCharacter(
  34156. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34157. {
  34158. front: {
  34159. height: math.unit(58, "feet"),
  34160. weight: math.unit(200, "tons"),
  34161. name: "Front",
  34162. image: {
  34163. source: "./media/characters/uzarmazari/front.svg",
  34164. extra: 1575/1455,
  34165. bottom: 152/1727
  34166. }
  34167. },
  34168. back: {
  34169. height: math.unit(58, "feet"),
  34170. weight: math.unit(200, "tons"),
  34171. name: "Back",
  34172. image: {
  34173. source: "./media/characters/uzarmazari/back.svg",
  34174. extra: 1585/1510,
  34175. bottom: 157/1742
  34176. }
  34177. },
  34178. head: {
  34179. height: math.unit(26, "feet"),
  34180. name: "Head",
  34181. image: {
  34182. source: "./media/characters/uzarmazari/head.svg"
  34183. }
  34184. },
  34185. },
  34186. [
  34187. {
  34188. name: "Normal",
  34189. height: math.unit(58, "feet"),
  34190. default: true
  34191. },
  34192. ]
  34193. ))
  34194. characterMakers.push(() => makeCharacter(
  34195. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34196. {
  34197. side: {
  34198. height: math.unit(15, "feet"),
  34199. name: "Side",
  34200. image: {
  34201. source: "./media/characters/akitu/side.svg",
  34202. extra: 1421/1321,
  34203. bottom: 157/1578
  34204. }
  34205. },
  34206. front: {
  34207. height: math.unit(15, "feet"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/akitu/front.svg",
  34211. extra: 1435/1326,
  34212. bottom: 232/1667
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(15, "feet"),
  34220. default: true
  34221. },
  34222. ]
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34226. {
  34227. front: {
  34228. height: math.unit(10 + 8/12, "feet"),
  34229. name: "Front",
  34230. image: {
  34231. source: "./media/characters/azalie-croixland/front.svg",
  34232. extra: 1972/1856,
  34233. bottom: 31/2003
  34234. }
  34235. },
  34236. },
  34237. [
  34238. {
  34239. name: "Original Height",
  34240. height: math.unit(5 + 4/12, "feet")
  34241. },
  34242. {
  34243. name: "Normal Height",
  34244. height: math.unit(10 + 8/12, "feet"),
  34245. default: true
  34246. },
  34247. ]
  34248. ))
  34249. characterMakers.push(() => makeCharacter(
  34250. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34251. {
  34252. side: {
  34253. height: math.unit(7 + 1/12, "feet"),
  34254. weight: math.unit(245, "lb"),
  34255. name: "Side",
  34256. image: {
  34257. source: "./media/characters/kavus-kazian/side.svg",
  34258. extra: 349/342,
  34259. bottom: 15/364
  34260. }
  34261. },
  34262. },
  34263. [
  34264. {
  34265. name: "Normal",
  34266. height: math.unit(7 + 1/12, "feet"),
  34267. default: true
  34268. },
  34269. ]
  34270. ))
  34271. characterMakers.push(() => makeCharacter(
  34272. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34273. {
  34274. normal: {
  34275. height: math.unit(5 + 11/12, "feet"),
  34276. name: "Normal",
  34277. image: {
  34278. source: "./media/characters/moonlight-rose/normal.svg",
  34279. extra: 1979/1835,
  34280. bottom: 14/1993
  34281. }
  34282. },
  34283. demon: {
  34284. height: math.unit(5, "km"),
  34285. name: "Demon",
  34286. image: {
  34287. source: "./media/characters/moonlight-rose/demon.svg",
  34288. extra: 986/916,
  34289. bottom: 28/1014
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "\"Natural\" height",
  34296. height: math.unit(5 + 11/12, "feet")
  34297. },
  34298. {
  34299. name: "Comfortable Size",
  34300. height: math.unit(40, "meters")
  34301. },
  34302. {
  34303. name: "Common Size",
  34304. height: math.unit(50, "km"),
  34305. default: true
  34306. },
  34307. {
  34308. name: "Demonic",
  34309. height: math.unit(1.24415e+21, "meters")
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34315. {
  34316. front: {
  34317. height: math.unit(16, "feet"),
  34318. weight: math.unit(610, "kg"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/huckle/front.svg",
  34322. extra: 1731/1625,
  34323. bottom: 33/1764
  34324. }
  34325. },
  34326. back: {
  34327. height: math.unit(16, "feet"),
  34328. weight: math.unit(610, "kg"),
  34329. name: "Back",
  34330. image: {
  34331. source: "./media/characters/huckle/back.svg",
  34332. extra: 1738/1651,
  34333. bottom: 37/1775
  34334. }
  34335. },
  34336. laughing: {
  34337. height: math.unit(3.75, "feet"),
  34338. name: "Laughing",
  34339. image: {
  34340. source: "./media/characters/huckle/laughing.svg"
  34341. }
  34342. },
  34343. angry: {
  34344. height: math.unit(4.15, "feet"),
  34345. name: "Angry",
  34346. image: {
  34347. source: "./media/characters/huckle/angry.svg"
  34348. }
  34349. },
  34350. },
  34351. [
  34352. {
  34353. name: "Normal",
  34354. height: math.unit(16, "feet"),
  34355. default: true
  34356. },
  34357. {
  34358. name: "Mini Macro",
  34359. height: math.unit(463, "feet")
  34360. },
  34361. {
  34362. name: "Macro",
  34363. height: math.unit(1680, "meters")
  34364. },
  34365. {
  34366. name: "Mega Macro",
  34367. height: math.unit(175, "km")
  34368. },
  34369. {
  34370. name: "Terra Macro",
  34371. height: math.unit(32, "gigameters")
  34372. },
  34373. {
  34374. name: "Multiverse+",
  34375. height: math.unit(2.56e23, "yottameters")
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34381. {
  34382. front: {
  34383. height: math.unit(6 + 9/12, "feet"),
  34384. weight: math.unit(280, "lb"),
  34385. name: "Front",
  34386. image: {
  34387. source: "./media/characters/candy/front.svg",
  34388. extra: 234/217,
  34389. bottom: 11/245
  34390. }
  34391. },
  34392. },
  34393. [
  34394. {
  34395. name: "Really Small",
  34396. height: math.unit(0.1, "nm")
  34397. },
  34398. {
  34399. name: "Micro",
  34400. height: math.unit(2, "inches")
  34401. },
  34402. {
  34403. name: "Normal",
  34404. height: math.unit(6 + 9/12, "feet"),
  34405. default: true
  34406. },
  34407. {
  34408. name: "Small Macro",
  34409. height: math.unit(69, "feet")
  34410. },
  34411. {
  34412. name: "Macro",
  34413. height: math.unit(160, "feet")
  34414. },
  34415. {
  34416. name: "Megamacro",
  34417. height: math.unit(22000, "miles")
  34418. },
  34419. {
  34420. name: "Gigamacro",
  34421. height: math.unit(50000, "miles")
  34422. },
  34423. ]
  34424. ))
  34425. characterMakers.push(() => makeCharacter(
  34426. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34427. {
  34428. front: {
  34429. height: math.unit(4, "feet"),
  34430. weight: math.unit(90, "lb"),
  34431. name: "Front",
  34432. image: {
  34433. source: "./media/characters/joey-mcdonald/front.svg",
  34434. extra: 1059/852,
  34435. bottom: 33/1092
  34436. }
  34437. },
  34438. back: {
  34439. height: math.unit(4, "feet"),
  34440. weight: math.unit(90, "lb"),
  34441. name: "Back",
  34442. image: {
  34443. source: "./media/characters/joey-mcdonald/back.svg",
  34444. extra: 1077/879,
  34445. bottom: 5/1082
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(4, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(12 + 6/12, "feet"),
  34462. name: "Front",
  34463. image: {
  34464. source: "./media/characters/kass-lockheed/front.svg",
  34465. extra: 354/343,
  34466. bottom: 9/363
  34467. }
  34468. },
  34469. back: {
  34470. height: math.unit(12 + 6/12, "feet"),
  34471. name: "Back",
  34472. image: {
  34473. source: "./media/characters/kass-lockheed/back.svg",
  34474. extra: 364/352,
  34475. bottom: 3/367
  34476. }
  34477. },
  34478. dick: {
  34479. height: math.unit(3.12, "feet"),
  34480. name: "Dick",
  34481. image: {
  34482. source: "./media/characters/kass-lockheed/dick.svg"
  34483. }
  34484. },
  34485. head: {
  34486. height: math.unit(2.6, "feet"),
  34487. name: "Head",
  34488. image: {
  34489. source: "./media/characters/kass-lockheed/head.svg"
  34490. }
  34491. },
  34492. bleh: {
  34493. height: math.unit(2.85, "feet"),
  34494. name: "Bleh",
  34495. image: {
  34496. source: "./media/characters/kass-lockheed/bleh.svg"
  34497. }
  34498. },
  34499. smug: {
  34500. height: math.unit(2.85, "feet"),
  34501. name: "Smug",
  34502. image: {
  34503. source: "./media/characters/kass-lockheed/smug.svg"
  34504. }
  34505. },
  34506. },
  34507. [
  34508. {
  34509. name: "Normal",
  34510. height: math.unit(12 + 6/12, "feet"),
  34511. default: true
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(6 + 2/12, "feet"),
  34520. name: "Front",
  34521. image: {
  34522. source: "./media/characters/taylor/front.svg",
  34523. extra: 639/495,
  34524. bottom: 12/651
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(6 + 2/12, "feet"),
  34532. default: true
  34533. },
  34534. {
  34535. name: "Big",
  34536. height: math.unit(15, "feet")
  34537. },
  34538. {
  34539. name: "Lorg",
  34540. height: math.unit(80, "feet")
  34541. },
  34542. {
  34543. name: "Too Lorg",
  34544. height: math.unit(120, "feet")
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(15, "feet"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/kaizer/front.svg",
  34556. extra: 1612/1436,
  34557. bottom: 43/1655
  34558. }
  34559. },
  34560. },
  34561. [
  34562. {
  34563. name: "Normal",
  34564. height: math.unit(15, "feet"),
  34565. default: true
  34566. },
  34567. ]
  34568. ))
  34569. characterMakers.push(() => makeCharacter(
  34570. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34571. {
  34572. front: {
  34573. height: math.unit(2, "feet"),
  34574. weight: math.unit(30, "lb"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/sandy/front.svg",
  34578. extra: 1439/1307,
  34579. bottom: 194/1633
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(2, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(3, "feet"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/mellvi/front.svg",
  34599. extra: 1831/1630,
  34600. bottom: 58/1889
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(3, "feet"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(5 + 11/12, "feet"),
  34617. weight: math.unit(200, "lb"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/shirou/front.svg",
  34621. extra: 2491/2383,
  34622. bottom: 189/2680
  34623. }
  34624. },
  34625. back: {
  34626. height: math.unit(5 + 11/12, "feet"),
  34627. weight: math.unit(200, "lb"),
  34628. name: "Back",
  34629. image: {
  34630. source: "./media/characters/shirou/back.svg",
  34631. extra: 2554/2450,
  34632. bottom: 76/2630
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(5 + 11/12, "feet"),
  34640. default: true
  34641. },
  34642. ]
  34643. ))
  34644. characterMakers.push(() => makeCharacter(
  34645. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34646. {
  34647. front: {
  34648. height: math.unit(6 + 3/12, "feet"),
  34649. weight: math.unit(177, "lb"),
  34650. name: "Front",
  34651. image: {
  34652. source: "./media/characters/noryu/front.svg",
  34653. extra: 973/885,
  34654. bottom: 10/983
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Normal",
  34661. height: math.unit(6 + 3/12, "feet"),
  34662. default: true
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(5 + 6/12, "feet"),
  34671. weight: math.unit(170, "lb"),
  34672. name: "Front",
  34673. image: {
  34674. source: "./media/characters/mevolas-rubenido/front.svg",
  34675. extra: 2109/1901,
  34676. bottom: 96/2205
  34677. }
  34678. },
  34679. },
  34680. [
  34681. {
  34682. name: "Normal",
  34683. height: math.unit(5 + 6/12, "feet"),
  34684. default: true
  34685. },
  34686. ]
  34687. ))
  34688. characterMakers.push(() => makeCharacter(
  34689. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34690. {
  34691. front: {
  34692. height: math.unit(100, "feet"),
  34693. name: "Front",
  34694. image: {
  34695. source: "./media/characters/dee/front.svg",
  34696. extra: 2153/2036,
  34697. bottom: 59/2212
  34698. }
  34699. },
  34700. back: {
  34701. height: math.unit(100, "feet"),
  34702. name: "Back",
  34703. image: {
  34704. source: "./media/characters/dee/back.svg",
  34705. extra: 2183/2058,
  34706. bottom: 75/2258
  34707. }
  34708. },
  34709. foot: {
  34710. height: math.unit(19.43, "feet"),
  34711. name: "Foot",
  34712. image: {
  34713. source: "./media/characters/dee/foot.svg"
  34714. }
  34715. },
  34716. hoof: {
  34717. height: math.unit(20.6, "feet"),
  34718. name: "Hoof",
  34719. image: {
  34720. source: "./media/characters/dee/hoof.svg"
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Macro",
  34727. height: math.unit(100, "feet"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(5 + 6/12, "feet"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/teh/front.svg",
  34740. extra: 1002/847,
  34741. bottom: 62/1064
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Normal",
  34748. height: math.unit(5 + 6/12, "feet"),
  34749. default: true
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34755. {
  34756. side: {
  34757. height: math.unit(6 + 1/12, "feet"),
  34758. weight: math.unit(204, "lb"),
  34759. name: "Side",
  34760. image: {
  34761. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34762. extra: 974/775,
  34763. bottom: 169/1143
  34764. }
  34765. },
  34766. sitting: {
  34767. height: math.unit(6 + 2/12, "feet"),
  34768. weight: math.unit(204, "lb"),
  34769. name: "Sitting",
  34770. image: {
  34771. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34772. extra: 1175/964,
  34773. bottom: 378/1553
  34774. }
  34775. },
  34776. },
  34777. [
  34778. {
  34779. name: "Normal",
  34780. height: math.unit(6 + 1/12, "feet"),
  34781. default: true
  34782. },
  34783. ]
  34784. ))
  34785. characterMakers.push(() => makeCharacter(
  34786. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34787. {
  34788. front: {
  34789. height: math.unit(6, "inches"),
  34790. name: "Front",
  34791. image: {
  34792. source: "./media/characters/tululi/front.svg",
  34793. extra: 1997/1876,
  34794. bottom: 20/2017
  34795. }
  34796. },
  34797. },
  34798. [
  34799. {
  34800. name: "Normal",
  34801. height: math.unit(6, "inches"),
  34802. default: true
  34803. },
  34804. ]
  34805. ))
  34806. characterMakers.push(() => makeCharacter(
  34807. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34808. {
  34809. front: {
  34810. height: math.unit(4 + 1/12, "feet"),
  34811. name: "Front",
  34812. image: {
  34813. source: "./media/characters/star/front.svg",
  34814. extra: 1493/1189,
  34815. bottom: 48/1541
  34816. }
  34817. },
  34818. },
  34819. [
  34820. {
  34821. name: "Normal",
  34822. height: math.unit(4 + 1/12, "feet"),
  34823. default: true
  34824. },
  34825. ]
  34826. ))
  34827. characterMakers.push(() => makeCharacter(
  34828. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34829. {
  34830. front: {
  34831. height: math.unit(6 + 3/12, "feet"),
  34832. name: "Front",
  34833. image: {
  34834. source: "./media/characters/comet/front.svg",
  34835. extra: 1681/1462,
  34836. bottom: 26/1707
  34837. }
  34838. },
  34839. },
  34840. [
  34841. {
  34842. name: "Normal",
  34843. height: math.unit(6 + 3/12, "feet"),
  34844. default: true
  34845. },
  34846. ]
  34847. ))
  34848. characterMakers.push(() => makeCharacter(
  34849. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34850. {
  34851. front: {
  34852. height: math.unit(950, "feet"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/vortex/front.svg",
  34856. extra: 1497/1434,
  34857. bottom: 56/1553
  34858. }
  34859. },
  34860. maw: {
  34861. height: math.unit(285, "feet"),
  34862. name: "Maw",
  34863. image: {
  34864. source: "./media/characters/vortex/maw.svg"
  34865. }
  34866. },
  34867. },
  34868. [
  34869. {
  34870. name: "Macro",
  34871. height: math.unit(950, "feet"),
  34872. default: true
  34873. },
  34874. ]
  34875. ))
  34876. characterMakers.push(() => makeCharacter(
  34877. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34878. {
  34879. front: {
  34880. height: math.unit(600, "feet"),
  34881. weight: math.unit(0.02, "grams"),
  34882. name: "Front",
  34883. image: {
  34884. source: "./media/characters/doodle/front.svg",
  34885. extra: 1578/1413,
  34886. bottom: 37/1615
  34887. }
  34888. },
  34889. },
  34890. [
  34891. {
  34892. name: "Macro",
  34893. height: math.unit(600, "feet"),
  34894. default: true
  34895. },
  34896. ]
  34897. ))
  34898. characterMakers.push(() => makeCharacter(
  34899. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34900. {
  34901. front: {
  34902. height: math.unit(6 + 6/12, "feet"),
  34903. name: "Front",
  34904. image: {
  34905. source: "./media/characters/jai/front.svg",
  34906. extra: 1645/1534,
  34907. bottom: 115/1760
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Normal",
  34914. height: math.unit(6 + 6/12, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(6 + 8/12, "feet"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/pixel/front.svg",
  34927. extra: 1900/1735,
  34928. bottom: 63/1963
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(6 + 8/12, "feet"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34942. {
  34943. front: {
  34944. height: math.unit(4 + 11/12, "feet"),
  34945. weight: math.unit(111, "lb"),
  34946. name: "Front",
  34947. image: {
  34948. source: "./media/characters/rhett/front.svg",
  34949. extra: 1682/1586,
  34950. bottom: 92/1774
  34951. }
  34952. },
  34953. },
  34954. [
  34955. {
  34956. name: "Mini",
  34957. height: math.unit(1 + 1/12, "feet")
  34958. },
  34959. {
  34960. name: "Normal",
  34961. height: math.unit(4 + 11/12, "feet"),
  34962. default: true
  34963. },
  34964. ]
  34965. ))
  34966. characterMakers.push(() => makeCharacter(
  34967. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34968. {
  34969. front: {
  34970. height: math.unit(3 + 3/12, "feet"),
  34971. name: "Front",
  34972. image: {
  34973. source: "./media/characters/penny/front.svg",
  34974. extra: 1406/1311,
  34975. bottom: 26/1432
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Normal",
  34982. height: math.unit(3 + 3/12, "feet"),
  34983. default: true
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(4 + 11/12, "feet"),
  34992. name: "Front",
  34993. image: {
  34994. source: "./media/characters/monty/front.svg",
  34995. extra: 1479/1209,
  34996. bottom: 0/1479
  34997. }
  34998. },
  34999. },
  35000. [
  35001. {
  35002. name: "Normal",
  35003. height: math.unit(4 + 11/12, "feet"),
  35004. default: true
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35010. {
  35011. front: {
  35012. height: math.unit(8 + 4/12, "feet"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/sterling/front.svg",
  35016. extra: 1420/1236,
  35017. bottom: 27/1447
  35018. }
  35019. },
  35020. },
  35021. [
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(8 + 4/12, "feet"),
  35025. default: true
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35031. {
  35032. front: {
  35033. height: math.unit(15, "feet"),
  35034. name: "Front",
  35035. image: {
  35036. source: "./media/characters/marble/front.svg",
  35037. extra: 973/937,
  35038. bottom: 32/1005
  35039. }
  35040. },
  35041. },
  35042. [
  35043. {
  35044. name: "Normal",
  35045. height: math.unit(15, "feet"),
  35046. default: true
  35047. },
  35048. ]
  35049. ))
  35050. characterMakers.push(() => makeCharacter(
  35051. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35052. {
  35053. front: {
  35054. height: math.unit(3, "inches"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/powder/front.svg",
  35058. extra: 1504/1334,
  35059. bottom: 518/2022
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(3, "inches"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(4 + 5/12, "feet"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/joey-raccoon/front.svg",
  35079. extra: 1273/1197,
  35080. bottom: 0/1273
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Normal",
  35087. height: math.unit(4 + 5/12, "feet"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(8 + 4/12, "feet"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/vick/front.svg",
  35100. extra: 2187/2118,
  35101. bottom: 47/2234
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(8 + 4/12, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(5 + 5/12, "feet"),
  35118. name: "Front",
  35119. image: {
  35120. source: "./media/characters/mitsy/front.svg",
  35121. extra: 1842/1695,
  35122. bottom: 0/1842
  35123. }
  35124. },
  35125. },
  35126. [
  35127. {
  35128. name: "Normal",
  35129. height: math.unit(5 + 5/12, "feet"),
  35130. default: true
  35131. },
  35132. ]
  35133. ))
  35134. characterMakers.push(() => makeCharacter(
  35135. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35136. {
  35137. front: {
  35138. height: math.unit(6 + 3/12, "feet"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/silvy/front.svg",
  35142. extra: 1995/1836,
  35143. bottom: 225/2220
  35144. }
  35145. },
  35146. },
  35147. [
  35148. {
  35149. name: "Normal",
  35150. height: math.unit(6 + 3/12, "feet"),
  35151. default: true
  35152. },
  35153. ]
  35154. ))
  35155. characterMakers.push(() => makeCharacter(
  35156. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35157. {
  35158. front: {
  35159. height: math.unit(3 + 8/12, "feet"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/rodney/front.svg",
  35163. extra: 1956/1747,
  35164. bottom: 31/1987
  35165. }
  35166. },
  35167. frontDressed: {
  35168. height: math.unit(2.9, "feet"),
  35169. name: "Front (Dressed)",
  35170. image: {
  35171. source: "./media/characters/rodney/front-dressed.svg",
  35172. extra: 1382/1241,
  35173. bottom: 385/1767
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(3 + 8/12, "feet"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(5 + 9/12, "feet"),
  35190. weight: math.unit(194, "lbs"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/zakail-sudekai/front.svg",
  35194. extra: 2696/2533,
  35195. bottom: 248/2944
  35196. }
  35197. },
  35198. maw: {
  35199. height: math.unit(1.35, "feet"),
  35200. name: "Maw",
  35201. image: {
  35202. source: "./media/characters/zakail-sudekai/maw.svg"
  35203. }
  35204. },
  35205. },
  35206. [
  35207. {
  35208. name: "Normal",
  35209. height: math.unit(5 + 9/12, "feet"),
  35210. default: true
  35211. },
  35212. ]
  35213. ))
  35214. characterMakers.push(() => makeCharacter(
  35215. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35216. {
  35217. front: {
  35218. height: math.unit(8 + 4/12, "feet"),
  35219. weight: math.unit(1200, "lb"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/eleanor/front.svg",
  35223. extra: 1226/1192,
  35224. bottom: 52/1278
  35225. }
  35226. },
  35227. back: {
  35228. height: math.unit(8 + 4/12, "feet"),
  35229. weight: math.unit(1200, "lb"),
  35230. name: "Back",
  35231. image: {
  35232. source: "./media/characters/eleanor/back.svg",
  35233. extra: 1242/1184,
  35234. bottom: 60/1302
  35235. }
  35236. },
  35237. head: {
  35238. height: math.unit(2.62, "feet"),
  35239. name: "Head",
  35240. image: {
  35241. source: "./media/characters/eleanor/head.svg"
  35242. }
  35243. },
  35244. },
  35245. [
  35246. {
  35247. name: "Normal",
  35248. height: math.unit(8 + 4/12, "feet"),
  35249. default: true
  35250. },
  35251. ]
  35252. ))
  35253. characterMakers.push(() => makeCharacter(
  35254. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35255. {
  35256. front: {
  35257. height: math.unit(8 + 4/12, "feet"),
  35258. weight: math.unit(750, "lb"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/tanya/front.svg",
  35262. extra: 1749/1615,
  35263. bottom: 33/1782
  35264. }
  35265. },
  35266. },
  35267. [
  35268. {
  35269. name: "Normal",
  35270. height: math.unit(8 + 4/12, "feet"),
  35271. default: true
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35277. {
  35278. front: {
  35279. height: math.unit(5, "feet"),
  35280. weight: math.unit(225, "lb"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/cindy/front.svg",
  35284. extra: 1320/1250,
  35285. bottom: 42/1362
  35286. }
  35287. },
  35288. frontDressed: {
  35289. height: math.unit(5, "feet"),
  35290. weight: math.unit(225, "lb"),
  35291. name: "Front (Dressed)",
  35292. image: {
  35293. source: "./media/characters/cindy/front-dressed.svg",
  35294. extra: 1320/1250,
  35295. bottom: 42/1362
  35296. }
  35297. },
  35298. back: {
  35299. height: math.unit(5, "feet"),
  35300. weight: math.unit(225, "lb"),
  35301. name: "Back",
  35302. image: {
  35303. source: "./media/characters/cindy/back.svg",
  35304. extra: 1384/1346,
  35305. bottom: 14/1398
  35306. }
  35307. },
  35308. },
  35309. [
  35310. {
  35311. name: "Normal",
  35312. height: math.unit(5, "feet"),
  35313. default: true
  35314. },
  35315. ]
  35316. ))
  35317. characterMakers.push(() => makeCharacter(
  35318. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35319. {
  35320. front: {
  35321. height: math.unit(6 + 9/12, "feet"),
  35322. weight: math.unit(440, "lb"),
  35323. name: "Front",
  35324. image: {
  35325. source: "./media/characters/wilbur-owen/front.svg",
  35326. extra: 1575/1448,
  35327. bottom: 72/1647
  35328. }
  35329. },
  35330. back: {
  35331. height: math.unit(6 + 9/12, "feet"),
  35332. weight: math.unit(440, "lb"),
  35333. name: "Back",
  35334. image: {
  35335. source: "./media/characters/wilbur-owen/back.svg",
  35336. extra: 1578/1445,
  35337. bottom: 36/1614
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(6 + 9/12, "feet"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35351. {
  35352. front: {
  35353. height: math.unit(6 + 5/12, "feet"),
  35354. weight: math.unit(650, "lb"),
  35355. name: "Front",
  35356. image: {
  35357. source: "./media/characters/keegan/front.svg",
  35358. extra: 2387/2198,
  35359. bottom: 33/2420
  35360. }
  35361. },
  35362. side: {
  35363. height: math.unit(6 + 5/12, "feet"),
  35364. weight: math.unit(650, "lb"),
  35365. name: "Side",
  35366. image: {
  35367. source: "./media/characters/keegan/side.svg",
  35368. extra: 2390/2202,
  35369. bottom: 47/2437
  35370. }
  35371. },
  35372. back: {
  35373. height: math.unit(6 + 5/12, "feet"),
  35374. weight: math.unit(650, "lb"),
  35375. name: "Back",
  35376. image: {
  35377. source: "./media/characters/keegan/back.svg",
  35378. extra: 2418/2268,
  35379. bottom: 15/2433
  35380. }
  35381. },
  35382. frontSfw: {
  35383. height: math.unit(6 + 5/12, "feet"),
  35384. weight: math.unit(650, "lb"),
  35385. name: "Front (SFW)",
  35386. image: {
  35387. source: "./media/characters/keegan/front-sfw.svg",
  35388. extra: 2387/2198,
  35389. bottom: 33/2420
  35390. }
  35391. },
  35392. beans: {
  35393. height: math.unit(1.85, "feet"),
  35394. name: "Beans",
  35395. image: {
  35396. source: "./media/characters/keegan/beans.svg"
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Normal",
  35403. height: math.unit(6 + 5/12, "feet"),
  35404. default: true
  35405. },
  35406. ]
  35407. ))
  35408. characterMakers.push(() => makeCharacter(
  35409. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35410. {
  35411. front: {
  35412. height: math.unit(9, "feet"),
  35413. name: "Front",
  35414. image: {
  35415. source: "./media/characters/colton/front.svg",
  35416. extra: 1589/1326,
  35417. bottom: 139/1728
  35418. }
  35419. },
  35420. },
  35421. [
  35422. {
  35423. name: "Normal",
  35424. height: math.unit(9, "feet"),
  35425. default: true
  35426. },
  35427. ]
  35428. ))
  35429. characterMakers.push(() => makeCharacter(
  35430. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35431. {
  35432. front: {
  35433. height: math.unit(2 + 9/12, "feet"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/bora/front.svg",
  35437. extra: 1265/1250,
  35438. bottom: 24/1289
  35439. }
  35440. },
  35441. },
  35442. [
  35443. {
  35444. name: "Normal",
  35445. height: math.unit(2 + 9/12, "feet"),
  35446. default: true
  35447. },
  35448. ]
  35449. ))
  35450. characterMakers.push(() => makeCharacter(
  35451. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35452. {
  35453. front: {
  35454. height: math.unit(8, "feet"),
  35455. name: "Front",
  35456. image: {
  35457. source: "./media/characters/myu-myu/front.svg",
  35458. extra: 1949/1857,
  35459. bottom: 90/2039
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(8, "feet"),
  35467. default: true
  35468. },
  35469. {
  35470. name: "Big",
  35471. height: math.unit(15, "feet")
  35472. },
  35473. {
  35474. name: "BIG",
  35475. height: math.unit(25, "feet")
  35476. },
  35477. ]
  35478. ))
  35479. characterMakers.push(() => makeCharacter(
  35480. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35481. {
  35482. side: {
  35483. height: math.unit(7 + 5/12, "feet"),
  35484. weight: math.unit(2800, "lb"),
  35485. name: "Side",
  35486. image: {
  35487. source: "./media/characters/haloren/side.svg",
  35488. extra: 1793/409,
  35489. bottom: 59/1852
  35490. }
  35491. },
  35492. frontPaw: {
  35493. height: math.unit(2.36, "feet"),
  35494. name: "Front paw",
  35495. image: {
  35496. source: "./media/characters/haloren/front-paw.svg"
  35497. }
  35498. },
  35499. hindPaw: {
  35500. height: math.unit(3.18, "feet"),
  35501. name: "Hind paw",
  35502. image: {
  35503. source: "./media/characters/haloren/hind-paw.svg"
  35504. }
  35505. },
  35506. maw: {
  35507. height: math.unit(5.05, "feet"),
  35508. name: "Maw",
  35509. image: {
  35510. source: "./media/characters/haloren/maw.svg"
  35511. }
  35512. },
  35513. dick: {
  35514. height: math.unit(2.90, "feet"),
  35515. name: "Dick",
  35516. image: {
  35517. source: "./media/characters/haloren/dick.svg"
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(7 + 5/12, "feet"),
  35525. default: true
  35526. },
  35527. {
  35528. name: "Enhanced",
  35529. height: math.unit(14 + 3/12, "feet")
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(171, "cm"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/kimmy/front.svg",
  35541. extra: 1491/1435,
  35542. bottom: 53/1544
  35543. }
  35544. },
  35545. },
  35546. [
  35547. {
  35548. name: "Small",
  35549. height: math.unit(9, "cm")
  35550. },
  35551. {
  35552. name: "Normal",
  35553. height: math.unit(171, "cm"),
  35554. default: true
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35560. {
  35561. front: {
  35562. height: math.unit(8, "feet"),
  35563. weight: math.unit(300, "lb"),
  35564. name: "Front",
  35565. image: {
  35566. source: "./media/characters/galeboomer/front.svg",
  35567. extra: 4651/4415,
  35568. bottom: 162/4813
  35569. }
  35570. },
  35571. back: {
  35572. height: math.unit(8, "feet"),
  35573. weight: math.unit(300, "lb"),
  35574. name: "Back",
  35575. image: {
  35576. source: "./media/characters/galeboomer/back.svg",
  35577. extra: 4544/4314,
  35578. bottom: 16/4560
  35579. }
  35580. },
  35581. frontAlt: {
  35582. height: math.unit(8, "feet"),
  35583. weight: math.unit(300, "lb"),
  35584. name: "Front (Alt)",
  35585. image: {
  35586. source: "./media/characters/galeboomer/front-alt.svg",
  35587. extra: 4458/4228,
  35588. bottom: 68/4526
  35589. }
  35590. },
  35591. maw: {
  35592. height: math.unit(1.2, "feet"),
  35593. name: "Maw",
  35594. image: {
  35595. source: "./media/characters/galeboomer/maw.svg"
  35596. }
  35597. },
  35598. },
  35599. [
  35600. {
  35601. name: "Normal",
  35602. height: math.unit(8, "feet"),
  35603. default: true
  35604. },
  35605. ]
  35606. ))
  35607. characterMakers.push(() => makeCharacter(
  35608. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35609. {
  35610. front: {
  35611. height: math.unit(5 + 9/12, "feet"),
  35612. weight: math.unit(120, "lb"),
  35613. name: "Front",
  35614. image: {
  35615. source: "./media/characters/chyr/front.svg",
  35616. extra: 1323/1254,
  35617. bottom: 63/1386
  35618. }
  35619. },
  35620. back: {
  35621. height: math.unit(5 + 9/12, "feet"),
  35622. weight: math.unit(120, "lb"),
  35623. name: "Back",
  35624. image: {
  35625. source: "./media/characters/chyr/back.svg",
  35626. extra: 1323/1252,
  35627. bottom: 48/1371
  35628. }
  35629. },
  35630. },
  35631. [
  35632. {
  35633. name: "Normal",
  35634. height: math.unit(5 + 9/12, "feet"),
  35635. default: true
  35636. },
  35637. ]
  35638. ))
  35639. characterMakers.push(() => makeCharacter(
  35640. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35641. {
  35642. front: {
  35643. height: math.unit(7, "feet"),
  35644. weight: math.unit(310, "lb"),
  35645. name: "Front",
  35646. image: {
  35647. source: "./media/characters/solarus/front.svg",
  35648. extra: 2415/2021,
  35649. bottom: 103/2518
  35650. }
  35651. },
  35652. back: {
  35653. height: math.unit(7, "feet"),
  35654. weight: math.unit(310, "lb"),
  35655. name: "Back",
  35656. image: {
  35657. source: "./media/characters/solarus/back.svg",
  35658. extra: 2463/2089,
  35659. bottom: 79/2542
  35660. }
  35661. },
  35662. },
  35663. [
  35664. {
  35665. name: "Normal",
  35666. height: math.unit(7, "feet"),
  35667. default: true
  35668. },
  35669. ]
  35670. ))
  35671. characterMakers.push(() => makeCharacter(
  35672. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35673. {
  35674. front: {
  35675. height: math.unit(16, "feet"),
  35676. name: "Front",
  35677. image: {
  35678. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35679. extra: 1844/1780,
  35680. bottom: 58/1902
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(16, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35694. {
  35695. front: {
  35696. height: math.unit(11 + 6/12, "feet"),
  35697. weight: math.unit(1366, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/lexor/front.svg",
  35701. extra: 1560/1481,
  35702. bottom: 211/1771
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(11 + 6/12, "feet"),
  35707. weight: math.unit(1366, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/lexor/back.svg",
  35711. extra: 1614/1533,
  35712. bottom: 76/1690
  35713. }
  35714. },
  35715. maw: {
  35716. height: math.unit(3, "feet"),
  35717. name: "Maw",
  35718. image: {
  35719. source: "./media/characters/lexor/maw.svg"
  35720. }
  35721. },
  35722. dick: {
  35723. height: math.unit(2.59, "feet"),
  35724. name: "Dick",
  35725. image: {
  35726. source: "./media/characters/lexor/dick.svg"
  35727. }
  35728. },
  35729. },
  35730. [
  35731. {
  35732. name: "Normal",
  35733. height: math.unit(11 + 6/12, "feet"),
  35734. default: true
  35735. },
  35736. ]
  35737. ))
  35738. characterMakers.push(() => makeCharacter(
  35739. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35740. {
  35741. front: {
  35742. height: math.unit(5 + 8/12, "feet"),
  35743. name: "Front",
  35744. image: {
  35745. source: "./media/characters/magnum/front.svg",
  35746. extra: 942/855,
  35747. bottom: 26/968
  35748. }
  35749. },
  35750. },
  35751. [
  35752. {
  35753. name: "Normal",
  35754. height: math.unit(5 + 8/12, "feet"),
  35755. default: true
  35756. },
  35757. ]
  35758. ))
  35759. characterMakers.push(() => makeCharacter(
  35760. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35761. {
  35762. front: {
  35763. height: math.unit(18 + 4/12, "feet"),
  35764. weight: math.unit(1500, "kg"),
  35765. name: "Front",
  35766. image: {
  35767. source: "./media/characters/solas-sharpsman/front.svg",
  35768. extra: 1698/1589,
  35769. bottom: 0/1698
  35770. }
  35771. },
  35772. },
  35773. [
  35774. {
  35775. name: "Normal",
  35776. height: math.unit(18 + 4/12, "feet"),
  35777. default: true
  35778. },
  35779. ]
  35780. ))
  35781. characterMakers.push(() => makeCharacter(
  35782. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35783. {
  35784. front: {
  35785. height: math.unit(5 + 5/12, "feet"),
  35786. weight: math.unit(180, "lb"),
  35787. name: "Front",
  35788. image: {
  35789. source: "./media/characters/october/front.svg",
  35790. extra: 1800/1650,
  35791. bottom: 0/1800
  35792. }
  35793. },
  35794. frontNsfw: {
  35795. height: math.unit(5 + 5/12, "feet"),
  35796. weight: math.unit(180, "lb"),
  35797. name: "Front (NSFW)",
  35798. image: {
  35799. source: "./media/characters/october/front-nsfw.svg",
  35800. extra: 1392/1307,
  35801. bottom: 42/1434
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(5 + 5/12, "feet"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(8 + 6/12, "feet"),
  35818. name: "Front",
  35819. image: {
  35820. source: "./media/characters/essynkardi/front.svg",
  35821. extra: 1914/1846,
  35822. bottom: 22/1936
  35823. }
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Normal",
  35829. height: math.unit(8 + 6/12, "feet"),
  35830. default: true
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(6 + 6/12, "feet"),
  35839. weight: math.unit(7, "lb"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/icky/front.svg",
  35843. extra: 813/782,
  35844. bottom: 66/879
  35845. }
  35846. },
  35847. back: {
  35848. height: math.unit(6 + 6/12, "feet"),
  35849. weight: math.unit(7, "lb"),
  35850. name: "Back",
  35851. image: {
  35852. source: "./media/characters/icky/back.svg",
  35853. extra: 754/735,
  35854. bottom: 56/810
  35855. }
  35856. },
  35857. },
  35858. [
  35859. {
  35860. name: "Normal",
  35861. height: math.unit(6 + 6/12, "feet"),
  35862. default: true
  35863. },
  35864. ]
  35865. ))
  35866. characterMakers.push(() => makeCharacter(
  35867. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35868. {
  35869. front: {
  35870. height: math.unit(15, "feet"),
  35871. name: "Front",
  35872. image: {
  35873. source: "./media/characters/rojas/front.svg",
  35874. extra: 1462/1408,
  35875. bottom: 95/1557
  35876. }
  35877. },
  35878. back: {
  35879. height: math.unit(15, "feet"),
  35880. name: "Back",
  35881. image: {
  35882. source: "./media/characters/rojas/back.svg",
  35883. extra: 1023/954,
  35884. bottom: 28/1051
  35885. }
  35886. },
  35887. },
  35888. [
  35889. {
  35890. name: "Normal",
  35891. height: math.unit(15, "feet"),
  35892. default: true
  35893. },
  35894. ]
  35895. ))
  35896. characterMakers.push(() => makeCharacter(
  35897. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35898. {
  35899. frontHuman: {
  35900. height: math.unit(5 + 7/12, "feet"),
  35901. name: "Front (Human)",
  35902. image: {
  35903. source: "./media/characters/alek-dryagan/front-human.svg",
  35904. extra: 1687/1667,
  35905. bottom: 69/1756
  35906. }
  35907. },
  35908. backHuman: {
  35909. height: math.unit(5 + 7/12, "feet"),
  35910. name: "Back (Human)",
  35911. image: {
  35912. source: "./media/characters/alek-dryagan/back-human.svg",
  35913. extra: 1670/1649,
  35914. bottom: 65/1735
  35915. }
  35916. },
  35917. frontDemi: {
  35918. height: math.unit(65, "feet"),
  35919. name: "Front (Demi)",
  35920. image: {
  35921. source: "./media/characters/alek-dryagan/front-demi.svg",
  35922. extra: 1669/1642,
  35923. bottom: 49/1718
  35924. }
  35925. },
  35926. backDemi: {
  35927. height: math.unit(65, "feet"),
  35928. name: "Back (Demi)",
  35929. image: {
  35930. source: "./media/characters/alek-dryagan/back-demi.svg",
  35931. extra: 1658/1637,
  35932. bottom: 40/1698
  35933. }
  35934. },
  35935. mawHuman: {
  35936. height: math.unit(0.3, "feet"),
  35937. name: "Maw (Human)",
  35938. image: {
  35939. source: "./media/characters/alek-dryagan/maw-human.svg"
  35940. }
  35941. },
  35942. mawDemi: {
  35943. height: math.unit(3.8, "feet"),
  35944. name: "Maw (Demi)",
  35945. image: {
  35946. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(5 + 7/12, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35960. {
  35961. frontHuman: {
  35962. height: math.unit(5 + 2/12, "feet"),
  35963. name: "Front (Human)",
  35964. image: {
  35965. source: "./media/characters/gen/front-human.svg",
  35966. extra: 1627/1538,
  35967. bottom: 71/1698
  35968. }
  35969. },
  35970. backHuman: {
  35971. height: math.unit(5 + 2/12, "feet"),
  35972. name: "Back (Human)",
  35973. image: {
  35974. source: "./media/characters/gen/back-human.svg",
  35975. extra: 1638/1548,
  35976. bottom: 69/1707
  35977. }
  35978. },
  35979. frontDemi: {
  35980. height: math.unit(5 + 2/12, "feet"),
  35981. name: "Front (Demi)",
  35982. image: {
  35983. source: "./media/characters/gen/front-demi.svg",
  35984. extra: 1627/1538,
  35985. bottom: 71/1698
  35986. }
  35987. },
  35988. backDemi: {
  35989. height: math.unit(5 + 2/12, "feet"),
  35990. name: "Back (Demi)",
  35991. image: {
  35992. source: "./media/characters/gen/back-demi.svg",
  35993. extra: 1638/1548,
  35994. bottom: 69/1707
  35995. }
  35996. },
  35997. },
  35998. [
  35999. {
  36000. name: "Normal",
  36001. height: math.unit(5 + 2/12, "feet"),
  36002. default: true
  36003. },
  36004. ]
  36005. ))
  36006. characterMakers.push(() => makeCharacter(
  36007. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36008. {
  36009. frontImp: {
  36010. height: math.unit(1 + 11/12, "feet"),
  36011. name: "Front (Imp)",
  36012. image: {
  36013. source: "./media/characters/max-kobold/front-imp.svg",
  36014. extra: 1238/1134,
  36015. bottom: 81/1319
  36016. }
  36017. },
  36018. backImp: {
  36019. height: math.unit(1 + 11/12, "feet"),
  36020. name: "Back (Imp)",
  36021. image: {
  36022. source: "./media/characters/max-kobold/back-imp.svg",
  36023. extra: 1334/1175,
  36024. bottom: 34/1368
  36025. }
  36026. },
  36027. frontDemi: {
  36028. height: math.unit(5 + 9/12, "feet"),
  36029. name: "Front (Demi)",
  36030. image: {
  36031. source: "./media/characters/max-kobold/front-demi.svg",
  36032. extra: 1715/1685,
  36033. bottom: 54/1769
  36034. }
  36035. },
  36036. backDemi: {
  36037. height: math.unit(5 + 9/12, "feet"),
  36038. name: "Back (Demi)",
  36039. image: {
  36040. source: "./media/characters/max-kobold/back-demi.svg",
  36041. extra: 1752/1729,
  36042. bottom: 41/1793
  36043. }
  36044. },
  36045. handImp: {
  36046. height: math.unit(0.45, "feet"),
  36047. name: "Hand (Imp)",
  36048. image: {
  36049. source: "./media/characters/max-kobold/hand.svg"
  36050. }
  36051. },
  36052. pawImp: {
  36053. height: math.unit(0.46, "feet"),
  36054. name: "Paw (Imp)",
  36055. image: {
  36056. source: "./media/characters/max-kobold/paw.svg"
  36057. }
  36058. },
  36059. handDemi: {
  36060. height: math.unit(0.80, "feet"),
  36061. name: "Hand (Demi)",
  36062. image: {
  36063. source: "./media/characters/max-kobold/hand.svg"
  36064. }
  36065. },
  36066. pawDemi: {
  36067. height: math.unit(1.1, "feet"),
  36068. name: "Paw (Demi)",
  36069. image: {
  36070. source: "./media/characters/max-kobold/paw.svg"
  36071. }
  36072. },
  36073. headImp: {
  36074. height: math.unit(1.33, "feet"),
  36075. name: "Head (Imp)",
  36076. image: {
  36077. source: "./media/characters/max-kobold/head-imp.svg"
  36078. }
  36079. },
  36080. mawImp: {
  36081. height: math.unit(0.75, "feet"),
  36082. name: "Maw (Imp)",
  36083. image: {
  36084. source: "./media/characters/max-kobold/maw-imp.svg"
  36085. }
  36086. },
  36087. mawDemi: {
  36088. height: math.unit(0.42, "feet"),
  36089. name: "Maw (Demi)",
  36090. image: {
  36091. source: "./media/characters/max-kobold/maw-demi.svg"
  36092. }
  36093. },
  36094. },
  36095. [
  36096. {
  36097. name: "Normal",
  36098. height: math.unit(1 + 11/12, "feet"),
  36099. default: true
  36100. },
  36101. ]
  36102. ))
  36103. characterMakers.push(() => makeCharacter(
  36104. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36105. {
  36106. front: {
  36107. height: math.unit(7 + 5/12, "feet"),
  36108. name: "Front",
  36109. image: {
  36110. source: "./media/characters/carbon/front.svg",
  36111. extra: 1754/1689,
  36112. bottom: 65/1819
  36113. }
  36114. },
  36115. back: {
  36116. height: math.unit(7 + 5/12, "feet"),
  36117. name: "Back",
  36118. image: {
  36119. source: "./media/characters/carbon/back.svg",
  36120. extra: 1762/1695,
  36121. bottom: 24/1786
  36122. }
  36123. },
  36124. frontGigantamax: {
  36125. height: math.unit(150, "feet"),
  36126. name: "Front (Gigantamax)",
  36127. image: {
  36128. source: "./media/characters/carbon/front-gigantamax.svg",
  36129. extra: 1826/1669,
  36130. bottom: 59/1885
  36131. }
  36132. },
  36133. backGigantamax: {
  36134. height: math.unit(150, "feet"),
  36135. name: "Back (Gigantamax)",
  36136. image: {
  36137. source: "./media/characters/carbon/back-gigantamax.svg",
  36138. extra: 1796/1653,
  36139. bottom: 53/1849
  36140. }
  36141. },
  36142. maw: {
  36143. height: math.unit(0.48, "feet"),
  36144. name: "Maw",
  36145. image: {
  36146. source: "./media/characters/carbon/maw.svg"
  36147. }
  36148. },
  36149. mawGigantamax: {
  36150. height: math.unit(7.5, "feet"),
  36151. name: "Maw (Gigantamax)",
  36152. image: {
  36153. source: "./media/characters/carbon/maw-gigantamax.svg"
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Normal",
  36160. height: math.unit(7 + 5/12, "feet"),
  36161. default: true
  36162. },
  36163. ]
  36164. ))
  36165. characterMakers.push(() => makeCharacter(
  36166. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36167. {
  36168. front: {
  36169. height: math.unit(6, "feet"),
  36170. name: "Front",
  36171. image: {
  36172. source: "./media/characters/maverick/front.svg",
  36173. extra: 1672/1661,
  36174. bottom: 85/1757
  36175. }
  36176. },
  36177. back: {
  36178. height: math.unit(6, "feet"),
  36179. name: "Back",
  36180. image: {
  36181. source: "./media/characters/maverick/back.svg",
  36182. extra: 1642/1631,
  36183. bottom: 38/1680
  36184. }
  36185. },
  36186. },
  36187. [
  36188. {
  36189. name: "Normal",
  36190. height: math.unit(6, "feet"),
  36191. default: true
  36192. },
  36193. ]
  36194. ))
  36195. characterMakers.push(() => makeCharacter(
  36196. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36197. {
  36198. front: {
  36199. height: math.unit(15, "feet"),
  36200. weight: math.unit(615, "lb"),
  36201. name: "Front",
  36202. image: {
  36203. source: "./media/characters/grockle/front.svg",
  36204. extra: 1535/1427,
  36205. bottom: 56/1591
  36206. }
  36207. },
  36208. },
  36209. [
  36210. {
  36211. name: "Normal",
  36212. height: math.unit(15, "feet"),
  36213. default: true
  36214. },
  36215. {
  36216. name: "Large",
  36217. height: math.unit(150, "feet")
  36218. },
  36219. {
  36220. name: "Macro",
  36221. height: math.unit(1876, "feet")
  36222. },
  36223. {
  36224. name: "Mega Macro",
  36225. height: math.unit(121940, "feet")
  36226. },
  36227. {
  36228. name: "Giga Macro",
  36229. height: math.unit(750, "km")
  36230. },
  36231. {
  36232. name: "Tera Macro",
  36233. height: math.unit(750000, "km")
  36234. },
  36235. {
  36236. name: "Galactic",
  36237. height: math.unit(1.4e5, "km")
  36238. },
  36239. {
  36240. name: "Godlike",
  36241. height: math.unit(9.8e280, "galaxies")
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36247. {
  36248. front: {
  36249. height: math.unit(11, "meters"),
  36250. weight: math.unit(20, "tonnes"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/alistair/front.svg",
  36254. extra: 1265/1009,
  36255. bottom: 93/1358
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(11, "meters"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(5 + 8/12, "feet"),
  36272. name: "Front",
  36273. image: {
  36274. source: "./media/characters/haruka/front.svg",
  36275. extra: 2012/1952,
  36276. bottom: 0/2012
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(5 + 8/12, "feet"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36290. {
  36291. back: {
  36292. height: math.unit(9, "feet"),
  36293. name: "Back",
  36294. image: {
  36295. source: "./media/characters/vivian-sylveon/back.svg",
  36296. extra: 1853/1714,
  36297. bottom: 0/1853
  36298. }
  36299. },
  36300. },
  36301. [
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(9, "feet"),
  36305. default: true
  36306. },
  36307. {
  36308. name: "Macro",
  36309. height: math.unit(500, "feet")
  36310. },
  36311. {
  36312. name: "Megamacro",
  36313. height: math.unit(600, "miles")
  36314. },
  36315. {
  36316. name: "Gigamacro",
  36317. height: math.unit(30000, "miles")
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36323. {
  36324. anthro: {
  36325. height: math.unit(5 + 10/12, "feet"),
  36326. weight: math.unit(100, "lb"),
  36327. name: "Anthro",
  36328. image: {
  36329. source: "./media/characters/daiki/anthro.svg",
  36330. extra: 1115/1027,
  36331. bottom: 69/1184
  36332. }
  36333. },
  36334. feral: {
  36335. height: math.unit(200, "feet"),
  36336. name: "Feral",
  36337. image: {
  36338. source: "./media/characters/daiki/feral.svg",
  36339. extra: 1256/313,
  36340. bottom: 39/1295
  36341. }
  36342. },
  36343. feralHead: {
  36344. height: math.unit(171, "feet"),
  36345. name: "Feral Head",
  36346. image: {
  36347. source: "./media/characters/daiki/feral-head.svg"
  36348. }
  36349. },
  36350. manaDragon: {
  36351. height: math.unit(170, "meters"),
  36352. name: "Mana-dragon",
  36353. image: {
  36354. source: "./media/characters/daiki/mana-dragon.svg",
  36355. extra: 763/420,
  36356. bottom: 97/860
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(5 + 10/12, "feet"),
  36364. default: true
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36370. {
  36371. fullyEquippedFront: {
  36372. height: math.unit(3 + 1/12, "feet"),
  36373. weight: math.unit(24, "lb"),
  36374. name: "Fully Equipped (Front)",
  36375. image: {
  36376. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36377. extra: 687/605,
  36378. bottom: 18/705
  36379. }
  36380. },
  36381. fullyEquippedBack: {
  36382. height: math.unit(3 + 1/12, "feet"),
  36383. weight: math.unit(24, "lb"),
  36384. name: "Fully Equipped (Back)",
  36385. image: {
  36386. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36387. extra: 689/590,
  36388. bottom: 18/707
  36389. }
  36390. },
  36391. dailyWear: {
  36392. height: math.unit(3 + 1/12, "feet"),
  36393. weight: math.unit(24, "lb"),
  36394. name: "Daily Wear",
  36395. image: {
  36396. source: "./media/characters/tea-spot/daily-wear.svg",
  36397. extra: 701/620,
  36398. bottom: 21/722
  36399. }
  36400. },
  36401. maidWork: {
  36402. height: math.unit(3 + 1/12, "feet"),
  36403. weight: math.unit(24, "lb"),
  36404. name: "Maid Work",
  36405. image: {
  36406. source: "./media/characters/tea-spot/maid-work.svg",
  36407. extra: 693/609,
  36408. bottom: 15/708
  36409. }
  36410. },
  36411. },
  36412. [
  36413. {
  36414. name: "Normal",
  36415. height: math.unit(3 + 1/12, "feet"),
  36416. default: true
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36422. {
  36423. front: {
  36424. height: math.unit(175, "cm"),
  36425. weight: math.unit(75, "kg"),
  36426. name: "Front",
  36427. image: {
  36428. source: "./media/characters/chee/front.svg",
  36429. extra: 1796/1740,
  36430. bottom: 40/1836
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Micro-Micro",
  36437. height: math.unit(1, "nm")
  36438. },
  36439. {
  36440. name: "Micro-erst",
  36441. height: math.unit(1, "micrometer")
  36442. },
  36443. {
  36444. name: "Micro-er",
  36445. height: math.unit(1, "cm")
  36446. },
  36447. {
  36448. name: "Normal",
  36449. height: math.unit(175, "cm"),
  36450. default: true
  36451. },
  36452. {
  36453. name: "Macro",
  36454. height: math.unit(100, "m")
  36455. },
  36456. {
  36457. name: "Macro-er",
  36458. height: math.unit(1, "km")
  36459. },
  36460. {
  36461. name: "Macro-erst",
  36462. height: math.unit(10, "km")
  36463. },
  36464. {
  36465. name: "Macro-Macro",
  36466. height: math.unit(100, "km")
  36467. },
  36468. ]
  36469. ))
  36470. characterMakers.push(() => makeCharacter(
  36471. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36472. {
  36473. front: {
  36474. height: math.unit(11 + 9/12, "feet"),
  36475. weight: math.unit(935, "lb"),
  36476. name: "Front",
  36477. image: {
  36478. source: "./media/characters/kingsley/front.svg",
  36479. extra: 1803/1674,
  36480. bottom: 127/1930
  36481. }
  36482. },
  36483. frontNude: {
  36484. height: math.unit(11 + 9/12, "feet"),
  36485. weight: math.unit(935, "lb"),
  36486. name: "Front (Nude)",
  36487. image: {
  36488. source: "./media/characters/kingsley/front-nude.svg",
  36489. extra: 1803/1674,
  36490. bottom: 127/1930
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(11 + 9/12, "feet"),
  36498. default: true
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36504. {
  36505. side: {
  36506. height: math.unit(9, "feet"),
  36507. name: "Side",
  36508. image: {
  36509. source: "./media/characters/rymel/side.svg",
  36510. extra: 792/469,
  36511. bottom: 121/913
  36512. }
  36513. },
  36514. maw: {
  36515. height: math.unit(2.4, "meters"),
  36516. name: "Maw",
  36517. image: {
  36518. source: "./media/characters/rymel/maw.svg"
  36519. }
  36520. },
  36521. },
  36522. [
  36523. {
  36524. name: "House Drake",
  36525. height: math.unit(2, "feet")
  36526. },
  36527. {
  36528. name: "Reduced",
  36529. height: math.unit(4.5, "feet")
  36530. },
  36531. {
  36532. name: "Normal",
  36533. height: math.unit(9, "feet"),
  36534. default: true
  36535. },
  36536. ]
  36537. ))
  36538. characterMakers.push(() => makeCharacter(
  36539. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36540. {
  36541. front: {
  36542. height: math.unit(1.74, "meters"),
  36543. weight: math.unit(55, "kg"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/rubus/front.svg",
  36547. extra: 1894/1742,
  36548. bottom: 44/1938
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Normal",
  36555. height: math.unit(1.74, "meters"),
  36556. default: true
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(5 + 2/12, "feet"),
  36565. weight: math.unit(112, "lb"),
  36566. name: "Front",
  36567. image: {
  36568. source: "./media/characters/cassie-kingston/front.svg",
  36569. extra: 1438/1390,
  36570. bottom: 47/1485
  36571. }
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(5 + 2/12, "feet"),
  36578. default: true
  36579. },
  36580. {
  36581. name: "Macro",
  36582. height: math.unit(128, "feet")
  36583. },
  36584. {
  36585. name: "Megamacro",
  36586. height: math.unit(2.56, "miles")
  36587. },
  36588. ]
  36589. ))
  36590. characterMakers.push(() => makeCharacter(
  36591. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36592. {
  36593. front: {
  36594. height: math.unit(7, "feet"),
  36595. name: "Front",
  36596. image: {
  36597. source: "./media/characters/fox/front.svg",
  36598. extra: 1798/1703,
  36599. bottom: 55/1853
  36600. }
  36601. },
  36602. back: {
  36603. height: math.unit(7, "feet"),
  36604. name: "Back",
  36605. image: {
  36606. source: "./media/characters/fox/back.svg",
  36607. extra: 1748/1649,
  36608. bottom: 32/1780
  36609. }
  36610. },
  36611. head: {
  36612. height: math.unit(1.95, "feet"),
  36613. name: "Head",
  36614. image: {
  36615. source: "./media/characters/fox/head.svg"
  36616. }
  36617. },
  36618. dick: {
  36619. height: math.unit(1.33, "feet"),
  36620. name: "Dick",
  36621. image: {
  36622. source: "./media/characters/fox/dick.svg"
  36623. }
  36624. },
  36625. foot: {
  36626. height: math.unit(1, "feet"),
  36627. name: "Foot",
  36628. image: {
  36629. source: "./media/characters/fox/foot.svg"
  36630. }
  36631. },
  36632. paw: {
  36633. height: math.unit(0.92, "feet"),
  36634. name: "Paw",
  36635. image: {
  36636. source: "./media/characters/fox/paw.svg"
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Small",
  36643. height: math.unit(3, "inches")
  36644. },
  36645. {
  36646. name: "\"Realistic\"",
  36647. height: math.unit(7, "feet")
  36648. },
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(150, "feet"),
  36652. default: true
  36653. },
  36654. {
  36655. name: "BIG",
  36656. height: math.unit(1200, "feet")
  36657. },
  36658. {
  36659. name: "👀",
  36660. height: math.unit(5, "miles")
  36661. },
  36662. {
  36663. name: "👀👀👀",
  36664. height: math.unit(64, "miles")
  36665. },
  36666. ]
  36667. ))
  36668. characterMakers.push(() => makeCharacter(
  36669. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36670. {
  36671. front: {
  36672. height: math.unit(625, "feet"),
  36673. name: "Front",
  36674. image: {
  36675. source: "./media/characters/asonja-rossa/front.svg",
  36676. extra: 1833/1686,
  36677. bottom: 24/1857
  36678. }
  36679. },
  36680. back: {
  36681. height: math.unit(625, "feet"),
  36682. name: "Back",
  36683. image: {
  36684. source: "./media/characters/asonja-rossa/back.svg",
  36685. extra: 1852/1753,
  36686. bottom: 26/1878
  36687. }
  36688. },
  36689. },
  36690. [
  36691. {
  36692. name: "Macro",
  36693. height: math.unit(625, "feet"),
  36694. default: true
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36700. {
  36701. side: {
  36702. height: math.unit(6, "feet"),
  36703. weight: math.unit(150, "lb"),
  36704. name: "Side",
  36705. image: {
  36706. source: "./media/characters/rezukii/side.svg",
  36707. extra: 979/542,
  36708. bottom: 87/1066
  36709. }
  36710. },
  36711. },
  36712. [
  36713. {
  36714. name: "Tiny",
  36715. height: math.unit(2, "feet")
  36716. },
  36717. {
  36718. name: "Smol",
  36719. height: math.unit(4, "feet")
  36720. },
  36721. {
  36722. name: "Normal",
  36723. height: math.unit(8, "feet"),
  36724. default: true
  36725. },
  36726. {
  36727. name: "Big",
  36728. height: math.unit(12, "feet")
  36729. },
  36730. {
  36731. name: "Macro",
  36732. height: math.unit(30, "feet")
  36733. },
  36734. ]
  36735. ))
  36736. characterMakers.push(() => makeCharacter(
  36737. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36738. {
  36739. front: {
  36740. height: math.unit(14, "feet"),
  36741. weight: math.unit(9.5, "tonnes"),
  36742. name: "Front",
  36743. image: {
  36744. source: "./media/characters/dawnheart/front.svg",
  36745. extra: 2792/2675,
  36746. bottom: 64/2856
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Normal",
  36753. height: math.unit(14, "feet"),
  36754. default: true
  36755. },
  36756. ]
  36757. ))
  36758. characterMakers.push(() => makeCharacter(
  36759. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36760. {
  36761. front: {
  36762. height: math.unit(1.7, "m"),
  36763. name: "Front",
  36764. image: {
  36765. source: "./media/characters/gladi/front.svg",
  36766. extra: 1460/1362,
  36767. bottom: 19/1479
  36768. }
  36769. },
  36770. back: {
  36771. height: math.unit(1.7, "m"),
  36772. name: "Back",
  36773. image: {
  36774. source: "./media/characters/gladi/back.svg",
  36775. extra: 1459/1357,
  36776. bottom: 12/1471
  36777. }
  36778. },
  36779. feral: {
  36780. height: math.unit(2.05, "m"),
  36781. name: "Feral",
  36782. image: {
  36783. source: "./media/characters/gladi/feral.svg",
  36784. extra: 821/557,
  36785. bottom: 91/912
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Shortest",
  36792. height: math.unit(70, "cm")
  36793. },
  36794. {
  36795. name: "Normal",
  36796. height: math.unit(1.7, "m")
  36797. },
  36798. {
  36799. name: "Macro",
  36800. height: math.unit(10, "m"),
  36801. default: true
  36802. },
  36803. {
  36804. name: "Tallest",
  36805. height: math.unit(200, "m")
  36806. },
  36807. ]
  36808. ))
  36809. characterMakers.push(() => makeCharacter(
  36810. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36811. {
  36812. front: {
  36813. height: math.unit(5 + 7/12, "feet"),
  36814. weight: math.unit(92, "kg"),
  36815. name: "Front",
  36816. image: {
  36817. source: "./media/characters/erdno/front.svg",
  36818. extra: 1954/1889,
  36819. bottom: 22/1976
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(5 + 7/12, "feet"),
  36827. default: true
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36833. {
  36834. front: {
  36835. height: math.unit(5 + 10/12, "feet"),
  36836. weight: math.unit(150, "lb"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/jamie/front.svg",
  36840. extra: 1908/1768,
  36841. bottom: 19/1927
  36842. }
  36843. },
  36844. },
  36845. [
  36846. {
  36847. name: "Minimum",
  36848. height: math.unit(2, "cm")
  36849. },
  36850. {
  36851. name: "Micro",
  36852. height: math.unit(3, "inches")
  36853. },
  36854. {
  36855. name: "Normal",
  36856. height: math.unit(5 + 10/12, "feet"),
  36857. default: true
  36858. },
  36859. {
  36860. name: "Macro",
  36861. height: math.unit(150, "feet")
  36862. },
  36863. {
  36864. name: "Megamacro",
  36865. height: math.unit(10000, "m")
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(2, "meters"),
  36874. weight: math.unit(100, "kg"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/shiron/front.svg",
  36878. extra: 2103/1985,
  36879. bottom: 98/2201
  36880. }
  36881. },
  36882. back: {
  36883. height: math.unit(2, "meters"),
  36884. weight: math.unit(100, "kg"),
  36885. name: "Back",
  36886. image: {
  36887. source: "./media/characters/shiron/back.svg",
  36888. extra: 2110/2015,
  36889. bottom: 89/2199
  36890. }
  36891. },
  36892. hand: {
  36893. height: math.unit(0.96, "feet"),
  36894. name: "Hand",
  36895. image: {
  36896. source: "./media/characters/shiron/hand.svg"
  36897. }
  36898. },
  36899. foot: {
  36900. height: math.unit(1.464, "feet"),
  36901. name: "Foot",
  36902. image: {
  36903. source: "./media/characters/shiron/foot.svg"
  36904. }
  36905. },
  36906. },
  36907. [
  36908. {
  36909. name: "Normal",
  36910. height: math.unit(2, "meters")
  36911. },
  36912. {
  36913. name: "Macro",
  36914. height: math.unit(500, "meters"),
  36915. default: true
  36916. },
  36917. {
  36918. name: "Megamacro",
  36919. height: math.unit(20, "km")
  36920. },
  36921. ]
  36922. ))
  36923. characterMakers.push(() => makeCharacter(
  36924. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36925. {
  36926. front: {
  36927. height: math.unit(6, "feet"),
  36928. name: "Front",
  36929. image: {
  36930. source: "./media/characters/sam/front.svg",
  36931. extra: 849/826,
  36932. bottom: 19/868
  36933. }
  36934. },
  36935. },
  36936. [
  36937. {
  36938. name: "Normal",
  36939. height: math.unit(6, "feet"),
  36940. default: true
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36946. {
  36947. front: {
  36948. height: math.unit(8 + 4/12, "feet"),
  36949. weight: math.unit(122, "kg"),
  36950. name: "Front",
  36951. image: {
  36952. source: "./media/characters/namori-kurogawa/front.svg",
  36953. extra: 1894/1576,
  36954. bottom: 34/1928
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(8 + 4/12, "feet"),
  36962. default: true
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36968. {
  36969. front: {
  36970. height: math.unit(9, "feet"),
  36971. weight: math.unit(621, "lb"),
  36972. name: "Front",
  36973. image: {
  36974. source: "./media/characters/unmru/front.svg",
  36975. extra: 1853/1747,
  36976. bottom: 73/1926
  36977. }
  36978. },
  36979. side: {
  36980. height: math.unit(9, "feet"),
  36981. weight: math.unit(621, "lb"),
  36982. name: "Side",
  36983. image: {
  36984. source: "./media/characters/unmru/side.svg",
  36985. extra: 1781/1671,
  36986. bottom: 127/1908
  36987. }
  36988. },
  36989. back: {
  36990. height: math.unit(9, "feet"),
  36991. weight: math.unit(621, "lb"),
  36992. name: "Back",
  36993. image: {
  36994. source: "./media/characters/unmru/back.svg",
  36995. extra: 1894/1765,
  36996. bottom: 75/1969
  36997. }
  36998. },
  36999. dick: {
  37000. height: math.unit(3, "feet"),
  37001. weight: math.unit(35, "lb"),
  37002. name: "Dick",
  37003. image: {
  37004. source: "./media/characters/unmru/dick.svg"
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(9, "feet")
  37012. },
  37013. {
  37014. name: "Natural",
  37015. height: math.unit(27, "feet"),
  37016. default: true
  37017. },
  37018. {
  37019. name: "Giant",
  37020. height: math.unit(90, "feet")
  37021. },
  37022. {
  37023. name: "Kaiju",
  37024. height: math.unit(270, "feet")
  37025. },
  37026. {
  37027. name: "Macro",
  37028. height: math.unit(900, "feet")
  37029. },
  37030. {
  37031. name: "Macro+",
  37032. height: math.unit(2700, "feet")
  37033. },
  37034. {
  37035. name: "Megamacro",
  37036. height: math.unit(9000, "feet")
  37037. },
  37038. {
  37039. name: "City-Crushing",
  37040. height: math.unit(27000, "feet")
  37041. },
  37042. {
  37043. name: "Mountain-Mashing",
  37044. height: math.unit(90000, "feet")
  37045. },
  37046. {
  37047. name: "Earth-Eclipsing",
  37048. height: math.unit(2.7e8, "feet")
  37049. },
  37050. {
  37051. name: "Sol-Swallowing",
  37052. height: math.unit(9e10, "feet")
  37053. },
  37054. {
  37055. name: "Majoris-Munching",
  37056. height: math.unit(2.7e13, "feet")
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37062. {
  37063. front: {
  37064. height: math.unit(1, "inch"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/squeaks-mouse/front.svg",
  37068. extra: 352/308,
  37069. bottom: 25/377
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Micro",
  37076. height: math.unit(1, "inch"),
  37077. default: true
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37083. {
  37084. side: {
  37085. height: math.unit(35, "feet"),
  37086. name: "Side",
  37087. image: {
  37088. source: "./media/characters/sayko/side.svg",
  37089. extra: 1697/1021,
  37090. bottom: 82/1779
  37091. }
  37092. },
  37093. head: {
  37094. height: math.unit(16, "feet"),
  37095. name: "Head",
  37096. image: {
  37097. source: "./media/characters/sayko/head.svg"
  37098. }
  37099. },
  37100. forepaw: {
  37101. height: math.unit(7.85, "feet"),
  37102. name: "Forepaw",
  37103. image: {
  37104. source: "./media/characters/sayko/forepaw.svg"
  37105. }
  37106. },
  37107. hindpaw: {
  37108. height: math.unit(8.8, "feet"),
  37109. name: "Hindpaw",
  37110. image: {
  37111. source: "./media/characters/sayko/hindpaw.svg"
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(35, "feet"),
  37119. default: true
  37120. },
  37121. {
  37122. name: "Colossus",
  37123. height: math.unit(100, "meters")
  37124. },
  37125. {
  37126. name: "\"Small\" Deity",
  37127. height: math.unit(1, "km")
  37128. },
  37129. {
  37130. name: "\"Large\" Deity",
  37131. height: math.unit(15, "km")
  37132. },
  37133. ]
  37134. ))
  37135. characterMakers.push(() => makeCharacter(
  37136. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37137. {
  37138. front: {
  37139. height: math.unit(6, "feet"),
  37140. weight: math.unit(250, "lb"),
  37141. name: "Front",
  37142. image: {
  37143. source: "./media/characters/mukiro/front.svg",
  37144. extra: 1368/1310,
  37145. bottom: 34/1402
  37146. }
  37147. },
  37148. },
  37149. [
  37150. {
  37151. name: "Normal",
  37152. height: math.unit(6, "feet"),
  37153. default: true
  37154. },
  37155. ]
  37156. ))
  37157. characterMakers.push(() => makeCharacter(
  37158. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37159. {
  37160. front: {
  37161. height: math.unit(12 + 4/12, "feet"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37165. extra: 1346/1311,
  37166. bottom: 65/1411
  37167. }
  37168. },
  37169. },
  37170. [
  37171. {
  37172. name: "Base",
  37173. height: math.unit(12 + 4/12, "feet"),
  37174. default: true
  37175. },
  37176. {
  37177. name: "Macro",
  37178. height: math.unit(150, "feet")
  37179. },
  37180. {
  37181. name: "Mega",
  37182. height: math.unit(2, "miles")
  37183. },
  37184. {
  37185. name: "Demi God",
  37186. height: math.unit(4, "AU")
  37187. },
  37188. {
  37189. name: "God Size",
  37190. height: math.unit(1, "universe")
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37196. {
  37197. front: {
  37198. height: math.unit(3 + 3/12, "feet"),
  37199. weight: math.unit(88, "lb"),
  37200. name: "Front",
  37201. image: {
  37202. source: "./media/characters/trey/front.svg",
  37203. extra: 1815/1509,
  37204. bottom: 60/1875
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(3 + 3/12, "feet"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(4, "meters"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/adelonda/front.svg",
  37224. extra: 1942/1775,
  37225. bottom: 33/1975
  37226. }
  37227. },
  37228. back: {
  37229. height: math.unit(4, "meters"),
  37230. name: "Back",
  37231. image: {
  37232. source: "./media/characters/adelonda/back.svg",
  37233. extra: 1932/1780,
  37234. bottom: 42/1974
  37235. }
  37236. },
  37237. bust: {
  37238. height: math.unit(1.8, "meter"),
  37239. name: "Bust",
  37240. image: {
  37241. source: "./media/characters/adelonda/bust.svg"
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(4, "meters"),
  37249. default: true
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37255. {
  37256. front: {
  37257. height: math.unit(8 + 4/12, "feet"),
  37258. weight: math.unit(670, "lb"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/acadiel/front.svg",
  37262. extra: 1901/1595,
  37263. bottom: 142/2043
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(8 + 4/12, "feet"),
  37271. default: true
  37272. },
  37273. {
  37274. name: "Macro",
  37275. height: math.unit(200, "feet")
  37276. },
  37277. ]
  37278. ))
  37279. characterMakers.push(() => makeCharacter(
  37280. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37281. {
  37282. front: {
  37283. height: math.unit(6 + 2/12, "feet"),
  37284. weight: math.unit(185, "lb"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/kayne-ein/front.svg",
  37288. extra: 1780/1560,
  37289. bottom: 81/1861
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(6 + 2/12, "feet"),
  37297. default: true
  37298. },
  37299. {
  37300. name: "Transformation Stage",
  37301. height: math.unit(15, "feet")
  37302. },
  37303. {
  37304. name: "Macro",
  37305. height: math.unit(150, "feet")
  37306. },
  37307. {
  37308. name: "Earth's Shadow",
  37309. height: math.unit(6200, "miles")
  37310. },
  37311. {
  37312. name: "Universal Demon",
  37313. height: math.unit(28e9, "parsecs")
  37314. },
  37315. {
  37316. name: "Multiverse God",
  37317. height: math.unit(3, "multiverses")
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(5 + 5/12, "feet"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/fawn/front.svg",
  37329. extra: 1873/1731,
  37330. bottom: 95/1968
  37331. }
  37332. },
  37333. back: {
  37334. height: math.unit(5 + 5/12, "feet"),
  37335. name: "Back",
  37336. image: {
  37337. source: "./media/characters/fawn/back.svg",
  37338. extra: 1813/1700,
  37339. bottom: 14/1827
  37340. }
  37341. },
  37342. hoof: {
  37343. height: math.unit(1.45, "feet"),
  37344. name: "Hoof",
  37345. image: {
  37346. source: "./media/characters/fawn/hoof.svg"
  37347. }
  37348. },
  37349. },
  37350. [
  37351. {
  37352. name: "Normal",
  37353. height: math.unit(5 + 5/12, "feet"),
  37354. default: true
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37360. {
  37361. front: {
  37362. height: math.unit(2 + 5/12, "feet"),
  37363. name: "Front",
  37364. image: {
  37365. source: "./media/characters/orion/front.svg",
  37366. extra: 1366/1304,
  37367. bottom: 43/1409
  37368. }
  37369. },
  37370. paw: {
  37371. height: math.unit(0.52, "feet"),
  37372. name: "Paw",
  37373. image: {
  37374. source: "./media/characters/orion/paw.svg"
  37375. }
  37376. },
  37377. },
  37378. [
  37379. {
  37380. name: "Normal",
  37381. height: math.unit(2 + 5/12, "feet"),
  37382. default: true
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37388. {
  37389. front: {
  37390. height: math.unit(5 + 10/12, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/vera/front.svg",
  37394. extra: 1680/1575,
  37395. bottom: 49/1729
  37396. }
  37397. },
  37398. back: {
  37399. height: math.unit(5 + 10/12, "feet"),
  37400. name: "Back",
  37401. image: {
  37402. source: "./media/characters/vera/back.svg",
  37403. extra: 1700/1588,
  37404. bottom: 18/1718
  37405. }
  37406. },
  37407. arcanine: {
  37408. height: math.unit(6 + 8/12, "feet"),
  37409. name: "Arcanine",
  37410. image: {
  37411. source: "./media/characters/vera/arcanine.svg",
  37412. extra: 1590/1511,
  37413. bottom: 71/1661
  37414. }
  37415. },
  37416. maw: {
  37417. height: math.unit(0.82, "feet"),
  37418. name: "Maw",
  37419. image: {
  37420. source: "./media/characters/vera/maw.svg"
  37421. }
  37422. },
  37423. mawArcanine: {
  37424. height: math.unit(0.97, "feet"),
  37425. name: "Maw (Arcanine)",
  37426. image: {
  37427. source: "./media/characters/vera/maw-arcanine.svg"
  37428. }
  37429. },
  37430. paw: {
  37431. height: math.unit(0.75, "feet"),
  37432. name: "Paw",
  37433. image: {
  37434. source: "./media/characters/vera/paw.svg"
  37435. }
  37436. },
  37437. pawprint: {
  37438. height: math.unit(0.52, "feet"),
  37439. name: "Pawprint",
  37440. image: {
  37441. source: "./media/characters/vera/pawprint.svg"
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(5 + 10/12, "feet"),
  37449. default: true
  37450. },
  37451. {
  37452. name: "Macro",
  37453. height: math.unit(75, "feet")
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37459. {
  37460. front: {
  37461. height: math.unit(4, "feet"),
  37462. weight: math.unit(40, "lb"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/orvan-rabbit/front.svg",
  37466. extra: 1896/1642,
  37467. bottom: 29/1925
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Normal",
  37474. height: math.unit(4, "feet"),
  37475. default: true
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(6, "feet"),
  37484. weight: math.unit(168, "lb"),
  37485. name: "Front",
  37486. image: {
  37487. source: "./media/characters/lisa/front.svg",
  37488. extra: 2065/1867,
  37489. bottom: 46/2111
  37490. }
  37491. },
  37492. back: {
  37493. height: math.unit(6, "feet"),
  37494. weight: math.unit(168, "lb"),
  37495. name: "Back",
  37496. image: {
  37497. source: "./media/characters/lisa/back.svg",
  37498. extra: 1982/1838,
  37499. bottom: 29/2011
  37500. }
  37501. },
  37502. maw: {
  37503. height: math.unit(0.81, "feet"),
  37504. name: "Maw",
  37505. image: {
  37506. source: "./media/characters/lisa/maw.svg"
  37507. }
  37508. },
  37509. paw: {
  37510. height: math.unit(0.9, "feet"),
  37511. name: "Paw",
  37512. image: {
  37513. source: "./media/characters/lisa/paw.svg"
  37514. }
  37515. },
  37516. caribousune: {
  37517. height: math.unit(7 + 2/12, "feet"),
  37518. weight: math.unit(268, "lb"),
  37519. name: "Caribousune",
  37520. image: {
  37521. source: "./media/characters/lisa/caribousune.svg",
  37522. extra: 1843/1633,
  37523. bottom: 29/1872
  37524. }
  37525. },
  37526. frontCaribousune: {
  37527. height: math.unit(7 + 2/12, "feet"),
  37528. weight: math.unit(268, "lb"),
  37529. name: "Front (Caribousune)",
  37530. image: {
  37531. source: "./media/characters/lisa/front-caribousune.svg",
  37532. extra: 1818/1638,
  37533. bottom: 52/1870
  37534. }
  37535. },
  37536. sideCaribousune: {
  37537. height: math.unit(7 + 2/12, "feet"),
  37538. weight: math.unit(268, "lb"),
  37539. name: "Side (Caribousune)",
  37540. image: {
  37541. source: "./media/characters/lisa/side-caribousune.svg",
  37542. extra: 1851/1635,
  37543. bottom: 16/1867
  37544. }
  37545. },
  37546. backCaribousune: {
  37547. height: math.unit(7 + 2/12, "feet"),
  37548. weight: math.unit(268, "lb"),
  37549. name: "Back (Caribousune)",
  37550. image: {
  37551. source: "./media/characters/lisa/back-caribousune.svg",
  37552. extra: 1801/1604,
  37553. bottom: 44/1845
  37554. }
  37555. },
  37556. caribou: {
  37557. height: math.unit(7 + 2/12, "feet"),
  37558. weight: math.unit(268, "lb"),
  37559. name: "Caribou",
  37560. image: {
  37561. source: "./media/characters/lisa/caribou.svg",
  37562. extra: 1843/1633,
  37563. bottom: 29/1872
  37564. }
  37565. },
  37566. frontCaribou: {
  37567. height: math.unit(7 + 2/12, "feet"),
  37568. weight: math.unit(268, "lb"),
  37569. name: "Front (Caribou)",
  37570. image: {
  37571. source: "./media/characters/lisa/front-caribou.svg",
  37572. extra: 1818/1638,
  37573. bottom: 52/1870
  37574. }
  37575. },
  37576. sideCaribou: {
  37577. height: math.unit(7 + 2/12, "feet"),
  37578. weight: math.unit(268, "lb"),
  37579. name: "Side (Caribou)",
  37580. image: {
  37581. source: "./media/characters/lisa/side-caribou.svg",
  37582. extra: 1851/1635,
  37583. bottom: 16/1867
  37584. }
  37585. },
  37586. backCaribou: {
  37587. height: math.unit(7 + 2/12, "feet"),
  37588. weight: math.unit(268, "lb"),
  37589. name: "Back (Caribou)",
  37590. image: {
  37591. source: "./media/characters/lisa/back-caribou.svg",
  37592. extra: 1801/1604,
  37593. bottom: 44/1845
  37594. }
  37595. },
  37596. mawCaribou: {
  37597. height: math.unit(1.45, "feet"),
  37598. name: "Maw (Caribou)",
  37599. image: {
  37600. source: "./media/characters/lisa/maw-caribou.svg"
  37601. }
  37602. },
  37603. mawCaribousune: {
  37604. height: math.unit(1.45, "feet"),
  37605. name: "Maw (Caribousune)",
  37606. image: {
  37607. source: "./media/characters/lisa/maw-caribousune.svg"
  37608. }
  37609. },
  37610. pawCaribousune: {
  37611. height: math.unit(1.61, "feet"),
  37612. name: "Paw (Caribou)",
  37613. image: {
  37614. source: "./media/characters/lisa/paw-caribousune.svg"
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Normal",
  37621. height: math.unit(6, "feet")
  37622. },
  37623. {
  37624. name: "God Size",
  37625. height: math.unit(72, "feet"),
  37626. default: true
  37627. },
  37628. {
  37629. name: "Towering",
  37630. height: math.unit(288, "feet")
  37631. },
  37632. {
  37633. name: "City Size",
  37634. height: math.unit(48384, "feet")
  37635. },
  37636. {
  37637. name: "Continental",
  37638. height: math.unit(4200, "miles")
  37639. },
  37640. {
  37641. name: "Planet Eater",
  37642. height: math.unit(42, "earths")
  37643. },
  37644. {
  37645. name: "Star Swallower",
  37646. height: math.unit(42, "solarradii")
  37647. },
  37648. {
  37649. name: "System Swallower",
  37650. height: math.unit(84000, "AU")
  37651. },
  37652. {
  37653. name: "Galaxy Gobbler",
  37654. height: math.unit(42, "galaxies")
  37655. },
  37656. {
  37657. name: "Universe Devourer",
  37658. height: math.unit(42, "universes")
  37659. },
  37660. {
  37661. name: "Multiverse Muncher",
  37662. height: math.unit(42, "multiverses")
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(36, "feet"),
  37671. name: "Front",
  37672. image: {
  37673. source: "./media/characters/shadow-rat/front.svg",
  37674. extra: 1845/1758,
  37675. bottom: 83/1928
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Macro",
  37682. height: math.unit(36, "feet"),
  37683. default: true
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37689. {
  37690. side: {
  37691. height: math.unit(8, "feet"),
  37692. weight: math.unit(2630, "lb"),
  37693. name: "Side",
  37694. image: {
  37695. source: "./media/characters/torallia/side.svg",
  37696. extra: 2164/2021,
  37697. bottom: 371/2535
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Mortal Interaction",
  37704. height: math.unit(8, "feet")
  37705. },
  37706. {
  37707. name: "Natural",
  37708. height: math.unit(24, "feet"),
  37709. default: true
  37710. },
  37711. {
  37712. name: "Giant",
  37713. height: math.unit(80, "feet")
  37714. },
  37715. {
  37716. name: "Kaiju",
  37717. height: math.unit(240, "feet")
  37718. },
  37719. {
  37720. name: "Macro",
  37721. height: math.unit(800, "feet")
  37722. },
  37723. {
  37724. name: "Macro+",
  37725. height: math.unit(2400, "feet")
  37726. },
  37727. {
  37728. name: "Macro++",
  37729. height: math.unit(8000, "feet")
  37730. },
  37731. {
  37732. name: "City-Crushing",
  37733. height: math.unit(24000, "feet")
  37734. },
  37735. {
  37736. name: "Mountain-Mashing",
  37737. height: math.unit(80000, "feet")
  37738. },
  37739. {
  37740. name: "District Demolisher",
  37741. height: math.unit(240000, "feet")
  37742. },
  37743. {
  37744. name: "Tri-County Terror",
  37745. height: math.unit(800000, "feet")
  37746. },
  37747. {
  37748. name: "State Smasher",
  37749. height: math.unit(2.4e6, "feet")
  37750. },
  37751. {
  37752. name: "Nation Nemesis",
  37753. height: math.unit(8e6, "feet")
  37754. },
  37755. {
  37756. name: "Continent Cracker",
  37757. height: math.unit(2.4e7, "feet")
  37758. },
  37759. {
  37760. name: "Planet-Pillaging",
  37761. height: math.unit(8e7, "feet")
  37762. },
  37763. {
  37764. name: "Earth-Eclipsing",
  37765. height: math.unit(2.4e8, "feet")
  37766. },
  37767. {
  37768. name: "Jovian-Jostling",
  37769. height: math.unit(8e8, "feet")
  37770. },
  37771. {
  37772. name: "Gas Giant Gulper",
  37773. height: math.unit(2.4e9, "feet")
  37774. },
  37775. {
  37776. name: "Astral Annihilator",
  37777. height: math.unit(8e9, "feet")
  37778. },
  37779. {
  37780. name: "Celestial Conqueror",
  37781. height: math.unit(2.4e10, "feet")
  37782. },
  37783. {
  37784. name: "Sol-Swallowing",
  37785. height: math.unit(8e10, "feet")
  37786. },
  37787. {
  37788. name: "Hunter of the Heavens",
  37789. height: math.unit(2.4e13, "feet")
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37795. {
  37796. front: {
  37797. height: math.unit(6 + 8/12, "feet"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/rebecca-pawlson/front.svg",
  37801. extra: 1737/1596,
  37802. bottom: 107/1844
  37803. }
  37804. },
  37805. back: {
  37806. height: math.unit(6 + 8/12, "feet"),
  37807. name: "Back",
  37808. image: {
  37809. source: "./media/characters/rebecca-pawlson/back.svg",
  37810. extra: 1702/1523,
  37811. bottom: 86/1788
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Normal",
  37818. height: math.unit(6 + 8/12, "feet")
  37819. },
  37820. {
  37821. name: "Mini Macro",
  37822. height: math.unit(10, "feet"),
  37823. default: true
  37824. },
  37825. {
  37826. name: "Macro",
  37827. height: math.unit(100, "feet")
  37828. },
  37829. {
  37830. name: "Mega Macro",
  37831. height: math.unit(2500, "feet")
  37832. },
  37833. {
  37834. name: "Giga Macro",
  37835. height: math.unit(50, "miles")
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(7 + 6/12, "feet"),
  37844. weight: math.unit(600, "lb"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/moxie-nova/front.svg",
  37848. extra: 1734/1652,
  37849. bottom: 41/1775
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(7 + 6/12, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(5, "feet"),
  37866. weight: math.unit(150, "lb"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/tiffany/front.svg",
  37870. extra: 1941/1845,
  37871. bottom: 58/1999
  37872. }
  37873. },
  37874. },
  37875. [
  37876. {
  37877. name: "Normal",
  37878. height: math.unit(5, "feet"),
  37879. default: true
  37880. },
  37881. ]
  37882. ))
  37883. characterMakers.push(() => makeCharacter(
  37884. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37885. {
  37886. front: {
  37887. height: math.unit(8, "feet"),
  37888. weight: math.unit(300, "lb"),
  37889. name: "Front",
  37890. image: {
  37891. source: "./media/characters/raxinath/front.svg",
  37892. extra: 1407/1309,
  37893. bottom: 39/1446
  37894. }
  37895. },
  37896. back: {
  37897. height: math.unit(8, "feet"),
  37898. weight: math.unit(300, "lb"),
  37899. name: "Back",
  37900. image: {
  37901. source: "./media/characters/raxinath/back.svg",
  37902. extra: 1405/1315,
  37903. bottom: 9/1414
  37904. }
  37905. },
  37906. },
  37907. [
  37908. {
  37909. name: "Speck",
  37910. height: math.unit(0.5, "nm")
  37911. },
  37912. {
  37913. name: "Micro",
  37914. height: math.unit(3, "inches")
  37915. },
  37916. {
  37917. name: "Kobold",
  37918. height: math.unit(3, "feet")
  37919. },
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(8, "feet"),
  37923. default: true
  37924. },
  37925. {
  37926. name: "Giant",
  37927. height: math.unit(50, "feet")
  37928. },
  37929. {
  37930. name: "Macro",
  37931. height: math.unit(1000, "feet")
  37932. },
  37933. {
  37934. name: "Megamacro",
  37935. height: math.unit(1, "mile")
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37941. {
  37942. front: {
  37943. height: math.unit(10, "feet"),
  37944. weight: math.unit(1442, "lb"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/mal-dragon/front.svg",
  37948. extra: 1515/1444,
  37949. bottom: 113/1628
  37950. }
  37951. },
  37952. back: {
  37953. height: math.unit(10, "feet"),
  37954. weight: math.unit(1442, "lb"),
  37955. name: "Back",
  37956. image: {
  37957. source: "./media/characters/mal-dragon/back.svg",
  37958. extra: 1527/1434,
  37959. bottom: 25/1552
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Mortal Interaction",
  37966. height: math.unit(10, "feet"),
  37967. default: true
  37968. },
  37969. {
  37970. name: "Large",
  37971. height: math.unit(30, "feet")
  37972. },
  37973. {
  37974. name: "Kaiju",
  37975. height: math.unit(300, "feet")
  37976. },
  37977. {
  37978. name: "Megamacro",
  37979. height: math.unit(10000, "feet")
  37980. },
  37981. {
  37982. name: "Continent Cracker",
  37983. height: math.unit(30000000, "feet")
  37984. },
  37985. {
  37986. name: "Sol-Swallowing",
  37987. height: math.unit(1e11, "feet")
  37988. },
  37989. {
  37990. name: "Light Universal",
  37991. height: math.unit(5, "universes")
  37992. },
  37993. {
  37994. name: "Universe Atoms",
  37995. height: math.unit(1.829e9, "universes")
  37996. },
  37997. {
  37998. name: "Light Multiversal",
  37999. height: math.unit(5, "multiverses")
  38000. },
  38001. {
  38002. name: "Multiverse Atoms",
  38003. height: math.unit(1.829e9, "multiverses")
  38004. },
  38005. {
  38006. name: "Fabric of Time",
  38007. height: math.unit(1e262, "multiverses")
  38008. },
  38009. ]
  38010. ))
  38011. characterMakers.push(() => makeCharacter(
  38012. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38013. {
  38014. front: {
  38015. height: math.unit(9, "feet"),
  38016. weight: math.unit(1050, "lb"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/tabitha/front.svg",
  38020. extra: 2083/1994,
  38021. bottom: 68/2151
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Baseline",
  38028. height: math.unit(9, "feet"),
  38029. default: true
  38030. },
  38031. {
  38032. name: "Giant",
  38033. height: math.unit(90, "feet")
  38034. },
  38035. {
  38036. name: "Macro",
  38037. height: math.unit(900, "feet")
  38038. },
  38039. {
  38040. name: "Megamacro",
  38041. height: math.unit(9000, "feet")
  38042. },
  38043. {
  38044. name: "City-Crushing",
  38045. height: math.unit(27000, "feet")
  38046. },
  38047. {
  38048. name: "Mountain-Mashing",
  38049. height: math.unit(90000, "feet")
  38050. },
  38051. {
  38052. name: "Nation Nemesis",
  38053. height: math.unit(9e6, "feet")
  38054. },
  38055. {
  38056. name: "Continent Cracker",
  38057. height: math.unit(27e6, "feet")
  38058. },
  38059. {
  38060. name: "Earth-Eclipsing",
  38061. height: math.unit(2.7e8, "feet")
  38062. },
  38063. {
  38064. name: "Gas Giant Gulper",
  38065. height: math.unit(2.7e9, "feet")
  38066. },
  38067. {
  38068. name: "Sol-Swallowing",
  38069. height: math.unit(9e10, "feet")
  38070. },
  38071. {
  38072. name: "Galaxy Gulper",
  38073. height: math.unit(9, "galaxies")
  38074. },
  38075. {
  38076. name: "Cosmos Churner",
  38077. height: math.unit(9, "universes")
  38078. },
  38079. ]
  38080. ))
  38081. characterMakers.push(() => makeCharacter(
  38082. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38083. {
  38084. front: {
  38085. height: math.unit(160, "cm"),
  38086. weight: math.unit(55, "kg"),
  38087. name: "Front",
  38088. image: {
  38089. source: "./media/characters/tow/front.svg",
  38090. extra: 1751/1722,
  38091. bottom: 74/1825
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Norm",
  38098. height: math.unit(160, "cm")
  38099. },
  38100. {
  38101. name: "Casual",
  38102. height: math.unit(3200, "m"),
  38103. default: true
  38104. },
  38105. {
  38106. name: "Show-Off",
  38107. height: math.unit(160, "km")
  38108. },
  38109. ]
  38110. ))
  38111. characterMakers.push(() => makeCharacter(
  38112. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38113. {
  38114. front: {
  38115. height: math.unit(7 + 11/12, "feet"),
  38116. weight: math.unit(342.8, "lb"),
  38117. name: "Front",
  38118. image: {
  38119. source: "./media/characters/vivian-orca-dragon/front.svg",
  38120. extra: 1890/1865,
  38121. bottom: 28/1918
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Micro",
  38128. height: math.unit(5, "inches")
  38129. },
  38130. {
  38131. name: "Normal",
  38132. height: math.unit(7 + 11/12, "feet"),
  38133. default: true
  38134. },
  38135. {
  38136. name: "Macro",
  38137. height: math.unit(395 + 7/12, "feet")
  38138. },
  38139. ]
  38140. ))
  38141. characterMakers.push(() => makeCharacter(
  38142. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38143. {
  38144. side: {
  38145. height: math.unit(10, "feet"),
  38146. weight: math.unit(1442, "lb"),
  38147. name: "Side",
  38148. image: {
  38149. source: "./media/characters/lotherakon/side.svg",
  38150. extra: 1604/1497,
  38151. bottom: 89/1693
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Mortal Interaction",
  38158. height: math.unit(10, "feet")
  38159. },
  38160. {
  38161. name: "Large",
  38162. height: math.unit(30, "feet"),
  38163. default: true
  38164. },
  38165. {
  38166. name: "Giant",
  38167. height: math.unit(100, "feet")
  38168. },
  38169. {
  38170. name: "Kaiju",
  38171. height: math.unit(300, "feet")
  38172. },
  38173. {
  38174. name: "Macro",
  38175. height: math.unit(1000, "feet")
  38176. },
  38177. {
  38178. name: "Macro+",
  38179. height: math.unit(3000, "feet")
  38180. },
  38181. {
  38182. name: "Megamacro",
  38183. height: math.unit(10000, "feet")
  38184. },
  38185. {
  38186. name: "City-Crushing",
  38187. height: math.unit(30000, "feet")
  38188. },
  38189. {
  38190. name: "Continent Cracker",
  38191. height: math.unit(30e6, "feet")
  38192. },
  38193. {
  38194. name: "Earth Eclipsing",
  38195. height: math.unit(3e8, "feet")
  38196. },
  38197. {
  38198. name: "Gas Giant Gulper",
  38199. height: math.unit(3e9, "feet")
  38200. },
  38201. {
  38202. name: "Sol-Swallowing",
  38203. height: math.unit(1e11, "feet")
  38204. },
  38205. {
  38206. name: "System Swallower",
  38207. height: math.unit(3e14, "feet")
  38208. },
  38209. {
  38210. name: "Galaxy Gulper",
  38211. height: math.unit(10, "galaxies")
  38212. },
  38213. {
  38214. name: "Light Universal",
  38215. height: math.unit(5, "universes")
  38216. },
  38217. {
  38218. name: "Universe Palm",
  38219. height: math.unit(20, "universes")
  38220. },
  38221. {
  38222. name: "Light Multiversal",
  38223. height: math.unit(5, "multiverses")
  38224. },
  38225. {
  38226. name: "Multiverse Palm",
  38227. height: math.unit(20, "multiverses")
  38228. },
  38229. {
  38230. name: "Inferno Incarnate",
  38231. height: math.unit(1e7, "multiverses")
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38237. {
  38238. front: {
  38239. height: math.unit(8, "feet"),
  38240. weight: math.unit(1200, "lb"),
  38241. name: "Front",
  38242. image: {
  38243. source: "./media/characters/malithee/front.svg",
  38244. extra: 1675/1640,
  38245. bottom: 162/1837
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Mortal Interaction",
  38252. height: math.unit(8, "feet"),
  38253. default: true
  38254. },
  38255. {
  38256. name: "Large",
  38257. height: math.unit(24, "feet")
  38258. },
  38259. {
  38260. name: "Kaiju",
  38261. height: math.unit(240, "feet")
  38262. },
  38263. {
  38264. name: "Megamacro",
  38265. height: math.unit(8000, "feet")
  38266. },
  38267. {
  38268. name: "Continent Cracker",
  38269. height: math.unit(24e6, "feet")
  38270. },
  38271. {
  38272. name: "Earth-Eclipsing",
  38273. height: math.unit(2.4e8, "feet")
  38274. },
  38275. {
  38276. name: "Sol-Swallowing",
  38277. height: math.unit(8e10, "feet")
  38278. },
  38279. {
  38280. name: "Galaxy Gulper",
  38281. height: math.unit(8, "galaxies")
  38282. },
  38283. {
  38284. name: "Light Universal",
  38285. height: math.unit(4, "universes")
  38286. },
  38287. {
  38288. name: "Universe Atoms",
  38289. height: math.unit(1.829e9, "universes")
  38290. },
  38291. {
  38292. name: "Light Multiversal",
  38293. height: math.unit(4, "multiverses")
  38294. },
  38295. {
  38296. name: "Multiverse Atoms",
  38297. height: math.unit(1.829e9, "multiverses")
  38298. },
  38299. {
  38300. name: "Nigh-Omnipresence",
  38301. height: math.unit(8e261, "multiverses")
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38307. {
  38308. front: {
  38309. height: math.unit(10, "feet"),
  38310. weight: math.unit(1500, "lb"),
  38311. name: "Front",
  38312. image: {
  38313. source: "./media/characters/miles-thestia/front.svg",
  38314. extra: 1812/1727,
  38315. bottom: 86/1898
  38316. }
  38317. },
  38318. back: {
  38319. height: math.unit(10, "feet"),
  38320. weight: math.unit(1500, "lb"),
  38321. name: "Back",
  38322. image: {
  38323. source: "./media/characters/miles-thestia/back.svg",
  38324. extra: 1799/1690,
  38325. bottom: 47/1846
  38326. }
  38327. },
  38328. frontNsfw: {
  38329. height: math.unit(10, "feet"),
  38330. weight: math.unit(1500, "lb"),
  38331. name: "Front (NSFW)",
  38332. image: {
  38333. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38334. extra: 1812/1727,
  38335. bottom: 86/1898
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Mini-Macro",
  38342. height: math.unit(10, "feet"),
  38343. default: true
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38349. {
  38350. front: {
  38351. height: math.unit(25, "feet"),
  38352. name: "Front",
  38353. image: {
  38354. source: "./media/characters/titan-s-wulf/front.svg",
  38355. extra: 1560/1484,
  38356. bottom: 76/1636
  38357. }
  38358. },
  38359. },
  38360. [
  38361. {
  38362. name: "Smallest",
  38363. height: math.unit(25, "feet"),
  38364. default: true
  38365. },
  38366. {
  38367. name: "Normal",
  38368. height: math.unit(200, "feet")
  38369. },
  38370. {
  38371. name: "Macro",
  38372. height: math.unit(200000, "feet")
  38373. },
  38374. {
  38375. name: "Multiversal Original",
  38376. height: math.unit(10000, "multiverses")
  38377. },
  38378. ]
  38379. ))
  38380. characterMakers.push(() => makeCharacter(
  38381. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38382. {
  38383. front: {
  38384. height: math.unit(8, "feet"),
  38385. weight: math.unit(553, "lb"),
  38386. name: "Front",
  38387. image: {
  38388. source: "./media/characters/tawendeh/front.svg",
  38389. extra: 2365/2268,
  38390. bottom: 83/2448
  38391. }
  38392. },
  38393. frontClothed: {
  38394. height: math.unit(8, "feet"),
  38395. weight: math.unit(553, "lb"),
  38396. name: "Front (Clothed)",
  38397. image: {
  38398. source: "./media/characters/tawendeh/front-clothed.svg",
  38399. extra: 2365/2268,
  38400. bottom: 83/2448
  38401. }
  38402. },
  38403. back: {
  38404. height: math.unit(8, "feet"),
  38405. weight: math.unit(553, "lb"),
  38406. name: "Back",
  38407. image: {
  38408. source: "./media/characters/tawendeh/back.svg",
  38409. extra: 2397/2294,
  38410. bottom: 42/2439
  38411. }
  38412. },
  38413. },
  38414. [
  38415. {
  38416. name: "Mortal Interaction",
  38417. height: math.unit(8, "feet"),
  38418. default: true
  38419. },
  38420. {
  38421. name: "Giant",
  38422. height: math.unit(80, "feet")
  38423. },
  38424. {
  38425. name: "Macro",
  38426. height: math.unit(800, "feet")
  38427. },
  38428. {
  38429. name: "Megamacro",
  38430. height: math.unit(8000, "feet")
  38431. },
  38432. {
  38433. name: "City-Crushing",
  38434. height: math.unit(24000, "feet")
  38435. },
  38436. {
  38437. name: "Mountain-Mashing",
  38438. height: math.unit(80000, "feet")
  38439. },
  38440. {
  38441. name: "Nation Nemesis",
  38442. height: math.unit(8e6, "feet")
  38443. },
  38444. {
  38445. name: "Continent Cracker",
  38446. height: math.unit(24e6, "feet")
  38447. },
  38448. {
  38449. name: "Earth-Eclipsing",
  38450. height: math.unit(2.4e8, "feet")
  38451. },
  38452. {
  38453. name: "Gas Giant Gulper",
  38454. height: math.unit(2.4e9, "feet")
  38455. },
  38456. {
  38457. name: "Sol-Swallowing",
  38458. height: math.unit(8e10, "feet")
  38459. },
  38460. {
  38461. name: "Galaxy Gulper",
  38462. height: math.unit(8, "galaxies")
  38463. },
  38464. {
  38465. name: "Cosmos Churner",
  38466. height: math.unit(8, "universes")
  38467. },
  38468. {
  38469. name: "Omnipotent Otter",
  38470. height: math.unit(80, "universes")
  38471. },
  38472. ]
  38473. ))
  38474. characterMakers.push(() => makeCharacter(
  38475. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38476. {
  38477. front: {
  38478. height: math.unit(2.6, "meters"),
  38479. weight: math.unit(900, "kg"),
  38480. name: "Front",
  38481. image: {
  38482. source: "./media/characters/neesha/front.svg",
  38483. extra: 1803/1653,
  38484. bottom: 128/1931
  38485. }
  38486. },
  38487. },
  38488. [
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(2.6, "meters"),
  38492. default: true
  38493. },
  38494. {
  38495. name: "Macro",
  38496. height: math.unit(50, "meters")
  38497. },
  38498. ]
  38499. ))
  38500. characterMakers.push(() => makeCharacter(
  38501. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38502. {
  38503. front: {
  38504. height: math.unit(5, "feet"),
  38505. weight: math.unit(185, "lb"),
  38506. name: "Front",
  38507. image: {
  38508. source: "./media/characters/kyera/front.svg",
  38509. extra: 1875/1790,
  38510. bottom: 96/1971
  38511. }
  38512. },
  38513. },
  38514. [
  38515. {
  38516. name: "Normal",
  38517. height: math.unit(5, "feet"),
  38518. default: true
  38519. },
  38520. ]
  38521. ))
  38522. characterMakers.push(() => makeCharacter(
  38523. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38524. {
  38525. front: {
  38526. height: math.unit(7 + 6/12, "feet"),
  38527. weight: math.unit(540, "lb"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/yuko/front.svg",
  38531. extra: 1282/1222,
  38532. bottom: 101/1383
  38533. }
  38534. },
  38535. frontClothed: {
  38536. height: math.unit(7 + 6/12, "feet"),
  38537. weight: math.unit(540, "lb"),
  38538. name: "Front (Clothed)",
  38539. image: {
  38540. source: "./media/characters/yuko/front-clothed.svg",
  38541. extra: 1282/1222,
  38542. bottom: 101/1383
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(7 + 6/12, "feet"),
  38550. default: true
  38551. },
  38552. {
  38553. name: "Macro",
  38554. height: math.unit(26 + 9/12, "feet")
  38555. },
  38556. {
  38557. name: "Megamacro",
  38558. height: math.unit(300, "feet")
  38559. },
  38560. {
  38561. name: "Gigamacro",
  38562. height: math.unit(5000, "feet")
  38563. },
  38564. {
  38565. name: "Planetary",
  38566. height: math.unit(10000, "miles")
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38572. {
  38573. front: {
  38574. height: math.unit(8 + 2/12, "feet"),
  38575. weight: math.unit(600, "lb"),
  38576. name: "Front",
  38577. image: {
  38578. source: "./media/characters/deam-nitrel/front.svg",
  38579. extra: 1308/1234,
  38580. bottom: 125/1433
  38581. }
  38582. },
  38583. },
  38584. [
  38585. {
  38586. name: "Normal",
  38587. height: math.unit(8 + 2/12, "feet"),
  38588. default: true
  38589. },
  38590. ]
  38591. ))
  38592. characterMakers.push(() => makeCharacter(
  38593. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38594. {
  38595. front: {
  38596. height: math.unit(6.1, "feet"),
  38597. weight: math.unit(180, "lb"),
  38598. name: "Front",
  38599. image: {
  38600. source: "./media/characters/skyress/front.svg",
  38601. extra: 1045/915,
  38602. bottom: 28/1073
  38603. }
  38604. },
  38605. maw: {
  38606. height: math.unit(1, "feet"),
  38607. name: "Maw",
  38608. image: {
  38609. source: "./media/characters/skyress/maw.svg"
  38610. }
  38611. },
  38612. },
  38613. [
  38614. {
  38615. name: "Normal",
  38616. height: math.unit(6.1, "feet"),
  38617. default: true
  38618. },
  38619. {
  38620. name: "Macro",
  38621. height: math.unit(200, "feet")
  38622. },
  38623. ]
  38624. ))
  38625. characterMakers.push(() => makeCharacter(
  38626. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38627. {
  38628. front: {
  38629. height: math.unit(4 + 2/12, "feet"),
  38630. weight: math.unit(40, "kg"),
  38631. name: "Front",
  38632. image: {
  38633. source: "./media/characters/amethyst-jones/front.svg",
  38634. extra: 1220/1150,
  38635. bottom: 101/1321
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(4 + 2/12, "feet"),
  38643. default: true
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(1.7, "m"),
  38652. weight: math.unit(135, "lb"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/jade/front.svg",
  38656. extra: 1818/1767,
  38657. bottom: 32/1850
  38658. }
  38659. },
  38660. back: {
  38661. height: math.unit(1.7, "m"),
  38662. weight: math.unit(135, "lb"),
  38663. name: "Back",
  38664. image: {
  38665. source: "./media/characters/jade/back.svg",
  38666. extra: 1869/1809,
  38667. bottom: 35/1904
  38668. }
  38669. },
  38670. hand: {
  38671. height: math.unit(0.24, "m"),
  38672. name: "Hand",
  38673. image: {
  38674. source: "./media/characters/jade/hand.svg"
  38675. }
  38676. },
  38677. foot: {
  38678. height: math.unit(0.263, "m"),
  38679. name: "Foot",
  38680. image: {
  38681. source: "./media/characters/jade/foot.svg"
  38682. }
  38683. },
  38684. dick: {
  38685. height: math.unit(0.47, "m"),
  38686. name: "Dick",
  38687. image: {
  38688. source: "./media/characters/jade/dick.svg"
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Micro",
  38695. height: math.unit(22, "cm")
  38696. },
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(1.7, "m"),
  38700. default: true
  38701. },
  38702. {
  38703. name: "Macro",
  38704. height: math.unit(152, "m")
  38705. },
  38706. ]
  38707. ))
  38708. characterMakers.push(() => makeCharacter(
  38709. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38710. {
  38711. front: {
  38712. height: math.unit(100, "miles"),
  38713. weight: math.unit(20000, "tons"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/cookie/front.svg",
  38717. extra: 1125/1070,
  38718. bottom: 30/1155
  38719. }
  38720. },
  38721. },
  38722. [
  38723. {
  38724. name: "Big",
  38725. height: math.unit(50, "feet")
  38726. },
  38727. {
  38728. name: "Macro",
  38729. height: math.unit(100, "miles"),
  38730. default: true
  38731. },
  38732. {
  38733. name: "Megamacro",
  38734. height: math.unit(90000, "miles")
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38740. {
  38741. front: {
  38742. height: math.unit(6, "feet"),
  38743. weight: math.unit(145, "lb"),
  38744. name: "Front",
  38745. image: {
  38746. source: "./media/characters/farzian/front.svg",
  38747. extra: 1902/1693,
  38748. bottom: 108/2010
  38749. }
  38750. },
  38751. },
  38752. [
  38753. {
  38754. name: "Macro",
  38755. height: math.unit(500, "feet"),
  38756. default: true
  38757. },
  38758. ]
  38759. ))
  38760. characterMakers.push(() => makeCharacter(
  38761. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38762. {
  38763. front: {
  38764. height: math.unit(3 + 6/12, "feet"),
  38765. weight: math.unit(50, "lb"),
  38766. name: "Front",
  38767. image: {
  38768. source: "./media/characters/kimberly-tilson/front.svg",
  38769. extra: 1400/1322,
  38770. bottom: 36/1436
  38771. }
  38772. },
  38773. back: {
  38774. height: math.unit(3 + 6/12, "feet"),
  38775. weight: math.unit(50, "lb"),
  38776. name: "Back",
  38777. image: {
  38778. source: "./media/characters/kimberly-tilson/back.svg",
  38779. extra: 1370/1307,
  38780. bottom: 20/1390
  38781. }
  38782. },
  38783. },
  38784. [
  38785. {
  38786. name: "Normal",
  38787. height: math.unit(3 + 6/12, "feet"),
  38788. default: true
  38789. },
  38790. ]
  38791. ))
  38792. characterMakers.push(() => makeCharacter(
  38793. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38794. {
  38795. front: {
  38796. height: math.unit(1148, "feet"),
  38797. weight: math.unit(34057, "lb"),
  38798. name: "Front",
  38799. image: {
  38800. source: "./media/characters/harthos/front.svg",
  38801. extra: 1391/1339,
  38802. bottom: 13/1404
  38803. }
  38804. },
  38805. },
  38806. [
  38807. {
  38808. name: "Macro",
  38809. height: math.unit(1148, "feet"),
  38810. default: true
  38811. },
  38812. ]
  38813. ))
  38814. characterMakers.push(() => makeCharacter(
  38815. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38816. {
  38817. front: {
  38818. height: math.unit(15, "feet"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/hypatia/front.svg",
  38822. extra: 1653/1591,
  38823. bottom: 79/1732
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(15, "feet")
  38831. },
  38832. {
  38833. name: "Small",
  38834. height: math.unit(300, "feet")
  38835. },
  38836. {
  38837. name: "Macro",
  38838. height: math.unit(2500, "feet"),
  38839. default: true
  38840. },
  38841. {
  38842. name: "Mega Macro",
  38843. height: math.unit(1500, "miles")
  38844. },
  38845. {
  38846. name: "Giga Macro",
  38847. height: math.unit(1.5e6, "miles")
  38848. },
  38849. ]
  38850. ))
  38851. characterMakers.push(() => makeCharacter(
  38852. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38853. {
  38854. front: {
  38855. height: math.unit(6, "feet"),
  38856. weight: math.unit(200, "lb"),
  38857. name: "Front",
  38858. image: {
  38859. source: "./media/characters/wulver/front.svg",
  38860. extra: 1724/1632,
  38861. bottom: 130/1854
  38862. }
  38863. },
  38864. frontNsfw: {
  38865. height: math.unit(6, "feet"),
  38866. weight: math.unit(200, "lb"),
  38867. name: "Front (NSFW)",
  38868. image: {
  38869. source: "./media/characters/wulver/front-nsfw.svg",
  38870. extra: 1724/1632,
  38871. bottom: 130/1854
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Human-Sized",
  38878. height: math.unit(6, "feet")
  38879. },
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(4, "meters"),
  38883. default: true
  38884. },
  38885. {
  38886. name: "Large",
  38887. height: math.unit(6, "m")
  38888. },
  38889. ]
  38890. ))
  38891. characterMakers.push(() => makeCharacter(
  38892. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38893. {
  38894. front: {
  38895. height: math.unit(7, "feet"),
  38896. name: "Front",
  38897. image: {
  38898. source: "./media/characters/maru/front.svg",
  38899. extra: 1595/1570,
  38900. bottom: 0/1595
  38901. }
  38902. },
  38903. },
  38904. [
  38905. {
  38906. name: "Normal",
  38907. height: math.unit(7, "feet"),
  38908. default: true
  38909. },
  38910. {
  38911. name: "Macro",
  38912. height: math.unit(700, "feet")
  38913. },
  38914. {
  38915. name: "Mega Macro",
  38916. height: math.unit(25, "miles")
  38917. },
  38918. ]
  38919. ))
  38920. characterMakers.push(() => makeCharacter(
  38921. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38922. {
  38923. front: {
  38924. height: math.unit(6, "feet"),
  38925. weight: math.unit(170, "lb"),
  38926. name: "Front",
  38927. image: {
  38928. source: "./media/characters/xenon/front.svg",
  38929. extra: 1376/1305,
  38930. bottom: 56/1432
  38931. }
  38932. },
  38933. back: {
  38934. height: math.unit(6, "feet"),
  38935. weight: math.unit(170, "lb"),
  38936. name: "Back",
  38937. image: {
  38938. source: "./media/characters/xenon/back.svg",
  38939. extra: 1328/1259,
  38940. bottom: 95/1423
  38941. }
  38942. },
  38943. maw: {
  38944. height: math.unit(0.52, "feet"),
  38945. name: "Maw",
  38946. image: {
  38947. source: "./media/characters/xenon/maw.svg"
  38948. }
  38949. },
  38950. hand: {
  38951. height: math.unit(0.82, "feet"),
  38952. name: "Hand",
  38953. image: {
  38954. source: "./media/characters/xenon/hand.svg"
  38955. }
  38956. },
  38957. foot: {
  38958. height: math.unit(1.13, "feet"),
  38959. name: "Foot",
  38960. image: {
  38961. source: "./media/characters/xenon/foot.svg"
  38962. }
  38963. },
  38964. },
  38965. [
  38966. {
  38967. name: "Micro",
  38968. height: math.unit(0.8, "inches")
  38969. },
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(6, "feet")
  38973. },
  38974. {
  38975. name: "Macro",
  38976. height: math.unit(50, "feet"),
  38977. default: true
  38978. },
  38979. {
  38980. name: "Macro+",
  38981. height: math.unit(250, "feet")
  38982. },
  38983. {
  38984. name: "Megamacro",
  38985. height: math.unit(1500, "feet")
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(7 + 5/12, "feet"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/zane/front.svg",
  38997. extra: 1260/1203,
  38998. bottom: 94/1354
  38999. }
  39000. },
  39001. back: {
  39002. height: math.unit(5.05, "feet"),
  39003. name: "Back",
  39004. image: {
  39005. source: "./media/characters/zane/back.svg",
  39006. extra: 893/829,
  39007. bottom: 30/923
  39008. }
  39009. },
  39010. werewolf: {
  39011. height: math.unit(11, "feet"),
  39012. name: "Werewolf",
  39013. image: {
  39014. source: "./media/characters/zane/werewolf.svg",
  39015. extra: 1383/1323,
  39016. bottom: 89/1472
  39017. }
  39018. },
  39019. foot: {
  39020. height: math.unit(1.46, "feet"),
  39021. name: "Foot",
  39022. image: {
  39023. source: "./media/characters/zane/foot.svg"
  39024. }
  39025. },
  39026. footFront: {
  39027. height: math.unit(0.784, "feet"),
  39028. name: "Foot (Front)",
  39029. image: {
  39030. source: "./media/characters/zane/foot-front.svg"
  39031. }
  39032. },
  39033. dick: {
  39034. height: math.unit(1.95, "feet"),
  39035. name: "Dick",
  39036. image: {
  39037. source: "./media/characters/zane/dick.svg"
  39038. }
  39039. },
  39040. dickWerewolf: {
  39041. height: math.unit(3.77, "feet"),
  39042. name: "Dick (Werewolf)",
  39043. image: {
  39044. source: "./media/characters/zane/dick.svg"
  39045. }
  39046. },
  39047. },
  39048. [
  39049. {
  39050. name: "Normal",
  39051. height: math.unit(7 + 5/12, "feet"),
  39052. default: true
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39058. {
  39059. front: {
  39060. height: math.unit(6 + 2/12, "feet"),
  39061. weight: math.unit(284, "lb"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/benni-desparque/front.svg",
  39065. extra: 1353/1126,
  39066. bottom: 69/1422
  39067. }
  39068. },
  39069. },
  39070. [
  39071. {
  39072. name: "Civilian",
  39073. height: math.unit(6 + 2/12, "feet")
  39074. },
  39075. {
  39076. name: "Normal",
  39077. height: math.unit(98, "feet"),
  39078. default: true
  39079. },
  39080. {
  39081. name: "Kaiju Fighter",
  39082. height: math.unit(268, "feet")
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39088. {
  39089. front: {
  39090. height: math.unit(5, "feet"),
  39091. weight: math.unit(105, "lb"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/maxine/front.svg",
  39095. extra: 1386/1250,
  39096. bottom: 71/1457
  39097. }
  39098. },
  39099. },
  39100. [
  39101. {
  39102. name: "Normal",
  39103. height: math.unit(5, "feet"),
  39104. default: true
  39105. },
  39106. ]
  39107. ))
  39108. characterMakers.push(() => makeCharacter(
  39109. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39110. {
  39111. front: {
  39112. height: math.unit(11 + 7/12, "feet"),
  39113. weight: math.unit(9576, "lb"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/scaly/front.svg",
  39117. extra: 888/867,
  39118. bottom: 36/924
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(11 + 7/12, "feet"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(9, "inches"),
  39135. name: "Front",
  39136. image: {
  39137. source: "./media/characters/saelria/front.svg",
  39138. extra: 662/621,
  39139. bottom: 12/674
  39140. }
  39141. },
  39142. },
  39143. [
  39144. {
  39145. name: "Tiny",
  39146. height: math.unit(9, "inches"),
  39147. default: true
  39148. },
  39149. ]
  39150. ))
  39151. characterMakers.push(() => makeCharacter(
  39152. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39153. {
  39154. front: {
  39155. height: math.unit(80, "meters"),
  39156. weight: math.unit(7000, "tonnes"),
  39157. name: "Front",
  39158. image: {
  39159. source: "./media/characters/tef/front.svg",
  39160. extra: 2036/1991,
  39161. bottom: 54/2090
  39162. }
  39163. },
  39164. back: {
  39165. height: math.unit(80, "meters"),
  39166. weight: math.unit(7000, "tonnes"),
  39167. name: "Back",
  39168. image: {
  39169. source: "./media/characters/tef/back.svg",
  39170. extra: 2036/1991,
  39171. bottom: 54/2090
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Macro",
  39178. height: math.unit(80, "meters"),
  39179. default: true
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(13, "feet"),
  39188. weight: math.unit(6, "tons"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/rover/front.svg",
  39192. extra: 1233/1156,
  39193. bottom: 50/1283
  39194. }
  39195. },
  39196. back: {
  39197. height: math.unit(13, "feet"),
  39198. weight: math.unit(6, "tons"),
  39199. name: "Back",
  39200. image: {
  39201. source: "./media/characters/rover/back.svg",
  39202. extra: 1327/1258,
  39203. bottom: 39/1366
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Normal",
  39210. height: math.unit(13, "feet"),
  39211. default: true
  39212. },
  39213. {
  39214. name: "Macro",
  39215. height: math.unit(1300, "feet")
  39216. },
  39217. {
  39218. name: "Megamacro",
  39219. height: math.unit(1300, "miles")
  39220. },
  39221. {
  39222. name: "Gigamacro",
  39223. height: math.unit(1300000, "miles")
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(6, "feet"),
  39232. weight: math.unit(150, "lb"),
  39233. name: "Front",
  39234. image: {
  39235. source: "./media/characters/ariz/front.svg",
  39236. extra: 1401/1346,
  39237. bottom: 5/1406
  39238. }
  39239. },
  39240. },
  39241. [
  39242. {
  39243. name: "Normal",
  39244. height: math.unit(10, "feet"),
  39245. default: true
  39246. },
  39247. ]
  39248. ))
  39249. characterMakers.push(() => makeCharacter(
  39250. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39251. {
  39252. front: {
  39253. height: math.unit(6, "feet"),
  39254. weight: math.unit(140, "lb"),
  39255. name: "Front",
  39256. image: {
  39257. source: "./media/characters/sigrun/front.svg",
  39258. extra: 1418/1359,
  39259. bottom: 27/1445
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Macro",
  39266. height: math.unit(35, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(6, "feet"),
  39276. weight: math.unit(150, "lb"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/numin/front.svg",
  39280. extra: 1433/1388,
  39281. bottom: 12/1445
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Macro",
  39288. height: math.unit(21.5, "km"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(6, "feet"),
  39298. weight: math.unit(463, "lb"),
  39299. name: "Front",
  39300. image: {
  39301. source: "./media/characters/melwa/front.svg",
  39302. extra: 1307/1248,
  39303. bottom: 93/1400
  39304. }
  39305. },
  39306. },
  39307. [
  39308. {
  39309. name: "Macro",
  39310. height: math.unit(50, "meters"),
  39311. default: true
  39312. },
  39313. ]
  39314. ))
  39315. characterMakers.push(() => makeCharacter(
  39316. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39317. {
  39318. front: {
  39319. height: math.unit(325, "feet"),
  39320. name: "Front",
  39321. image: {
  39322. source: "./media/characters/zorkaiju/front.svg",
  39323. extra: 1955/1814,
  39324. bottom: 40/1995
  39325. }
  39326. },
  39327. frontExtended: {
  39328. height: math.unit(325, "feet"),
  39329. name: "Front (Extended)",
  39330. image: {
  39331. source: "./media/characters/zorkaiju/front-extended.svg",
  39332. extra: 1955/1814,
  39333. bottom: 40/1995
  39334. }
  39335. },
  39336. side: {
  39337. height: math.unit(325, "feet"),
  39338. name: "Side",
  39339. image: {
  39340. source: "./media/characters/zorkaiju/side.svg",
  39341. extra: 1495/1396,
  39342. bottom: 17/1512
  39343. }
  39344. },
  39345. sideExtended: {
  39346. height: math.unit(325, "feet"),
  39347. name: "Side (Extended)",
  39348. image: {
  39349. source: "./media/characters/zorkaiju/side-extended.svg",
  39350. extra: 1495/1396,
  39351. bottom: 17/1512
  39352. }
  39353. },
  39354. back: {
  39355. height: math.unit(325, "feet"),
  39356. name: "Back",
  39357. image: {
  39358. source: "./media/characters/zorkaiju/back.svg",
  39359. extra: 1959/1821,
  39360. bottom: 31/1990
  39361. }
  39362. },
  39363. backExtended: {
  39364. height: math.unit(325, "feet"),
  39365. name: "Back (Extended)",
  39366. image: {
  39367. source: "./media/characters/zorkaiju/back-extended.svg",
  39368. extra: 1959/1821,
  39369. bottom: 31/1990
  39370. }
  39371. },
  39372. hand: {
  39373. height: math.unit(58.4, "feet"),
  39374. name: "Hand",
  39375. image: {
  39376. source: "./media/characters/zorkaiju/hand.svg"
  39377. }
  39378. },
  39379. handExtended: {
  39380. height: math.unit(61.4, "feet"),
  39381. name: "Hand (Extended)",
  39382. image: {
  39383. source: "./media/characters/zorkaiju/hand-extended.svg"
  39384. }
  39385. },
  39386. foot: {
  39387. height: math.unit(95, "feet"),
  39388. name: "Foot",
  39389. image: {
  39390. source: "./media/characters/zorkaiju/foot.svg"
  39391. }
  39392. },
  39393. leftArm: {
  39394. height: math.unit(59, "feet"),
  39395. name: "Left Arm",
  39396. image: {
  39397. source: "./media/characters/zorkaiju/left-arm.svg"
  39398. }
  39399. },
  39400. rightArm: {
  39401. height: math.unit(59, "feet"),
  39402. name: "Right Arm",
  39403. image: {
  39404. source: "./media/characters/zorkaiju/right-arm.svg"
  39405. }
  39406. },
  39407. tail: {
  39408. height: math.unit(104, "feet"),
  39409. name: "Tail",
  39410. image: {
  39411. source: "./media/characters/zorkaiju/tail.svg"
  39412. }
  39413. },
  39414. tailExtended: {
  39415. height: math.unit(104, "feet"),
  39416. name: "Tail (Extended)",
  39417. image: {
  39418. source: "./media/characters/zorkaiju/tail-extended.svg"
  39419. }
  39420. },
  39421. tailBottom: {
  39422. height: math.unit(104, "feet"),
  39423. name: "Tail Bottom",
  39424. image: {
  39425. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39426. }
  39427. },
  39428. crystal: {
  39429. height: math.unit(27.54, "feet"),
  39430. name: "Crystal",
  39431. image: {
  39432. source: "./media/characters/zorkaiju/crystal.svg"
  39433. }
  39434. },
  39435. },
  39436. [
  39437. {
  39438. name: "Kaiju",
  39439. height: math.unit(325, "feet"),
  39440. default: true
  39441. },
  39442. ]
  39443. ))
  39444. characterMakers.push(() => makeCharacter(
  39445. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39446. {
  39447. front: {
  39448. height: math.unit(6 + 1/12, "feet"),
  39449. weight: math.unit(115, "lb"),
  39450. name: "Front",
  39451. image: {
  39452. source: "./media/characters/bailey-belfry/front.svg",
  39453. extra: 1240/1121,
  39454. bottom: 101/1341
  39455. }
  39456. },
  39457. },
  39458. [
  39459. {
  39460. name: "Normal",
  39461. height: math.unit(6 + 1/12, "feet"),
  39462. default: true
  39463. },
  39464. ]
  39465. ))
  39466. characterMakers.push(() => makeCharacter(
  39467. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39468. {
  39469. side: {
  39470. height: math.unit(4, "meters"),
  39471. weight: math.unit(250, "kg"),
  39472. name: "Side",
  39473. image: {
  39474. source: "./media/characters/blacky/side.svg",
  39475. extra: 1027/919,
  39476. bottom: 43/1070
  39477. }
  39478. },
  39479. maw: {
  39480. height: math.unit(1, "meters"),
  39481. name: "Maw",
  39482. image: {
  39483. source: "./media/characters/blacky/maw.svg"
  39484. }
  39485. },
  39486. paw: {
  39487. height: math.unit(1, "meters"),
  39488. name: "Paw",
  39489. image: {
  39490. source: "./media/characters/blacky/paw.svg"
  39491. }
  39492. },
  39493. },
  39494. [
  39495. {
  39496. name: "Normal",
  39497. height: math.unit(4, "meters"),
  39498. default: true
  39499. },
  39500. ]
  39501. ))
  39502. characterMakers.push(() => makeCharacter(
  39503. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39504. {
  39505. front: {
  39506. height: math.unit(170, "cm"),
  39507. weight: math.unit(66, "kg"),
  39508. name: "Front",
  39509. image: {
  39510. source: "./media/characters/thux-ei/front.svg",
  39511. extra: 1109/1011,
  39512. bottom: 8/1117
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(170, "cm"),
  39520. default: true
  39521. },
  39522. ]
  39523. ))
  39524. characterMakers.push(() => makeCharacter(
  39525. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39526. {
  39527. front: {
  39528. height: math.unit(5, "feet"),
  39529. weight: math.unit(120, "lb"),
  39530. name: "Front",
  39531. image: {
  39532. source: "./media/characters/roxanne-voltaire/front.svg",
  39533. extra: 1901/1779,
  39534. bottom: 53/1954
  39535. }
  39536. },
  39537. },
  39538. [
  39539. {
  39540. name: "Normal",
  39541. height: math.unit(5, "feet"),
  39542. default: true
  39543. },
  39544. {
  39545. name: "Giant",
  39546. height: math.unit(50, "feet")
  39547. },
  39548. {
  39549. name: "Titan",
  39550. height: math.unit(500, "feet")
  39551. },
  39552. {
  39553. name: "Macro",
  39554. height: math.unit(5000, "feet")
  39555. },
  39556. {
  39557. name: "Megamacro",
  39558. height: math.unit(50000, "feet")
  39559. },
  39560. {
  39561. name: "Gigamacro",
  39562. height: math.unit(500000, "feet")
  39563. },
  39564. {
  39565. name: "Teramacro",
  39566. height: math.unit(5e6, "feet")
  39567. },
  39568. ]
  39569. ))
  39570. characterMakers.push(() => makeCharacter(
  39571. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39572. {
  39573. front: {
  39574. height: math.unit(6 + 2/12, "feet"),
  39575. name: "Front",
  39576. image: {
  39577. source: "./media/characters/squeaks/front.svg",
  39578. extra: 1823/1768,
  39579. bottom: 138/1961
  39580. }
  39581. },
  39582. },
  39583. [
  39584. {
  39585. name: "Micro",
  39586. height: math.unit(0.5, "inches")
  39587. },
  39588. {
  39589. name: "Normal",
  39590. height: math.unit(6 + 2/12, "feet"),
  39591. default: true
  39592. },
  39593. {
  39594. name: "Macro",
  39595. height: math.unit(600, "feet")
  39596. },
  39597. ]
  39598. ))
  39599. characterMakers.push(() => makeCharacter(
  39600. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39601. {
  39602. front: {
  39603. height: math.unit(1.72, "meters"),
  39604. name: "Front",
  39605. image: {
  39606. source: "./media/characters/archinger/front.svg",
  39607. extra: 1861/1675,
  39608. bottom: 125/1986
  39609. }
  39610. },
  39611. back: {
  39612. height: math.unit(1.72, "meters"),
  39613. name: "Back",
  39614. image: {
  39615. source: "./media/characters/archinger/back.svg",
  39616. extra: 1844/1701,
  39617. bottom: 104/1948
  39618. }
  39619. },
  39620. cock: {
  39621. height: math.unit(0.59, "feet"),
  39622. name: "Cock",
  39623. image: {
  39624. source: "./media/characters/archinger/cock.svg"
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Normal",
  39631. height: math.unit(1.72, "meters"),
  39632. default: true
  39633. },
  39634. {
  39635. name: "Macro",
  39636. height: math.unit(84, "meters")
  39637. },
  39638. {
  39639. name: "Macro+",
  39640. height: math.unit(112, "meters")
  39641. },
  39642. {
  39643. name: "Macro++",
  39644. height: math.unit(960, "meters")
  39645. },
  39646. {
  39647. name: "Macro+++",
  39648. height: math.unit(4, "km")
  39649. },
  39650. {
  39651. name: "Macro++++",
  39652. height: math.unit(48, "km")
  39653. },
  39654. {
  39655. name: "Macro+++++",
  39656. height: math.unit(4500, "km")
  39657. },
  39658. ]
  39659. ))
  39660. characterMakers.push(() => makeCharacter(
  39661. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39662. {
  39663. front: {
  39664. height: math.unit(5 + 5/12, "feet"),
  39665. name: "Front",
  39666. image: {
  39667. source: "./media/characters/alsnapz/front.svg",
  39668. extra: 1157/1065,
  39669. bottom: 42/1199
  39670. }
  39671. },
  39672. },
  39673. [
  39674. {
  39675. name: "Normal",
  39676. height: math.unit(5 + 5/12, "feet"),
  39677. default: true
  39678. },
  39679. ]
  39680. ))
  39681. characterMakers.push(() => makeCharacter(
  39682. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39683. {
  39684. side: {
  39685. height: math.unit(3.2, "earths"),
  39686. name: "Side",
  39687. image: {
  39688. source: "./media/characters/mag/side.svg",
  39689. extra: 1331/1008,
  39690. bottom: 52/1383
  39691. }
  39692. },
  39693. wing: {
  39694. height: math.unit(1.94, "earths"),
  39695. name: "Wing",
  39696. image: {
  39697. source: "./media/characters/mag/wing.svg"
  39698. }
  39699. },
  39700. dick: {
  39701. height: math.unit(1.8, "earths"),
  39702. name: "Dick",
  39703. image: {
  39704. source: "./media/characters/mag/dick.svg"
  39705. }
  39706. },
  39707. ass: {
  39708. height: math.unit(1.33, "earths"),
  39709. name: "Ass",
  39710. image: {
  39711. source: "./media/characters/mag/ass.svg"
  39712. }
  39713. },
  39714. head: {
  39715. height: math.unit(1.1, "earths"),
  39716. name: "Head",
  39717. image: {
  39718. source: "./media/characters/mag/head.svg"
  39719. }
  39720. },
  39721. maw: {
  39722. height: math.unit(1.62, "earths"),
  39723. name: "Maw",
  39724. image: {
  39725. source: "./media/characters/mag/maw.svg"
  39726. }
  39727. },
  39728. },
  39729. [
  39730. {
  39731. name: "Small",
  39732. height: math.unit(162, "feet")
  39733. },
  39734. {
  39735. name: "Normal",
  39736. height: math.unit(3.2, "earths"),
  39737. default: true
  39738. },
  39739. ]
  39740. ))
  39741. characterMakers.push(() => makeCharacter(
  39742. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39743. {
  39744. front: {
  39745. height: math.unit(512, "feet"),
  39746. weight: math.unit(63509, "tonnes"),
  39747. name: "Front",
  39748. image: {
  39749. source: "./media/characters/vorrel-harroc/front.svg",
  39750. extra: 1075/1063,
  39751. bottom: 62/1137
  39752. }
  39753. },
  39754. },
  39755. [
  39756. {
  39757. name: "Normal",
  39758. height: math.unit(10, "feet")
  39759. },
  39760. {
  39761. name: "Macro",
  39762. height: math.unit(512, "feet"),
  39763. default: true
  39764. },
  39765. {
  39766. name: "Megamacro",
  39767. height: math.unit(256, "miles")
  39768. },
  39769. {
  39770. name: "Gigamacro",
  39771. height: math.unit(4096, "miles")
  39772. },
  39773. ]
  39774. ))
  39775. characterMakers.push(() => makeCharacter(
  39776. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39777. {
  39778. side: {
  39779. height: math.unit(50, "feet"),
  39780. name: "Side",
  39781. image: {
  39782. source: "./media/characters/froimar/side.svg",
  39783. extra: 855/638,
  39784. bottom: 99/954
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Macro",
  39791. height: math.unit(50, "feet"),
  39792. default: true
  39793. },
  39794. ]
  39795. ))
  39796. characterMakers.push(() => makeCharacter(
  39797. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39798. {
  39799. front: {
  39800. height: math.unit(210, "miles"),
  39801. name: "Front",
  39802. image: {
  39803. source: "./media/characters/timothy/front.svg",
  39804. extra: 1007/943,
  39805. bottom: 62/1069
  39806. }
  39807. },
  39808. frontSkirt: {
  39809. height: math.unit(210, "miles"),
  39810. name: "Front (Skirt)",
  39811. image: {
  39812. source: "./media/characters/timothy/front-skirt.svg",
  39813. extra: 1007/943,
  39814. bottom: 62/1069
  39815. }
  39816. },
  39817. frontCoat: {
  39818. height: math.unit(210, "miles"),
  39819. name: "Front (Coat)",
  39820. image: {
  39821. source: "./media/characters/timothy/front-coat.svg",
  39822. extra: 1007/943,
  39823. bottom: 62/1069
  39824. }
  39825. },
  39826. },
  39827. [
  39828. {
  39829. name: "Macro",
  39830. height: math.unit(210, "miles"),
  39831. default: true
  39832. },
  39833. {
  39834. name: "Megamacro",
  39835. height: math.unit(210000, "miles")
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(188, "feet"),
  39844. name: "Front",
  39845. image: {
  39846. source: "./media/characters/pyotr/front.svg",
  39847. extra: 1912/1826,
  39848. bottom: 18/1930
  39849. }
  39850. },
  39851. },
  39852. [
  39853. {
  39854. name: "Macro",
  39855. height: math.unit(188, "feet"),
  39856. default: true
  39857. },
  39858. {
  39859. name: "Megamacro",
  39860. height: math.unit(8, "miles")
  39861. },
  39862. ]
  39863. ))
  39864. characterMakers.push(() => makeCharacter(
  39865. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39866. {
  39867. side: {
  39868. height: math.unit(10, "feet"),
  39869. weight: math.unit(4500, "lb"),
  39870. name: "Side",
  39871. image: {
  39872. source: "./media/characters/ackart/side.svg",
  39873. extra: 1776/1668,
  39874. bottom: 116/1892
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Normal",
  39881. height: math.unit(10, "feet"),
  39882. default: true
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39888. {
  39889. side: {
  39890. height: math.unit(21, "feet"),
  39891. name: "Side",
  39892. image: {
  39893. source: "./media/characters/nolow/side.svg",
  39894. extra: 1484/1434,
  39895. bottom: 85/1569
  39896. }
  39897. },
  39898. sideErect: {
  39899. height: math.unit(21, "feet"),
  39900. name: "Side-erect",
  39901. image: {
  39902. source: "./media/characters/nolow/side-erect.svg",
  39903. extra: 1484/1434,
  39904. bottom: 85/1569
  39905. }
  39906. },
  39907. },
  39908. [
  39909. {
  39910. name: "Regular",
  39911. height: math.unit(12, "feet")
  39912. },
  39913. {
  39914. name: "Big Chee",
  39915. height: math.unit(21, "feet"),
  39916. default: true
  39917. },
  39918. ]
  39919. ))
  39920. characterMakers.push(() => makeCharacter(
  39921. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39922. {
  39923. front: {
  39924. height: math.unit(7, "feet"),
  39925. weight: math.unit(250, "lb"),
  39926. name: "Front",
  39927. image: {
  39928. source: "./media/characters/nines/front.svg",
  39929. extra: 1741/1607,
  39930. bottom: 41/1782
  39931. }
  39932. },
  39933. side: {
  39934. height: math.unit(7, "feet"),
  39935. weight: math.unit(250, "lb"),
  39936. name: "Side",
  39937. image: {
  39938. source: "./media/characters/nines/side.svg",
  39939. extra: 1854/1735,
  39940. bottom: 93/1947
  39941. }
  39942. },
  39943. back: {
  39944. height: math.unit(7, "feet"),
  39945. weight: math.unit(250, "lb"),
  39946. name: "Back",
  39947. image: {
  39948. source: "./media/characters/nines/back.svg",
  39949. extra: 1748/1615,
  39950. bottom: 20/1768
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Megamacro",
  39957. height: math.unit(99, "km"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(5 + 10/12, "feet"),
  39967. weight: math.unit(210, "lb"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/zenith/front.svg",
  39971. extra: 1531/1452,
  39972. bottom: 198/1729
  39973. }
  39974. },
  39975. back: {
  39976. height: math.unit(5 + 10/12, "feet"),
  39977. weight: math.unit(210, "lb"),
  39978. name: "Back",
  39979. image: {
  39980. source: "./media/characters/zenith/back.svg",
  39981. extra: 1571/1487,
  39982. bottom: 75/1646
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Normal",
  39989. height: math.unit(5 + 10/12, "feet"),
  39990. default: true
  39991. }
  39992. ]
  39993. ))
  39994. characterMakers.push(() => makeCharacter(
  39995. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39996. {
  39997. front: {
  39998. height: math.unit(4, "feet"),
  39999. weight: math.unit(60, "lb"),
  40000. name: "Front",
  40001. image: {
  40002. source: "./media/characters/jasper/front.svg",
  40003. extra: 1450/1379,
  40004. bottom: 19/1469
  40005. }
  40006. },
  40007. },
  40008. [
  40009. {
  40010. name: "Normal",
  40011. height: math.unit(4, "feet"),
  40012. default: true
  40013. },
  40014. ]
  40015. ))
  40016. characterMakers.push(() => makeCharacter(
  40017. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40018. {
  40019. front: {
  40020. height: math.unit(6 + 5/12, "feet"),
  40021. weight: math.unit(290, "lb"),
  40022. name: "Front",
  40023. image: {
  40024. source: "./media/characters/tiberius-thyben/front.svg",
  40025. extra: 757/739,
  40026. bottom: 39/796
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Micro",
  40033. height: math.unit(1.5, "inches")
  40034. },
  40035. {
  40036. name: "Normal",
  40037. height: math.unit(6 + 5/12, "feet"),
  40038. default: true
  40039. },
  40040. {
  40041. name: "Macro",
  40042. height: math.unit(300, "feet")
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(5 + 6/12, "feet"),
  40051. weight: math.unit(60, "kg"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/sabre/front.svg",
  40055. extra: 738/671,
  40056. bottom: 27/765
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Teeny",
  40063. height: math.unit(2, "inches")
  40064. },
  40065. {
  40066. name: "Smol",
  40067. height: math.unit(8, "inches")
  40068. },
  40069. {
  40070. name: "Normal",
  40071. height: math.unit(5 + 6/12, "feet"),
  40072. default: true
  40073. },
  40074. {
  40075. name: "Mini-Macro",
  40076. height: math.unit(15, "feet")
  40077. },
  40078. {
  40079. name: "Macro",
  40080. height: math.unit(50, "feet")
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40086. {
  40087. front: {
  40088. height: math.unit(6 + 4/12, "feet"),
  40089. weight: math.unit(170, "lb"),
  40090. name: "Front",
  40091. image: {
  40092. source: "./media/characters/charlie/front.svg",
  40093. extra: 1348/1228,
  40094. bottom: 15/1363
  40095. }
  40096. },
  40097. },
  40098. [
  40099. {
  40100. name: "Macro",
  40101. height: math.unit(1700, "meters"),
  40102. default: true
  40103. },
  40104. {
  40105. name: "MegaMacro",
  40106. height: math.unit(20400, "meters")
  40107. },
  40108. ]
  40109. ))
  40110. characterMakers.push(() => makeCharacter(
  40111. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40112. {
  40113. front: {
  40114. height: math.unit(6 + 3/12, "feet"),
  40115. weight: math.unit(185, "lb"),
  40116. name: "Front",
  40117. image: {
  40118. source: "./media/characters/susan-grant/front.svg",
  40119. extra: 1351/1327,
  40120. bottom: 26/1377
  40121. }
  40122. },
  40123. },
  40124. [
  40125. {
  40126. name: "Normal",
  40127. height: math.unit(6 + 3/12, "feet"),
  40128. default: true
  40129. },
  40130. {
  40131. name: "Macro",
  40132. height: math.unit(225, "feet")
  40133. },
  40134. {
  40135. name: "Macro+",
  40136. height: math.unit(900, "feet")
  40137. },
  40138. {
  40139. name: "MegaMacro",
  40140. height: math.unit(14400, "feet")
  40141. },
  40142. ]
  40143. ))
  40144. characterMakers.push(() => makeCharacter(
  40145. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40146. {
  40147. front: {
  40148. height: math.unit(5 + 4/12, "feet"),
  40149. weight: math.unit(110, "lb"),
  40150. name: "Front",
  40151. image: {
  40152. source: "./media/characters/axel-isanov/front.svg",
  40153. extra: 1096/1065,
  40154. bottom: 13/1109
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Normal",
  40161. height: math.unit(5 + 4/12, "feet"),
  40162. default: true
  40163. },
  40164. ]
  40165. ))
  40166. characterMakers.push(() => makeCharacter(
  40167. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40168. {
  40169. front: {
  40170. height: math.unit(9, "feet"),
  40171. weight: math.unit(467, "lb"),
  40172. name: "Front",
  40173. image: {
  40174. source: "./media/characters/necahual/front.svg",
  40175. extra: 920/873,
  40176. bottom: 26/946
  40177. }
  40178. },
  40179. back: {
  40180. height: math.unit(9, "feet"),
  40181. weight: math.unit(467, "lb"),
  40182. name: "Back",
  40183. image: {
  40184. source: "./media/characters/necahual/back.svg",
  40185. extra: 930/884,
  40186. bottom: 16/946
  40187. }
  40188. },
  40189. frontUnderwear: {
  40190. height: math.unit(9, "feet"),
  40191. weight: math.unit(467, "lb"),
  40192. name: "Front (Underwear)",
  40193. image: {
  40194. source: "./media/characters/necahual/front-underwear.svg",
  40195. extra: 920/873,
  40196. bottom: 26/946
  40197. }
  40198. },
  40199. frontDressed: {
  40200. height: math.unit(9, "feet"),
  40201. weight: math.unit(467, "lb"),
  40202. name: "Front (Dressed)",
  40203. image: {
  40204. source: "./media/characters/necahual/front-dressed.svg",
  40205. extra: 920/873,
  40206. bottom: 26/946
  40207. }
  40208. },
  40209. },
  40210. [
  40211. {
  40212. name: "Comprsesed",
  40213. height: math.unit(9, "feet")
  40214. },
  40215. {
  40216. name: "Natural",
  40217. height: math.unit(15, "feet"),
  40218. default: true
  40219. },
  40220. {
  40221. name: "Boosted",
  40222. height: math.unit(50, "feet")
  40223. },
  40224. {
  40225. name: "Boosted+",
  40226. height: math.unit(150, "feet")
  40227. },
  40228. {
  40229. name: "Max",
  40230. height: math.unit(500, "feet")
  40231. },
  40232. ]
  40233. ))
  40234. characterMakers.push(() => makeCharacter(
  40235. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40236. {
  40237. front: {
  40238. height: math.unit(22 + 1/12, "feet"),
  40239. weight: math.unit(3200, "lb"),
  40240. name: "Front",
  40241. image: {
  40242. source: "./media/characters/theo-acacia/front.svg",
  40243. extra: 1796/1741,
  40244. bottom: 83/1879
  40245. }
  40246. },
  40247. frontUnderwear: {
  40248. height: math.unit(22 + 1/12, "feet"),
  40249. weight: math.unit(3200, "lb"),
  40250. name: "Front (Underwear)",
  40251. image: {
  40252. source: "./media/characters/theo-acacia/front-underwear.svg",
  40253. extra: 1796/1741,
  40254. bottom: 83/1879
  40255. }
  40256. },
  40257. frontNude: {
  40258. height: math.unit(22 + 1/12, "feet"),
  40259. weight: math.unit(3200, "lb"),
  40260. name: "Front (Nude)",
  40261. image: {
  40262. source: "./media/characters/theo-acacia/front-nude.svg",
  40263. extra: 1796/1741,
  40264. bottom: 83/1879
  40265. }
  40266. },
  40267. },
  40268. [
  40269. {
  40270. name: "Normal",
  40271. height: math.unit(22 + 1/12, "feet"),
  40272. default: true
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40278. {
  40279. front: {
  40280. height: math.unit(20, "feet"),
  40281. name: "Front",
  40282. image: {
  40283. source: "./media/characters/astra/front.svg",
  40284. extra: 1850/1714,
  40285. bottom: 106/1956
  40286. }
  40287. },
  40288. frontUndressed: {
  40289. height: math.unit(20, "feet"),
  40290. name: "Front (Undressed)",
  40291. image: {
  40292. source: "./media/characters/astra/front-undressed.svg",
  40293. extra: 1926/1749,
  40294. bottom: 0/1926
  40295. }
  40296. },
  40297. hand: {
  40298. height: math.unit(1.53, "feet"),
  40299. name: "Hand",
  40300. image: {
  40301. source: "./media/characters/astra/hand.svg"
  40302. }
  40303. },
  40304. paw: {
  40305. height: math.unit(1.53, "feet"),
  40306. name: "Paw",
  40307. image: {
  40308. source: "./media/characters/astra/paw.svg"
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Smallest",
  40315. height: math.unit(20, "feet")
  40316. },
  40317. {
  40318. name: "Normal",
  40319. height: math.unit(1e9, "miles"),
  40320. default: true
  40321. },
  40322. {
  40323. name: "Larger",
  40324. height: math.unit(5, "multiverses")
  40325. },
  40326. {
  40327. name: "Largest",
  40328. height: math.unit(1e9, "multiverses")
  40329. },
  40330. ]
  40331. ))
  40332. characterMakers.push(() => makeCharacter(
  40333. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40334. {
  40335. front: {
  40336. height: math.unit(8, "feet"),
  40337. name: "Front",
  40338. image: {
  40339. source: "./media/characters/breanna/front.svg",
  40340. extra: 1912/1632,
  40341. bottom: 33/1945
  40342. }
  40343. },
  40344. },
  40345. [
  40346. {
  40347. name: "Smallest",
  40348. height: math.unit(8, "feet")
  40349. },
  40350. {
  40351. name: "Normal",
  40352. height: math.unit(1, "mile"),
  40353. default: true
  40354. },
  40355. {
  40356. name: "Maximum",
  40357. height: math.unit(1500000000000, "lightyears")
  40358. },
  40359. ]
  40360. ))
  40361. characterMakers.push(() => makeCharacter(
  40362. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40363. {
  40364. front: {
  40365. height: math.unit(5 + 11/12, "feet"),
  40366. weight: math.unit(155, "lb"),
  40367. name: "Front",
  40368. image: {
  40369. source: "./media/characters/cai/front.svg",
  40370. extra: 1823/1702,
  40371. bottom: 32/1855
  40372. }
  40373. },
  40374. back: {
  40375. height: math.unit(5 + 11/12, "feet"),
  40376. weight: math.unit(155, "lb"),
  40377. name: "Back",
  40378. image: {
  40379. source: "./media/characters/cai/back.svg",
  40380. extra: 1809/1708,
  40381. bottom: 31/1840
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(5 + 11/12, "feet"),
  40389. default: true
  40390. },
  40391. {
  40392. name: "Big",
  40393. height: math.unit(15, "feet")
  40394. },
  40395. {
  40396. name: "Macro",
  40397. height: math.unit(200, "feet")
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(5 + 6/12, "feet"),
  40406. weight: math.unit(160, "lb"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40410. extra: 1227/1174,
  40411. bottom: 37/1264
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Macro",
  40418. height: math.unit(444, "meters"),
  40419. default: true
  40420. },
  40421. ]
  40422. ))
  40423. characterMakers.push(() => makeCharacter(
  40424. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40425. {
  40426. front: {
  40427. height: math.unit(18 + 7/12, "feet"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/rex/front.svg",
  40431. extra: 1941/1807,
  40432. bottom: 66/2007
  40433. }
  40434. },
  40435. back: {
  40436. height: math.unit(18 + 7/12, "feet"),
  40437. name: "Back",
  40438. image: {
  40439. source: "./media/characters/rex/back.svg",
  40440. extra: 1937/1822,
  40441. bottom: 42/1979
  40442. }
  40443. },
  40444. boot: {
  40445. height: math.unit(3.45, "feet"),
  40446. name: "Boot",
  40447. image: {
  40448. source: "./media/characters/rex/boot.svg"
  40449. }
  40450. },
  40451. paw: {
  40452. height: math.unit(4.17, "feet"),
  40453. name: "Paw",
  40454. image: {
  40455. source: "./media/characters/rex/paw.svg"
  40456. }
  40457. },
  40458. head: {
  40459. height: math.unit(6.728, "feet"),
  40460. name: "Head",
  40461. image: {
  40462. source: "./media/characters/rex/head.svg"
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Nano",
  40469. height: math.unit(18 + 7/12, "feet")
  40470. },
  40471. {
  40472. name: "Micro",
  40473. height: math.unit(1.5, "megameters")
  40474. },
  40475. {
  40476. name: "Normal",
  40477. height: math.unit(440, "megameters"),
  40478. default: true
  40479. },
  40480. {
  40481. name: "Macro",
  40482. height: math.unit(2.5, "gigameters")
  40483. },
  40484. {
  40485. name: "Gigamacro",
  40486. height: math.unit(2, "galaxies")
  40487. },
  40488. ]
  40489. ))
  40490. characterMakers.push(() => makeCharacter(
  40491. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40492. {
  40493. side: {
  40494. height: math.unit(32, "feet"),
  40495. weight: math.unit(250000, "lb"),
  40496. name: "Side",
  40497. image: {
  40498. source: "./media/characters/silverwing/side.svg",
  40499. extra: 1100/1019,
  40500. bottom: 204/1304
  40501. }
  40502. },
  40503. },
  40504. [
  40505. {
  40506. name: "Normal",
  40507. height: math.unit(32, "feet"),
  40508. default: true
  40509. },
  40510. ]
  40511. ))
  40512. characterMakers.push(() => makeCharacter(
  40513. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40514. {
  40515. front: {
  40516. height: math.unit(6 + 6/12, "feet"),
  40517. weight: math.unit(350, "lb"),
  40518. name: "Front",
  40519. image: {
  40520. source: "./media/characters/tristan-hawthorne/front.svg",
  40521. extra: 1159/1124,
  40522. bottom: 37/1196
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Normal",
  40529. height: math.unit(6 + 6/12, "feet"),
  40530. default: true
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40536. {
  40537. front: {
  40538. height: math.unit(5 + 11/12, "feet"),
  40539. weight: math.unit(190, "lb"),
  40540. name: "Front",
  40541. image: {
  40542. source: "./media/characters/mizu/front.svg",
  40543. extra: 1988/1788,
  40544. bottom: 14/2002
  40545. }
  40546. },
  40547. },
  40548. [
  40549. {
  40550. name: "Normal",
  40551. height: math.unit(5 + 11/12, "feet"),
  40552. default: true
  40553. },
  40554. ]
  40555. ))
  40556. characterMakers.push(() => makeCharacter(
  40557. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40558. {
  40559. front: {
  40560. height: math.unit(6, "feet"),
  40561. name: "Front",
  40562. image: {
  40563. source: "./media/characters/moonlight-rose-terra/front.svg",
  40564. extra: 1434/1252,
  40565. bottom: 48/1482
  40566. }
  40567. },
  40568. },
  40569. [
  40570. {
  40571. name: "TRAPPIST-1D",
  40572. height: math.unit(4992*2, "km")
  40573. },
  40574. {
  40575. name: "Earth",
  40576. height: math.unit(6367*2, "km"),
  40577. default: true
  40578. },
  40579. {
  40580. name: "Kepler-22b",
  40581. height: math.unit(15282*2, "km")
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(6, "feet"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40593. extra: 1851/1712,
  40594. bottom: 0/1851
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Enceladus",
  40601. height: math.unit(513*2, "km")
  40602. },
  40603. {
  40604. name: "Europe",
  40605. height: math.unit(1560*2, "km")
  40606. },
  40607. {
  40608. name: "Neptune",
  40609. height: math.unit(24622*2, "km"),
  40610. default: true
  40611. },
  40612. {
  40613. name: "CoRoT-9b",
  40614. height: math.unit(75067*2, "km")
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(6, "feet"),
  40623. name: "Front",
  40624. image: {
  40625. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40626. extra: 1367/1286,
  40627. bottom: 55/1422
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Saturn",
  40634. height: math.unit(58232*2, "km")
  40635. },
  40636. {
  40637. name: "Jupiter",
  40638. height: math.unit(69911*2, "km"),
  40639. default: true
  40640. },
  40641. {
  40642. name: "HD 100546 b",
  40643. height: math.unit(482938, "km")
  40644. },
  40645. ]
  40646. ))
  40647. characterMakers.push(() => makeCharacter(
  40648. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40649. {
  40650. front: {
  40651. height: math.unit(1.7, "feet"),
  40652. weight: math.unit(50, "lb"),
  40653. name: "Front",
  40654. image: {
  40655. source: "./media/characters/dechroma/front.svg",
  40656. extra: 1095/859,
  40657. bottom: 64/1159
  40658. }
  40659. },
  40660. },
  40661. [
  40662. {
  40663. name: "Normal",
  40664. height: math.unit(1.7, "feet"),
  40665. default: true
  40666. },
  40667. ]
  40668. ))
  40669. characterMakers.push(() => makeCharacter(
  40670. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40671. {
  40672. side: {
  40673. height: math.unit(30, "feet"),
  40674. name: "Side",
  40675. image: {
  40676. source: "./media/characters/veluren-thanazel/side.svg",
  40677. extra: 1611/633,
  40678. bottom: 118/1729
  40679. }
  40680. },
  40681. front: {
  40682. height: math.unit(30, "feet"),
  40683. name: "Front",
  40684. image: {
  40685. source: "./media/characters/veluren-thanazel/front.svg",
  40686. extra: 1486/636,
  40687. bottom: 238/1724
  40688. }
  40689. },
  40690. head: {
  40691. height: math.unit(21.4, "feet"),
  40692. name: "Head",
  40693. image: {
  40694. source: "./media/characters/veluren-thanazel/head.svg"
  40695. }
  40696. },
  40697. genitals: {
  40698. height: math.unit(19.4, "feet"),
  40699. name: "Genitals",
  40700. image: {
  40701. source: "./media/characters/veluren-thanazel/genitals.svg"
  40702. }
  40703. },
  40704. },
  40705. [
  40706. {
  40707. name: "Social",
  40708. height: math.unit(6, "feet")
  40709. },
  40710. {
  40711. name: "Play",
  40712. height: math.unit(12, "feet")
  40713. },
  40714. {
  40715. name: "True",
  40716. height: math.unit(30, "feet"),
  40717. default: true
  40718. },
  40719. ]
  40720. ))
  40721. characterMakers.push(() => makeCharacter(
  40722. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40723. {
  40724. front: {
  40725. height: math.unit(7 + 6/12, "feet"),
  40726. weight: math.unit(500, "kg"),
  40727. name: "Front",
  40728. image: {
  40729. source: "./media/characters/arcturas/front.svg",
  40730. extra: 1700/1500,
  40731. bottom: 145/1845
  40732. }
  40733. },
  40734. },
  40735. [
  40736. {
  40737. name: "Normal",
  40738. height: math.unit(7 + 6/12, "feet"),
  40739. default: true
  40740. },
  40741. ]
  40742. ))
  40743. characterMakers.push(() => makeCharacter(
  40744. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40745. {
  40746. side: {
  40747. height: math.unit(6, "feet"),
  40748. weight: math.unit(2, "tons"),
  40749. name: "Side",
  40750. image: {
  40751. source: "./media/characters/vitaen/side.svg",
  40752. extra: 1157/617,
  40753. bottom: 122/1279
  40754. }
  40755. },
  40756. },
  40757. [
  40758. {
  40759. name: "Normal",
  40760. height: math.unit(6, "feet"),
  40761. default: true
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(19, "feet"),
  40770. name: "Front",
  40771. image: {
  40772. source: "./media/characters/fia-dreamweaver/front.svg",
  40773. extra: 1630/1504,
  40774. bottom: 25/1655
  40775. }
  40776. },
  40777. },
  40778. [
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(19, "feet"),
  40782. default: true
  40783. },
  40784. ]
  40785. ))
  40786. //characters
  40787. function makeCharacters() {
  40788. const results = [];
  40789. characterMakers.forEach(character => {
  40790. results.push(character());
  40791. });
  40792. return results;
  40793. }