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.
 
 
 

46682 rindas
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["mammal"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. }
  1824. //species
  1825. function getSpeciesInfo(speciesList) {
  1826. let result = new Set();
  1827. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1828. result.add(entry)
  1829. });
  1830. return Array.from(result);
  1831. };
  1832. function getSpeciesInfoHelper(species) {
  1833. if (!speciesData[species]) {
  1834. console.warn(species + " doesn't exist");
  1835. return [];
  1836. }
  1837. if (speciesData[species].parents) {
  1838. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1839. } else {
  1840. return [species];
  1841. }
  1842. }
  1843. characterMakers.push(() => makeCharacter(
  1844. {
  1845. name: "Fen",
  1846. species: ["crux"],
  1847. description: {
  1848. title: "Bio",
  1849. text: "Very furry. Sheds on everything."
  1850. },
  1851. tags: [
  1852. "anthro",
  1853. "goo"
  1854. ]
  1855. },
  1856. {
  1857. front: {
  1858. height: math.unit(12, "feet"),
  1859. weight: math.unit(1600, "lb"),
  1860. name: "Front",
  1861. image: {
  1862. source: "./media/characters/fen/front.svg",
  1863. extra: 1804/1562,
  1864. bottom: 205/2009
  1865. }
  1866. },
  1867. diving: {
  1868. height: math.unit(4.9, "meters"),
  1869. weight: math.unit(1600, "lb"),
  1870. name: "Diving",
  1871. image: {
  1872. source: "./media/characters/fen/diving.svg"
  1873. }
  1874. },
  1875. goo: {
  1876. height: math.unit(12, "feet"),
  1877. weight: math.unit(1600, "lb"),
  1878. capacity: math.unit(6, "people"),
  1879. name: "Goo",
  1880. image: {
  1881. source: "./media/characters/fen/goo.svg",
  1882. extra: 1307/1071,
  1883. bottom: 134/1441
  1884. }
  1885. },
  1886. maw: {
  1887. height: math.unit(5.03, "feet"),
  1888. name: "Maw",
  1889. image: {
  1890. source: "./media/characters/fen/maw.svg"
  1891. }
  1892. },
  1893. gooCeiling: {
  1894. height: math.unit(6.6, "feet"),
  1895. weight: math.unit(1600, "lb"),
  1896. capacity: math.unit(6, "people"),
  1897. name: "Goo (Ceiling)",
  1898. image: {
  1899. source: "./media/characters/fen/goo-ceiling.svg"
  1900. }
  1901. },
  1902. back: {
  1903. height: math.unit(12, "feet"),
  1904. weight: math.unit(1600, "lb"),
  1905. name: "Back",
  1906. image: {
  1907. source: "./media/characters/fen/back.svg",
  1908. },
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nHe is not currently looking at you."
  1913. }
  1914. }
  1915. },
  1916. full: {
  1917. height: math.unit(1.6, "meter"),
  1918. weight: math.unit(2200, "lb"),
  1919. name: "Full",
  1920. image: {
  1921. source: "./media/characters/fen/full.svg",
  1922. extra: 1133/859,
  1923. bottom: 145/1278
  1924. },
  1925. info: {
  1926. description: {
  1927. mode: "append",
  1928. text: "\n\nMunch."
  1929. }
  1930. }
  1931. },
  1932. gooLounging: {
  1933. height: math.unit(4.53, "feet"),
  1934. weight: math.unit(1600, "lb"),
  1935. capacity: math.unit(6, "people"),
  1936. name: "Goo (Lounging)",
  1937. image: {
  1938. source: "./media/characters/fen/goo.svg",
  1939. bottom: 116 / 613
  1940. }
  1941. },
  1942. lounging: {
  1943. height: math.unit(10.52, "feet"),
  1944. weight: math.unit(1600, "lb"),
  1945. name: "Lounging",
  1946. image: {
  1947. source: "./media/characters/fen/lounging.svg"
  1948. }
  1949. },
  1950. },
  1951. [
  1952. {
  1953. name: "Small",
  1954. height: math.unit(2.2428, "meter")
  1955. },
  1956. {
  1957. name: "Normal",
  1958. height: math.unit(12, "feet"),
  1959. default: true,
  1960. },
  1961. {
  1962. name: "Big",
  1963. height: math.unit(20, "feet")
  1964. },
  1965. {
  1966. name: "Minimacro",
  1967. height: math.unit(40, "feet"),
  1968. info: {
  1969. description: {
  1970. mode: "append",
  1971. text: "\n\nTOO DAMN BIG"
  1972. }
  1973. }
  1974. },
  1975. {
  1976. name: "Macro",
  1977. height: math.unit(100, "feet"),
  1978. info: {
  1979. description: {
  1980. mode: "append",
  1981. text: "\n\nTOO DAMN BIG"
  1982. }
  1983. }
  1984. },
  1985. {
  1986. name: "Megamacro",
  1987. height: math.unit(2, "miles")
  1988. },
  1989. {
  1990. name: "Gigamacro",
  1991. height: math.unit(10, "earths")
  1992. },
  1993. ]
  1994. ))
  1995. characterMakers.push(() => makeCharacter(
  1996. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1997. {
  1998. front: {
  1999. height: math.unit(183, "cm"),
  2000. weight: math.unit(80, "kg"),
  2001. name: "Front",
  2002. image: {
  2003. source: "./media/characters/sofia-fluttertail/front.svg",
  2004. bottom: 0.01,
  2005. extra: 2154 / 2081
  2006. }
  2007. },
  2008. frontAlt: {
  2009. height: math.unit(183, "cm"),
  2010. weight: math.unit(80, "kg"),
  2011. name: "Front (alt)",
  2012. image: {
  2013. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2014. }
  2015. },
  2016. back: {
  2017. height: math.unit(183, "cm"),
  2018. weight: math.unit(80, "kg"),
  2019. name: "Back",
  2020. image: {
  2021. source: "./media/characters/sofia-fluttertail/back.svg"
  2022. }
  2023. },
  2024. kneeling: {
  2025. height: math.unit(125, "cm"),
  2026. weight: math.unit(80, "kg"),
  2027. name: "Kneeling",
  2028. image: {
  2029. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2030. extra: 1033 / 977,
  2031. bottom: 23.7 / 1057
  2032. }
  2033. },
  2034. maw: {
  2035. height: math.unit(183 / 5, "cm"),
  2036. name: "Maw",
  2037. image: {
  2038. source: "./media/characters/sofia-fluttertail/maw.svg"
  2039. }
  2040. },
  2041. mawcloseup: {
  2042. height: math.unit(183 / 5 * 0.41, "cm"),
  2043. name: "Maw (Closeup)",
  2044. image: {
  2045. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2046. }
  2047. },
  2048. paws: {
  2049. height: math.unit(1.17, "feet"),
  2050. name: "Paws",
  2051. image: {
  2052. source: "./media/characters/sofia-fluttertail/paws.svg",
  2053. extra: 851 / 851,
  2054. bottom: 17 / 868
  2055. }
  2056. },
  2057. },
  2058. [
  2059. {
  2060. name: "Normal",
  2061. height: math.unit(1.83, "meter")
  2062. },
  2063. {
  2064. name: "Size Thief",
  2065. height: math.unit(18, "feet")
  2066. },
  2067. {
  2068. name: "50 Foot Collie",
  2069. height: math.unit(50, "feet")
  2070. },
  2071. {
  2072. name: "Macro",
  2073. height: math.unit(96, "feet"),
  2074. default: true
  2075. },
  2076. {
  2077. name: "Megamerger",
  2078. height: math.unit(650, "feet")
  2079. },
  2080. ]
  2081. ))
  2082. characterMakers.push(() => makeCharacter(
  2083. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2084. {
  2085. front: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(100, "kg"),
  2088. name: "Front",
  2089. image: {
  2090. source: "./media/characters/march/front.svg",
  2091. extra: 1992/1851,
  2092. bottom: 39/2031
  2093. }
  2094. },
  2095. foot: {
  2096. height: math.unit(0.9, "feet"),
  2097. name: "Foot",
  2098. image: {
  2099. source: "./media/characters/march/foot.svg"
  2100. }
  2101. },
  2102. },
  2103. [
  2104. {
  2105. name: "Normal",
  2106. height: math.unit(7.9, "feet")
  2107. },
  2108. {
  2109. name: "Macro",
  2110. height: math.unit(220, "meters")
  2111. },
  2112. {
  2113. name: "Megamacro",
  2114. height: math.unit(2.98, "km"),
  2115. default: true
  2116. },
  2117. {
  2118. name: "Gigamacro",
  2119. height: math.unit(15963, "km")
  2120. },
  2121. {
  2122. name: "Teramacro",
  2123. height: math.unit(2980000000, "km")
  2124. },
  2125. {
  2126. name: "Examacro",
  2127. height: math.unit(250, "parsecs")
  2128. },
  2129. ]
  2130. ))
  2131. characterMakers.push(() => makeCharacter(
  2132. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2133. {
  2134. front: {
  2135. height: math.unit(6, "feet"),
  2136. weight: math.unit(60, "kg"),
  2137. name: "Front",
  2138. image: {
  2139. source: "./media/characters/noir/front.svg",
  2140. extra: 1,
  2141. bottom: 0.032
  2142. }
  2143. },
  2144. },
  2145. [
  2146. {
  2147. name: "Normal",
  2148. height: math.unit(6.6, "feet")
  2149. },
  2150. {
  2151. name: "Macro",
  2152. height: math.unit(500, "feet")
  2153. },
  2154. {
  2155. name: "Megamacro",
  2156. height: math.unit(2.5, "km"),
  2157. default: true
  2158. },
  2159. {
  2160. name: "Gigamacro",
  2161. height: math.unit(22500, "km")
  2162. },
  2163. {
  2164. name: "Teramacro",
  2165. height: math.unit(2500000000, "km")
  2166. },
  2167. {
  2168. name: "Examacro",
  2169. height: math.unit(200, "parsecs")
  2170. },
  2171. ]
  2172. ))
  2173. characterMakers.push(() => makeCharacter(
  2174. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2175. {
  2176. front: {
  2177. height: math.unit(7, "feet"),
  2178. weight: math.unit(100, "kg"),
  2179. name: "Front",
  2180. image: {
  2181. source: "./media/characters/okuri/front.svg",
  2182. extra: 1,
  2183. bottom: 0.037
  2184. }
  2185. },
  2186. back: {
  2187. height: math.unit(7, "feet"),
  2188. weight: math.unit(100, "kg"),
  2189. name: "Back",
  2190. image: {
  2191. source: "./media/characters/okuri/back.svg",
  2192. extra: 1,
  2193. bottom: 0.007
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(100, "miles"),
  2201. default: true
  2202. },
  2203. ]
  2204. ))
  2205. characterMakers.push(() => makeCharacter(
  2206. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2207. {
  2208. front: {
  2209. height: math.unit(7, "feet"),
  2210. weight: math.unit(100, "kg"),
  2211. name: "Front",
  2212. image: {
  2213. source: "./media/characters/manny/front.svg",
  2214. extra: 1,
  2215. bottom: 0.06
  2216. }
  2217. },
  2218. back: {
  2219. height: math.unit(7, "feet"),
  2220. weight: math.unit(100, "kg"),
  2221. name: "Back",
  2222. image: {
  2223. source: "./media/characters/manny/back.svg",
  2224. extra: 1,
  2225. bottom: 0.014
  2226. }
  2227. },
  2228. },
  2229. [
  2230. {
  2231. name: "Normal",
  2232. height: math.unit(7, "feet"),
  2233. },
  2234. {
  2235. name: "Macro",
  2236. height: math.unit(78, "feet"),
  2237. default: true
  2238. },
  2239. {
  2240. name: "Macro+",
  2241. height: math.unit(300, "meters")
  2242. },
  2243. {
  2244. name: "Macro++",
  2245. height: math.unit(2400, "meters")
  2246. },
  2247. {
  2248. name: "Megamacro",
  2249. height: math.unit(5167, "meters")
  2250. },
  2251. {
  2252. name: "Gigamacro",
  2253. height: math.unit(41769, "miles")
  2254. },
  2255. ]
  2256. ))
  2257. characterMakers.push(() => makeCharacter(
  2258. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2259. {
  2260. front: {
  2261. height: math.unit(7, "feet"),
  2262. weight: math.unit(100, "kg"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/adake/front-1.svg"
  2266. }
  2267. },
  2268. frontAlt: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Front (Alt)",
  2272. image: {
  2273. source: "./media/characters/adake/front-2.svg",
  2274. extra: 1,
  2275. bottom: 0.01
  2276. }
  2277. },
  2278. back: {
  2279. height: math.unit(7, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Back",
  2282. image: {
  2283. source: "./media/characters/adake/back.svg",
  2284. }
  2285. },
  2286. kneel: {
  2287. height: math.unit(5.385, "feet"),
  2288. weight: math.unit(100, "kg"),
  2289. name: "Kneeling",
  2290. image: {
  2291. source: "./media/characters/adake/kneel.svg",
  2292. bottom: 0.052
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Normal",
  2299. height: math.unit(7, "feet"),
  2300. },
  2301. {
  2302. name: "Macro",
  2303. height: math.unit(78, "feet"),
  2304. default: true
  2305. },
  2306. {
  2307. name: "Macro+",
  2308. height: math.unit(300, "meters")
  2309. },
  2310. {
  2311. name: "Macro++",
  2312. height: math.unit(2400, "meters")
  2313. },
  2314. {
  2315. name: "Megamacro",
  2316. height: math.unit(5167, "meters")
  2317. },
  2318. {
  2319. name: "Gigamacro",
  2320. height: math.unit(41769, "miles")
  2321. },
  2322. ]
  2323. ))
  2324. characterMakers.push(() => makeCharacter(
  2325. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2326. {
  2327. front: {
  2328. height: math.unit(1.65, "meters"),
  2329. weight: math.unit(50, "kg"),
  2330. name: "Front",
  2331. image: {
  2332. source: "./media/characters/elijah/front.svg",
  2333. extra: 858 / 830,
  2334. bottom: 95.5 / 953.8559
  2335. }
  2336. },
  2337. back: {
  2338. height: math.unit(1.65, "meters"),
  2339. weight: math.unit(50, "kg"),
  2340. name: "Back",
  2341. image: {
  2342. source: "./media/characters/elijah/back.svg",
  2343. extra: 895 / 850,
  2344. bottom: 5.3 / 897.956
  2345. }
  2346. },
  2347. frontNsfw: {
  2348. height: math.unit(1.65, "meters"),
  2349. weight: math.unit(50, "kg"),
  2350. name: "Front (NSFW)",
  2351. image: {
  2352. source: "./media/characters/elijah/front-nsfw.svg",
  2353. extra: 858 / 830,
  2354. bottom: 95.5 / 953.8559
  2355. }
  2356. },
  2357. backNsfw: {
  2358. height: math.unit(1.65, "meters"),
  2359. weight: math.unit(50, "kg"),
  2360. name: "Back (NSFW)",
  2361. image: {
  2362. source: "./media/characters/elijah/back-nsfw.svg",
  2363. extra: 895 / 850,
  2364. bottom: 5.3 / 897.956
  2365. }
  2366. },
  2367. dick: {
  2368. height: math.unit(1, "feet"),
  2369. name: "Dick",
  2370. image: {
  2371. source: "./media/characters/elijah/dick.svg"
  2372. }
  2373. },
  2374. beakOpen: {
  2375. height: math.unit(1.25, "feet"),
  2376. name: "Beak (Open)",
  2377. image: {
  2378. source: "./media/characters/elijah/beak-open.svg"
  2379. }
  2380. },
  2381. beakShut: {
  2382. height: math.unit(1.25, "feet"),
  2383. name: "Beak (Shut)",
  2384. image: {
  2385. source: "./media/characters/elijah/beak-shut.svg"
  2386. }
  2387. },
  2388. footFlexing: {
  2389. height: math.unit(1.61, "feet"),
  2390. name: "Foot (Flexing)",
  2391. image: {
  2392. source: "./media/characters/elijah/foot-flexing.svg"
  2393. }
  2394. },
  2395. footStepping: {
  2396. height: math.unit(1.44, "feet"),
  2397. name: "Foot (Stepping)",
  2398. image: {
  2399. source: "./media/characters/elijah/foot-stepping.svg"
  2400. }
  2401. },
  2402. plantigradeLeg: {
  2403. height: math.unit(2.34, "feet"),
  2404. name: "Plantigrade Leg",
  2405. image: {
  2406. source: "./media/characters/elijah/plantigrade-leg.svg"
  2407. }
  2408. },
  2409. plantigradeFootLeft: {
  2410. height: math.unit(0.9, "feet"),
  2411. name: "Plantigrade Foot (Left)",
  2412. image: {
  2413. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2414. }
  2415. },
  2416. plantigradeFootRight: {
  2417. height: math.unit(0.9, "feet"),
  2418. name: "Plantigrade Foot (Right)",
  2419. image: {
  2420. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(1.65, "meters")
  2428. },
  2429. {
  2430. name: "Macro",
  2431. height: math.unit(55, "meters"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Macro+",
  2436. height: math.unit(105, "meters")
  2437. },
  2438. ]
  2439. ))
  2440. characterMakers.push(() => makeCharacter(
  2441. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2442. {
  2443. front: {
  2444. height: math.unit(7 + 2/12, "feet"),
  2445. weight: math.unit(320, "kg"),
  2446. name: "Front",
  2447. image: {
  2448. source: "./media/characters/rai/front.svg",
  2449. extra: 1802/1696,
  2450. bottom: 68/1870
  2451. }
  2452. },
  2453. frontDressed: {
  2454. height: math.unit(7 + 2/12, "feet"),
  2455. weight: math.unit(320, "kg"),
  2456. name: "Front (Dressed)",
  2457. image: {
  2458. source: "./media/characters/rai/front-dressed.svg",
  2459. extra: 1802/1696,
  2460. bottom: 68/1870
  2461. }
  2462. },
  2463. side: {
  2464. height: math.unit(7 + 2/12, "feet"),
  2465. weight: math.unit(320, "kg"),
  2466. name: "Side",
  2467. image: {
  2468. source: "./media/characters/rai/side.svg",
  2469. extra: 1789/1710,
  2470. bottom: 115/1904
  2471. }
  2472. },
  2473. back: {
  2474. height: math.unit(7 + 2/12, "feet"),
  2475. weight: math.unit(320, "kg"),
  2476. name: "Back",
  2477. image: {
  2478. source: "./media/characters/rai/back.svg",
  2479. extra: 1770/1707,
  2480. bottom: 28/1798
  2481. }
  2482. },
  2483. feral: {
  2484. height: math.unit(9.5, "feet"),
  2485. weight: math.unit(640, "kg"),
  2486. name: "Feral",
  2487. image: {
  2488. source: "./media/characters/rai/feral.svg",
  2489. extra: 945/553,
  2490. bottom: 176/1121
  2491. }
  2492. },
  2493. dragon: {
  2494. height: math.unit(23, "feet"),
  2495. weight: math.unit(50000, "lb"),
  2496. name: "Dragon",
  2497. image: {
  2498. source: "./media/characters/rai/dragon.svg",
  2499. extra: 2498 / 2030,
  2500. bottom: 85.2 / 2584
  2501. }
  2502. },
  2503. maw: {
  2504. height: math.unit(1.69, "feet"),
  2505. name: "Maw",
  2506. image: {
  2507. source: "./media/characters/rai/maw.svg"
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Normal",
  2514. height: math.unit(7 + 2/12, "feet")
  2515. },
  2516. {
  2517. name: "Big",
  2518. height: math.unit(11, "feet")
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(302, "feet"),
  2523. default: true
  2524. },
  2525. ]
  2526. ))
  2527. characterMakers.push(() => makeCharacter(
  2528. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2529. {
  2530. frontDressed: {
  2531. height: math.unit(216, "feet"),
  2532. weight: math.unit(7000000, "lb"),
  2533. name: "Front (Dressed)",
  2534. image: {
  2535. source: "./media/characters/jazzy/front-dressed.svg",
  2536. extra: 2738 / 2651,
  2537. bottom: 41.8 / 2786
  2538. }
  2539. },
  2540. backDressed: {
  2541. height: math.unit(216, "feet"),
  2542. weight: math.unit(7000000, "lb"),
  2543. name: "Back (Dressed)",
  2544. image: {
  2545. source: "./media/characters/jazzy/back-dressed.svg",
  2546. extra: 2775 / 2673,
  2547. bottom: 36.8 / 2817
  2548. }
  2549. },
  2550. front: {
  2551. height: math.unit(216, "feet"),
  2552. weight: math.unit(7000000, "lb"),
  2553. name: "Front",
  2554. image: {
  2555. source: "./media/characters/jazzy/front.svg",
  2556. extra: 2738 / 2651,
  2557. bottom: 41.8 / 2786
  2558. }
  2559. },
  2560. back: {
  2561. height: math.unit(216, "feet"),
  2562. weight: math.unit(7000000, "lb"),
  2563. name: "Back",
  2564. image: {
  2565. source: "./media/characters/jazzy/back.svg",
  2566. extra: 2775 / 2673,
  2567. bottom: 36.8 / 2817
  2568. }
  2569. },
  2570. maw: {
  2571. height: math.unit(20, "feet"),
  2572. name: "Maw",
  2573. image: {
  2574. source: "./media/characters/jazzy/maw.svg"
  2575. }
  2576. },
  2577. paws: {
  2578. height: math.unit(27.5, "feet"),
  2579. name: "Paws",
  2580. image: {
  2581. source: "./media/characters/jazzy/paws.svg"
  2582. }
  2583. },
  2584. eye: {
  2585. height: math.unit(4.4, "feet"),
  2586. name: "Eye",
  2587. image: {
  2588. source: "./media/characters/jazzy/eye.svg"
  2589. }
  2590. },
  2591. droneOffense: {
  2592. height: math.unit(9.5, "inches"),
  2593. name: "Drone (Offense)",
  2594. image: {
  2595. source: "./media/characters/jazzy/drone-offense.svg"
  2596. }
  2597. },
  2598. droneRecon: {
  2599. height: math.unit(9.5, "inches"),
  2600. name: "Drone (Recon)",
  2601. image: {
  2602. source: "./media/characters/jazzy/drone-recon.svg"
  2603. }
  2604. },
  2605. droneDefense: {
  2606. height: math.unit(9.5, "inches"),
  2607. name: "Drone (Defense)",
  2608. image: {
  2609. source: "./media/characters/jazzy/drone-defense.svg"
  2610. }
  2611. },
  2612. },
  2613. [
  2614. {
  2615. name: "Macro",
  2616. height: math.unit(216, "feet"),
  2617. default: true
  2618. },
  2619. ]
  2620. ))
  2621. characterMakers.push(() => makeCharacter(
  2622. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2623. {
  2624. front: {
  2625. height: math.unit(9 + 6/12, "feet"),
  2626. weight: math.unit(700, "lb"),
  2627. name: "Front",
  2628. image: {
  2629. source: "./media/characters/flamm/front.svg",
  2630. extra: 1751/1632,
  2631. bottom: 46/1797
  2632. }
  2633. },
  2634. buff: {
  2635. height: math.unit(9 + 6/12, "feet"),
  2636. weight: math.unit(950, "lb"),
  2637. name: "Buff",
  2638. image: {
  2639. source: "./media/characters/flamm/buff.svg",
  2640. extra: 3018/2874,
  2641. bottom: 221/3239
  2642. }
  2643. },
  2644. },
  2645. [
  2646. {
  2647. name: "Normal",
  2648. height: math.unit(9.5, "feet")
  2649. },
  2650. {
  2651. name: "Macro",
  2652. height: math.unit(200, "feet"),
  2653. default: true
  2654. },
  2655. ]
  2656. ))
  2657. characterMakers.push(() => makeCharacter(
  2658. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2659. {
  2660. front: {
  2661. height: math.unit(5 + 3/12, "feet"),
  2662. weight: math.unit(60, "kg"),
  2663. name: "Front",
  2664. image: {
  2665. source: "./media/characters/zephiro/front.svg",
  2666. extra: 2309 / 2162,
  2667. bottom: 0.069
  2668. }
  2669. },
  2670. side: {
  2671. height: math.unit(5 + 3/12, "feet"),
  2672. weight: math.unit(60, "kg"),
  2673. name: "Side",
  2674. image: {
  2675. source: "./media/characters/zephiro/side.svg",
  2676. extra: 2403 / 2279,
  2677. bottom: 0.015
  2678. }
  2679. },
  2680. back: {
  2681. height: math.unit(5 + 3/12, "feet"),
  2682. weight: math.unit(60, "kg"),
  2683. name: "Back",
  2684. image: {
  2685. source: "./media/characters/zephiro/back.svg",
  2686. extra: 2373 / 2244,
  2687. bottom: 0.013
  2688. }
  2689. },
  2690. hand: {
  2691. height: math.unit(0.68, "feet"),
  2692. name: "Hand",
  2693. image: {
  2694. source: "./media/characters/zephiro/hand.svg"
  2695. }
  2696. },
  2697. paw: {
  2698. height: math.unit(1, "feet"),
  2699. name: "Paw",
  2700. image: {
  2701. source: "./media/characters/zephiro/paw.svg"
  2702. }
  2703. },
  2704. beans: {
  2705. height: math.unit(0.93, "feet"),
  2706. name: "Beans",
  2707. image: {
  2708. source: "./media/characters/zephiro/beans.svg"
  2709. }
  2710. },
  2711. },
  2712. [
  2713. {
  2714. name: "Micro",
  2715. height: math.unit(3, "inches")
  2716. },
  2717. {
  2718. name: "Normal",
  2719. height: math.unit(5 + 3 / 12, "feet"),
  2720. default: true
  2721. },
  2722. {
  2723. name: "Macro",
  2724. height: math.unit(118, "feet")
  2725. },
  2726. ]
  2727. ))
  2728. characterMakers.push(() => makeCharacter(
  2729. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2730. {
  2731. front: {
  2732. height: math.unit(5, "feet"),
  2733. weight: math.unit(90, "kg"),
  2734. name: "Front",
  2735. image: {
  2736. source: "./media/characters/fory/front.svg",
  2737. extra: 2862 / 2674,
  2738. bottom: 180 / 3043.8
  2739. }
  2740. },
  2741. back: {
  2742. height: math.unit(5, "feet"),
  2743. weight: math.unit(90, "kg"),
  2744. name: "Back",
  2745. image: {
  2746. source: "./media/characters/fory/back.svg",
  2747. extra: 2962 / 2791,
  2748. bottom: 106 / 3071.8
  2749. }
  2750. },
  2751. foot: {
  2752. height: math.unit(2.14, "feet"),
  2753. name: "Foot",
  2754. image: {
  2755. source: "./media/characters/fory/foot.svg"
  2756. }
  2757. },
  2758. },
  2759. [
  2760. {
  2761. name: "Normal",
  2762. height: math.unit(5, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(50, "feet"),
  2767. default: true
  2768. },
  2769. {
  2770. name: "Megamacro",
  2771. height: math.unit(10, "miles")
  2772. },
  2773. {
  2774. name: "Gigamacro",
  2775. height: math.unit(5, "earths")
  2776. },
  2777. ]
  2778. ))
  2779. characterMakers.push(() => makeCharacter(
  2780. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2781. {
  2782. front: {
  2783. height: math.unit(7, "feet"),
  2784. weight: math.unit(90, "kg"),
  2785. name: "Front",
  2786. image: {
  2787. source: "./media/characters/kurrikage/front.svg",
  2788. extra: 1845/1733,
  2789. bottom: 119/1964
  2790. }
  2791. },
  2792. back: {
  2793. height: math.unit(7, "feet"),
  2794. weight: math.unit(90, "kg"),
  2795. name: "Back",
  2796. image: {
  2797. source: "./media/characters/kurrikage/back.svg",
  2798. extra: 1790/1677,
  2799. bottom: 61/1851
  2800. }
  2801. },
  2802. dressed: {
  2803. height: math.unit(7, "feet"),
  2804. weight: math.unit(90, "kg"),
  2805. name: "Dressed",
  2806. image: {
  2807. source: "./media/characters/kurrikage/dressed.svg",
  2808. extra: 1845/1733,
  2809. bottom: 119/1964
  2810. }
  2811. },
  2812. foot: {
  2813. height: math.unit(1.5, "feet"),
  2814. name: "Foot",
  2815. image: {
  2816. source: "./media/characters/kurrikage/foot.svg"
  2817. }
  2818. },
  2819. staff: {
  2820. height: math.unit(6.7, "feet"),
  2821. name: "Staff",
  2822. image: {
  2823. source: "./media/characters/kurrikage/staff.svg"
  2824. }
  2825. },
  2826. peek: {
  2827. height: math.unit(1.05, "feet"),
  2828. name: "Peeking",
  2829. image: {
  2830. source: "./media/characters/kurrikage/peek.svg",
  2831. bottom: 0.08
  2832. }
  2833. },
  2834. },
  2835. [
  2836. {
  2837. name: "Normal",
  2838. height: math.unit(12, "feet"),
  2839. default: true
  2840. },
  2841. {
  2842. name: "Big",
  2843. height: math.unit(20, "feet")
  2844. },
  2845. {
  2846. name: "Macro",
  2847. height: math.unit(500, "feet")
  2848. },
  2849. {
  2850. name: "Megamacro",
  2851. height: math.unit(20, "miles")
  2852. },
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2857. {
  2858. front: {
  2859. height: math.unit(6, "feet"),
  2860. weight: math.unit(75, "kg"),
  2861. name: "Front",
  2862. image: {
  2863. source: "./media/characters/shingo/front.svg",
  2864. extra: 1900/1825,
  2865. bottom: 82/1982
  2866. }
  2867. },
  2868. side: {
  2869. height: math.unit(6, "feet"),
  2870. weight: math.unit(75, "kg"),
  2871. name: "Side",
  2872. image: {
  2873. source: "./media/characters/shingo/side.svg",
  2874. extra: 1930/1865,
  2875. bottom: 16/1946
  2876. }
  2877. },
  2878. back: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Back",
  2882. image: {
  2883. source: "./media/characters/shingo/back.svg",
  2884. extra: 1922/1852,
  2885. bottom: 16/1938
  2886. }
  2887. },
  2888. frontDressed: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(150, "lb"),
  2891. name: "Front-dressed",
  2892. image: {
  2893. source: "./media/characters/shingo/front-dressed.svg",
  2894. extra: 1900/1825,
  2895. bottom: 82/1982
  2896. }
  2897. },
  2898. paw: {
  2899. height: math.unit(1.29, "feet"),
  2900. name: "Paw",
  2901. image: {
  2902. source: "./media/characters/shingo/paw.svg"
  2903. }
  2904. },
  2905. hand: {
  2906. height: math.unit(1.07, "feet"),
  2907. name: "Hand",
  2908. image: {
  2909. source: "./media/characters/shingo/hand.svg"
  2910. }
  2911. },
  2912. frontAlt: {
  2913. height: math.unit(6, "feet"),
  2914. weight: math.unit(75, "kg"),
  2915. name: "Front (Alt)",
  2916. image: {
  2917. source: "./media/characters/shingo/front-alt.svg",
  2918. extra: 3511 / 3338,
  2919. bottom: 0.005
  2920. }
  2921. },
  2922. frontAlt2: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(75, "kg"),
  2925. name: "Front (Alt 2)",
  2926. image: {
  2927. source: "./media/characters/shingo/front-alt-2.svg",
  2928. extra: 706/681,
  2929. bottom: 11/717
  2930. }
  2931. },
  2932. pawAlt: {
  2933. height: math.unit(1, "feet"),
  2934. name: "Paw (Alt)",
  2935. image: {
  2936. source: "./media/characters/shingo/paw-alt.svg"
  2937. }
  2938. },
  2939. },
  2940. [
  2941. {
  2942. name: "Micro",
  2943. height: math.unit(4, "inches")
  2944. },
  2945. {
  2946. name: "Normal",
  2947. height: math.unit(6, "feet"),
  2948. default: true
  2949. },
  2950. {
  2951. name: "Macro",
  2952. height: math.unit(108, "feet")
  2953. },
  2954. {
  2955. name: "Macro+",
  2956. height: math.unit(1500, "feet")
  2957. },
  2958. ]
  2959. ))
  2960. characterMakers.push(() => makeCharacter(
  2961. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2962. {
  2963. side: {
  2964. height: math.unit(6, "feet"),
  2965. weight: math.unit(75, "kg"),
  2966. name: "Side",
  2967. image: {
  2968. source: "./media/characters/aigey/side.svg"
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(200, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Megamacro",
  2980. height: math.unit(100, "miles")
  2981. },
  2982. ]
  2983. )
  2984. )
  2985. characterMakers.push(() => makeCharacter(
  2986. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2987. {
  2988. front: {
  2989. height: math.unit(5 + 5 / 12, "feet"),
  2990. weight: math.unit(75, "kg"),
  2991. name: "Front",
  2992. image: {
  2993. source: "./media/characters/natasha/front.svg",
  2994. extra: 859 / 824,
  2995. bottom: 23 / 879.6
  2996. }
  2997. },
  2998. frontNsfw: {
  2999. height: math.unit(5 + 5 / 12, "feet"),
  3000. weight: math.unit(75, "kg"),
  3001. name: "Front (NSFW)",
  3002. image: {
  3003. source: "./media/characters/natasha/front-nsfw.svg",
  3004. extra: 859 / 824,
  3005. bottom: 23 / 879.6
  3006. }
  3007. },
  3008. frontErect: {
  3009. height: math.unit(5 + 5 / 12, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Front (Erect)",
  3012. image: {
  3013. source: "./media/characters/natasha/front-erect.svg",
  3014. extra: 859 / 824,
  3015. bottom: 23 / 879.6
  3016. }
  3017. },
  3018. back: {
  3019. height: math.unit(5 + 5 / 12, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Back",
  3022. image: {
  3023. source: "./media/characters/natasha/back.svg",
  3024. extra: 887.9 / 852.6,
  3025. bottom: 9.7 / 896.4
  3026. }
  3027. },
  3028. backAlt: {
  3029. height: math.unit(5 + 5 / 12, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Back (Alt)",
  3032. image: {
  3033. source: "./media/characters/natasha/back-alt.svg",
  3034. extra: 1236.7 / 1192,
  3035. bottom: 22.3 / 1258.2
  3036. }
  3037. },
  3038. dick: {
  3039. height: math.unit(1.772, "feet"),
  3040. name: "Dick",
  3041. image: {
  3042. source: "./media/characters/natasha/dick.svg"
  3043. }
  3044. },
  3045. paw: {
  3046. height: math.unit(0.250, "meters"),
  3047. name: "Paw",
  3048. image: {
  3049. source: "./media/characters/natasha/paw.svg"
  3050. }
  3051. },
  3052. },
  3053. [
  3054. {
  3055. name: "Normal",
  3056. height: math.unit(5 + 5 / 12, "feet")
  3057. },
  3058. {
  3059. name: "Large",
  3060. height: math.unit(12, "feet")
  3061. },
  3062. {
  3063. name: "Macro",
  3064. height: math.unit(100, "feet"),
  3065. default: true
  3066. },
  3067. {
  3068. name: "Macro+",
  3069. height: math.unit(260, "feet")
  3070. },
  3071. {
  3072. name: "Macro++",
  3073. height: math.unit(1, "mile")
  3074. },
  3075. ]
  3076. ))
  3077. characterMakers.push(() => makeCharacter(
  3078. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3079. {
  3080. front: {
  3081. height: math.unit(6, "feet"),
  3082. weight: math.unit(75, "kg"),
  3083. name: "Front",
  3084. image: {
  3085. source: "./media/characters/malik/front.svg"
  3086. }
  3087. },
  3088. side: {
  3089. height: math.unit(6, "feet"),
  3090. weight: math.unit(75, "kg"),
  3091. name: "Side",
  3092. image: {
  3093. source: "./media/characters/malik/side.svg",
  3094. extra: 1.1539
  3095. }
  3096. },
  3097. back: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Back",
  3101. image: {
  3102. source: "./media/characters/malik/back.svg"
  3103. }
  3104. },
  3105. },
  3106. [
  3107. {
  3108. name: "Macro",
  3109. height: math.unit(156, "feet"),
  3110. default: true
  3111. },
  3112. {
  3113. name: "Macro+",
  3114. height: math.unit(1188, "feet")
  3115. },
  3116. ]
  3117. ))
  3118. characterMakers.push(() => makeCharacter(
  3119. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3120. {
  3121. front: {
  3122. height: math.unit(6, "feet"),
  3123. weight: math.unit(75, "kg"),
  3124. name: "Front",
  3125. image: {
  3126. source: "./media/characters/sefer/front.svg",
  3127. extra: 848 / 659,
  3128. bottom: 28.3 / 876.442
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(6, "feet"),
  3133. weight: math.unit(75, "kg"),
  3134. name: "Back",
  3135. image: {
  3136. source: "./media/characters/sefer/back.svg",
  3137. extra: 864 / 695,
  3138. bottom: 10 / 871
  3139. }
  3140. },
  3141. frontDressed: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(75, "kg"),
  3144. name: "Front (Dressed)",
  3145. image: {
  3146. source: "./media/characters/sefer/front-dressed.svg",
  3147. extra: 839 / 653,
  3148. bottom: 37.6 / 878
  3149. }
  3150. },
  3151. },
  3152. [
  3153. {
  3154. name: "Normal",
  3155. height: math.unit(6, "feet"),
  3156. default: true
  3157. },
  3158. ]
  3159. ))
  3160. characterMakers.push(() => makeCharacter(
  3161. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3162. {
  3163. body: {
  3164. height: math.unit(2.2428, "meter"),
  3165. weight: math.unit(124.738, "kg"),
  3166. name: "Body",
  3167. image: {
  3168. extra: 1225 / 1050,
  3169. source: "./media/characters/north/front.svg"
  3170. }
  3171. }
  3172. },
  3173. [
  3174. {
  3175. name: "Micro",
  3176. height: math.unit(4, "inches")
  3177. },
  3178. {
  3179. name: "Macro",
  3180. height: math.unit(63, "meters")
  3181. },
  3182. {
  3183. name: "Megamacro",
  3184. height: math.unit(101, "miles"),
  3185. default: true
  3186. }
  3187. ]
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3191. {
  3192. angled: {
  3193. height: math.unit(4, "meter"),
  3194. weight: math.unit(150, "kg"),
  3195. name: "Angled",
  3196. image: {
  3197. source: "./media/characters/talan/angled-sfw.svg",
  3198. bottom: 29 / 3734
  3199. }
  3200. },
  3201. angledNsfw: {
  3202. height: math.unit(4, "meter"),
  3203. weight: math.unit(150, "kg"),
  3204. name: "Angled (NSFW)",
  3205. image: {
  3206. source: "./media/characters/talan/angled-nsfw.svg",
  3207. bottom: 29 / 3734
  3208. }
  3209. },
  3210. frontNsfw: {
  3211. height: math.unit(4, "meter"),
  3212. weight: math.unit(150, "kg"),
  3213. name: "Front (NSFW)",
  3214. image: {
  3215. source: "./media/characters/talan/front-nsfw.svg",
  3216. bottom: 29 / 3734
  3217. }
  3218. },
  3219. sideNsfw: {
  3220. height: math.unit(4, "meter"),
  3221. weight: math.unit(150, "kg"),
  3222. name: "Side (NSFW)",
  3223. image: {
  3224. source: "./media/characters/talan/side-nsfw.svg",
  3225. bottom: 29 / 3734
  3226. }
  3227. },
  3228. back: {
  3229. height: math.unit(4, "meter"),
  3230. weight: math.unit(150, "kg"),
  3231. name: "Back",
  3232. image: {
  3233. source: "./media/characters/talan/back.svg"
  3234. }
  3235. },
  3236. dickBottom: {
  3237. height: math.unit(0.621, "meter"),
  3238. name: "Dick (Bottom)",
  3239. image: {
  3240. source: "./media/characters/talan/dick-bottom.svg"
  3241. }
  3242. },
  3243. dickTop: {
  3244. height: math.unit(0.621, "meter"),
  3245. name: "Dick (Top)",
  3246. image: {
  3247. source: "./media/characters/talan/dick-top.svg"
  3248. }
  3249. },
  3250. dickSide: {
  3251. height: math.unit(0.305, "meter"),
  3252. name: "Dick (Side)",
  3253. image: {
  3254. source: "./media/characters/talan/dick-side.svg"
  3255. }
  3256. },
  3257. dickFront: {
  3258. height: math.unit(0.305, "meter"),
  3259. name: "Dick (Front)",
  3260. image: {
  3261. source: "./media/characters/talan/dick-front.svg"
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(4, "meters")
  3269. },
  3270. {
  3271. name: "Macro",
  3272. height: math.unit(100, "meters")
  3273. },
  3274. {
  3275. name: "Megamacro",
  3276. height: math.unit(2, "miles"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Gigamacro",
  3281. height: math.unit(5000, "miles")
  3282. },
  3283. {
  3284. name: "Teramacro",
  3285. height: math.unit(100, "parsecs")
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(90, "kg"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/gael'rathus/front.svg"
  3298. }
  3299. },
  3300. frontAlt: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(90, "kg"),
  3303. name: "Front (alt)",
  3304. image: {
  3305. source: "./media/characters/gael'rathus/front-alt.svg"
  3306. }
  3307. },
  3308. frontAlt2: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(90, "kg"),
  3311. name: "Front (alt 2)",
  3312. image: {
  3313. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3314. }
  3315. }
  3316. },
  3317. [
  3318. {
  3319. name: "Normal",
  3320. height: math.unit(9, "feet"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Large",
  3325. height: math.unit(25, "feet")
  3326. },
  3327. {
  3328. name: "Macro",
  3329. height: math.unit(0.25, "miles")
  3330. },
  3331. {
  3332. name: "Megamacro",
  3333. height: math.unit(10, "miles")
  3334. }
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3339. {
  3340. side: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(140, "kg"),
  3343. name: "Side",
  3344. image: {
  3345. source: "./media/characters/sosha/side.svg",
  3346. bottom: 0.042
  3347. }
  3348. },
  3349. },
  3350. [
  3351. {
  3352. name: "Normal",
  3353. height: math.unit(12, "feet"),
  3354. default: true
  3355. }
  3356. ]
  3357. ))
  3358. characterMakers.push(() => makeCharacter(
  3359. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3360. {
  3361. side: {
  3362. height: math.unit(5 + 5 / 12, "feet"),
  3363. weight: math.unit(170, "kg"),
  3364. name: "Side",
  3365. image: {
  3366. source: "./media/characters/runnola/side.svg",
  3367. extra: 741 / 448,
  3368. bottom: 0.05
  3369. }
  3370. },
  3371. },
  3372. [
  3373. {
  3374. name: "Small",
  3375. height: math.unit(3, "feet")
  3376. },
  3377. {
  3378. name: "Normal",
  3379. height: math.unit(5 + 5 / 12, "feet"),
  3380. default: true
  3381. },
  3382. {
  3383. name: "Big",
  3384. height: math.unit(10, "feet")
  3385. },
  3386. ]
  3387. ))
  3388. characterMakers.push(() => makeCharacter(
  3389. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3390. {
  3391. front: {
  3392. height: math.unit(2, "meter"),
  3393. weight: math.unit(50, "kg"),
  3394. name: "Front",
  3395. image: {
  3396. source: "./media/characters/kurribird/front.svg",
  3397. bottom: 0.015
  3398. }
  3399. },
  3400. frontAlt: {
  3401. height: math.unit(1.5, "meter"),
  3402. weight: math.unit(50, "kg"),
  3403. name: "Front (Alt)",
  3404. image: {
  3405. source: "./media/characters/kurribird/front-alt.svg",
  3406. extra: 1.45
  3407. }
  3408. },
  3409. },
  3410. [
  3411. {
  3412. name: "Normal",
  3413. height: math.unit(7, "feet")
  3414. },
  3415. {
  3416. name: "Big",
  3417. height: math.unit(12, "feet"),
  3418. default: true
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(1500, "feet")
  3423. },
  3424. {
  3425. name: "Megamacro",
  3426. height: math.unit(2, "miles")
  3427. }
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3432. {
  3433. front: {
  3434. height: math.unit(2, "meter"),
  3435. weight: math.unit(80, "kg"),
  3436. name: "Front",
  3437. image: {
  3438. source: "./media/characters/elbial/front.svg",
  3439. extra: 1643 / 1556,
  3440. bottom: 60.2 / 1696
  3441. }
  3442. },
  3443. side: {
  3444. height: math.unit(2, "meter"),
  3445. weight: math.unit(80, "kg"),
  3446. name: "Side",
  3447. image: {
  3448. source: "./media/characters/elbial/side.svg",
  3449. extra: 1601/1528,
  3450. bottom: 97/1698
  3451. }
  3452. },
  3453. back: {
  3454. height: math.unit(2, "meter"),
  3455. weight: math.unit(80, "kg"),
  3456. name: "Back",
  3457. image: {
  3458. source: "./media/characters/elbial/back.svg",
  3459. extra: 1653/1569,
  3460. bottom: 20/1673
  3461. }
  3462. },
  3463. frontDressed: {
  3464. height: math.unit(2, "meter"),
  3465. weight: math.unit(80, "kg"),
  3466. name: "Front (Dressed)",
  3467. image: {
  3468. source: "./media/characters/elbial/front-dressed.svg",
  3469. extra: 1638/1569,
  3470. bottom: 70/1708
  3471. }
  3472. },
  3473. genitals: {
  3474. height: math.unit(2 / 3.367, "meter"),
  3475. name: "Genitals",
  3476. image: {
  3477. source: "./media/characters/elbial/genitals.svg"
  3478. }
  3479. },
  3480. },
  3481. [
  3482. {
  3483. name: "Large",
  3484. height: math.unit(100, "feet")
  3485. },
  3486. {
  3487. name: "Macro",
  3488. height: math.unit(500, "feet"),
  3489. default: true
  3490. },
  3491. {
  3492. name: "Megamacro",
  3493. height: math.unit(10, "miles")
  3494. },
  3495. {
  3496. name: "Gigamacro",
  3497. height: math.unit(25000, "miles")
  3498. },
  3499. {
  3500. name: "Full-Size",
  3501. height: math.unit(8000000, "gigaparsecs")
  3502. }
  3503. ]
  3504. ))
  3505. characterMakers.push(() => makeCharacter(
  3506. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3507. {
  3508. front: {
  3509. height: math.unit(2, "meter"),
  3510. weight: math.unit(60, "kg"),
  3511. name: "Front",
  3512. image: {
  3513. source: "./media/characters/noah/front.svg"
  3514. }
  3515. },
  3516. talons: {
  3517. height: math.unit(0.315, "meter"),
  3518. name: "Talons",
  3519. image: {
  3520. source: "./media/characters/noah/talons.svg"
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Large",
  3527. height: math.unit(50, "feet")
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(750, "feet"),
  3532. default: true
  3533. },
  3534. {
  3535. name: "Megamacro",
  3536. height: math.unit(50, "miles")
  3537. },
  3538. {
  3539. name: "Gigamacro",
  3540. height: math.unit(100000, "miles")
  3541. },
  3542. {
  3543. name: "Full-Size",
  3544. height: math.unit(3000000000, "miles")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(80, "kg"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/natalya/front.svg"
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(80, "kg"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/natalya/back.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Normal",
  3571. height: math.unit(150, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Megamacro",
  3576. height: math.unit(5, "miles")
  3577. },
  3578. {
  3579. name: "Full-Size",
  3580. height: math.unit(600, "kiloparsecs")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(50, "kg"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/erestrebah/front.svg",
  3593. extra: 1262/1162,
  3594. bottom: 96/1358
  3595. }
  3596. },
  3597. back: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(50, "kg"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/erestrebah/back.svg",
  3603. extra: 1257/1139,
  3604. bottom: 13/1270
  3605. }
  3606. },
  3607. wing: {
  3608. height: math.unit(2, "meter"),
  3609. weight: math.unit(50, "kg"),
  3610. name: "Wing",
  3611. image: {
  3612. source: "./media/characters/erestrebah/wing.svg",
  3613. extra: 1262/1162,
  3614. bottom: 96/1358
  3615. }
  3616. },
  3617. mouth: {
  3618. height: math.unit(0.39, "feet"),
  3619. name: "Mouth",
  3620. image: {
  3621. source: "./media/characters/erestrebah/mouth.svg"
  3622. }
  3623. }
  3624. },
  3625. [
  3626. {
  3627. name: "Normal",
  3628. height: math.unit(10, "feet")
  3629. },
  3630. {
  3631. name: "Large",
  3632. height: math.unit(50, "feet"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Macro",
  3637. height: math.unit(300, "feet")
  3638. },
  3639. {
  3640. name: "Macro+",
  3641. height: math.unit(750, "feet")
  3642. },
  3643. {
  3644. name: "Megamacro",
  3645. height: math.unit(3, "miles")
  3646. }
  3647. ]
  3648. ))
  3649. characterMakers.push(() => makeCharacter(
  3650. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3651. {
  3652. front: {
  3653. height: math.unit(2, "meter"),
  3654. weight: math.unit(80, "kg"),
  3655. name: "Front",
  3656. image: {
  3657. source: "./media/characters/jennifer/front.svg",
  3658. bottom: 0.11,
  3659. extra: 1.16
  3660. }
  3661. },
  3662. frontAlt: {
  3663. height: math.unit(2, "meter"),
  3664. weight: math.unit(80, "kg"),
  3665. name: "Front (Alt)",
  3666. image: {
  3667. source: "./media/characters/jennifer/front-alt.svg"
  3668. }
  3669. }
  3670. },
  3671. [
  3672. {
  3673. name: "Canon Height",
  3674. height: math.unit(120, "feet"),
  3675. default: true
  3676. },
  3677. {
  3678. name: "Macro+",
  3679. height: math.unit(300, "feet")
  3680. },
  3681. {
  3682. name: "Megamacro",
  3683. height: math.unit(20000, "feet")
  3684. }
  3685. ]
  3686. ))
  3687. characterMakers.push(() => makeCharacter(
  3688. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3689. {
  3690. front: {
  3691. height: math.unit(2, "meter"),
  3692. weight: math.unit(50, "kg"),
  3693. name: "Front",
  3694. image: {
  3695. source: "./media/characters/kalista/front.svg",
  3696. extra: 1314/1145,
  3697. bottom: 101/1415
  3698. }
  3699. },
  3700. back: {
  3701. height: math.unit(2, "meter"),
  3702. weight: math.unit(50, "kg"),
  3703. name: "Back",
  3704. image: {
  3705. source: "./media/characters/kalista/back.svg",
  3706. extra: 1366 / 1156,
  3707. bottom: 33.9 / 1362.78
  3708. }
  3709. }
  3710. },
  3711. [
  3712. {
  3713. name: "Uncomfortably Small",
  3714. height: math.unit(10, "feet")
  3715. },
  3716. {
  3717. name: "Small",
  3718. height: math.unit(30, "feet")
  3719. },
  3720. {
  3721. name: "Macro",
  3722. height: math.unit(100, "feet"),
  3723. default: true
  3724. },
  3725. {
  3726. name: "Macro+",
  3727. height: math.unit(2000, "feet")
  3728. },
  3729. {
  3730. name: "True Form",
  3731. height: math.unit(8924, "miles")
  3732. }
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(2, "meter"),
  3740. weight: math.unit(120, "kg"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/ggv/front.svg"
  3744. }
  3745. },
  3746. side: {
  3747. height: math.unit(2, "meter"),
  3748. weight: math.unit(120, "kg"),
  3749. name: "Side",
  3750. image: {
  3751. source: "./media/characters/ggv/side.svg"
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Extremely Puny",
  3758. height: math.unit(9 + 5 / 12, "feet")
  3759. },
  3760. {
  3761. name: "Horribly Small",
  3762. height: math.unit(47.7, "miles"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Reasonably Sized",
  3767. height: math.unit(25000, "parsecs")
  3768. },
  3769. {
  3770. name: "Slightly Uncompressed",
  3771. height: math.unit(7.77e31, "parsecs")
  3772. },
  3773. {
  3774. name: "Omniversal",
  3775. height: math.unit(1e300, "meters")
  3776. },
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(75, "lb"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/napalm/front.svg"
  3788. }
  3789. },
  3790. back: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(75, "lb"),
  3793. name: "Back",
  3794. image: {
  3795. source: "./media/characters/napalm/back.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Standard",
  3802. height: math.unit(55, "feet"),
  3803. default: true
  3804. }
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(7 + 5 / 6, "feet"),
  3812. weight: math.unit(325, "lb"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/asana/front.svg",
  3816. extra: 1133 / 1060,
  3817. bottom: 15.2 / 1148.6
  3818. }
  3819. },
  3820. back: {
  3821. height: math.unit(7 + 5 / 6, "feet"),
  3822. weight: math.unit(325, "lb"),
  3823. name: "Back",
  3824. image: {
  3825. source: "./media/characters/asana/back.svg",
  3826. extra: 1114 / 1043,
  3827. bottom: 5 / 1120
  3828. }
  3829. },
  3830. dressedDark: {
  3831. height: math.unit(7 + 5 / 6, "feet"),
  3832. weight: math.unit(325, "lb"),
  3833. name: "Dressed (Dark)",
  3834. image: {
  3835. source: "./media/characters/asana/dressed-dark.svg",
  3836. extra: 1133 / 1060,
  3837. bottom: 15.2 / 1148.6
  3838. }
  3839. },
  3840. dressedLight: {
  3841. height: math.unit(7 + 5 / 6, "feet"),
  3842. weight: math.unit(325, "lb"),
  3843. name: "Dressed (Light)",
  3844. image: {
  3845. source: "./media/characters/asana/dressed-light.svg",
  3846. extra: 1133 / 1060,
  3847. bottom: 15.2 / 1148.6
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Standard",
  3854. height: math.unit(7 + 5 / 6, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Large",
  3859. height: math.unit(10, "meters")
  3860. },
  3861. {
  3862. name: "Macro",
  3863. height: math.unit(2500, "meters")
  3864. },
  3865. {
  3866. name: "Megamacro",
  3867. height: math.unit(5e6, "meters")
  3868. },
  3869. {
  3870. name: "Examacro",
  3871. height: math.unit(5e12, "lightyears")
  3872. },
  3873. {
  3874. name: "Max Size",
  3875. height: math.unit(1e31, "lightyears")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(2, "meter"),
  3884. weight: math.unit(60, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/ebony/front.svg",
  3888. bottom: 0.03,
  3889. extra: 1045 / 810 + 0.03
  3890. }
  3891. },
  3892. side: {
  3893. height: math.unit(2, "meter"),
  3894. weight: math.unit(60, "kg"),
  3895. name: "Side",
  3896. image: {
  3897. source: "./media/characters/ebony/side.svg",
  3898. bottom: 0.03,
  3899. extra: 1045 / 810 + 0.03
  3900. }
  3901. },
  3902. back: {
  3903. height: math.unit(2, "meter"),
  3904. weight: math.unit(60, "kg"),
  3905. name: "Back",
  3906. image: {
  3907. source: "./media/characters/ebony/back.svg",
  3908. bottom: 0.01,
  3909. extra: 1045 / 810 + 0.01
  3910. }
  3911. },
  3912. },
  3913. [
  3914. // TODO check why I did this lol
  3915. {
  3916. name: "Standard",
  3917. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3918. default: true
  3919. },
  3920. {
  3921. name: "Macro",
  3922. height: math.unit(200, "feet")
  3923. },
  3924. {
  3925. name: "Gigamacro",
  3926. height: math.unit(13000, "km")
  3927. }
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(6, "feet"),
  3935. weight: math.unit(175, "lb"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/mountain/front.svg",
  3939. extra: 972 / 955,
  3940. bottom: 64 / 1036.6
  3941. }
  3942. },
  3943. back: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(175, "lb"),
  3946. name: "Back",
  3947. image: {
  3948. source: "./media/characters/mountain/back.svg",
  3949. extra: 970 / 950,
  3950. bottom: 28.25 / 999
  3951. }
  3952. },
  3953. },
  3954. [
  3955. {
  3956. name: "Large",
  3957. height: math.unit(20, "meters")
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(300, "meters")
  3962. },
  3963. {
  3964. name: "Gigamacro",
  3965. height: math.unit(10000, "km"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Examacro",
  3970. height: math.unit(10e9, "lightyears")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(8, "feet"),
  3979. weight: math.unit(500, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/rick/front.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Normal",
  3989. height: math.unit(8, "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Macro",
  3994. height: math.unit(5, "km")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(8, "feet"),
  4003. weight: math.unit(120, "lb"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/ona/front.svg"
  4007. }
  4008. },
  4009. frontAlt: {
  4010. height: math.unit(8, "feet"),
  4011. weight: math.unit(120, "lb"),
  4012. name: "Front (Alt)",
  4013. image: {
  4014. source: "./media/characters/ona/front-alt.svg"
  4015. }
  4016. },
  4017. back: {
  4018. height: math.unit(8, "feet"),
  4019. weight: math.unit(120, "lb"),
  4020. name: "Back",
  4021. image: {
  4022. source: "./media/characters/ona/back.svg"
  4023. }
  4024. },
  4025. foot: {
  4026. height: math.unit(1.1, "feet"),
  4027. name: "Foot",
  4028. image: {
  4029. source: "./media/characters/ona/foot.svg"
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Megamacro",
  4036. height: math.unit(70, "km"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Gigamacro",
  4041. height: math.unit(681818, "miles")
  4042. },
  4043. {
  4044. name: "Examacro",
  4045. height: math.unit(3800000, "lightyears")
  4046. },
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(12, "feet"),
  4054. weight: math.unit(3000, "lb"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/mech/front.svg",
  4058. extra: 2900 / 2770,
  4059. bottom: 110 / 3010
  4060. }
  4061. },
  4062. back: {
  4063. height: math.unit(12, "feet"),
  4064. weight: math.unit(3000, "lb"),
  4065. name: "Back",
  4066. image: {
  4067. source: "./media/characters/mech/back.svg",
  4068. extra: 3011 / 2890,
  4069. bottom: 94 / 3105
  4070. }
  4071. },
  4072. maw: {
  4073. height: math.unit(3.07, "feet"),
  4074. name: "Maw",
  4075. image: {
  4076. source: "./media/characters/mech/maw.svg"
  4077. }
  4078. },
  4079. head: {
  4080. height: math.unit(2.82, "feet"),
  4081. name: "Head",
  4082. image: {
  4083. source: "./media/characters/mech/head.svg"
  4084. }
  4085. },
  4086. dick: {
  4087. height: math.unit(1.43, "feet"),
  4088. name: "Dick",
  4089. image: {
  4090. source: "./media/characters/mech/dick.svg"
  4091. }
  4092. },
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(12, "feet")
  4098. },
  4099. {
  4100. name: "Macro",
  4101. height: math.unit(300, "feet"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Macro+",
  4106. height: math.unit(1500, "feet")
  4107. },
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(1.3, "meter"),
  4115. weight: math.unit(30, "kg"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/gregory/front.svg",
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(1.3, "meter"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(20, "meter")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(2.8, "meter"),
  4139. weight: math.unit(200, "kg"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/elory/front.svg",
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(2.8, "meter"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Macro",
  4154. height: math.unit(38, "meter")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4160. {
  4161. front: {
  4162. height: math.unit(470, "feet"),
  4163. weight: math.unit(924, "tons"),
  4164. name: "Front",
  4165. image: {
  4166. source: "./media/characters/angelpatamon/front.svg",
  4167. }
  4168. }
  4169. },
  4170. [
  4171. {
  4172. name: "Normal",
  4173. height: math.unit(470, "feet"),
  4174. default: true
  4175. },
  4176. {
  4177. name: "Deity Size I",
  4178. height: math.unit(28651.2, "km")
  4179. },
  4180. {
  4181. name: "Deity Size II",
  4182. height: math.unit(171907.2, "km")
  4183. }
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4188. {
  4189. side: {
  4190. height: math.unit(7.2, "meter"),
  4191. weight: math.unit(8.2, "tons"),
  4192. name: "Side",
  4193. image: {
  4194. source: "./media/characters/cryae/side.svg",
  4195. extra: 3500 / 1500
  4196. }
  4197. }
  4198. },
  4199. [
  4200. {
  4201. name: "Normal",
  4202. height: math.unit(7.2, "meter"),
  4203. default: true
  4204. }
  4205. ]
  4206. ))
  4207. characterMakers.push(() => makeCharacter(
  4208. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4209. {
  4210. front: {
  4211. height: math.unit(6, "feet"),
  4212. weight: math.unit(175, "lb"),
  4213. name: "Front",
  4214. image: {
  4215. source: "./media/characters/xera/front.svg",
  4216. extra: 2377 / 1972,
  4217. bottom: 75.5 / 2452
  4218. }
  4219. },
  4220. side: {
  4221. height: math.unit(6, "feet"),
  4222. weight: math.unit(175, "lb"),
  4223. name: "Side",
  4224. image: {
  4225. source: "./media/characters/xera/side.svg",
  4226. extra: 2345 / 2019,
  4227. bottom: 39.7 / 2384
  4228. }
  4229. },
  4230. back: {
  4231. height: math.unit(6, "feet"),
  4232. weight: math.unit(175, "lb"),
  4233. name: "Back",
  4234. image: {
  4235. source: "./media/characters/xera/back.svg",
  4236. extra: 2095 / 1984,
  4237. bottom: 67 / 2166
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "Small",
  4244. height: math.unit(10, "feet")
  4245. },
  4246. {
  4247. name: "Macro",
  4248. height: math.unit(500, "meters"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Macro+",
  4253. height: math.unit(10, "km")
  4254. },
  4255. {
  4256. name: "Gigamacro",
  4257. height: math.unit(25000, "km")
  4258. },
  4259. {
  4260. name: "Teramacro",
  4261. height: math.unit(3e6, "km")
  4262. }
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4267. {
  4268. front: {
  4269. height: math.unit(6, "feet"),
  4270. weight: math.unit(175, "lb"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/nebula/front.svg",
  4274. extra: 2566 / 2362,
  4275. bottom: 81 / 2644
  4276. }
  4277. }
  4278. },
  4279. [
  4280. {
  4281. name: "Small",
  4282. height: math.unit(4.5, "meters")
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(1500, "meters"),
  4287. default: true
  4288. },
  4289. {
  4290. name: "Megamacro",
  4291. height: math.unit(150, "km")
  4292. },
  4293. {
  4294. name: "Gigamacro",
  4295. height: math.unit(27000, "km")
  4296. }
  4297. ]
  4298. ))
  4299. characterMakers.push(() => makeCharacter(
  4300. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4301. {
  4302. front: {
  4303. height: math.unit(6, "feet"),
  4304. weight: math.unit(225, "lb"),
  4305. name: "Front",
  4306. image: {
  4307. source: "./media/characters/abysgar/front.svg"
  4308. }
  4309. }
  4310. },
  4311. [
  4312. {
  4313. name: "Small",
  4314. height: math.unit(4.5, "meters")
  4315. },
  4316. {
  4317. name: "Macro",
  4318. height: math.unit(1250, "meters"),
  4319. default: true
  4320. },
  4321. {
  4322. name: "Megamacro",
  4323. height: math.unit(125, "km")
  4324. },
  4325. {
  4326. name: "Gigamacro",
  4327. height: math.unit(26000, "km")
  4328. }
  4329. ]
  4330. ))
  4331. characterMakers.push(() => makeCharacter(
  4332. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4333. {
  4334. front: {
  4335. height: math.unit(6, "feet"),
  4336. weight: math.unit(180, "lb"),
  4337. name: "Front",
  4338. image: {
  4339. source: "./media/characters/yakuz/front.svg"
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Small",
  4346. height: math.unit(5, "meters")
  4347. },
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(1500, "meters"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Megamacro",
  4355. height: math.unit(200, "km")
  4356. },
  4357. {
  4358. name: "Gigamacro",
  4359. height: math.unit(100000, "km")
  4360. }
  4361. ]
  4362. ))
  4363. characterMakers.push(() => makeCharacter(
  4364. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4365. {
  4366. front: {
  4367. height: math.unit(6, "feet"),
  4368. weight: math.unit(175, "lb"),
  4369. name: "Front",
  4370. image: {
  4371. source: "./media/characters/mirova/front.svg",
  4372. extra: 3334 / 3071,
  4373. bottom: 42 / 3375.6
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Small",
  4380. height: math.unit(5, "meters")
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(900, "meters"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Megamacro",
  4389. height: math.unit(135, "km")
  4390. },
  4391. {
  4392. name: "Gigamacro",
  4393. height: math.unit(20000, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4399. {
  4400. side: {
  4401. height: math.unit(28.35, "feet"),
  4402. weight: math.unit(99.75, "tons"),
  4403. name: "Side",
  4404. image: {
  4405. source: "./media/characters/asana-mech/side.svg",
  4406. extra: 923 / 699,
  4407. bottom: 50 / 975
  4408. }
  4409. },
  4410. chaingun: {
  4411. height: math.unit(7, "feet"),
  4412. weight: math.unit(2400, "lb"),
  4413. name: "Chaingun",
  4414. image: {
  4415. source: "./media/characters/asana-mech/chaingun.svg"
  4416. }
  4417. },
  4418. laser: {
  4419. height: math.unit(7.12, "feet"),
  4420. weight: math.unit(2000, "lb"),
  4421. name: "Laser",
  4422. image: {
  4423. source: "./media/characters/asana-mech/laser.svg"
  4424. }
  4425. },
  4426. },
  4427. [
  4428. {
  4429. name: "Normal",
  4430. height: math.unit(28.35, "feet"),
  4431. default: true
  4432. },
  4433. {
  4434. name: "Macro",
  4435. height: math.unit(2500, "feet")
  4436. },
  4437. {
  4438. name: "Megamacro",
  4439. height: math.unit(25, "miles")
  4440. },
  4441. {
  4442. name: "Examacro",
  4443. height: math.unit(6e8, "lightyears")
  4444. },
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(5, "meters"),
  4452. weight: math.unit(1000, "kg"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/asche/front.svg",
  4456. extra: 1258 / 1190,
  4457. bottom: 47 / 1305
  4458. }
  4459. },
  4460. frontUnderwear: {
  4461. height: math.unit(5, "meters"),
  4462. weight: math.unit(1000, "kg"),
  4463. name: "Front (Underwear)",
  4464. image: {
  4465. source: "./media/characters/asche/front-underwear.svg",
  4466. extra: 1258 / 1190,
  4467. bottom: 47 / 1305
  4468. }
  4469. },
  4470. frontDressed: {
  4471. height: math.unit(5, "meters"),
  4472. weight: math.unit(1000, "kg"),
  4473. name: "Front (Dressed)",
  4474. image: {
  4475. source: "./media/characters/asche/front-dressed.svg",
  4476. extra: 1258 / 1190,
  4477. bottom: 47 / 1305
  4478. }
  4479. },
  4480. frontArmor: {
  4481. height: math.unit(5, "meters"),
  4482. weight: math.unit(1000, "kg"),
  4483. name: "Front (Armored)",
  4484. image: {
  4485. source: "./media/characters/asche/front-armored.svg",
  4486. extra: 1374 / 1308,
  4487. bottom: 23 / 1397
  4488. }
  4489. },
  4490. mp724: {
  4491. height: math.unit(0.96, "meters"),
  4492. weight: math.unit(38, "kg"),
  4493. name: "H&K MP724",
  4494. image: {
  4495. source: "./media/characters/asche/h&k-mp724.svg"
  4496. }
  4497. },
  4498. side: {
  4499. height: math.unit(5, "meters"),
  4500. weight: math.unit(1000, "kg"),
  4501. name: "Side",
  4502. image: {
  4503. source: "./media/characters/asche/side.svg",
  4504. extra: 1717 / 1609,
  4505. bottom: 0.005
  4506. }
  4507. },
  4508. back: {
  4509. height: math.unit(5, "meters"),
  4510. weight: math.unit(1000, "kg"),
  4511. name: "Back",
  4512. image: {
  4513. source: "./media/characters/asche/back.svg",
  4514. extra: 1570 / 1501
  4515. }
  4516. },
  4517. },
  4518. [
  4519. {
  4520. name: "DEFCON 5",
  4521. height: math.unit(5, "meters")
  4522. },
  4523. {
  4524. name: "DEFCON 4",
  4525. height: math.unit(500, "meters"),
  4526. default: true
  4527. },
  4528. {
  4529. name: "DEFCON 3",
  4530. height: math.unit(5, "km")
  4531. },
  4532. {
  4533. name: "DEFCON 2",
  4534. height: math.unit(500, "km")
  4535. },
  4536. {
  4537. name: "DEFCON 1",
  4538. height: math.unit(500000, "km")
  4539. },
  4540. {
  4541. name: "DEFCON 0",
  4542. height: math.unit(3, "gigaparsecs")
  4543. },
  4544. ]
  4545. ))
  4546. characterMakers.push(() => makeCharacter(
  4547. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4548. {
  4549. front: {
  4550. height: math.unit(2, "meters"),
  4551. weight: math.unit(76, "kg"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/gale/front.svg"
  4555. }
  4556. },
  4557. frontAlt1: {
  4558. height: math.unit(2, "meters"),
  4559. weight: math.unit(76, "kg"),
  4560. name: "Front (Alt 1)",
  4561. image: {
  4562. source: "./media/characters/gale/front-alt-1.svg"
  4563. }
  4564. },
  4565. frontAlt2: {
  4566. height: math.unit(2, "meters"),
  4567. weight: math.unit(76, "kg"),
  4568. name: "Front (Alt 2)",
  4569. image: {
  4570. source: "./media/characters/gale/front-alt-2.svg"
  4571. }
  4572. },
  4573. },
  4574. [
  4575. {
  4576. name: "Normal",
  4577. height: math.unit(7, "feet")
  4578. },
  4579. {
  4580. name: "Macro",
  4581. height: math.unit(150, "feet"),
  4582. default: true
  4583. },
  4584. {
  4585. name: "Macro+",
  4586. height: math.unit(300, "feet")
  4587. },
  4588. ]
  4589. ))
  4590. characterMakers.push(() => makeCharacter(
  4591. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4592. {
  4593. front: {
  4594. height: math.unit(5 + 10/12, "feet"),
  4595. weight: math.unit(67, "kg"),
  4596. name: "Front",
  4597. image: {
  4598. source: "./media/characters/draylen/front.svg",
  4599. extra: 832/777,
  4600. bottom: 85/917
  4601. }
  4602. }
  4603. },
  4604. [
  4605. {
  4606. name: "Normal",
  4607. height: math.unit(5 + 10/12, "feet")
  4608. },
  4609. {
  4610. name: "Macro",
  4611. height: math.unit(150, "feet"),
  4612. default: true
  4613. }
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4618. {
  4619. front: {
  4620. height: math.unit(7 + 9 / 12, "feet"),
  4621. weight: math.unit(379, "lbs"),
  4622. name: "Front",
  4623. image: {
  4624. source: "./media/characters/chez/front.svg"
  4625. }
  4626. },
  4627. side: {
  4628. height: math.unit(7 + 9 / 12, "feet"),
  4629. weight: math.unit(379, "lbs"),
  4630. name: "Side",
  4631. image: {
  4632. source: "./media/characters/chez/side.svg"
  4633. }
  4634. }
  4635. },
  4636. [
  4637. {
  4638. name: "Normal",
  4639. height: math.unit(7 + 9 / 12, "feet"),
  4640. default: true
  4641. },
  4642. {
  4643. name: "God King",
  4644. height: math.unit(9750000, "meters")
  4645. }
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4650. {
  4651. front: {
  4652. height: math.unit(6, "feet"),
  4653. weight: math.unit(275, "lbs"),
  4654. name: "Front",
  4655. image: {
  4656. source: "./media/characters/kaylum/front.svg",
  4657. bottom: 0.01,
  4658. extra: 1166 / 1031
  4659. }
  4660. },
  4661. frontWingless: {
  4662. height: math.unit(6, "feet"),
  4663. weight: math.unit(275, "lbs"),
  4664. name: "Front (Wingless)",
  4665. image: {
  4666. source: "./media/characters/kaylum/front-wingless.svg",
  4667. bottom: 0.01,
  4668. extra: 1117 / 1031
  4669. }
  4670. }
  4671. },
  4672. [
  4673. {
  4674. name: "Normal",
  4675. height: math.unit(3.05, "meters")
  4676. },
  4677. {
  4678. name: "Master",
  4679. height: math.unit(5.5, "meters")
  4680. },
  4681. {
  4682. name: "Rampage",
  4683. height: math.unit(19, "meters")
  4684. },
  4685. {
  4686. name: "Macro Lite",
  4687. height: math.unit(37, "meters")
  4688. },
  4689. {
  4690. name: "Hyper Predator",
  4691. height: math.unit(61, "meters")
  4692. },
  4693. {
  4694. name: "Macro",
  4695. height: math.unit(138, "meters"),
  4696. default: true
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(150, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/geta/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Micro",
  4715. height: math.unit(3, "inches"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Normal",
  4720. height: math.unit(5 + 5 / 12, "feet")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(300, "lbs"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/tyrnn/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Main Height",
  4739. height: math.unit(355, "feet"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Fave. Height",
  4744. height: math.unit(2400, "feet")
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(300, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/appledectomy/front.svg"
  4757. }
  4758. }
  4759. },
  4760. [
  4761. {
  4762. name: "Macro",
  4763. height: math.unit(2500, "feet")
  4764. },
  4765. {
  4766. name: "Megamacro",
  4767. height: math.unit(50, "miles"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Gigamacro",
  4772. height: math.unit(5000, "miles")
  4773. },
  4774. {
  4775. name: "Teramacro",
  4776. height: math.unit(250000, "miles")
  4777. },
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(200, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/vulpes/front.svg",
  4789. extra: 573 / 543,
  4790. bottom: 0.033
  4791. }
  4792. },
  4793. side: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(200, "lbs"),
  4796. name: "Side",
  4797. image: {
  4798. source: "./media/characters/vulpes/side.svg",
  4799. extra: 577 / 549,
  4800. bottom: 11 / 588
  4801. }
  4802. },
  4803. back: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(200, "lbs"),
  4806. name: "Back",
  4807. image: {
  4808. source: "./media/characters/vulpes/back.svg",
  4809. extra: 573 / 549,
  4810. bottom: 20 / 593
  4811. }
  4812. },
  4813. feet: {
  4814. height: math.unit(1.276, "feet"),
  4815. name: "Feet",
  4816. image: {
  4817. source: "./media/characters/vulpes/feet.svg"
  4818. }
  4819. },
  4820. maw: {
  4821. height: math.unit(1.18, "feet"),
  4822. name: "Maw",
  4823. image: {
  4824. source: "./media/characters/vulpes/maw.svg"
  4825. }
  4826. },
  4827. },
  4828. [
  4829. {
  4830. name: "Micro",
  4831. height: math.unit(2, "inches")
  4832. },
  4833. {
  4834. name: "Normal",
  4835. height: math.unit(6.3, "feet")
  4836. },
  4837. {
  4838. name: "Macro",
  4839. height: math.unit(850, "feet")
  4840. },
  4841. {
  4842. name: "Megamacro",
  4843. height: math.unit(7500, "feet"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Gigamacro",
  4848. height: math.unit(570000, "miles")
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(210, "lbs"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/rain-fallen/front.svg"
  4861. }
  4862. },
  4863. side: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(210, "lbs"),
  4866. name: "Side",
  4867. image: {
  4868. source: "./media/characters/rain-fallen/side.svg"
  4869. }
  4870. },
  4871. back: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(210, "lbs"),
  4874. name: "Back",
  4875. image: {
  4876. source: "./media/characters/rain-fallen/back.svg"
  4877. }
  4878. },
  4879. feral: {
  4880. height: math.unit(9, "feet"),
  4881. weight: math.unit(700, "lbs"),
  4882. name: "Feral",
  4883. image: {
  4884. source: "./media/characters/rain-fallen/feral.svg"
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Meddling with Mortals",
  4891. height: math.unit(8 + 8/12, "feet")
  4892. },
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(5, "meter")
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(150, "meter"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Megamacro",
  4904. height: math.unit(278e6, "meter")
  4905. },
  4906. {
  4907. name: "Gigamacro",
  4908. height: math.unit(2e9, "meter")
  4909. },
  4910. {
  4911. name: "Teramacro",
  4912. height: math.unit(8e12, "meter")
  4913. },
  4914. {
  4915. name: "Devourer",
  4916. height: math.unit(14, "zettameters")
  4917. },
  4918. {
  4919. name: "Scarlet King",
  4920. height: math.unit(18, "yottameters")
  4921. },
  4922. {
  4923. name: "Void",
  4924. height: math.unit(1e88, "yottameters")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4930. {
  4931. standing: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(180, "lbs"),
  4934. name: "Standing",
  4935. image: {
  4936. source: "./media/characters/zaakira/standing.svg",
  4937. extra: 1599/1504,
  4938. bottom: 39/1638
  4939. }
  4940. },
  4941. laying: {
  4942. height: math.unit(3, "feet"),
  4943. weight: math.unit(180, "lbs"),
  4944. name: "Laying",
  4945. image: {
  4946. source: "./media/characters/zaakira/laying.svg"
  4947. }
  4948. },
  4949. },
  4950. [
  4951. {
  4952. name: "Normal",
  4953. height: math.unit(12, "feet")
  4954. },
  4955. {
  4956. name: "Macro",
  4957. height: math.unit(279, "feet"),
  4958. default: true
  4959. }
  4960. ]
  4961. ))
  4962. characterMakers.push(() => makeCharacter(
  4963. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4964. {
  4965. femSfw: {
  4966. height: math.unit(8, "feet"),
  4967. weight: math.unit(350, "lb"),
  4968. name: "Fem",
  4969. image: {
  4970. source: "./media/characters/sigvald/fem-sfw.svg",
  4971. extra: 182 / 164,
  4972. bottom: 8.7 / 190.5
  4973. }
  4974. },
  4975. femNsfw: {
  4976. height: math.unit(8, "feet"),
  4977. weight: math.unit(350, "lb"),
  4978. name: "Fem (NSFW)",
  4979. image: {
  4980. source: "./media/characters/sigvald/fem-nsfw.svg",
  4981. extra: 182 / 164,
  4982. bottom: 8.7 / 190.5
  4983. }
  4984. },
  4985. maleNsfw: {
  4986. height: math.unit(8, "feet"),
  4987. weight: math.unit(350, "lb"),
  4988. name: "Male (NSFW)",
  4989. image: {
  4990. source: "./media/characters/sigvald/male-nsfw.svg",
  4991. extra: 182 / 164,
  4992. bottom: 8.7 / 190.5
  4993. }
  4994. },
  4995. hermNsfw: {
  4996. height: math.unit(8, "feet"),
  4997. weight: math.unit(350, "lb"),
  4998. name: "Herm (NSFW)",
  4999. image: {
  5000. source: "./media/characters/sigvald/herm-nsfw.svg",
  5001. extra: 182 / 164,
  5002. bottom: 8.7 / 190.5
  5003. }
  5004. },
  5005. dick: {
  5006. height: math.unit(2.36, "feet"),
  5007. name: "Dick",
  5008. image: {
  5009. source: "./media/characters/sigvald/dick.svg"
  5010. }
  5011. },
  5012. eye: {
  5013. height: math.unit(0.31, "feet"),
  5014. name: "Eye",
  5015. image: {
  5016. source: "./media/characters/sigvald/eye.svg"
  5017. }
  5018. },
  5019. mouth: {
  5020. height: math.unit(0.92, "feet"),
  5021. name: "Mouth",
  5022. image: {
  5023. source: "./media/characters/sigvald/mouth.svg"
  5024. }
  5025. },
  5026. paws: {
  5027. height: math.unit(2.2, "feet"),
  5028. name: "Paws",
  5029. image: {
  5030. source: "./media/characters/sigvald/paws.svg"
  5031. }
  5032. }
  5033. },
  5034. [
  5035. {
  5036. name: "Normal",
  5037. height: math.unit(8, "feet")
  5038. },
  5039. {
  5040. name: "Large",
  5041. height: math.unit(12, "feet")
  5042. },
  5043. {
  5044. name: "Larger",
  5045. height: math.unit(20, "feet")
  5046. },
  5047. {
  5048. name: "Macro",
  5049. height: math.unit(150, "feet")
  5050. },
  5051. {
  5052. name: "Macro+",
  5053. height: math.unit(200, "feet"),
  5054. default: true
  5055. },
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5060. {
  5061. side: {
  5062. height: math.unit(12, "feet"),
  5063. weight: math.unit(2000, "kg"),
  5064. name: "Side",
  5065. image: {
  5066. source: "./media/characters/scott/side.svg",
  5067. extra: 754 / 724,
  5068. bottom: 0.069
  5069. }
  5070. },
  5071. upright: {
  5072. height: math.unit(12, "feet"),
  5073. weight: math.unit(2000, "kg"),
  5074. name: "Upright",
  5075. image: {
  5076. source: "./media/characters/scott/upright.svg",
  5077. extra: 3881 / 3722,
  5078. bottom: 0.05
  5079. }
  5080. },
  5081. },
  5082. [
  5083. {
  5084. name: "Normal",
  5085. height: math.unit(12, "feet"),
  5086. default: true
  5087. },
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5092. {
  5093. side: {
  5094. height: math.unit(8, "meters"),
  5095. weight: math.unit(84755, "lbs"),
  5096. name: "Side",
  5097. image: {
  5098. source: "./media/characters/tobias/side.svg",
  5099. extra: 1474 / 1096,
  5100. bottom: 38.9 / 1513.1235
  5101. }
  5102. },
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(8, "meters"),
  5108. default: true
  5109. },
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5114. {
  5115. front: {
  5116. height: math.unit(5.5, "feet"),
  5117. weight: math.unit(400, "lbs"),
  5118. name: "Front",
  5119. image: {
  5120. source: "./media/characters/kieran/front.svg",
  5121. extra: 2694 / 2364,
  5122. bottom: 217 / 2908
  5123. }
  5124. },
  5125. side: {
  5126. height: math.unit(5.5, "feet"),
  5127. weight: math.unit(400, "lbs"),
  5128. name: "Side",
  5129. image: {
  5130. source: "./media/characters/kieran/side.svg",
  5131. extra: 875 / 777,
  5132. bottom: 84.6 / 959
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(5.5, "feet"),
  5140. default: true
  5141. },
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5146. {
  5147. side: {
  5148. height: math.unit(2, "meters"),
  5149. weight: math.unit(70, "kg"),
  5150. name: "Side",
  5151. image: {
  5152. source: "./media/characters/sanya/side.svg",
  5153. bottom: 0.02,
  5154. extra: 1.02
  5155. }
  5156. },
  5157. },
  5158. [
  5159. {
  5160. name: "Small",
  5161. height: math.unit(2, "meters")
  5162. },
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(3, "meters")
  5166. },
  5167. {
  5168. name: "Macro",
  5169. height: math.unit(16, "meters"),
  5170. default: true
  5171. },
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5176. {
  5177. front: {
  5178. height: math.unit(2, "meters"),
  5179. weight: math.unit(120, "kg"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/miranda/front.svg",
  5183. extra: 195 / 185,
  5184. bottom: 10.9 / 206.5
  5185. }
  5186. },
  5187. back: {
  5188. height: math.unit(2, "meters"),
  5189. weight: math.unit(120, "kg"),
  5190. name: "Back",
  5191. image: {
  5192. source: "./media/characters/miranda/back.svg",
  5193. extra: 201 / 193,
  5194. bottom: 2.3 / 203.7
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(10, "feet"),
  5202. default: true
  5203. }
  5204. ]
  5205. ))
  5206. characterMakers.push(() => makeCharacter(
  5207. { name: "James", species: ["deer"], tags: ["anthro"] },
  5208. {
  5209. side: {
  5210. height: math.unit(2, "meters"),
  5211. weight: math.unit(100, "kg"),
  5212. name: "Front",
  5213. image: {
  5214. source: "./media/characters/james/front.svg",
  5215. extra: 10 / 8.5
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(8.5, "feet"),
  5223. default: true
  5224. }
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5229. {
  5230. side: {
  5231. height: math.unit(9.5, "feet"),
  5232. weight: math.unit(2500, "lbs"),
  5233. name: "Side",
  5234. image: {
  5235. source: "./media/characters/heather/side.svg"
  5236. }
  5237. },
  5238. },
  5239. [
  5240. {
  5241. name: "Normal",
  5242. height: math.unit(9.5, "feet"),
  5243. default: true
  5244. }
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5249. {
  5250. side: {
  5251. height: math.unit(6.5, "feet"),
  5252. weight: math.unit(400, "lbs"),
  5253. name: "Side",
  5254. image: {
  5255. source: "./media/characters/lukas/side.svg",
  5256. extra: 7.25 / 6.5
  5257. }
  5258. },
  5259. },
  5260. [
  5261. {
  5262. name: "Normal",
  5263. height: math.unit(6.5, "feet"),
  5264. default: true
  5265. }
  5266. ]
  5267. ))
  5268. characterMakers.push(() => makeCharacter(
  5269. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5270. {
  5271. side: {
  5272. height: math.unit(5, "feet"),
  5273. weight: math.unit(3000, "lbs"),
  5274. name: "Side",
  5275. image: {
  5276. source: "./media/characters/louise/side.svg"
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(5, "feet"),
  5284. default: true
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5290. {
  5291. side: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(150, "lbs"),
  5294. name: "Side",
  5295. image: {
  5296. source: "./media/characters/ramona/side.svg",
  5297. extra: 871/854,
  5298. bottom: 41/912
  5299. }
  5300. },
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(5.3, "meters"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(20, "stories")
  5311. },
  5312. {
  5313. name: "Macro+",
  5314. height: math.unit(50, "stories")
  5315. },
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5320. {
  5321. standing: {
  5322. height: math.unit(5.75, "feet"),
  5323. weight: math.unit(160, "lbs"),
  5324. name: "Standing",
  5325. image: {
  5326. source: "./media/characters/deerpuff/standing.svg",
  5327. extra: 682 / 624
  5328. }
  5329. },
  5330. sitting: {
  5331. height: math.unit(5.75 / 1.79, "feet"),
  5332. weight: math.unit(160, "lbs"),
  5333. name: "Sitting",
  5334. image: {
  5335. source: "./media/characters/deerpuff/sitting.svg",
  5336. bottom: 44 / 400,
  5337. extra: 1
  5338. }
  5339. },
  5340. taurLaying: {
  5341. height: math.unit(6, "feet"),
  5342. weight: math.unit(400, "lbs"),
  5343. name: "Taur (Laying)",
  5344. image: {
  5345. source: "./media/characters/deerpuff/taur-laying.svg"
  5346. }
  5347. },
  5348. },
  5349. [
  5350. {
  5351. name: "Puffball",
  5352. height: math.unit(6, "inches")
  5353. },
  5354. {
  5355. name: "Normalpuff",
  5356. height: math.unit(5.75, "feet")
  5357. },
  5358. {
  5359. name: "Macropuff",
  5360. height: math.unit(1500, "feet"),
  5361. default: true
  5362. },
  5363. {
  5364. name: "Megapuff",
  5365. height: math.unit(500, "miles")
  5366. },
  5367. {
  5368. name: "Gigapuff",
  5369. height: math.unit(250000, "miles")
  5370. },
  5371. {
  5372. name: "Omegapuff",
  5373. height: math.unit(1000, "lightyears")
  5374. },
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5379. {
  5380. stomping: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(170, "lbs"),
  5383. name: "Stomping",
  5384. image: {
  5385. source: "./media/characters/vivian/stomping.svg"
  5386. }
  5387. },
  5388. sitting: {
  5389. height: math.unit(6 / 1.75, "feet"),
  5390. weight: math.unit(170, "lbs"),
  5391. name: "Sitting",
  5392. image: {
  5393. source: "./media/characters/vivian/sitting.svg",
  5394. bottom: 1 / 6.4,
  5395. extra: 1,
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Normal",
  5402. height: math.unit(7, "feet"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Macro",
  5407. height: math.unit(10, "stories")
  5408. },
  5409. {
  5410. name: "Macro+",
  5411. height: math.unit(30, "stories")
  5412. },
  5413. {
  5414. name: "Megamacro",
  5415. height: math.unit(10, "miles")
  5416. },
  5417. {
  5418. name: "Megamacro+",
  5419. height: math.unit(2750000, "meters")
  5420. },
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(160, "lbs"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/prince/front.svg",
  5432. extra: 3400 / 3000
  5433. }
  5434. },
  5435. jumping: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(160, "lbs"),
  5438. name: "Jumping",
  5439. image: {
  5440. source: "./media/characters/prince/jump.svg",
  5441. extra: 2555 / 2134
  5442. }
  5443. },
  5444. },
  5445. [
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(7.75, "feet"),
  5449. default: true
  5450. },
  5451. {
  5452. name: "Not cute",
  5453. height: math.unit(17, "feet")
  5454. },
  5455. {
  5456. name: "I said NOT",
  5457. height: math.unit(91, "feet")
  5458. },
  5459. {
  5460. name: "Please stop",
  5461. height: math.unit(560, "feet")
  5462. },
  5463. {
  5464. name: "What have you done",
  5465. height: math.unit(2200, "feet")
  5466. },
  5467. {
  5468. name: "Deer God",
  5469. height: math.unit(3.6, "miles")
  5470. },
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5475. {
  5476. standing: {
  5477. height: math.unit(6, "feet"),
  5478. weight: math.unit(300, "lbs"),
  5479. name: "Standing",
  5480. image: {
  5481. source: "./media/characters/psymon/standing.svg",
  5482. extra: 1888 / 1810,
  5483. bottom: 0.05
  5484. }
  5485. },
  5486. slithering: {
  5487. height: math.unit(6, "feet"),
  5488. weight: math.unit(300, "lbs"),
  5489. name: "Slithering",
  5490. image: {
  5491. source: "./media/characters/psymon/slithering.svg",
  5492. extra: 1330 / 1224
  5493. }
  5494. },
  5495. slitheringAlt: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(300, "lbs"),
  5498. name: "Slithering (Alt)",
  5499. image: {
  5500. source: "./media/characters/psymon/slithering-alt.svg",
  5501. extra: 1330 / 1224
  5502. }
  5503. },
  5504. },
  5505. [
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(11.25, "feet"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Large",
  5513. height: math.unit(27, "feet")
  5514. },
  5515. {
  5516. name: "Giant",
  5517. height: math.unit(87, "feet")
  5518. },
  5519. {
  5520. name: "Macro",
  5521. height: math.unit(365, "feet")
  5522. },
  5523. {
  5524. name: "Megamacro",
  5525. height: math.unit(3, "miles")
  5526. },
  5527. {
  5528. name: "World Serpent",
  5529. height: math.unit(8000, "miles")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(180, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/daimos/front.svg",
  5542. extra: 4160 / 3897,
  5543. bottom: 0.021
  5544. }
  5545. }
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(8, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Big Dog",
  5555. height: math.unit(22, "feet")
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(127, "feet")
  5560. },
  5561. {
  5562. name: "Megamacro",
  5563. height: math.unit(3600, "feet")
  5564. },
  5565. ]
  5566. ))
  5567. characterMakers.push(() => makeCharacter(
  5568. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5569. {
  5570. side: {
  5571. height: math.unit(6, "feet"),
  5572. weight: math.unit(180, "lbs"),
  5573. name: "Side",
  5574. image: {
  5575. source: "./media/characters/blake/side.svg",
  5576. extra: 1212 / 1120,
  5577. bottom: 0.05
  5578. }
  5579. },
  5580. crouched: {
  5581. height: math.unit(6 * 0.57, "feet"),
  5582. weight: math.unit(180, "lbs"),
  5583. name: "Crouched",
  5584. image: {
  5585. source: "./media/characters/blake/crouched.svg",
  5586. extra: 840 / 587,
  5587. bottom: 0.04
  5588. }
  5589. },
  5590. bent: {
  5591. height: math.unit(6 * 0.75, "feet"),
  5592. weight: math.unit(180, "lbs"),
  5593. name: "Bent",
  5594. image: {
  5595. source: "./media/characters/blake/bent.svg",
  5596. extra: 592 / 544,
  5597. bottom: 0.035
  5598. }
  5599. },
  5600. },
  5601. [
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(8 + 1 / 6, "feet"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Big Backside",
  5609. height: math.unit(37, "feet")
  5610. },
  5611. {
  5612. name: "Subway Shredder",
  5613. height: math.unit(72, "feet")
  5614. },
  5615. {
  5616. name: "City Carver",
  5617. height: math.unit(1675, "feet")
  5618. },
  5619. {
  5620. name: "Tectonic Tweaker",
  5621. height: math.unit(2300, "miles")
  5622. },
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(180, "lbs"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/guisetto/front.svg",
  5634. extra: 856 / 817,
  5635. bottom: 0.06
  5636. }
  5637. },
  5638. airborne: {
  5639. height: math.unit(6, "feet"),
  5640. weight: math.unit(180, "lbs"),
  5641. name: "Airborne",
  5642. image: {
  5643. source: "./media/characters/guisetto/airborne.svg",
  5644. extra: 584 / 525
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(10 + 11 / 12, "feet"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Large",
  5656. height: math.unit(35, "feet")
  5657. },
  5658. {
  5659. name: "Macro",
  5660. height: math.unit(475, "feet")
  5661. },
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5666. {
  5667. front: {
  5668. height: math.unit(6, "feet"),
  5669. weight: math.unit(180, "lbs"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/luxor/front.svg",
  5673. extra: 2940 / 2152
  5674. }
  5675. },
  5676. back: {
  5677. height: math.unit(6, "feet"),
  5678. weight: math.unit(180, "lbs"),
  5679. name: "Back",
  5680. image: {
  5681. source: "./media/characters/luxor/back.svg",
  5682. extra: 1083 / 960
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Normal",
  5689. height: math.unit(5 + 5 / 6, "feet"),
  5690. default: true
  5691. },
  5692. {
  5693. name: "Lamp",
  5694. height: math.unit(50, "feet")
  5695. },
  5696. {
  5697. name: "Lämp",
  5698. height: math.unit(300, "feet")
  5699. },
  5700. {
  5701. name: "The sun is a lamp",
  5702. height: math.unit(250000, "miles")
  5703. },
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5708. {
  5709. front: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(50, "lbs"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/huoyan/front.svg"
  5715. }
  5716. },
  5717. side: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(180, "lbs"),
  5720. name: "Side",
  5721. image: {
  5722. source: "./media/characters/huoyan/side.svg"
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Chef",
  5729. height: math.unit(9, "feet")
  5730. },
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(65, "feet"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(780, "feet")
  5739. },
  5740. {
  5741. name: "Flaming Mountain",
  5742. height: math.unit(4.8, "miles")
  5743. },
  5744. {
  5745. name: "Celestial",
  5746. height: math.unit(765000, "miles")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5752. {
  5753. front: {
  5754. height: math.unit(5 + 3 / 4, "feet"),
  5755. weight: math.unit(120, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/tails/front.svg"
  5759. }
  5760. }
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(5 + 3 / 4, "feet"),
  5766. default: true
  5767. }
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(4, "feet"),
  5775. weight: math.unit(50, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/rainy/front.svg"
  5779. }
  5780. }
  5781. },
  5782. [
  5783. {
  5784. name: "Macro",
  5785. height: math.unit(800, "feet"),
  5786. default: true
  5787. }
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5792. {
  5793. front: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(150, "lbs"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/rainier/front.svg"
  5799. }
  5800. }
  5801. },
  5802. [
  5803. {
  5804. name: "Micro",
  5805. height: math.unit(2, "mm"),
  5806. default: true
  5807. }
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(8 + 4/12, "feet"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/andy-renard/front.svg",
  5818. extra: 1839/1726,
  5819. bottom: 134/1973
  5820. }
  5821. },
  5822. back: {
  5823. height: math.unit(8 + 4/12, "feet"),
  5824. name: "Back",
  5825. image: {
  5826. source: "./media/characters/andy-renard/back.svg",
  5827. extra: 1838/1710,
  5828. bottom: 105/1943
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Tall",
  5835. height: math.unit(8 + 4/12, "feet")
  5836. },
  5837. {
  5838. name: "Mini Macro",
  5839. height: math.unit(15, "feet"),
  5840. default: true
  5841. },
  5842. {
  5843. name: "Macro",
  5844. height: math.unit(100, "feet")
  5845. },
  5846. {
  5847. name: "Mega Macro",
  5848. height: math.unit(1000, "feet")
  5849. },
  5850. {
  5851. name: "Giga Macro",
  5852. height: math.unit(10, "miles")
  5853. },
  5854. {
  5855. name: "God Macro",
  5856. height: math.unit(1, "multiverse")
  5857. },
  5858. ]
  5859. ))
  5860. characterMakers.push(() => makeCharacter(
  5861. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5862. {
  5863. front: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(210, "lbs"),
  5866. name: "Front",
  5867. image: {
  5868. source: "./media/characters/cimmaron/front-sfw.svg",
  5869. extra: 701 / 676,
  5870. bottom: 0.046
  5871. }
  5872. },
  5873. back: {
  5874. height: math.unit(6, "feet"),
  5875. weight: math.unit(210, "lbs"),
  5876. name: "Back",
  5877. image: {
  5878. source: "./media/characters/cimmaron/back-sfw.svg",
  5879. extra: 701 / 676,
  5880. bottom: 0.046
  5881. }
  5882. },
  5883. frontNsfw: {
  5884. height: math.unit(6, "feet"),
  5885. weight: math.unit(210, "lbs"),
  5886. name: "Front (NSFW)",
  5887. image: {
  5888. source: "./media/characters/cimmaron/front-nsfw.svg",
  5889. extra: 701 / 676,
  5890. bottom: 0.046
  5891. }
  5892. },
  5893. backNsfw: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Back (NSFW)",
  5897. image: {
  5898. source: "./media/characters/cimmaron/back-nsfw.svg",
  5899. extra: 701 / 676,
  5900. bottom: 0.046
  5901. }
  5902. },
  5903. dick: {
  5904. height: math.unit(1.714, "feet"),
  5905. name: "Dick",
  5906. image: {
  5907. source: "./media/characters/cimmaron/dick.svg"
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(6, "feet"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Macro Mayor",
  5919. height: math.unit(350, "meters")
  5920. },
  5921. ]
  5922. ))
  5923. characterMakers.push(() => makeCharacter(
  5924. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5925. {
  5926. front: {
  5927. height: math.unit(6, "feet"),
  5928. weight: math.unit(200, "lbs"),
  5929. name: "Front",
  5930. image: {
  5931. source: "./media/characters/akari/front.svg",
  5932. extra: 962 / 901,
  5933. bottom: 0.04
  5934. }
  5935. }
  5936. },
  5937. [
  5938. {
  5939. name: "Micro",
  5940. height: math.unit(5, "inches"),
  5941. default: true
  5942. },
  5943. {
  5944. name: "Normal",
  5945. height: math.unit(7, "feet")
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(140, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/cynosura/front.svg",
  5958. extra: 896 / 847
  5959. }
  5960. },
  5961. back: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(140, "lbs"),
  5964. name: "Back",
  5965. image: {
  5966. source: "./media/characters/cynosura/back.svg",
  5967. extra: 1365 / 1250
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Micro",
  5974. height: math.unit(4, "inches")
  5975. },
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(5.75, "feet"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Tall",
  5983. height: math.unit(10, "feet")
  5984. },
  5985. {
  5986. name: "Big",
  5987. height: math.unit(20, "feet")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(50, "feet")
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(13 + 2/12, "feet"),
  6000. weight: math.unit(800, "kg"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/gin/front.svg",
  6004. extra: 1312/1191,
  6005. bottom: 45/1357
  6006. }
  6007. },
  6008. mouth: {
  6009. height: math.unit(2.39 * 1.8, "feet"),
  6010. name: "Mouth",
  6011. image: {
  6012. source: "./media/characters/gin/mouth.svg"
  6013. }
  6014. },
  6015. hand: {
  6016. height: math.unit(1.57 * 2.19, "feet"),
  6017. name: "Hand",
  6018. image: {
  6019. source: "./media/characters/gin/hand.svg"
  6020. }
  6021. },
  6022. foot: {
  6023. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6024. name: "Foot",
  6025. image: {
  6026. source: "./media/characters/gin/foot.svg"
  6027. }
  6028. },
  6029. sole: {
  6030. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6031. name: "Sole",
  6032. image: {
  6033. source: "./media/characters/gin/sole.svg"
  6034. }
  6035. },
  6036. },
  6037. [
  6038. {
  6039. name: "Very Small",
  6040. height: math.unit(13 + 2 / 12, "feet")
  6041. },
  6042. {
  6043. name: "Micro",
  6044. height: math.unit(600, "miles")
  6045. },
  6046. {
  6047. name: "Regular",
  6048. height: math.unit(20, "earths"),
  6049. default: true
  6050. },
  6051. {
  6052. name: "Macro",
  6053. height: math.unit(2.2, "solarradii")
  6054. },
  6055. {
  6056. name: "Teramacro",
  6057. height: math.unit(1.2, "galaxies")
  6058. },
  6059. {
  6060. name: "Omegamacro",
  6061. height: math.unit(200, "universes")
  6062. },
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6067. {
  6068. front: {
  6069. height: math.unit(6 + 1 / 6, "feet"),
  6070. weight: math.unit(178, "lbs"),
  6071. name: "Front",
  6072. image: {
  6073. source: "./media/characters/guy/front.svg"
  6074. }
  6075. }
  6076. },
  6077. [
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(6 + 1 / 6, "feet"),
  6081. default: true
  6082. },
  6083. {
  6084. name: "Large",
  6085. height: math.unit(25 + 7 / 12, "feet")
  6086. },
  6087. {
  6088. name: "Macro",
  6089. height: math.unit(60 + 9 / 12, "feet")
  6090. },
  6091. {
  6092. name: "Macro+",
  6093. height: math.unit(246, "feet")
  6094. },
  6095. {
  6096. name: "Macro++",
  6097. height: math.unit(878, "feet")
  6098. }
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6103. {
  6104. front: {
  6105. height: math.unit(9, "feet"),
  6106. weight: math.unit(800, "lbs"),
  6107. name: "Front",
  6108. image: {
  6109. source: "./media/characters/tiberius/front.svg",
  6110. extra: 2295 / 2071
  6111. }
  6112. },
  6113. back: {
  6114. height: math.unit(9, "feet"),
  6115. weight: math.unit(800, "lbs"),
  6116. name: "Back",
  6117. image: {
  6118. source: "./media/characters/tiberius/back.svg",
  6119. extra: 2373 / 2160
  6120. }
  6121. },
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(9, "feet"),
  6127. default: true
  6128. }
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6133. {
  6134. front: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(600, "lbs"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/surgo/front.svg",
  6140. extra: 3591 / 2227
  6141. }
  6142. },
  6143. back: {
  6144. height: math.unit(6, "feet"),
  6145. weight: math.unit(600, "lbs"),
  6146. name: "Back",
  6147. image: {
  6148. source: "./media/characters/surgo/back.svg",
  6149. extra: 3557 / 2228
  6150. }
  6151. },
  6152. laying: {
  6153. height: math.unit(6 * 0.85, "feet"),
  6154. weight: math.unit(600, "lbs"),
  6155. name: "Laying",
  6156. image: {
  6157. source: "./media/characters/surgo/laying.svg"
  6158. }
  6159. },
  6160. },
  6161. [
  6162. {
  6163. name: "Normal",
  6164. height: math.unit(6, "feet"),
  6165. default: true
  6166. }
  6167. ]
  6168. ))
  6169. characterMakers.push(() => makeCharacter(
  6170. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6171. {
  6172. side: {
  6173. height: math.unit(6, "feet"),
  6174. weight: math.unit(150, "lbs"),
  6175. name: "Side",
  6176. image: {
  6177. source: "./media/characters/cibus/side.svg",
  6178. extra: 800 / 400
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(6, "feet"),
  6186. default: true
  6187. }
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6192. {
  6193. front: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(240, "lbs"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/nibbles/front.svg"
  6199. }
  6200. },
  6201. side: {
  6202. height: math.unit(6, "feet"),
  6203. weight: math.unit(240, "lbs"),
  6204. name: "Side",
  6205. image: {
  6206. source: "./media/characters/nibbles/side.svg"
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(9, "feet"),
  6214. default: true
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6220. {
  6221. side: {
  6222. height: math.unit(5 + 1 / 6, "feet"),
  6223. weight: math.unit(130, "lbs"),
  6224. name: "Side",
  6225. image: {
  6226. source: "./media/characters/rikky/side.svg",
  6227. extra: 851 / 801
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(5 + 1 / 6, "feet")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(152, "feet"),
  6239. default: true
  6240. },
  6241. {
  6242. name: "Megamacro",
  6243. height: math.unit(7, "miles")
  6244. }
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6249. {
  6250. side: {
  6251. height: math.unit(370, "cm"),
  6252. weight: math.unit(350, "lbs"),
  6253. name: "Side",
  6254. image: {
  6255. source: "./media/characters/malfressa/side.svg"
  6256. }
  6257. },
  6258. walking: {
  6259. height: math.unit(370, "cm"),
  6260. weight: math.unit(350, "lbs"),
  6261. name: "Walking",
  6262. image: {
  6263. source: "./media/characters/malfressa/walking.svg"
  6264. }
  6265. },
  6266. feral: {
  6267. height: math.unit(2500, "cm"),
  6268. weight: math.unit(100000, "lbs"),
  6269. name: "Feral",
  6270. image: {
  6271. source: "./media/characters/malfressa/feral.svg",
  6272. extra: 2108 / 837,
  6273. bottom: 0.02
  6274. }
  6275. },
  6276. },
  6277. [
  6278. {
  6279. name: "Normal",
  6280. height: math.unit(370, "cm")
  6281. },
  6282. {
  6283. name: "Macro",
  6284. height: math.unit(300, "meters"),
  6285. default: true
  6286. }
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6291. {
  6292. front: {
  6293. height: math.unit(6, "feet"),
  6294. weight: math.unit(60, "kg"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/jaro/front.svg"
  6298. }
  6299. },
  6300. back: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(60, "kg"),
  6303. name: "Back",
  6304. image: {
  6305. source: "./media/characters/jaro/back.svg"
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Micro",
  6312. height: math.unit(7, "inches")
  6313. },
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(5.5, "feet"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Minimacro",
  6321. height: math.unit(20, "feet")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(200, "meters")
  6326. }
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6331. {
  6332. front: {
  6333. height: math.unit(6, "feet"),
  6334. weight: math.unit(195, "lb"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/rogue/front.svg"
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(90, "feet"),
  6345. default: true
  6346. },
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(5 + 8 / 12, "feet"),
  6354. weight: math.unit(140, "lb"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/piper/front.svg",
  6358. extra: 3948/3655,
  6359. bottom: 0/3948
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Micro",
  6366. height: math.unit(2, "inches")
  6367. },
  6368. {
  6369. name: "Normal",
  6370. height: math.unit(5 + 8 / 12, "feet")
  6371. },
  6372. {
  6373. name: "Macro",
  6374. height: math.unit(250, "feet"),
  6375. default: true
  6376. },
  6377. {
  6378. name: "Megamacro",
  6379. height: math.unit(7, "miles")
  6380. },
  6381. ]
  6382. ))
  6383. characterMakers.push(() => makeCharacter(
  6384. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6385. {
  6386. front: {
  6387. height: math.unit(6, "feet"),
  6388. weight: math.unit(220, "lb"),
  6389. name: "Front",
  6390. image: {
  6391. source: "./media/characters/gemini/front.svg"
  6392. }
  6393. },
  6394. back: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(220, "lb"),
  6397. name: "Back",
  6398. image: {
  6399. source: "./media/characters/gemini/back.svg"
  6400. }
  6401. },
  6402. kneeling: {
  6403. height: math.unit(6 / 1.5, "feet"),
  6404. weight: math.unit(220, "lb"),
  6405. name: "Kneeling",
  6406. image: {
  6407. source: "./media/characters/gemini/kneeling.svg",
  6408. bottom: 0.02
  6409. }
  6410. },
  6411. },
  6412. [
  6413. {
  6414. name: "Macro",
  6415. height: math.unit(300, "meters"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Megamacro",
  6420. height: math.unit(6900, "meters")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6426. {
  6427. anthro: {
  6428. height: math.unit(2.35, "meters"),
  6429. weight: math.unit(73, "kg"),
  6430. name: "Anthro",
  6431. image: {
  6432. source: "./media/characters/alicia/anthro.svg",
  6433. extra: 2571 / 2385,
  6434. bottom: 75 / 2648
  6435. }
  6436. },
  6437. paw: {
  6438. height: math.unit(1.32, "feet"),
  6439. name: "Paw",
  6440. image: {
  6441. source: "./media/characters/alicia/paw.svg"
  6442. }
  6443. },
  6444. feral: {
  6445. height: math.unit(1.69, "meters"),
  6446. weight: math.unit(73, "kg"),
  6447. name: "Feral",
  6448. image: {
  6449. source: "./media/characters/alicia/feral.svg",
  6450. extra: 2123 / 1715,
  6451. bottom: 222 / 2349
  6452. }
  6453. },
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(2.35, "meters")
  6459. },
  6460. {
  6461. name: "Macro",
  6462. height: math.unit(60, "meters"),
  6463. default: true
  6464. },
  6465. {
  6466. name: "Megamacro",
  6467. height: math.unit(10000, "kilometers")
  6468. },
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(7, "feet"),
  6476. weight: math.unit(250, "lbs"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/archy/front.svg"
  6480. }
  6481. }
  6482. },
  6483. [
  6484. {
  6485. name: "Micro",
  6486. height: math.unit(1, "inch")
  6487. },
  6488. {
  6489. name: "Shorty",
  6490. height: math.unit(5, "feet")
  6491. },
  6492. {
  6493. name: "Normal",
  6494. height: math.unit(7, "feet")
  6495. },
  6496. {
  6497. name: "Macro",
  6498. height: math.unit(600, "meters"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Megamacro",
  6503. height: math.unit(1, "mile")
  6504. },
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(1.65, "meters"),
  6512. weight: math.unit(74, "kg"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/berri/front.svg",
  6516. extra: 857 / 837,
  6517. bottom: 18 / 877
  6518. }
  6519. },
  6520. bum: {
  6521. height: math.unit(1.46, "feet"),
  6522. name: "Bum",
  6523. image: {
  6524. source: "./media/characters/berri/bum.svg"
  6525. }
  6526. },
  6527. mouth: {
  6528. height: math.unit(0.44, "feet"),
  6529. name: "Mouth",
  6530. image: {
  6531. source: "./media/characters/berri/mouth.svg"
  6532. }
  6533. },
  6534. paw: {
  6535. height: math.unit(0.826, "feet"),
  6536. name: "Paw",
  6537. image: {
  6538. source: "./media/characters/berri/paw.svg"
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(1.65, "meters")
  6546. },
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(60, "m"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(9.213, "km")
  6555. },
  6556. {
  6557. name: "Planet Eater",
  6558. height: math.unit(489, "megameters")
  6559. },
  6560. {
  6561. name: "Teramacro",
  6562. height: math.unit(2471635000000, "meters")
  6563. },
  6564. {
  6565. name: "Examacro",
  6566. height: math.unit(8.0624e+26, "meters")
  6567. }
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(1.72, "meters"),
  6575. weight: math.unit(68, "kg"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/lexi/front.svg"
  6579. }
  6580. }
  6581. },
  6582. [
  6583. {
  6584. name: "Very Smol",
  6585. height: math.unit(10, "mm")
  6586. },
  6587. {
  6588. name: "Micro",
  6589. height: math.unit(6.8, "cm"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(1.72, "m")
  6595. }
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(1.69, "meters"),
  6603. weight: math.unit(68, "kg"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/martin/front.svg",
  6607. extra: 596 / 581
  6608. }
  6609. }
  6610. },
  6611. [
  6612. {
  6613. name: "Micro",
  6614. height: math.unit(6.85, "cm"),
  6615. default: true
  6616. },
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(1.69, "m")
  6620. }
  6621. ]
  6622. ))
  6623. characterMakers.push(() => makeCharacter(
  6624. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6625. {
  6626. front: {
  6627. height: math.unit(1.69, "meters"),
  6628. weight: math.unit(68, "kg"),
  6629. name: "Front",
  6630. image: {
  6631. source: "./media/characters/juno/front.svg"
  6632. }
  6633. }
  6634. },
  6635. [
  6636. {
  6637. name: "Micro",
  6638. height: math.unit(7, "cm")
  6639. },
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(1.89, "m")
  6643. },
  6644. {
  6645. name: "Macro",
  6646. height: math.unit(353, "meters"),
  6647. default: true
  6648. }
  6649. ]
  6650. ))
  6651. characterMakers.push(() => makeCharacter(
  6652. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6653. {
  6654. front: {
  6655. height: math.unit(1.93, "meters"),
  6656. weight: math.unit(83, "kg"),
  6657. name: "Front",
  6658. image: {
  6659. source: "./media/characters/samantha/front.svg"
  6660. }
  6661. },
  6662. frontClothed: {
  6663. height: math.unit(1.93, "meters"),
  6664. weight: math.unit(83, "kg"),
  6665. name: "Front (Clothed)",
  6666. image: {
  6667. source: "./media/characters/samantha/front-clothed.svg"
  6668. }
  6669. },
  6670. back: {
  6671. height: math.unit(1.93, "meters"),
  6672. weight: math.unit(83, "kg"),
  6673. name: "Back",
  6674. image: {
  6675. source: "./media/characters/samantha/back.svg"
  6676. }
  6677. },
  6678. },
  6679. [
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(1.93, "m")
  6683. },
  6684. {
  6685. name: "Macro",
  6686. height: math.unit(74, "meters"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Macro+",
  6691. height: math.unit(223, "meters"),
  6692. },
  6693. {
  6694. name: "Megamacro",
  6695. height: math.unit(8381, "meters"),
  6696. },
  6697. {
  6698. name: "Megamacro+",
  6699. height: math.unit(12000, "kilometers")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(1.92, "meters"),
  6708. weight: math.unit(80, "kg"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/dr-clay/front.svg"
  6712. }
  6713. },
  6714. frontClothed: {
  6715. height: math.unit(1.92, "meters"),
  6716. weight: math.unit(80, "kg"),
  6717. name: "Front (Clothed)",
  6718. image: {
  6719. source: "./media/characters/dr-clay/front-clothed.svg"
  6720. }
  6721. }
  6722. },
  6723. [
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(1.92, "m")
  6727. },
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(214, "meters"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Macro+",
  6735. height: math.unit(12.237, "meters"),
  6736. },
  6737. {
  6738. name: "Megamacro",
  6739. height: math.unit(557, "megameters"),
  6740. },
  6741. {
  6742. name: "Unimaginable",
  6743. height: math.unit(120e9, "lightyears")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(80, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6756. }
  6757. }
  6758. },
  6759. [
  6760. {
  6761. name: "Teramacro",
  6762. height: math.unit(500000, "lightyears"),
  6763. default: true
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6769. {
  6770. crux: {
  6771. height: math.unit(2, "meters"),
  6772. weight: math.unit(150, "kg"),
  6773. name: "Crux",
  6774. image: {
  6775. source: "./media/characters/vemus/crux.svg",
  6776. extra: 1074/936,
  6777. bottom: 23/1097
  6778. }
  6779. },
  6780. skunkTanuki: {
  6781. height: math.unit(2, "meters"),
  6782. weight: math.unit(150, "kg"),
  6783. name: "Skunk-Tanuki",
  6784. image: {
  6785. source: "./media/characters/vemus/skunk-tanuki.svg",
  6786. extra: 926/893,
  6787. bottom: 20/946
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(3.75, "meters"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Big",
  6799. height: math.unit(8, "meters")
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(100, "meters")
  6804. },
  6805. {
  6806. name: "Macro+",
  6807. height: math.unit(1500, "meters")
  6808. },
  6809. {
  6810. name: "Stellar",
  6811. height: math.unit(14e8, "meters")
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(2, "meters"),
  6820. weight: math.unit(70, "kg"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/beherit/front.svg",
  6824. extra: 1408 / 1242
  6825. }
  6826. }
  6827. },
  6828. [
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(6, "feet")
  6832. },
  6833. {
  6834. name: "Lorg",
  6835. height: math.unit(25, "feet"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Lorger",
  6840. height: math.unit(75, "feet")
  6841. },
  6842. {
  6843. name: "Macro",
  6844. height: math.unit(200, "meters")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(2, "meters"),
  6853. weight: math.unit(150, "kg"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/everett/front.svg",
  6857. extra: 2038 / 1737,
  6858. bottom: 0.03
  6859. }
  6860. },
  6861. paw: {
  6862. height: math.unit(2 / 3.6, "meters"),
  6863. name: "Paw",
  6864. image: {
  6865. source: "./media/characters/everett/paw.svg"
  6866. }
  6867. },
  6868. },
  6869. [
  6870. {
  6871. name: "Normal",
  6872. height: math.unit(15, "feet"),
  6873. default: true
  6874. },
  6875. {
  6876. name: "Lorg",
  6877. height: math.unit(70, "feet"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Lorger",
  6882. height: math.unit(250, "feet")
  6883. },
  6884. {
  6885. name: "Macro",
  6886. height: math.unit(500, "meters")
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6892. {
  6893. front: {
  6894. height: math.unit(2, "meters"),
  6895. weight: math.unit(86, "kg"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/rose/front.svg",
  6899. extra: 1785/1636,
  6900. bottom: 30/1815
  6901. }
  6902. },
  6903. frontSporty: {
  6904. height: math.unit(2, "meters"),
  6905. weight: math.unit(86, "kg"),
  6906. name: "Front (Sporty)",
  6907. image: {
  6908. source: "./media/characters/rose/front-sporty.svg",
  6909. extra: 350/335,
  6910. bottom: 10/360
  6911. }
  6912. },
  6913. frontAlt: {
  6914. height: math.unit(1.6, "meters"),
  6915. weight: math.unit(86, "kg"),
  6916. name: "Front (Alt)",
  6917. image: {
  6918. source: "./media/characters/rose/front-alt.svg",
  6919. extra: 299/283,
  6920. bottom: 3/302
  6921. }
  6922. },
  6923. plush: {
  6924. height: math.unit(2, "meters"),
  6925. weight: math.unit(86/3, "kg"),
  6926. name: "Plush",
  6927. image: {
  6928. source: "./media/characters/rose/plush.svg",
  6929. extra: 361/337,
  6930. bottom: 11/372
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "True Micro",
  6937. height: math.unit(9, "cm")
  6938. },
  6939. {
  6940. name: "Micro",
  6941. height: math.unit(16, "cm")
  6942. },
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(1.85, "meters"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Mini-Macro",
  6950. height: math.unit(5, "meters")
  6951. },
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(15, "meters")
  6955. },
  6956. {
  6957. name: "True Macro",
  6958. height: math.unit(40, "meters")
  6959. },
  6960. {
  6961. name: "City Scale",
  6962. height: math.unit(1, "km")
  6963. },
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6968. {
  6969. front: {
  6970. height: math.unit(2, "meters"),
  6971. weight: math.unit(350, "lbs"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/regal/front.svg"
  6975. }
  6976. },
  6977. back: {
  6978. height: math.unit(2, "meters"),
  6979. weight: math.unit(350, "lbs"),
  6980. name: "Back",
  6981. image: {
  6982. source: "./media/characters/regal/back.svg"
  6983. }
  6984. },
  6985. },
  6986. [
  6987. {
  6988. name: "Macro",
  6989. height: math.unit(350, "feet"),
  6990. default: true
  6991. }
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(4 + 11 / 12, "feet"),
  6999. weight: math.unit(100, "lbs"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/opal/front.svg"
  7003. }
  7004. },
  7005. frontAlt: {
  7006. height: math.unit(4 + 11 / 12, "feet"),
  7007. weight: math.unit(100, "lbs"),
  7008. name: "Front (Alt)",
  7009. image: {
  7010. source: "./media/characters/opal/front-alt.svg"
  7011. }
  7012. },
  7013. },
  7014. [
  7015. {
  7016. name: "Small",
  7017. height: math.unit(4 + 11 / 12, "feet")
  7018. },
  7019. {
  7020. name: "Normal",
  7021. height: math.unit(20, "feet"),
  7022. default: true
  7023. },
  7024. {
  7025. name: "Macro",
  7026. height: math.unit(120, "feet")
  7027. },
  7028. {
  7029. name: "Megamacro",
  7030. height: math.unit(80, "miles")
  7031. },
  7032. {
  7033. name: "True Size",
  7034. height: math.unit(100000, "lightyears")
  7035. },
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7040. {
  7041. front: {
  7042. height: math.unit(6, "feet"),
  7043. weight: math.unit(200, "lbs"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/vector-wuff/front.svg"
  7047. }
  7048. }
  7049. },
  7050. [
  7051. {
  7052. name: "Normal",
  7053. height: math.unit(2.8, "meters")
  7054. },
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(450, "meters"),
  7058. default: true
  7059. },
  7060. {
  7061. name: "Megamacro",
  7062. height: math.unit(15, "kilometers")
  7063. }
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7068. {
  7069. front: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(256, "lbs"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/dannik/front.svg"
  7075. }
  7076. }
  7077. },
  7078. [
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(69.57, "meters"),
  7082. default: true
  7083. },
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7088. {
  7089. front: {
  7090. height: math.unit(6, "feet"),
  7091. weight: math.unit(120, "lbs"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/azura-saharah/front.svg"
  7095. }
  7096. },
  7097. back: {
  7098. height: math.unit(6, "feet"),
  7099. weight: math.unit(120, "lbs"),
  7100. name: "Back",
  7101. image: {
  7102. source: "./media/characters/azura-saharah/back.svg"
  7103. }
  7104. },
  7105. },
  7106. [
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(100, "feet"),
  7110. default: true
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7116. {
  7117. side: {
  7118. height: math.unit(5 + 4 / 12, "feet"),
  7119. weight: math.unit(163, "lbs"),
  7120. name: "Side",
  7121. image: {
  7122. source: "./media/characters/kennedy/side.svg"
  7123. }
  7124. }
  7125. },
  7126. [
  7127. {
  7128. name: "Standard Doggo",
  7129. height: math.unit(5 + 4 / 12, "feet")
  7130. },
  7131. {
  7132. name: "Big Doggo",
  7133. height: math.unit(25 + 3 / 12, "feet"),
  7134. default: true
  7135. },
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7140. {
  7141. front: {
  7142. height: math.unit(5 + 5/12, "feet"),
  7143. weight: math.unit(100, "lbs"),
  7144. name: "Front",
  7145. image: {
  7146. source: "./media/characters/odios-de-lunar/front.svg",
  7147. extra: 1468/1323,
  7148. bottom: 22/1490
  7149. }
  7150. }
  7151. },
  7152. [
  7153. {
  7154. name: "Micro",
  7155. height: math.unit(3, "inches")
  7156. },
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(5.5, "feet"),
  7160. default: true
  7161. },
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(100, "feet")
  7165. },
  7166. ]
  7167. ))
  7168. characterMakers.push(() => makeCharacter(
  7169. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7170. {
  7171. back: {
  7172. height: math.unit(6, "feet"),
  7173. weight: math.unit(220, "lbs"),
  7174. name: "Back",
  7175. image: {
  7176. source: "./media/characters/mandake/back.svg"
  7177. }
  7178. }
  7179. },
  7180. [
  7181. {
  7182. name: "Normal",
  7183. height: math.unit(7, "feet"),
  7184. default: true
  7185. },
  7186. {
  7187. name: "Macro",
  7188. height: math.unit(78, "feet")
  7189. },
  7190. {
  7191. name: "Macro+",
  7192. height: math.unit(300, "meters")
  7193. },
  7194. {
  7195. name: "Macro++",
  7196. height: math.unit(2400, "feet")
  7197. },
  7198. {
  7199. name: "Megamacro",
  7200. height: math.unit(5167, "meters")
  7201. },
  7202. {
  7203. name: "Gigamacro",
  7204. height: math.unit(41769, "miles")
  7205. },
  7206. ]
  7207. ))
  7208. characterMakers.push(() => makeCharacter(
  7209. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7210. {
  7211. front: {
  7212. height: math.unit(6, "feet"),
  7213. weight: math.unit(120, "lbs"),
  7214. name: "Front",
  7215. image: {
  7216. source: "./media/characters/yozey/front.svg"
  7217. }
  7218. },
  7219. frontAlt: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(120, "lbs"),
  7222. name: "Front (Alt)",
  7223. image: {
  7224. source: "./media/characters/yozey/front-alt.svg"
  7225. }
  7226. },
  7227. side: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(120, "lbs"),
  7230. name: "Side",
  7231. image: {
  7232. source: "./media/characters/yozey/side.svg"
  7233. }
  7234. },
  7235. },
  7236. [
  7237. {
  7238. name: "Micro",
  7239. height: math.unit(3, "inches"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(6, "feet")
  7245. }
  7246. ]
  7247. ))
  7248. characterMakers.push(() => makeCharacter(
  7249. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7250. {
  7251. front: {
  7252. height: math.unit(6, "feet"),
  7253. weight: math.unit(103, "lbs"),
  7254. name: "Front",
  7255. image: {
  7256. source: "./media/characters/valeska-voss/front.svg"
  7257. }
  7258. }
  7259. },
  7260. [
  7261. {
  7262. name: "Mini-Sized Sub",
  7263. height: math.unit(3.1, "inches")
  7264. },
  7265. {
  7266. name: "Mid-Sized Sub",
  7267. height: math.unit(6.2, "inches")
  7268. },
  7269. {
  7270. name: "Full-Sized Sub",
  7271. height: math.unit(9.3, "inches")
  7272. },
  7273. {
  7274. name: "Normal",
  7275. height: math.unit(5 + 2 / 12, "foot"),
  7276. default: true
  7277. },
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(6, "feet"),
  7285. weight: math.unit(160, "lbs"),
  7286. name: "Front",
  7287. image: {
  7288. source: "./media/characters/gene-zeta/front.svg",
  7289. extra: 3006 / 2826,
  7290. bottom: 182 / 3188
  7291. }
  7292. }
  7293. },
  7294. [
  7295. {
  7296. name: "Micro",
  7297. height: math.unit(6, "inches")
  7298. },
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(5 + 11 / 12, "foot"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Macro",
  7306. height: math.unit(140, "feet")
  7307. },
  7308. {
  7309. name: "Supercharged",
  7310. height: math.unit(2500, "feet")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(6, "feet"),
  7319. weight: math.unit(350, "lbs"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/razinox/front.svg",
  7323. extra: 1686 / 1548,
  7324. bottom: 28.2 / 1868
  7325. }
  7326. },
  7327. back: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(350, "lbs"),
  7330. name: "Back",
  7331. image: {
  7332. source: "./media/characters/razinox/back.svg",
  7333. extra: 1660 / 1590,
  7334. bottom: 15 / 1665
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(10 + 8 / 12, "foot")
  7342. },
  7343. {
  7344. name: "Minimacro",
  7345. height: math.unit(15, "foot")
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(60, "foot"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Megamacro",
  7354. height: math.unit(5, "miles")
  7355. },
  7356. {
  7357. name: "Gigamacro",
  7358. height: math.unit(6000, "miles")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7364. {
  7365. front: {
  7366. height: math.unit(6, "feet"),
  7367. weight: math.unit(150, "lbs"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/cobalt/front.svg"
  7371. }
  7372. }
  7373. },
  7374. [
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(8 + 1 / 12, "foot")
  7378. },
  7379. {
  7380. name: "Macro",
  7381. height: math.unit(111, "foot"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Supracosmic",
  7386. height: math.unit(1e42, "feet")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7392. {
  7393. front: {
  7394. height: math.unit(6, "feet"),
  7395. weight: math.unit(140, "lbs"),
  7396. name: "Front",
  7397. image: {
  7398. source: "./media/characters/amanda/front.svg"
  7399. }
  7400. }
  7401. },
  7402. [
  7403. {
  7404. name: "Micro",
  7405. height: math.unit(5, "inches"),
  7406. default: true
  7407. },
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7412. {
  7413. front: {
  7414. height: math.unit(2.75, "meters"),
  7415. weight: math.unit(1200, "lb"),
  7416. name: "Front",
  7417. image: {
  7418. source: "./media/characters/teal/front.svg",
  7419. extra: 2463 / 2320,
  7420. bottom: 166 / 2629
  7421. }
  7422. },
  7423. back: {
  7424. height: math.unit(2.75, "meters"),
  7425. weight: math.unit(1200, "lb"),
  7426. name: "Back",
  7427. image: {
  7428. source: "./media/characters/teal/back.svg",
  7429. extra: 2580 / 2489,
  7430. bottom: 151 / 2731
  7431. }
  7432. },
  7433. sitting: {
  7434. height: math.unit(1.9, "meters"),
  7435. weight: math.unit(1200, "lb"),
  7436. name: "Sitting",
  7437. image: {
  7438. source: "./media/characters/teal/sitting.svg",
  7439. extra: 623 / 590,
  7440. bottom: 121 / 744
  7441. }
  7442. },
  7443. standing: {
  7444. height: math.unit(2.75, "meters"),
  7445. weight: math.unit(1200, "lb"),
  7446. name: "Standing",
  7447. image: {
  7448. source: "./media/characters/teal/standing.svg",
  7449. extra: 923 / 893,
  7450. bottom: 60 / 983
  7451. }
  7452. },
  7453. stretching: {
  7454. height: math.unit(3.65, "meters"),
  7455. weight: math.unit(1200, "lb"),
  7456. name: "Stretching",
  7457. image: {
  7458. source: "./media/characters/teal/stretching.svg",
  7459. extra: 1276 / 1244,
  7460. bottom: 0 / 1276
  7461. }
  7462. },
  7463. legged: {
  7464. height: math.unit(1.3, "meters"),
  7465. weight: math.unit(100, "lb"),
  7466. name: "Legged",
  7467. image: {
  7468. source: "./media/characters/teal/legged.svg",
  7469. extra: 462 / 437,
  7470. bottom: 24 / 486
  7471. }
  7472. },
  7473. naga: {
  7474. height: math.unit(5.4, "meters"),
  7475. weight: math.unit(4000, "lb"),
  7476. name: "Naga",
  7477. image: {
  7478. source: "./media/characters/teal/naga.svg",
  7479. extra: 1902 / 1858,
  7480. bottom: 0 / 1902
  7481. }
  7482. },
  7483. hand: {
  7484. height: math.unit(0.52, "meters"),
  7485. name: "Hand",
  7486. image: {
  7487. source: "./media/characters/teal/hand.svg"
  7488. }
  7489. },
  7490. maw: {
  7491. height: math.unit(0.43, "meters"),
  7492. name: "Maw",
  7493. image: {
  7494. source: "./media/characters/teal/maw.svg"
  7495. }
  7496. },
  7497. slit: {
  7498. height: math.unit(0.25, "meters"),
  7499. name: "Slit",
  7500. image: {
  7501. source: "./media/characters/teal/slit.svg"
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(2.75, "meters"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(300, "feet")
  7514. },
  7515. {
  7516. name: "Macro+",
  7517. height: math.unit(2000, "feet")
  7518. },
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7523. {
  7524. frontCat: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(180, "lbs"),
  7527. name: "Front (Cat)",
  7528. image: {
  7529. source: "./media/characters/ravin-amulet/front-cat.svg"
  7530. }
  7531. },
  7532. frontCatAlt: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(180, "lbs"),
  7535. name: "Front (Alt, Cat)",
  7536. image: {
  7537. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7538. }
  7539. },
  7540. frontWerewolf: {
  7541. height: math.unit(6 * 1.2, "feet"),
  7542. weight: math.unit(225, "lbs"),
  7543. name: "Front (Werewolf)",
  7544. image: {
  7545. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7546. }
  7547. },
  7548. backWerewolf: {
  7549. height: math.unit(6 * 1.2, "feet"),
  7550. weight: math.unit(225, "lbs"),
  7551. name: "Back (Werewolf)",
  7552. image: {
  7553. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Nano",
  7560. height: math.unit(1, "micrometer")
  7561. },
  7562. {
  7563. name: "Micro",
  7564. height: math.unit(1, "inch")
  7565. },
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(6, "feet"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "Macro",
  7573. height: math.unit(60, "feet")
  7574. }
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(165, "lbs"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/fluoresce/front.svg"
  7586. }
  7587. }
  7588. },
  7589. [
  7590. {
  7591. name: "Micro",
  7592. height: math.unit(6, "cm")
  7593. },
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(5 + 7 / 12, "feet"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(56, "feet")
  7602. },
  7603. {
  7604. name: "Megamacro",
  7605. height: math.unit(1.9, "miles")
  7606. },
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(9 + 6 / 12, "feet"),
  7614. weight: math.unit(523, "lbs"),
  7615. name: "Side",
  7616. image: {
  7617. source: "./media/characters/aurora/side.svg"
  7618. }
  7619. }
  7620. },
  7621. [
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(9 + 6 / 12, "feet")
  7625. },
  7626. {
  7627. name: "Macro",
  7628. height: math.unit(96, "feet"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Macro+",
  7633. height: math.unit(243, "feet")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(194, "cm"),
  7642. weight: math.unit(90, "kg"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/ranek/front.svg"
  7646. }
  7647. },
  7648. side: {
  7649. height: math.unit(194, "cm"),
  7650. weight: math.unit(90, "kg"),
  7651. name: "Side",
  7652. image: {
  7653. source: "./media/characters/ranek/side.svg"
  7654. }
  7655. },
  7656. back: {
  7657. height: math.unit(194, "cm"),
  7658. weight: math.unit(90, "kg"),
  7659. name: "Back",
  7660. image: {
  7661. source: "./media/characters/ranek/back.svg"
  7662. }
  7663. },
  7664. feral: {
  7665. height: math.unit(30, "cm"),
  7666. weight: math.unit(1.6, "lbs"),
  7667. name: "Feral",
  7668. image: {
  7669. source: "./media/characters/ranek/feral.svg"
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(194, "cm"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(100, "meters")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(5 + 6 / 12, "feet"),
  7690. weight: math.unit(153, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/andrew-cooper/front.svg"
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Nano",
  7700. height: math.unit(1, "mm")
  7701. },
  7702. {
  7703. name: "Micro",
  7704. height: math.unit(2, "inches")
  7705. },
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(5 + 6 / 12, "feet"),
  7709. default: true
  7710. }
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(6, "feet"),
  7718. weight: math.unit(180, "lbs"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/akane-sato/front.svg",
  7722. extra: 1219 / 1140
  7723. }
  7724. },
  7725. back: {
  7726. height: math.unit(6, "feet"),
  7727. weight: math.unit(180, "lbs"),
  7728. name: "Back",
  7729. image: {
  7730. source: "./media/characters/akane-sato/back.svg",
  7731. extra: 1219 / 1170
  7732. }
  7733. },
  7734. },
  7735. [
  7736. {
  7737. name: "Normal",
  7738. height: math.unit(2.5, "meters")
  7739. },
  7740. {
  7741. name: "Macro",
  7742. height: math.unit(250, "meters"),
  7743. default: true
  7744. },
  7745. {
  7746. name: "Megamacro",
  7747. height: math.unit(25, "km")
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7753. {
  7754. front: {
  7755. height: math.unit(6, "feet"),
  7756. weight: math.unit(65, "kg"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/rook/front.svg",
  7760. extra: 960 / 950
  7761. }
  7762. }
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(8.8, "feet")
  7768. },
  7769. {
  7770. name: "Macro",
  7771. height: math.unit(88, "feet"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(8, "miles")
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(12 + 2 / 12, "feet"),
  7785. weight: math.unit(808, "lbs"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/prodigy/front.svg"
  7789. }
  7790. }
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(12 + 2 / 12, "feet"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Macro",
  7800. height: math.unit(143, "feet")
  7801. },
  7802. {
  7803. name: "Macro+",
  7804. height: math.unit(400, "feet")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(225, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/daniel/front.svg"
  7817. }
  7818. },
  7819. leaning: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(225, "lbs"),
  7822. name: "Leaning",
  7823. image: {
  7824. source: "./media/characters/daniel/leaning.svg"
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(1000, "feet"),
  7832. default: true
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(88, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/chiros/front.svg",
  7845. extra: 306 / 226
  7846. }
  7847. },
  7848. side: {
  7849. height: math.unit(6, "feet"),
  7850. weight: math.unit(88, "lbs"),
  7851. name: "Side",
  7852. image: {
  7853. source: "./media/characters/chiros/side.svg",
  7854. extra: 306 / 226
  7855. }
  7856. },
  7857. },
  7858. [
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(6, "cm"),
  7862. default: true
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7868. {
  7869. front: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(100, "lbs"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/selka/front.svg",
  7875. extra: 947 / 887
  7876. }
  7877. }
  7878. },
  7879. [
  7880. {
  7881. name: "Normal",
  7882. height: math.unit(5, "cm"),
  7883. default: true
  7884. },
  7885. ]
  7886. ))
  7887. characterMakers.push(() => makeCharacter(
  7888. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7889. {
  7890. front: {
  7891. height: math.unit(8 + 3 / 12, "feet"),
  7892. weight: math.unit(424, "lbs"),
  7893. name: "Front",
  7894. image: {
  7895. source: "./media/characters/verin/front.svg",
  7896. extra: 1845 / 1550
  7897. }
  7898. },
  7899. frontArmored: {
  7900. height: math.unit(8 + 3 / 12, "feet"),
  7901. weight: math.unit(424, "lbs"),
  7902. name: "Front (Armored)",
  7903. image: {
  7904. source: "./media/characters/verin/front-armor.svg",
  7905. extra: 1845 / 1550,
  7906. bottom: 0.01
  7907. }
  7908. },
  7909. back: {
  7910. height: math.unit(8 + 3 / 12, "feet"),
  7911. weight: math.unit(424, "lbs"),
  7912. name: "Back",
  7913. image: {
  7914. source: "./media/characters/verin/back.svg",
  7915. bottom: 0.1,
  7916. extra: 1
  7917. }
  7918. },
  7919. foot: {
  7920. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7921. name: "Foot",
  7922. image: {
  7923. source: "./media/characters/verin/foot.svg"
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(8 + 3 / 12, "feet")
  7931. },
  7932. {
  7933. name: "Minimacro",
  7934. height: math.unit(21, "feet"),
  7935. default: true
  7936. },
  7937. {
  7938. name: "Macro",
  7939. height: math.unit(626, "feet")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(2.718, "meters"),
  7948. weight: math.unit(150, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/sovrim-terraquian/front.svg"
  7952. }
  7953. },
  7954. back: {
  7955. height: math.unit(2.718, "meters"),
  7956. weight: math.unit(150, "lbs"),
  7957. name: "Back",
  7958. image: {
  7959. source: "./media/characters/sovrim-terraquian/back.svg"
  7960. }
  7961. }
  7962. },
  7963. [
  7964. {
  7965. name: "Micro",
  7966. height: math.unit(2, "inches")
  7967. },
  7968. {
  7969. name: "Small",
  7970. height: math.unit(1, "meter")
  7971. },
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(Math.E, "meters"),
  7975. default: true
  7976. },
  7977. {
  7978. name: "Macro",
  7979. height: math.unit(20, "meters")
  7980. },
  7981. {
  7982. name: "Macro+",
  7983. height: math.unit(400, "meters")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(7, "feet"),
  7992. weight: math.unit(489, "lbs"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/reece-silvermane/front.svg",
  7996. bottom: 0.02,
  7997. extra: 1
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(1.5, "miles"),
  8005. default: true
  8006. },
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(6, "feet"),
  8014. weight: math.unit(78, "kg"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/kane/front.svg",
  8018. extra: 978 / 899
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Normal",
  8025. height: math.unit(2.1, "m"),
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(1, "km"),
  8030. default: true
  8031. },
  8032. ]
  8033. ))
  8034. characterMakers.push(() => makeCharacter(
  8035. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8036. {
  8037. front: {
  8038. height: math.unit(6, "feet"),
  8039. weight: math.unit(200, "kg"),
  8040. name: "Front",
  8041. image: {
  8042. source: "./media/characters/tegon/front.svg",
  8043. bottom: 0.01,
  8044. extra: 1
  8045. }
  8046. },
  8047. },
  8048. [
  8049. {
  8050. name: "Micro",
  8051. height: math.unit(1, "inch")
  8052. },
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(6 + 3 / 12, "feet"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(300, "feet")
  8061. },
  8062. {
  8063. name: "Megamacro",
  8064. height: math.unit(69, "miles")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8070. {
  8071. side: {
  8072. height: math.unit(6, "feet"),
  8073. weight: math.unit(2304, "lbs"),
  8074. name: "Side",
  8075. image: {
  8076. source: "./media/characters/arcturax/side.svg",
  8077. extra: 790 / 376,
  8078. bottom: 0.01
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Micro",
  8085. height: math.unit(2, "inch")
  8086. },
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(6, "feet")
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(39, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Megamacro",
  8098. height: math.unit(7, "miles")
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(6, "feet"),
  8107. weight: math.unit(50, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/sentri/front.svg",
  8111. extra: 1750 / 1570,
  8112. bottom: 0.025
  8113. }
  8114. },
  8115. frontAlt: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(50, "lbs"),
  8118. name: "Front (Alt)",
  8119. image: {
  8120. source: "./media/characters/sentri/front-alt.svg",
  8121. extra: 1750 / 1570,
  8122. bottom: 0.025
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(15, "feet"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(2500, "feet")
  8135. }
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(5 + 8 / 12, "feet"),
  8143. weight: math.unit(130, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/corvin/front.svg",
  8147. extra: 1803 / 1629
  8148. }
  8149. },
  8150. frontShirt: {
  8151. height: math.unit(5 + 8 / 12, "feet"),
  8152. weight: math.unit(130, "lbs"),
  8153. name: "Front (Shirt)",
  8154. image: {
  8155. source: "./media/characters/corvin/front-shirt.svg",
  8156. extra: 1803 / 1629
  8157. }
  8158. },
  8159. frontPoncho: {
  8160. height: math.unit(5 + 8 / 12, "feet"),
  8161. weight: math.unit(130, "lbs"),
  8162. name: "Front (Poncho)",
  8163. image: {
  8164. source: "./media/characters/corvin/front-poncho.svg",
  8165. extra: 1803 / 1629
  8166. }
  8167. },
  8168. side: {
  8169. height: math.unit(5 + 8 / 12, "feet"),
  8170. weight: math.unit(130, "lbs"),
  8171. name: "Side",
  8172. image: {
  8173. source: "./media/characters/corvin/side.svg",
  8174. extra: 1012 / 945
  8175. }
  8176. },
  8177. back: {
  8178. height: math.unit(5 + 8 / 12, "feet"),
  8179. weight: math.unit(130, "lbs"),
  8180. name: "Back",
  8181. image: {
  8182. source: "./media/characters/corvin/back.svg",
  8183. extra: 1803 / 1629
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Micro",
  8190. height: math.unit(3, "inches")
  8191. },
  8192. {
  8193. name: "Normal",
  8194. height: math.unit(5 + 8 / 12, "feet")
  8195. },
  8196. {
  8197. name: "Macro",
  8198. height: math.unit(300, "feet"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Megamacro",
  8203. height: math.unit(500, "miles")
  8204. }
  8205. ]
  8206. ))
  8207. characterMakers.push(() => makeCharacter(
  8208. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8209. {
  8210. front: {
  8211. height: math.unit(6, "feet"),
  8212. weight: math.unit(135, "lbs"),
  8213. name: "Front",
  8214. image: {
  8215. source: "./media/characters/q/front.svg",
  8216. extra: 854 / 752,
  8217. bottom: 0.005
  8218. }
  8219. },
  8220. back: {
  8221. height: math.unit(6, "feet"),
  8222. weight: math.unit(130, "lbs"),
  8223. name: "Back",
  8224. image: {
  8225. source: "./media/characters/q/back.svg",
  8226. extra: 854 / 752
  8227. }
  8228. },
  8229. },
  8230. [
  8231. {
  8232. name: "Macro",
  8233. height: math.unit(90, "feet"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Extra Macro",
  8238. height: math.unit(300, "feet"),
  8239. },
  8240. {
  8241. name: "BIG WALF",
  8242. height: math.unit(750, "feet"),
  8243. },
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(6, "feet"),
  8251. weight: math.unit(150, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/carley/front.svg",
  8255. extra: 3927 / 3540,
  8256. bottom: 29.2 / 735
  8257. }
  8258. }
  8259. },
  8260. [
  8261. {
  8262. name: "Normal",
  8263. height: math.unit(6 + 3 / 12, "feet")
  8264. },
  8265. {
  8266. name: "Macro",
  8267. height: math.unit(185, "feet"),
  8268. default: true
  8269. },
  8270. {
  8271. name: "Megamacro",
  8272. height: math.unit(8, "miles"),
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(3, "feet"),
  8281. weight: math.unit(28, "lbs"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/citrine/front.svg"
  8285. }
  8286. }
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(3, "feet"),
  8292. default: true
  8293. }
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8298. {
  8299. front: {
  8300. height: math.unit(14, "feet"),
  8301. weight: math.unit(1450, "kg"),
  8302. capacity: math.unit(15, "people"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/aura-starwind/front.svg",
  8306. extra: 1440/1327,
  8307. bottom: 11/1451
  8308. }
  8309. },
  8310. side: {
  8311. height: math.unit(14, "feet"),
  8312. weight: math.unit(1450, "kg"),
  8313. capacity: math.unit(15, "people"),
  8314. name: "Side",
  8315. image: {
  8316. source: "./media/characters/aura-starwind/side.svg",
  8317. extra: 1654 / 1497
  8318. }
  8319. },
  8320. taur: {
  8321. height: math.unit(18, "feet"),
  8322. weight: math.unit(5500, "kg"),
  8323. capacity: math.unit(50, "people"),
  8324. name: "Taur",
  8325. image: {
  8326. source: "./media/characters/aura-starwind/taur.svg",
  8327. extra: 1760 / 1650
  8328. }
  8329. },
  8330. feral: {
  8331. height: math.unit(46, "feet"),
  8332. weight: math.unit(25000, "kg"),
  8333. capacity: math.unit(120, "people"),
  8334. name: "Feral",
  8335. image: {
  8336. source: "./media/characters/aura-starwind/feral.svg"
  8337. }
  8338. },
  8339. },
  8340. [
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(14, "feet"),
  8344. default: true
  8345. },
  8346. {
  8347. name: "Macro",
  8348. height: math.unit(50, "meters")
  8349. },
  8350. {
  8351. name: "Megamacro",
  8352. height: math.unit(5000, "meters")
  8353. },
  8354. {
  8355. name: "Gigamacro",
  8356. height: math.unit(100000, "kilometers")
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(2 + 7 / 12, "feet"),
  8365. weight: math.unit(32, "lbs"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/rivet/front.svg",
  8369. extra: 1716 / 1658,
  8370. bottom: 0.03
  8371. }
  8372. },
  8373. foot: {
  8374. height: math.unit(0.551, "feet"),
  8375. name: "Rivet's Foot",
  8376. image: {
  8377. source: "./media/characters/rivet/foot.svg"
  8378. },
  8379. rename: true
  8380. }
  8381. },
  8382. [
  8383. {
  8384. name: "Micro",
  8385. height: math.unit(1.5, "inches"),
  8386. },
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(2 + 7 / 12, "feet"),
  8390. default: true
  8391. },
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(85, "feet")
  8395. },
  8396. {
  8397. name: "Megamacro",
  8398. height: math.unit(2.2, "km")
  8399. }
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(5 + 9 / 12, "feet"),
  8407. weight: math.unit(150, "lbs"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/coffee/front.svg",
  8411. extra: 3666 / 3032,
  8412. bottom: 0.04
  8413. }
  8414. },
  8415. foot: {
  8416. height: math.unit(1.29, "feet"),
  8417. name: "Foot",
  8418. image: {
  8419. source: "./media/characters/coffee/foot.svg"
  8420. }
  8421. },
  8422. },
  8423. [
  8424. {
  8425. name: "Micro",
  8426. height: math.unit(2, "inches"),
  8427. },
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(5 + 9 / 12, "feet"),
  8431. default: true
  8432. },
  8433. {
  8434. name: "Macro",
  8435. height: math.unit(800, "feet")
  8436. },
  8437. {
  8438. name: "Megamacro",
  8439. height: math.unit(25, "miles")
  8440. }
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(200, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/chari-gal/front.svg",
  8452. extra: 1568 / 1385,
  8453. bottom: 0.047
  8454. }
  8455. },
  8456. gigantamax: {
  8457. height: math.unit(6 * 16, "feet"),
  8458. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8459. name: "Gigantamax",
  8460. image: {
  8461. source: "./media/characters/chari-gal/gigantamax.svg",
  8462. extra: 1124 / 888,
  8463. bottom: 0.03
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5 + 7 / 12, "feet")
  8471. },
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(200, "feet"),
  8475. default: true
  8476. }
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(6, "feet"),
  8484. weight: math.unit(150, "lbs"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/nova/front.svg",
  8488. extra: 5000 / 4722,
  8489. bottom: 0.02
  8490. }
  8491. }
  8492. },
  8493. [
  8494. {
  8495. name: "Micro-",
  8496. height: math.unit(0.8, "inches")
  8497. },
  8498. {
  8499. name: "Micro",
  8500. height: math.unit(2, "inches"),
  8501. default: true
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8507. {
  8508. front: {
  8509. height: math.unit(3 + 1 / 12, "feet"),
  8510. weight: math.unit(21.7, "lbs"),
  8511. name: "Front",
  8512. image: {
  8513. source: "./media/characters/argent/front.svg",
  8514. extra: 1471 / 1331,
  8515. bottom: 100.8 / 1575.5
  8516. }
  8517. }
  8518. },
  8519. [
  8520. {
  8521. name: "Micro",
  8522. height: math.unit(2, "inches")
  8523. },
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(3 + 1 / 12, "feet"),
  8527. default: true
  8528. },
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(120, "feet")
  8532. },
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8537. {
  8538. lamp: {
  8539. height: math.unit(7 * 1559 / 989, "feet"),
  8540. name: "Magic Lamp",
  8541. image: {
  8542. source: "./media/characters/mira-al-cul/lamp.svg",
  8543. extra: 1617 / 1559
  8544. }
  8545. },
  8546. front: {
  8547. height: math.unit(7, "feet"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/mira-al-cul/front.svg",
  8551. extra: 1044 / 990
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Heavily Restricted",
  8558. height: math.unit(7 * 1559 / 989, "feet")
  8559. },
  8560. {
  8561. name: "Freshly Freed",
  8562. height: math.unit(50 * 1559 / 989, "feet")
  8563. },
  8564. {
  8565. name: "World Encompassing",
  8566. height: math.unit(10000 * 1559 / 989, "miles")
  8567. },
  8568. {
  8569. name: "Galactic",
  8570. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8571. },
  8572. {
  8573. name: "Palmed Universe",
  8574. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8575. default: true
  8576. },
  8577. {
  8578. name: "Multiversal Matriarch",
  8579. height: math.unit(8.87e10, "yottameters")
  8580. },
  8581. {
  8582. name: "Void Mother",
  8583. height: math.unit(3.14e110, "yottaparsecs")
  8584. },
  8585. {
  8586. name: "Toying with Transcendence",
  8587. height: math.unit(1e307, "meters")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8593. {
  8594. front: {
  8595. height: math.unit(17 + 1 / 12, "feet"),
  8596. weight: math.unit(476.2 * 5, "lbs"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/kuro-shi-uchū/front.svg",
  8600. extra: 2329 / 1835,
  8601. bottom: 0.02
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Micro",
  8608. height: math.unit(2, "inches")
  8609. },
  8610. {
  8611. name: "Normal",
  8612. height: math.unit(12, "meters")
  8613. },
  8614. {
  8615. name: "Planetary",
  8616. height: math.unit(0.00929, "AU"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "Universal",
  8621. height: math.unit(20, "gigaparsecs")
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(5 + 2 / 12, "feet"),
  8630. weight: math.unit(120, "lbs"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/katherine/front.svg",
  8634. extra: 2075 / 1969
  8635. }
  8636. },
  8637. dress: {
  8638. height: math.unit(5 + 2 / 12, "feet"),
  8639. weight: math.unit(120, "lbs"),
  8640. name: "Dress",
  8641. image: {
  8642. source: "./media/characters/katherine/dress.svg",
  8643. extra: 2258 / 2064
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Micro",
  8650. height: math.unit(1, "inches"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "Normal",
  8655. height: math.unit(5 + 2 / 12, "feet")
  8656. },
  8657. {
  8658. name: "Macro",
  8659. height: math.unit(100, "meters")
  8660. },
  8661. {
  8662. name: "Megamacro",
  8663. height: math.unit(80, "miles")
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(7 + 8 / 12, "feet"),
  8672. weight: math.unit(250, "lbs"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/yevis/front.svg",
  8676. extra: 1938 / 1755
  8677. }
  8678. }
  8679. },
  8680. [
  8681. {
  8682. name: "Mortal",
  8683. height: math.unit(7 + 8 / 12, "feet")
  8684. },
  8685. {
  8686. name: "Battle",
  8687. height: math.unit(25 + 11 / 12, "feet")
  8688. },
  8689. {
  8690. name: "Wrath",
  8691. height: math.unit(1654 + 11 / 12, "feet")
  8692. },
  8693. {
  8694. name: "Planet Destroyer",
  8695. height: math.unit(12000, "miles")
  8696. },
  8697. {
  8698. name: "Galaxy Conqueror",
  8699. height: math.unit(1.45, "zettameters"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Universal War",
  8704. height: math.unit(184, "gigaparsecs")
  8705. },
  8706. {
  8707. name: "Eternity War",
  8708. height: math.unit(1.98e55, "yottaparsecs")
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(5 + 8 / 12, "feet"),
  8717. weight: math.unit(63, "kg"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/xavier/front.svg",
  8721. extra: 944 / 883
  8722. }
  8723. },
  8724. frontStretch: {
  8725. height: math.unit(5 + 8 / 12, "feet"),
  8726. weight: math.unit(63, "kg"),
  8727. name: "Stretching",
  8728. image: {
  8729. source: "./media/characters/xavier/front-stretch.svg",
  8730. extra: 962 / 820
  8731. }
  8732. },
  8733. },
  8734. [
  8735. {
  8736. name: "Normal",
  8737. height: math.unit(5 + 8 / 12, "feet")
  8738. },
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(100, "meters"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "McLargeHuge",
  8746. height: math.unit(10, "miles")
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(5 + 5 / 12, "feet"),
  8755. weight: math.unit(150, "lb"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/joshii/front.svg",
  8759. extra: 765 / 653,
  8760. bottom: 51 / 816
  8761. }
  8762. },
  8763. foot: {
  8764. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8765. name: "Foot",
  8766. image: {
  8767. source: "./media/characters/joshii/foot.svg"
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Micro",
  8774. height: math.unit(2, "inches"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(5 + 5 / 12, "feet")
  8780. },
  8781. {
  8782. name: "Macro",
  8783. height: math.unit(785, "feet")
  8784. },
  8785. {
  8786. name: "Megamacro",
  8787. height: math.unit(24.5, "miles")
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(6, "feet"),
  8796. weight: math.unit(150, "lb"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/goddess-elizabeth/front.svg",
  8800. extra: 1800 / 1525,
  8801. bottom: 0.005
  8802. }
  8803. },
  8804. foot: {
  8805. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8806. name: "Foot",
  8807. image: {
  8808. source: "./media/characters/goddess-elizabeth/foot.svg"
  8809. }
  8810. },
  8811. mouth: {
  8812. height: math.unit(6, "feet"),
  8813. name: "Mouth",
  8814. image: {
  8815. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Micro",
  8822. height: math.unit(12, "feet")
  8823. },
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(80, "miles"),
  8827. default: true
  8828. },
  8829. {
  8830. name: "Macro",
  8831. height: math.unit(15000, "parsecs")
  8832. },
  8833. ]
  8834. ))
  8835. characterMakers.push(() => makeCharacter(
  8836. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8837. {
  8838. front: {
  8839. height: math.unit(5 + 9 / 12, "feet"),
  8840. weight: math.unit(144, "lb"),
  8841. name: "Front",
  8842. image: {
  8843. source: "./media/characters/kara/front.svg"
  8844. }
  8845. },
  8846. feet: {
  8847. height: math.unit(6 / 6.765, "feet"),
  8848. name: "Kara's Feet",
  8849. rename: true,
  8850. image: {
  8851. source: "./media/characters/kara/feet.svg"
  8852. }
  8853. },
  8854. },
  8855. [
  8856. {
  8857. name: "Normal",
  8858. height: math.unit(5 + 9 / 12, "feet")
  8859. },
  8860. {
  8861. name: "Macro",
  8862. height: math.unit(174, "feet"),
  8863. default: true
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(18, "feet"),
  8872. weight: math.unit(4050, "lb"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/tyrone/front.svg",
  8876. extra: 2405 / 2270,
  8877. bottom: 182 / 2587
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(18, "feet"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(300, "feet")
  8890. },
  8891. {
  8892. name: "Megamacro",
  8893. height: math.unit(15, "km")
  8894. },
  8895. {
  8896. name: "Gigamacro",
  8897. height: math.unit(500, "km")
  8898. },
  8899. {
  8900. name: "Teramacro",
  8901. height: math.unit(0.5, "gigameters")
  8902. },
  8903. {
  8904. name: "Omnimacro",
  8905. height: math.unit(1e252, "yottauniverse")
  8906. },
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(7 + 8 / 12, "feet"),
  8914. weight: math.unit(120, "lb"),
  8915. name: "Front",
  8916. image: {
  8917. source: "./media/characters/danny/front.svg",
  8918. extra: 1490 / 1350
  8919. }
  8920. },
  8921. back: {
  8922. height: math.unit(7 + 8 / 12, "feet"),
  8923. weight: math.unit(120, "lb"),
  8924. name: "Back",
  8925. image: {
  8926. source: "./media/characters/danny/back.svg",
  8927. extra: 1490 / 1350
  8928. }
  8929. },
  8930. },
  8931. [
  8932. {
  8933. name: "Normal",
  8934. height: math.unit(7 + 8 / 12, "feet"),
  8935. default: true
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(3.5, "inches"),
  8944. weight: math.unit(19, "grams"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/mallow/front.svg",
  8948. extra: 471 / 431
  8949. }
  8950. },
  8951. back: {
  8952. height: math.unit(3.5, "inches"),
  8953. weight: math.unit(19, "grams"),
  8954. name: "Back",
  8955. image: {
  8956. source: "./media/characters/mallow/back.svg",
  8957. extra: 471 / 431
  8958. }
  8959. },
  8960. },
  8961. [
  8962. {
  8963. name: "Normal",
  8964. height: math.unit(3.5, "inches"),
  8965. default: true
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(9, "feet"),
  8974. weight: math.unit(230, "kg"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/starry-aqua/front.svg"
  8978. }
  8979. },
  8980. back: {
  8981. height: math.unit(9, "feet"),
  8982. weight: math.unit(230, "kg"),
  8983. name: "Back",
  8984. image: {
  8985. source: "./media/characters/starry-aqua/back.svg"
  8986. }
  8987. },
  8988. hand: {
  8989. height: math.unit(9 * 0.1168, "feet"),
  8990. name: "Hand",
  8991. image: {
  8992. source: "./media/characters/starry-aqua/hand.svg"
  8993. }
  8994. },
  8995. foot: {
  8996. height: math.unit(9 * 0.18, "feet"),
  8997. name: "Foot",
  8998. image: {
  8999. source: "./media/characters/starry-aqua/foot.svg"
  9000. }
  9001. }
  9002. },
  9003. [
  9004. {
  9005. name: "Micro",
  9006. height: math.unit(3, "inches")
  9007. },
  9008. {
  9009. name: "Normal",
  9010. height: math.unit(9, "feet")
  9011. },
  9012. {
  9013. name: "Macro",
  9014. height: math.unit(300, "feet"),
  9015. default: true
  9016. },
  9017. {
  9018. name: "Megamacro",
  9019. height: math.unit(3200, "feet")
  9020. }
  9021. ]
  9022. ))
  9023. characterMakers.push(() => makeCharacter(
  9024. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9025. {
  9026. front: {
  9027. height: math.unit(15, "feet"),
  9028. weight: math.unit(5026, "lb"),
  9029. name: "Front",
  9030. image: {
  9031. source: "./media/characters/luka-towers/front.svg",
  9032. extra: 1269/1133,
  9033. bottom: 51/1320
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(15, "feet"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Minimacro",
  9045. height: math.unit(25, "feet")
  9046. },
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(320, "feet")
  9050. },
  9051. {
  9052. name: "Megamacro",
  9053. height: math.unit(35000, "feet")
  9054. },
  9055. {
  9056. name: "Gigamacro",
  9057. height: math.unit(4000, "miles")
  9058. },
  9059. {
  9060. name: "Teramacro",
  9061. height: math.unit(15000, "miles")
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(150, "lb"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/natalie-nightring/front.svg",
  9074. extra: 1,
  9075. bottom: 0.06
  9076. }
  9077. },
  9078. },
  9079. [
  9080. {
  9081. name: "Uh Oh",
  9082. height: math.unit(0.1, "mm")
  9083. },
  9084. {
  9085. name: "Small",
  9086. height: math.unit(3, "inches")
  9087. },
  9088. {
  9089. name: "Human Scale",
  9090. height: math.unit(6, "feet")
  9091. },
  9092. {
  9093. name: "Librarian",
  9094. height: math.unit(50, "feet"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Immense",
  9099. height: math.unit(200, "miles")
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9105. {
  9106. front: {
  9107. height: math.unit(6, "feet"),
  9108. weight: math.unit(180, "lbs"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/danni-rosie/front.svg",
  9112. extra: 1260 / 1128,
  9113. bottom: 0.022
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Micro",
  9120. height: math.unit(2, "inches"),
  9121. default: true
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(5 + 9 / 12, "feet"),
  9130. weight: math.unit(220, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/samantha-kruse/front.svg",
  9134. extra: (985 / 935),
  9135. bottom: 0.03
  9136. }
  9137. },
  9138. frontUndressed: {
  9139. height: math.unit(5 + 9 / 12, "feet"),
  9140. weight: math.unit(220, "lb"),
  9141. name: "Front (Undressed)",
  9142. image: {
  9143. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9144. extra: (973 / 923),
  9145. bottom: 0.025
  9146. }
  9147. },
  9148. fat: {
  9149. height: math.unit(5 + 9 / 12, "feet"),
  9150. weight: math.unit(900, "lb"),
  9151. name: "Front (Fat)",
  9152. image: {
  9153. source: "./media/characters/samantha-kruse/fat.svg",
  9154. extra: 2688 / 2561
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(5 + 9 / 12, "feet"),
  9162. default: true
  9163. }
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9168. {
  9169. back: {
  9170. height: math.unit(5 + 4 / 12, "feet"),
  9171. weight: math.unit(4963, "lb"),
  9172. name: "Back",
  9173. image: {
  9174. source: "./media/characters/amelia-rosie/back.svg",
  9175. extra: 1113 / 963,
  9176. bottom: 0.01
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Level 0",
  9183. height: math.unit(5 + 4 / 12, "feet")
  9184. },
  9185. {
  9186. name: "Level 1",
  9187. height: math.unit(164597, "feet"),
  9188. default: true
  9189. },
  9190. {
  9191. name: "Level 2",
  9192. height: math.unit(956243, "miles")
  9193. },
  9194. {
  9195. name: "Level 3",
  9196. height: math.unit(29421709423, "miles")
  9197. },
  9198. {
  9199. name: "Level 4",
  9200. height: math.unit(154, "lightyears")
  9201. },
  9202. {
  9203. name: "Level 5",
  9204. height: math.unit(4738272, "lightyears")
  9205. },
  9206. {
  9207. name: "Level 6",
  9208. height: math.unit(145787152896, "lightyears")
  9209. },
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9214. {
  9215. front: {
  9216. height: math.unit(5 + 11 / 12, "feet"),
  9217. weight: math.unit(65, "kg"),
  9218. name: "Front",
  9219. image: {
  9220. source: "./media/characters/rook-kitara/front.svg",
  9221. extra: 1347 / 1274,
  9222. bottom: 0.005
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Totally Unfair",
  9229. height: math.unit(1.8, "mm")
  9230. },
  9231. {
  9232. name: "Lap Rookie",
  9233. height: math.unit(1.4, "feet")
  9234. },
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(5 + 11 / 12, "feet"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "How Did This Happen",
  9242. height: math.unit(80, "miles")
  9243. }
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(7, "feet"),
  9251. weight: math.unit(300, "lb"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/pisces/front.svg",
  9255. extra: 2255 / 2115,
  9256. bottom: 0.03
  9257. }
  9258. },
  9259. back: {
  9260. height: math.unit(7, "feet"),
  9261. weight: math.unit(300, "lb"),
  9262. name: "Back",
  9263. image: {
  9264. source: "./media/characters/pisces/back.svg",
  9265. extra: 2146 / 2055,
  9266. bottom: 0.04
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(7, "feet"),
  9274. default: true
  9275. },
  9276. {
  9277. name: "Swimming Pool",
  9278. height: math.unit(12.2, "meters")
  9279. },
  9280. {
  9281. name: "Olympic Swimming Pool",
  9282. height: math.unit(56.3, "meters")
  9283. },
  9284. {
  9285. name: "Lake Superior",
  9286. height: math.unit(93900, "meters")
  9287. },
  9288. {
  9289. name: "Mediterranean Sea",
  9290. height: math.unit(644457, "meters")
  9291. },
  9292. {
  9293. name: "World's Oceans",
  9294. height: math.unit(4567491, "meters")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(2.3, "meters"),
  9303. weight: math.unit(120, "kg"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/zelas/front.svg"
  9307. }
  9308. },
  9309. side: {
  9310. height: math.unit(2.3, "meters"),
  9311. weight: math.unit(120, "kg"),
  9312. name: "Side",
  9313. image: {
  9314. source: "./media/characters/zelas/side.svg"
  9315. }
  9316. },
  9317. back: {
  9318. height: math.unit(2.3, "meters"),
  9319. weight: math.unit(120, "kg"),
  9320. name: "Back",
  9321. image: {
  9322. source: "./media/characters/zelas/back.svg"
  9323. }
  9324. },
  9325. foot: {
  9326. height: math.unit(1.116, "feet"),
  9327. name: "Foot",
  9328. image: {
  9329. source: "./media/characters/zelas/foot.svg"
  9330. }
  9331. },
  9332. },
  9333. [
  9334. {
  9335. name: "Normal",
  9336. height: math.unit(2.3, "meters")
  9337. },
  9338. {
  9339. name: "Macro",
  9340. height: math.unit(30, "meters"),
  9341. default: true
  9342. },
  9343. ]
  9344. ))
  9345. characterMakers.push(() => makeCharacter(
  9346. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9347. {
  9348. front: {
  9349. height: math.unit(1, "inch"),
  9350. weight: math.unit(0.21, "grams"),
  9351. name: "Front",
  9352. image: {
  9353. source: "./media/characters/talbot/front.svg",
  9354. extra: 594 / 544
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Micro",
  9361. height: math.unit(1, "inch"),
  9362. default: true
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9368. {
  9369. front: {
  9370. height: math.unit(3 + 3 / 12, "feet"),
  9371. weight: math.unit(51.8, "lb"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/fliss/front.svg",
  9375. extra: 840 / 640
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Teeny Tiny",
  9382. height: math.unit(1, "mm")
  9383. },
  9384. {
  9385. name: "Small",
  9386. height: math.unit(1, "inch"),
  9387. default: true
  9388. },
  9389. {
  9390. name: "Standard Sylveon",
  9391. height: math.unit(3 + 3 / 12, "feet")
  9392. },
  9393. {
  9394. name: "Large Nuisance",
  9395. height: math.unit(33, "feet")
  9396. },
  9397. {
  9398. name: "City Filler",
  9399. height: math.unit(3000, "feet")
  9400. },
  9401. {
  9402. name: "New Horizon",
  9403. height: math.unit(6000, "miles")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(5, "cm"),
  9412. weight: math.unit(1.94, "g"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/fleta/front.svg",
  9416. extra: 835 / 803
  9417. }
  9418. },
  9419. back: {
  9420. height: math.unit(5, "cm"),
  9421. weight: math.unit(1.94, "g"),
  9422. name: "Back",
  9423. image: {
  9424. source: "./media/characters/fleta/back.svg",
  9425. extra: 835 / 803
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Micro",
  9432. height: math.unit(5, "cm"),
  9433. default: true
  9434. },
  9435. ]
  9436. ))
  9437. characterMakers.push(() => makeCharacter(
  9438. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9439. {
  9440. front: {
  9441. height: math.unit(6, "feet"),
  9442. weight: math.unit(225, "lb"),
  9443. name: "Front",
  9444. image: {
  9445. source: "./media/characters/dominic/front.svg",
  9446. extra: 1770 / 1620,
  9447. bottom: 0.025
  9448. }
  9449. },
  9450. back: {
  9451. height: math.unit(6, "feet"),
  9452. weight: math.unit(225, "lb"),
  9453. name: "Back",
  9454. image: {
  9455. source: "./media/characters/dominic/back.svg",
  9456. extra: 1745 / 1620,
  9457. bottom: 0.065
  9458. }
  9459. },
  9460. },
  9461. [
  9462. {
  9463. name: "Nano",
  9464. height: math.unit(0.1, "mm")
  9465. },
  9466. {
  9467. name: "Micro-",
  9468. height: math.unit(1, "mm")
  9469. },
  9470. {
  9471. name: "Micro",
  9472. height: math.unit(4, "inches")
  9473. },
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(6 + 4 / 12, "feet"),
  9477. default: true
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(115, "feet")
  9482. },
  9483. {
  9484. name: "Macro+",
  9485. height: math.unit(955, "feet")
  9486. },
  9487. {
  9488. name: "Megamacro",
  9489. height: math.unit(8990, "feet")
  9490. },
  9491. {
  9492. name: "Gigmacro",
  9493. height: math.unit(9310, "miles")
  9494. },
  9495. {
  9496. name: "Teramacro",
  9497. height: math.unit(1567005010, "miles")
  9498. },
  9499. {
  9500. name: "Examacro",
  9501. height: math.unit(1425, "parsecs")
  9502. },
  9503. ]
  9504. ))
  9505. characterMakers.push(() => makeCharacter(
  9506. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9507. {
  9508. front: {
  9509. height: math.unit(400, "feet"),
  9510. weight: math.unit(44444444, "lb"),
  9511. name: "Front",
  9512. image: {
  9513. source: "./media/characters/major-colonel/front.svg"
  9514. }
  9515. },
  9516. back: {
  9517. height: math.unit(400, "feet"),
  9518. weight: math.unit(44444444, "lb"),
  9519. name: "Back",
  9520. image: {
  9521. source: "./media/characters/major-colonel/back.svg"
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Macro",
  9528. height: math.unit(400, "feet"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9535. {
  9536. catFront: {
  9537. height: math.unit(6, "feet"),
  9538. weight: math.unit(120, "lb"),
  9539. name: "Front (Cat Side)",
  9540. image: {
  9541. source: "./media/characters/axel-lycan/cat-front.svg",
  9542. extra: 430 / 402,
  9543. bottom: 43 / 472.35
  9544. }
  9545. },
  9546. catBack: {
  9547. height: math.unit(6, "feet"),
  9548. weight: math.unit(120, "lb"),
  9549. name: "Back (Cat Side)",
  9550. image: {
  9551. source: "./media/characters/axel-lycan/cat-back.svg",
  9552. extra: 447 / 419,
  9553. bottom: 23.3 / 469
  9554. }
  9555. },
  9556. wolfFront: {
  9557. height: math.unit(6, "feet"),
  9558. weight: math.unit(120, "lb"),
  9559. name: "Front (Wolf Side)",
  9560. image: {
  9561. source: "./media/characters/axel-lycan/wolf-front.svg",
  9562. extra: 485 / 456,
  9563. bottom: 19 / 504
  9564. }
  9565. },
  9566. wolfBack: {
  9567. height: math.unit(6, "feet"),
  9568. weight: math.unit(120, "lb"),
  9569. name: "Back (Wolf Side)",
  9570. image: {
  9571. source: "./media/characters/axel-lycan/wolf-back.svg",
  9572. extra: 475 / 438,
  9573. bottom: 39.2 / 514
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(1, "km"),
  9581. default: true
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(5 + 9 / 12, "feet"),
  9590. weight: math.unit(175, "lb"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/vanrel-hyena/front.svg",
  9594. extra: 1086 / 1010,
  9595. bottom: 0.04
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(5 + 9 / 12, "feet"),
  9603. default: true
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9609. {
  9610. front: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(103, "lb"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/abbott-absol/front.svg",
  9616. extra: 2010 / 1842
  9617. }
  9618. },
  9619. },
  9620. [
  9621. {
  9622. name: "Megamicro",
  9623. height: math.unit(0.1, "mm")
  9624. },
  9625. {
  9626. name: "Micro",
  9627. height: math.unit(1, "inch")
  9628. },
  9629. {
  9630. name: "Normal",
  9631. height: math.unit(6, "feet"),
  9632. default: true
  9633. },
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9638. {
  9639. front: {
  9640. height: math.unit(6, "feet"),
  9641. weight: math.unit(264, "lb"),
  9642. name: "Front",
  9643. image: {
  9644. source: "./media/characters/hector/front.svg",
  9645. extra: 2280 / 2130,
  9646. bottom: 0.07
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(12.25, "foot"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Macro",
  9658. height: math.unit(160, "feet")
  9659. },
  9660. ]
  9661. ))
  9662. characterMakers.push(() => makeCharacter(
  9663. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9664. {
  9665. front: {
  9666. height: math.unit(6, "feet"),
  9667. weight: math.unit(150, "lb"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/sal/front.svg",
  9671. extra: 1846 / 1699,
  9672. bottom: 0.04
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Megamacro",
  9679. height: math.unit(10, "miles"),
  9680. default: true
  9681. },
  9682. ]
  9683. ))
  9684. characterMakers.push(() => makeCharacter(
  9685. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9686. {
  9687. front: {
  9688. height: math.unit(3, "meters"),
  9689. weight: math.unit(450, "kg"),
  9690. name: "front",
  9691. image: {
  9692. source: "./media/characters/ranger/front.svg",
  9693. extra: 2401 / 2243,
  9694. bottom: 0.05
  9695. }
  9696. },
  9697. },
  9698. [
  9699. {
  9700. name: "Normal",
  9701. height: math.unit(3, "meters"),
  9702. default: true
  9703. },
  9704. ]
  9705. ))
  9706. characterMakers.push(() => makeCharacter(
  9707. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9708. {
  9709. front: {
  9710. height: math.unit(14, "feet"),
  9711. weight: math.unit(800, "kg"),
  9712. name: "Front",
  9713. image: {
  9714. source: "./media/characters/theresa/front.svg",
  9715. extra: 3575 / 3346,
  9716. bottom: 0.03
  9717. }
  9718. },
  9719. },
  9720. [
  9721. {
  9722. name: "Normal",
  9723. height: math.unit(14, "feet"),
  9724. default: true
  9725. },
  9726. ]
  9727. ))
  9728. characterMakers.push(() => makeCharacter(
  9729. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9730. {
  9731. front: {
  9732. height: math.unit(6, "feet"),
  9733. weight: math.unit(3, "kg"),
  9734. name: "Front",
  9735. image: {
  9736. source: "./media/characters/ine/front.svg",
  9737. extra: 678 / 539,
  9738. bottom: 0.023
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Normal",
  9745. height: math.unit(2.265, "feet"),
  9746. default: true
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(5, "feet"),
  9755. weight: math.unit(30, "kg"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/vial/front.svg",
  9759. extra: 1365 / 1277,
  9760. bottom: 0.04
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(5, "feet"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9774. {
  9775. side: {
  9776. height: math.unit(3.4, "meters"),
  9777. weight: math.unit(1000, "lb"),
  9778. name: "Side",
  9779. image: {
  9780. source: "./media/characters/rovoska/side.svg",
  9781. extra: 4403 / 1515
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(3.4, "meters"),
  9789. default: true
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(8, "feet"),
  9798. weight: math.unit(315, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/gunner-rotthbauer/front.svg"
  9802. }
  9803. },
  9804. back: {
  9805. height: math.unit(8, "feet"),
  9806. weight: math.unit(315, "lb"),
  9807. name: "Back",
  9808. image: {
  9809. source: "./media/characters/gunner-rotthbauer/back.svg"
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Micro",
  9816. height: math.unit(3.5, "inches")
  9817. },
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(8, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(250, "feet")
  9826. },
  9827. {
  9828. name: "Megamacro",
  9829. height: math.unit(1, "AU")
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(5 + 5 / 12, "feet"),
  9838. weight: math.unit(140, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/allatia/front.svg",
  9842. extra: 1227 / 1180,
  9843. bottom: 0.027
  9844. }
  9845. },
  9846. },
  9847. [
  9848. {
  9849. name: "Normal",
  9850. height: math.unit(5 + 5 / 12, "feet")
  9851. },
  9852. {
  9853. name: "Macro",
  9854. height: math.unit(250, "feet"),
  9855. default: true
  9856. },
  9857. {
  9858. name: "Megamacro",
  9859. height: math.unit(8, "miles")
  9860. }
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9865. {
  9866. front: {
  9867. height: math.unit(6, "feet"),
  9868. weight: math.unit(120, "lb"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/tene/front.svg",
  9872. extra: 1728 / 1578,
  9873. bottom: 0.022
  9874. }
  9875. },
  9876. stomping: {
  9877. height: math.unit(2.025, "meters"),
  9878. weight: math.unit(120, "lb"),
  9879. name: "Stomping",
  9880. image: {
  9881. source: "./media/characters/tene/stomping.svg",
  9882. extra: 938 / 873,
  9883. bottom: 0.01
  9884. }
  9885. },
  9886. sitting: {
  9887. height: math.unit(1, "meter"),
  9888. weight: math.unit(120, "lb"),
  9889. name: "Sitting",
  9890. image: {
  9891. source: "./media/characters/tene/sitting.svg",
  9892. extra: 437 / 415,
  9893. bottom: 0.1
  9894. }
  9895. },
  9896. feral: {
  9897. height: math.unit(3.9, "feet"),
  9898. weight: math.unit(250, "lb"),
  9899. name: "Feral",
  9900. image: {
  9901. source: "./media/characters/tene/feral.svg",
  9902. extra: 717 / 458,
  9903. bottom: 0.179
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(6, "feet")
  9911. },
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(300, "feet"),
  9915. default: true
  9916. },
  9917. {
  9918. name: "Megamacro",
  9919. height: math.unit(5, "miles")
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9925. {
  9926. side: {
  9927. height: math.unit(6, "feet"),
  9928. name: "Side",
  9929. image: {
  9930. source: "./media/characters/evander/side.svg",
  9931. extra: 877 / 477
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Normal",
  9938. height: math.unit(0.83, "meters"),
  9939. default: true
  9940. },
  9941. ]
  9942. ))
  9943. characterMakers.push(() => makeCharacter(
  9944. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9945. {
  9946. front: {
  9947. height: math.unit(12, "feet"),
  9948. weight: math.unit(1000, "lb"),
  9949. name: "Front",
  9950. image: {
  9951. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9952. extra: 1762 / 1611
  9953. }
  9954. },
  9955. back: {
  9956. height: math.unit(12, "feet"),
  9957. weight: math.unit(1000, "lb"),
  9958. name: "Back",
  9959. image: {
  9960. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9961. extra: 1762 / 1611
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(12, "feet"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "Kaiju",
  9973. height: math.unit(150, "feet")
  9974. },
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(6, "feet"),
  9982. weight: math.unit(150, "lb"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/zero-alurus/front.svg"
  9986. }
  9987. },
  9988. back: {
  9989. height: math.unit(6, "feet"),
  9990. weight: math.unit(150, "lb"),
  9991. name: "Back",
  9992. image: {
  9993. source: "./media/characters/zero-alurus/back.svg"
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Normal",
  10000. height: math.unit(5 + 10 / 12, "feet")
  10001. },
  10002. {
  10003. name: "Macro",
  10004. height: math.unit(60, "feet"),
  10005. default: true
  10006. },
  10007. {
  10008. name: "Macro+",
  10009. height: math.unit(450, "feet")
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10015. {
  10016. front: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(200, "lb"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/mega-shi/front.svg",
  10022. extra: 1279 / 1250,
  10023. bottom: 0.02
  10024. }
  10025. },
  10026. back: {
  10027. height: math.unit(6, "feet"),
  10028. weight: math.unit(200, "lb"),
  10029. name: "Back",
  10030. image: {
  10031. source: "./media/characters/mega-shi/back.svg",
  10032. extra: 1279 / 1250,
  10033. bottom: 0.02
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Micro",
  10040. height: math.unit(16 + 6 / 12, "feet")
  10041. },
  10042. {
  10043. name: "Third Dimension",
  10044. height: math.unit(40, "meters")
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(660, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Megamacro",
  10053. height: math.unit(10, "miles")
  10054. },
  10055. {
  10056. name: "Planetary Launch",
  10057. height: math.unit(500, "miles")
  10058. },
  10059. {
  10060. name: "Interstellar",
  10061. height: math.unit(1e9, "miles")
  10062. },
  10063. {
  10064. name: "Leaving the Universe",
  10065. height: math.unit(1, "gigaparsec")
  10066. },
  10067. {
  10068. name: "Travelling Universes",
  10069. height: math.unit(30e15, "parsecs")
  10070. },
  10071. ]
  10072. ))
  10073. characterMakers.push(() => makeCharacter(
  10074. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10075. {
  10076. front: {
  10077. height: math.unit(6, "feet"),
  10078. weight: math.unit(150, "lb"),
  10079. name: "Front",
  10080. image: {
  10081. source: "./media/characters/odyssey/front.svg",
  10082. extra: 1782 / 1582,
  10083. bottom: 0.01
  10084. }
  10085. },
  10086. side: {
  10087. height: math.unit(5.7, "feet"),
  10088. weight: math.unit(140, "lb"),
  10089. name: "Side",
  10090. image: {
  10091. source: "./media/characters/odyssey/side.svg",
  10092. extra: 6462 / 5700
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(5 + 4 / 12, "feet")
  10100. },
  10101. {
  10102. name: "Macro",
  10103. height: math.unit(1, "km")
  10104. },
  10105. {
  10106. name: "Megamacro",
  10107. height: math.unit(3000, "km")
  10108. },
  10109. {
  10110. name: "Gigamacro",
  10111. height: math.unit(1, "AU"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Omniversal",
  10116. height: math.unit(100e14, "lightyears")
  10117. },
  10118. ]
  10119. ))
  10120. characterMakers.push(() => makeCharacter(
  10121. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10122. {
  10123. front: {
  10124. height: math.unit(6, "feet"),
  10125. weight: math.unit(300, "lb"),
  10126. name: "Front",
  10127. image: {
  10128. source: "./media/characters/mekuto/front.svg",
  10129. extra: 921 / 832,
  10130. bottom: 0.03
  10131. }
  10132. },
  10133. hand: {
  10134. height: math.unit(6 / 10.24, "feet"),
  10135. name: "Hand",
  10136. image: {
  10137. source: "./media/characters/mekuto/hand.svg"
  10138. }
  10139. },
  10140. foot: {
  10141. height: math.unit(6 / 5.05, "feet"),
  10142. name: "Foot",
  10143. image: {
  10144. source: "./media/characters/mekuto/foot.svg"
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Minimicro",
  10151. height: math.unit(0.2, "inches")
  10152. },
  10153. {
  10154. name: "Micro",
  10155. height: math.unit(1.5, "inches")
  10156. },
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(5 + 11 / 12, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Minimacro",
  10164. height: math.unit(17 + 9 / 12, "feet")
  10165. },
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(177.5, "feet")
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(152, "miles")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6.5, "inches"),
  10181. weight: math.unit(13, "oz"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/dafydd-tomos/front.svg",
  10185. extra: 2990 / 2603,
  10186. bottom: 0.03
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Micro",
  10193. height: math.unit(6.5, "inches"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(150, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/splinter/front.svg",
  10207. extra: 2990 / 2882,
  10208. bottom: 0.04
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(150, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/splinter/back.svg",
  10217. extra: 2990 / 2882,
  10218. bottom: 0.04
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(6, "feet")
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(230, "meters"),
  10230. default: true
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(4 + 10 / 12, "feet"),
  10239. weight: math.unit(480, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/snow-gabumon/front.svg",
  10243. extra: 1140 / 963,
  10244. bottom: 0.058
  10245. }
  10246. },
  10247. back: {
  10248. height: math.unit(4 + 10 / 12, "feet"),
  10249. weight: math.unit(480, "lb"),
  10250. name: "Back",
  10251. image: {
  10252. source: "./media/characters/snow-gabumon/back.svg",
  10253. extra: 1115 / 962,
  10254. bottom: 0.041
  10255. }
  10256. },
  10257. frontUndresed: {
  10258. height: math.unit(4 + 10 / 12, "feet"),
  10259. weight: math.unit(480, "lb"),
  10260. name: "Front (Undressed)",
  10261. image: {
  10262. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10263. extra: 1061 / 960,
  10264. bottom: 0.045
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Micro",
  10271. height: math.unit(1, "inch")
  10272. },
  10273. {
  10274. name: "Normal",
  10275. height: math.unit(4 + 10 / 12, "feet"),
  10276. default: true
  10277. },
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(200, "feet")
  10281. },
  10282. {
  10283. name: "Megamacro",
  10284. height: math.unit(120, "miles")
  10285. },
  10286. {
  10287. name: "Gigamacro",
  10288. height: math.unit(9800, "miles")
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(1.7, "meters"),
  10297. weight: math.unit(140, "lb"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/moody/front.svg",
  10301. extra: 3226 / 3007,
  10302. bottom: 0.087
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Micro",
  10309. height: math.unit(1, "mm")
  10310. },
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(1.7, "meters"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Macro",
  10318. height: math.unit(80, "meters")
  10319. },
  10320. {
  10321. name: "Macro+",
  10322. height: math.unit(500, "meters")
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(6, "feet"),
  10331. weight: math.unit(150, "lb"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/zyas/front.svg",
  10335. extra: 1180 / 1120,
  10336. bottom: 0.045
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Normal",
  10343. height: math.unit(10, "feet"),
  10344. default: true
  10345. },
  10346. {
  10347. name: "Macro",
  10348. height: math.unit(500, "feet")
  10349. },
  10350. {
  10351. name: "Megamacro",
  10352. height: math.unit(5, "miles")
  10353. },
  10354. {
  10355. name: "Teramacro",
  10356. height: math.unit(150000, "miles")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/cuon/front.svg",
  10369. extra: 1390 / 1320,
  10370. bottom: 0.008
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Micro",
  10377. height: math.unit(3, "inches")
  10378. },
  10379. {
  10380. name: "Normal",
  10381. height: math.unit(18 + 9 / 12, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Macro",
  10386. height: math.unit(360, "feet")
  10387. },
  10388. {
  10389. name: "Megamacro",
  10390. height: math.unit(360, "miles")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(2.4, "meters"),
  10399. weight: math.unit(70, "kg"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/nyanuxk/front.svg",
  10403. extra: 1172 / 1084,
  10404. bottom: 0.065
  10405. }
  10406. },
  10407. side: {
  10408. height: math.unit(2.4, "meters"),
  10409. weight: math.unit(70, "kg"),
  10410. name: "Side",
  10411. image: {
  10412. source: "./media/characters/nyanuxk/side.svg",
  10413. extra: 1190 / 1132,
  10414. bottom: 0.007
  10415. }
  10416. },
  10417. back: {
  10418. height: math.unit(2.4, "meters"),
  10419. weight: math.unit(70, "kg"),
  10420. name: "Back",
  10421. image: {
  10422. source: "./media/characters/nyanuxk/back.svg",
  10423. extra: 1200 / 1141,
  10424. bottom: 0.015
  10425. }
  10426. },
  10427. foot: {
  10428. height: math.unit(0.52, "meters"),
  10429. name: "Foot",
  10430. image: {
  10431. source: "./media/characters/nyanuxk/foot.svg"
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Micro",
  10438. height: math.unit(2, "cm")
  10439. },
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(2.4, "meters"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Smaller Macro",
  10447. height: math.unit(120, "meters")
  10448. },
  10449. {
  10450. name: "Bigger Macro",
  10451. height: math.unit(1.2, "km")
  10452. },
  10453. {
  10454. name: "Megamacro",
  10455. height: math.unit(15, "kilometers")
  10456. },
  10457. {
  10458. name: "Gigamacro",
  10459. height: math.unit(2000, "km")
  10460. },
  10461. {
  10462. name: "Teramacro",
  10463. height: math.unit(500000, "km")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10469. {
  10470. side: {
  10471. height: math.unit(6, "feet"),
  10472. name: "Side",
  10473. image: {
  10474. source: "./media/characters/ailbhe/side.svg",
  10475. extra: 757 / 464,
  10476. bottom: 0.041
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(1.07, "meters"),
  10484. default: true
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(6, "feet"),
  10493. weight: math.unit(120, "kg"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/zevulfius/front.svg",
  10497. extra: 965 / 903
  10498. }
  10499. },
  10500. side: {
  10501. height: math.unit(6, "feet"),
  10502. weight: math.unit(120, "kg"),
  10503. name: "Side",
  10504. image: {
  10505. source: "./media/characters/zevulfius/side.svg",
  10506. extra: 939 / 900
  10507. }
  10508. },
  10509. back: {
  10510. height: math.unit(6, "feet"),
  10511. weight: math.unit(120, "kg"),
  10512. name: "Back",
  10513. image: {
  10514. source: "./media/characters/zevulfius/back.svg",
  10515. extra: 918 / 854,
  10516. bottom: 0.005
  10517. }
  10518. },
  10519. foot: {
  10520. height: math.unit(6 / 3.72, "feet"),
  10521. name: "Foot",
  10522. image: {
  10523. source: "./media/characters/zevulfius/foot.svg"
  10524. }
  10525. },
  10526. },
  10527. [
  10528. {
  10529. name: "Macro",
  10530. height: math.unit(750, "meters")
  10531. },
  10532. {
  10533. name: "Megamacro",
  10534. height: math.unit(20, "km"),
  10535. default: true
  10536. },
  10537. {
  10538. name: "Gigamacro",
  10539. height: math.unit(2000, "km")
  10540. },
  10541. {
  10542. name: "Teramacro",
  10543. height: math.unit(250000, "km")
  10544. },
  10545. ]
  10546. ))
  10547. characterMakers.push(() => makeCharacter(
  10548. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10549. {
  10550. front: {
  10551. height: math.unit(100, "feet"),
  10552. weight: math.unit(350, "kg"),
  10553. name: "Front",
  10554. image: {
  10555. source: "./media/characters/rikes/front.svg",
  10556. extra: 1565 / 1483,
  10557. bottom: 0.017
  10558. }
  10559. },
  10560. },
  10561. [
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(100, "feet"),
  10565. default: true
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(8, "feet"),
  10574. weight: math.unit(356, "lb"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/adam-silver-mane/front.svg",
  10578. extra: 1036/937,
  10579. bottom: 63/1099
  10580. }
  10581. },
  10582. side: {
  10583. height: math.unit(8, "feet"),
  10584. weight: math.unit(356, "lb"),
  10585. name: "Side",
  10586. image: {
  10587. source: "./media/characters/adam-silver-mane/side.svg",
  10588. extra: 997/901,
  10589. bottom: 59/1056
  10590. }
  10591. },
  10592. frontNsfw: {
  10593. height: math.unit(8, "feet"),
  10594. weight: math.unit(356, "lb"),
  10595. name: "Front (NSFW)",
  10596. image: {
  10597. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10598. extra: 1036/937,
  10599. bottom: 63/1099
  10600. }
  10601. },
  10602. sideNsfw: {
  10603. height: math.unit(8, "feet"),
  10604. weight: math.unit(356, "lb"),
  10605. name: "Side (NSFW)",
  10606. image: {
  10607. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10608. extra: 997/901,
  10609. bottom: 59/1056
  10610. }
  10611. },
  10612. dick: {
  10613. height: math.unit(2.1, "feet"),
  10614. name: "Dick",
  10615. image: {
  10616. source: "./media/characters/adam-silver-mane/dick.svg"
  10617. }
  10618. },
  10619. taur: {
  10620. height: math.unit(16, "feet"),
  10621. weight: math.unit(1500, "kg"),
  10622. name: "Taur",
  10623. image: {
  10624. source: "./media/characters/adam-silver-mane/taur.svg",
  10625. extra: 1713 / 1571,
  10626. bottom: 0.01
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(8, "feet")
  10634. },
  10635. {
  10636. name: "Minimacro",
  10637. height: math.unit(80, "feet")
  10638. },
  10639. {
  10640. name: "MDA",
  10641. height: math.unit(80, "meters")
  10642. },
  10643. {
  10644. name: "Macro",
  10645. height: math.unit(800, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Megamacro",
  10650. height: math.unit(8000, "feet")
  10651. },
  10652. {
  10653. name: "Gigamacro",
  10654. height: math.unit(800, "miles")
  10655. },
  10656. {
  10657. name: "Teramacro",
  10658. height: math.unit(80000, "miles")
  10659. },
  10660. {
  10661. name: "Celestial",
  10662. height: math.unit(8e6, "miles")
  10663. },
  10664. {
  10665. name: "Star Dragon",
  10666. height: math.unit(800000, "parsecs")
  10667. },
  10668. {
  10669. name: "Godly",
  10670. height: math.unit(800, "teraparsecs")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10676. {
  10677. front: {
  10678. height: math.unit(6, "feet"),
  10679. weight: math.unit(150, "lb"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/ky'owin/front.svg",
  10683. extra: 3888 / 3068,
  10684. bottom: 0.015
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Normal",
  10691. height: math.unit(6 + 8 / 12, "feet")
  10692. },
  10693. {
  10694. name: "Large",
  10695. height: math.unit(68, "feet")
  10696. },
  10697. {
  10698. name: "Macro",
  10699. height: math.unit(132, "feet")
  10700. },
  10701. {
  10702. name: "Macro+",
  10703. height: math.unit(340, "feet")
  10704. },
  10705. {
  10706. name: "Macro++",
  10707. height: math.unit(680, "feet"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Megamacro",
  10712. height: math.unit(1, "mile")
  10713. },
  10714. {
  10715. name: "Megamacro+",
  10716. height: math.unit(10, "miles")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(4, "feet"),
  10725. weight: math.unit(50, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/mal/front.svg",
  10729. extra: 785 / 724,
  10730. bottom: 0.07
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Micro",
  10737. height: math.unit(4, "inches")
  10738. },
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(4, "feet"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Macro",
  10746. height: math.unit(200, "feet")
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(6, "feet"),
  10755. weight: math.unit(150, "lb"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/jordan-deware/front.svg",
  10759. extra: 1191 / 1012
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Nano",
  10766. height: math.unit(0.01, "mm")
  10767. },
  10768. {
  10769. name: "Minimicro",
  10770. height: math.unit(1, "mm")
  10771. },
  10772. {
  10773. name: "Micro",
  10774. height: math.unit(0.5, "inches")
  10775. },
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(4, "feet"),
  10779. default: true
  10780. },
  10781. {
  10782. name: "Minimacro",
  10783. height: math.unit(40, "meters")
  10784. },
  10785. {
  10786. name: "Small Macro",
  10787. height: math.unit(400, "meters")
  10788. },
  10789. {
  10790. name: "Macro",
  10791. height: math.unit(4, "miles")
  10792. },
  10793. {
  10794. name: "Megamacro",
  10795. height: math.unit(40, "miles")
  10796. },
  10797. {
  10798. name: "Megamacro+",
  10799. height: math.unit(400, "miles")
  10800. },
  10801. {
  10802. name: "Gigamacro",
  10803. height: math.unit(400000, "miles")
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10809. {
  10810. side: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(150, "lb"),
  10813. name: "Side",
  10814. image: {
  10815. source: "./media/characters/kimiko/side.svg",
  10816. extra: 600 / 358
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(15, "feet"),
  10824. default: true
  10825. },
  10826. {
  10827. name: "Macro",
  10828. height: math.unit(220, "feet")
  10829. },
  10830. {
  10831. name: "Macro+",
  10832. height: math.unit(1450, "feet")
  10833. },
  10834. {
  10835. name: "Megamacro",
  10836. height: math.unit(11500, "feet")
  10837. },
  10838. {
  10839. name: "Gigamacro",
  10840. height: math.unit(9500, "miles")
  10841. },
  10842. {
  10843. name: "Teramacro",
  10844. height: math.unit(2208005005, "miles")
  10845. },
  10846. {
  10847. name: "Examacro",
  10848. height: math.unit(2750, "parsecs")
  10849. },
  10850. {
  10851. name: "Zettamacro",
  10852. height: math.unit(101500, "parsecs")
  10853. },
  10854. ]
  10855. ))
  10856. characterMakers.push(() => makeCharacter(
  10857. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10858. {
  10859. front: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(70, "kg"),
  10862. name: "Front",
  10863. image: {
  10864. source: "./media/characters/andrew-sleepy/front.svg"
  10865. }
  10866. },
  10867. side: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(70, "kg"),
  10870. name: "Side",
  10871. image: {
  10872. source: "./media/characters/andrew-sleepy/side.svg"
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Micro",
  10879. height: math.unit(1, "mm"),
  10880. default: true
  10881. },
  10882. ]
  10883. ))
  10884. characterMakers.push(() => makeCharacter(
  10885. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10886. {
  10887. front: {
  10888. height: math.unit(6, "feet"),
  10889. weight: math.unit(150, "lb"),
  10890. name: "Front",
  10891. image: {
  10892. source: "./media/characters/judio/front.svg",
  10893. extra: 1258 / 1110
  10894. }
  10895. },
  10896. },
  10897. [
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(5 + 6 / 12, "feet")
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(1000, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Megamacro",
  10909. height: math.unit(10, "miles")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(68, "kg"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/nomaxice/front.svg",
  10922. extra: 1498 / 1073,
  10923. bottom: 0.075
  10924. }
  10925. },
  10926. foot: {
  10927. height: math.unit(1.1, "feet"),
  10928. name: "Foot",
  10929. image: {
  10930. source: "./media/characters/nomaxice/foot.svg"
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Micro",
  10937. height: math.unit(8, "cm")
  10938. },
  10939. {
  10940. name: "Norm",
  10941. height: math.unit(1.82, "m")
  10942. },
  10943. {
  10944. name: "Norm+",
  10945. height: math.unit(8.8, "feet")
  10946. },
  10947. {
  10948. name: "Big",
  10949. height: math.unit(8, "meters"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(18, "meters")
  10955. },
  10956. {
  10957. name: "Macro+",
  10958. height: math.unit(88, "meters")
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(12, "feet"),
  10967. weight: math.unit(1.5, "tons"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/dydros/front.svg",
  10971. extra: 863 / 800,
  10972. bottom: 0.015
  10973. }
  10974. },
  10975. back: {
  10976. height: math.unit(12, "feet"),
  10977. weight: math.unit(1.5, "tons"),
  10978. name: "Back",
  10979. image: {
  10980. source: "./media/characters/dydros/back.svg",
  10981. extra: 900 / 843,
  10982. bottom: 0.005
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(12, "feet"),
  10990. default: true
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(6, "feet"),
  10999. weight: math.unit(100, "kg"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/riggi/front.svg",
  11003. extra: 5787 / 5303
  11004. }
  11005. },
  11006. hyper: {
  11007. height: math.unit(6 * 5 / 3, "feet"),
  11008. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11009. name: "Hyper",
  11010. image: {
  11011. source: "./media/characters/riggi/hyper.svg",
  11012. extra: 3595 / 3485
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Small Macro",
  11019. height: math.unit(50, "feet")
  11020. },
  11021. {
  11022. name: "Default",
  11023. height: math.unit(200, "feet"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Loom",
  11028. height: math.unit(10000, "feet")
  11029. },
  11030. {
  11031. name: "Cruising Altitude",
  11032. height: math.unit(30000, "feet")
  11033. },
  11034. {
  11035. name: "Megamacro",
  11036. height: math.unit(100, "miles")
  11037. },
  11038. {
  11039. name: "Continent Sized",
  11040. height: math.unit(2800, "miles")
  11041. },
  11042. {
  11043. name: "Earth Sized",
  11044. height: math.unit(8000, "miles")
  11045. },
  11046. ]
  11047. ))
  11048. characterMakers.push(() => makeCharacter(
  11049. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11050. {
  11051. front: {
  11052. height: math.unit(6, "feet"),
  11053. weight: math.unit(250, "lb"),
  11054. name: "Front",
  11055. image: {
  11056. source: "./media/characters/alexi/front.svg",
  11057. extra: 3483 / 3291,
  11058. bottom: 0.04
  11059. }
  11060. },
  11061. back: {
  11062. height: math.unit(6, "feet"),
  11063. weight: math.unit(250, "lb"),
  11064. name: "Back",
  11065. image: {
  11066. source: "./media/characters/alexi/back.svg",
  11067. extra: 3533 / 3356,
  11068. bottom: 0.021
  11069. }
  11070. },
  11071. frontTransforming: {
  11072. height: math.unit(8.58, "feet"),
  11073. weight: math.unit(1300, "lb"),
  11074. name: "Transforming",
  11075. image: {
  11076. source: "./media/characters/alexi/front-transforming.svg",
  11077. extra: 437 / 409,
  11078. bottom: 19 / 458.66
  11079. }
  11080. },
  11081. frontTransformed: {
  11082. height: math.unit(12.5, "feet"),
  11083. weight: math.unit(4000, "lb"),
  11084. name: "Transformed",
  11085. image: {
  11086. source: "./media/characters/alexi/front-transformed.svg",
  11087. extra: 639 / 614,
  11088. bottom: 30.55 / 671
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(14, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Minimacro",
  11100. height: math.unit(30, "meters")
  11101. },
  11102. {
  11103. name: "Macro",
  11104. height: math.unit(500, "meters")
  11105. },
  11106. {
  11107. name: "Megamacro",
  11108. height: math.unit(9000, "km")
  11109. },
  11110. {
  11111. name: "Teramacro",
  11112. height: math.unit(384000, "km")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11118. {
  11119. front: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(150, "lb"),
  11122. name: "Front",
  11123. image: {
  11124. source: "./media/characters/kayroo/front.svg",
  11125. extra: 1153 / 1038,
  11126. bottom: 0.06
  11127. }
  11128. },
  11129. foot: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Foot",
  11133. image: {
  11134. source: "./media/characters/kayroo/foot.svg"
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Normal",
  11141. height: math.unit(8, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Minimacro",
  11146. height: math.unit(250, "feet")
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(2800, "feet")
  11151. },
  11152. {
  11153. name: "Megamacro",
  11154. height: math.unit(5200, "feet")
  11155. },
  11156. {
  11157. name: "Gigamacro",
  11158. height: math.unit(27000, "feet")
  11159. },
  11160. {
  11161. name: "Omega",
  11162. height: math.unit(45000, "feet")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(18, "feet"),
  11171. weight: math.unit(5800, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/rhys/front.svg",
  11175. extra: 3386 / 3090,
  11176. bottom: 0.07
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Normal",
  11183. height: math.unit(18, "feet"),
  11184. default: true
  11185. },
  11186. {
  11187. name: "Working Size",
  11188. height: math.unit(200, "feet")
  11189. },
  11190. {
  11191. name: "Demolition Size",
  11192. height: math.unit(2000, "feet")
  11193. },
  11194. {
  11195. name: "Maximum Licensed Size",
  11196. height: math.unit(5, "miles")
  11197. },
  11198. {
  11199. name: "Maximum Observed Size",
  11200. height: math.unit(10, "yottameters")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(250, "lb"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/toto/front.svg",
  11213. extra: 527 / 479,
  11214. bottom: 0.05
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Micro",
  11221. height: math.unit(3, "feet")
  11222. },
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(10, "feet")
  11226. },
  11227. {
  11228. name: "Macro",
  11229. height: math.unit(150, "feet"),
  11230. default: true
  11231. },
  11232. {
  11233. name: "Megamacro",
  11234. height: math.unit(1200, "feet")
  11235. },
  11236. ]
  11237. ))
  11238. characterMakers.push(() => makeCharacter(
  11239. { name: "King", species: ["lion"], tags: ["anthro"] },
  11240. {
  11241. back: {
  11242. height: math.unit(6, "feet"),
  11243. weight: math.unit(150, "lb"),
  11244. name: "Back",
  11245. image: {
  11246. source: "./media/characters/king/back.svg"
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Micro",
  11253. height: math.unit(2, "inches")
  11254. },
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(8, "feet")
  11258. },
  11259. {
  11260. name: "Macro",
  11261. height: math.unit(200, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Megamacro",
  11266. height: math.unit(50, "miles")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(11, "feet"),
  11275. weight: math.unit(1400, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/cordite/front.svg",
  11279. extra: 1919/1827,
  11280. bottom: 40/1959
  11281. }
  11282. },
  11283. side: {
  11284. height: math.unit(11, "feet"),
  11285. weight: math.unit(1400, "lb"),
  11286. name: "Side",
  11287. image: {
  11288. source: "./media/characters/cordite/side.svg",
  11289. extra: 1908/1793,
  11290. bottom: 38/1946
  11291. }
  11292. },
  11293. back: {
  11294. height: math.unit(11, "feet"),
  11295. weight: math.unit(1400, "lb"),
  11296. name: "Back",
  11297. image: {
  11298. source: "./media/characters/cordite/back.svg",
  11299. extra: 1938/1837,
  11300. bottom: 10/1948
  11301. }
  11302. },
  11303. feral: {
  11304. height: math.unit(2, "feet"),
  11305. weight: math.unit(90, "lb"),
  11306. name: "Feral",
  11307. image: {
  11308. source: "./media/characters/cordite/feral.svg",
  11309. extra: 1260 / 755,
  11310. bottom: 0.05
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(11, "feet"),
  11318. default: true
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(6, "feet"),
  11327. weight: math.unit(150, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/pianostrong/front.svg",
  11331. extra: 6577 / 6254,
  11332. bottom: 0.02
  11333. }
  11334. },
  11335. side: {
  11336. height: math.unit(6, "feet"),
  11337. weight: math.unit(150, "lb"),
  11338. name: "Side",
  11339. image: {
  11340. source: "./media/characters/pianostrong/side.svg",
  11341. extra: 6106 / 5730
  11342. }
  11343. },
  11344. back: {
  11345. height: math.unit(6, "feet"),
  11346. weight: math.unit(150, "lb"),
  11347. name: "Back",
  11348. image: {
  11349. source: "./media/characters/pianostrong/back.svg",
  11350. extra: 6085 / 5733,
  11351. bottom: 0.01
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(100, "feet")
  11359. },
  11360. {
  11361. name: "Macro+",
  11362. height: math.unit(300, "feet"),
  11363. default: true
  11364. },
  11365. {
  11366. name: "Macro++",
  11367. height: math.unit(1000, "feet")
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11373. {
  11374. front: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/kona/front.svg",
  11380. extra: 2960 / 2629,
  11381. bottom: 0.005
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Normal",
  11388. height: math.unit(11 + 8 / 12, "feet")
  11389. },
  11390. {
  11391. name: "Macro",
  11392. height: math.unit(850, "feet"),
  11393. default: true
  11394. },
  11395. {
  11396. name: "Macro+",
  11397. height: math.unit(1.5, "km"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Megamacro",
  11402. height: math.unit(80, "miles")
  11403. },
  11404. {
  11405. name: "Gigamacro",
  11406. height: math.unit(3500, "miles")
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11412. {
  11413. side: {
  11414. height: math.unit(1.9, "meters"),
  11415. weight: math.unit(326, "kg"),
  11416. name: "Side",
  11417. image: {
  11418. source: "./media/characters/levi/side.svg",
  11419. extra: 1704 / 1334,
  11420. bottom: 0.02
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(1.9, "meters"),
  11428. default: true
  11429. },
  11430. {
  11431. name: "Macro",
  11432. height: math.unit(20, "meters")
  11433. },
  11434. {
  11435. name: "Macro+",
  11436. height: math.unit(200, "meters")
  11437. },
  11438. {
  11439. name: "Megamacro",
  11440. height: math.unit(2, "km")
  11441. },
  11442. {
  11443. name: "Megamacro+",
  11444. height: math.unit(20, "km")
  11445. },
  11446. {
  11447. name: "Gigamacro",
  11448. height: math.unit(2500, "km")
  11449. },
  11450. {
  11451. name: "Gigamacro+",
  11452. height: math.unit(120000, "km")
  11453. },
  11454. {
  11455. name: "Teramacro",
  11456. height: math.unit(7.77e6, "km")
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(6 + 4/12, "feet"),
  11465. weight: math.unit(190, "lb"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/bmc/front.svg",
  11469. extra: 1626/1472,
  11470. bottom: 79/1705
  11471. }
  11472. },
  11473. back: {
  11474. height: math.unit(6 + 4/12, "feet"),
  11475. weight: math.unit(190, "lb"),
  11476. name: "Back",
  11477. image: {
  11478. source: "./media/characters/bmc/back.svg",
  11479. extra: 1640/1479,
  11480. bottom: 45/1685
  11481. }
  11482. },
  11483. frontArmor: {
  11484. height: math.unit(6 + 4/12, "feet"),
  11485. weight: math.unit(190, "lb"),
  11486. name: "Front-armor",
  11487. image: {
  11488. source: "./media/characters/bmc/front-armor.svg",
  11489. extra: 1538/1468,
  11490. bottom: 79/1617
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Human-sized",
  11497. height: math.unit(6 + 4 / 12, "feet")
  11498. },
  11499. {
  11500. name: "Interactive Size",
  11501. height: math.unit(25, "feet")
  11502. },
  11503. {
  11504. name: "Small",
  11505. height: math.unit(250, "feet")
  11506. },
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(1250, "feet"),
  11510. default: true
  11511. },
  11512. {
  11513. name: "Good Day",
  11514. height: math.unit(88, "miles")
  11515. },
  11516. {
  11517. name: "Largest Measured Size",
  11518. height: math.unit(105.960, "galaxies")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(20, "feet"),
  11527. weight: math.unit(2016, "kg"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/sven-the-kaiju/front.svg",
  11531. extra: 1277/1250,
  11532. bottom: 35/1312
  11533. }
  11534. },
  11535. mouth: {
  11536. height: math.unit(1.85, "feet"),
  11537. name: "Mouth",
  11538. image: {
  11539. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11540. }
  11541. },
  11542. },
  11543. [
  11544. {
  11545. name: "Fairy",
  11546. height: math.unit(6, "inches")
  11547. },
  11548. {
  11549. name: "Normal",
  11550. height: math.unit(20, "feet"),
  11551. default: true
  11552. },
  11553. {
  11554. name: "Rampage",
  11555. height: math.unit(200, "feet")
  11556. },
  11557. {
  11558. name: "Archfey Forest Guardian",
  11559. height: math.unit(1, "mile")
  11560. },
  11561. ]
  11562. ))
  11563. characterMakers.push(() => makeCharacter(
  11564. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11565. {
  11566. front: {
  11567. height: math.unit(4, "meters"),
  11568. weight: math.unit(2, "tons"),
  11569. name: "Front",
  11570. image: {
  11571. source: "./media/characters/marik/front.svg",
  11572. extra: 1057 / 1003,
  11573. bottom: 0.08
  11574. }
  11575. },
  11576. },
  11577. [
  11578. {
  11579. name: "Normal",
  11580. height: math.unit(4, "meters"),
  11581. default: true
  11582. },
  11583. {
  11584. name: "Macro",
  11585. height: math.unit(20, "meters")
  11586. },
  11587. {
  11588. name: "Megamacro",
  11589. height: math.unit(50, "km")
  11590. },
  11591. {
  11592. name: "Gigamacro",
  11593. height: math.unit(100, "km")
  11594. },
  11595. {
  11596. name: "Alpha Macro",
  11597. height: math.unit(7.88e7, "yottameters")
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11603. {
  11604. front: {
  11605. height: math.unit(6, "feet"),
  11606. weight: math.unit(110, "lb"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/mel/front.svg",
  11610. extra: 736 / 617,
  11611. bottom: 0.017
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Pico",
  11618. height: math.unit(3, "pm")
  11619. },
  11620. {
  11621. name: "Nano",
  11622. height: math.unit(3, "nm")
  11623. },
  11624. {
  11625. name: "Micro",
  11626. height: math.unit(0.3, "mm"),
  11627. default: true
  11628. },
  11629. {
  11630. name: "Micro+",
  11631. height: math.unit(3, "mm")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(5 + 10.5 / 12, "feet")
  11636. },
  11637. ]
  11638. ))
  11639. characterMakers.push(() => makeCharacter(
  11640. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11641. {
  11642. kaiju: {
  11643. height: math.unit(1.75, "meters"),
  11644. weight: math.unit(55, "kg"),
  11645. name: "Kaiju",
  11646. image: {
  11647. source: "./media/characters/lykonous/kaiju.svg",
  11648. extra: 1055 / 946,
  11649. bottom: 0.135
  11650. }
  11651. },
  11652. },
  11653. [
  11654. {
  11655. name: "Normal",
  11656. height: math.unit(2.5, "meters"),
  11657. default: true
  11658. },
  11659. {
  11660. name: "Kaiju Dragon",
  11661. height: math.unit(60, "meters")
  11662. },
  11663. {
  11664. name: "Mega Kaiju",
  11665. height: math.unit(120, "km")
  11666. },
  11667. {
  11668. name: "Giga Kaiju",
  11669. height: math.unit(200, "megameters")
  11670. },
  11671. {
  11672. name: "Terra Kaiju",
  11673. height: math.unit(400, "gigameters")
  11674. },
  11675. {
  11676. name: "Kaiju Dragon God",
  11677. height: math.unit(13000, "exaparsecs")
  11678. },
  11679. ]
  11680. ))
  11681. characterMakers.push(() => makeCharacter(
  11682. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11683. {
  11684. front: {
  11685. height: math.unit(6, "feet"),
  11686. weight: math.unit(150, "lb"),
  11687. name: "Front",
  11688. image: {
  11689. source: "./media/characters/blü/front.svg",
  11690. extra: 1883 / 1564,
  11691. bottom: 0.031
  11692. }
  11693. },
  11694. },
  11695. [
  11696. {
  11697. name: "Normal",
  11698. height: math.unit(13, "feet"),
  11699. default: true
  11700. },
  11701. {
  11702. name: "Big Boi",
  11703. height: math.unit(150, "meters")
  11704. },
  11705. {
  11706. name: "Mini Stomper",
  11707. height: math.unit(300, "meters")
  11708. },
  11709. {
  11710. name: "Macro",
  11711. height: math.unit(1000, "meters")
  11712. },
  11713. {
  11714. name: "Megamacro",
  11715. height: math.unit(11000, "meters")
  11716. },
  11717. {
  11718. name: "Gigamacro",
  11719. height: math.unit(11000, "km")
  11720. },
  11721. {
  11722. name: "Teramacro",
  11723. height: math.unit(420000, "km")
  11724. },
  11725. {
  11726. name: "Examacro",
  11727. height: math.unit(120, "parsecs")
  11728. },
  11729. {
  11730. name: "God Tho",
  11731. height: math.unit(98000000000, "parsecs")
  11732. },
  11733. ]
  11734. ))
  11735. characterMakers.push(() => makeCharacter(
  11736. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11737. {
  11738. taurFront: {
  11739. height: math.unit(6, "feet"),
  11740. weight: math.unit(200, "lb"),
  11741. name: "Taur (Front)",
  11742. image: {
  11743. source: "./media/characters/scales/taur-front.svg",
  11744. extra: 1,
  11745. bottom: 0.05
  11746. }
  11747. },
  11748. taurBack: {
  11749. height: math.unit(6, "feet"),
  11750. weight: math.unit(200, "lb"),
  11751. name: "Taur (Back)",
  11752. image: {
  11753. source: "./media/characters/scales/taur-back.svg",
  11754. extra: 1,
  11755. bottom: 0.08
  11756. }
  11757. },
  11758. anthro: {
  11759. height: math.unit(6 * 7 / 12, "feet"),
  11760. weight: math.unit(100, "lb"),
  11761. name: "Anthro",
  11762. image: {
  11763. source: "./media/characters/scales/anthro.svg",
  11764. extra: 1,
  11765. bottom: 0.06
  11766. }
  11767. },
  11768. },
  11769. [
  11770. {
  11771. name: "Normal",
  11772. height: math.unit(12, "feet"),
  11773. default: true
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11779. {
  11780. front: {
  11781. height: math.unit(6, "feet"),
  11782. weight: math.unit(150, "lb"),
  11783. name: "Front",
  11784. image: {
  11785. source: "./media/characters/koragos/front.svg",
  11786. extra: 841 / 794,
  11787. bottom: 0.035
  11788. }
  11789. },
  11790. back: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(150, "lb"),
  11793. name: "Back",
  11794. image: {
  11795. source: "./media/characters/koragos/back.svg",
  11796. extra: 841 / 810,
  11797. bottom: 0.022
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(6 + 11 / 12, "feet"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(490, "feet")
  11810. },
  11811. {
  11812. name: "Megamacro",
  11813. height: math.unit(10, "miles")
  11814. },
  11815. {
  11816. name: "Gigamacro",
  11817. height: math.unit(50, "miles")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(250, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/xylrem/front.svg",
  11830. extra: 3323 / 3050,
  11831. bottom: 0.065
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(4, "feet")
  11839. },
  11840. {
  11841. name: "Normal",
  11842. height: math.unit(16, "feet"),
  11843. default: true
  11844. },
  11845. {
  11846. name: "Macro",
  11847. height: math.unit(2720, "feet")
  11848. },
  11849. {
  11850. name: "Megamacro",
  11851. height: math.unit(25000, "miles")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(8, "feet"),
  11860. weight: math.unit(250, "kg"),
  11861. name: "Front",
  11862. image: {
  11863. source: "./media/characters/ikideru/front.svg",
  11864. extra: 930 / 870,
  11865. bottom: 0.087
  11866. }
  11867. },
  11868. back: {
  11869. height: math.unit(8, "feet"),
  11870. weight: math.unit(250, "kg"),
  11871. name: "Back",
  11872. image: {
  11873. source: "./media/characters/ikideru/back.svg",
  11874. extra: 919 / 852,
  11875. bottom: 0.055
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Rare",
  11882. height: math.unit(8, "feet"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Playful Loom",
  11887. height: math.unit(80, "feet")
  11888. },
  11889. {
  11890. name: "City Leaner",
  11891. height: math.unit(230, "feet")
  11892. },
  11893. {
  11894. name: "Megamacro",
  11895. height: math.unit(2500, "feet")
  11896. },
  11897. {
  11898. name: "Gigamacro",
  11899. height: math.unit(26400, "feet")
  11900. },
  11901. {
  11902. name: "Tectonic Shifter",
  11903. height: math.unit(1.7, "megameters")
  11904. },
  11905. {
  11906. name: "Planet Carer",
  11907. height: math.unit(21, "megameters")
  11908. },
  11909. {
  11910. name: "God",
  11911. height: math.unit(11157.22, "parsecs")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(120, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/neo/front.svg"
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Micro",
  11930. height: math.unit(2, "inches"),
  11931. default: true
  11932. },
  11933. {
  11934. name: "Human Size",
  11935. height: math.unit(5 + 8 / 12, "feet")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(13 + 10 / 12, "feet"),
  11944. weight: math.unit(5320, "lb"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/chauncey-chantz/front.svg",
  11948. extra: 1587 / 1435,
  11949. bottom: 0.02
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Normal",
  11956. height: math.unit(13 + 10 / 12, "feet"),
  11957. default: true
  11958. },
  11959. {
  11960. name: "Macro",
  11961. height: math.unit(45, "feet")
  11962. },
  11963. {
  11964. name: "Megamacro",
  11965. height: math.unit(250, "miles")
  11966. },
  11967. {
  11968. name: "Planetary",
  11969. height: math.unit(10000, "miles")
  11970. },
  11971. {
  11972. name: "Galactic",
  11973. height: math.unit(40000, "parsecs")
  11974. },
  11975. {
  11976. name: "Universal",
  11977. height: math.unit(1, "yottameter")
  11978. },
  11979. ]
  11980. ))
  11981. characterMakers.push(() => makeCharacter(
  11982. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11983. {
  11984. front: {
  11985. height: math.unit(6, "feet"),
  11986. weight: math.unit(150, "lb"),
  11987. name: "Front",
  11988. image: {
  11989. source: "./media/characters/epifox/front.svg",
  11990. extra: 1,
  11991. bottom: 0.075
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Micro",
  11998. height: math.unit(6, "inches")
  11999. },
  12000. {
  12001. name: "Normal",
  12002. height: math.unit(12, "feet"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Macro",
  12007. height: math.unit(3810, "feet")
  12008. },
  12009. {
  12010. name: "Megamacro",
  12011. height: math.unit(500, "miles")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(1.8796, "m"),
  12020. weight: math.unit(230, "lb"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/colin-t/front.svg",
  12024. extra: 1272 / 1193,
  12025. bottom: 0.07
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Micro",
  12032. height: math.unit(0.571, "meters")
  12033. },
  12034. {
  12035. name: "Normal",
  12036. height: math.unit(1.8796, "meters"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Tall",
  12041. height: math.unit(4, "meters")
  12042. },
  12043. {
  12044. name: "Macro",
  12045. height: math.unit(67.241, "meters")
  12046. },
  12047. {
  12048. name: "Megamacro",
  12049. height: math.unit(371.856, "meters")
  12050. },
  12051. {
  12052. name: "Planetary",
  12053. height: math.unit(12631.5689, "km")
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12059. {
  12060. front: {
  12061. height: math.unit(1.85, "meters"),
  12062. weight: math.unit(80, "kg"),
  12063. name: "Front",
  12064. image: {
  12065. source: "./media/characters/matvei/front.svg",
  12066. extra: 614 / 594,
  12067. bottom: 0.01
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Normal",
  12074. height: math.unit(1.85, "meters"),
  12075. default: true
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12081. {
  12082. front: {
  12083. height: math.unit(5 + 9 / 12, "feet"),
  12084. weight: math.unit(70, "lb"),
  12085. name: "Front",
  12086. image: {
  12087. source: "./media/characters/quincy/front.svg",
  12088. extra: 3041 / 2751
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(5 + 9 / 12, "feet"),
  12093. weight: math.unit(70, "lb"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/quincy/back.svg",
  12097. extra: 3041 / 2751
  12098. }
  12099. },
  12100. flying: {
  12101. height: math.unit(5 + 4 / 12, "feet"),
  12102. weight: math.unit(70, "lb"),
  12103. name: "Flying",
  12104. image: {
  12105. source: "./media/characters/quincy/flying.svg",
  12106. extra: 1044 / 930
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Micro",
  12113. height: math.unit(3, "cm")
  12114. },
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(5 + 9 / 12, "feet")
  12118. },
  12119. {
  12120. name: "Macro",
  12121. height: math.unit(200, "meters"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Megamacro",
  12126. height: math.unit(1000, "meters")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(3 + 11/12, "feet"),
  12135. weight: math.unit(50, "lb"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/vanrel/front.svg",
  12139. extra: 1104/949,
  12140. bottom: 52/1156
  12141. }
  12142. },
  12143. back: {
  12144. height: math.unit(3 + 11/12, "feet"),
  12145. weight: math.unit(50, "lb"),
  12146. name: "Back",
  12147. image: {
  12148. source: "./media/characters/vanrel/back.svg",
  12149. extra: 1119/976,
  12150. bottom: 37/1156
  12151. }
  12152. },
  12153. tome: {
  12154. height: math.unit(1.35, "feet"),
  12155. weight: math.unit(10, "lb"),
  12156. name: "Vanrel's Tome",
  12157. rename: true,
  12158. image: {
  12159. source: "./media/characters/vanrel/tome.svg"
  12160. }
  12161. },
  12162. beans: {
  12163. height: math.unit(0.89, "feet"),
  12164. name: "Beans",
  12165. image: {
  12166. source: "./media/characters/vanrel/beans.svg"
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(3 + 11/12, "feet"),
  12174. default: true
  12175. },
  12176. ]
  12177. ))
  12178. characterMakers.push(() => makeCharacter(
  12179. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12180. {
  12181. front: {
  12182. height: math.unit(7 + 5 / 12, "feet"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/kuiper-vanrel/front.svg",
  12186. extra: 1219/1169,
  12187. bottom: 69/1288
  12188. }
  12189. },
  12190. back: {
  12191. height: math.unit(7 + 5 / 12, "feet"),
  12192. name: "Back",
  12193. image: {
  12194. source: "./media/characters/kuiper-vanrel/back.svg",
  12195. extra: 1236/1193,
  12196. bottom: 27/1263
  12197. }
  12198. },
  12199. foot: {
  12200. height: math.unit(0.55, "meters"),
  12201. name: "Foot",
  12202. image: {
  12203. source: "./media/characters/kuiper-vanrel/foot.svg",
  12204. }
  12205. },
  12206. battle: {
  12207. height: math.unit(6.824, "feet"),
  12208. name: "Battle",
  12209. image: {
  12210. source: "./media/characters/kuiper-vanrel/battle.svg",
  12211. extra: 1466 / 1327,
  12212. bottom: 29 / 1492.5
  12213. }
  12214. },
  12215. meerkui: {
  12216. height: math.unit(18, "inches"),
  12217. name: "Meerkui",
  12218. image: {
  12219. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12220. extra: 1354/1289,
  12221. bottom: 69/1423
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(7 + 5 / 12, "feet"),
  12229. default: true
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(8 + 5 / 12, "feet"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/keset-vanrel/front.svg",
  12241. extra: 1231/1148,
  12242. bottom: 82/1313
  12243. }
  12244. },
  12245. back: {
  12246. height: math.unit(8 + 5 / 12, "feet"),
  12247. name: "Back",
  12248. image: {
  12249. source: "./media/characters/keset-vanrel/back.svg",
  12250. extra: 1240/1174,
  12251. bottom: 33/1273
  12252. }
  12253. },
  12254. hand: {
  12255. height: math.unit(0.6, "meters"),
  12256. name: "Hand",
  12257. image: {
  12258. source: "./media/characters/keset-vanrel/hand.svg"
  12259. }
  12260. },
  12261. foot: {
  12262. height: math.unit(0.94978, "meters"),
  12263. name: "Foot",
  12264. image: {
  12265. source: "./media/characters/keset-vanrel/foot.svg"
  12266. }
  12267. },
  12268. battle: {
  12269. height: math.unit(7.408, "feet"),
  12270. name: "Battle",
  12271. image: {
  12272. source: "./media/characters/keset-vanrel/battle.svg",
  12273. extra: 1890 / 1386,
  12274. bottom: 73.28 / 1970
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(8 + 5 / 12, "feet"),
  12282. default: true
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(6, "feet"),
  12291. weight: math.unit(150, "lb"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/neos/front.svg",
  12295. extra: 1696 / 992,
  12296. bottom: 0.14
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(54, "cm"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Macro",
  12308. height: math.unit(100, "m")
  12309. },
  12310. {
  12311. name: "Megamacro",
  12312. height: math.unit(10, "km")
  12313. },
  12314. {
  12315. name: "Megamacro+",
  12316. height: math.unit(100, "km")
  12317. },
  12318. {
  12319. name: "Gigamacro",
  12320. height: math.unit(100, "Mm")
  12321. },
  12322. {
  12323. name: "Teramacro",
  12324. height: math.unit(100, "Gm")
  12325. },
  12326. {
  12327. name: "Examacro",
  12328. height: math.unit(100, "Em")
  12329. },
  12330. {
  12331. name: "Godly",
  12332. height: math.unit(10000, "Ym")
  12333. },
  12334. {
  12335. name: "Beyond Godly",
  12336. height: math.unit(25, "multiverses")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12342. {
  12343. feminine: {
  12344. height: math.unit(5, "feet"),
  12345. weight: math.unit(100, "lb"),
  12346. name: "Feminine",
  12347. image: {
  12348. source: "./media/characters/sammy-mouse/feminine.svg",
  12349. extra: 2526 / 2425,
  12350. bottom: 0.123
  12351. }
  12352. },
  12353. masculine: {
  12354. height: math.unit(5, "feet"),
  12355. weight: math.unit(100, "lb"),
  12356. name: "Masculine",
  12357. image: {
  12358. source: "./media/characters/sammy-mouse/masculine.svg",
  12359. extra: 2526 / 2425,
  12360. bottom: 0.123
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Micro",
  12367. height: math.unit(5, "inches")
  12368. },
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(5, "feet"),
  12372. default: true
  12373. },
  12374. {
  12375. name: "Macro",
  12376. height: math.unit(60, "feet")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(4, "feet"),
  12385. weight: math.unit(50, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/kole/front.svg",
  12389. extra: 1423 / 1303,
  12390. bottom: 0.025
  12391. }
  12392. },
  12393. back: {
  12394. height: math.unit(4, "feet"),
  12395. weight: math.unit(50, "lb"),
  12396. name: "Back",
  12397. image: {
  12398. source: "./media/characters/kole/back.svg",
  12399. extra: 1426 / 1280,
  12400. bottom: 0.02
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(4, "feet"),
  12408. default: true
  12409. },
  12410. ]
  12411. ))
  12412. characterMakers.push(() => makeCharacter(
  12413. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12414. {
  12415. front: {
  12416. height: math.unit(2.5, "feet"),
  12417. weight: math.unit(32, "lb"),
  12418. name: "Front",
  12419. image: {
  12420. source: "./media/characters/rufran/front.svg",
  12421. extra: 1313/885,
  12422. bottom: 94/1407
  12423. }
  12424. },
  12425. side: {
  12426. height: math.unit(2.5, "feet"),
  12427. weight: math.unit(32, "lb"),
  12428. name: "Side",
  12429. image: {
  12430. source: "./media/characters/rufran/side.svg",
  12431. extra: 1109/852,
  12432. bottom: 118/1227
  12433. }
  12434. },
  12435. back: {
  12436. height: math.unit(2.5, "feet"),
  12437. weight: math.unit(32, "lb"),
  12438. name: "Back",
  12439. image: {
  12440. source: "./media/characters/rufran/back.svg",
  12441. extra: 1280/878,
  12442. bottom: 131/1411
  12443. }
  12444. },
  12445. mouth: {
  12446. height: math.unit(1.13, "feet"),
  12447. name: "Mouth",
  12448. image: {
  12449. source: "./media/characters/rufran/mouth.svg"
  12450. }
  12451. },
  12452. foot: {
  12453. height: math.unit(1.33, "feet"),
  12454. name: "Foot",
  12455. image: {
  12456. source: "./media/characters/rufran/foot.svg"
  12457. }
  12458. },
  12459. koboldFront: {
  12460. height: math.unit(2 + 6 / 12, "feet"),
  12461. weight: math.unit(20, "lb"),
  12462. name: "Front (Kobold)",
  12463. image: {
  12464. source: "./media/characters/rufran/kobold-front.svg",
  12465. extra: 2041 / 1839,
  12466. bottom: 0.055
  12467. }
  12468. },
  12469. koboldBack: {
  12470. height: math.unit(2 + 6 / 12, "feet"),
  12471. weight: math.unit(20, "lb"),
  12472. name: "Back (Kobold)",
  12473. image: {
  12474. source: "./media/characters/rufran/kobold-back.svg",
  12475. extra: 2054 / 1839,
  12476. bottom: 0.01
  12477. }
  12478. },
  12479. koboldHand: {
  12480. height: math.unit(0.2166, "meters"),
  12481. name: "Hand (Kobold)",
  12482. image: {
  12483. source: "./media/characters/rufran/kobold-hand.svg"
  12484. }
  12485. },
  12486. koboldFoot: {
  12487. height: math.unit(0.185, "meters"),
  12488. name: "Foot (Kobold)",
  12489. image: {
  12490. source: "./media/characters/rufran/kobold-foot.svg"
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Micro",
  12497. height: math.unit(1, "inch")
  12498. },
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(2 + 6 / 12, "feet"),
  12502. default: true
  12503. },
  12504. {
  12505. name: "Big",
  12506. height: math.unit(60, "feet")
  12507. },
  12508. {
  12509. name: "Macro",
  12510. height: math.unit(325, "feet")
  12511. },
  12512. ]
  12513. ))
  12514. characterMakers.push(() => makeCharacter(
  12515. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12516. {
  12517. front: {
  12518. height: math.unit(0.3, "meters"),
  12519. weight: math.unit(3.5, "kg"),
  12520. name: "Front",
  12521. image: {
  12522. source: "./media/characters/chip/front.svg",
  12523. extra: 748 / 674
  12524. }
  12525. },
  12526. },
  12527. [
  12528. {
  12529. name: "Micro",
  12530. height: math.unit(1, "inch"),
  12531. default: true
  12532. },
  12533. ]
  12534. ))
  12535. characterMakers.push(() => makeCharacter(
  12536. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12537. {
  12538. side: {
  12539. height: math.unit(2.3, "meters"),
  12540. weight: math.unit(3500, "lb"),
  12541. name: "Side",
  12542. image: {
  12543. source: "./media/characters/torvid/side.svg",
  12544. extra: 1972 / 722,
  12545. bottom: 0.035
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Normal",
  12552. height: math.unit(2.3, "meters"),
  12553. default: true
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12559. {
  12560. front: {
  12561. height: math.unit(2, "meters"),
  12562. weight: math.unit(150.5, "kg"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/susan/front.svg",
  12566. extra: 693 / 635,
  12567. bottom: 0.05
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Megamacro",
  12574. height: math.unit(505, "miles"),
  12575. default: true
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(6, "feet"),
  12584. weight: math.unit(150, "lb"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/raindrops/front.svg",
  12588. extra: 2655 / 2461,
  12589. bottom: 49 / 2705
  12590. }
  12591. },
  12592. back: {
  12593. height: math.unit(6, "feet"),
  12594. weight: math.unit(150, "lb"),
  12595. name: "Back",
  12596. image: {
  12597. source: "./media/characters/raindrops/back.svg",
  12598. extra: 2574 / 2400,
  12599. bottom: 65 / 2634
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Micro",
  12606. height: math.unit(6, "inches")
  12607. },
  12608. {
  12609. name: "Normal",
  12610. height: math.unit(6 + 2 / 12, "feet")
  12611. },
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(131, "feet"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Megamacro",
  12619. height: math.unit(15, "miles")
  12620. },
  12621. {
  12622. name: "Gigamacro",
  12623. height: math.unit(4000, "miles")
  12624. },
  12625. {
  12626. name: "Teramacro",
  12627. height: math.unit(315000, "miles")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(2.794, "meters"),
  12636. weight: math.unit(325, "kg"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/tezwa/front.svg",
  12640. extra: 2083 / 1906,
  12641. bottom: 0.031
  12642. }
  12643. },
  12644. foot: {
  12645. height: math.unit(0.687, "meters"),
  12646. name: "Foot",
  12647. image: {
  12648. source: "./media/characters/tezwa/foot.svg"
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(9 + 2 / 12, "feet"),
  12656. default: true
  12657. },
  12658. ]
  12659. ))
  12660. characterMakers.push(() => makeCharacter(
  12661. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12662. {
  12663. front: {
  12664. height: math.unit(58, "feet"),
  12665. weight: math.unit(89000, "lb"),
  12666. name: "Front",
  12667. image: {
  12668. source: "./media/characters/typhus/front.svg",
  12669. extra: 816 / 800,
  12670. bottom: 0.065
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Macro",
  12677. height: math.unit(58, "feet"),
  12678. default: true
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(12, "feet"),
  12687. weight: math.unit(6, "tonnes"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/lyra-von-wulf/front.svg",
  12691. extra: 1,
  12692. bottom: 0.10
  12693. }
  12694. },
  12695. frontMecha: {
  12696. height: math.unit(12, "feet"),
  12697. weight: math.unit(12, "tonnes"),
  12698. name: "Front (Mecha)",
  12699. image: {
  12700. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12701. extra: 1,
  12702. bottom: 0.042
  12703. }
  12704. },
  12705. maw: {
  12706. height: math.unit(2.2, "feet"),
  12707. name: "Maw",
  12708. image: {
  12709. source: "./media/characters/lyra-von-wulf/maw.svg"
  12710. }
  12711. },
  12712. },
  12713. [
  12714. {
  12715. name: "Normal",
  12716. height: math.unit(12, "feet"),
  12717. default: true
  12718. },
  12719. {
  12720. name: "Classic",
  12721. height: math.unit(50, "feet")
  12722. },
  12723. {
  12724. name: "Macro",
  12725. height: math.unit(500, "feet")
  12726. },
  12727. {
  12728. name: "Megamacro",
  12729. height: math.unit(1, "mile")
  12730. },
  12731. {
  12732. name: "Gigamacro",
  12733. height: math.unit(400, "miles")
  12734. },
  12735. {
  12736. name: "Teramacro",
  12737. height: math.unit(22000, "miles")
  12738. },
  12739. {
  12740. name: "Solarmacro",
  12741. height: math.unit(8600000, "miles")
  12742. },
  12743. {
  12744. name: "Galactic",
  12745. height: math.unit(1057000, "lightyears")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(6 + 10 / 12, "feet"),
  12754. weight: math.unit(150, "lb"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/dixon/front.svg",
  12758. extra: 3361 / 3209,
  12759. bottom: 0.01
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Normal",
  12766. height: math.unit(6 + 10 / 12, "feet"),
  12767. default: true
  12768. },
  12769. {
  12770. name: "Big",
  12771. height: math.unit(12, "meters")
  12772. },
  12773. {
  12774. name: "Macro",
  12775. height: math.unit(500, "meters")
  12776. },
  12777. {
  12778. name: "Megamacro",
  12779. height: math.unit(2, "km")
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(185, "cm"),
  12788. weight: math.unit(68, "kg"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/kauko/front.svg",
  12792. extra: 1455 / 1421,
  12793. bottom: 0.03
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(185, "cm"),
  12798. weight: math.unit(68, "kg"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/kauko/back.svg",
  12802. extra: 1455 / 1421,
  12803. bottom: 0.004
  12804. }
  12805. },
  12806. },
  12807. [
  12808. {
  12809. name: "Normal",
  12810. height: math.unit(185, "cm"),
  12811. default: true
  12812. },
  12813. ]
  12814. ))
  12815. characterMakers.push(() => makeCharacter(
  12816. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12817. {
  12818. front: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(150, "kg"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/varg/front.svg",
  12824. extra: 1108 / 1018,
  12825. bottom: 0.0375
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(5, "meters")
  12833. },
  12834. {
  12835. name: "Macro",
  12836. height: math.unit(200, "meters")
  12837. },
  12838. {
  12839. name: "Megamacro",
  12840. height: math.unit(20, "kilometers")
  12841. },
  12842. {
  12843. name: "True Size",
  12844. height: math.unit(211, "km"),
  12845. default: true
  12846. },
  12847. {
  12848. name: "Gigamacro",
  12849. height: math.unit(1000, "km")
  12850. },
  12851. {
  12852. name: "Gigamacro+",
  12853. height: math.unit(8000, "km")
  12854. },
  12855. {
  12856. name: "Teramacro",
  12857. height: math.unit(1000000, "km")
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(7 + 7 / 12, "feet"),
  12866. weight: math.unit(267, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/dayza/front.svg",
  12870. extra: 1262 / 1200,
  12871. bottom: 0.035
  12872. }
  12873. },
  12874. side: {
  12875. height: math.unit(7 + 7 / 12, "feet"),
  12876. weight: math.unit(267, "lb"),
  12877. name: "Side",
  12878. image: {
  12879. source: "./media/characters/dayza/side.svg",
  12880. extra: 1295 / 1245,
  12881. bottom: 0.05
  12882. }
  12883. },
  12884. back: {
  12885. height: math.unit(7 + 7 / 12, "feet"),
  12886. weight: math.unit(267, "lb"),
  12887. name: "Back",
  12888. image: {
  12889. source: "./media/characters/dayza/back.svg",
  12890. extra: 1241 / 1170
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Normal",
  12897. height: math.unit(7 + 7 / 12, "feet"),
  12898. default: true
  12899. },
  12900. {
  12901. name: "Macro",
  12902. height: math.unit(155, "feet")
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12908. {
  12909. front: {
  12910. height: math.unit(6 + 5 / 12, "feet"),
  12911. weight: math.unit(160, "lb"),
  12912. name: "Front",
  12913. image: {
  12914. source: "./media/characters/xanthos/front.svg",
  12915. extra: 1,
  12916. bottom: 0.04
  12917. }
  12918. },
  12919. back: {
  12920. height: math.unit(6 + 5 / 12, "feet"),
  12921. weight: math.unit(160, "lb"),
  12922. name: "Back",
  12923. image: {
  12924. source: "./media/characters/xanthos/back.svg",
  12925. extra: 1,
  12926. bottom: 0.03
  12927. }
  12928. },
  12929. hand: {
  12930. height: math.unit(0.928, "feet"),
  12931. name: "Hand",
  12932. image: {
  12933. source: "./media/characters/xanthos/hand.svg"
  12934. }
  12935. },
  12936. foot: {
  12937. height: math.unit(1.286, "feet"),
  12938. name: "Foot",
  12939. image: {
  12940. source: "./media/characters/xanthos/foot.svg"
  12941. }
  12942. },
  12943. },
  12944. [
  12945. {
  12946. name: "Normal",
  12947. height: math.unit(6 + 5 / 12, "feet"),
  12948. default: true
  12949. },
  12950. {
  12951. name: "Normal+",
  12952. height: math.unit(6, "meters")
  12953. },
  12954. {
  12955. name: "Macro",
  12956. height: math.unit(40, "feet")
  12957. },
  12958. {
  12959. name: "Macro+",
  12960. height: math.unit(200, "meters")
  12961. },
  12962. {
  12963. name: "Megamacro",
  12964. height: math.unit(20, "km")
  12965. },
  12966. {
  12967. name: "Megamacro+",
  12968. height: math.unit(100, "km")
  12969. },
  12970. {
  12971. name: "Gigamacro",
  12972. height: math.unit(200, "megameters")
  12973. },
  12974. {
  12975. name: "Gigamacro+",
  12976. height: math.unit(1.5, "gigameters")
  12977. },
  12978. ]
  12979. ))
  12980. characterMakers.push(() => makeCharacter(
  12981. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12982. {
  12983. front: {
  12984. height: math.unit(6 + 3 / 12, "feet"),
  12985. weight: math.unit(215, "lb"),
  12986. name: "Front",
  12987. image: {
  12988. source: "./media/characters/grynn/front.svg",
  12989. extra: 4627 / 4209,
  12990. bottom: 0.047
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Micro",
  12997. height: math.unit(6, "inches")
  12998. },
  12999. {
  13000. name: "Normal",
  13001. height: math.unit(6 + 3 / 12, "feet"),
  13002. default: true
  13003. },
  13004. {
  13005. name: "Big",
  13006. height: math.unit(104, "feet")
  13007. },
  13008. {
  13009. name: "Macro",
  13010. height: math.unit(944, "feet")
  13011. },
  13012. {
  13013. name: "Macro+",
  13014. height: math.unit(9480, "feet")
  13015. },
  13016. {
  13017. name: "Megamacro",
  13018. height: math.unit(78752, "feet")
  13019. },
  13020. {
  13021. name: "Megamacro+",
  13022. height: math.unit(630128, "feet")
  13023. },
  13024. {
  13025. name: "Megamacro++",
  13026. height: math.unit(3150695, "feet")
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13032. {
  13033. front: {
  13034. height: math.unit(7 + 5 / 12, "feet"),
  13035. weight: math.unit(450, "lb"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/mocha-aura/front.svg",
  13039. extra: 1907 / 1817,
  13040. bottom: 0.04
  13041. }
  13042. },
  13043. back: {
  13044. height: math.unit(7 + 5 / 12, "feet"),
  13045. weight: math.unit(450, "lb"),
  13046. name: "Back",
  13047. image: {
  13048. source: "./media/characters/mocha-aura/back.svg",
  13049. extra: 1900 / 1825,
  13050. bottom: 0.045
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Nano",
  13057. height: math.unit(1, "nm")
  13058. },
  13059. {
  13060. name: "Megamicro",
  13061. height: math.unit(1, "mm")
  13062. },
  13063. {
  13064. name: "Micro",
  13065. height: math.unit(3, "inches")
  13066. },
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(7 + 5 / 12, "feet"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(30, "feet")
  13075. },
  13076. {
  13077. name: "Megamacro",
  13078. height: math.unit(3500, "feet")
  13079. },
  13080. {
  13081. name: "Teramacro",
  13082. height: math.unit(500000, "miles")
  13083. },
  13084. {
  13085. name: "Petamacro",
  13086. height: math.unit(50000000000000000, "parsecs")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13092. {
  13093. front: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Front",
  13097. image: {
  13098. source: "./media/characters/ilisha-devya/front.svg",
  13099. extra: 1053/1049,
  13100. bottom: 270/1323
  13101. }
  13102. },
  13103. back: {
  13104. height: math.unit(6, "feet"),
  13105. weight: math.unit(150, "lb"),
  13106. name: "Back",
  13107. image: {
  13108. source: "./media/characters/ilisha-devya/back.svg",
  13109. extra: 1131/1128,
  13110. bottom: 39/1170
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Macro",
  13117. height: math.unit(500, "feet"),
  13118. default: true
  13119. },
  13120. {
  13121. name: "Megamacro",
  13122. height: math.unit(10, "miles")
  13123. },
  13124. {
  13125. name: "Gigamacro",
  13126. height: math.unit(100000, "miles")
  13127. },
  13128. {
  13129. name: "Examacro",
  13130. height: math.unit(1e9, "lightyears")
  13131. },
  13132. {
  13133. name: "Omniversal",
  13134. height: math.unit(1e33, "lightyears")
  13135. },
  13136. {
  13137. name: "Beyond Infinite",
  13138. height: math.unit(1e100, "lightyears")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13144. {
  13145. Side: {
  13146. height: math.unit(6, "feet"),
  13147. weight: math.unit(150, "lb"),
  13148. name: "Side",
  13149. image: {
  13150. source: "./media/characters/mira/side.svg",
  13151. extra: 900 / 799,
  13152. bottom: 0.02
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Human Size",
  13159. height: math.unit(6, "feet")
  13160. },
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(100, "feet"),
  13164. default: true
  13165. },
  13166. {
  13167. name: "Megamacro",
  13168. height: math.unit(10, "miles")
  13169. },
  13170. {
  13171. name: "Gigamacro",
  13172. height: math.unit(25000, "miles")
  13173. },
  13174. {
  13175. name: "Teramacro",
  13176. height: math.unit(300, "AU")
  13177. },
  13178. {
  13179. name: "Full Size",
  13180. height: math.unit(4.5e10, "lightyears")
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(150, "lb"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/holly/front.svg",
  13193. extra: 639 / 606
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/holly/back.svg",
  13202. extra: 623 / 598
  13203. }
  13204. },
  13205. frontWorking: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front (Working)",
  13209. image: {
  13210. source: "./media/characters/holly/front-working.svg",
  13211. extra: 607 / 577,
  13212. bottom: 0.048
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(12 + 3 / 12, "feet"),
  13220. default: true
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13226. {
  13227. front: {
  13228. height: math.unit(6, "feet"),
  13229. weight: math.unit(150, "lb"),
  13230. name: "Front",
  13231. image: {
  13232. source: "./media/characters/porter/front.svg",
  13233. extra: 1,
  13234. bottom: 0.01
  13235. }
  13236. },
  13237. frontRobes: {
  13238. height: math.unit(6, "feet"),
  13239. weight: math.unit(150, "lb"),
  13240. name: "Front (Robes)",
  13241. image: {
  13242. source: "./media/characters/porter/front-robes.svg",
  13243. extra: 1.01,
  13244. bottom: 0.01
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Normal",
  13251. height: math.unit(11 + 9 / 12, "feet"),
  13252. default: true
  13253. },
  13254. ]
  13255. ))
  13256. characterMakers.push(() => makeCharacter(
  13257. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13258. {
  13259. legendary: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(150, "lb"),
  13262. name: "Legendary",
  13263. image: {
  13264. source: "./media/characters/lucy/legendary.svg",
  13265. extra: 1355 / 1100,
  13266. bottom: 0.045
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Legendary",
  13273. height: math.unit(86882 * 2, "miles"),
  13274. default: true
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(150, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/drusilla/front.svg",
  13287. extra: 678 / 635,
  13288. bottom: 0.03
  13289. }
  13290. },
  13291. back: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(150, "lb"),
  13294. name: "Back",
  13295. image: {
  13296. source: "./media/characters/drusilla/back.svg",
  13297. extra: 678 / 635,
  13298. bottom: 0.005
  13299. }
  13300. },
  13301. },
  13302. [
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(100, "feet")
  13306. },
  13307. {
  13308. name: "Canon Height",
  13309. height: math.unit(2000, "feet"),
  13310. default: true
  13311. },
  13312. ]
  13313. ))
  13314. characterMakers.push(() => makeCharacter(
  13315. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13316. {
  13317. front: {
  13318. height: math.unit(6, "feet"),
  13319. weight: math.unit(180, "lb"),
  13320. name: "Front",
  13321. image: {
  13322. source: "./media/characters/renard-thatch/front.svg",
  13323. extra: 2411 / 2275,
  13324. bottom: 0.01
  13325. }
  13326. },
  13327. frontPosing: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(180, "lb"),
  13330. name: "Front (Posing)",
  13331. image: {
  13332. source: "./media/characters/renard-thatch/front-posing.svg",
  13333. extra: 2381 / 2261,
  13334. bottom: 0.01
  13335. }
  13336. },
  13337. back: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(180, "lb"),
  13340. name: "Back",
  13341. image: {
  13342. source: "./media/characters/renard-thatch/back.svg",
  13343. extra: 2428 / 2288
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Micro",
  13350. height: math.unit(3, "inches")
  13351. },
  13352. {
  13353. name: "Default",
  13354. height: math.unit(6, "feet"),
  13355. default: true
  13356. },
  13357. {
  13358. name: "Macro",
  13359. height: math.unit(75, "feet")
  13360. },
  13361. ]
  13362. ))
  13363. characterMakers.push(() => makeCharacter(
  13364. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13365. {
  13366. front: {
  13367. height: math.unit(1450, "feet"),
  13368. weight: math.unit(1.21e6, "tons"),
  13369. name: "Front",
  13370. image: {
  13371. source: "./media/characters/sekvra/front.svg",
  13372. extra: 1193/1190,
  13373. bottom: 78/1271
  13374. }
  13375. },
  13376. side: {
  13377. height: math.unit(1450, "feet"),
  13378. weight: math.unit(1.21e6, "tons"),
  13379. name: "Side",
  13380. image: {
  13381. source: "./media/characters/sekvra/side.svg",
  13382. extra: 1193/1190,
  13383. bottom: 52/1245
  13384. }
  13385. },
  13386. back: {
  13387. height: math.unit(1450, "feet"),
  13388. weight: math.unit(1.21e6, "tons"),
  13389. name: "Back",
  13390. image: {
  13391. source: "./media/characters/sekvra/back.svg",
  13392. extra: 1219/1216,
  13393. bottom: 21/1240
  13394. }
  13395. },
  13396. frontClothed: {
  13397. height: math.unit(1450, "feet"),
  13398. weight: math.unit(1.21e6, "tons"),
  13399. name: "Front (Clothed)",
  13400. image: {
  13401. source: "./media/characters/sekvra/front-clothed.svg",
  13402. extra: 1192/1189,
  13403. bottom: 79/1271
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Macro",
  13410. height: math.unit(1450, "feet"),
  13411. default: true
  13412. },
  13413. {
  13414. name: "Megamacro",
  13415. height: math.unit(15000, "feet")
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(6, "feet"),
  13424. weight: math.unit(150, "lb"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/carmine/front.svg",
  13428. extra: 1,
  13429. bottom: 0.035
  13430. }
  13431. },
  13432. frontArmor: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(150, "lb"),
  13435. name: "Front (Armor)",
  13436. image: {
  13437. source: "./media/characters/carmine/front-armor.svg",
  13438. extra: 1,
  13439. bottom: 0.035
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Large",
  13446. height: math.unit(1, "mile")
  13447. },
  13448. {
  13449. name: "Huge",
  13450. height: math.unit(40, "miles"),
  13451. default: true
  13452. },
  13453. {
  13454. name: "Colossal",
  13455. height: math.unit(2500, "miles")
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13461. {
  13462. front: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(150, "lb"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/elyssia/front.svg",
  13468. extra: 2201 / 2035,
  13469. bottom: 0.05
  13470. }
  13471. },
  13472. frontClothed: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(150, "lb"),
  13475. name: "Front (Clothed)",
  13476. image: {
  13477. source: "./media/characters/elyssia/front-clothed.svg",
  13478. extra: 2201 / 2035,
  13479. bottom: 0.05
  13480. }
  13481. },
  13482. back: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Back",
  13486. image: {
  13487. source: "./media/characters/elyssia/back.svg",
  13488. extra: 2201 / 2035,
  13489. bottom: 0.013
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Smaller",
  13496. height: math.unit(150, "feet")
  13497. },
  13498. {
  13499. name: "Standard",
  13500. height: math.unit(1400, "feet"),
  13501. default: true
  13502. },
  13503. {
  13504. name: "Distracted",
  13505. height: math.unit(15000, "feet")
  13506. },
  13507. ]
  13508. ))
  13509. characterMakers.push(() => makeCharacter(
  13510. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13511. {
  13512. front: {
  13513. height: math.unit(7 + 4/12, "feet"),
  13514. weight: math.unit(690, "lb"),
  13515. name: "Front",
  13516. image: {
  13517. source: "./media/characters/geno-maxwell/front.svg",
  13518. extra: 984/856,
  13519. bottom: 87/1071
  13520. }
  13521. },
  13522. back: {
  13523. height: math.unit(7 + 4/12, "feet"),
  13524. weight: math.unit(690, "lb"),
  13525. name: "Back",
  13526. image: {
  13527. source: "./media/characters/geno-maxwell/back.svg",
  13528. extra: 981/854,
  13529. bottom: 57/1038
  13530. }
  13531. },
  13532. frontCostume: {
  13533. height: math.unit(7 + 4/12, "feet"),
  13534. weight: math.unit(690, "lb"),
  13535. name: "Front (Costume)",
  13536. image: {
  13537. source: "./media/characters/geno-maxwell/front-costume.svg",
  13538. extra: 984/856,
  13539. bottom: 87/1071
  13540. }
  13541. },
  13542. backcostume: {
  13543. height: math.unit(7 + 4/12, "feet"),
  13544. weight: math.unit(690, "lb"),
  13545. name: "Back (Costume)",
  13546. image: {
  13547. source: "./media/characters/geno-maxwell/back-costume.svg",
  13548. extra: 981/854,
  13549. bottom: 57/1038
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Micro",
  13556. height: math.unit(3, "inches")
  13557. },
  13558. {
  13559. name: "Normal",
  13560. height: math.unit(7 + 4 / 12, "feet"),
  13561. default: true
  13562. },
  13563. {
  13564. name: "Macro",
  13565. height: math.unit(220, "feet")
  13566. },
  13567. {
  13568. name: "Megamacro",
  13569. height: math.unit(11, "miles")
  13570. },
  13571. ]
  13572. ))
  13573. characterMakers.push(() => makeCharacter(
  13574. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13575. {
  13576. front: {
  13577. height: math.unit(7 + 4/12, "feet"),
  13578. weight: math.unit(750, "lb"),
  13579. name: "Front",
  13580. image: {
  13581. source: "./media/characters/regena-maxwell/front.svg",
  13582. extra: 984/856,
  13583. bottom: 87/1071
  13584. }
  13585. },
  13586. back: {
  13587. height: math.unit(7 + 4/12, "feet"),
  13588. weight: math.unit(750, "lb"),
  13589. name: "Back",
  13590. image: {
  13591. source: "./media/characters/regena-maxwell/back.svg",
  13592. extra: 981/854,
  13593. bottom: 57/1038
  13594. }
  13595. },
  13596. frontCostume: {
  13597. height: math.unit(7 + 4/12, "feet"),
  13598. weight: math.unit(750, "lb"),
  13599. name: "Front (Costume)",
  13600. image: {
  13601. source: "./media/characters/regena-maxwell/front-costume.svg",
  13602. extra: 984/856,
  13603. bottom: 87/1071
  13604. }
  13605. },
  13606. backcostume: {
  13607. height: math.unit(7 + 4/12, "feet"),
  13608. weight: math.unit(750, "lb"),
  13609. name: "Back (Costume)",
  13610. image: {
  13611. source: "./media/characters/regena-maxwell/back-costume.svg",
  13612. extra: 981/854,
  13613. bottom: 57/1038
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Normal",
  13620. height: math.unit(7 + 4 / 12, "feet"),
  13621. default: true
  13622. },
  13623. {
  13624. name: "Macro",
  13625. height: math.unit(220, "feet")
  13626. },
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(11, "miles")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(150, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13642. extra: 860 / 690,
  13643. bottom: 0.03
  13644. }
  13645. },
  13646. },
  13647. [
  13648. {
  13649. name: "Normal",
  13650. height: math.unit(1.7, "meters"),
  13651. default: true
  13652. },
  13653. ]
  13654. ))
  13655. characterMakers.push(() => makeCharacter(
  13656. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13657. {
  13658. front: {
  13659. height: math.unit(6, "feet"),
  13660. weight: math.unit(150, "lb"),
  13661. name: "Front",
  13662. image: {
  13663. source: "./media/characters/quilly/front.svg",
  13664. extra: 890 / 776
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Gigamacro",
  13671. height: math.unit(404090, "miles"),
  13672. default: true
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(7 + 8 / 12, "feet"),
  13681. weight: math.unit(350, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/tempest/front.svg",
  13685. extra: 1175 / 1086,
  13686. bottom: 0.02
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Normal",
  13693. height: math.unit(7 + 8 / 12, "feet"),
  13694. default: true
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13700. {
  13701. side: {
  13702. height: math.unit(4 + 5 / 12, "feet"),
  13703. weight: math.unit(80, "lb"),
  13704. name: "Side",
  13705. image: {
  13706. source: "./media/characters/rodger/side.svg",
  13707. extra: 1235 / 1118
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Micro",
  13714. height: math.unit(1, "inch")
  13715. },
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(4 + 5 / 12, "feet"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Macro",
  13723. height: math.unit(120, "feet")
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(6, "feet"),
  13732. weight: math.unit(150, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/danyel/front.svg",
  13736. extra: 1185 / 1123,
  13737. bottom: 0.05
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Shrunken",
  13744. height: math.unit(0.5, "mm")
  13745. },
  13746. {
  13747. name: "Micro",
  13748. height: math.unit(1, "mm"),
  13749. default: true
  13750. },
  13751. {
  13752. name: "Upsized",
  13753. height: math.unit(5 + 5 / 12, "feet")
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(5 + 6 / 12, "feet"),
  13762. weight: math.unit(200, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/vivian-bijoux/front.svg",
  13766. extra: 1217/1209,
  13767. bottom: 76/1293
  13768. }
  13769. },
  13770. back: {
  13771. height: math.unit(5 + 6 / 12, "feet"),
  13772. weight: math.unit(200, "lb"),
  13773. name: "Back",
  13774. image: {
  13775. source: "./media/characters/vivian-bijoux/back.svg",
  13776. extra: 1214/1208,
  13777. bottom: 51/1265
  13778. }
  13779. },
  13780. dressed: {
  13781. height: math.unit(5 + 6 / 12, "feet"),
  13782. weight: math.unit(200, "lb"),
  13783. name: "Dressed",
  13784. image: {
  13785. source: "./media/characters/vivian-bijoux/dressed.svg",
  13786. extra: 1217/1209,
  13787. bottom: 76/1293
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(5 + 6 / 12, "feet"),
  13795. default: true
  13796. },
  13797. {
  13798. name: "Bad Dream",
  13799. height: math.unit(500, "feet")
  13800. },
  13801. {
  13802. name: "Nightmare",
  13803. height: math.unit(500, "miles")
  13804. },
  13805. ]
  13806. ))
  13807. characterMakers.push(() => makeCharacter(
  13808. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13809. {
  13810. front: {
  13811. height: math.unit(6 + 1 / 12, "feet"),
  13812. weight: math.unit(260, "lb"),
  13813. name: "Front",
  13814. image: {
  13815. source: "./media/characters/zeta/front.svg",
  13816. extra: 1968 / 1889,
  13817. bottom: 0.06
  13818. }
  13819. },
  13820. back: {
  13821. height: math.unit(6 + 1 / 12, "feet"),
  13822. weight: math.unit(260, "lb"),
  13823. name: "Back",
  13824. image: {
  13825. source: "./media/characters/zeta/back.svg",
  13826. extra: 1944 / 1858,
  13827. bottom: 0.03
  13828. }
  13829. },
  13830. hand: {
  13831. height: math.unit(1.112, "feet"),
  13832. name: "Hand",
  13833. image: {
  13834. source: "./media/characters/zeta/hand.svg"
  13835. }
  13836. },
  13837. foot: {
  13838. height: math.unit(1.48, "feet"),
  13839. name: "Foot",
  13840. image: {
  13841. source: "./media/characters/zeta/foot.svg"
  13842. }
  13843. },
  13844. },
  13845. [
  13846. {
  13847. name: "Micro",
  13848. height: math.unit(6, "inches")
  13849. },
  13850. {
  13851. name: "Normal",
  13852. height: math.unit(6 + 1 / 12, "feet"),
  13853. default: true
  13854. },
  13855. {
  13856. name: "Macro",
  13857. height: math.unit(20, "feet")
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(6, "feet"),
  13866. weight: math.unit(150, "lb"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/jamie-larsen/front.svg",
  13870. extra: 962 / 933,
  13871. bottom: 0.02
  13872. }
  13873. },
  13874. back: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(150, "lb"),
  13877. name: "Back",
  13878. image: {
  13879. source: "./media/characters/jamie-larsen/back.svg",
  13880. extra: 997 / 946
  13881. }
  13882. },
  13883. },
  13884. [
  13885. {
  13886. name: "Macro",
  13887. height: math.unit(28 + 7 / 12, "feet"),
  13888. default: true
  13889. },
  13890. {
  13891. name: "Macro+",
  13892. height: math.unit(180, "feet")
  13893. },
  13894. {
  13895. name: "Megamacro",
  13896. height: math.unit(10, "miles")
  13897. },
  13898. {
  13899. name: "Gigamacro",
  13900. height: math.unit(200000, "miles")
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13906. {
  13907. front: {
  13908. height: math.unit(6, "feet"),
  13909. weight: math.unit(120, "lb"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/vance/front.svg",
  13913. extra: 1980 / 1890,
  13914. bottom: 0.09
  13915. }
  13916. },
  13917. back: {
  13918. height: math.unit(6, "feet"),
  13919. weight: math.unit(120, "lb"),
  13920. name: "Back",
  13921. image: {
  13922. source: "./media/characters/vance/back.svg",
  13923. extra: 2081 / 1994,
  13924. bottom: 0.014
  13925. }
  13926. },
  13927. hand: {
  13928. height: math.unit(0.88, "feet"),
  13929. name: "Hand",
  13930. image: {
  13931. source: "./media/characters/vance/hand.svg"
  13932. }
  13933. },
  13934. foot: {
  13935. height: math.unit(0.64, "feet"),
  13936. name: "Foot",
  13937. image: {
  13938. source: "./media/characters/vance/foot.svg"
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Small",
  13945. height: math.unit(90, "feet"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Macro",
  13950. height: math.unit(100, "meters")
  13951. },
  13952. {
  13953. name: "Megamacro",
  13954. height: math.unit(15, "miles")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(180, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/xochitl/front.svg",
  13967. extra: 2297 / 2261,
  13968. bottom: 0.065
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(6, "feet"),
  13973. weight: math.unit(180, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/xochitl/back.svg",
  13977. extra: 2386 / 2354,
  13978. bottom: 0.01
  13979. }
  13980. },
  13981. foot: {
  13982. height: math.unit(6 / 5 * 1.15, "feet"),
  13983. weight: math.unit(150, "lb"),
  13984. name: "Foot",
  13985. image: {
  13986. source: "./media/characters/xochitl/foot.svg"
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Macro",
  13993. height: math.unit(80, "feet")
  13994. },
  13995. {
  13996. name: "Macro+",
  13997. height: math.unit(400, "feet"),
  13998. default: true
  13999. },
  14000. {
  14001. name: "Gigamacro",
  14002. height: math.unit(80000, "miles")
  14003. },
  14004. {
  14005. name: "Gigamacro+",
  14006. height: math.unit(400000, "miles")
  14007. },
  14008. {
  14009. name: "Teramacro",
  14010. height: math.unit(300, "AU")
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14016. {
  14017. front: {
  14018. height: math.unit(6, "feet"),
  14019. weight: math.unit(150, "lb"),
  14020. name: "Front",
  14021. image: {
  14022. source: "./media/characters/vincent/front.svg",
  14023. extra: 1130 / 1080,
  14024. bottom: 0.055
  14025. }
  14026. },
  14027. beak: {
  14028. height: math.unit(6 * 0.1, "feet"),
  14029. name: "Beak",
  14030. image: {
  14031. source: "./media/characters/vincent/beak.svg"
  14032. }
  14033. },
  14034. hand: {
  14035. height: math.unit(6 * 0.85, "feet"),
  14036. weight: math.unit(150, "lb"),
  14037. name: "Hand",
  14038. image: {
  14039. source: "./media/characters/vincent/hand.svg"
  14040. }
  14041. },
  14042. foot: {
  14043. height: math.unit(6 * 0.19, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Foot",
  14046. image: {
  14047. source: "./media/characters/vincent/foot.svg"
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Base",
  14054. height: math.unit(6 + 5 / 12, "feet"),
  14055. default: true
  14056. },
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(300, "feet")
  14060. },
  14061. {
  14062. name: "Megamacro",
  14063. height: math.unit(2, "miles")
  14064. },
  14065. {
  14066. name: "Gigamacro",
  14067. height: math.unit(1000, "miles")
  14068. },
  14069. ]
  14070. ))
  14071. characterMakers.push(() => makeCharacter(
  14072. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14073. {
  14074. front: {
  14075. height: math.unit(2, "meters"),
  14076. weight: math.unit(500, "kg"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/coatl/front.svg",
  14080. extra: 3948 / 3500,
  14081. bottom: 0.082
  14082. }
  14083. },
  14084. },
  14085. [
  14086. {
  14087. name: "Normal",
  14088. height: math.unit(4, "meters")
  14089. },
  14090. {
  14091. name: "Macro",
  14092. height: math.unit(100, "meters"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Macro+",
  14097. height: math.unit(300, "meters")
  14098. },
  14099. {
  14100. name: "Megamacro",
  14101. height: math.unit(3, "gigameters")
  14102. },
  14103. {
  14104. name: "Megamacro+",
  14105. height: math.unit(300, "terameters")
  14106. },
  14107. {
  14108. name: "Megamacro++",
  14109. height: math.unit(3, "lightyears")
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(50, "kg"),
  14119. name: "front",
  14120. image: {
  14121. source: "./media/characters/shiroryu/front.svg",
  14122. extra: 1990 / 1935
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Mortal Mingling",
  14129. height: math.unit(3, "meters")
  14130. },
  14131. {
  14132. name: "Kaiju-ish",
  14133. height: math.unit(250, "meters")
  14134. },
  14135. {
  14136. name: "Somewhat Godly",
  14137. height: math.unit(400, "km"),
  14138. default: true
  14139. },
  14140. {
  14141. name: "Planetary",
  14142. height: math.unit(300, "megameters")
  14143. },
  14144. {
  14145. name: "Galaxy-dwarfing",
  14146. height: math.unit(450, "kiloparsecs")
  14147. },
  14148. {
  14149. name: "Universe Eater",
  14150. height: math.unit(150, "gigaparsecs")
  14151. },
  14152. {
  14153. name: "Almost Immeasurable",
  14154. height: math.unit(1.3e266, "yottaparsecs")
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(6, "feet"),
  14163. weight: math.unit(150, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/umeko/front.svg",
  14167. extra: 1,
  14168. bottom: 0.019
  14169. }
  14170. },
  14171. frontArmored: {
  14172. height: math.unit(6, "feet"),
  14173. weight: math.unit(150, "lb"),
  14174. name: "Front (Armored)",
  14175. image: {
  14176. source: "./media/characters/umeko/front-armored.svg",
  14177. extra: 1,
  14178. bottom: 0.021
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Macro",
  14185. height: math.unit(220, "feet"),
  14186. default: true
  14187. },
  14188. {
  14189. name: "Guardian Dragon",
  14190. height: math.unit(50, "miles")
  14191. },
  14192. {
  14193. name: "Cosmic",
  14194. height: math.unit(800000, "miles")
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(6, "feet"),
  14203. weight: math.unit(150, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/cassidy/front.svg",
  14207. extra: 1,
  14208. bottom: 0.043
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Canon Height",
  14215. height: math.unit(120, "feet"),
  14216. default: true
  14217. },
  14218. {
  14219. name: "Macro+",
  14220. height: math.unit(400, "feet")
  14221. },
  14222. {
  14223. name: "Macro++",
  14224. height: math.unit(4000, "feet")
  14225. },
  14226. {
  14227. name: "Megamacro",
  14228. height: math.unit(3, "miles")
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(150, "lb"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/isaac/front.svg",
  14241. extra: 896 / 815,
  14242. bottom: 0.11
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Human Size",
  14249. height: math.unit(8, "feet"),
  14250. default: true
  14251. },
  14252. {
  14253. name: "Macro",
  14254. height: math.unit(400, "feet")
  14255. },
  14256. {
  14257. name: "Megamacro",
  14258. height: math.unit(50, "miles")
  14259. },
  14260. {
  14261. name: "Canon Height",
  14262. height: math.unit(200, "AU")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(72, "kg"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/sleekit/front.svg",
  14275. extra: 4693 / 4487,
  14276. bottom: 0.012
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Minimum Height",
  14283. height: math.unit(10, "meters")
  14284. },
  14285. {
  14286. name: "Smaller",
  14287. height: math.unit(25, "meters")
  14288. },
  14289. {
  14290. name: "Larger",
  14291. height: math.unit(38, "meters"),
  14292. default: true
  14293. },
  14294. {
  14295. name: "Maximum height",
  14296. height: math.unit(100, "meters")
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(6, "feet"),
  14305. weight: math.unit(150, "lb"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/nillia/front.svg",
  14309. extra: 2195 / 2037,
  14310. bottom: 0.005
  14311. }
  14312. },
  14313. back: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(150, "lb"),
  14316. name: "Back",
  14317. image: {
  14318. source: "./media/characters/nillia/back.svg",
  14319. extra: 2195 / 2037,
  14320. bottom: 0.005
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Canon Height",
  14327. height: math.unit(489, "feet"),
  14328. default: true
  14329. }
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(150, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/mesmyriza/front.svg",
  14341. extra: 2067 / 1784,
  14342. bottom: 0.035
  14343. }
  14344. },
  14345. foot: {
  14346. height: math.unit(6 / (250 / 35), "feet"),
  14347. name: "Foot",
  14348. image: {
  14349. source: "./media/characters/mesmyriza/foot.svg"
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Macro",
  14356. height: math.unit(457, "meters"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Megamacro",
  14361. height: math.unit(8, "megameters")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(250, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/saudade/front.svg",
  14374. extra: 1172 / 1139,
  14375. bottom: 0.035
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Micro",
  14382. height: math.unit(3, "inches")
  14383. },
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(6, "feet"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(50, "feet")
  14392. },
  14393. {
  14394. name: "Megamacro",
  14395. height: math.unit(2800, "feet")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(5 + 4 / 12, "feet"),
  14404. weight: math.unit(100, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/keireer/front.svg",
  14408. extra: 716 / 666,
  14409. bottom: 0.05
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(5 + 4 / 12, "feet"),
  14417. default: true
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(90, "kg"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/mirja/front.svg",
  14430. extra: 1789 / 1683,
  14431. bottom: 0.05
  14432. }
  14433. },
  14434. frontDressed: {
  14435. height: math.unit(6, "feet"),
  14436. weight: math.unit(90, "lb"),
  14437. name: "Front (Dressed)",
  14438. image: {
  14439. source: "./media/characters/mirja/front-dressed.svg",
  14440. extra: 1789 / 1683,
  14441. bottom: 0.05
  14442. }
  14443. },
  14444. back: {
  14445. height: math.unit(6, "feet"),
  14446. weight: math.unit(90, "lb"),
  14447. name: "Back",
  14448. image: {
  14449. source: "./media/characters/mirja/back.svg",
  14450. extra: 953 / 917,
  14451. bottom: 0.017
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "\"Incognito\"",
  14458. height: math.unit(3, "meters")
  14459. },
  14460. {
  14461. name: "Strolling Size",
  14462. height: math.unit(15, "km")
  14463. },
  14464. {
  14465. name: "Larger Strolling Size",
  14466. height: math.unit(400, "km")
  14467. },
  14468. {
  14469. name: "Preferred Size",
  14470. height: math.unit(5000, "km")
  14471. },
  14472. {
  14473. name: "True Size",
  14474. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14475. default: true
  14476. },
  14477. ]
  14478. ))
  14479. characterMakers.push(() => makeCharacter(
  14480. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14481. {
  14482. front: {
  14483. height: math.unit(15, "feet"),
  14484. weight: math.unit(880, "kg"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/nightraver/front.svg",
  14488. extra: 2444 / 2160,
  14489. bottom: 0.027
  14490. }
  14491. },
  14492. back: {
  14493. height: math.unit(15, "feet"),
  14494. weight: math.unit(880, "kg"),
  14495. name: "Back",
  14496. image: {
  14497. source: "./media/characters/nightraver/back.svg",
  14498. extra: 2309 / 2180,
  14499. bottom: 0.005
  14500. }
  14501. },
  14502. sole: {
  14503. height: math.unit(2.878, "feet"),
  14504. name: "Sole",
  14505. image: {
  14506. source: "./media/characters/nightraver/sole.svg"
  14507. }
  14508. },
  14509. foot: {
  14510. height: math.unit(2.285, "feet"),
  14511. name: "Foot",
  14512. image: {
  14513. source: "./media/characters/nightraver/foot.svg"
  14514. }
  14515. },
  14516. maw: {
  14517. height: math.unit(2.67, "feet"),
  14518. name: "Maw",
  14519. image: {
  14520. source: "./media/characters/nightraver/maw.svg"
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Micro",
  14527. height: math.unit(1, "cm")
  14528. },
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(15, "feet"),
  14532. default: true
  14533. },
  14534. {
  14535. name: "Macro",
  14536. height: math.unit(300, "feet")
  14537. },
  14538. {
  14539. name: "Megamacro",
  14540. height: math.unit(300, "miles")
  14541. },
  14542. {
  14543. name: "Gigamacro",
  14544. height: math.unit(10000, "miles")
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14550. {
  14551. side: {
  14552. height: math.unit(2, "inches"),
  14553. weight: math.unit(5, "grams"),
  14554. name: "Side",
  14555. image: {
  14556. source: "./media/characters/arc/side.svg"
  14557. }
  14558. },
  14559. },
  14560. [
  14561. {
  14562. name: "Micro",
  14563. height: math.unit(2, "inches"),
  14564. default: true
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(1.1938, "meters"),
  14573. weight: math.unit(54, "kg"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/nebula-shahar/front.svg",
  14577. extra: 1642 / 1436,
  14578. bottom: 0.06
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Megamicro",
  14585. height: math.unit(0.3, "mm")
  14586. },
  14587. {
  14588. name: "Micro",
  14589. height: math.unit(3, "cm")
  14590. },
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(138, "cm"),
  14594. default: true
  14595. },
  14596. {
  14597. name: "Macro",
  14598. height: math.unit(30, "m")
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14604. {
  14605. front: {
  14606. height: math.unit(5.24, "feet"),
  14607. weight: math.unit(150, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/shayla/front.svg",
  14611. extra: 1512 / 1414,
  14612. bottom: 0.01
  14613. }
  14614. },
  14615. back: {
  14616. height: math.unit(5.24, "feet"),
  14617. weight: math.unit(150, "lb"),
  14618. name: "Back",
  14619. image: {
  14620. source: "./media/characters/shayla/back.svg",
  14621. extra: 1512 / 1414
  14622. }
  14623. },
  14624. hand: {
  14625. height: math.unit(0.7781496062992126, "feet"),
  14626. name: "Hand",
  14627. image: {
  14628. source: "./media/characters/shayla/hand.svg"
  14629. }
  14630. },
  14631. foot: {
  14632. height: math.unit(1.4206036745406823, "feet"),
  14633. name: "Foot",
  14634. image: {
  14635. source: "./media/characters/shayla/foot.svg"
  14636. }
  14637. },
  14638. },
  14639. [
  14640. {
  14641. name: "Micro",
  14642. height: math.unit(0.32, "feet")
  14643. },
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(5.24, "feet"),
  14647. default: true
  14648. },
  14649. {
  14650. name: "Macro",
  14651. height: math.unit(492.12, "feet")
  14652. },
  14653. {
  14654. name: "Megamacro",
  14655. height: math.unit(186.41, "miles")
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(2.2, "m"),
  14664. weight: math.unit(120, "kg"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/pia-jr/front.svg",
  14668. extra: 1000 / 970,
  14669. bottom: 0.035
  14670. }
  14671. },
  14672. hand: {
  14673. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14674. name: "Hand",
  14675. image: {
  14676. source: "./media/characters/pia-jr/hand.svg"
  14677. }
  14678. },
  14679. paw: {
  14680. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14681. name: "Paw",
  14682. image: {
  14683. source: "./media/characters/pia-jr/paw.svg"
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Micro",
  14690. height: math.unit(1.2, "cm")
  14691. },
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(2.2, "m"),
  14695. default: true
  14696. },
  14697. {
  14698. name: "Macro",
  14699. height: math.unit(180, "m")
  14700. },
  14701. {
  14702. name: "Megamacro",
  14703. height: math.unit(420, "km")
  14704. },
  14705. ]
  14706. ))
  14707. characterMakers.push(() => makeCharacter(
  14708. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14709. {
  14710. front: {
  14711. height: math.unit(2, "m"),
  14712. weight: math.unit(115, "kg"),
  14713. name: "Front",
  14714. image: {
  14715. source: "./media/characters/pia-sr/front.svg",
  14716. extra: 760 / 730,
  14717. bottom: 0.015
  14718. }
  14719. },
  14720. back: {
  14721. height: math.unit(2, "m"),
  14722. weight: math.unit(115, "kg"),
  14723. name: "Back",
  14724. image: {
  14725. source: "./media/characters/pia-sr/back.svg",
  14726. extra: 760 / 730,
  14727. bottom: 0.01
  14728. }
  14729. },
  14730. hand: {
  14731. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14732. name: "Hand",
  14733. image: {
  14734. source: "./media/characters/pia-sr/hand.svg"
  14735. }
  14736. },
  14737. foot: {
  14738. height: math.unit(1.83, "feet"),
  14739. name: "Foot",
  14740. image: {
  14741. source: "./media/characters/pia-sr/foot.svg"
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Micro",
  14748. height: math.unit(88, "mm")
  14749. },
  14750. {
  14751. name: "Normal",
  14752. height: math.unit(2, "m"),
  14753. default: true
  14754. },
  14755. {
  14756. name: "Macro",
  14757. height: math.unit(200, "m")
  14758. },
  14759. {
  14760. name: "Megamacro",
  14761. height: math.unit(420, "km")
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(8 + 2 / 12, "feet"),
  14770. weight: math.unit(300, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/kibibyte/front.svg",
  14774. extra: 2221 / 2098,
  14775. bottom: 0.04
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(8 + 2 / 12, "feet"),
  14783. default: true
  14784. },
  14785. {
  14786. name: "Socialable Macro",
  14787. height: math.unit(50, "feet")
  14788. },
  14789. {
  14790. name: "Macro",
  14791. height: math.unit(300, "feet")
  14792. },
  14793. {
  14794. name: "Megamacro",
  14795. height: math.unit(500, "miles")
  14796. },
  14797. ]
  14798. ))
  14799. characterMakers.push(() => makeCharacter(
  14800. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14801. {
  14802. front: {
  14803. height: math.unit(6, "feet"),
  14804. weight: math.unit(150, "lb"),
  14805. name: "Front",
  14806. image: {
  14807. source: "./media/characters/felix/front.svg",
  14808. extra: 762 / 722,
  14809. bottom: 0.02
  14810. }
  14811. },
  14812. frontClothed: {
  14813. height: math.unit(6, "feet"),
  14814. weight: math.unit(150, "lb"),
  14815. name: "Front (Clothed)",
  14816. image: {
  14817. source: "./media/characters/felix/front-clothed.svg",
  14818. extra: 762 / 722,
  14819. bottom: 0.02
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(6 + 8 / 12, "feet"),
  14827. default: true
  14828. },
  14829. {
  14830. name: "Macro",
  14831. height: math.unit(2600, "feet")
  14832. },
  14833. {
  14834. name: "Megamacro",
  14835. height: math.unit(450, "miles")
  14836. },
  14837. ]
  14838. ))
  14839. characterMakers.push(() => makeCharacter(
  14840. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14841. {
  14842. front: {
  14843. height: math.unit(6 + 1 / 12, "feet"),
  14844. weight: math.unit(250, "lb"),
  14845. name: "Front",
  14846. image: {
  14847. source: "./media/characters/tobo/front.svg",
  14848. extra: 608 / 586,
  14849. bottom: 0.023
  14850. }
  14851. },
  14852. back: {
  14853. height: math.unit(6 + 1 / 12, "feet"),
  14854. weight: math.unit(250, "lb"),
  14855. name: "Back",
  14856. image: {
  14857. source: "./media/characters/tobo/back.svg",
  14858. extra: 608 / 586
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Nano",
  14865. height: math.unit(2, "nm")
  14866. },
  14867. {
  14868. name: "Megamicro",
  14869. height: math.unit(0.1, "mm")
  14870. },
  14871. {
  14872. name: "Micro",
  14873. height: math.unit(1, "inch"),
  14874. default: true
  14875. },
  14876. {
  14877. name: "Human-sized",
  14878. height: math.unit(6 + 1 / 12, "feet")
  14879. },
  14880. {
  14881. name: "Macro",
  14882. height: math.unit(250, "feet")
  14883. },
  14884. {
  14885. name: "Megamacro",
  14886. height: math.unit(75, "miles")
  14887. },
  14888. {
  14889. name: "Texas-sized",
  14890. height: math.unit(750, "miles")
  14891. },
  14892. {
  14893. name: "Teramacro",
  14894. height: math.unit(50000, "miles")
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(6, "feet"),
  14903. weight: math.unit(269, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/danny-kapowsky/front.svg",
  14907. extra: 766 / 736,
  14908. bottom: 0.044
  14909. }
  14910. },
  14911. back: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(269, "lb"),
  14914. name: "Back",
  14915. image: {
  14916. source: "./media/characters/danny-kapowsky/back.svg",
  14917. extra: 797 / 760,
  14918. bottom: 0.025
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Macro",
  14925. height: math.unit(150, "feet"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Macro+",
  14930. height: math.unit(200, "feet")
  14931. },
  14932. {
  14933. name: "Macro++",
  14934. height: math.unit(300, "feet")
  14935. },
  14936. {
  14937. name: "Macro+++",
  14938. height: math.unit(400, "feet")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14944. {
  14945. side: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(170, "lb"),
  14948. name: "Side",
  14949. image: {
  14950. source: "./media/characters/finn/side.svg",
  14951. extra: 1953 / 1807,
  14952. bottom: 0.057
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Megamacro",
  14959. height: math.unit(14445, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(5 + 6 / 12, "feet"),
  14969. weight: math.unit(125, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/roy/front.svg",
  14973. extra: 1,
  14974. bottom: 0.11
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Micro",
  14981. height: math.unit(3, "inches"),
  14982. default: true
  14983. },
  14984. {
  14985. name: "Normal",
  14986. height: math.unit(5 + 6 / 12, "feet")
  14987. },
  14988. {
  14989. name: "Lesser Macro",
  14990. height: math.unit(60, "feet")
  14991. },
  14992. {
  14993. name: "Greater Macro",
  14994. height: math.unit(120, "feet")
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(6, "feet"),
  15003. weight: math.unit(100, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/aevsivs/front.svg",
  15007. extra: 1,
  15008. bottom: 0.03
  15009. }
  15010. },
  15011. back: {
  15012. height: math.unit(6, "feet"),
  15013. weight: math.unit(100, "lb"),
  15014. name: "Back",
  15015. image: {
  15016. source: "./media/characters/aevsivs/back.svg"
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Micro",
  15023. height: math.unit(2, "inches"),
  15024. default: true
  15025. },
  15026. {
  15027. name: "Normal",
  15028. height: math.unit(5, "feet")
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15034. {
  15035. front: {
  15036. height: math.unit(5 + 7 / 12, "feet"),
  15037. weight: math.unit(159, "lb"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/hildegard/front.svg",
  15041. extra: 289 / 269,
  15042. bottom: 7.63 / 297.8
  15043. }
  15044. },
  15045. back: {
  15046. height: math.unit(5 + 7 / 12, "feet"),
  15047. weight: math.unit(159, "lb"),
  15048. name: "Back",
  15049. image: {
  15050. source: "./media/characters/hildegard/back.svg",
  15051. extra: 280 / 260,
  15052. bottom: 2.3 / 282
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(5 + 7 / 12, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15066. {
  15067. bernard: {
  15068. height: math.unit(2 + 7 / 12, "feet"),
  15069. weight: math.unit(66, "lb"),
  15070. name: "Bernard",
  15071. rename: true,
  15072. image: {
  15073. source: "./media/characters/bernard-wilder/bernard.svg",
  15074. extra: 192 / 128,
  15075. bottom: 0.05
  15076. }
  15077. },
  15078. wilder: {
  15079. height: math.unit(5 + 8 / 12, "feet"),
  15080. weight: math.unit(143, "lb"),
  15081. name: "Wilder",
  15082. rename: true,
  15083. image: {
  15084. source: "./media/characters/bernard-wilder/wilder.svg",
  15085. extra: 361 / 312,
  15086. bottom: 0.02
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Normal",
  15093. height: math.unit(2 + 7 / 12, "feet"),
  15094. default: true
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15100. {
  15101. anthro: {
  15102. height: math.unit(6 + 1 / 12, "feet"),
  15103. weight: math.unit(155, "lb"),
  15104. name: "Anthro",
  15105. image: {
  15106. source: "./media/characters/hearth/anthro.svg",
  15107. extra: 1178/1136,
  15108. bottom: 28/1206
  15109. }
  15110. },
  15111. feral: {
  15112. height: math.unit(3.78, "feet"),
  15113. weight: math.unit(35, "kg"),
  15114. name: "Feral",
  15115. image: {
  15116. source: "./media/characters/hearth/feral.svg",
  15117. extra: 153 / 135,
  15118. bottom: 0.03
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(6 + 1 / 12, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(6, "feet"),
  15135. weight: math.unit(182, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/ingrid/front.svg",
  15139. extra: 294 / 268,
  15140. bottom: 0.027
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(6, "feet"),
  15148. default: true
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15154. {
  15155. eevee: {
  15156. height: math.unit(2 + 10 / 12, "feet"),
  15157. weight: math.unit(86, "lb"),
  15158. name: "Malgam",
  15159. image: {
  15160. source: "./media/characters/malgam/eevee.svg",
  15161. extra: 952/784,
  15162. bottom: 38/990
  15163. }
  15164. },
  15165. sylveon: {
  15166. height: math.unit(4, "feet"),
  15167. weight: math.unit(101, "lb"),
  15168. name: "Future Malgam",
  15169. rename: true,
  15170. image: {
  15171. source: "./media/characters/malgam/sylveon.svg",
  15172. extra: 371 / 325,
  15173. bottom: 0.015
  15174. }
  15175. },
  15176. gigantamax: {
  15177. height: math.unit(50, "feet"),
  15178. name: "Gigantamax Malgam",
  15179. rename: true,
  15180. image: {
  15181. source: "./media/characters/malgam/gigantamax.svg"
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(2 + 10 / 12, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15195. {
  15196. front: {
  15197. height: math.unit(5 + 11 / 12, "feet"),
  15198. weight: math.unit(188, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/fleur/front.svg",
  15202. extra: 309 / 283,
  15203. bottom: 0.007
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Normal",
  15210. height: math.unit(5 + 11 / 12, "feet"),
  15211. default: true
  15212. },
  15213. ]
  15214. ))
  15215. characterMakers.push(() => makeCharacter(
  15216. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15217. {
  15218. front: {
  15219. height: math.unit(5 + 4 / 12, "feet"),
  15220. weight: math.unit(122, "lb"),
  15221. name: "Front",
  15222. image: {
  15223. source: "./media/characters/jude/front.svg",
  15224. extra: 288 / 273,
  15225. bottom: 0.03
  15226. }
  15227. },
  15228. },
  15229. [
  15230. {
  15231. name: "Normal",
  15232. height: math.unit(5 + 4 / 12, "feet"),
  15233. default: true
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15239. {
  15240. front: {
  15241. height: math.unit(5 + 11 / 12, "feet"),
  15242. weight: math.unit(190, "lb"),
  15243. name: "Front",
  15244. image: {
  15245. source: "./media/characters/seara/front.svg",
  15246. extra: 1,
  15247. bottom: 0.05
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(5 + 11 / 12, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(16 + 5 / 12, "feet"),
  15264. weight: math.unit(524, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/caspian/front.svg",
  15268. extra: 1,
  15269. bottom: 0.04
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(16 + 5 / 12, "feet"),
  15277. default: true
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(5 + 7 / 12, "feet"),
  15286. weight: math.unit(170, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/mika/front.svg",
  15290. extra: 1,
  15291. bottom: 0.016
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(5 + 7 / 12, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(6 + 2 / 12, "feet"),
  15308. weight: math.unit(268, "lb"),
  15309. name: "Front",
  15310. image: {
  15311. source: "./media/characters/sol/front.svg",
  15312. extra: 247 / 231,
  15313. bottom: 0.05
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Normal",
  15320. height: math.unit(6 + 2 / 12, "feet"),
  15321. default: true
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15327. {
  15328. buizel: {
  15329. height: math.unit(2 + 5 / 12, "feet"),
  15330. weight: math.unit(87, "lb"),
  15331. name: "Buizel",
  15332. image: {
  15333. source: "./media/characters/umiko/buizel.svg",
  15334. extra: 172 / 157,
  15335. bottom: 0.01
  15336. }
  15337. },
  15338. floatzel: {
  15339. height: math.unit(5 + 9 / 12, "feet"),
  15340. weight: math.unit(250, "lb"),
  15341. name: "Floatzel",
  15342. image: {
  15343. source: "./media/characters/umiko/floatzel.svg",
  15344. extra: 262 / 248
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Normal",
  15351. height: math.unit(2 + 5 / 12, "feet"),
  15352. default: true
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15358. {
  15359. front: {
  15360. height: math.unit(6 + 2 / 12, "feet"),
  15361. weight: math.unit(146, "lb"),
  15362. name: "Front",
  15363. image: {
  15364. source: "./media/characters/iliac/front.svg",
  15365. extra: 389 / 365,
  15366. bottom: 0.035
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(6 + 2 / 12, "feet"),
  15374. default: true
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(6, "feet"),
  15383. weight: math.unit(170, "lb"),
  15384. name: "Front",
  15385. image: {
  15386. source: "./media/characters/topaz/front.svg",
  15387. extra: 317 / 303,
  15388. bottom: 0.055
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(6, "feet"),
  15396. default: true
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(5 + 11 / 12, "feet"),
  15405. weight: math.unit(144, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/gabriel/front.svg",
  15409. extra: 285 / 262,
  15410. bottom: 0.004
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(5 + 11 / 12, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15424. {
  15425. side: {
  15426. height: math.unit(6 + 5 / 12, "feet"),
  15427. weight: math.unit(300, "lb"),
  15428. name: "Side",
  15429. image: {
  15430. source: "./media/characters/tempest-suicune/side.svg",
  15431. extra: 195 / 154,
  15432. bottom: 0.04
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(6 + 5 / 12, "feet"),
  15440. default: true
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(7 + 2 / 12, "feet"),
  15449. weight: math.unit(322, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/vulcan/front.svg",
  15453. extra: 154 / 147,
  15454. bottom: 0.04
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(7 + 2 / 12, "feet"),
  15462. default: true
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15468. {
  15469. front: {
  15470. height: math.unit(5 + 10 / 12, "feet"),
  15471. weight: math.unit(264, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/gault/front.svg",
  15475. extra: 161 / 140,
  15476. bottom: 0.028
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(5 + 10 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(6, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/shard/front.svg",
  15497. extra: 273 / 238,
  15498. bottom: 0.02
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Normal",
  15505. height: math.unit(3 + 6 / 12, "feet"),
  15506. default: true
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15512. {
  15513. front: {
  15514. height: math.unit(5 + 11 / 12, "feet"),
  15515. weight: math.unit(146, "lb"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/ashe/front.svg",
  15519. extra: 400 / 373,
  15520. bottom: 0.01
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(5 + 11 / 12, "feet"),
  15528. default: true
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15534. {
  15535. front: {
  15536. height: math.unit(5 + 5 / 12, "feet"),
  15537. weight: math.unit(135, "lb"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/beatrix/front.svg",
  15541. extra: 392 / 379,
  15542. bottom: 0.01
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(6, "feet"),
  15550. default: true
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(6 + 2/12, "feet"),
  15559. weight: math.unit(135, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/ignatius/front.svg",
  15563. extra: 1380/1259,
  15564. bottom: 27/1407
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(6 + 2/12, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(6 + 2 / 12, "feet"),
  15581. weight: math.unit(138, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/mei-li/front.svg",
  15585. extra: 237 / 229,
  15586. bottom: 0.03
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(6 + 2 / 12, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(2 + 4 / 12, "feet"),
  15603. weight: math.unit(62, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/puru/front.svg",
  15607. extra: 206 / 149,
  15608. bottom: 0.06
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(2 + 4 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15622. {
  15623. anthro: {
  15624. height: math.unit(5 + 8/12, "feet"),
  15625. weight: math.unit(200, "lb"),
  15626. energyNeed: math.unit(2000, "kcal"),
  15627. name: "Anthro",
  15628. image: {
  15629. source: "./media/characters/kee/anthro.svg",
  15630. extra: 3251/3184,
  15631. bottom: 250/3501
  15632. }
  15633. },
  15634. taur: {
  15635. height: math.unit(11, "feet"),
  15636. weight: math.unit(500, "lb"),
  15637. energyNeed: math.unit(5000, "kcal"),
  15638. name: "Taur",
  15639. image: {
  15640. source: "./media/characters/kee/taur.svg",
  15641. extra: 1362/1320,
  15642. bottom: 83/1445
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(5 + 8/12, "feet"),
  15650. default: true
  15651. },
  15652. {
  15653. name: "Macro",
  15654. height: math.unit(35, "feet")
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15660. {
  15661. anthro: {
  15662. height: math.unit(7, "feet"),
  15663. weight: math.unit(190, "lb"),
  15664. name: "Anthro",
  15665. image: {
  15666. source: "./media/characters/cobalt-dracha/anthro.svg",
  15667. extra: 231 / 225,
  15668. bottom: 0.04
  15669. }
  15670. },
  15671. feral: {
  15672. height: math.unit(9 + 7 / 12, "feet"),
  15673. weight: math.unit(294, "lb"),
  15674. name: "Feral",
  15675. image: {
  15676. source: "./media/characters/cobalt-dracha/feral.svg",
  15677. extra: 692 / 633,
  15678. bottom: 0.05
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(7, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15692. {
  15693. fallen: {
  15694. height: math.unit(11 + 8 / 12, "feet"),
  15695. weight: math.unit(485, "lb"),
  15696. name: "Java (Fallen)",
  15697. rename: true,
  15698. image: {
  15699. source: "./media/characters/java/fallen.svg",
  15700. extra: 226 / 208,
  15701. bottom: 0.005
  15702. }
  15703. },
  15704. godkin: {
  15705. height: math.unit(10 + 6 / 12, "feet"),
  15706. weight: math.unit(328, "lb"),
  15707. name: "Java (Godkin)",
  15708. rename: true,
  15709. image: {
  15710. source: "./media/characters/java/godkin.svg",
  15711. extra: 1104/1068,
  15712. bottom: 36/1140
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(11 + 8 / 12, "feet"),
  15720. default: true
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(5 + 9 / 12, "feet"),
  15729. weight: math.unit(170, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/purna/front.svg",
  15733. extra: 239 / 229,
  15734. bottom: 0.01
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(5 + 9 / 12, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15748. {
  15749. front: {
  15750. height: math.unit(5 + 9 / 12, "feet"),
  15751. weight: math.unit(142, "lb"),
  15752. name: "Front",
  15753. image: {
  15754. source: "./media/characters/kuva/front.svg",
  15755. extra: 281 / 271,
  15756. bottom: 0.006
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(5 + 9 / 12, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15770. {
  15771. anthro: {
  15772. height: math.unit(9 + 2 / 12, "feet"),
  15773. weight: math.unit(270, "lb"),
  15774. name: "Anthro",
  15775. image: {
  15776. source: "./media/characters/embra/anthro.svg",
  15777. extra: 200 / 187,
  15778. bottom: 0.02
  15779. }
  15780. },
  15781. feral: {
  15782. height: math.unit(18 + 8 / 12, "feet"),
  15783. weight: math.unit(576, "lb"),
  15784. name: "Feral",
  15785. image: {
  15786. source: "./media/characters/embra/feral.svg",
  15787. extra: 152 / 137,
  15788. bottom: 0.037
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(9 + 2 / 12, "feet"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15802. {
  15803. anthro: {
  15804. height: math.unit(10 + 9 / 12, "feet"),
  15805. weight: math.unit(224, "lb"),
  15806. name: "Anthro",
  15807. image: {
  15808. source: "./media/characters/grottos/anthro.svg",
  15809. extra: 350 / 332,
  15810. bottom: 0.045
  15811. }
  15812. },
  15813. feral: {
  15814. height: math.unit(20 + 7 / 12, "feet"),
  15815. weight: math.unit(629, "lb"),
  15816. name: "Feral",
  15817. image: {
  15818. source: "./media/characters/grottos/feral.svg",
  15819. extra: 207 / 190,
  15820. bottom: 0.05
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Normal",
  15827. height: math.unit(10 + 9 / 12, "feet"),
  15828. default: true
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15834. {
  15835. anthro: {
  15836. height: math.unit(9 + 6 / 12, "feet"),
  15837. weight: math.unit(298, "lb"),
  15838. name: "Anthro",
  15839. image: {
  15840. source: "./media/characters/frifna/anthro.svg",
  15841. extra: 282 / 269,
  15842. bottom: 0.015
  15843. }
  15844. },
  15845. feral: {
  15846. height: math.unit(16 + 2 / 12, "feet"),
  15847. weight: math.unit(624, "lb"),
  15848. name: "Feral",
  15849. image: {
  15850. source: "./media/characters/frifna/feral.svg"
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(9 + 6 / 12, "feet"),
  15858. default: true
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15864. {
  15865. front: {
  15866. height: math.unit(6 + 2 / 12, "feet"),
  15867. weight: math.unit(168, "lb"),
  15868. name: "Front",
  15869. image: {
  15870. source: "./media/characters/elise/front.svg",
  15871. extra: 276 / 271
  15872. }
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(6 + 2 / 12, "feet"),
  15879. default: true
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15885. {
  15886. front: {
  15887. height: math.unit(5 + 10 / 12, "feet"),
  15888. weight: math.unit(210, "lb"),
  15889. name: "Front",
  15890. image: {
  15891. source: "./media/characters/glade/front.svg",
  15892. extra: 258 / 247,
  15893. bottom: 0.008
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Normal",
  15900. height: math.unit(5 + 10 / 12, "feet"),
  15901. default: true
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(5 + 10 / 12, "feet"),
  15910. weight: math.unit(129, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/rina/front.svg",
  15914. extra: 266 / 255,
  15915. bottom: 0.005
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(5 + 10 / 12, "feet"),
  15923. default: true
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(6 + 1 / 12, "feet"),
  15932. weight: math.unit(192, "lb"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/veronica/front.svg",
  15936. extra: 319 / 309,
  15937. bottom: 0.005
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Normal",
  15944. height: math.unit(6 + 1 / 12, "feet"),
  15945. default: true
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15951. {
  15952. front: {
  15953. height: math.unit(9 + 3 / 12, "feet"),
  15954. weight: math.unit(1100, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/braxton/front.svg",
  15958. extra: 1057 / 984,
  15959. bottom: 0.05
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(9 + 3 / 12, "feet")
  15967. },
  15968. {
  15969. name: "Giant",
  15970. height: math.unit(300, "feet"),
  15971. default: true
  15972. },
  15973. {
  15974. name: "Macro",
  15975. height: math.unit(700, "feet")
  15976. },
  15977. {
  15978. name: "Megamacro",
  15979. height: math.unit(6000, "feet")
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15985. {
  15986. front: {
  15987. height: math.unit(6 + 7 / 12, "feet"),
  15988. weight: math.unit(150, "lb"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/blue-feyonics/front.svg",
  15992. extra: 1403 / 1306,
  15993. bottom: 0.047
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(6 + 7 / 12, "feet"),
  16001. default: true
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(1.8, "meters"),
  16010. weight: math.unit(60, "kg"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/maxwell/front.svg",
  16014. extra: 2060 / 1873
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Micro",
  16021. height: math.unit(1, "mm")
  16022. },
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(1.8, "meter"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Macro",
  16030. height: math.unit(30, "meters")
  16031. },
  16032. {
  16033. name: "Megamacro",
  16034. height: math.unit(10, "km")
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/jack/front.svg",
  16047. extra: 1754 / 1640,
  16048. bottom: 0.01
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(80000, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Max size",
  16060. height: math.unit(10, "lightyears")
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16066. {
  16067. urban: {
  16068. height: math.unit(5, "feet"),
  16069. weight: math.unit(240, "lb"),
  16070. name: "Urban",
  16071. image: {
  16072. source: "./media/characters/cafat/urban.svg",
  16073. extra: 1223/1126,
  16074. bottom: 205/1428
  16075. }
  16076. },
  16077. summer: {
  16078. height: math.unit(5, "feet"),
  16079. weight: math.unit(240, "lb"),
  16080. name: "Summer",
  16081. image: {
  16082. source: "./media/characters/cafat/summer.svg",
  16083. extra: 1223/1126,
  16084. bottom: 205/1428
  16085. }
  16086. },
  16087. winter: {
  16088. height: math.unit(5, "feet"),
  16089. weight: math.unit(240, "lb"),
  16090. name: "Winter",
  16091. image: {
  16092. source: "./media/characters/cafat/winter.svg",
  16093. extra: 1223/1126,
  16094. bottom: 205/1428
  16095. }
  16096. },
  16097. lingerie: {
  16098. height: math.unit(5, "feet"),
  16099. weight: math.unit(240, "lb"),
  16100. name: "Lingerie",
  16101. image: {
  16102. source: "./media/characters/cafat/lingerie.svg",
  16103. extra: 1223/1126,
  16104. bottom: 205/1428
  16105. }
  16106. },
  16107. upright: {
  16108. height: math.unit(6.3, "feet"),
  16109. weight: math.unit(240, "lb"),
  16110. name: "Upright",
  16111. image: {
  16112. source: "./media/characters/cafat/upright.svg",
  16113. bottom: 0.01
  16114. }
  16115. },
  16116. uprightFull: {
  16117. height: math.unit(6.3, "feet"),
  16118. weight: math.unit(240, "lb"),
  16119. name: "Upright (Full)",
  16120. image: {
  16121. source: "./media/characters/cafat/upright-full.svg",
  16122. bottom: 0.01
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Small",
  16129. height: math.unit(5, "feet"),
  16130. default: true
  16131. },
  16132. {
  16133. name: "Large",
  16134. height: math.unit(13, "feet")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(150, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/verin-raharra/front.svg",
  16147. extra: 5019 / 4835,
  16148. bottom: 0.023
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(7 + 5 / 12, "feet"),
  16156. default: true
  16157. },
  16158. {
  16159. name: "Upsized",
  16160. height: math.unit(20, "feet")
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16166. {
  16167. front: {
  16168. height: math.unit(7, "feet"),
  16169. weight: math.unit(230, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/nakata/front.svg",
  16173. extra: 1.005,
  16174. bottom: 0.01
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(7, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Big",
  16186. height: math.unit(14, "feet")
  16187. },
  16188. {
  16189. name: "Macro",
  16190. height: math.unit(400, "feet")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(4.91, "feet"),
  16199. weight: math.unit(100, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/lily/front.svg",
  16203. extra: 1585 / 1415,
  16204. bottom: 0.02
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(4.91, "feet"),
  16212. default: true
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16218. {
  16219. laying: {
  16220. height: math.unit(4 + 4 / 12, "feet"),
  16221. weight: math.unit(600, "lb"),
  16222. name: "Laying",
  16223. image: {
  16224. source: "./media/characters/sheila/laying.svg",
  16225. extra: 1333 / 1265,
  16226. bottom: 0.16
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(4 + 4 / 12, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(6, "feet"),
  16243. weight: math.unit(190, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/sax/front.svg",
  16247. extra: 1187 / 973,
  16248. bottom: 0.042
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Micro",
  16255. height: math.unit(4, "inches"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(150, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/pandora/front.svg",
  16269. extra: 2720 / 2556,
  16270. bottom: 0.015
  16271. }
  16272. },
  16273. back: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(150, "lb"),
  16276. name: "Back",
  16277. image: {
  16278. source: "./media/characters/pandora/back.svg",
  16279. extra: 2720 / 2556,
  16280. bottom: 0.01
  16281. }
  16282. },
  16283. beans: {
  16284. height: math.unit(6 / 8, "feet"),
  16285. name: "Beans",
  16286. image: {
  16287. source: "./media/characters/pandora/beans.svg"
  16288. }
  16289. },
  16290. collar: {
  16291. height: math.unit(0.31, "feet"),
  16292. name: "Collar",
  16293. image: {
  16294. source: "./media/characters/pandora/collar.svg"
  16295. }
  16296. },
  16297. skirt: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Skirt",
  16301. image: {
  16302. source: "./media/characters/pandora/skirt.svg",
  16303. extra: 1622 / 1525,
  16304. bottom: 0.015
  16305. }
  16306. },
  16307. hoodie: {
  16308. height: math.unit(6, "feet"),
  16309. weight: math.unit(150, "lb"),
  16310. name: "Hoodie",
  16311. image: {
  16312. source: "./media/characters/pandora/hoodie.svg",
  16313. extra: 1622 / 1525,
  16314. bottom: 0.015
  16315. }
  16316. },
  16317. casual: {
  16318. height: math.unit(6, "feet"),
  16319. weight: math.unit(150, "lb"),
  16320. name: "Casual",
  16321. image: {
  16322. source: "./media/characters/pandora/casual.svg",
  16323. extra: 1622 / 1525,
  16324. bottom: 0.015
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(6, "feet")
  16332. },
  16333. {
  16334. name: "Big Steppy",
  16335. height: math.unit(1, "km"),
  16336. default: true
  16337. },
  16338. {
  16339. name: "Galactic Steppy",
  16340. height: math.unit(2, "gigameters")
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16346. {
  16347. side: {
  16348. height: math.unit(10, "feet"),
  16349. weight: math.unit(800, "kg"),
  16350. name: "Side",
  16351. image: {
  16352. source: "./media/characters/venio-darcony/side.svg",
  16353. extra: 1373 / 1003,
  16354. bottom: 0.037
  16355. }
  16356. },
  16357. front: {
  16358. height: math.unit(19, "feet"),
  16359. weight: math.unit(800, "kg"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/venio-darcony/front.svg"
  16363. }
  16364. },
  16365. back: {
  16366. height: math.unit(19, "feet"),
  16367. weight: math.unit(800, "kg"),
  16368. name: "Back",
  16369. image: {
  16370. source: "./media/characters/venio-darcony/back.svg"
  16371. }
  16372. },
  16373. sideNsfw: {
  16374. height: math.unit(10, "feet"),
  16375. weight: math.unit(800, "kg"),
  16376. name: "Side (NSFW)",
  16377. image: {
  16378. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16379. extra: 1373 / 1003,
  16380. bottom: 0.037
  16381. }
  16382. },
  16383. frontNsfw: {
  16384. height: math.unit(19, "feet"),
  16385. weight: math.unit(800, "kg"),
  16386. name: "Front (NSFW)",
  16387. image: {
  16388. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16389. }
  16390. },
  16391. backNsfw: {
  16392. height: math.unit(19, "feet"),
  16393. weight: math.unit(800, "kg"),
  16394. name: "Back (NSFW)",
  16395. image: {
  16396. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16397. }
  16398. },
  16399. sideArmored: {
  16400. height: math.unit(10, "feet"),
  16401. weight: math.unit(800, "kg"),
  16402. name: "Side (Armored)",
  16403. image: {
  16404. source: "./media/characters/venio-darcony/side-armored.svg",
  16405. extra: 1373 / 1003,
  16406. bottom: 0.037
  16407. }
  16408. },
  16409. frontArmored: {
  16410. height: math.unit(19, "feet"),
  16411. weight: math.unit(900, "kg"),
  16412. name: "Front (Armored)",
  16413. image: {
  16414. source: "./media/characters/venio-darcony/front-armored.svg"
  16415. }
  16416. },
  16417. backArmored: {
  16418. height: math.unit(19, "feet"),
  16419. weight: math.unit(900, "kg"),
  16420. name: "Back (Armored)",
  16421. image: {
  16422. source: "./media/characters/venio-darcony/back-armored.svg"
  16423. }
  16424. },
  16425. sword: {
  16426. height: math.unit(10, "feet"),
  16427. weight: math.unit(50, "lb"),
  16428. name: "Sword",
  16429. image: {
  16430. source: "./media/characters/venio-darcony/sword.svg"
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(10, "feet")
  16438. },
  16439. {
  16440. name: "Macro",
  16441. height: math.unit(130, "feet"),
  16442. default: true
  16443. },
  16444. {
  16445. name: "Macro+",
  16446. height: math.unit(240, "feet")
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16452. {
  16453. front: {
  16454. height: math.unit(6, "feet"),
  16455. weight: math.unit(150, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/veski/front.svg",
  16459. extra: 1299 / 1225,
  16460. bottom: 0.04
  16461. }
  16462. },
  16463. back: {
  16464. height: math.unit(6, "feet"),
  16465. weight: math.unit(150, "lb"),
  16466. name: "Back",
  16467. image: {
  16468. source: "./media/characters/veski/back.svg",
  16469. extra: 1299 / 1225,
  16470. bottom: 0.008
  16471. }
  16472. },
  16473. maw: {
  16474. height: math.unit(1.5 * 1.21, "feet"),
  16475. name: "Maw",
  16476. image: {
  16477. source: "./media/characters/veski/maw.svg"
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(2, "km"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16491. {
  16492. front: {
  16493. height: math.unit(5 + 7 / 12, "feet"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/isabelle/front.svg",
  16497. extra: 2130 / 1976,
  16498. bottom: 0.05
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Supermicro",
  16505. height: math.unit(10, "micrometers")
  16506. },
  16507. {
  16508. name: "Micro",
  16509. height: math.unit(1, "inch")
  16510. },
  16511. {
  16512. name: "Tiny",
  16513. height: math.unit(5, "inches")
  16514. },
  16515. {
  16516. name: "Standard",
  16517. height: math.unit(5 + 7 / 12, "inches")
  16518. },
  16519. {
  16520. name: "Macro",
  16521. height: math.unit(80, "meters"),
  16522. default: true
  16523. },
  16524. {
  16525. name: "Megamacro",
  16526. height: math.unit(250, "meters")
  16527. },
  16528. {
  16529. name: "Gigamacro",
  16530. height: math.unit(5, "km")
  16531. },
  16532. {
  16533. name: "Cosmic",
  16534. height: math.unit(2.5e6, "miles")
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(6, "feet"),
  16543. weight: math.unit(150, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/hanzo/front.svg",
  16547. extra: 374 / 344,
  16548. bottom: 0.02
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(8, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(7, "feet"),
  16565. weight: math.unit(130, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/anna/front.svg",
  16569. extra: 169 / 145,
  16570. bottom: 0.06
  16571. }
  16572. },
  16573. full: {
  16574. height: math.unit(4.96, "feet"),
  16575. weight: math.unit(220, "lb"),
  16576. name: "Full",
  16577. image: {
  16578. source: "./media/characters/anna/full.svg",
  16579. extra: 138 / 114,
  16580. bottom: 0.15
  16581. }
  16582. },
  16583. tongue: {
  16584. height: math.unit(2.53, "feet"),
  16585. name: "Tongue",
  16586. image: {
  16587. source: "./media/characters/anna/tongue.svg"
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(7, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(7, "feet"),
  16604. weight: math.unit(150, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/ian-corvid/front.svg",
  16608. extra: 150 / 142,
  16609. bottom: 0.02
  16610. }
  16611. },
  16612. back: {
  16613. height: math.unit(7, "feet"),
  16614. weight: math.unit(150, "lb"),
  16615. name: "Back",
  16616. image: {
  16617. source: "./media/characters/ian-corvid/back.svg",
  16618. extra: 150 / 143,
  16619. bottom: 0.01
  16620. }
  16621. },
  16622. stomping: {
  16623. height: math.unit(7, "feet"),
  16624. weight: math.unit(150, "lb"),
  16625. name: "Stomping",
  16626. image: {
  16627. source: "./media/characters/ian-corvid/stomping.svg",
  16628. extra: 76 / 72
  16629. }
  16630. },
  16631. sitting: {
  16632. height: math.unit(7 / 1.8, "feet"),
  16633. weight: math.unit(150, "lb"),
  16634. name: "Sitting",
  16635. image: {
  16636. source: "./media/characters/ian-corvid/sitting.svg",
  16637. extra: 1400 / 1269,
  16638. bottom: 0.15
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Tiny Microw",
  16645. height: math.unit(1, "inch")
  16646. },
  16647. {
  16648. name: "Microw",
  16649. height: math.unit(6, "inches")
  16650. },
  16651. {
  16652. name: "Crow",
  16653. height: math.unit(7 + 1 / 12, "feet"),
  16654. default: true
  16655. },
  16656. {
  16657. name: "Macrow",
  16658. height: math.unit(176, "feet")
  16659. },
  16660. ]
  16661. ))
  16662. characterMakers.push(() => makeCharacter(
  16663. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16664. {
  16665. front: {
  16666. height: math.unit(5 + 7 / 12, "feet"),
  16667. weight: math.unit(147, "lb"),
  16668. name: "Front",
  16669. image: {
  16670. source: "./media/characters/natalie-kellon/front.svg",
  16671. extra: 1214 / 1141,
  16672. bottom: 0.02
  16673. }
  16674. },
  16675. },
  16676. [
  16677. {
  16678. name: "Micro",
  16679. height: math.unit(1 / 16, "inch")
  16680. },
  16681. {
  16682. name: "Tiny",
  16683. height: math.unit(4, "inches")
  16684. },
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(5 + 7 / 12, "feet"),
  16688. default: true
  16689. },
  16690. {
  16691. name: "Amazon",
  16692. height: math.unit(12, "feet")
  16693. },
  16694. {
  16695. name: "Giantess",
  16696. height: math.unit(160, "meters")
  16697. },
  16698. {
  16699. name: "Titaness",
  16700. height: math.unit(800, "meters")
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16706. {
  16707. front: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(150, "lb"),
  16710. name: "Front",
  16711. image: {
  16712. source: "./media/characters/alluria/front.svg",
  16713. extra: 806 / 738,
  16714. bottom: 0.01
  16715. }
  16716. },
  16717. side: {
  16718. height: math.unit(6, "feet"),
  16719. weight: math.unit(150, "lb"),
  16720. name: "Side",
  16721. image: {
  16722. source: "./media/characters/alluria/side.svg",
  16723. extra: 800 / 750,
  16724. }
  16725. },
  16726. back: {
  16727. height: math.unit(6, "feet"),
  16728. weight: math.unit(150, "lb"),
  16729. name: "Back",
  16730. image: {
  16731. source: "./media/characters/alluria/back.svg",
  16732. extra: 806 / 738,
  16733. }
  16734. },
  16735. frontMaid: {
  16736. height: math.unit(6, "feet"),
  16737. weight: math.unit(150, "lb"),
  16738. name: "Front (Maid)",
  16739. image: {
  16740. source: "./media/characters/alluria/front-maid.svg",
  16741. extra: 806 / 738,
  16742. bottom: 0.01
  16743. }
  16744. },
  16745. sideMaid: {
  16746. height: math.unit(6, "feet"),
  16747. weight: math.unit(150, "lb"),
  16748. name: "Side (Maid)",
  16749. image: {
  16750. source: "./media/characters/alluria/side-maid.svg",
  16751. extra: 800 / 750,
  16752. bottom: 0.005
  16753. }
  16754. },
  16755. backMaid: {
  16756. height: math.unit(6, "feet"),
  16757. weight: math.unit(150, "lb"),
  16758. name: "Back (Maid)",
  16759. image: {
  16760. source: "./media/characters/alluria/back-maid.svg",
  16761. extra: 806 / 738,
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Micro",
  16768. height: math.unit(6, "inches"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(6, "feet"),
  16778. weight: math.unit(150, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/kyle/front.svg",
  16782. extra: 1069 / 962,
  16783. bottom: 77.228 / 1727.45
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Macro",
  16790. height: math.unit(150, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(6, "feet"),
  16800. weight: math.unit(300, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/duncan/front.svg",
  16804. extra: 1650 / 1482,
  16805. bottom: 0.05
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Macro",
  16812. height: math.unit(100, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(5 + 4 / 12, "feet"),
  16822. weight: math.unit(220, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/memory/front.svg",
  16826. extra: 3641 / 3545,
  16827. bottom: 0.03
  16828. }
  16829. },
  16830. back: {
  16831. height: math.unit(5 + 4 / 12, "feet"),
  16832. weight: math.unit(220, "lb"),
  16833. name: "Back",
  16834. image: {
  16835. source: "./media/characters/memory/back.svg",
  16836. extra: 3641 / 3545,
  16837. bottom: 0.025
  16838. }
  16839. },
  16840. frontSkirt: {
  16841. height: math.unit(5 + 4 / 12, "feet"),
  16842. weight: math.unit(220, "lb"),
  16843. name: "Front (Skirt)",
  16844. image: {
  16845. source: "./media/characters/memory/front-skirt.svg",
  16846. extra: 3641 / 3545,
  16847. bottom: 0.03
  16848. }
  16849. },
  16850. frontDress: {
  16851. height: math.unit(5 + 4 / 12, "feet"),
  16852. weight: math.unit(220, "lb"),
  16853. name: "Front (Dress)",
  16854. image: {
  16855. source: "./media/characters/memory/front-dress.svg",
  16856. extra: 3641 / 3545,
  16857. bottom: 0.03
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Micro",
  16864. height: math.unit(6, "inches"),
  16865. default: true
  16866. },
  16867. {
  16868. name: "Normal",
  16869. height: math.unit(5 + 4 / 12, "feet")
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(4 + 11 / 12, "feet"),
  16878. weight: math.unit(100, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/luno/front.svg",
  16882. extra: 1535 / 1487,
  16883. bottom: 0.03
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Micro",
  16890. height: math.unit(3, "inches")
  16891. },
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(4 + 11 / 12, "feet"),
  16895. default: true
  16896. },
  16897. {
  16898. name: "Macro",
  16899. height: math.unit(300, "feet")
  16900. },
  16901. {
  16902. name: "Megamacro",
  16903. height: math.unit(700, "miles")
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(6 + 2 / 12, "feet"),
  16912. weight: math.unit(170, "lb"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/jamesy/front.svg",
  16916. extra: 440 / 382,
  16917. bottom: 0.005
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Micro",
  16924. height: math.unit(3, "inches")
  16925. },
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(6 + 2 / 12, "feet"),
  16929. default: true
  16930. },
  16931. {
  16932. name: "Macro",
  16933. height: math.unit(300, "feet")
  16934. },
  16935. {
  16936. name: "Megamacro",
  16937. height: math.unit(700, "miles")
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(6, "feet"),
  16946. weight: math.unit(160, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/mark/front.svg",
  16950. extra: 3300 / 3100,
  16951. bottom: 136.42 / 3440.47
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Macro",
  16958. height: math.unit(120, "meters")
  16959. },
  16960. {
  16961. name: "Bigger Macro",
  16962. height: math.unit(350, "meters")
  16963. },
  16964. {
  16965. name: "Megamacro",
  16966. height: math.unit(8, "km"),
  16967. default: true
  16968. },
  16969. {
  16970. name: "Continental",
  16971. height: math.unit(4550, "km")
  16972. },
  16973. {
  16974. name: "Planetary",
  16975. height: math.unit(65000, "km")
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16981. {
  16982. front: {
  16983. height: math.unit(6, "feet"),
  16984. weight: math.unit(400, "lb"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/mac/front.svg",
  16988. extra: 1048 / 987.7,
  16989. bottom: 60 / 1107.6,
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Macro",
  16996. height: math.unit(500, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17003. {
  17004. front: {
  17005. height: math.unit(5 + 2 / 12, "feet"),
  17006. weight: math.unit(190, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/bari/front.svg",
  17010. extra: 3156 / 2880,
  17011. bottom: 0.03
  17012. }
  17013. },
  17014. back: {
  17015. height: math.unit(5 + 2 / 12, "feet"),
  17016. weight: math.unit(190, "lb"),
  17017. name: "Back",
  17018. image: {
  17019. source: "./media/characters/bari/back.svg",
  17020. extra: 3260 / 2834,
  17021. bottom: 0.025
  17022. }
  17023. },
  17024. frontPlush: {
  17025. height: math.unit(5 + 2 / 12, "feet"),
  17026. weight: math.unit(190, "lb"),
  17027. name: "Front (Plush)",
  17028. image: {
  17029. source: "./media/characters/bari/front-plush.svg",
  17030. extra: 1112 / 1061,
  17031. bottom: 0.002
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Micro",
  17038. height: math.unit(3, "inches")
  17039. },
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(5 + 2 / 12, "feet"),
  17043. default: true
  17044. },
  17045. {
  17046. name: "Macro",
  17047. height: math.unit(20, "feet")
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17053. {
  17054. front: {
  17055. height: math.unit(6 + 1 / 12, "feet"),
  17056. weight: math.unit(275, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/hunter-misha-raven/front.svg"
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Mortal",
  17066. height: math.unit(6 + 1 / 12, "feet")
  17067. },
  17068. {
  17069. name: "Divine",
  17070. height: math.unit(1.12134e34, "parsecs"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(6 + 3 / 12, "feet"),
  17080. weight: math.unit(220, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/max-calore/front.svg",
  17084. extra: 1700 / 1648,
  17085. bottom: 0.01
  17086. }
  17087. },
  17088. back: {
  17089. height: math.unit(6 + 3 / 12, "feet"),
  17090. weight: math.unit(220, "lb"),
  17091. name: "Back",
  17092. image: {
  17093. source: "./media/characters/max-calore/back.svg",
  17094. extra: 1700 / 1648,
  17095. bottom: 0.01
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(6 + 3 / 12, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17109. {
  17110. side: {
  17111. height: math.unit(2 + 8 / 12, "feet"),
  17112. weight: math.unit(99, "lb"),
  17113. name: "Side",
  17114. image: {
  17115. source: "./media/characters/aspen/side.svg",
  17116. extra: 152 / 138,
  17117. bottom: 0.032
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(2 + 8 / 12, "feet"),
  17125. default: true
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17131. {
  17132. side: {
  17133. height: math.unit(3 + 2 / 12, "feet"),
  17134. weight: math.unit(224, "lb"),
  17135. name: "Side",
  17136. image: {
  17137. source: "./media/characters/sheila-feral-wolf/side.svg",
  17138. extra: 179 / 166,
  17139. bottom: 0.03
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Normal",
  17146. height: math.unit(3 + 2 / 12, "feet"),
  17147. default: true
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17153. {
  17154. side: {
  17155. height: math.unit(1 + 9 / 12, "feet"),
  17156. weight: math.unit(38, "lb"),
  17157. name: "Side",
  17158. image: {
  17159. source: "./media/characters/michelle/side.svg",
  17160. extra: 147 / 136.7,
  17161. bottom: 0.03
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(1 + 9 / 12, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17175. {
  17176. front: {
  17177. height: math.unit(1.54, "feet"),
  17178. weight: math.unit(50, "lb"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/nino/front.svg"
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(1.54, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(1, "feet"),
  17198. weight: math.unit(16, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/viola/front.svg"
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(1, "feet"),
  17209. default: true
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(6 + 5 / 12, "feet"),
  17218. weight: math.unit(580, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/atlas/front.svg",
  17222. extra: 298.5 / 290,
  17223. bottom: 0.015
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(6 + 5 / 12, "feet"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17237. {
  17238. side: {
  17239. height: math.unit(1 + 10 / 12, "feet"),
  17240. weight: math.unit(25, "lb"),
  17241. name: "Side",
  17242. image: {
  17243. source: "./media/characters/davy/side.svg",
  17244. extra: 200 / 170,
  17245. bottom: 0.01
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(1 + 10 / 12, "feet"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17259. {
  17260. side: {
  17261. height: math.unit(4 + 8 / 12, "feet"),
  17262. weight: math.unit(166, "lb"),
  17263. name: "Side",
  17264. image: {
  17265. source: "./media/characters/fiona/side.svg",
  17266. extra: 232 / 220,
  17267. bottom: 0.03
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(4 + 8 / 12, "feet"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17281. {
  17282. front: {
  17283. height: math.unit(3, "feet"),
  17284. weight: math.unit(100, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/lyla/front.svg",
  17288. bottom: 0.1
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(3, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17302. {
  17303. side: {
  17304. height: math.unit(1.8, "feet"),
  17305. weight: math.unit(44, "lb"),
  17306. name: "Side",
  17307. image: {
  17308. source: "./media/characters/perseus/side.svg",
  17309. bottom: 0.21
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(1.8, "feet"),
  17317. default: true
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17323. {
  17324. side: {
  17325. height: math.unit(4 + 2 / 12, "feet"),
  17326. weight: math.unit(20, "lb"),
  17327. name: "Side",
  17328. image: {
  17329. source: "./media/characters/remus/side.svg"
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(4 + 2 / 12, "feet"),
  17337. default: true
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17343. {
  17344. front: {
  17345. height: math.unit(4 + 11 / 12, "feet"),
  17346. weight: math.unit(114, "lb"),
  17347. name: "Front",
  17348. image: {
  17349. source: "./media/characters/raf/front.svg",
  17350. extra: 1504/1339,
  17351. bottom: 26/1530
  17352. }
  17353. },
  17354. side: {
  17355. height: math.unit(4 + 11 / 12, "feet"),
  17356. weight: math.unit(114, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/raf/side.svg",
  17360. extra: 1466/1316,
  17361. bottom: 29/1495
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Micro",
  17368. height: math.unit(2, "inches")
  17369. },
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(4 + 11 / 12, "feet"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Macro",
  17377. height: math.unit(70, "feet")
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(1.5, "meters"),
  17386. weight: math.unit(68, "kg"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/liam-einarr/front.svg",
  17390. extra: 2822 / 2666
  17391. }
  17392. },
  17393. back: {
  17394. height: math.unit(1.5, "meters"),
  17395. weight: math.unit(68, "kg"),
  17396. name: "Back",
  17397. image: {
  17398. source: "./media/characters/liam-einarr/back.svg",
  17399. extra: 2822 / 2666,
  17400. bottom: 0.015
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(1.5, "meters"),
  17408. default: true
  17409. },
  17410. {
  17411. name: "Macro",
  17412. height: math.unit(150, "meters")
  17413. },
  17414. {
  17415. name: "Megamacro",
  17416. height: math.unit(35, "km")
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17422. {
  17423. front: {
  17424. height: math.unit(6, "feet"),
  17425. weight: math.unit(75, "kg"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/linda/front.svg",
  17429. extra: 930 / 874,
  17430. bottom: 0.004
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(6, "feet"),
  17438. default: true
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17444. {
  17445. front: {
  17446. height: math.unit(6 + 8 / 12, "feet"),
  17447. weight: math.unit(220, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/caylex/front.svg",
  17451. extra: 821 / 772,
  17452. bottom: 0.07
  17453. }
  17454. },
  17455. back: {
  17456. height: math.unit(6 + 8 / 12, "feet"),
  17457. weight: math.unit(220, "lb"),
  17458. name: "Back",
  17459. image: {
  17460. source: "./media/characters/caylex/back.svg",
  17461. extra: 821 / 772,
  17462. bottom: 0.022
  17463. }
  17464. },
  17465. hand: {
  17466. height: math.unit(1.25, "feet"),
  17467. name: "Hand",
  17468. image: {
  17469. source: "./media/characters/caylex/hand.svg"
  17470. }
  17471. },
  17472. foot: {
  17473. height: math.unit(1.6, "feet"),
  17474. name: "Foot",
  17475. image: {
  17476. source: "./media/characters/caylex/foot.svg"
  17477. }
  17478. },
  17479. armored: {
  17480. height: math.unit(6 + 8 / 12, "feet"),
  17481. weight: math.unit(250, "lb"),
  17482. name: "Armored",
  17483. image: {
  17484. source: "./media/characters/caylex/armored.svg",
  17485. extra: 1420 / 1310,
  17486. bottom: 0.045
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(6 + 8 / 12, "feet"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Normal+",
  17498. height: math.unit(12, "feet")
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17504. {
  17505. front: {
  17506. height: math.unit(7 + 6 / 12, "feet"),
  17507. weight: math.unit(288, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/alana/front.svg",
  17511. extra: 679 / 653,
  17512. bottom: 22.5 / 701
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(7 + 6 / 12, "feet")
  17520. },
  17521. {
  17522. name: "Large",
  17523. height: math.unit(50, "feet")
  17524. },
  17525. {
  17526. name: "Macro",
  17527. height: math.unit(100, "feet"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Macro+",
  17532. height: math.unit(200, "feet")
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(6 + 1 / 12, "feet"),
  17541. weight: math.unit(210, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/hasani/front.svg",
  17545. extra: 244 / 232,
  17546. bottom: 0.01
  17547. }
  17548. },
  17549. back: {
  17550. height: math.unit(6 + 1 / 12, "feet"),
  17551. weight: math.unit(210, "lb"),
  17552. name: "Back",
  17553. image: {
  17554. source: "./media/characters/hasani/back.svg",
  17555. extra: 244 / 232,
  17556. bottom: 0.01
  17557. }
  17558. },
  17559. },
  17560. [
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(6 + 1 / 12, "feet")
  17564. },
  17565. {
  17566. name: "Macro",
  17567. height: math.unit(175, "feet"),
  17568. default: true
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17574. {
  17575. front: {
  17576. height: math.unit(1.82, "meters"),
  17577. weight: math.unit(140, "lb"),
  17578. name: "Front",
  17579. image: {
  17580. source: "./media/characters/nita/front.svg",
  17581. extra: 2473 / 2363,
  17582. bottom: 0.01
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(1.82, "m")
  17590. },
  17591. {
  17592. name: "Macro",
  17593. height: math.unit(300, "m")
  17594. },
  17595. {
  17596. name: "Mistake Canon",
  17597. height: math.unit(0.5, "miles"),
  17598. default: true
  17599. },
  17600. {
  17601. name: "Big Mistake",
  17602. height: math.unit(13, "miles")
  17603. },
  17604. {
  17605. name: "Playing God",
  17606. height: math.unit(2450, "miles")
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17612. {
  17613. front: {
  17614. height: math.unit(4, "feet"),
  17615. weight: math.unit(120, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/shiriko/front.svg",
  17619. extra: 970/934,
  17620. bottom: 5/975
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(4, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17634. {
  17635. front: {
  17636. height: math.unit(6, "feet"),
  17637. name: "front",
  17638. image: {
  17639. source: "./media/characters/deja/front.svg",
  17640. extra: 926 / 840,
  17641. bottom: 0.07
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Planck Length",
  17648. height: math.unit(1.6e-35, "meters")
  17649. },
  17650. {
  17651. name: "Normal",
  17652. height: math.unit(30.48, "meters"),
  17653. default: true
  17654. },
  17655. {
  17656. name: "Universal",
  17657. height: math.unit(8.8e26, "meters")
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17663. {
  17664. side: {
  17665. height: math.unit(8, "feet"),
  17666. weight: math.unit(6300, "lb"),
  17667. name: "Side",
  17668. image: {
  17669. source: "./media/characters/anima/side.svg",
  17670. bottom: 0.035
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(8, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(8, "feet"),
  17687. weight: math.unit(350, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/bianca/front.svg",
  17691. extra: 234 / 225,
  17692. bottom: 0.03
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(8, "feet"),
  17700. default: true
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17706. {
  17707. front: {
  17708. height: math.unit(6, "feet"),
  17709. weight: math.unit(150, "lb"),
  17710. name: "Front",
  17711. image: {
  17712. source: "./media/characters/adinia/front.svg",
  17713. extra: 1845 / 1672,
  17714. bottom: 0.02
  17715. }
  17716. },
  17717. back: {
  17718. height: math.unit(6, "feet"),
  17719. weight: math.unit(150, "lb"),
  17720. name: "Back",
  17721. image: {
  17722. source: "./media/characters/adinia/back.svg",
  17723. extra: 1845 / 1672,
  17724. bottom: 0.002
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(11 + 5 / 12, "feet"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(3, "meters"),
  17741. weight: math.unit(200, "kg"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/lykasa/front.svg",
  17745. extra: 1076 / 976,
  17746. bottom: 0.06
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(3, "meters")
  17754. },
  17755. {
  17756. name: "Kaiju",
  17757. height: math.unit(120, "meters"),
  17758. default: true
  17759. },
  17760. {
  17761. name: "Mega Kaiju",
  17762. height: math.unit(240, "km")
  17763. },
  17764. {
  17765. name: "Giga Kaiju",
  17766. height: math.unit(400, "megameters")
  17767. },
  17768. {
  17769. name: "Tera Kaiju",
  17770. height: math.unit(800, "gigameters")
  17771. },
  17772. {
  17773. name: "Kaiju Dragon Goddess",
  17774. height: math.unit(26, "zettaparsecs")
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17780. {
  17781. side: {
  17782. height: math.unit(283 / 124 * 6, "feet"),
  17783. weight: math.unit(35000, "lb"),
  17784. name: "Side",
  17785. image: {
  17786. source: "./media/characters/malfaren/side.svg",
  17787. extra: 2500 / 1010,
  17788. bottom: 0.01
  17789. }
  17790. },
  17791. front: {
  17792. height: math.unit(22.36, "feet"),
  17793. weight: math.unit(35000, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/malfaren/front.svg",
  17797. extra: 1631 / 1476,
  17798. bottom: 0.01
  17799. }
  17800. },
  17801. maw: {
  17802. height: math.unit(6.9, "feet"),
  17803. name: "Maw",
  17804. image: {
  17805. source: "./media/characters/malfaren/maw.svg"
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Big",
  17812. height: math.unit(283 / 162 * 6, "feet"),
  17813. },
  17814. {
  17815. name: "Bigger",
  17816. height: math.unit(283 / 124 * 6, "feet")
  17817. },
  17818. {
  17819. name: "Massive",
  17820. height: math.unit(283 / 92 * 6, "feet"),
  17821. default: true
  17822. },
  17823. {
  17824. name: "👀💦",
  17825. height: math.unit(283 / 73 * 6, "feet"),
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(1.7, "m"),
  17834. weight: math.unit(70, "kg"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/kernel/front.svg",
  17838. extra: 222 / 210,
  17839. bottom: 0.007
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Nano",
  17846. height: math.unit(17, "micrometers")
  17847. },
  17848. {
  17849. name: "Micro",
  17850. height: math.unit(1.7, "mm")
  17851. },
  17852. {
  17853. name: "Small",
  17854. height: math.unit(1.7, "cm")
  17855. },
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(1.7, "m"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(1.75, "meters"),
  17868. weight: math.unit(65, "kg"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/jayne-folest/front.svg",
  17872. extra: 2115 / 2007,
  17873. bottom: 0.02
  17874. }
  17875. },
  17876. back: {
  17877. height: math.unit(1.75, "meters"),
  17878. weight: math.unit(65, "kg"),
  17879. name: "Back",
  17880. image: {
  17881. source: "./media/characters/jayne-folest/back.svg",
  17882. extra: 2115 / 2007,
  17883. bottom: 0.005
  17884. }
  17885. },
  17886. frontClothed: {
  17887. height: math.unit(1.75, "meters"),
  17888. weight: math.unit(65, "kg"),
  17889. name: "Front (Clothed)",
  17890. image: {
  17891. source: "./media/characters/jayne-folest/front-clothed.svg",
  17892. extra: 2115 / 2007,
  17893. bottom: 0.035
  17894. }
  17895. },
  17896. hand: {
  17897. height: math.unit(1 / 1.260, "feet"),
  17898. name: "Hand",
  17899. image: {
  17900. source: "./media/characters/jayne-folest/hand.svg"
  17901. }
  17902. },
  17903. foot: {
  17904. height: math.unit(1 / 0.918, "feet"),
  17905. name: "Foot",
  17906. image: {
  17907. source: "./media/characters/jayne-folest/foot.svg"
  17908. }
  17909. },
  17910. },
  17911. [
  17912. {
  17913. name: "Micro",
  17914. height: math.unit(4, "cm")
  17915. },
  17916. {
  17917. name: "Normal",
  17918. height: math.unit(1.75, "meters")
  17919. },
  17920. {
  17921. name: "Macro",
  17922. height: math.unit(47.5, "meters"),
  17923. default: true
  17924. },
  17925. ]
  17926. ))
  17927. characterMakers.push(() => makeCharacter(
  17928. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17929. {
  17930. front: {
  17931. height: math.unit(180, "cm"),
  17932. weight: math.unit(70, "kg"),
  17933. name: "Front",
  17934. image: {
  17935. source: "./media/characters/algier/front.svg",
  17936. extra: 596 / 572,
  17937. bottom: 0.04
  17938. }
  17939. },
  17940. back: {
  17941. height: math.unit(180, "cm"),
  17942. weight: math.unit(70, "kg"),
  17943. name: "Back",
  17944. image: {
  17945. source: "./media/characters/algier/back.svg",
  17946. extra: 596 / 572,
  17947. bottom: 0.025
  17948. }
  17949. },
  17950. frontdressed: {
  17951. height: math.unit(180, "cm"),
  17952. weight: math.unit(150, "kg"),
  17953. name: "Front-dressed",
  17954. image: {
  17955. source: "./media/characters/algier/front-dressed.svg",
  17956. extra: 596 / 572,
  17957. bottom: 0.038
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Micro",
  17964. height: math.unit(5, "cm")
  17965. },
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(180, "cm"),
  17969. default: true
  17970. },
  17971. {
  17972. name: "Macro",
  17973. height: math.unit(64, "m")
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17979. {
  17980. upright: {
  17981. height: math.unit(7, "feet"),
  17982. weight: math.unit(300, "lb"),
  17983. name: "Upright",
  17984. image: {
  17985. source: "./media/characters/pretzel/upright.svg",
  17986. extra: 534 / 522,
  17987. bottom: 0.065
  17988. }
  17989. },
  17990. sprawling: {
  17991. height: math.unit(3.75, "feet"),
  17992. weight: math.unit(300, "lb"),
  17993. name: "Sprawling",
  17994. image: {
  17995. source: "./media/characters/pretzel/sprawling.svg",
  17996. extra: 314 / 281,
  17997. bottom: 0.1
  17998. }
  17999. },
  18000. tongue: {
  18001. height: math.unit(2, "feet"),
  18002. name: "Tongue",
  18003. image: {
  18004. source: "./media/characters/pretzel/tongue.svg"
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Normal",
  18011. height: math.unit(7, "feet"),
  18012. default: true
  18013. },
  18014. {
  18015. name: "Oversized",
  18016. height: math.unit(15, "feet")
  18017. },
  18018. {
  18019. name: "Huge",
  18020. height: math.unit(30, "feet")
  18021. },
  18022. {
  18023. name: "Macro",
  18024. height: math.unit(250, "feet")
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18030. {
  18031. sideFront: {
  18032. height: math.unit(5 + 2 / 12, "feet"),
  18033. weight: math.unit(120, "lb"),
  18034. name: "Front Side",
  18035. image: {
  18036. source: "./media/characters/roxi/side-front.svg",
  18037. extra: 2924 / 2717,
  18038. bottom: 0.08
  18039. }
  18040. },
  18041. sideBack: {
  18042. height: math.unit(5 + 2 / 12, "feet"),
  18043. weight: math.unit(120, "lb"),
  18044. name: "Back Side",
  18045. image: {
  18046. source: "./media/characters/roxi/side-back.svg",
  18047. extra: 2904 / 2693,
  18048. bottom: 0.06
  18049. }
  18050. },
  18051. front: {
  18052. height: math.unit(5 + 2 / 12, "feet"),
  18053. weight: math.unit(120, "lb"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/roxi/front.svg",
  18057. extra: 2028 / 1907,
  18058. bottom: 0.01
  18059. }
  18060. },
  18061. frontAlt: {
  18062. height: math.unit(5 + 2 / 12, "feet"),
  18063. weight: math.unit(120, "lb"),
  18064. name: "Front (Alt)",
  18065. image: {
  18066. source: "./media/characters/roxi/front-alt.svg",
  18067. extra: 1828 / 1798,
  18068. bottom: 0.01
  18069. }
  18070. },
  18071. sitting: {
  18072. height: math.unit(2.8, "feet"),
  18073. weight: math.unit(120, "lb"),
  18074. name: "Sitting",
  18075. image: {
  18076. source: "./media/characters/roxi/sitting.svg",
  18077. extra: 2660 / 2462,
  18078. bottom: 0.1
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(5 + 2 / 12, "feet"),
  18086. default: true
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18092. {
  18093. side: {
  18094. height: math.unit(55, "feet"),
  18095. weight: math.unit(153, "tons"),
  18096. name: "Side",
  18097. image: {
  18098. source: "./media/characters/shadow/side.svg",
  18099. extra: 701 / 628,
  18100. bottom: 0.02
  18101. }
  18102. },
  18103. flying: {
  18104. height: math.unit(145, "feet"),
  18105. weight: math.unit(153, "tons"),
  18106. name: "Flying",
  18107. image: {
  18108. source: "./media/characters/shadow/flying.svg"
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(55, "feet"),
  18116. default: true
  18117. },
  18118. ]
  18119. ))
  18120. characterMakers.push(() => makeCharacter(
  18121. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18122. {
  18123. front: {
  18124. height: math.unit(6, "feet"),
  18125. weight: math.unit(200, "lb"),
  18126. name: "Front",
  18127. image: {
  18128. source: "./media/characters/marcie/front.svg",
  18129. extra: 960 / 876,
  18130. bottom: 58 / 1017.87
  18131. }
  18132. },
  18133. },
  18134. [
  18135. {
  18136. name: "Macro",
  18137. height: math.unit(1, "mile"),
  18138. default: true
  18139. },
  18140. ]
  18141. ))
  18142. characterMakers.push(() => makeCharacter(
  18143. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18144. {
  18145. front: {
  18146. height: math.unit(7, "feet"),
  18147. weight: math.unit(200, "lb"),
  18148. name: "Front",
  18149. image: {
  18150. source: "./media/characters/kachina/front.svg",
  18151. extra: 1290.68 / 1119,
  18152. bottom: 36.5 / 1327.18
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(7, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18166. {
  18167. looking: {
  18168. height: math.unit(2, "meters"),
  18169. weight: math.unit(300, "kg"),
  18170. name: "Looking",
  18171. image: {
  18172. source: "./media/characters/kash/looking.svg",
  18173. extra: 474 / 344,
  18174. bottom: 0.03
  18175. }
  18176. },
  18177. side: {
  18178. height: math.unit(2, "meters"),
  18179. weight: math.unit(300, "kg"),
  18180. name: "Side",
  18181. image: {
  18182. source: "./media/characters/kash/side.svg",
  18183. extra: 302 / 251,
  18184. bottom: 0.03
  18185. }
  18186. },
  18187. front: {
  18188. height: math.unit(2, "meters"),
  18189. weight: math.unit(300, "kg"),
  18190. name: "Front",
  18191. image: {
  18192. source: "./media/characters/kash/front.svg",
  18193. extra: 495 / 360,
  18194. bottom: 0.015
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(2, "meters"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Big",
  18206. height: math.unit(3, "meters")
  18207. },
  18208. {
  18209. name: "Large",
  18210. height: math.unit(5, "meters")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18216. {
  18217. feeding: {
  18218. height: math.unit(6.7, "feet"),
  18219. weight: math.unit(350, "lb"),
  18220. name: "Feeding",
  18221. image: {
  18222. source: "./media/characters/lalim/feeding.svg",
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(6.7, "feet"),
  18230. default: true
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(9.5, "feet"),
  18239. weight: math.unit(600, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/de'vout/front.svg",
  18243. extra: 1443 / 1328,
  18244. bottom: 0.025
  18245. }
  18246. },
  18247. back: {
  18248. height: math.unit(9.5, "feet"),
  18249. weight: math.unit(600, "lb"),
  18250. name: "Back",
  18251. image: {
  18252. source: "./media/characters/de'vout/back.svg",
  18253. extra: 1443 / 1328
  18254. }
  18255. },
  18256. frontDressed: {
  18257. height: math.unit(9.5, "feet"),
  18258. weight: math.unit(600, "lb"),
  18259. name: "Front (Dressed",
  18260. image: {
  18261. source: "./media/characters/de'vout/front-dressed.svg",
  18262. extra: 1443 / 1328,
  18263. bottom: 0.025
  18264. }
  18265. },
  18266. backDressed: {
  18267. height: math.unit(9.5, "feet"),
  18268. weight: math.unit(600, "lb"),
  18269. name: "Back (Dressed",
  18270. image: {
  18271. source: "./media/characters/de'vout/back-dressed.svg",
  18272. extra: 1443 / 1328
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(9.5, "feet"),
  18280. default: true
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18286. {
  18287. front: {
  18288. height: math.unit(8, "feet"),
  18289. weight: math.unit(225, "lb"),
  18290. name: "Front",
  18291. image: {
  18292. source: "./media/characters/talana/front.svg",
  18293. extra: 1410 / 1300,
  18294. bottom: 0.015
  18295. }
  18296. },
  18297. frontDressed: {
  18298. height: math.unit(8, "feet"),
  18299. weight: math.unit(225, "lb"),
  18300. name: "Front (Dressed",
  18301. image: {
  18302. source: "./media/characters/talana/front-dressed.svg",
  18303. extra: 1410 / 1300,
  18304. bottom: 0.015
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(8, "feet"),
  18312. default: true
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18318. {
  18319. side: {
  18320. height: math.unit(7.2, "feet"),
  18321. weight: math.unit(150, "lb"),
  18322. name: "Side",
  18323. image: {
  18324. source: "./media/characters/xeauvok/side.svg",
  18325. extra: 1975 / 1523,
  18326. bottom: 0.07
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(7.2, "feet"),
  18334. default: true
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18340. {
  18341. side: {
  18342. height: math.unit(10, "feet"),
  18343. weight: math.unit(900, "kg"),
  18344. name: "Side",
  18345. image: {
  18346. source: "./media/characters/zara/side.svg",
  18347. extra: 504 / 498
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(10, "feet"),
  18355. default: true
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18361. {
  18362. side: {
  18363. height: math.unit(6, "feet"),
  18364. weight: math.unit(150, "lb"),
  18365. name: "Side",
  18366. image: {
  18367. source: "./media/characters/richard-dragon/side.svg",
  18368. extra: 845 / 340,
  18369. bottom: 0.017
  18370. }
  18371. },
  18372. maw: {
  18373. height: math.unit(2.97, "feet"),
  18374. name: "Maw",
  18375. image: {
  18376. source: "./media/characters/richard-dragon/maw.svg"
  18377. }
  18378. },
  18379. },
  18380. [
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(4, "feet"),
  18388. weight: math.unit(100, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/richard-smeargle/front.svg",
  18392. extra: 2952 / 2820,
  18393. bottom: 0.028
  18394. }
  18395. },
  18396. },
  18397. [
  18398. {
  18399. name: "Normal",
  18400. height: math.unit(4, "feet"),
  18401. default: true
  18402. },
  18403. {
  18404. name: "Dynamax",
  18405. height: math.unit(20, "meters")
  18406. },
  18407. ]
  18408. ))
  18409. characterMakers.push(() => makeCharacter(
  18410. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18411. {
  18412. front: {
  18413. height: math.unit(6, "feet"),
  18414. weight: math.unit(110, "lb"),
  18415. name: "Front",
  18416. image: {
  18417. source: "./media/characters/klay/front.svg",
  18418. extra: 962 / 883,
  18419. bottom: 0.04
  18420. }
  18421. },
  18422. back: {
  18423. height: math.unit(6, "feet"),
  18424. weight: math.unit(110, "lb"),
  18425. name: "Back",
  18426. image: {
  18427. source: "./media/characters/klay/back.svg",
  18428. extra: 962 / 883
  18429. }
  18430. },
  18431. beans: {
  18432. height: math.unit(1.15, "feet"),
  18433. name: "Beans",
  18434. image: {
  18435. source: "./media/characters/klay/beans.svg"
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Micro",
  18442. height: math.unit(6, "inches")
  18443. },
  18444. {
  18445. name: "Mini",
  18446. height: math.unit(3, "feet")
  18447. },
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(6, "feet"),
  18451. default: true
  18452. },
  18453. {
  18454. name: "Big",
  18455. height: math.unit(25, "feet")
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(100, "feet")
  18460. },
  18461. {
  18462. name: "Megamacro",
  18463. height: math.unit(400, "feet")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(6, "feet"),
  18472. weight: math.unit(160, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/marcus/front.svg",
  18476. extra: 734 / 676,
  18477. bottom: 0.03
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Little",
  18484. height: math.unit(6, "feet")
  18485. },
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(110, "feet"),
  18489. default: true
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(250, "feet")
  18494. },
  18495. {
  18496. name: "Megamacro",
  18497. height: math.unit(1000, "feet")
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(7, "feet"),
  18506. weight: math.unit(275, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/claude-delroute/front.svg",
  18510. extra: 902/827,
  18511. bottom: 26/928
  18512. }
  18513. },
  18514. side: {
  18515. height: math.unit(7, "feet"),
  18516. weight: math.unit(275, "lb"),
  18517. name: "Side",
  18518. image: {
  18519. source: "./media/characters/claude-delroute/side.svg",
  18520. extra: 908/853,
  18521. bottom: 16/924
  18522. }
  18523. },
  18524. back: {
  18525. height: math.unit(7, "feet"),
  18526. weight: math.unit(275, "lb"),
  18527. name: "Back",
  18528. image: {
  18529. source: "./media/characters/claude-delroute/back.svg",
  18530. extra: 911/829,
  18531. bottom: 18/929
  18532. }
  18533. },
  18534. maw: {
  18535. height: math.unit(0.6407, "meters"),
  18536. name: "Maw",
  18537. image: {
  18538. source: "./media/characters/claude-delroute/maw.svg"
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(7, "feet"),
  18546. default: true
  18547. },
  18548. {
  18549. name: "Lorge",
  18550. height: math.unit(20, "feet")
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18556. {
  18557. front: {
  18558. height: math.unit(8 + 4 / 12, "feet"),
  18559. weight: math.unit(600, "lb"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/dragonien/front.svg",
  18563. extra: 100 / 94,
  18564. bottom: 3.3 / 103.3445
  18565. }
  18566. },
  18567. back: {
  18568. height: math.unit(8 + 4 / 12, "feet"),
  18569. weight: math.unit(600, "lb"),
  18570. name: "Back",
  18571. image: {
  18572. source: "./media/characters/dragonien/back.svg",
  18573. extra: 776 / 746,
  18574. bottom: 6.4 / 782.0616
  18575. }
  18576. },
  18577. foot: {
  18578. height: math.unit(1.54, "feet"),
  18579. name: "Foot",
  18580. image: {
  18581. source: "./media/characters/dragonien/foot.svg",
  18582. }
  18583. },
  18584. },
  18585. [
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(8 + 4 / 12, "feet"),
  18589. default: true
  18590. },
  18591. {
  18592. name: "Macro",
  18593. height: math.unit(200, "feet")
  18594. },
  18595. {
  18596. name: "Megamacro",
  18597. height: math.unit(1, "mile")
  18598. },
  18599. {
  18600. name: "Gigamacro",
  18601. height: math.unit(1000, "miles")
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(5 + 2 / 12, "feet"),
  18610. weight: math.unit(110, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/desta/front.svg",
  18614. extra: 767 / 726,
  18615. bottom: 11.7 / 779
  18616. }
  18617. },
  18618. back: {
  18619. height: math.unit(5 + 2 / 12, "feet"),
  18620. weight: math.unit(110, "lb"),
  18621. name: "Back",
  18622. image: {
  18623. source: "./media/characters/desta/back.svg",
  18624. extra: 777 / 728,
  18625. bottom: 6 / 784
  18626. }
  18627. },
  18628. frontAlt: {
  18629. height: math.unit(5 + 2 / 12, "feet"),
  18630. weight: math.unit(110, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/desta/front-alt.svg",
  18634. extra: 1482 / 1417
  18635. }
  18636. },
  18637. side: {
  18638. height: math.unit(5 + 2 / 12, "feet"),
  18639. weight: math.unit(110, "lb"),
  18640. name: "Side",
  18641. image: {
  18642. source: "./media/characters/desta/side.svg",
  18643. extra: 2579 / 2491,
  18644. bottom: 0.053
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Micro",
  18651. height: math.unit(6, "inches")
  18652. },
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(5 + 2 / 12, "feet"),
  18656. default: true
  18657. },
  18658. {
  18659. name: "Macro",
  18660. height: math.unit(62, "feet")
  18661. },
  18662. {
  18663. name: "Megamacro",
  18664. height: math.unit(1800, "feet")
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18670. {
  18671. front: {
  18672. height: math.unit(10, "feet"),
  18673. weight: math.unit(700, "lb"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/storm-alystar/front.svg",
  18677. extra: 2112 / 1898,
  18678. bottom: 0.034
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Micro",
  18685. height: math.unit(3.5, "inches")
  18686. },
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(10, "feet"),
  18690. default: true
  18691. },
  18692. {
  18693. name: "Macro",
  18694. height: math.unit(400, "feet")
  18695. },
  18696. {
  18697. name: "Deific",
  18698. height: math.unit(60, "miles")
  18699. },
  18700. ]
  18701. ))
  18702. characterMakers.push(() => makeCharacter(
  18703. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18704. {
  18705. front: {
  18706. height: math.unit(2.35, "meters"),
  18707. weight: math.unit(119, "kg"),
  18708. name: "Front",
  18709. image: {
  18710. source: "./media/characters/ilia/front.svg",
  18711. extra: 1285 / 1255,
  18712. bottom: 0.06
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(2.35, "meters")
  18720. },
  18721. {
  18722. name: "Macro",
  18723. height: math.unit(140, "meters"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Megamacro",
  18728. height: math.unit(100, "miles")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(6 + 5 / 12, "feet"),
  18737. weight: math.unit(190, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/kingdead/front.svg",
  18741. extra: 1228 / 1177
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Micro",
  18748. height: math.unit(7, "inches")
  18749. },
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(6 + 5 / 12, "feet")
  18753. },
  18754. {
  18755. name: "Macro",
  18756. height: math.unit(150, "feet"),
  18757. default: true
  18758. },
  18759. {
  18760. name: "Megamacro",
  18761. height: math.unit(200, "miles")
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(8, "feet"),
  18770. weight: math.unit(600, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/kyrehx/front.svg",
  18774. extra: 1195 / 1095,
  18775. bottom: 0.034
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Micro",
  18782. height: math.unit(2, "inches")
  18783. },
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(8, "feet"),
  18787. default: true
  18788. },
  18789. {
  18790. name: "Macro",
  18791. height: math.unit(255, "feet")
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18797. {
  18798. front: {
  18799. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18800. weight: math.unit(184, "lb"),
  18801. name: "Front",
  18802. image: {
  18803. source: "./media/characters/xang/front.svg",
  18804. extra: 845 / 755
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18812. default: true
  18813. },
  18814. {
  18815. name: "Macro",
  18816. height: math.unit(0.935 * 146, "feet")
  18817. },
  18818. {
  18819. name: "Megamacro",
  18820. height: math.unit(0.935 * 3, "miles")
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18826. {
  18827. frontDressed: {
  18828. height: math.unit(5 + 7 / 12, "feet"),
  18829. weight: math.unit(140, "lb"),
  18830. name: "Front (Dressed)",
  18831. image: {
  18832. source: "./media/characters/doc-weardno/front-dressed.svg",
  18833. extra: 263 / 234
  18834. }
  18835. },
  18836. backDressed: {
  18837. height: math.unit(5 + 7 / 12, "feet"),
  18838. weight: math.unit(140, "lb"),
  18839. name: "Back (Dressed)",
  18840. image: {
  18841. source: "./media/characters/doc-weardno/back-dressed.svg",
  18842. extra: 266 / 238
  18843. }
  18844. },
  18845. front: {
  18846. height: math.unit(5 + 7 / 12, "feet"),
  18847. weight: math.unit(140, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/doc-weardno/front.svg",
  18851. extra: 254 / 233
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Micro",
  18858. height: math.unit(3, "inches")
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(5 + 7 / 12, "feet"),
  18863. default: true
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(25, "feet")
  18868. },
  18869. {
  18870. name: "Megamacro",
  18871. height: math.unit(2, "miles")
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(6 + 2 / 12, "feet"),
  18880. weight: math.unit(153, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/seth-whilst/front.svg",
  18884. bottom: 0.07
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Micro",
  18891. height: math.unit(5, "inches")
  18892. },
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(6 + 2 / 12, "feet"),
  18896. default: true
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(3, "inches"),
  18905. weight: math.unit(8, "grams"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/pocket-jabari/front.svg",
  18909. extra: 1024 / 974,
  18910. bottom: 0.039
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Minimicro",
  18917. height: math.unit(8, "mm")
  18918. },
  18919. {
  18920. name: "Micro",
  18921. height: math.unit(3, "inches"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Normal",
  18926. height: math.unit(3, "feet")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(15, "feet"),
  18935. weight: math.unit(3280, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/sapphy/front.svg",
  18939. extra: 671 / 577,
  18940. bottom: 0.085
  18941. }
  18942. },
  18943. back: {
  18944. height: math.unit(15, "feet"),
  18945. weight: math.unit(3280, "lb"),
  18946. name: "Back",
  18947. image: {
  18948. source: "./media/characters/sapphy/back.svg",
  18949. extra: 631 / 607,
  18950. bottom: 0.045
  18951. }
  18952. },
  18953. },
  18954. [
  18955. {
  18956. name: "Normal",
  18957. height: math.unit(15, "feet")
  18958. },
  18959. {
  18960. name: "Casual Macro",
  18961. height: math.unit(120, "feet")
  18962. },
  18963. {
  18964. name: "Macro",
  18965. height: math.unit(2150, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Megamacro",
  18970. height: math.unit(8, "miles")
  18971. },
  18972. {
  18973. name: "Galaxy Mom",
  18974. height: math.unit(6, "megalightyears")
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(6, "feet"),
  18983. weight: math.unit(170, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/kiro/front.svg",
  18987. extra: 1064 / 1012,
  18988. bottom: 0.052
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Micro",
  18995. height: math.unit(6, "inches")
  18996. },
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(6, "feet"),
  19000. default: true
  19001. },
  19002. {
  19003. name: "Macro",
  19004. height: math.unit(72, "feet")
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(5 + 9 / 12, "feet"),
  19013. weight: math.unit(175, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/irishfox/front.svg",
  19017. extra: 1912 / 1680,
  19018. bottom: 0.02
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Nano",
  19025. height: math.unit(1, "mm")
  19026. },
  19027. {
  19028. name: "Micro",
  19029. height: math.unit(2, "inches")
  19030. },
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(5 + 9 / 12, "feet"),
  19034. default: true
  19035. },
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(45, "feet")
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(6 + 1 / 12, "feet"),
  19047. weight: math.unit(75, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/aronai-sieyes/front.svg",
  19051. extra: 1532/1450,
  19052. bottom: 42/1574
  19053. }
  19054. },
  19055. side: {
  19056. height: math.unit(6 + 1 / 12, "feet"),
  19057. weight: math.unit(75, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/aronai-sieyes/side.svg",
  19061. extra: 1422/1365,
  19062. bottom: 148/1570
  19063. }
  19064. },
  19065. back: {
  19066. height: math.unit(6 + 1 / 12, "feet"),
  19067. weight: math.unit(75, "lb"),
  19068. name: "Back",
  19069. image: {
  19070. source: "./media/characters/aronai-sieyes/back.svg",
  19071. extra: 1526/1464,
  19072. bottom: 51/1577
  19073. }
  19074. },
  19075. dressed: {
  19076. height: math.unit(6 + 1 / 12, "feet"),
  19077. weight: math.unit(75, "lb"),
  19078. name: "Dressed",
  19079. image: {
  19080. source: "./media/characters/aronai-sieyes/dressed.svg",
  19081. extra: 1559/1483,
  19082. bottom: 39/1598
  19083. }
  19084. },
  19085. slit: {
  19086. height: math.unit(1.3, "feet"),
  19087. name: "Slit",
  19088. image: {
  19089. source: "./media/characters/aronai-sieyes/slit.svg"
  19090. }
  19091. },
  19092. slitSpread: {
  19093. height: math.unit(0.9, "feet"),
  19094. name: "Slit (Spread)",
  19095. image: {
  19096. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19097. }
  19098. },
  19099. rump: {
  19100. height: math.unit(1.3, "feet"),
  19101. name: "Rump",
  19102. image: {
  19103. source: "./media/characters/aronai-sieyes/rump.svg"
  19104. }
  19105. },
  19106. maw: {
  19107. height: math.unit(1.25, "feet"),
  19108. name: "Maw",
  19109. image: {
  19110. source: "./media/characters/aronai-sieyes/maw.svg"
  19111. }
  19112. },
  19113. feral: {
  19114. height: math.unit(18, "feet"),
  19115. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19116. name: "Feral",
  19117. image: {
  19118. source: "./media/characters/aronai-sieyes/feral.svg",
  19119. extra: 1530 / 1240,
  19120. bottom: 0.035
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Micro",
  19127. height: math.unit(2, "inches")
  19128. },
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(6 + 1 / 12, "feet"),
  19132. default: true
  19133. }
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(12, "feet"),
  19141. weight: math.unit(410, "kg"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/xuna/front.svg",
  19145. extra: 2184 / 1980
  19146. }
  19147. },
  19148. side: {
  19149. height: math.unit(12, "feet"),
  19150. weight: math.unit(410, "kg"),
  19151. name: "Side",
  19152. image: {
  19153. source: "./media/characters/xuna/side.svg",
  19154. extra: 2184 / 1980
  19155. }
  19156. },
  19157. back: {
  19158. height: math.unit(12, "feet"),
  19159. weight: math.unit(410, "kg"),
  19160. name: "Back",
  19161. image: {
  19162. source: "./media/characters/xuna/back.svg",
  19163. extra: 2184 / 1980
  19164. }
  19165. },
  19166. },
  19167. [
  19168. {
  19169. name: "Nano glow",
  19170. height: math.unit(10, "nm")
  19171. },
  19172. {
  19173. name: "Micro floof",
  19174. height: math.unit(0.3, "m")
  19175. },
  19176. {
  19177. name: "Huggable softy boi",
  19178. height: math.unit(3.6576, "m"),
  19179. default: true
  19180. },
  19181. {
  19182. name: "Admirable floof",
  19183. height: math.unit(80, "meters")
  19184. },
  19185. {
  19186. name: "Gentle macro",
  19187. height: math.unit(300, "meters")
  19188. },
  19189. {
  19190. name: "Very careful floof",
  19191. height: math.unit(3200, "meters")
  19192. },
  19193. {
  19194. name: "The mega floof",
  19195. height: math.unit(36000, "meters")
  19196. },
  19197. {
  19198. name: "Giga-fur-Wicker",
  19199. height: math.unit(4800000, "meters")
  19200. },
  19201. {
  19202. name: "Licky world",
  19203. height: math.unit(20000000, "meters")
  19204. },
  19205. {
  19206. name: "Floofy cyan sun",
  19207. height: math.unit(1500000000, "meters")
  19208. },
  19209. {
  19210. name: "Milky Wicker",
  19211. height: math.unit(1000000000000000000000, "meters")
  19212. },
  19213. {
  19214. name: "The observing Wicker",
  19215. height: math.unit(999999999999999999999999999, "meters")
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(5 + 9 / 12, "feet"),
  19224. weight: math.unit(150, "lb"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/arokha-sieyes/front.svg",
  19228. extra: 1425 / 1284,
  19229. bottom: 0.05
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Normal",
  19236. height: math.unit(5 + 9 / 12, "feet")
  19237. },
  19238. {
  19239. name: "Macro",
  19240. height: math.unit(30, "meters"),
  19241. default: true
  19242. },
  19243. ]
  19244. ))
  19245. characterMakers.push(() => makeCharacter(
  19246. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19247. {
  19248. front: {
  19249. height: math.unit(6, "feet"),
  19250. weight: math.unit(180, "lb"),
  19251. name: "Front",
  19252. image: {
  19253. source: "./media/characters/arokh-sieyes/front.svg",
  19254. extra: 1830 / 1769,
  19255. bottom: 0.01
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(6, "feet")
  19263. },
  19264. {
  19265. name: "Macro",
  19266. height: math.unit(30, "meters"),
  19267. default: true
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19273. {
  19274. side: {
  19275. height: math.unit(13 + 1 / 12, "feet"),
  19276. weight: math.unit(8.5, "tonnes"),
  19277. name: "Side",
  19278. image: {
  19279. source: "./media/characters/goldeneye/side.svg",
  19280. extra: 1182 / 778,
  19281. bottom: 0.067
  19282. }
  19283. },
  19284. paw: {
  19285. height: math.unit(3.4, "feet"),
  19286. name: "Paw",
  19287. image: {
  19288. source: "./media/characters/goldeneye/paw.svg"
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(13 + 1 / 12, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6 + 1 / 12, "feet"),
  19305. weight: math.unit(210, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/leonardo-lycheborne/front.svg",
  19309. extra: 776/723,
  19310. bottom: 34/810
  19311. }
  19312. },
  19313. side: {
  19314. height: math.unit(6 + 1 / 12, "feet"),
  19315. weight: math.unit(210, "lb"),
  19316. name: "Side",
  19317. image: {
  19318. source: "./media/characters/leonardo-lycheborne/side.svg",
  19319. extra: 780/728,
  19320. bottom: 12/792
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(6 + 1 / 12, "feet"),
  19325. weight: math.unit(210, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/leonardo-lycheborne/back.svg",
  19329. extra: 775/721,
  19330. bottom: 17/792
  19331. }
  19332. },
  19333. hand: {
  19334. height: math.unit(1.08, "feet"),
  19335. name: "Hand",
  19336. image: {
  19337. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19338. }
  19339. },
  19340. foot: {
  19341. height: math.unit(1.32, "feet"),
  19342. name: "Foot",
  19343. image: {
  19344. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19345. }
  19346. },
  19347. maw: {
  19348. height: math.unit(1, "feet"),
  19349. name: "Maw",
  19350. image: {
  19351. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19352. }
  19353. },
  19354. were: {
  19355. height: math.unit(20, "feet"),
  19356. weight: math.unit(7800, "lb"),
  19357. name: "Were",
  19358. image: {
  19359. source: "./media/characters/leonardo-lycheborne/were.svg",
  19360. extra: 1224/1165,
  19361. bottom: 72/1296
  19362. }
  19363. },
  19364. feral: {
  19365. height: math.unit(7.5, "feet"),
  19366. weight: math.unit(600, "lb"),
  19367. name: "Feral",
  19368. image: {
  19369. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19370. extra: 797/702,
  19371. bottom: 139/936
  19372. }
  19373. },
  19374. taur: {
  19375. height: math.unit(11, "feet"),
  19376. weight: math.unit(3300, "lb"),
  19377. name: "Taur",
  19378. image: {
  19379. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19380. extra: 1271/1197,
  19381. bottom: 47/1318
  19382. }
  19383. },
  19384. barghest: {
  19385. height: math.unit(11, "feet"),
  19386. weight: math.unit(1300, "lb"),
  19387. name: "Barghest",
  19388. image: {
  19389. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19390. extra: 1291/1204,
  19391. bottom: 37/1328
  19392. }
  19393. },
  19394. dick: {
  19395. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19396. name: "Dick",
  19397. image: {
  19398. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19399. }
  19400. },
  19401. dickWere: {
  19402. height: math.unit((20) / 3.8, "feet"),
  19403. name: "Dick (Were)",
  19404. image: {
  19405. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(6 + 1 / 12, "feet"),
  19413. default: true
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19419. {
  19420. front: {
  19421. height: math.unit(10, "feet"),
  19422. weight: math.unit(350, "lb"),
  19423. name: "Front",
  19424. image: {
  19425. source: "./media/characters/jet/front.svg",
  19426. extra: 2050 / 1980,
  19427. bottom: 0.013
  19428. }
  19429. },
  19430. back: {
  19431. height: math.unit(10, "feet"),
  19432. weight: math.unit(350, "lb"),
  19433. name: "Back",
  19434. image: {
  19435. source: "./media/characters/jet/back.svg",
  19436. extra: 2050 / 1980,
  19437. bottom: 0.013
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Micro",
  19444. height: math.unit(6, "inches")
  19445. },
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(10, "feet"),
  19449. default: true
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(100, "feet")
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(15, "feet"),
  19462. weight: math.unit(2800, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/tanarath/front.svg",
  19466. extra: 2392 / 2220,
  19467. bottom: 0.03
  19468. }
  19469. },
  19470. back: {
  19471. height: math.unit(15, "feet"),
  19472. weight: math.unit(2800, "lb"),
  19473. name: "Back",
  19474. image: {
  19475. source: "./media/characters/tanarath/back.svg",
  19476. extra: 2392 / 2220,
  19477. bottom: 0.03
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(15, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(7 + 1 / 12, "feet"),
  19494. weight: math.unit(175, "lb"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/patty-cattybatty/front.svg",
  19498. extra: 908 / 874,
  19499. bottom: 0.025
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Micro",
  19506. height: math.unit(1, "inch")
  19507. },
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(7 + 1 / 12, "feet")
  19511. },
  19512. {
  19513. name: "Mini Macro",
  19514. height: math.unit(155, "feet")
  19515. },
  19516. {
  19517. name: "Macro",
  19518. height: math.unit(1077, "feet")
  19519. },
  19520. {
  19521. name: "Mega Macro",
  19522. height: math.unit(47650, "feet"),
  19523. default: true
  19524. },
  19525. {
  19526. name: "Giga Macro",
  19527. height: math.unit(440, "miles")
  19528. },
  19529. {
  19530. name: "Tera Macro",
  19531. height: math.unit(8700, "miles")
  19532. },
  19533. {
  19534. name: "Planetary Macro",
  19535. height: math.unit(32700, "miles")
  19536. },
  19537. {
  19538. name: "Solar Macro",
  19539. height: math.unit(550000, "miles")
  19540. },
  19541. {
  19542. name: "Celestial Macro",
  19543. height: math.unit(2.5, "AU")
  19544. },
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19549. {
  19550. front: {
  19551. height: math.unit(4 + 5 / 12, "feet"),
  19552. weight: math.unit(90, "lb"),
  19553. name: "Front",
  19554. image: {
  19555. source: "./media/characters/cappu/front.svg",
  19556. extra: 1247 / 1152,
  19557. bottom: 0.012
  19558. }
  19559. },
  19560. },
  19561. [
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(4 + 5 / 12, "feet"),
  19565. default: true
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19571. {
  19572. frontDressed: {
  19573. height: math.unit(70, "cm"),
  19574. weight: math.unit(6, "kg"),
  19575. name: "Front (Dressed)",
  19576. image: {
  19577. source: "./media/characters/sebi/front-dressed.svg",
  19578. extra: 713.5 / 686.5,
  19579. bottom: 0.003
  19580. }
  19581. },
  19582. front: {
  19583. height: math.unit(70, "cm"),
  19584. weight: math.unit(5, "kg"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/sebi/front.svg",
  19588. extra: 713.5 / 686.5,
  19589. bottom: 0.003
  19590. }
  19591. }
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(70, "cm"),
  19597. default: true
  19598. },
  19599. {
  19600. name: "Macro",
  19601. height: math.unit(8, "meters")
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(6, "feet"),
  19610. weight: math.unit(150, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/typhek/front.svg",
  19614. extra: 1948 / 1929,
  19615. bottom: 0.025
  19616. }
  19617. },
  19618. side: {
  19619. height: math.unit(6, "feet"),
  19620. weight: math.unit(150, "lb"),
  19621. name: "Side",
  19622. image: {
  19623. source: "./media/characters/typhek/side.svg",
  19624. extra: 2034 / 2010,
  19625. bottom: 0.003
  19626. }
  19627. },
  19628. back: {
  19629. height: math.unit(6, "feet"),
  19630. weight: math.unit(150, "lb"),
  19631. name: "Back",
  19632. image: {
  19633. source: "./media/characters/typhek/back.svg",
  19634. extra: 2005 / 1978,
  19635. bottom: 0.004
  19636. }
  19637. },
  19638. palm: {
  19639. height: math.unit(1.2, "feet"),
  19640. name: "Palm",
  19641. image: {
  19642. source: "./media/characters/typhek/palm.svg"
  19643. }
  19644. },
  19645. fist: {
  19646. height: math.unit(1.1, "feet"),
  19647. name: "Fist",
  19648. image: {
  19649. source: "./media/characters/typhek/fist.svg"
  19650. }
  19651. },
  19652. foot: {
  19653. height: math.unit(1.57, "feet"),
  19654. name: "Foot",
  19655. image: {
  19656. source: "./media/characters/typhek/foot.svg"
  19657. }
  19658. },
  19659. sole: {
  19660. height: math.unit(2.05, "feet"),
  19661. name: "Sole",
  19662. image: {
  19663. source: "./media/characters/typhek/sole.svg"
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Macro",
  19670. height: math.unit(40, "stories"),
  19671. default: true
  19672. },
  19673. {
  19674. name: "Megamacro",
  19675. height: math.unit(1, "mile")
  19676. },
  19677. {
  19678. name: "Gigamacro",
  19679. height: math.unit(4000, "solarradii")
  19680. },
  19681. {
  19682. name: "Universal",
  19683. height: math.unit(1.1, "universes")
  19684. }
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19689. {
  19690. side: {
  19691. height: math.unit(5 + 7 / 12, "feet"),
  19692. weight: math.unit(150, "lb"),
  19693. name: "Side",
  19694. image: {
  19695. source: "./media/characters/kassy/side.svg",
  19696. extra: 1280 / 1225,
  19697. bottom: 0.002
  19698. }
  19699. },
  19700. front: {
  19701. height: math.unit(5 + 7 / 12, "feet"),
  19702. weight: math.unit(150, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/kassy/front.svg",
  19706. extra: 1280 / 1225,
  19707. bottom: 0.025
  19708. }
  19709. },
  19710. back: {
  19711. height: math.unit(5 + 7 / 12, "feet"),
  19712. weight: math.unit(150, "lb"),
  19713. name: "Back",
  19714. image: {
  19715. source: "./media/characters/kassy/back.svg",
  19716. extra: 1280 / 1225,
  19717. bottom: 0.002
  19718. }
  19719. },
  19720. foot: {
  19721. height: math.unit(1.266, "feet"),
  19722. name: "Foot",
  19723. image: {
  19724. source: "./media/characters/kassy/foot.svg"
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(5 + 7 / 12, "feet")
  19732. },
  19733. {
  19734. name: "Macro",
  19735. height: math.unit(137, "feet"),
  19736. default: true
  19737. },
  19738. {
  19739. name: "Megamacro",
  19740. height: math.unit(1, "mile")
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19746. {
  19747. front: {
  19748. height: math.unit(6 + 1 / 12, "feet"),
  19749. weight: math.unit(200, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/neil/front.svg",
  19753. extra: 1326 / 1250,
  19754. bottom: 0.023
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(6 + 1 / 12, "feet"),
  19762. default: true
  19763. },
  19764. {
  19765. name: "Macro",
  19766. height: math.unit(200, "feet")
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19772. {
  19773. front: {
  19774. height: math.unit(5 + 9 / 12, "feet"),
  19775. weight: math.unit(190, "lb"),
  19776. name: "Front",
  19777. image: {
  19778. source: "./media/characters/atticus/front.svg",
  19779. extra: 2934 / 2785,
  19780. bottom: 0.025
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Normal",
  19787. height: math.unit(5 + 9 / 12, "feet"),
  19788. default: true
  19789. },
  19790. {
  19791. name: "Macro",
  19792. height: math.unit(180, "feet")
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19798. {
  19799. side: {
  19800. height: math.unit(9, "feet"),
  19801. weight: math.unit(650, "lb"),
  19802. name: "Side",
  19803. image: {
  19804. source: "./media/characters/milo/side.svg",
  19805. extra: 2644 / 2310,
  19806. bottom: 0.032
  19807. }
  19808. },
  19809. },
  19810. [
  19811. {
  19812. name: "Normal",
  19813. height: math.unit(9, "feet"),
  19814. default: true
  19815. },
  19816. {
  19817. name: "Macro",
  19818. height: math.unit(300, "feet")
  19819. },
  19820. ]
  19821. ))
  19822. characterMakers.push(() => makeCharacter(
  19823. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19824. {
  19825. side: {
  19826. height: math.unit(8, "meters"),
  19827. weight: math.unit(90000, "kg"),
  19828. name: "Side",
  19829. image: {
  19830. source: "./media/characters/ijzer/side.svg",
  19831. extra: 2756 / 1600,
  19832. bottom: 0.01
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Small",
  19839. height: math.unit(3, "meters")
  19840. },
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(8, "meters"),
  19844. default: true
  19845. },
  19846. {
  19847. name: "Normal+",
  19848. height: math.unit(10, "meters")
  19849. },
  19850. {
  19851. name: "Bigger",
  19852. height: math.unit(24, "meters")
  19853. },
  19854. {
  19855. name: "Huge",
  19856. height: math.unit(80, "meters")
  19857. },
  19858. ]
  19859. ))
  19860. characterMakers.push(() => makeCharacter(
  19861. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19862. {
  19863. front: {
  19864. height: math.unit(6 + 2 / 12, "feet"),
  19865. weight: math.unit(153, "lb"),
  19866. name: "Front",
  19867. image: {
  19868. source: "./media/characters/luca-cervicum/front.svg",
  19869. extra: 370 / 327,
  19870. bottom: 0.015
  19871. }
  19872. },
  19873. back: {
  19874. height: math.unit(6 + 2 / 12, "feet"),
  19875. weight: math.unit(153, "lb"),
  19876. name: "Back",
  19877. image: {
  19878. source: "./media/characters/luca-cervicum/back.svg",
  19879. extra: 367 / 333,
  19880. bottom: 0.005
  19881. }
  19882. },
  19883. frontGear: {
  19884. height: math.unit(6 + 2 / 12, "feet"),
  19885. weight: math.unit(173, "lb"),
  19886. name: "Front (Gear)",
  19887. image: {
  19888. source: "./media/characters/luca-cervicum/front-gear.svg",
  19889. extra: 377 / 333,
  19890. bottom: 0.006
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Normal",
  19897. height: math.unit(6 + 2 / 12, "feet"),
  19898. default: true
  19899. },
  19900. ]
  19901. ))
  19902. characterMakers.push(() => makeCharacter(
  19903. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19904. {
  19905. front: {
  19906. height: math.unit(6 + 1 / 12, "feet"),
  19907. weight: math.unit(304, "lb"),
  19908. name: "Front",
  19909. image: {
  19910. source: "./media/characters/oliver/front.svg",
  19911. extra: 157 / 143,
  19912. bottom: 0.08
  19913. }
  19914. },
  19915. },
  19916. [
  19917. {
  19918. name: "Normal",
  19919. height: math.unit(6 + 1 / 12, "feet"),
  19920. default: true
  19921. },
  19922. ]
  19923. ))
  19924. characterMakers.push(() => makeCharacter(
  19925. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19926. {
  19927. front: {
  19928. height: math.unit(5 + 7 / 12, "feet"),
  19929. weight: math.unit(140, "lb"),
  19930. name: "Front",
  19931. image: {
  19932. source: "./media/characters/shane/front.svg",
  19933. extra: 304 / 289,
  19934. bottom: 0.005
  19935. }
  19936. },
  19937. },
  19938. [
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(5 + 7 / 12, "feet"),
  19942. default: true
  19943. },
  19944. ]
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19948. {
  19949. front: {
  19950. height: math.unit(5 + 9 / 12, "feet"),
  19951. weight: math.unit(178, "lb"),
  19952. name: "Front",
  19953. image: {
  19954. source: "./media/characters/shin/front.svg",
  19955. extra: 159 / 151,
  19956. bottom: 0.015
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Normal",
  19963. height: math.unit(5 + 9 / 12, "feet"),
  19964. default: true
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(5 + 10 / 12, "feet"),
  19973. weight: math.unit(168, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/xerxes/front.svg",
  19977. extra: 282 / 260,
  19978. bottom: 0.045
  19979. }
  19980. },
  19981. },
  19982. [
  19983. {
  19984. name: "Normal",
  19985. height: math.unit(5 + 10 / 12, "feet"),
  19986. default: true
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(6 + 7 / 12, "feet"),
  19995. weight: math.unit(208, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/chaska/front.svg",
  19999. extra: 332 / 319,
  20000. bottom: 0.015
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(6 + 7 / 12, "feet"),
  20008. default: true
  20009. },
  20010. ]
  20011. ))
  20012. characterMakers.push(() => makeCharacter(
  20013. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20014. {
  20015. front: {
  20016. height: math.unit(5 + 8 / 12, "feet"),
  20017. weight: math.unit(208, "lb"),
  20018. name: "Front",
  20019. image: {
  20020. source: "./media/characters/enuk/front.svg",
  20021. extra: 437 / 406,
  20022. bottom: 0.02
  20023. }
  20024. },
  20025. },
  20026. [
  20027. {
  20028. name: "Normal",
  20029. height: math.unit(5 + 8 / 12, "feet"),
  20030. default: true
  20031. },
  20032. ]
  20033. ))
  20034. characterMakers.push(() => makeCharacter(
  20035. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20036. {
  20037. front: {
  20038. height: math.unit(5 + 10 / 12, "feet"),
  20039. weight: math.unit(252, "lb"),
  20040. name: "Front",
  20041. image: {
  20042. source: "./media/characters/bruun/front.svg",
  20043. extra: 197 / 187,
  20044. bottom: 0.012
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(5 + 10 / 12, "feet"),
  20052. default: true
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20058. {
  20059. front: {
  20060. height: math.unit(6 + 10 / 12, "feet"),
  20061. weight: math.unit(255, "lb"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/alexeev/front.svg",
  20065. extra: 213 / 200,
  20066. bottom: 0.05
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(6 + 10 / 12, "feet"),
  20074. default: true
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(2 + 8 / 12, "feet"),
  20083. weight: math.unit(22, "lb"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/evelyn/front.svg",
  20087. extra: 208 / 180
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(2 + 8 / 12, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(5 + 9 / 12, "feet"),
  20104. weight: math.unit(139, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/inca/front.svg",
  20108. extra: 294 / 291,
  20109. bottom: 0.03
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(5 + 9 / 12, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20123. {
  20124. front: {
  20125. height: math.unit(6 + 3 / 12, "feet"),
  20126. weight: math.unit(185, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/mera/front.svg",
  20130. extra: 291 / 277,
  20131. bottom: 0.03
  20132. }
  20133. },
  20134. },
  20135. [
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(6 + 3 / 12, "feet"),
  20139. default: true
  20140. },
  20141. ]
  20142. ))
  20143. characterMakers.push(() => makeCharacter(
  20144. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20145. {
  20146. front: {
  20147. height: math.unit(6 + 7 / 12, "feet"),
  20148. weight: math.unit(160, "lb"),
  20149. name: "Front",
  20150. image: {
  20151. source: "./media/characters/ceres/front.svg",
  20152. extra: 1023 / 950,
  20153. bottom: 0.027
  20154. }
  20155. },
  20156. back: {
  20157. height: math.unit(6 + 7 / 12, "feet"),
  20158. weight: math.unit(160, "lb"),
  20159. name: "Back",
  20160. image: {
  20161. source: "./media/characters/ceres/back.svg",
  20162. extra: 1023 / 950
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(6 + 7 / 12, "feet"),
  20170. default: true
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20176. {
  20177. front: {
  20178. height: math.unit(5 + 10 / 12, "feet"),
  20179. weight: math.unit(150, "lb"),
  20180. name: "Front",
  20181. image: {
  20182. source: "./media/characters/kris/front.svg",
  20183. extra: 885 / 803,
  20184. bottom: 0.03
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(5 + 10 / 12, "feet"),
  20192. default: true
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20198. {
  20199. front: {
  20200. height: math.unit(7, "feet"),
  20201. weight: math.unit(120, "kg"),
  20202. name: "Front",
  20203. image: {
  20204. source: "./media/characters/taluthus/front.svg",
  20205. extra: 903 / 833,
  20206. bottom: 0.015
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(7, "feet"),
  20214. default: true
  20215. },
  20216. {
  20217. name: "Macro",
  20218. height: math.unit(300, "feet")
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20224. {
  20225. front: {
  20226. height: math.unit(5 + 9 / 12, "feet"),
  20227. weight: math.unit(145, "lb"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/dawn/front.svg",
  20231. extra: 2094 / 2016,
  20232. bottom: 0.025
  20233. }
  20234. },
  20235. back: {
  20236. height: math.unit(5 + 9 / 12, "feet"),
  20237. weight: math.unit(160, "lb"),
  20238. name: "Back",
  20239. image: {
  20240. source: "./media/characters/dawn/back.svg",
  20241. extra: 2112 / 2080,
  20242. bottom: 0.005
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(6 + 7 / 12, "feet"),
  20250. default: true
  20251. },
  20252. ]
  20253. ))
  20254. characterMakers.push(() => makeCharacter(
  20255. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20256. {
  20257. anthro: {
  20258. height: math.unit(8 + 3 / 12, "feet"),
  20259. weight: math.unit(450, "lb"),
  20260. name: "Anthro",
  20261. image: {
  20262. source: "./media/characters/arador/anthro.svg",
  20263. extra: 1835 / 1718,
  20264. bottom: 0.025
  20265. }
  20266. },
  20267. feral: {
  20268. height: math.unit(4, "feet"),
  20269. weight: math.unit(200, "lb"),
  20270. name: "Feral",
  20271. image: {
  20272. source: "./media/characters/arador/feral.svg",
  20273. extra: 1683 / 1514,
  20274. bottom: 0.07
  20275. }
  20276. },
  20277. },
  20278. [
  20279. {
  20280. name: "Normal",
  20281. height: math.unit(8 + 3 / 12, "feet")
  20282. },
  20283. {
  20284. name: "Macro",
  20285. height: math.unit(82.5, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20292. {
  20293. front: {
  20294. height: math.unit(5 + 10 / 12, "feet"),
  20295. weight: math.unit(125, "lb"),
  20296. name: "Front",
  20297. image: {
  20298. source: "./media/characters/dharsi/front.svg",
  20299. extra: 716 / 630,
  20300. bottom: 0.035
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Nano",
  20307. height: math.unit(100, "nm")
  20308. },
  20309. {
  20310. name: "Micro",
  20311. height: math.unit(2, "inches")
  20312. },
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(5 + 10 / 12, "feet"),
  20316. default: true
  20317. },
  20318. {
  20319. name: "Macro",
  20320. height: math.unit(1000, "feet")
  20321. },
  20322. {
  20323. name: "Megamacro",
  20324. height: math.unit(10, "miles")
  20325. },
  20326. {
  20327. name: "Gigamacro",
  20328. height: math.unit(3000, "miles")
  20329. },
  20330. {
  20331. name: "Teramacro",
  20332. height: math.unit(500000, "miles")
  20333. },
  20334. {
  20335. name: "Teramacro+",
  20336. height: math.unit(30, "galaxies")
  20337. },
  20338. ]
  20339. ))
  20340. characterMakers.push(() => makeCharacter(
  20341. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20342. {
  20343. front: {
  20344. height: math.unit(6, "feet"),
  20345. weight: math.unit(150, "lb"),
  20346. name: "Front",
  20347. image: {
  20348. source: "./media/characters/deathy/front.svg",
  20349. extra: 1552 / 1463,
  20350. bottom: 0.025
  20351. }
  20352. },
  20353. side: {
  20354. height: math.unit(6, "feet"),
  20355. weight: math.unit(150, "lb"),
  20356. name: "Side",
  20357. image: {
  20358. source: "./media/characters/deathy/side.svg",
  20359. extra: 1604 / 1455,
  20360. bottom: 0.025
  20361. }
  20362. },
  20363. back: {
  20364. height: math.unit(6, "feet"),
  20365. weight: math.unit(150, "lb"),
  20366. name: "Back",
  20367. image: {
  20368. source: "./media/characters/deathy/back.svg",
  20369. extra: 1580 / 1463,
  20370. bottom: 0.005
  20371. }
  20372. },
  20373. },
  20374. [
  20375. {
  20376. name: "Micro",
  20377. height: math.unit(5, "millimeters")
  20378. },
  20379. {
  20380. name: "Normal",
  20381. height: math.unit(6 + 5 / 12, "feet"),
  20382. default: true
  20383. },
  20384. ]
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20388. {
  20389. front: {
  20390. height: math.unit(16, "feet"),
  20391. weight: math.unit(4000, "lb"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/juniper/front.svg",
  20395. bottom: 0.04
  20396. }
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Normal",
  20402. height: math.unit(16, "feet"),
  20403. default: true
  20404. },
  20405. ]
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20409. {
  20410. front: {
  20411. height: math.unit(6, "feet"),
  20412. weight: math.unit(150, "lb"),
  20413. name: "Front",
  20414. image: {
  20415. source: "./media/characters/hipster/front.svg",
  20416. extra: 1312 / 1209,
  20417. bottom: 0.025
  20418. }
  20419. },
  20420. back: {
  20421. height: math.unit(6, "feet"),
  20422. weight: math.unit(150, "lb"),
  20423. name: "Back",
  20424. image: {
  20425. source: "./media/characters/hipster/back.svg",
  20426. extra: 1281 / 1196,
  20427. bottom: 0.01
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Micro",
  20434. height: math.unit(1, "mm")
  20435. },
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(4, "inches"),
  20439. default: true
  20440. },
  20441. {
  20442. name: "Macro",
  20443. height: math.unit(500, "feet")
  20444. },
  20445. {
  20446. name: "Megamacro",
  20447. height: math.unit(1000, "miles")
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20453. {
  20454. front: {
  20455. height: math.unit(6, "feet"),
  20456. weight: math.unit(150, "lb"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/tendirmuldr/front.svg",
  20460. extra: 1878 / 1772,
  20461. bottom: 0.015
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Megamacro",
  20468. height: math.unit(1500, "miles"),
  20469. default: true
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20475. {
  20476. front: {
  20477. height: math.unit(14, "feet"),
  20478. weight: math.unit(12000, "lb"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/mort/front.svg",
  20482. extra: 365 / 318,
  20483. bottom: 0.01
  20484. }
  20485. },
  20486. side: {
  20487. height: math.unit(14, "feet"),
  20488. weight: math.unit(12000, "lb"),
  20489. name: "Side",
  20490. image: {
  20491. source: "./media/characters/mort/side.svg",
  20492. extra: 365 / 318,
  20493. bottom: 0.052
  20494. },
  20495. default: true
  20496. },
  20497. back: {
  20498. height: math.unit(14, "feet"),
  20499. weight: math.unit(12000, "lb"),
  20500. name: "Back",
  20501. image: {
  20502. source: "./media/characters/mort/back.svg",
  20503. extra: 371 / 332,
  20504. bottom: 0.18
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(14, "feet"),
  20512. default: true
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20518. {
  20519. front: {
  20520. height: math.unit(8, "feet"),
  20521. weight: math.unit(1, "ton"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/lycoa/front.svg",
  20525. extra: 1875 / 1789,
  20526. bottom: 0.022
  20527. }
  20528. },
  20529. back: {
  20530. height: math.unit(8, "feet"),
  20531. weight: math.unit(1, "ton"),
  20532. name: "Back",
  20533. image: {
  20534. source: "./media/characters/lycoa/back.svg",
  20535. extra: 1835 / 1781,
  20536. bottom: 0.03
  20537. }
  20538. },
  20539. head: {
  20540. height: math.unit(2.1, "feet"),
  20541. name: "Head",
  20542. image: {
  20543. source: "./media/characters/lycoa/head.svg"
  20544. }
  20545. },
  20546. tailmaw: {
  20547. height: math.unit(1.9, "feet"),
  20548. name: "Tailmaw",
  20549. image: {
  20550. source: "./media/characters/lycoa/tailmaw.svg"
  20551. }
  20552. },
  20553. tentacles: {
  20554. height: math.unit(2.1, "feet"),
  20555. name: "Tentacles",
  20556. image: {
  20557. source: "./media/characters/lycoa/tentacles.svg"
  20558. }
  20559. },
  20560. dick: {
  20561. height: math.unit(1.73, "feet"),
  20562. name: "Dick",
  20563. image: {
  20564. source: "./media/characters/lycoa/dick.svg"
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(8, "feet"),
  20572. default: true
  20573. },
  20574. {
  20575. name: "Macro",
  20576. height: math.unit(30, "feet")
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20582. {
  20583. front: {
  20584. height: math.unit(4 + 2 / 12, "feet"),
  20585. weight: math.unit(70, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/naldara/front.svg",
  20589. extra: 841 / 720,
  20590. bottom: 0.04
  20591. }
  20592. },
  20593. naga: {
  20594. height: math.unit(23, "feet"),
  20595. weight: math.unit(15000, "kg"),
  20596. name: "Naga",
  20597. image: {
  20598. source: "./media/characters/naldara/naga.svg",
  20599. extra: 3290 / 2959,
  20600. bottom: 124 / 3432
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(4 + 2 / 12, "feet"),
  20608. default: true
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(13 + 7 / 12, "feet"),
  20617. weight: math.unit(1500, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/briar/front.svg",
  20621. extra: 626 / 596,
  20622. bottom: 0.08
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(13 + 7 / 12, "feet"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20636. {
  20637. side: {
  20638. height: math.unit(10, "feet"),
  20639. weight: math.unit(500, "lb"),
  20640. name: "Side",
  20641. image: {
  20642. source: "./media/characters/vanguard/side.svg",
  20643. extra: 502 / 425,
  20644. bottom: 0.087
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Normal",
  20651. height: math.unit(10, "feet"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(7.5, "feet"),
  20661. weight: math.unit(2, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/artemis/front.svg",
  20665. extra: 1192 / 1075,
  20666. bottom: 0.07
  20667. }
  20668. },
  20669. frontNsfw: {
  20670. height: math.unit(7.5, "feet"),
  20671. weight: math.unit(2, "lb"),
  20672. name: "Front (NSFW)",
  20673. image: {
  20674. source: "./media/characters/artemis/front-nsfw.svg",
  20675. extra: 1192 / 1075,
  20676. bottom: 0.07
  20677. }
  20678. },
  20679. frontNsfwer: {
  20680. height: math.unit(7.5, "feet"),
  20681. weight: math.unit(2, "lb"),
  20682. name: "Front (NSFW-er)",
  20683. image: {
  20684. source: "./media/characters/artemis/front-nsfwer.svg",
  20685. extra: 1192 / 1075,
  20686. bottom: 0.07
  20687. }
  20688. },
  20689. side: {
  20690. height: math.unit(7.5, "feet"),
  20691. weight: math.unit(2, "lb"),
  20692. name: "Side",
  20693. image: {
  20694. source: "./media/characters/artemis/side.svg",
  20695. extra: 1192 / 1075,
  20696. bottom: 0.07
  20697. }
  20698. },
  20699. sideNsfw: {
  20700. height: math.unit(7.5, "feet"),
  20701. weight: math.unit(2, "lb"),
  20702. name: "Side (NSFW)",
  20703. image: {
  20704. source: "./media/characters/artemis/side-nsfw.svg",
  20705. extra: 1192 / 1075,
  20706. bottom: 0.07
  20707. }
  20708. },
  20709. sideNsfwer: {
  20710. height: math.unit(7.5, "feet"),
  20711. weight: math.unit(2, "lb"),
  20712. name: "Side (NSFW-er)",
  20713. image: {
  20714. source: "./media/characters/artemis/side-nsfwer.svg",
  20715. extra: 1192 / 1075,
  20716. bottom: 0.07
  20717. }
  20718. },
  20719. maw: {
  20720. height: math.unit(1.1, "feet"),
  20721. name: "Maw",
  20722. image: {
  20723. source: "./media/characters/artemis/maw.svg"
  20724. }
  20725. },
  20726. stomach: {
  20727. height: math.unit(0.95, "feet"),
  20728. name: "Stomach",
  20729. image: {
  20730. source: "./media/characters/artemis/stomach.svg"
  20731. }
  20732. },
  20733. dickCanine: {
  20734. height: math.unit(1, "feet"),
  20735. name: "Dick (Canine)",
  20736. image: {
  20737. source: "./media/characters/artemis/dick-canine.svg"
  20738. }
  20739. },
  20740. dickEquine: {
  20741. height: math.unit(0.85, "feet"),
  20742. name: "Dick (Equine)",
  20743. image: {
  20744. source: "./media/characters/artemis/dick-equine.svg"
  20745. }
  20746. },
  20747. dickExotic: {
  20748. height: math.unit(0.85, "feet"),
  20749. name: "Dick (Exotic)",
  20750. image: {
  20751. source: "./media/characters/artemis/dick-exotic.svg"
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(7.5, "feet"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Enlarged",
  20763. height: math.unit(12, "feet")
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(5 + 3 / 12, "feet"),
  20772. weight: math.unit(160, "lb"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/kira/front.svg",
  20776. extra: 906 / 786,
  20777. bottom: 0.01
  20778. }
  20779. },
  20780. back: {
  20781. height: math.unit(5 + 3 / 12, "feet"),
  20782. weight: math.unit(160, "lb"),
  20783. name: "Back",
  20784. image: {
  20785. source: "./media/characters/kira/back.svg",
  20786. extra: 882 / 757,
  20787. bottom: 0.005
  20788. }
  20789. },
  20790. frontDressed: {
  20791. height: math.unit(5 + 3 / 12, "feet"),
  20792. weight: math.unit(160, "lb"),
  20793. name: "Front (Dressed)",
  20794. image: {
  20795. source: "./media/characters/kira/front-dressed.svg",
  20796. extra: 906 / 786,
  20797. bottom: 0.01
  20798. }
  20799. },
  20800. beans: {
  20801. height: math.unit(0.92, "feet"),
  20802. name: "Beans",
  20803. image: {
  20804. source: "./media/characters/kira/beans.svg"
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Normal",
  20811. height: math.unit(5 + 3 / 12, "feet"),
  20812. default: true
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20818. {
  20819. front: {
  20820. height: math.unit(5 + 4 / 12, "feet"),
  20821. weight: math.unit(145, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/scramble/front.svg",
  20825. extra: 763 / 727,
  20826. bottom: 0.05
  20827. }
  20828. },
  20829. back: {
  20830. height: math.unit(5 + 4 / 12, "feet"),
  20831. weight: math.unit(145, "lb"),
  20832. name: "Back",
  20833. image: {
  20834. source: "./media/characters/scramble/back.svg",
  20835. extra: 826 / 737,
  20836. bottom: 0.002
  20837. }
  20838. },
  20839. },
  20840. [
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(5 + 4 / 12, "feet"),
  20844. default: true
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20850. {
  20851. side: {
  20852. height: math.unit(6 + 2 / 12, "feet"),
  20853. weight: math.unit(190, "lb"),
  20854. name: "Side",
  20855. image: {
  20856. source: "./media/characters/biscuit/side.svg",
  20857. extra: 858 / 791,
  20858. bottom: 0.044
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(6 + 2 / 12, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(5 + 2 / 12, "feet"),
  20875. weight: math.unit(120, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/poffin/front.svg",
  20879. extra: 786 / 680,
  20880. bottom: 0.005
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(5 + 2 / 12, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(6 + 3 / 12, "feet"),
  20897. weight: math.unit(519, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/dhari/front.svg",
  20901. extra: 1048 / 946,
  20902. bottom: 0.015
  20903. }
  20904. },
  20905. back: {
  20906. height: math.unit(6 + 3 / 12, "feet"),
  20907. weight: math.unit(519, "lb"),
  20908. name: "Back",
  20909. image: {
  20910. source: "./media/characters/dhari/back.svg",
  20911. extra: 1048 / 931,
  20912. bottom: 0.005
  20913. }
  20914. },
  20915. frontDressed: {
  20916. height: math.unit(6 + 3 / 12, "feet"),
  20917. weight: math.unit(519, "lb"),
  20918. name: "Front (Dressed)",
  20919. image: {
  20920. source: "./media/characters/dhari/front-dressed.svg",
  20921. extra: 1713 / 1546,
  20922. bottom: 0.02
  20923. }
  20924. },
  20925. backDressed: {
  20926. height: math.unit(6 + 3 / 12, "feet"),
  20927. weight: math.unit(519, "lb"),
  20928. name: "Back (Dressed)",
  20929. image: {
  20930. source: "./media/characters/dhari/back-dressed.svg",
  20931. extra: 1699 / 1537,
  20932. bottom: 0.01
  20933. }
  20934. },
  20935. maw: {
  20936. height: math.unit(0.95, "feet"),
  20937. name: "Maw",
  20938. image: {
  20939. source: "./media/characters/dhari/maw.svg"
  20940. }
  20941. },
  20942. wereFront: {
  20943. height: math.unit(12 + 8 / 12, "feet"),
  20944. weight: math.unit(4000, "lb"),
  20945. name: "Front (Were)",
  20946. image: {
  20947. source: "./media/characters/dhari/were-front.svg",
  20948. extra: 1065 / 969,
  20949. bottom: 0.015
  20950. }
  20951. },
  20952. wereBack: {
  20953. height: math.unit(12 + 8 / 12, "feet"),
  20954. weight: math.unit(4000, "lb"),
  20955. name: "Back (Were)",
  20956. image: {
  20957. source: "./media/characters/dhari/were-back.svg",
  20958. extra: 1065 / 969,
  20959. bottom: 0.012
  20960. }
  20961. },
  20962. wereMaw: {
  20963. height: math.unit(0.625, "meters"),
  20964. name: "Maw (Were)",
  20965. image: {
  20966. source: "./media/characters/dhari/were-maw.svg"
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(6 + 3 / 12, "feet"),
  20974. default: true
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20980. {
  20981. anthro: {
  20982. height: math.unit(5 + 7 / 12, "feet"),
  20983. weight: math.unit(175, "lb"),
  20984. name: "Anthro",
  20985. image: {
  20986. source: "./media/characters/rena-dyne/anthro.svg",
  20987. extra: 1849 / 1785,
  20988. bottom: 0.005
  20989. }
  20990. },
  20991. taur: {
  20992. height: math.unit(15 + 6 / 12, "feet"),
  20993. weight: math.unit(8000, "lb"),
  20994. name: "Taur",
  20995. image: {
  20996. source: "./media/characters/rena-dyne/taur.svg",
  20997. extra: 2315 / 2234,
  20998. bottom: 0.033
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Normal",
  21005. height: math.unit(5 + 7 / 12, "feet"),
  21006. default: true
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21012. {
  21013. front: {
  21014. height: math.unit(8, "feet"),
  21015. weight: math.unit(600, "lb"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/weremeep/front.svg",
  21019. extra: 967 / 862,
  21020. bottom: 0.01
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(8, "feet"),
  21028. default: true
  21029. },
  21030. {
  21031. name: "Lorg",
  21032. height: math.unit(12, "feet")
  21033. },
  21034. {
  21035. name: "Oh Lawd She Comin'",
  21036. height: math.unit(20, "feet")
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21042. {
  21043. front: {
  21044. height: math.unit(4, "feet"),
  21045. weight: math.unit(90, "lb"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/reza/front.svg",
  21049. extra: 1183 / 1111,
  21050. bottom: 0.017
  21051. }
  21052. },
  21053. back: {
  21054. height: math.unit(4, "feet"),
  21055. weight: math.unit(90, "lb"),
  21056. name: "Back",
  21057. image: {
  21058. source: "./media/characters/reza/back.svg",
  21059. extra: 1183 / 1111,
  21060. bottom: 0.01
  21061. }
  21062. },
  21063. drake: {
  21064. height: math.unit(30, "feet"),
  21065. weight: math.unit(246960, "lb"),
  21066. name: "Drake",
  21067. image: {
  21068. source: "./media/characters/reza/drake.svg",
  21069. extra: 2350 / 2024,
  21070. bottom: 60.7 / 2403
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(4, "feet"),
  21078. default: true
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21084. {
  21085. side: {
  21086. height: math.unit(15, "feet"),
  21087. weight: math.unit(14, "tons"),
  21088. name: "Side",
  21089. image: {
  21090. source: "./media/characters/athea/side.svg",
  21091. extra: 960 / 540,
  21092. bottom: 0.003
  21093. }
  21094. },
  21095. sitting: {
  21096. height: math.unit(6 * 2.85, "feet"),
  21097. weight: math.unit(14, "tons"),
  21098. name: "Sitting",
  21099. image: {
  21100. source: "./media/characters/athea/sitting.svg",
  21101. extra: 621 / 581,
  21102. bottom: 0.075
  21103. }
  21104. },
  21105. maw: {
  21106. height: math.unit(7.59498031496063, "feet"),
  21107. name: "Maw",
  21108. image: {
  21109. source: "./media/characters/athea/maw.svg"
  21110. }
  21111. },
  21112. },
  21113. [
  21114. {
  21115. name: "Lap Cat",
  21116. height: math.unit(2.5, "feet")
  21117. },
  21118. {
  21119. name: "Minimacro",
  21120. height: math.unit(15, "feet"),
  21121. default: true
  21122. },
  21123. {
  21124. name: "Macro",
  21125. height: math.unit(120, "feet")
  21126. },
  21127. {
  21128. name: "Macro+",
  21129. height: math.unit(640, "feet")
  21130. },
  21131. {
  21132. name: "Colossus",
  21133. height: math.unit(2.2, "miles")
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21139. {
  21140. front: {
  21141. height: math.unit(8 + 8 / 12, "feet"),
  21142. weight: math.unit(130, "kg"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/seroko/front.svg",
  21146. extra: 1385 / 1280,
  21147. bottom: 0.025
  21148. }
  21149. },
  21150. back: {
  21151. height: math.unit(8 + 8 / 12, "feet"),
  21152. weight: math.unit(130, "kg"),
  21153. name: "Back",
  21154. image: {
  21155. source: "./media/characters/seroko/back.svg",
  21156. extra: 1369 / 1238,
  21157. bottom: 0.018
  21158. }
  21159. },
  21160. frontDressed: {
  21161. height: math.unit(8 + 8 / 12, "feet"),
  21162. weight: math.unit(130, "kg"),
  21163. name: "Front (Dressed)",
  21164. image: {
  21165. source: "./media/characters/seroko/front-dressed.svg",
  21166. extra: 1366 / 1275,
  21167. bottom: 0.03
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Normal",
  21174. height: math.unit(8 + 8 / 12, "feet"),
  21175. default: true
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21181. {
  21182. front: {
  21183. height: math.unit(5.5, "feet"),
  21184. weight: math.unit(160, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/quatzi/front.svg",
  21188. extra: 2346 / 2242,
  21189. bottom: 0.015
  21190. }
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Normal",
  21196. height: math.unit(5.5, "feet"),
  21197. default: true
  21198. },
  21199. {
  21200. name: "Big",
  21201. height: math.unit(7.7, "feet")
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21207. {
  21208. front: {
  21209. height: math.unit(5 + 11 / 12, "feet"),
  21210. weight: math.unit(180, "lb"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/sen/front.svg",
  21214. extra: 1321 / 1254,
  21215. bottom: 0.015
  21216. }
  21217. },
  21218. side: {
  21219. height: math.unit(5 + 11 / 12, "feet"),
  21220. weight: math.unit(180, "lb"),
  21221. name: "Side",
  21222. image: {
  21223. source: "./media/characters/sen/side.svg",
  21224. extra: 1321 / 1254,
  21225. bottom: 0.007
  21226. }
  21227. },
  21228. back: {
  21229. height: math.unit(5 + 11 / 12, "feet"),
  21230. weight: math.unit(180, "lb"),
  21231. name: "Back",
  21232. image: {
  21233. source: "./media/characters/sen/back.svg",
  21234. extra: 1321 / 1254
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(5 + 11 / 12, "feet"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21248. {
  21249. front: {
  21250. height: math.unit(166.6, "cm"),
  21251. weight: math.unit(66.6, "kg"),
  21252. name: "Front",
  21253. image: {
  21254. source: "./media/characters/fruity/front.svg",
  21255. extra: 1510 / 1386,
  21256. bottom: 0.04
  21257. }
  21258. },
  21259. back: {
  21260. height: math.unit(166.6, "cm"),
  21261. weight: math.unit(66.6, "lb"),
  21262. name: "Back",
  21263. image: {
  21264. source: "./media/characters/fruity/back.svg",
  21265. extra: 1563 / 1435,
  21266. bottom: 0.005
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Normal",
  21273. height: math.unit(166.6, "cm"),
  21274. default: true
  21275. },
  21276. {
  21277. name: "Demonic",
  21278. height: math.unit(166.6, "feet")
  21279. },
  21280. ]
  21281. ))
  21282. characterMakers.push(() => makeCharacter(
  21283. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21284. {
  21285. side: {
  21286. height: math.unit(10, "feet"),
  21287. weight: math.unit(500, "lb"),
  21288. name: "Side",
  21289. image: {
  21290. source: "./media/characters/zost/side.svg",
  21291. extra: 966 / 880,
  21292. bottom: 0.075
  21293. }
  21294. },
  21295. mawFront: {
  21296. height: math.unit(1.08, "meters"),
  21297. name: "Maw (Front)",
  21298. image: {
  21299. source: "./media/characters/zost/maw-front.svg"
  21300. }
  21301. },
  21302. mawSide: {
  21303. height: math.unit(2.66, "feet"),
  21304. name: "Maw (Side)",
  21305. image: {
  21306. source: "./media/characters/zost/maw-side.svg"
  21307. }
  21308. },
  21309. },
  21310. [
  21311. {
  21312. name: "Normal",
  21313. height: math.unit(10, "feet"),
  21314. default: true
  21315. },
  21316. ]
  21317. ))
  21318. characterMakers.push(() => makeCharacter(
  21319. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21320. {
  21321. front: {
  21322. height: math.unit(5 + 4 / 12, "feet"),
  21323. weight: math.unit(120, "lb"),
  21324. name: "Front",
  21325. image: {
  21326. source: "./media/characters/luci/front.svg",
  21327. extra: 1985 / 1884,
  21328. bottom: 0.04
  21329. }
  21330. },
  21331. back: {
  21332. height: math.unit(5 + 4 / 12, "feet"),
  21333. weight: math.unit(120, "lb"),
  21334. name: "Back",
  21335. image: {
  21336. source: "./media/characters/luci/back.svg",
  21337. extra: 1892 / 1791,
  21338. bottom: 0.002
  21339. }
  21340. },
  21341. },
  21342. [
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(5 + 4 / 12, "feet"),
  21346. default: true
  21347. },
  21348. ]
  21349. ))
  21350. characterMakers.push(() => makeCharacter(
  21351. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21352. {
  21353. front: {
  21354. height: math.unit(1500, "feet"),
  21355. weight: math.unit(3.8e6, "tons"),
  21356. name: "Front",
  21357. image: {
  21358. source: "./media/characters/2th/front.svg",
  21359. extra: 3489 / 3350,
  21360. bottom: 0.1
  21361. }
  21362. },
  21363. foot: {
  21364. height: math.unit(461, "feet"),
  21365. name: "Foot",
  21366. image: {
  21367. source: "./media/characters/2th/foot.svg"
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "\"Micro\"",
  21374. height: math.unit(15 + 7 / 12, "feet")
  21375. },
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(1500, "feet"),
  21379. default: true
  21380. },
  21381. {
  21382. name: "Macro",
  21383. height: math.unit(5000, "feet")
  21384. },
  21385. {
  21386. name: "Megamacro",
  21387. height: math.unit(15, "miles")
  21388. },
  21389. {
  21390. name: "Gigamacro",
  21391. height: math.unit(4000, "miles")
  21392. },
  21393. {
  21394. name: "Galactic",
  21395. height: math.unit(50, "AU")
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(5 + 6 / 12, "feet"),
  21404. weight: math.unit(220, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/amethyst/front.svg",
  21408. extra: 2078 / 2040,
  21409. bottom: 0.045
  21410. }
  21411. },
  21412. back: {
  21413. height: math.unit(5 + 6 / 12, "feet"),
  21414. weight: math.unit(220, "lb"),
  21415. name: "Back",
  21416. image: {
  21417. source: "./media/characters/amethyst/back.svg",
  21418. extra: 2021 / 1989,
  21419. bottom: 0.02
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(5 + 6 / 12, "feet"),
  21427. default: true
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(4 + 11 / 12, "feet"),
  21436. weight: math.unit(120, "lb"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/yumi-akiyama/front.svg",
  21440. extra: 1327 / 1235,
  21441. bottom: 0.02
  21442. }
  21443. },
  21444. back: {
  21445. height: math.unit(4 + 11 / 12, "feet"),
  21446. weight: math.unit(120, "lb"),
  21447. name: "Back",
  21448. image: {
  21449. source: "./media/characters/yumi-akiyama/back.svg",
  21450. extra: 1287 / 1245,
  21451. bottom: 0.002
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Galactic",
  21458. height: math.unit(50, "galaxies"),
  21459. default: true
  21460. },
  21461. {
  21462. name: "Universal",
  21463. height: math.unit(100, "universes")
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21469. {
  21470. front: {
  21471. height: math.unit(8, "feet"),
  21472. weight: math.unit(500, "lb"),
  21473. name: "Front",
  21474. image: {
  21475. source: "./media/characters/rifter-yrmori/front.svg",
  21476. extra: 1180 / 1125,
  21477. bottom: 0.02
  21478. }
  21479. },
  21480. back: {
  21481. height: math.unit(8, "feet"),
  21482. weight: math.unit(500, "lb"),
  21483. name: "Back",
  21484. image: {
  21485. source: "./media/characters/rifter-yrmori/back.svg",
  21486. extra: 1190 / 1145,
  21487. bottom: 0.001
  21488. }
  21489. },
  21490. wings: {
  21491. height: math.unit(7.75, "feet"),
  21492. weight: math.unit(500, "lb"),
  21493. name: "Wings",
  21494. image: {
  21495. source: "./media/characters/rifter-yrmori/wings.svg",
  21496. extra: 1357 / 1285
  21497. }
  21498. },
  21499. maw: {
  21500. height: math.unit(0.8, "feet"),
  21501. name: "Maw",
  21502. image: {
  21503. source: "./media/characters/rifter-yrmori/maw.svg"
  21504. }
  21505. },
  21506. mawfront: {
  21507. height: math.unit(1.45, "feet"),
  21508. name: "Maw (Front)",
  21509. image: {
  21510. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "Normal",
  21517. height: math.unit(8, "feet"),
  21518. default: true
  21519. },
  21520. {
  21521. name: "Macro",
  21522. height: math.unit(42, "meters")
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21528. {
  21529. were: {
  21530. height: math.unit(25 + 6 / 12, "feet"),
  21531. weight: math.unit(10000, "lb"),
  21532. name: "Were",
  21533. image: {
  21534. source: "./media/characters/tahajin/were.svg",
  21535. extra: 801 / 770,
  21536. bottom: 0.042
  21537. }
  21538. },
  21539. aquatic: {
  21540. height: math.unit(6 + 4 / 12, "feet"),
  21541. weight: math.unit(160, "lb"),
  21542. name: "Aquatic",
  21543. image: {
  21544. source: "./media/characters/tahajin/aquatic.svg",
  21545. extra: 572 / 542,
  21546. bottom: 0.04
  21547. }
  21548. },
  21549. chow: {
  21550. height: math.unit(8 + 11 / 12, "feet"),
  21551. weight: math.unit(450, "lb"),
  21552. name: "Chow",
  21553. image: {
  21554. source: "./media/characters/tahajin/chow.svg",
  21555. extra: 660 / 640,
  21556. bottom: 0.015
  21557. }
  21558. },
  21559. demiNaga: {
  21560. height: math.unit(6 + 8 / 12, "feet"),
  21561. weight: math.unit(300, "lb"),
  21562. name: "Demi Naga",
  21563. image: {
  21564. source: "./media/characters/tahajin/demi-naga.svg",
  21565. extra: 643 / 615,
  21566. bottom: 0.1
  21567. }
  21568. },
  21569. data: {
  21570. height: math.unit(5, "inches"),
  21571. weight: math.unit(0.1, "lb"),
  21572. name: "Data",
  21573. image: {
  21574. source: "./media/characters/tahajin/data.svg"
  21575. }
  21576. },
  21577. fluu: {
  21578. height: math.unit(5 + 7 / 12, "feet"),
  21579. weight: math.unit(140, "lb"),
  21580. name: "Fluu",
  21581. image: {
  21582. source: "./media/characters/tahajin/fluu.svg",
  21583. extra: 628 / 592,
  21584. bottom: 0.02
  21585. }
  21586. },
  21587. starWarrior: {
  21588. height: math.unit(4 + 5 / 12, "feet"),
  21589. weight: math.unit(50, "lb"),
  21590. name: "Star Warrior",
  21591. image: {
  21592. source: "./media/characters/tahajin/star-warrior.svg"
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(25 + 6 / 12, "feet"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21606. {
  21607. front: {
  21608. height: math.unit(8, "feet"),
  21609. weight: math.unit(350, "lb"),
  21610. name: "Front",
  21611. image: {
  21612. source: "./media/characters/gabira/front.svg",
  21613. extra: 608 / 580,
  21614. bottom: 0.03
  21615. }
  21616. },
  21617. back: {
  21618. height: math.unit(8, "feet"),
  21619. weight: math.unit(350, "lb"),
  21620. name: "Back",
  21621. image: {
  21622. source: "./media/characters/gabira/back.svg",
  21623. extra: 608 / 580,
  21624. bottom: 0.03
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(8, "feet"),
  21632. default: true
  21633. },
  21634. ]
  21635. ))
  21636. characterMakers.push(() => makeCharacter(
  21637. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21638. {
  21639. front: {
  21640. height: math.unit(5 + 3 / 12, "feet"),
  21641. weight: math.unit(137, "lb"),
  21642. name: "Front",
  21643. image: {
  21644. source: "./media/characters/sasha-katraine/front.svg",
  21645. bottom: 0.045
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Micro",
  21652. height: math.unit(5, "inches")
  21653. },
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(5 + 3 / 12, "feet"),
  21657. default: true
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21663. {
  21664. side: {
  21665. height: math.unit(4, "inches"),
  21666. weight: math.unit(200, "grams"),
  21667. name: "Side",
  21668. image: {
  21669. source: "./media/characters/der/side.svg",
  21670. extra: 719 / 400,
  21671. bottom: 30.6 / 749.9187
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Micro",
  21678. height: math.unit(4, "inches"),
  21679. default: true
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21685. {
  21686. side: {
  21687. height: math.unit(30, "meters"),
  21688. weight: math.unit(700, "tonnes"),
  21689. name: "Side",
  21690. image: {
  21691. source: "./media/characters/fixerdragon/side.svg",
  21692. extra: (1293.0514 - 116.03) / 1106.86,
  21693. bottom: 116.03 / 1293.0514
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Planck",
  21700. height: math.unit(1.6e-35, "meters")
  21701. },
  21702. {
  21703. name: "Micro",
  21704. height: math.unit(0.4, "meters")
  21705. },
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(30, "meters"),
  21709. default: true
  21710. },
  21711. {
  21712. name: "Megamacro",
  21713. height: math.unit(1.2, "megameters")
  21714. },
  21715. {
  21716. name: "Teramacro",
  21717. height: math.unit(130, "terameters")
  21718. },
  21719. {
  21720. name: "Yottamacro",
  21721. height: math.unit(6200, "yottameters")
  21722. },
  21723. ]
  21724. ));
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(8, "feet"),
  21730. weight: math.unit(250, "lb"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/kite/front.svg",
  21734. extra: 2796 / 2659,
  21735. bottom: 0.002
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(8, "feet"),
  21743. default: true
  21744. },
  21745. {
  21746. name: "Macro",
  21747. height: math.unit(360, "feet")
  21748. },
  21749. {
  21750. name: "Megamacro",
  21751. height: math.unit(1500, "feet")
  21752. },
  21753. ]
  21754. ))
  21755. characterMakers.push(() => makeCharacter(
  21756. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21757. {
  21758. front: {
  21759. height: math.unit(5 + 11/12, "feet"),
  21760. weight: math.unit(170, "lb"),
  21761. name: "Front",
  21762. image: {
  21763. source: "./media/characters/poojawa-vynar/front.svg",
  21764. extra: 1735/1585,
  21765. bottom: 96/1831
  21766. }
  21767. },
  21768. back: {
  21769. height: math.unit(5 + 11/12, "feet"),
  21770. weight: math.unit(170, "lb"),
  21771. name: "Back",
  21772. image: {
  21773. source: "./media/characters/poojawa-vynar/back.svg",
  21774. extra: 1749/1607,
  21775. bottom: 28/1777
  21776. }
  21777. },
  21778. male: {
  21779. height: math.unit(5 + 11/12, "feet"),
  21780. weight: math.unit(170, "lb"),
  21781. name: "Male",
  21782. image: {
  21783. source: "./media/characters/poojawa-vynar/male.svg",
  21784. extra: 1855/1713,
  21785. bottom: 63/1918
  21786. }
  21787. },
  21788. taur: {
  21789. height: math.unit(5 + 11/12, "feet"),
  21790. weight: math.unit(170, "lb"),
  21791. name: "Taur",
  21792. image: {
  21793. source: "./media/characters/poojawa-vynar/taur.svg",
  21794. extra: 1151/1059,
  21795. bottom: 356/1507
  21796. }
  21797. },
  21798. frontDressed: {
  21799. height: math.unit(5 + 11/12, "feet"),
  21800. weight: math.unit(170, "lb"),
  21801. name: "Front (Dressed)",
  21802. image: {
  21803. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21804. extra: 1735/1585,
  21805. bottom: 96/1831
  21806. }
  21807. },
  21808. backDressed: {
  21809. height: math.unit(5 + 11/12, "feet"),
  21810. weight: math.unit(170, "lb"),
  21811. name: "Back (Dressed)",
  21812. image: {
  21813. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21814. extra: 1749/1607,
  21815. bottom: 28/1777
  21816. }
  21817. },
  21818. maleDressed: {
  21819. height: math.unit(5 + 11/12, "feet"),
  21820. weight: math.unit(170, "lb"),
  21821. name: "Male (Dressed)",
  21822. image: {
  21823. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21824. extra: 1855/1713,
  21825. bottom: 63/1918
  21826. }
  21827. },
  21828. taurDressed: {
  21829. height: math.unit(5 + 11/12, "feet"),
  21830. weight: math.unit(170, "lb"),
  21831. name: "Taur (Dressed)",
  21832. image: {
  21833. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21834. extra: 1151/1059,
  21835. bottom: 356/1507
  21836. }
  21837. },
  21838. maw: {
  21839. height: math.unit(1.46, "feet"),
  21840. name: "Maw",
  21841. image: {
  21842. source: "./media/characters/poojawa-vynar/maw.svg"
  21843. }
  21844. },
  21845. head: {
  21846. height: math.unit(2.34, "feet"),
  21847. name: "Head",
  21848. image: {
  21849. source: "./media/characters/poojawa-vynar/head.svg"
  21850. }
  21851. },
  21852. paw: {
  21853. height: math.unit(1.61, "feet"),
  21854. name: "Paw",
  21855. image: {
  21856. source: "./media/characters/poojawa-vynar/paw.svg"
  21857. }
  21858. },
  21859. pawToering: {
  21860. height: math.unit(1.72, "feet"),
  21861. name: "Paw (Toering)",
  21862. image: {
  21863. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21864. }
  21865. },
  21866. toering: {
  21867. height: math.unit(2.9, "inches"),
  21868. name: "Toering",
  21869. image: {
  21870. source: "./media/characters/poojawa-vynar/toering.svg"
  21871. }
  21872. },
  21873. shaft: {
  21874. height: math.unit(0.625, "feet"),
  21875. name: "Shaft",
  21876. image: {
  21877. source: "./media/characters/poojawa-vynar/shaft.svg"
  21878. }
  21879. },
  21880. spade: {
  21881. height: math.unit(0.42, "feet"),
  21882. name: "Spade",
  21883. image: {
  21884. source: "./media/characters/poojawa-vynar/spade.svg"
  21885. }
  21886. },
  21887. },
  21888. [
  21889. {
  21890. name: "Shortstack",
  21891. height: math.unit(4, "feet")
  21892. },
  21893. {
  21894. name: "Normal",
  21895. height: math.unit(5 + 11 / 12, "feet"),
  21896. default: true
  21897. },
  21898. {
  21899. name: "Tauric",
  21900. height: math.unit(4, "meters")
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21906. {
  21907. front: {
  21908. height: math.unit(293, "meters"),
  21909. weight: math.unit(70400, "tons"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/violette/front.svg",
  21913. extra: 1227 / 1180,
  21914. bottom: 0.005
  21915. }
  21916. },
  21917. back: {
  21918. height: math.unit(293, "meters"),
  21919. weight: math.unit(70400, "tons"),
  21920. name: "Back",
  21921. image: {
  21922. source: "./media/characters/violette/back.svg",
  21923. extra: 1227 / 1180,
  21924. bottom: 0.005
  21925. }
  21926. },
  21927. },
  21928. [
  21929. {
  21930. name: "Macro",
  21931. height: math.unit(293, "meters"),
  21932. default: true
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(1050, "feet"),
  21941. weight: math.unit(200000, "tons"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/alessandra/front.svg",
  21945. extra: 960 / 912,
  21946. bottom: 0.06
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Macro",
  21953. height: math.unit(1050, "feet")
  21954. },
  21955. {
  21956. name: "Macro+",
  21957. height: math.unit(900, "meters"),
  21958. default: true
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(5, "feet"),
  21967. weight: math.unit(187, "lb"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/person/front.svg",
  21971. extra: 3087 / 2945,
  21972. bottom: 91 / 3181
  21973. }
  21974. },
  21975. },
  21976. [
  21977. {
  21978. name: "Micro",
  21979. height: math.unit(3, "inches")
  21980. },
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(5, "feet"),
  21984. default: true
  21985. },
  21986. {
  21987. name: "Macro",
  21988. height: math.unit(90, "feet")
  21989. },
  21990. {
  21991. name: "Max Size",
  21992. height: math.unit(280, "feet")
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(4.5, "meters"),
  22001. weight: math.unit(3200, "lb"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/ty/front.svg",
  22005. extra: 1038 / 960,
  22006. bottom: 31.156 / 1068
  22007. }
  22008. },
  22009. back: {
  22010. height: math.unit(4.5, "meters"),
  22011. weight: math.unit(3200, "lb"),
  22012. name: "Back",
  22013. image: {
  22014. source: "./media/characters/ty/back.svg",
  22015. extra: 1044 / 966,
  22016. bottom: 7.48 / 1049
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Normal",
  22023. height: math.unit(4.5, "meters"),
  22024. default: true
  22025. },
  22026. ]
  22027. ))
  22028. characterMakers.push(() => makeCharacter(
  22029. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22030. {
  22031. front: {
  22032. height: math.unit(5 + 4 / 12, "feet"),
  22033. weight: math.unit(115, "lb"),
  22034. name: "Front",
  22035. image: {
  22036. source: "./media/characters/rocky/front.svg",
  22037. extra: 1012 / 975,
  22038. bottom: 54 / 1066
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(5 + 4 / 12, "feet"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22052. {
  22053. upright: {
  22054. height: math.unit(6, "meters"),
  22055. weight: math.unit(4000, "kg"),
  22056. name: "Upright",
  22057. image: {
  22058. source: "./media/characters/ruin/upright.svg",
  22059. extra: 668 / 661,
  22060. bottom: 42 / 799.8396
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(6, "meters"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(5, "feet"),
  22077. weight: math.unit(106, "lb"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/robin/front.svg",
  22081. extra: 862 / 799,
  22082. bottom: 42.4 / 914.8856
  22083. }
  22084. },
  22085. },
  22086. [
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(5, "feet"),
  22090. default: true
  22091. },
  22092. ]
  22093. ))
  22094. characterMakers.push(() => makeCharacter(
  22095. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22096. {
  22097. side: {
  22098. height: math.unit(3, "feet"),
  22099. weight: math.unit(225, "lb"),
  22100. name: "Side",
  22101. image: {
  22102. source: "./media/characters/saian/side.svg",
  22103. extra: 566 / 356,
  22104. bottom: 79.7 / 643
  22105. }
  22106. },
  22107. maw: {
  22108. height: math.unit(2.85, "feet"),
  22109. name: "Maw",
  22110. image: {
  22111. source: "./media/characters/saian/maw.svg"
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Normal",
  22118. height: math.unit(3, "feet"),
  22119. default: true
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22125. {
  22126. side: {
  22127. height: math.unit(8, "feet"),
  22128. weight: math.unit(300, "lb"),
  22129. name: "Side",
  22130. image: {
  22131. source: "./media/characters/equus-silvermane/side.svg",
  22132. extra: 2176 / 2050,
  22133. bottom: 65.7 / 2245
  22134. }
  22135. },
  22136. front: {
  22137. height: math.unit(8, "feet"),
  22138. weight: math.unit(300, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/equus-silvermane/front.svg",
  22142. extra: 4633 / 4400,
  22143. bottom: 71.3 / 4706.915
  22144. }
  22145. },
  22146. sideStepping: {
  22147. height: math.unit(8, "feet"),
  22148. weight: math.unit(300, "lb"),
  22149. name: "Side (Stepping)",
  22150. image: {
  22151. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22152. extra: 1968 / 1860,
  22153. bottom: 16.4 / 1989
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(8, "feet")
  22161. },
  22162. {
  22163. name: "Minimacro",
  22164. height: math.unit(75, "feet"),
  22165. default: true
  22166. },
  22167. {
  22168. name: "Macro",
  22169. height: math.unit(150, "feet")
  22170. },
  22171. {
  22172. name: "Macro+",
  22173. height: math.unit(1000, "feet")
  22174. },
  22175. {
  22176. name: "Megamacro",
  22177. height: math.unit(1, "mile")
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22183. {
  22184. side: {
  22185. height: math.unit(20, "feet"),
  22186. weight: math.unit(30000, "kg"),
  22187. name: "Side",
  22188. image: {
  22189. source: "./media/characters/windar/side.svg",
  22190. extra: 1491 / 1248,
  22191. bottom: 82.56 / 1568
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(20, "feet"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22205. {
  22206. side: {
  22207. height: math.unit(15.66, "feet"),
  22208. weight: math.unit(150, "lb"),
  22209. name: "Side",
  22210. image: {
  22211. source: "./media/characters/melody/side.svg",
  22212. extra: 1097 / 944,
  22213. bottom: 11.8 / 1109
  22214. }
  22215. },
  22216. sideOutfit: {
  22217. height: math.unit(15.66, "feet"),
  22218. weight: math.unit(150, "lb"),
  22219. name: "Side (Outfit)",
  22220. image: {
  22221. source: "./media/characters/melody/side-outfit.svg",
  22222. extra: 1097 / 944,
  22223. bottom: 11.8 / 1109
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(15.66, "feet"),
  22231. default: true
  22232. },
  22233. ]
  22234. ))
  22235. characterMakers.push(() => makeCharacter(
  22236. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22237. {
  22238. front: {
  22239. height: math.unit(8, "feet"),
  22240. weight: math.unit(325, "lb"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/windera/front.svg",
  22244. extra: 3180 / 2845,
  22245. bottom: 178 / 3365
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(8, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22259. {
  22260. front: {
  22261. height: math.unit(28.75, "feet"),
  22262. weight: math.unit(2000, "kg"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/sonear/front.svg",
  22266. extra: 1041.1 / 964.9,
  22267. bottom: 53.7 / 1096.6
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(28.75, "feet"),
  22275. default: true
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22281. {
  22282. side: {
  22283. height: math.unit(25.5, "feet"),
  22284. weight: math.unit(23000, "kg"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/kanara/side.svg"
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(25.5, "feet"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22301. {
  22302. side: {
  22303. height: math.unit(10, "feet"),
  22304. weight: math.unit(1000, "kg"),
  22305. name: "Side",
  22306. image: {
  22307. source: "./media/characters/ereus/side.svg",
  22308. extra: 1157 / 959,
  22309. bottom: 153 / 1312.5
  22310. }
  22311. },
  22312. },
  22313. [
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(10, "feet"),
  22317. default: true
  22318. },
  22319. ]
  22320. ))
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22323. {
  22324. side: {
  22325. height: math.unit(4.5, "feet"),
  22326. weight: math.unit(500, "lb"),
  22327. name: "Side",
  22328. image: {
  22329. source: "./media/characters/e-ter/side.svg",
  22330. extra: 1550 / 1248,
  22331. bottom: 146 / 1694
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(4.5, "feet"),
  22339. default: true
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22345. {
  22346. side: {
  22347. height: math.unit(9.7, "feet"),
  22348. weight: math.unit(4000, "kg"),
  22349. name: "Side",
  22350. image: {
  22351. source: "./media/characters/yamie/side.svg"
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Normal",
  22358. height: math.unit(9.7, "feet"),
  22359. default: true
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22365. {
  22366. front: {
  22367. height: math.unit(50, "feet"),
  22368. weight: math.unit(50000, "kg"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/anders/front.svg",
  22372. extra: 570 / 539,
  22373. bottom: 14.7 / 586.7
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Large",
  22380. height: math.unit(50, "feet")
  22381. },
  22382. {
  22383. name: "Macro",
  22384. height: math.unit(2000, "feet"),
  22385. default: true
  22386. },
  22387. {
  22388. name: "Megamacro",
  22389. height: math.unit(12, "miles")
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(7 + 2 / 12, "feet"),
  22398. weight: math.unit(300, "lb"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/reban/front.svg",
  22402. extra: 516 / 487,
  22403. bottom: 42.82 / 558.356
  22404. }
  22405. },
  22406. dick: {
  22407. height: math.unit(7 / 5, "feet"),
  22408. name: "Dick",
  22409. image: {
  22410. source: "./media/characters/reban/dick.svg"
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Natural Height",
  22417. height: math.unit(7 + 2 / 12, "feet")
  22418. },
  22419. {
  22420. name: "Macro",
  22421. height: math.unit(500, "feet"),
  22422. default: true
  22423. },
  22424. {
  22425. name: "Canon Height",
  22426. height: math.unit(50, "AU")
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(6, "feet"),
  22435. weight: math.unit(150, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/terrance-keayes/front.svg",
  22439. extra: 1.005,
  22440. bottom: 151 / 1615
  22441. }
  22442. },
  22443. side: {
  22444. height: math.unit(6, "feet"),
  22445. weight: math.unit(150, "lb"),
  22446. name: "Side",
  22447. image: {
  22448. source: "./media/characters/terrance-keayes/side.svg",
  22449. extra: 1.005,
  22450. bottom: 129.4 / 1544
  22451. }
  22452. },
  22453. back: {
  22454. height: math.unit(6, "feet"),
  22455. weight: math.unit(150, "lb"),
  22456. name: "Back",
  22457. image: {
  22458. source: "./media/characters/terrance-keayes/back.svg",
  22459. extra: 1.005,
  22460. bottom: 58.4 / 1557.3
  22461. }
  22462. },
  22463. dick: {
  22464. height: math.unit(6 * 0.208, "feet"),
  22465. name: "Dick",
  22466. image: {
  22467. source: "./media/characters/terrance-keayes/dick.svg"
  22468. }
  22469. },
  22470. },
  22471. [
  22472. {
  22473. name: "Canon Height",
  22474. height: math.unit(35, "miles"),
  22475. default: true
  22476. },
  22477. ]
  22478. ))
  22479. characterMakers.push(() => makeCharacter(
  22480. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22481. {
  22482. front: {
  22483. height: math.unit(6, "feet"),
  22484. weight: math.unit(150, "lb"),
  22485. name: "Front",
  22486. image: {
  22487. source: "./media/characters/ofelia/front.svg",
  22488. extra: 1130/1117,
  22489. bottom: 91/1221
  22490. }
  22491. },
  22492. back: {
  22493. height: math.unit(6, "feet"),
  22494. weight: math.unit(150, "lb"),
  22495. name: "Back",
  22496. image: {
  22497. source: "./media/characters/ofelia/back.svg",
  22498. extra: 1172/1159,
  22499. bottom: 28/1200
  22500. }
  22501. },
  22502. maw: {
  22503. height: math.unit(1, "feet"),
  22504. name: "Maw",
  22505. image: {
  22506. source: "./media/characters/ofelia/maw.svg"
  22507. }
  22508. },
  22509. foot: {
  22510. height: math.unit(1.949, "feet"),
  22511. name: "Foot",
  22512. image: {
  22513. source: "./media/characters/ofelia/foot.svg"
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Canon Height",
  22520. height: math.unit(2000, "miles"),
  22521. default: true
  22522. },
  22523. ]
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22527. {
  22528. front: {
  22529. height: math.unit(6, "feet"),
  22530. weight: math.unit(150, "lb"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/samuel/front.svg",
  22534. extra: 265 / 258,
  22535. bottom: 2 / 266.1566
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Macro",
  22542. height: math.unit(100, "feet"),
  22543. default: true
  22544. },
  22545. {
  22546. name: "Full Size",
  22547. height: math.unit(1000, "miles")
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(6, "feet"),
  22556. weight: math.unit(300, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/beishir-kiel/front.svg",
  22560. extra: 569 / 547,
  22561. bottom: 41.9 / 609
  22562. }
  22563. },
  22564. maw: {
  22565. height: math.unit(6 * 0.202, "feet"),
  22566. name: "Maw",
  22567. image: {
  22568. source: "./media/characters/beishir-kiel/maw.svg"
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Macro",
  22575. height: math.unit(300, "feet"),
  22576. default: true
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(5 + 7/12, "feet"),
  22585. weight: math.unit(120, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/logan-grey/front.svg",
  22589. extra: 1836/1738,
  22590. bottom: 108/1944
  22591. }
  22592. },
  22593. back: {
  22594. height: math.unit(5 + 7/12, "feet"),
  22595. weight: math.unit(120, "lb"),
  22596. name: "Back",
  22597. image: {
  22598. source: "./media/characters/logan-grey/back.svg",
  22599. extra: 1880/1794,
  22600. bottom: 24/1904
  22601. }
  22602. },
  22603. frontSfw: {
  22604. height: math.unit(5 + 7/12, "feet"),
  22605. weight: math.unit(120, "lb"),
  22606. name: "Front (SFW)",
  22607. image: {
  22608. source: "./media/characters/logan-grey/front-sfw.svg",
  22609. extra: 1836/1738,
  22610. bottom: 108/1944
  22611. }
  22612. },
  22613. backSfw: {
  22614. height: math.unit(5 + 7/12, "feet"),
  22615. weight: math.unit(120, "lb"),
  22616. name: "Back (SFW)",
  22617. image: {
  22618. source: "./media/characters/logan-grey/back-sfw.svg",
  22619. extra: 1880/1794,
  22620. bottom: 24/1904
  22621. }
  22622. },
  22623. hands: {
  22624. height: math.unit(0.84, "feet"),
  22625. name: "Hands",
  22626. image: {
  22627. source: "./media/characters/logan-grey/hands.svg"
  22628. }
  22629. },
  22630. paws: {
  22631. height: math.unit(0.72, "feet"),
  22632. name: "Paws",
  22633. image: {
  22634. source: "./media/characters/logan-grey/paws.svg"
  22635. }
  22636. },
  22637. cock: {
  22638. height: math.unit(1.45, "feet"),
  22639. name: "Cock",
  22640. image: {
  22641. source: "./media/characters/logan-grey/cock.svg"
  22642. }
  22643. },
  22644. cockAlt: {
  22645. height: math.unit(1.437, "feet"),
  22646. name: "Cock (alt)",
  22647. image: {
  22648. source: "./media/characters/logan-grey/cock-alt.svg"
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Normal",
  22655. height: math.unit(5 + 8 / 12, "feet")
  22656. },
  22657. {
  22658. name: "The 500 Foot Femboy",
  22659. height: math.unit(500, "feet"),
  22660. default: true
  22661. },
  22662. {
  22663. name: "Megmacro",
  22664. height: math.unit(20, "miles")
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(8 + 2 / 12, "feet"),
  22673. weight: math.unit(275, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/draganta/front.svg",
  22677. extra: 1177 / 1135,
  22678. bottom: 33.46 / 1212.1
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(8 + 6 / 12, "feet"),
  22686. default: true
  22687. },
  22688. {
  22689. name: "Macro",
  22690. height: math.unit(150, "feet")
  22691. },
  22692. {
  22693. name: "Megamacro",
  22694. height: math.unit(1000, "miles")
  22695. },
  22696. ]
  22697. ))
  22698. characterMakers.push(() => makeCharacter(
  22699. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22700. {
  22701. front: {
  22702. height: math.unit(1.72, "m"),
  22703. weight: math.unit(80, "lb"),
  22704. name: "Front",
  22705. image: {
  22706. source: "./media/characters/voski/front.svg",
  22707. extra: 2076.22 / 2022.4,
  22708. bottom: 102.7 / 2177.3866
  22709. }
  22710. },
  22711. frontNsfw: {
  22712. height: math.unit(1.72, "m"),
  22713. weight: math.unit(80, "lb"),
  22714. name: "Front (NSFW)",
  22715. image: {
  22716. source: "./media/characters/voski/front-nsfw.svg",
  22717. extra: 2076.22 / 2022.4,
  22718. bottom: 102.7 / 2177.3866
  22719. }
  22720. },
  22721. back: {
  22722. height: math.unit(1.72, "m"),
  22723. weight: math.unit(80, "lb"),
  22724. name: "Back",
  22725. image: {
  22726. source: "./media/characters/voski/back.svg",
  22727. extra: 2104 / 2051,
  22728. bottom: 10.45 / 2113.63
  22729. }
  22730. },
  22731. },
  22732. [
  22733. {
  22734. name: "Normal",
  22735. height: math.unit(1.72, "m")
  22736. },
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(55, "m"),
  22740. default: true
  22741. },
  22742. {
  22743. name: "Macro+",
  22744. height: math.unit(300, "m")
  22745. },
  22746. {
  22747. name: "Macro++",
  22748. height: math.unit(700, "m")
  22749. },
  22750. {
  22751. name: "Macro+++",
  22752. height: math.unit(4500, "m")
  22753. },
  22754. {
  22755. name: "Macro++++",
  22756. height: math.unit(45, "km")
  22757. },
  22758. {
  22759. name: "Macro+++++",
  22760. height: math.unit(1220, "km")
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(2.3, "m"),
  22769. weight: math.unit(304, "kg"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/icowom-lee/front.svg",
  22773. extra: 985 / 955,
  22774. bottom: 25.4 / 1012
  22775. }
  22776. },
  22777. fronttentacles: {
  22778. height: math.unit(2.3, "m"),
  22779. weight: math.unit(304, "kg"),
  22780. name: "Front-tentacles",
  22781. image: {
  22782. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22783. extra: 985 / 955,
  22784. bottom: 25.4 / 1012
  22785. }
  22786. },
  22787. back: {
  22788. height: math.unit(2.3, "m"),
  22789. weight: math.unit(304, "kg"),
  22790. name: "Back",
  22791. image: {
  22792. source: "./media/characters/icowom-lee/back.svg",
  22793. extra: 975 / 954,
  22794. bottom: 9.5 / 985
  22795. }
  22796. },
  22797. backtentacles: {
  22798. height: math.unit(2.3, "m"),
  22799. weight: math.unit(304, "kg"),
  22800. name: "Back-tentacles",
  22801. image: {
  22802. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22803. extra: 975 / 954,
  22804. bottom: 9.5 / 985
  22805. }
  22806. },
  22807. frontDressed: {
  22808. height: math.unit(2.3, "m"),
  22809. weight: math.unit(304, "kg"),
  22810. name: "Front (Dressed)",
  22811. image: {
  22812. source: "./media/characters/icowom-lee/front-dressed.svg",
  22813. extra: 3076 / 2933,
  22814. bottom: 51.4 / 3125.1889
  22815. }
  22816. },
  22817. rump: {
  22818. height: math.unit(0.776, "meters"),
  22819. name: "Rump",
  22820. image: {
  22821. source: "./media/characters/icowom-lee/rump.svg"
  22822. }
  22823. },
  22824. genitals: {
  22825. height: math.unit(0.78, "meters"),
  22826. name: "Genitals",
  22827. image: {
  22828. source: "./media/characters/icowom-lee/genitals.svg"
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(2.3, "meters"),
  22836. default: true
  22837. },
  22838. {
  22839. name: "Macro",
  22840. height: math.unit(94, "meters"),
  22841. default: true
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(22, "meters"),
  22850. weight: math.unit(21000, "kg"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/shock-diamond/front.svg",
  22854. extra: 2204 / 2053,
  22855. bottom: 65 / 2239.47
  22856. }
  22857. },
  22858. frontNude: {
  22859. height: math.unit(22, "meters"),
  22860. weight: math.unit(21000, "kg"),
  22861. name: "Front (Nude)",
  22862. image: {
  22863. source: "./media/characters/shock-diamond/front-nude.svg",
  22864. extra: 2514 / 2285,
  22865. bottom: 13 / 2527.56
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Normal",
  22872. height: math.unit(3, "meters")
  22873. },
  22874. {
  22875. name: "Macro",
  22876. height: math.unit(22, "meters"),
  22877. default: true
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22883. {
  22884. front: {
  22885. height: math.unit(5 + 4 / 12, "feet"),
  22886. weight: math.unit(120, "lb"),
  22887. name: "Front",
  22888. image: {
  22889. source: "./media/characters/rory/front.svg",
  22890. extra: 1318/1241,
  22891. bottom: 42/1360
  22892. }
  22893. },
  22894. back: {
  22895. height: math.unit(5 + 4 / 12, "feet"),
  22896. weight: math.unit(120, "lb"),
  22897. name: "Back",
  22898. image: {
  22899. source: "./media/characters/rory/back.svg",
  22900. extra: 1318/1241,
  22901. bottom: 42/1360
  22902. }
  22903. },
  22904. butt: {
  22905. height: math.unit(1.74, "feet"),
  22906. name: "Butt",
  22907. image: {
  22908. source: "./media/characters/rory/butt.svg"
  22909. }
  22910. },
  22911. dick: {
  22912. height: math.unit(1.02, "feet"),
  22913. name: "Dick",
  22914. image: {
  22915. source: "./media/characters/rory/dick.svg"
  22916. }
  22917. },
  22918. paws: {
  22919. height: math.unit(1, "feet"),
  22920. name: "Paws",
  22921. image: {
  22922. source: "./media/characters/rory/paws.svg"
  22923. }
  22924. },
  22925. frontAlt: {
  22926. height: math.unit(5 + 4 / 12, "feet"),
  22927. weight: math.unit(120, "lb"),
  22928. name: "Front (Alt)",
  22929. image: {
  22930. source: "./media/characters/rory/front-alt.svg",
  22931. extra: 589 / 556,
  22932. bottom: 45.7 / 635.76
  22933. }
  22934. },
  22935. frontAltNude: {
  22936. height: math.unit(5 + 4 / 12, "feet"),
  22937. weight: math.unit(120, "lb"),
  22938. name: "Front (Alt, Nude)",
  22939. image: {
  22940. source: "./media/characters/rory/front-alt-nude.svg",
  22941. extra: 589 / 556,
  22942. bottom: 45.7 / 635.76
  22943. }
  22944. },
  22945. side: {
  22946. height: math.unit(5 + 4 / 12, "feet"),
  22947. weight: math.unit(120, "lb"),
  22948. name: "Side",
  22949. image: {
  22950. source: "./media/characters/rory/side.svg",
  22951. extra: 597 / 564,
  22952. bottom: 55 / 653
  22953. }
  22954. },
  22955. backAlt: {
  22956. height: math.unit(5 + 4 / 12, "feet"),
  22957. weight: math.unit(120, "lb"),
  22958. name: "Back (Alt)",
  22959. image: {
  22960. source: "./media/characters/rory/back-alt.svg",
  22961. extra: 620 / 585,
  22962. bottom: 8.86 / 630.43
  22963. }
  22964. },
  22965. dickAlt: {
  22966. height: math.unit(0.86, "feet"),
  22967. name: "Dick (Alt)",
  22968. image: {
  22969. source: "./media/characters/rory/dick-alt.svg"
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(5 + 4 / 12, "feet"),
  22977. default: true
  22978. },
  22979. {
  22980. name: "Macro",
  22981. height: math.unit(100, "feet")
  22982. },
  22983. {
  22984. name: "Macro+",
  22985. height: math.unit(140, "feet")
  22986. },
  22987. {
  22988. name: "Macro++",
  22989. height: math.unit(300, "feet")
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(5 + 9 / 12, "feet"),
  22998. weight: math.unit(190, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/sprisk/front.svg",
  23002. extra: 1225 / 1180,
  23003. bottom: 42.7 / 1266.4
  23004. }
  23005. },
  23006. frontNsfw: {
  23007. height: math.unit(5 + 9 / 12, "feet"),
  23008. weight: math.unit(190, "lb"),
  23009. name: "Front (NSFW)",
  23010. image: {
  23011. source: "./media/characters/sprisk/front-nsfw.svg",
  23012. extra: 1225 / 1180,
  23013. bottom: 42.7 / 1266.4
  23014. }
  23015. },
  23016. back: {
  23017. height: math.unit(5 + 9 / 12, "feet"),
  23018. weight: math.unit(190, "lb"),
  23019. name: "Back",
  23020. image: {
  23021. source: "./media/characters/sprisk/back.svg",
  23022. extra: 1247 / 1200,
  23023. bottom: 5.6 / 1253.04
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Tiny",
  23030. height: math.unit(2, "inches")
  23031. },
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(5 + 9 / 12, "feet"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Mini Macro",
  23039. height: math.unit(18, "feet")
  23040. },
  23041. {
  23042. name: "Macro",
  23043. height: math.unit(100, "feet")
  23044. },
  23045. {
  23046. name: "MACRO",
  23047. height: math.unit(50, "miles")
  23048. },
  23049. {
  23050. name: "M A C R O",
  23051. height: math.unit(300, "miles")
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23057. {
  23058. side: {
  23059. height: math.unit(15.6, "meters"),
  23060. weight: math.unit(700000, "kg"),
  23061. name: "Side",
  23062. image: {
  23063. source: "./media/characters/bunsen/side.svg",
  23064. extra: 1644 / 358
  23065. }
  23066. },
  23067. foot: {
  23068. height: math.unit(1.611 * 1644 / 358, "meter"),
  23069. name: "Foot",
  23070. image: {
  23071. source: "./media/characters/bunsen/foot.svg"
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Small",
  23078. height: math.unit(10, "feet")
  23079. },
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(15.6, "meters"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(4 + 11 / 12, "feet"),
  23092. weight: math.unit(140, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/sesh/front.svg",
  23096. extra: 3420 / 3231,
  23097. bottom: 72 / 3949.5
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Normal",
  23104. height: math.unit(4 + 11 / 12, "feet")
  23105. },
  23106. {
  23107. name: "Grown",
  23108. height: math.unit(15, "feet"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Macro",
  23113. height: math.unit(1500, "feet")
  23114. },
  23115. {
  23116. name: "Megamacro",
  23117. height: math.unit(30, "miles")
  23118. },
  23119. {
  23120. name: "Continental",
  23121. height: math.unit(3000, "miles")
  23122. },
  23123. {
  23124. name: "Gravity Mass",
  23125. height: math.unit(300000, "miles")
  23126. },
  23127. {
  23128. name: "Planet Buster",
  23129. height: math.unit(30000000, "miles")
  23130. },
  23131. {
  23132. name: "Big",
  23133. height: math.unit(3000000000, "miles")
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23139. {
  23140. front: {
  23141. height: math.unit(9, "feet"),
  23142. weight: math.unit(350, "lb"),
  23143. name: "Front",
  23144. image: {
  23145. source: "./media/characters/pepper/front.svg",
  23146. extra: 1448 / 1312,
  23147. bottom: 9.4 / 1457.88
  23148. }
  23149. },
  23150. back: {
  23151. height: math.unit(9, "feet"),
  23152. weight: math.unit(350, "lb"),
  23153. name: "Back",
  23154. image: {
  23155. source: "./media/characters/pepper/back.svg",
  23156. extra: 1423 / 1300,
  23157. bottom: 4.6 / 1429
  23158. }
  23159. },
  23160. maw: {
  23161. height: math.unit(0.932, "feet"),
  23162. name: "Maw",
  23163. image: {
  23164. source: "./media/characters/pepper/maw.svg"
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Normal",
  23171. height: math.unit(9, "feet"),
  23172. default: true
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(6, "feet"),
  23181. weight: math.unit(150, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/maelstrom/front.svg",
  23185. extra: 2100 / 1883,
  23186. bottom: 94 / 2196.7
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Less Kaiju",
  23193. height: math.unit(200, "feet")
  23194. },
  23195. {
  23196. name: "Kaiju",
  23197. height: math.unit(400, "feet"),
  23198. default: true
  23199. },
  23200. {
  23201. name: "Kaiju-er",
  23202. height: math.unit(600, "feet")
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23208. {
  23209. front: {
  23210. height: math.unit(6 + 5 / 12, "feet"),
  23211. weight: math.unit(180, "lb"),
  23212. name: "Front",
  23213. image: {
  23214. source: "./media/characters/lexir/front.svg",
  23215. extra: 180 / 172,
  23216. bottom: 12 / 192
  23217. }
  23218. },
  23219. back: {
  23220. height: math.unit(6 + 5 / 12, "feet"),
  23221. weight: math.unit(180, "lb"),
  23222. name: "Back",
  23223. image: {
  23224. source: "./media/characters/lexir/back.svg",
  23225. extra: 183.84 / 175.5,
  23226. bottom: 3.1 / 187
  23227. }
  23228. },
  23229. },
  23230. [
  23231. {
  23232. name: "Very Smal",
  23233. height: math.unit(1, "nm")
  23234. },
  23235. {
  23236. name: "Normal",
  23237. height: math.unit(6 + 5 / 12, "feet"),
  23238. default: true
  23239. },
  23240. {
  23241. name: "Macro",
  23242. height: math.unit(1, "mile")
  23243. },
  23244. {
  23245. name: "Megamacro",
  23246. height: math.unit(50, "miles")
  23247. },
  23248. ]
  23249. ))
  23250. characterMakers.push(() => makeCharacter(
  23251. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23252. {
  23253. front: {
  23254. height: math.unit(1.5, "meters"),
  23255. weight: math.unit(100, "lb"),
  23256. name: "Front",
  23257. image: {
  23258. source: "./media/characters/maksio/front.svg",
  23259. extra: 1549 / 1531,
  23260. bottom: 123.7 / 1674.5429
  23261. }
  23262. },
  23263. back: {
  23264. height: math.unit(1.5, "meters"),
  23265. weight: math.unit(100, "lb"),
  23266. name: "Back",
  23267. image: {
  23268. source: "./media/characters/maksio/back.svg",
  23269. extra: 1541 / 1509,
  23270. bottom: 97 / 1639
  23271. }
  23272. },
  23273. hand: {
  23274. height: math.unit(0.621, "feet"),
  23275. name: "Hand",
  23276. image: {
  23277. source: "./media/characters/maksio/hand.svg"
  23278. }
  23279. },
  23280. foot: {
  23281. height: math.unit(1.611, "feet"),
  23282. name: "Foot",
  23283. image: {
  23284. source: "./media/characters/maksio/foot.svg"
  23285. }
  23286. },
  23287. },
  23288. [
  23289. {
  23290. name: "Shrunken",
  23291. height: math.unit(10, "cm")
  23292. },
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(150, "cm"),
  23296. default: true
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23302. {
  23303. front: {
  23304. height: math.unit(100, "feet"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/erza-bear/front.svg",
  23308. extra: 2449 / 2390,
  23309. bottom: 46 / 2494
  23310. }
  23311. },
  23312. back: {
  23313. height: math.unit(100, "feet"),
  23314. name: "Back",
  23315. image: {
  23316. source: "./media/characters/erza-bear/back.svg",
  23317. extra: 2489 / 2430,
  23318. bottom: 85.4 / 2480
  23319. }
  23320. },
  23321. tail: {
  23322. height: math.unit(42, "feet"),
  23323. name: "Tail",
  23324. image: {
  23325. source: "./media/characters/erza-bear/tail.svg"
  23326. }
  23327. },
  23328. tongue: {
  23329. height: math.unit(8, "feet"),
  23330. name: "Tongue",
  23331. image: {
  23332. source: "./media/characters/erza-bear/tongue.svg"
  23333. }
  23334. },
  23335. dick: {
  23336. height: math.unit(10.5, "feet"),
  23337. name: "Dick",
  23338. image: {
  23339. source: "./media/characters/erza-bear/dick.svg"
  23340. }
  23341. },
  23342. dickVertical: {
  23343. height: math.unit(16.9, "feet"),
  23344. name: "Dick (Vertical)",
  23345. image: {
  23346. source: "./media/characters/erza-bear/dick-vertical.svg"
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Macro",
  23353. height: math.unit(100, "feet"),
  23354. default: true
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23360. {
  23361. front: {
  23362. height: math.unit(172, "cm"),
  23363. weight: math.unit(73, "kg"),
  23364. name: "Front",
  23365. image: {
  23366. source: "./media/characters/violet-flor/front.svg",
  23367. extra: 1530 / 1442,
  23368. bottom: 61.9 / 1588.8
  23369. }
  23370. },
  23371. back: {
  23372. height: math.unit(180, "cm"),
  23373. weight: math.unit(73, "kg"),
  23374. name: "Back",
  23375. image: {
  23376. source: "./media/characters/violet-flor/back.svg",
  23377. extra: 1692 / 1630,
  23378. bottom: 20 / 1712
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(172, "cm"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(6, "feet"),
  23395. weight: math.unit(220, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/lynn-rhea/front.svg",
  23399. extra: 310 / 273
  23400. }
  23401. },
  23402. back: {
  23403. height: math.unit(6, "feet"),
  23404. weight: math.unit(220, "lb"),
  23405. name: "Back",
  23406. image: {
  23407. source: "./media/characters/lynn-rhea/back.svg",
  23408. extra: 310 / 273
  23409. }
  23410. },
  23411. dicks: {
  23412. height: math.unit(0.9, "feet"),
  23413. name: "Dicks",
  23414. image: {
  23415. source: "./media/characters/lynn-rhea/dicks.svg"
  23416. }
  23417. },
  23418. slit: {
  23419. height: math.unit(0.4, "feet"),
  23420. name: "Slit",
  23421. image: {
  23422. source: "./media/characters/lynn-rhea/slit.svg"
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Micro",
  23429. height: math.unit(1, "inch")
  23430. },
  23431. {
  23432. name: "Macro",
  23433. height: math.unit(60, "feet"),
  23434. default: true
  23435. },
  23436. {
  23437. name: "Megamacro",
  23438. height: math.unit(2, "miles")
  23439. },
  23440. {
  23441. name: "Gigamacro",
  23442. height: math.unit(3, "earths")
  23443. },
  23444. {
  23445. name: "Galactic",
  23446. height: math.unit(0.8, "galaxies")
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23452. {
  23453. front: {
  23454. height: math.unit(1600, "feet"),
  23455. weight: math.unit(85758785169, "kg"),
  23456. name: "Front",
  23457. image: {
  23458. source: "./media/characters/valathos/front.svg",
  23459. extra: 1451 / 1339
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Macro",
  23466. height: math.unit(1600, "feet"),
  23467. default: true
  23468. },
  23469. ]
  23470. ))
  23471. characterMakers.push(() => makeCharacter(
  23472. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23473. {
  23474. front: {
  23475. height: math.unit(7 + 5 / 12, "feet"),
  23476. weight: math.unit(300, "lb"),
  23477. name: "Front",
  23478. image: {
  23479. source: "./media/characters/azula/front.svg",
  23480. extra: 3208 / 2880,
  23481. bottom: 80.2 / 3277
  23482. }
  23483. },
  23484. back: {
  23485. height: math.unit(7 + 5 / 12, "feet"),
  23486. weight: math.unit(300, "lb"),
  23487. name: "Back",
  23488. image: {
  23489. source: "./media/characters/azula/back.svg",
  23490. extra: 3169 / 2822,
  23491. bottom: 150.6 / 3321
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Normal",
  23498. height: math.unit(7 + 5 / 12, "feet"),
  23499. default: true
  23500. },
  23501. {
  23502. name: "Big",
  23503. height: math.unit(20, "feet")
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(5 + 1 / 12, "feet"),
  23512. weight: math.unit(110, "lb"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/rupert/front.svg",
  23516. extra: 1549 / 1495,
  23517. bottom: 54.2 / 1604.4
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(5 + 1 / 12, "feet"),
  23525. default: true
  23526. },
  23527. ]
  23528. ))
  23529. characterMakers.push(() => makeCharacter(
  23530. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23531. {
  23532. front: {
  23533. height: math.unit(8 + 4 / 12, "feet"),
  23534. weight: math.unit(350, "lb"),
  23535. name: "Front",
  23536. image: {
  23537. source: "./media/characters/sheera-castellar/front.svg",
  23538. extra: 1957 / 1894,
  23539. bottom: 26.97 / 1975.017
  23540. }
  23541. },
  23542. side: {
  23543. height: math.unit(8 + 4 / 12, "feet"),
  23544. weight: math.unit(350, "lb"),
  23545. name: "Side",
  23546. image: {
  23547. source: "./media/characters/sheera-castellar/side.svg",
  23548. extra: 1957 / 1894
  23549. }
  23550. },
  23551. back: {
  23552. height: math.unit(8 + 4 / 12, "feet"),
  23553. weight: math.unit(350, "lb"),
  23554. name: "Back",
  23555. image: {
  23556. source: "./media/characters/sheera-castellar/back.svg",
  23557. extra: 1957 / 1894
  23558. }
  23559. },
  23560. angled: {
  23561. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23562. weight: math.unit(350, "lb"),
  23563. name: "Angled",
  23564. image: {
  23565. source: "./media/characters/sheera-castellar/angled.svg",
  23566. extra: 1807 / 1707,
  23567. bottom: 68 / 1875
  23568. }
  23569. },
  23570. genitals: {
  23571. height: math.unit(2.2, "feet"),
  23572. name: "Genitals",
  23573. image: {
  23574. source: "./media/characters/sheera-castellar/genitals.svg"
  23575. }
  23576. },
  23577. taur: {
  23578. height: math.unit(10 + 6/12, "feet"),
  23579. name: "Taur",
  23580. image: {
  23581. source: "./media/characters/sheera-castellar/taur.svg",
  23582. extra: 2017/1909,
  23583. bottom: 185/2202
  23584. }
  23585. },
  23586. },
  23587. [
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(8 + 4 / 12, "feet")
  23591. },
  23592. {
  23593. name: "Macro",
  23594. height: math.unit(150, "feet"),
  23595. default: true
  23596. },
  23597. {
  23598. name: "Macro+",
  23599. height: math.unit(800, "feet")
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(6, "feet"),
  23608. weight: math.unit(150, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/jaipur/front.svg",
  23612. extra: 3860 / 3731,
  23613. bottom: 287 / 4140
  23614. }
  23615. },
  23616. back: {
  23617. height: math.unit(6, "feet"),
  23618. weight: math.unit(150, "lb"),
  23619. name: "Back",
  23620. image: {
  23621. source: "./media/characters/jaipur/back.svg",
  23622. extra: 4060 / 3930,
  23623. bottom: 151 / 4200
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(1.85, "meters"),
  23631. default: true
  23632. },
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(150, "meters")
  23636. },
  23637. {
  23638. name: "Macro+",
  23639. height: math.unit(0.5, "miles")
  23640. },
  23641. {
  23642. name: "Macro++",
  23643. height: math.unit(2.5, "miles")
  23644. },
  23645. {
  23646. name: "Macro+++",
  23647. height: math.unit(12, "miles")
  23648. },
  23649. {
  23650. name: "Macro++++",
  23651. height: math.unit(120, "miles")
  23652. },
  23653. {
  23654. name: "Macro+++++",
  23655. height: math.unit(1200, "miles")
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(6, "feet"),
  23664. weight: math.unit(150, "lb"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/sheila-wolf/front.svg",
  23668. extra: 1931 / 1808,
  23669. bottom: 29.5 / 1960
  23670. }
  23671. },
  23672. dick: {
  23673. height: math.unit(1.464, "feet"),
  23674. name: "Dick",
  23675. image: {
  23676. source: "./media/characters/sheila-wolf/dick.svg"
  23677. }
  23678. },
  23679. muzzle: {
  23680. height: math.unit(0.513, "feet"),
  23681. name: "Muzzle",
  23682. image: {
  23683. source: "./media/characters/sheila-wolf/muzzle.svg"
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Macro",
  23690. height: math.unit(70, "feet"),
  23691. default: true
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(32, "meters"),
  23700. weight: math.unit(300000, "kg"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/almor/front.svg",
  23704. extra: 1408 / 1322,
  23705. bottom: 94.6 / 1506.5
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Macro",
  23712. height: math.unit(32, "meters"),
  23713. default: true
  23714. },
  23715. ]
  23716. ))
  23717. characterMakers.push(() => makeCharacter(
  23718. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23719. {
  23720. front: {
  23721. height: math.unit(7, "feet"),
  23722. weight: math.unit(200, "lb"),
  23723. name: "Front",
  23724. image: {
  23725. source: "./media/characters/silver/front.svg",
  23726. extra: 472.1 / 450.5,
  23727. bottom: 26.5 / 499.424
  23728. }
  23729. },
  23730. },
  23731. [
  23732. {
  23733. name: "Normal",
  23734. height: math.unit(7, "feet"),
  23735. default: true
  23736. },
  23737. {
  23738. name: "Macro",
  23739. height: math.unit(800, "feet")
  23740. },
  23741. {
  23742. name: "Megamacro",
  23743. height: math.unit(250, "miles")
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(6, "feet"),
  23752. weight: math.unit(150, "lb"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/pliskin/front.svg",
  23756. extra: 1469 / 1359,
  23757. bottom: 70 / 1540
  23758. }
  23759. },
  23760. },
  23761. [
  23762. {
  23763. name: "Micro",
  23764. height: math.unit(3, "inches")
  23765. },
  23766. {
  23767. name: "Normal",
  23768. height: math.unit(5 + 11 / 12, "feet"),
  23769. default: true
  23770. },
  23771. {
  23772. name: "Macro",
  23773. height: math.unit(120, "feet")
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(6, "feet"),
  23782. weight: math.unit(150, "lb"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/sammy/front.svg",
  23786. extra: 1193 / 1089,
  23787. bottom: 30.5 / 1226
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Macro",
  23794. height: math.unit(1700, "feet"),
  23795. default: true
  23796. },
  23797. {
  23798. name: "Examacro",
  23799. height: math.unit(2.5e9, "lightyears")
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(21, "meters"),
  23808. weight: math.unit(12, "tonnes"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/kuru/front.svg",
  23812. extra: 4301 / 3785,
  23813. bottom: 371.3 / 4691
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Macro",
  23820. height: math.unit(21, "meters"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23827. {
  23828. front: {
  23829. height: math.unit(23, "meters"),
  23830. weight: math.unit(12.2, "tonnes"),
  23831. name: "Front",
  23832. image: {
  23833. source: "./media/characters/rakka/front.svg",
  23834. extra: 4670 / 4169,
  23835. bottom: 301 / 4968.7
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Macro",
  23842. height: math.unit(23, "meters"),
  23843. default: true
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23849. {
  23850. front: {
  23851. height: math.unit(6, "feet"),
  23852. weight: math.unit(150, "lb"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/rhys-feline/front.svg",
  23856. extra: 2488 / 2308,
  23857. bottom: 35.67 / 2519.19
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Really Small",
  23864. height: math.unit(1, "nm")
  23865. },
  23866. {
  23867. name: "Micro",
  23868. height: math.unit(4, "inches")
  23869. },
  23870. {
  23871. name: "Normal",
  23872. height: math.unit(4 + 10 / 12, "feet"),
  23873. default: true
  23874. },
  23875. {
  23876. name: "Macro",
  23877. height: math.unit(100, "feet")
  23878. },
  23879. {
  23880. name: "Megamacto",
  23881. height: math.unit(50, "miles")
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23887. {
  23888. side: {
  23889. height: math.unit(30, "feet"),
  23890. weight: math.unit(35000, "kg"),
  23891. name: "Side",
  23892. image: {
  23893. source: "./media/characters/alydar/side.svg",
  23894. extra: 234 / 222,
  23895. bottom: 6.5 / 241
  23896. }
  23897. },
  23898. front: {
  23899. height: math.unit(30, "feet"),
  23900. weight: math.unit(35000, "kg"),
  23901. name: "Front",
  23902. image: {
  23903. source: "./media/characters/alydar/front.svg",
  23904. extra: 223.37 / 210.2,
  23905. bottom: 22.3 / 246.76
  23906. }
  23907. },
  23908. top: {
  23909. height: math.unit(64.54, "feet"),
  23910. weight: math.unit(35000, "kg"),
  23911. name: "Top",
  23912. image: {
  23913. source: "./media/characters/alydar/top.svg"
  23914. }
  23915. },
  23916. anthro: {
  23917. height: math.unit(30, "feet"),
  23918. weight: math.unit(9000, "kg"),
  23919. name: "Anthro",
  23920. image: {
  23921. source: "./media/characters/alydar/anthro.svg",
  23922. extra: 432 / 421,
  23923. bottom: 7.18 / 440
  23924. }
  23925. },
  23926. maw: {
  23927. height: math.unit(11.693, "feet"),
  23928. name: "Maw",
  23929. image: {
  23930. source: "./media/characters/alydar/maw.svg"
  23931. }
  23932. },
  23933. head: {
  23934. height: math.unit(11.693, "feet"),
  23935. name: "Head",
  23936. image: {
  23937. source: "./media/characters/alydar/head.svg"
  23938. }
  23939. },
  23940. headAlt: {
  23941. height: math.unit(12.861, "feet"),
  23942. name: "Head (Alt)",
  23943. image: {
  23944. source: "./media/characters/alydar/head-alt.svg"
  23945. }
  23946. },
  23947. wing: {
  23948. height: math.unit(20.712, "feet"),
  23949. name: "Wing",
  23950. image: {
  23951. source: "./media/characters/alydar/wing.svg"
  23952. }
  23953. },
  23954. wingFeather: {
  23955. height: math.unit(9.662, "feet"),
  23956. name: "Wing Feather",
  23957. image: {
  23958. source: "./media/characters/alydar/wing-feather.svg"
  23959. }
  23960. },
  23961. countourFeather: {
  23962. height: math.unit(4.154, "feet"),
  23963. name: "Contour Feather",
  23964. image: {
  23965. source: "./media/characters/alydar/contour-feather.svg"
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Diplomatic",
  23972. height: math.unit(13, "feet"),
  23973. default: true
  23974. },
  23975. {
  23976. name: "Small",
  23977. height: math.unit(30, "feet")
  23978. },
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(95, "feet"),
  23982. default: true
  23983. },
  23984. {
  23985. name: "Large",
  23986. height: math.unit(285, "feet")
  23987. },
  23988. {
  23989. name: "Incomprehensible",
  23990. height: math.unit(450, "megameters")
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23996. {
  23997. side: {
  23998. height: math.unit(11, "feet"),
  23999. weight: math.unit(1750, "kg"),
  24000. name: "Side",
  24001. image: {
  24002. source: "./media/characters/selicia/side.svg",
  24003. extra: 440 / 396,
  24004. bottom: 24.8 / 465.979
  24005. }
  24006. },
  24007. maw: {
  24008. height: math.unit(4.665, "feet"),
  24009. name: "Maw",
  24010. image: {
  24011. source: "./media/characters/selicia/maw.svg"
  24012. }
  24013. },
  24014. },
  24015. [
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(11, "feet"),
  24019. default: true
  24020. },
  24021. ]
  24022. ))
  24023. characterMakers.push(() => makeCharacter(
  24024. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24025. {
  24026. side: {
  24027. height: math.unit(2 + 6 / 12, "feet"),
  24028. weight: math.unit(30, "lb"),
  24029. name: "Side",
  24030. image: {
  24031. source: "./media/characters/layla/side.svg",
  24032. extra: 244 / 188,
  24033. bottom: 18.2 / 262.1
  24034. }
  24035. },
  24036. back: {
  24037. height: math.unit(2 + 6 / 12, "feet"),
  24038. weight: math.unit(30, "lb"),
  24039. name: "Back",
  24040. image: {
  24041. source: "./media/characters/layla/back.svg",
  24042. extra: 308 / 241.5,
  24043. bottom: 8.9 / 316.8
  24044. }
  24045. },
  24046. cumming: {
  24047. height: math.unit(2 + 6 / 12, "feet"),
  24048. weight: math.unit(30, "lb"),
  24049. name: "Cumming",
  24050. image: {
  24051. source: "./media/characters/layla/cumming.svg",
  24052. extra: 342 / 279,
  24053. bottom: 595 / 938
  24054. }
  24055. },
  24056. dickFlaccid: {
  24057. height: math.unit(2.595, "feet"),
  24058. name: "Flaccid Genitals",
  24059. image: {
  24060. source: "./media/characters/layla/dick-flaccid.svg"
  24061. }
  24062. },
  24063. dickErect: {
  24064. height: math.unit(2.359, "feet"),
  24065. name: "Erect Genitals",
  24066. image: {
  24067. source: "./media/characters/layla/dick-erect.svg"
  24068. }
  24069. },
  24070. dragon: {
  24071. height: math.unit(40, "feet"),
  24072. name: "Dragon",
  24073. image: {
  24074. source: "./media/characters/layla/dragon.svg",
  24075. extra: 610/535,
  24076. bottom: 367/977
  24077. }
  24078. },
  24079. taur: {
  24080. height: math.unit(30, "feet"),
  24081. name: "Taur",
  24082. image: {
  24083. source: "./media/characters/layla/taur.svg",
  24084. extra: 1268/1199,
  24085. bottom: 112/1380
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Micro",
  24092. height: math.unit(1, "inch")
  24093. },
  24094. {
  24095. name: "Small",
  24096. height: math.unit(1, "foot")
  24097. },
  24098. {
  24099. name: "Normal",
  24100. height: math.unit(2 + 6 / 12, "feet"),
  24101. default: true
  24102. },
  24103. {
  24104. name: "Macro",
  24105. height: math.unit(200, "feet")
  24106. },
  24107. {
  24108. name: "Megamacro",
  24109. height: math.unit(1000, "miles")
  24110. },
  24111. {
  24112. name: "Planetary",
  24113. height: math.unit(8000, "miles")
  24114. },
  24115. {
  24116. name: "True Layla",
  24117. height: math.unit(200000 * 7, "multiverses")
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24123. {
  24124. back: {
  24125. height: math.unit(10.5, "feet"),
  24126. weight: math.unit(800, "lb"),
  24127. name: "Back",
  24128. image: {
  24129. source: "./media/characters/knox/back.svg",
  24130. extra: 1486 / 1089,
  24131. bottom: 107 / 1601.4
  24132. }
  24133. },
  24134. side: {
  24135. height: math.unit(10.5, "feet"),
  24136. weight: math.unit(800, "lb"),
  24137. name: "Side",
  24138. image: {
  24139. source: "./media/characters/knox/side.svg",
  24140. extra: 244 / 218,
  24141. bottom: 14 / 260
  24142. }
  24143. },
  24144. },
  24145. [
  24146. {
  24147. name: "Compact",
  24148. height: math.unit(10.5, "feet"),
  24149. default: true
  24150. },
  24151. {
  24152. name: "Dynamax",
  24153. height: math.unit(210, "feet")
  24154. },
  24155. {
  24156. name: "Full Macro",
  24157. height: math.unit(850, "feet")
  24158. },
  24159. ]
  24160. ))
  24161. characterMakers.push(() => makeCharacter(
  24162. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24163. {
  24164. front: {
  24165. height: math.unit(28, "feet"),
  24166. weight: math.unit(10500, "lb"),
  24167. name: "Front",
  24168. image: {
  24169. source: "./media/characters/kayda/front.svg",
  24170. extra: 1536 / 1428,
  24171. bottom: 68.7 / 1603
  24172. }
  24173. },
  24174. back: {
  24175. height: math.unit(28, "feet"),
  24176. weight: math.unit(10500, "lb"),
  24177. name: "Back",
  24178. image: {
  24179. source: "./media/characters/kayda/back.svg",
  24180. extra: 1557 / 1464,
  24181. bottom: 39.5 / 1597.49
  24182. }
  24183. },
  24184. dick: {
  24185. height: math.unit(3.858, "feet"),
  24186. name: "Dick",
  24187. image: {
  24188. source: "./media/characters/kayda/dick.svg"
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Macro",
  24195. height: math.unit(28, "feet"),
  24196. default: true
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(10 + 11 / 12, "feet"),
  24205. weight: math.unit(1400, "lb"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/brian/front.svg",
  24209. extra: 737 / 692,
  24210. bottom: 55.4 / 785
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(10 + 11 / 12, "feet"),
  24218. default: true
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24224. {
  24225. front: {
  24226. height: math.unit(5 + 8 / 12, "feet"),
  24227. weight: math.unit(140, "lb"),
  24228. name: "Front",
  24229. image: {
  24230. source: "./media/characters/khemri/front.svg",
  24231. extra: 4780 / 4059,
  24232. bottom: 80.1 / 4859.25
  24233. }
  24234. },
  24235. },
  24236. [
  24237. {
  24238. name: "Micro",
  24239. height: math.unit(6, "inches")
  24240. },
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(5 + 8 / 12, "feet"),
  24244. default: true
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24250. {
  24251. front: {
  24252. height: math.unit(13, "feet"),
  24253. weight: math.unit(1700, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/felix-braveheart/front.svg",
  24257. extra: 1222 / 1157,
  24258. bottom: 53.2 / 1280
  24259. }
  24260. },
  24261. back: {
  24262. height: math.unit(13, "feet"),
  24263. weight: math.unit(1700, "lb"),
  24264. name: "Back",
  24265. image: {
  24266. source: "./media/characters/felix-braveheart/back.svg",
  24267. extra: 1277 / 1203,
  24268. bottom: 50.2 / 1327
  24269. }
  24270. },
  24271. feral: {
  24272. height: math.unit(6, "feet"),
  24273. weight: math.unit(400, "lb"),
  24274. name: "Feral",
  24275. image: {
  24276. source: "./media/characters/felix-braveheart/feral.svg",
  24277. extra: 682 / 625,
  24278. bottom: 6.9 / 688
  24279. }
  24280. },
  24281. },
  24282. [
  24283. {
  24284. name: "Normal",
  24285. height: math.unit(13, "feet"),
  24286. default: true
  24287. },
  24288. ]
  24289. ))
  24290. characterMakers.push(() => makeCharacter(
  24291. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24292. {
  24293. side: {
  24294. height: math.unit(5 + 11 / 12, "feet"),
  24295. weight: math.unit(1400, "lb"),
  24296. name: "Side",
  24297. image: {
  24298. source: "./media/characters/shadow-blade/side.svg",
  24299. extra: 1726 / 1267,
  24300. bottom: 58.4 / 1785
  24301. }
  24302. },
  24303. },
  24304. [
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(5 + 11 / 12, "feet"),
  24308. default: true
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24314. {
  24315. front: {
  24316. height: math.unit(1 + 6 / 12, "feet"),
  24317. weight: math.unit(25, "lb"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/karla-halldor/front.svg",
  24321. extra: 1459 / 1383,
  24322. bottom: 12 / 1472
  24323. }
  24324. },
  24325. },
  24326. [
  24327. {
  24328. name: "Normal",
  24329. height: math.unit(1 + 6 / 12, "feet"),
  24330. default: true
  24331. },
  24332. ]
  24333. ))
  24334. characterMakers.push(() => makeCharacter(
  24335. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24336. {
  24337. front: {
  24338. height: math.unit(6 + 2 / 12, "feet"),
  24339. weight: math.unit(160, "lb"),
  24340. name: "Front",
  24341. image: {
  24342. source: "./media/characters/ariam/front.svg",
  24343. extra: 1073/976,
  24344. bottom: 52/1125
  24345. }
  24346. },
  24347. back: {
  24348. height: math.unit(6 + 2/12, "feet"),
  24349. weight: math.unit(160, "lb"),
  24350. name: "Back",
  24351. image: {
  24352. source: "./media/characters/ariam/back.svg",
  24353. extra: 1103/1023,
  24354. bottom: 9/1112
  24355. }
  24356. },
  24357. dressed: {
  24358. height: math.unit(6 + 2/12, "feet"),
  24359. weight: math.unit(160, "lb"),
  24360. name: "Dressed",
  24361. image: {
  24362. source: "./media/characters/ariam/dressed.svg",
  24363. extra: 1099/1009,
  24364. bottom: 25/1124
  24365. }
  24366. },
  24367. squatting: {
  24368. height: math.unit(4.1, "feet"),
  24369. weight: math.unit(160, "lb"),
  24370. name: "Squatting",
  24371. image: {
  24372. source: "./media/characters/ariam/squatting.svg",
  24373. extra: 2617 / 2112,
  24374. bottom: 61.2 / 2681,
  24375. }
  24376. },
  24377. },
  24378. [
  24379. {
  24380. name: "Normal",
  24381. height: math.unit(6 + 2 / 12, "feet"),
  24382. default: true
  24383. },
  24384. {
  24385. name: "Normal+",
  24386. height: math.unit(4, "meters")
  24387. },
  24388. {
  24389. name: "Macro",
  24390. height: math.unit(50, "meters")
  24391. },
  24392. {
  24393. name: "Macro+",
  24394. height: math.unit(100, "meters")
  24395. },
  24396. {
  24397. name: "Megamacro",
  24398. height: math.unit(20, "km")
  24399. },
  24400. {
  24401. name: "Caretaker",
  24402. height: math.unit(444, "megameters")
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(1.67, "meters"),
  24411. weight: math.unit(140, "lb"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24415. extra: 438 / 410,
  24416. bottom: 0.75 / 439
  24417. }
  24418. },
  24419. },
  24420. [
  24421. {
  24422. name: "Shrunken",
  24423. height: math.unit(7.6, "cm")
  24424. },
  24425. {
  24426. name: "Human Scale",
  24427. height: math.unit(1.67, "meters")
  24428. },
  24429. {
  24430. name: "Wolxi Scale",
  24431. height: math.unit(36.7, "meters"),
  24432. default: true
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24438. {
  24439. front: {
  24440. height: math.unit(1.73, "meters"),
  24441. weight: math.unit(240, "lb"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/izue-two-mothers/front.svg",
  24445. extra: 469 / 437,
  24446. bottom: 1.24 / 470.6
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Shrunken",
  24453. height: math.unit(7.86, "cm")
  24454. },
  24455. {
  24456. name: "Human Scale",
  24457. height: math.unit(1.73, "meters")
  24458. },
  24459. {
  24460. name: "Wolxi Scale",
  24461. height: math.unit(38, "meters"),
  24462. default: true
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(1.55, "meters"),
  24471. weight: math.unit(120, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/teeku-love-shack/front.svg",
  24475. extra: 387 / 362,
  24476. bottom: 1.51 / 388
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Shrunken",
  24483. height: math.unit(7, "cm")
  24484. },
  24485. {
  24486. name: "Human Scale",
  24487. height: math.unit(1.55, "meters")
  24488. },
  24489. {
  24490. name: "Wolxi Scale",
  24491. height: math.unit(34.1, "meters"),
  24492. default: true
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(1.83, "meters"),
  24501. weight: math.unit(135, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/dejma-the-red/front.svg",
  24505. extra: 480 / 458,
  24506. bottom: 1.8 / 482
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Shrunken",
  24513. height: math.unit(8.3, "cm")
  24514. },
  24515. {
  24516. name: "Human Scale",
  24517. height: math.unit(1.83, "meters")
  24518. },
  24519. {
  24520. name: "Wolxi Scale",
  24521. height: math.unit(40, "meters"),
  24522. default: true
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(1.78, "meters"),
  24531. weight: math.unit(65, "kg"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/aki/front.svg",
  24535. extra: 452 / 415
  24536. }
  24537. },
  24538. frontNsfw: {
  24539. height: math.unit(1.78, "meters"),
  24540. weight: math.unit(65, "kg"),
  24541. name: "Front (NSFW)",
  24542. image: {
  24543. source: "./media/characters/aki/front-nsfw.svg",
  24544. extra: 452 / 415
  24545. }
  24546. },
  24547. back: {
  24548. height: math.unit(1.78, "meters"),
  24549. weight: math.unit(65, "kg"),
  24550. name: "Back",
  24551. image: {
  24552. source: "./media/characters/aki/back.svg",
  24553. extra: 452 / 415
  24554. }
  24555. },
  24556. rump: {
  24557. height: math.unit(2.05, "feet"),
  24558. name: "Rump",
  24559. image: {
  24560. source: "./media/characters/aki/rump.svg"
  24561. }
  24562. },
  24563. dick: {
  24564. height: math.unit(0.95, "feet"),
  24565. name: "Dick",
  24566. image: {
  24567. source: "./media/characters/aki/dick.svg"
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Micro",
  24574. height: math.unit(15, "cm")
  24575. },
  24576. {
  24577. name: "Normal",
  24578. height: math.unit(178, "cm"),
  24579. default: true
  24580. },
  24581. {
  24582. name: "Macro",
  24583. height: math.unit(214, "m")
  24584. },
  24585. {
  24586. name: "Macro+",
  24587. height: math.unit(534, "m")
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(5 + 5 / 12, "feet"),
  24596. weight: math.unit(120, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/ari/front.svg",
  24600. extra: 714.5 / 682,
  24601. bottom: 8 / 722.5
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5 + 5 / 12, "feet")
  24609. },
  24610. {
  24611. name: "Macro",
  24612. height: math.unit(100, "feet"),
  24613. default: true
  24614. },
  24615. {
  24616. name: "Megamacro",
  24617. height: math.unit(100, "miles")
  24618. },
  24619. {
  24620. name: "Gigamacro",
  24621. height: math.unit(80000, "miles")
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24627. {
  24628. side: {
  24629. height: math.unit(9, "feet"),
  24630. weight: math.unit(400, "kg"),
  24631. name: "Side",
  24632. image: {
  24633. source: "./media/characters/bolt/side.svg",
  24634. extra: 1126 / 896,
  24635. bottom: 60 / 1187.3,
  24636. }
  24637. },
  24638. },
  24639. [
  24640. {
  24641. name: "Micro",
  24642. height: math.unit(5, "inches")
  24643. },
  24644. {
  24645. name: "Normal",
  24646. height: math.unit(9, "feet"),
  24647. default: true
  24648. },
  24649. {
  24650. name: "Macro",
  24651. height: math.unit(700, "feet")
  24652. },
  24653. {
  24654. name: "Max Size",
  24655. height: math.unit(1.52e22, "yottameters")
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(4.53, "meters"),
  24664. weight: math.unit(3, "tons"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/draekon-sylviar/front.svg",
  24668. extra: 1228 / 1068,
  24669. bottom: 41 / 1270
  24670. }
  24671. },
  24672. tail: {
  24673. height: math.unit(1.772, "meter"),
  24674. name: "Tail",
  24675. image: {
  24676. source: "./media/characters/draekon-sylviar/tail.svg"
  24677. }
  24678. },
  24679. head: {
  24680. height: math.unit(1.331, "meter"),
  24681. name: "Head",
  24682. image: {
  24683. source: "./media/characters/draekon-sylviar/head.svg"
  24684. }
  24685. },
  24686. hand: {
  24687. height: math.unit(0.564, "meter"),
  24688. name: "Hand",
  24689. image: {
  24690. source: "./media/characters/draekon-sylviar/hand.svg"
  24691. }
  24692. },
  24693. foot: {
  24694. height: math.unit(0.621, "meter"),
  24695. name: "Foot",
  24696. image: {
  24697. source: "./media/characters/draekon-sylviar/foot.svg",
  24698. bottom: 32 / 324
  24699. }
  24700. },
  24701. dick: {
  24702. height: math.unit(61, "cm"),
  24703. name: "Dick",
  24704. image: {
  24705. source: "./media/characters/draekon-sylviar/dick.svg"
  24706. }
  24707. },
  24708. dickseparated: {
  24709. height: math.unit(61, "cm"),
  24710. name: "Dick-separated",
  24711. image: {
  24712. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Small",
  24719. height: math.unit(4.53 / 2, "meters"),
  24720. default: true
  24721. },
  24722. {
  24723. name: "Normal",
  24724. height: math.unit(4.53, "meters"),
  24725. default: true
  24726. },
  24727. {
  24728. name: "Large",
  24729. height: math.unit(4.53 * 2, "meters"),
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24735. {
  24736. front: {
  24737. height: math.unit(6 + 2 / 12, "feet"),
  24738. weight: math.unit(180, "lb"),
  24739. name: "Front",
  24740. image: {
  24741. source: "./media/characters/brawler/front.svg",
  24742. extra: 3301 / 3027,
  24743. bottom: 138 / 3439
  24744. }
  24745. },
  24746. },
  24747. [
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(6 + 2 / 12, "feet"),
  24751. default: true
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24757. {
  24758. front: {
  24759. height: math.unit(11, "feet"),
  24760. weight: math.unit(1000, "lb"),
  24761. name: "Front",
  24762. image: {
  24763. source: "./media/characters/alex/front.svg",
  24764. bottom: 44.5 / 620
  24765. }
  24766. },
  24767. },
  24768. [
  24769. {
  24770. name: "Micro",
  24771. height: math.unit(5, "inches")
  24772. },
  24773. {
  24774. name: "Normal",
  24775. height: math.unit(11, "feet"),
  24776. default: true
  24777. },
  24778. {
  24779. name: "Macro",
  24780. height: math.unit(9.5e9, "feet")
  24781. },
  24782. {
  24783. name: "Max Size",
  24784. height: math.unit(1.4e283, "yottameters")
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24790. {
  24791. female: {
  24792. height: math.unit(29.9, "m"),
  24793. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24794. name: "Female",
  24795. image: {
  24796. source: "./media/characters/zenari/female.svg",
  24797. extra: 3281.6 / 3217,
  24798. bottom: 72.2 / 3353
  24799. }
  24800. },
  24801. male: {
  24802. height: math.unit(27.7, "m"),
  24803. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24804. name: "Male",
  24805. image: {
  24806. source: "./media/characters/zenari/male.svg",
  24807. extra: 3008 / 2991,
  24808. bottom: 54.6 / 3069
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Macro",
  24815. height: math.unit(29.7, "meters"),
  24816. default: true
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24822. {
  24823. female: {
  24824. height: math.unit(23.8, "m"),
  24825. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24826. name: "Female",
  24827. image: {
  24828. source: "./media/characters/mactarian/female.svg",
  24829. extra: 2662 / 2569,
  24830. bottom: 73 / 2736
  24831. }
  24832. },
  24833. male: {
  24834. height: math.unit(23.8, "m"),
  24835. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24836. name: "Male",
  24837. image: {
  24838. source: "./media/characters/mactarian/male.svg",
  24839. extra: 2673 / 2600,
  24840. bottom: 76 / 2750
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Macro",
  24847. height: math.unit(23.8, "meters"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24854. {
  24855. female: {
  24856. height: math.unit(19.3, "m"),
  24857. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24858. name: "Female",
  24859. image: {
  24860. source: "./media/characters/umok/female.svg",
  24861. extra: 2186 / 2078,
  24862. bottom: 87 / 2277
  24863. }
  24864. },
  24865. male: {
  24866. height: math.unit(19.5, "m"),
  24867. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24868. name: "Male",
  24869. image: {
  24870. source: "./media/characters/umok/male.svg",
  24871. extra: 2233 / 2140,
  24872. bottom: 24.4 / 2258
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Macro",
  24879. height: math.unit(19.3, "meters"),
  24880. default: true
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24886. {
  24887. female: {
  24888. height: math.unit(26.15, "m"),
  24889. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24890. name: "Female",
  24891. image: {
  24892. source: "./media/characters/joraxian/female.svg",
  24893. extra: 2912 / 2824,
  24894. bottom: 36 / 2956
  24895. }
  24896. },
  24897. male: {
  24898. height: math.unit(25.4, "m"),
  24899. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24900. name: "Male",
  24901. image: {
  24902. source: "./media/characters/joraxian/male.svg",
  24903. extra: 2877 / 2721,
  24904. bottom: 82 / 2967
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Macro",
  24911. height: math.unit(26.15, "meters"),
  24912. default: true
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24918. {
  24919. female: {
  24920. height: math.unit(21.6, "m"),
  24921. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24922. name: "Female",
  24923. image: {
  24924. source: "./media/characters/sthara/female.svg",
  24925. extra: 2516 / 2347,
  24926. bottom: 21.5 / 2537
  24927. }
  24928. },
  24929. male: {
  24930. height: math.unit(24, "m"),
  24931. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24932. name: "Male",
  24933. image: {
  24934. source: "./media/characters/sthara/male.svg",
  24935. extra: 2732 / 2607,
  24936. bottom: 23 / 2732
  24937. }
  24938. },
  24939. },
  24940. [
  24941. {
  24942. name: "Macro",
  24943. height: math.unit(21.6, "meters"),
  24944. default: true
  24945. },
  24946. ]
  24947. ))
  24948. characterMakers.push(() => makeCharacter(
  24949. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24950. {
  24951. front: {
  24952. height: math.unit(6 + 4 / 12, "feet"),
  24953. weight: math.unit(175, "lb"),
  24954. name: "Front",
  24955. image: {
  24956. source: "./media/characters/luka-bryzant/front.svg",
  24957. extra: 311 / 289,
  24958. bottom: 4 / 315
  24959. }
  24960. },
  24961. back: {
  24962. height: math.unit(6 + 4 / 12, "feet"),
  24963. weight: math.unit(175, "lb"),
  24964. name: "Back",
  24965. image: {
  24966. source: "./media/characters/luka-bryzant/back.svg",
  24967. extra: 311 / 289,
  24968. bottom: 3.8 / 313.7
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Micro",
  24975. height: math.unit(10, "inches")
  24976. },
  24977. {
  24978. name: "Normal",
  24979. height: math.unit(6 + 4 / 12, "feet"),
  24980. default: true
  24981. },
  24982. {
  24983. name: "Large",
  24984. height: math.unit(12, "feet")
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(5 + 7 / 12, "feet"),
  24993. weight: math.unit(185, "lb"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/aman-aquila/front.svg",
  24997. extra: 1013 / 976,
  24998. bottom: 45.6 / 1057
  24999. }
  25000. },
  25001. side: {
  25002. height: math.unit(5 + 7 / 12, "feet"),
  25003. weight: math.unit(185, "lb"),
  25004. name: "Side",
  25005. image: {
  25006. source: "./media/characters/aman-aquila/side.svg",
  25007. extra: 1054 / 1011,
  25008. bottom: 15 / 1070
  25009. }
  25010. },
  25011. back: {
  25012. height: math.unit(5 + 7 / 12, "feet"),
  25013. weight: math.unit(185, "lb"),
  25014. name: "Back",
  25015. image: {
  25016. source: "./media/characters/aman-aquila/back.svg",
  25017. extra: 1026 / 970,
  25018. bottom: 12 / 1039
  25019. }
  25020. },
  25021. head: {
  25022. height: math.unit(1.211, "feet"),
  25023. name: "Head",
  25024. image: {
  25025. source: "./media/characters/aman-aquila/head.svg",
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Minimicro",
  25032. height: math.unit(0.057, "inches")
  25033. },
  25034. {
  25035. name: "Micro",
  25036. height: math.unit(7, "inches")
  25037. },
  25038. {
  25039. name: "Mini",
  25040. height: math.unit(3 + 7 / 12, "feet")
  25041. },
  25042. {
  25043. name: "Normal",
  25044. height: math.unit(5 + 7 / 12, "feet"),
  25045. default: true
  25046. },
  25047. {
  25048. name: "Macro",
  25049. height: math.unit(157 + 7 / 12, "feet")
  25050. },
  25051. {
  25052. name: "Megamacro",
  25053. height: math.unit(1557 + 7 / 12, "feet")
  25054. },
  25055. {
  25056. name: "Gigamacro",
  25057. height: math.unit(15557 + 7 / 12, "feet")
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(3 + 2 / 12, "inches"),
  25066. weight: math.unit(0.3, "ounces"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/hiphae/front.svg",
  25070. extra: 1931 / 1683,
  25071. bottom: 24 / 1955
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Normal",
  25078. height: math.unit(3 + 1 / 2, "inches"),
  25079. default: true
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(5 + 10 / 12, "feet"),
  25088. weight: math.unit(165, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/nicky/front.svg",
  25092. extra: 3144 / 2886,
  25093. bottom: 45.6 / 3192
  25094. }
  25095. },
  25096. back: {
  25097. height: math.unit(5 + 10 / 12, "feet"),
  25098. weight: math.unit(165, "lb"),
  25099. name: "Back",
  25100. image: {
  25101. source: "./media/characters/nicky/back.svg",
  25102. extra: 3055 / 2804,
  25103. bottom: 28.4 / 3087
  25104. }
  25105. },
  25106. frontclothed: {
  25107. height: math.unit(5 + 10 / 12, "feet"),
  25108. weight: math.unit(165, "lb"),
  25109. name: "Front-clothed",
  25110. image: {
  25111. source: "./media/characters/nicky/front-clothed.svg",
  25112. extra: 3184.9 / 2926.9,
  25113. bottom: 86.5 / 3239.9
  25114. }
  25115. },
  25116. foot: {
  25117. height: math.unit(1.16, "feet"),
  25118. name: "Foot",
  25119. image: {
  25120. source: "./media/characters/nicky/foot.svg"
  25121. }
  25122. },
  25123. feet: {
  25124. height: math.unit(1.34, "feet"),
  25125. name: "Feet",
  25126. image: {
  25127. source: "./media/characters/nicky/feet.svg"
  25128. }
  25129. },
  25130. maw: {
  25131. height: math.unit(0.9, "feet"),
  25132. name: "Maw",
  25133. image: {
  25134. source: "./media/characters/nicky/maw.svg"
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(5 + 10 / 12, "feet"),
  25142. default: true
  25143. },
  25144. {
  25145. name: "Macro",
  25146. height: math.unit(60, "feet")
  25147. },
  25148. {
  25149. name: "Megamacro",
  25150. height: math.unit(1, "mile")
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25156. {
  25157. side: {
  25158. height: math.unit(10, "feet"),
  25159. weight: math.unit(600, "lb"),
  25160. name: "Side",
  25161. image: {
  25162. source: "./media/characters/blair/side.svg",
  25163. bottom: 16.6 / 475,
  25164. extra: 458 / 431
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Micro",
  25171. height: math.unit(8, "inches")
  25172. },
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(10, "feet"),
  25176. default: true
  25177. },
  25178. {
  25179. name: "Macro",
  25180. height: math.unit(180, "feet")
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(5 + 4 / 12, "feet"),
  25189. weight: math.unit(125, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/fisher/front.svg",
  25193. extra: 444 / 390,
  25194. bottom: 2 / 444.8
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Micro",
  25201. height: math.unit(4, "inches")
  25202. },
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(5 + 4 / 12, "feet"),
  25206. default: true
  25207. },
  25208. {
  25209. name: "Macro",
  25210. height: math.unit(100, "feet")
  25211. },
  25212. ]
  25213. ))
  25214. characterMakers.push(() => makeCharacter(
  25215. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25216. {
  25217. front: {
  25218. height: math.unit(6.71, "feet"),
  25219. weight: math.unit(200, "lb"),
  25220. capacity: math.unit(1000000, "people"),
  25221. name: "Front",
  25222. image: {
  25223. source: "./media/characters/gliss/front.svg",
  25224. extra: 2347 / 2231,
  25225. bottom: 113 / 2462
  25226. }
  25227. },
  25228. hammerspaceSize: {
  25229. height: math.unit(6.71 * 717, "feet"),
  25230. weight: math.unit(200, "lb"),
  25231. capacity: math.unit(1000000, "people"),
  25232. name: "Hammerspace Size",
  25233. image: {
  25234. source: "./media/characters/gliss/front.svg",
  25235. extra: 2347 / 2231,
  25236. bottom: 113 / 2462
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(6.71, "feet"),
  25244. default: true
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25250. {
  25251. side: {
  25252. height: math.unit(1.44, "m"),
  25253. weight: math.unit(80, "kg"),
  25254. name: "Side",
  25255. image: {
  25256. source: "./media/characters/dune-anderson/side.svg",
  25257. bottom: 49 / 1426
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Wolf-sized",
  25264. height: math.unit(1.44, "meters")
  25265. },
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(5.05, "meters"),
  25269. default: true
  25270. },
  25271. {
  25272. name: "Big",
  25273. height: math.unit(14.4, "meters")
  25274. },
  25275. {
  25276. name: "Huge",
  25277. height: math.unit(144, "meters")
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25283. {
  25284. front: {
  25285. height: math.unit(7, "feet"),
  25286. weight: math.unit(425, "lb"),
  25287. name: "Front",
  25288. image: {
  25289. source: "./media/characters/hind/front.svg",
  25290. extra: 2091 / 1860,
  25291. bottom: 129 / 2220
  25292. }
  25293. },
  25294. back: {
  25295. height: math.unit(7, "feet"),
  25296. weight: math.unit(425, "lb"),
  25297. name: "Back",
  25298. image: {
  25299. source: "./media/characters/hind/back.svg",
  25300. extra: 2091 / 1860,
  25301. bottom: 24.6 / 2309
  25302. }
  25303. },
  25304. tail: {
  25305. height: math.unit(2.8, "feet"),
  25306. name: "Tail",
  25307. image: {
  25308. source: "./media/characters/hind/tail.svg"
  25309. }
  25310. },
  25311. head: {
  25312. height: math.unit(2.55, "feet"),
  25313. name: "Head",
  25314. image: {
  25315. source: "./media/characters/hind/head.svg"
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "XS",
  25322. height: math.unit(0.7, "feet")
  25323. },
  25324. {
  25325. name: "Normal",
  25326. height: math.unit(7, "feet"),
  25327. default: true
  25328. },
  25329. {
  25330. name: "XL",
  25331. height: math.unit(70, "feet")
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25337. {
  25338. front: {
  25339. height: math.unit(2.1, "meters"),
  25340. weight: math.unit(150, "lb"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/tharquench-sizestealer/front.svg",
  25344. extra: 1605/1470,
  25345. bottom: 36/1641
  25346. }
  25347. },
  25348. frontAlt: {
  25349. height: math.unit(2.1, "meters"),
  25350. weight: math.unit(150, "lb"),
  25351. name: "Front (Alt)",
  25352. image: {
  25353. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25354. extra: 2318 / 2063,
  25355. bottom: 93.4 / 2410
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Nano",
  25362. height: math.unit(1, "mm")
  25363. },
  25364. {
  25365. name: "Micro",
  25366. height: math.unit(1, "cm")
  25367. },
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(2.1, "meters"),
  25371. default: true
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(7 + 5 / 12, "feet"),
  25380. weight: math.unit(357, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/solex-draconov/front.svg",
  25384. extra: 1993 / 1865,
  25385. bottom: 117 / 2111
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Natural Height",
  25392. height: math.unit(7 + 5 / 12, "feet"),
  25393. default: true
  25394. },
  25395. {
  25396. name: "Macro",
  25397. height: math.unit(350, "feet")
  25398. },
  25399. {
  25400. name: "Macro+",
  25401. height: math.unit(1000, "feet")
  25402. },
  25403. {
  25404. name: "Megamacro",
  25405. height: math.unit(20, "km")
  25406. },
  25407. {
  25408. name: "Megamacro+",
  25409. height: math.unit(1000, "km")
  25410. },
  25411. {
  25412. name: "Gigamacro",
  25413. height: math.unit(2.5, "Gm")
  25414. },
  25415. {
  25416. name: "Teramacro",
  25417. height: math.unit(15, "Tm")
  25418. },
  25419. {
  25420. name: "Galactic",
  25421. height: math.unit(30, "Zm")
  25422. },
  25423. {
  25424. name: "Universal",
  25425. height: math.unit(21000, "Ym")
  25426. },
  25427. {
  25428. name: "Omniversal",
  25429. height: math.unit(9.861e50, "Ym")
  25430. },
  25431. {
  25432. name: "Existential",
  25433. height: math.unit(1e300, "meters")
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25439. {
  25440. side: {
  25441. height: math.unit(25, "feet"),
  25442. weight: math.unit(90000, "lb"),
  25443. name: "Side",
  25444. image: {
  25445. source: "./media/characters/mandarax/side.svg",
  25446. extra: 614 / 332,
  25447. bottom: 55 / 630
  25448. }
  25449. },
  25450. head: {
  25451. height: math.unit(11.4, "feet"),
  25452. name: "Head",
  25453. image: {
  25454. source: "./media/characters/mandarax/head.svg"
  25455. }
  25456. },
  25457. belly: {
  25458. height: math.unit(33, "feet"),
  25459. name: "Belly",
  25460. capacity: math.unit(500, "people"),
  25461. image: {
  25462. source: "./media/characters/mandarax/belly.svg"
  25463. }
  25464. },
  25465. dick: {
  25466. height: math.unit(8.46, "feet"),
  25467. name: "Dick",
  25468. image: {
  25469. source: "./media/characters/mandarax/dick.svg"
  25470. }
  25471. },
  25472. top: {
  25473. height: math.unit(28, "meters"),
  25474. name: "Top",
  25475. image: {
  25476. source: "./media/characters/mandarax/top.svg"
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(25, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(5, "feet"),
  25493. weight: math.unit(90, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/pixil/front.svg",
  25497. extra: 2000 / 1618,
  25498. bottom: 12.3 / 2011
  25499. }
  25500. },
  25501. },
  25502. [
  25503. {
  25504. name: "Normal",
  25505. height: math.unit(5, "feet"),
  25506. default: true
  25507. },
  25508. {
  25509. name: "Megamacro",
  25510. height: math.unit(10, "miles"),
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25516. {
  25517. front: {
  25518. height: math.unit(7 + 2 / 12, "feet"),
  25519. weight: math.unit(200, "lb"),
  25520. name: "Front",
  25521. image: {
  25522. source: "./media/characters/angel/front.svg",
  25523. extra: 1830 / 1737,
  25524. bottom: 22.6 / 1854,
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(7 + 2 / 12, "feet"),
  25532. default: true
  25533. },
  25534. {
  25535. name: "Macro",
  25536. height: math.unit(1000, "feet")
  25537. },
  25538. {
  25539. name: "Megamacro",
  25540. height: math.unit(2, "miles")
  25541. },
  25542. {
  25543. name: "Gigamacro",
  25544. height: math.unit(20, "earths")
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(5, "feet"),
  25553. weight: math.unit(180, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/mekana/front.svg",
  25557. extra: 1671 / 1605,
  25558. bottom: 3.5 / 1691
  25559. }
  25560. },
  25561. side: {
  25562. height: math.unit(5, "feet"),
  25563. weight: math.unit(180, "lb"),
  25564. name: "Side",
  25565. image: {
  25566. source: "./media/characters/mekana/side.svg",
  25567. extra: 1671 / 1605,
  25568. bottom: 3.5 / 1691
  25569. }
  25570. },
  25571. back: {
  25572. height: math.unit(5, "feet"),
  25573. weight: math.unit(180, "lb"),
  25574. name: "Back",
  25575. image: {
  25576. source: "./media/characters/mekana/back.svg",
  25577. extra: 1671 / 1605,
  25578. bottom: 3.5 / 1691
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Normal",
  25585. height: math.unit(5, "feet"),
  25586. default: true
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25592. {
  25593. front: {
  25594. height: math.unit(4 + 6 / 12, "feet"),
  25595. weight: math.unit(80, "lb"),
  25596. name: "Front",
  25597. image: {
  25598. source: "./media/characters/pixie/front.svg",
  25599. extra: 1924 / 1825,
  25600. bottom: 22.4 / 1946
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(4 + 6 / 12, "feet"),
  25608. default: true
  25609. },
  25610. {
  25611. name: "Macro",
  25612. height: math.unit(40, "feet")
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25618. {
  25619. front: {
  25620. height: math.unit(2.1, "meters"),
  25621. weight: math.unit(200, "lb"),
  25622. name: "Front",
  25623. image: {
  25624. source: "./media/characters/the-lascivious/front.svg",
  25625. extra: 1 / 0.893,
  25626. bottom: 3.5 / 573.7
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Human Scale",
  25633. height: math.unit(2.1, "meters")
  25634. },
  25635. {
  25636. name: "Wolxi Scale",
  25637. height: math.unit(46.2, "m"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Boinker of Buildings",
  25642. height: math.unit(10, "km")
  25643. },
  25644. {
  25645. name: "Shagger of Skyscrapers",
  25646. height: math.unit(40, "km")
  25647. },
  25648. {
  25649. name: "Banger of Boroughs",
  25650. height: math.unit(4000, "km")
  25651. },
  25652. {
  25653. name: "Screwer of States",
  25654. height: math.unit(100000, "km")
  25655. },
  25656. {
  25657. name: "Pounder of Planets",
  25658. height: math.unit(2000000, "km")
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(6, "feet"),
  25667. weight: math.unit(150, "lb"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/aj/front.svg",
  25671. extra: 2039 / 1562,
  25672. bottom: 40 / 2079
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(11 + 6 / 12, "feet"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Megamacro",
  25684. height: math.unit(60, "megameters")
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25690. {
  25691. side: {
  25692. height: math.unit(31 + 8 / 12, "feet"),
  25693. weight: math.unit(75000, "kg"),
  25694. name: "Side",
  25695. image: {
  25696. source: "./media/characters/koros/side.svg",
  25697. extra: 1442 / 1297,
  25698. bottom: 122.7 / 1562
  25699. }
  25700. },
  25701. dicksKingsCrown: {
  25702. height: math.unit(6, "feet"),
  25703. name: "Dicks (King's Crown)",
  25704. image: {
  25705. source: "./media/characters/koros/dicks-kings-crown.svg"
  25706. }
  25707. },
  25708. dicksTailSet: {
  25709. height: math.unit(3, "feet"),
  25710. name: "Dicks (Tail Set)",
  25711. image: {
  25712. source: "./media/characters/koros/dicks-tail-set.svg"
  25713. }
  25714. },
  25715. dickCumming: {
  25716. height: math.unit(7.98, "feet"),
  25717. name: "Dick (Cumming)",
  25718. image: {
  25719. source: "./media/characters/koros/dick-cumming.svg"
  25720. }
  25721. },
  25722. dicksBack: {
  25723. height: math.unit(5.9, "feet"),
  25724. name: "Dicks (Back)",
  25725. image: {
  25726. source: "./media/characters/koros/dicks-back.svg"
  25727. }
  25728. },
  25729. dicksFront: {
  25730. height: math.unit(3.72, "feet"),
  25731. name: "Dicks (Front)",
  25732. image: {
  25733. source: "./media/characters/koros/dicks-front.svg"
  25734. }
  25735. },
  25736. dicksPeeking: {
  25737. height: math.unit(3.0, "feet"),
  25738. name: "Dicks (Peeking)",
  25739. image: {
  25740. source: "./media/characters/koros/dicks-peeking.svg"
  25741. }
  25742. },
  25743. eye: {
  25744. height: math.unit(1.7, "feet"),
  25745. name: "Eye",
  25746. image: {
  25747. source: "./media/characters/koros/eye.svg"
  25748. }
  25749. },
  25750. headFront: {
  25751. height: math.unit(11.69, "feet"),
  25752. name: "Head (Front)",
  25753. image: {
  25754. source: "./media/characters/koros/head-front.svg"
  25755. }
  25756. },
  25757. headSide: {
  25758. height: math.unit(14, "feet"),
  25759. name: "Head (Side)",
  25760. image: {
  25761. source: "./media/characters/koros/head-side.svg"
  25762. }
  25763. },
  25764. leg: {
  25765. height: math.unit(17, "feet"),
  25766. name: "Leg",
  25767. image: {
  25768. source: "./media/characters/koros/leg.svg"
  25769. }
  25770. },
  25771. mawSide: {
  25772. height: math.unit(12.8, "feet"),
  25773. name: "Maw (Side)",
  25774. image: {
  25775. source: "./media/characters/koros/maw-side.svg"
  25776. }
  25777. },
  25778. mawSpitting: {
  25779. height: math.unit(17, "feet"),
  25780. name: "Maw (Spitting)",
  25781. image: {
  25782. source: "./media/characters/koros/maw-spitting.svg"
  25783. }
  25784. },
  25785. slit: {
  25786. height: math.unit(2.8, "feet"),
  25787. name: "Slit",
  25788. image: {
  25789. source: "./media/characters/koros/slit.svg"
  25790. }
  25791. },
  25792. stomach: {
  25793. height: math.unit(6.8, "feet"),
  25794. capacity: math.unit(20, "people"),
  25795. name: "Stomach",
  25796. image: {
  25797. source: "./media/characters/koros/stomach.svg"
  25798. }
  25799. },
  25800. wingspanBottom: {
  25801. height: math.unit(114, "feet"),
  25802. name: "Wingspan (Bottom)",
  25803. image: {
  25804. source: "./media/characters/koros/wingspan-bottom.svg"
  25805. }
  25806. },
  25807. wingspanTop: {
  25808. height: math.unit(104, "feet"),
  25809. name: "Wingspan (Top)",
  25810. image: {
  25811. source: "./media/characters/koros/wingspan-top.svg"
  25812. }
  25813. },
  25814. },
  25815. [
  25816. {
  25817. name: "Normal",
  25818. height: math.unit(31 + 8 / 12, "feet"),
  25819. default: true
  25820. },
  25821. ]
  25822. ))
  25823. characterMakers.push(() => makeCharacter(
  25824. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25825. {
  25826. front: {
  25827. height: math.unit(18 + 5 / 12, "feet"),
  25828. weight: math.unit(3750, "kg"),
  25829. name: "Front",
  25830. image: {
  25831. source: "./media/characters/vexx/front.svg",
  25832. extra: 426 / 396,
  25833. bottom: 31.5 / 458
  25834. }
  25835. },
  25836. maw: {
  25837. height: math.unit(6, "feet"),
  25838. name: "Maw",
  25839. image: {
  25840. source: "./media/characters/vexx/maw.svg"
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(18 + 5 / 12, "feet"),
  25848. default: true
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25854. {
  25855. front: {
  25856. height: math.unit(17 + 6 / 12, "feet"),
  25857. weight: math.unit(150, "lb"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/baadra/front.svg",
  25861. extra: 3137 / 2890,
  25862. bottom: 168.4 / 3305
  25863. }
  25864. },
  25865. back: {
  25866. height: math.unit(17 + 6 / 12, "feet"),
  25867. weight: math.unit(150, "lb"),
  25868. name: "Back",
  25869. image: {
  25870. source: "./media/characters/baadra/back.svg",
  25871. extra: 3142 / 2890,
  25872. bottom: 220 / 3371
  25873. }
  25874. },
  25875. head: {
  25876. height: math.unit(5.45, "feet"),
  25877. name: "Head",
  25878. image: {
  25879. source: "./media/characters/baadra/head.svg"
  25880. }
  25881. },
  25882. headAngry: {
  25883. height: math.unit(4.95, "feet"),
  25884. name: "Head (Angry)",
  25885. image: {
  25886. source: "./media/characters/baadra/head-angry.svg"
  25887. }
  25888. },
  25889. headOpen: {
  25890. height: math.unit(6, "feet"),
  25891. name: "Head (Open)",
  25892. image: {
  25893. source: "./media/characters/baadra/head-open.svg"
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Normal",
  25900. height: math.unit(17 + 6 / 12, "feet"),
  25901. default: true
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25907. {
  25908. front: {
  25909. height: math.unit(7 + 3 / 12, "feet"),
  25910. weight: math.unit(180, "lb"),
  25911. name: "Front",
  25912. image: {
  25913. source: "./media/characters/juri/front.svg",
  25914. extra: 1401 / 1237,
  25915. bottom: 18.5 / 1418
  25916. }
  25917. },
  25918. side: {
  25919. height: math.unit(7 + 3 / 12, "feet"),
  25920. weight: math.unit(180, "lb"),
  25921. name: "Side",
  25922. image: {
  25923. source: "./media/characters/juri/side.svg",
  25924. extra: 1424 / 1242,
  25925. bottom: 18.5 / 1447
  25926. }
  25927. },
  25928. sitting: {
  25929. height: math.unit(6, "feet"),
  25930. weight: math.unit(180, "lb"),
  25931. name: "Sitting",
  25932. image: {
  25933. source: "./media/characters/juri/sitting.svg",
  25934. extra: 1270 / 1143,
  25935. bottom: 100 / 1343
  25936. }
  25937. },
  25938. back: {
  25939. height: math.unit(7 + 3 / 12, "feet"),
  25940. weight: math.unit(180, "lb"),
  25941. name: "Back",
  25942. image: {
  25943. source: "./media/characters/juri/back.svg",
  25944. extra: 1377 / 1240,
  25945. bottom: 23.7 / 1405
  25946. }
  25947. },
  25948. maw: {
  25949. height: math.unit(2.8, "feet"),
  25950. name: "Maw",
  25951. image: {
  25952. source: "./media/characters/juri/maw.svg"
  25953. }
  25954. },
  25955. stomach: {
  25956. height: math.unit(0.89, "feet"),
  25957. capacity: math.unit(4, "liters"),
  25958. name: "Stomach",
  25959. image: {
  25960. source: "./media/characters/juri/stomach.svg"
  25961. }
  25962. },
  25963. },
  25964. [
  25965. {
  25966. name: "Normal",
  25967. height: math.unit(7 + 3 / 12, "feet"),
  25968. default: true
  25969. },
  25970. ]
  25971. ))
  25972. characterMakers.push(() => makeCharacter(
  25973. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25974. {
  25975. fox: {
  25976. height: math.unit(5 + 6 / 12, "feet"),
  25977. weight: math.unit(140, "lb"),
  25978. name: "Fox",
  25979. image: {
  25980. source: "./media/characters/maxene-sita/fox.svg",
  25981. extra: 146 / 138,
  25982. bottom: 2.1 / 148.19
  25983. }
  25984. },
  25985. foxLaying: {
  25986. height: math.unit(1.70, "feet"),
  25987. weight: math.unit(140, "lb"),
  25988. name: "Fox (Laying)",
  25989. image: {
  25990. source: "./media/characters/maxene-sita/fox-laying.svg",
  25991. extra: 910 / 572,
  25992. bottom: 71 / 981
  25993. }
  25994. },
  25995. kitsune: {
  25996. height: math.unit(10, "feet"),
  25997. weight: math.unit(800, "lb"),
  25998. name: "Kitsune",
  25999. image: {
  26000. source: "./media/characters/maxene-sita/kitsune.svg",
  26001. extra: 185 / 176,
  26002. bottom: 4.7 / 189.9
  26003. }
  26004. },
  26005. hellhound: {
  26006. height: math.unit(10, "feet"),
  26007. weight: math.unit(700, "lb"),
  26008. name: "Hellhound",
  26009. image: {
  26010. source: "./media/characters/maxene-sita/hellhound.svg",
  26011. extra: 1600 / 1545,
  26012. bottom: 81 / 1681
  26013. }
  26014. },
  26015. },
  26016. [
  26017. {
  26018. name: "Normal",
  26019. height: math.unit(5 + 6 / 12, "feet"),
  26020. default: true
  26021. },
  26022. ]
  26023. ))
  26024. characterMakers.push(() => makeCharacter(
  26025. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26026. {
  26027. front: {
  26028. height: math.unit(3 + 4 / 12, "feet"),
  26029. weight: math.unit(70, "lb"),
  26030. name: "Front",
  26031. image: {
  26032. source: "./media/characters/maia/front.svg",
  26033. extra: 227 / 219.5,
  26034. bottom: 40 / 267
  26035. }
  26036. },
  26037. back: {
  26038. height: math.unit(3 + 4 / 12, "feet"),
  26039. weight: math.unit(70, "lb"),
  26040. name: "Back",
  26041. image: {
  26042. source: "./media/characters/maia/back.svg",
  26043. extra: 237 / 225
  26044. }
  26045. },
  26046. },
  26047. [
  26048. {
  26049. name: "Normal",
  26050. height: math.unit(3 + 4 / 12, "feet"),
  26051. default: true
  26052. },
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(5 + 10 / 12, "feet"),
  26060. weight: math.unit(197, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/jabaro/front.svg",
  26064. extra: 225 / 216,
  26065. bottom: 5.06 / 230
  26066. }
  26067. },
  26068. back: {
  26069. height: math.unit(5 + 10 / 12, "feet"),
  26070. weight: math.unit(197, "lb"),
  26071. name: "Back",
  26072. image: {
  26073. source: "./media/characters/jabaro/back.svg",
  26074. extra: 225 / 219,
  26075. bottom: 1.9 / 227
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Normal",
  26082. height: math.unit(5 + 10 / 12, "feet"),
  26083. default: true
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(5 + 8 / 12, "feet"),
  26092. weight: math.unit(139, "lb"),
  26093. name: "Front",
  26094. image: {
  26095. source: "./media/characters/risa/front.svg",
  26096. extra: 270 / 260,
  26097. bottom: 11.2 / 282
  26098. }
  26099. },
  26100. back: {
  26101. height: math.unit(5 + 8 / 12, "feet"),
  26102. weight: math.unit(139, "lb"),
  26103. name: "Back",
  26104. image: {
  26105. source: "./media/characters/risa/back.svg",
  26106. extra: 264 / 255,
  26107. bottom: 4 / 268
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(5 + 8 / 12, "feet"),
  26115. default: true
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26121. {
  26122. front: {
  26123. height: math.unit(2 + 11 / 12, "feet"),
  26124. weight: math.unit(30, "lb"),
  26125. name: "Front",
  26126. image: {
  26127. source: "./media/characters/weatley/front.svg",
  26128. bottom: 10.7 / 414,
  26129. extra: 403.5 / 362
  26130. }
  26131. },
  26132. back: {
  26133. height: math.unit(2 + 11 / 12, "feet"),
  26134. weight: math.unit(30, "lb"),
  26135. name: "Back",
  26136. image: {
  26137. source: "./media/characters/weatley/back.svg",
  26138. bottom: 10.7 / 414,
  26139. extra: 403.5 / 362
  26140. }
  26141. },
  26142. },
  26143. [
  26144. {
  26145. name: "Normal",
  26146. height: math.unit(2 + 11 / 12, "feet"),
  26147. default: true
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26153. {
  26154. front: {
  26155. height: math.unit(5 + 2 / 12, "feet"),
  26156. weight: math.unit(50, "kg"),
  26157. name: "Front",
  26158. image: {
  26159. source: "./media/characters/mercury-crescent/front.svg",
  26160. extra: 1088 / 1033,
  26161. bottom: 18.9 / 1109
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(5 + 2 / 12, "feet"),
  26169. default: true
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(2, "feet"),
  26178. weight: math.unit(15, "kg"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/diamond-jones/front.svg",
  26182. extra: 727/723,
  26183. bottom: 46/773
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(2, "feet"),
  26191. default: true
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26197. {
  26198. front: {
  26199. height: math.unit(3, "feet"),
  26200. weight: math.unit(30, "kg"),
  26201. name: "Front",
  26202. image: {
  26203. source: "./media/characters/sweet-bit/front.svg",
  26204. extra: 675 / 567,
  26205. bottom: 27.7 / 703
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(3, "feet"),
  26213. default: true
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26219. {
  26220. side: {
  26221. height: math.unit(9.178, "feet"),
  26222. weight: math.unit(500, "lb"),
  26223. name: "Side",
  26224. image: {
  26225. source: "./media/characters/umbrazen/side.svg",
  26226. extra: 1730 / 1473,
  26227. bottom: 34.6 / 1765
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(9.178, "feet"),
  26235. default: true
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(10, "feet"),
  26244. weight: math.unit(750, "lb"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/arlist/front.svg",
  26248. extra: 961 / 778,
  26249. bottom: 6.2 / 986
  26250. }
  26251. },
  26252. },
  26253. [
  26254. {
  26255. name: "Normal",
  26256. height: math.unit(10, "feet"),
  26257. default: true
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26263. {
  26264. front: {
  26265. height: math.unit(5 + 1 / 12, "feet"),
  26266. weight: math.unit(110, "lb"),
  26267. name: "Front",
  26268. image: {
  26269. source: "./media/characters/aradel/front.svg",
  26270. extra: 324 / 303,
  26271. bottom: 3.6 / 329.4
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(5 + 1 / 12, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(3 + 8 / 12, "feet"),
  26288. weight: math.unit(50, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/serryn/front.svg",
  26292. extra: 1792 / 1656,
  26293. bottom: 43.5 / 1840
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(3 + 8 / 12, "feet"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26307. {
  26308. front: {
  26309. height: math.unit(7 + 10 / 12, "feet"),
  26310. weight: math.unit(255, "lb"),
  26311. name: "Front",
  26312. image: {
  26313. source: "./media/characters/xavier-thyme/front.svg",
  26314. extra: 3733 / 3642,
  26315. bottom: 131 / 3869
  26316. }
  26317. },
  26318. frontRaven: {
  26319. height: math.unit(7 + 10 / 12, "feet"),
  26320. weight: math.unit(255, "lb"),
  26321. name: "Front (Raven)",
  26322. image: {
  26323. source: "./media/characters/xavier-thyme/front-raven.svg",
  26324. extra: 4385 / 3642,
  26325. bottom: 131 / 4517
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Normal",
  26332. height: math.unit(7 + 10 / 12, "feet"),
  26333. default: true
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26339. {
  26340. front: {
  26341. height: math.unit(1.6, "m"),
  26342. weight: math.unit(50, "kg"),
  26343. name: "Front",
  26344. image: {
  26345. source: "./media/characters/kiki/front.svg",
  26346. extra: 4682 / 3610,
  26347. bottom: 115 / 4777
  26348. }
  26349. },
  26350. },
  26351. [
  26352. {
  26353. name: "Normal",
  26354. height: math.unit(1.6, "meters"),
  26355. default: true
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(50, "m"),
  26364. weight: math.unit(500, "tonnes"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/ryoko/front.svg",
  26368. extra: 4632 / 3926,
  26369. bottom: 193 / 4823
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(50, "meters"),
  26377. default: true
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26383. {
  26384. front: {
  26385. height: math.unit(30, "m"),
  26386. weight: math.unit(22, "tonnes"),
  26387. name: "Front",
  26388. image: {
  26389. source: "./media/characters/elio/front.svg",
  26390. extra: 4582 / 3720,
  26391. bottom: 236 / 4828
  26392. }
  26393. },
  26394. },
  26395. [
  26396. {
  26397. name: "Normal",
  26398. height: math.unit(30, "meters"),
  26399. default: true
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26405. {
  26406. front: {
  26407. height: math.unit(6 + 3 / 12, "feet"),
  26408. weight: math.unit(120, "lb"),
  26409. name: "Front",
  26410. image: {
  26411. source: "./media/characters/azura/front.svg",
  26412. extra: 1149 / 1135,
  26413. bottom: 45 / 1194
  26414. }
  26415. },
  26416. frontClothed: {
  26417. height: math.unit(6 + 3 / 12, "feet"),
  26418. weight: math.unit(120, "lb"),
  26419. name: "Front (Clothed)",
  26420. image: {
  26421. source: "./media/characters/azura/front-clothed.svg",
  26422. extra: 1149 / 1135,
  26423. bottom: 45 / 1194
  26424. }
  26425. },
  26426. },
  26427. [
  26428. {
  26429. name: "Normal",
  26430. height: math.unit(6 + 3 / 12, "feet"),
  26431. default: true
  26432. },
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(20 + 6 / 12, "feet")
  26436. },
  26437. {
  26438. name: "Megamacro",
  26439. height: math.unit(12, "miles")
  26440. },
  26441. {
  26442. name: "Gigamacro",
  26443. height: math.unit(10000, "miles")
  26444. },
  26445. {
  26446. name: "Teramacro",
  26447. height: math.unit(900000, "miles")
  26448. },
  26449. ]
  26450. ))
  26451. characterMakers.push(() => makeCharacter(
  26452. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26453. {
  26454. front: {
  26455. height: math.unit(12, "feet"),
  26456. weight: math.unit(1, "ton"),
  26457. capacity: math.unit(660000, "gallons"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/zeus/front.svg",
  26461. extra: 5005 / 4717,
  26462. bottom: 363 / 5388
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(12, "feet")
  26470. },
  26471. {
  26472. name: "Preferred Size",
  26473. height: math.unit(0.5, "miles"),
  26474. default: true
  26475. },
  26476. {
  26477. name: "Giga Horse",
  26478. height: math.unit(300, "miles")
  26479. },
  26480. {
  26481. name: "Riding Planets",
  26482. height: math.unit(30, "megameters")
  26483. },
  26484. {
  26485. name: "Cosmic Giant",
  26486. height: math.unit(3, "zettameters")
  26487. },
  26488. {
  26489. name: "Breeding God",
  26490. height: math.unit(9.92e22, "yottameters")
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26496. {
  26497. side: {
  26498. height: math.unit(9, "feet"),
  26499. weight: math.unit(1500, "kg"),
  26500. name: "Side",
  26501. image: {
  26502. source: "./media/characters/fang/side.svg",
  26503. extra: 924 / 866,
  26504. bottom: 47.5 / 972.3
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Normal",
  26511. height: math.unit(9, "feet"),
  26512. default: true
  26513. },
  26514. {
  26515. name: "Macro",
  26516. height: math.unit(75 + 6 / 12, "feet")
  26517. },
  26518. {
  26519. name: "Teramacro",
  26520. height: math.unit(50000, "miles")
  26521. },
  26522. ]
  26523. ))
  26524. characterMakers.push(() => makeCharacter(
  26525. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26526. {
  26527. front: {
  26528. height: math.unit(10, "feet"),
  26529. weight: math.unit(2, "tons"),
  26530. name: "Front",
  26531. image: {
  26532. source: "./media/characters/rekhit/front.svg",
  26533. extra: 2796 / 2590,
  26534. bottom: 225 / 3022
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Normal",
  26541. height: math.unit(10, "feet"),
  26542. default: true
  26543. },
  26544. {
  26545. name: "Macro",
  26546. height: math.unit(500, "feet")
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26552. {
  26553. front: {
  26554. height: math.unit(7 + 6.451 / 12, "feet"),
  26555. weight: math.unit(310, "lb"),
  26556. name: "Front",
  26557. image: {
  26558. source: "./media/characters/dahlia-verrick/front.svg",
  26559. extra: 1488 / 1365,
  26560. bottom: 6.2 / 1495
  26561. }
  26562. },
  26563. back: {
  26564. height: math.unit(7 + 6.451 / 12, "feet"),
  26565. weight: math.unit(310, "lb"),
  26566. name: "Back",
  26567. image: {
  26568. source: "./media/characters/dahlia-verrick/back.svg",
  26569. extra: 1472 / 1351,
  26570. bottom: 5.28 / 1477
  26571. }
  26572. },
  26573. frontBusiness: {
  26574. height: math.unit(7 + 6.451 / 12, "feet"),
  26575. weight: math.unit(200, "lb"),
  26576. name: "Front (Business)",
  26577. image: {
  26578. source: "./media/characters/dahlia-verrick/front-business.svg",
  26579. extra: 1478 / 1381,
  26580. bottom: 5.5 / 1484
  26581. }
  26582. },
  26583. frontCasual: {
  26584. height: math.unit(7 + 6.451 / 12, "feet"),
  26585. weight: math.unit(200, "lb"),
  26586. name: "Front (Casual)",
  26587. image: {
  26588. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26589. extra: 1478 / 1381,
  26590. bottom: 5.5 / 1484
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Travel-Sized",
  26597. height: math.unit(7.45, "inches")
  26598. },
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(7 + 6.451 / 12, "feet"),
  26602. default: true
  26603. },
  26604. {
  26605. name: "Hitting the Town",
  26606. height: math.unit(37 + 8 / 12, "feet")
  26607. },
  26608. {
  26609. name: "Stomp in the Suburbs",
  26610. height: math.unit(964 + 9.728 / 12, "feet")
  26611. },
  26612. {
  26613. name: "Sit on the City",
  26614. height: math.unit(61747 + 10.592 / 12, "feet")
  26615. },
  26616. {
  26617. name: "Glomp the Globe",
  26618. height: math.unit(252919327 + 4.832 / 12, "feet")
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26624. {
  26625. front: {
  26626. height: math.unit(6 + 4 / 12, "feet"),
  26627. weight: math.unit(320, "lb"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/balina-mahigan/front.svg",
  26631. extra: 447 / 428,
  26632. bottom: 18 / 466
  26633. }
  26634. },
  26635. back: {
  26636. height: math.unit(6 + 4 / 12, "feet"),
  26637. weight: math.unit(320, "lb"),
  26638. name: "Back",
  26639. image: {
  26640. source: "./media/characters/balina-mahigan/back.svg",
  26641. extra: 445 / 428,
  26642. bottom: 4.07 / 448
  26643. }
  26644. },
  26645. arm: {
  26646. height: math.unit(1.88, "feet"),
  26647. name: "Arm",
  26648. image: {
  26649. source: "./media/characters/balina-mahigan/arm.svg"
  26650. }
  26651. },
  26652. backPort: {
  26653. height: math.unit(0.685, "feet"),
  26654. name: "Back Port",
  26655. image: {
  26656. source: "./media/characters/balina-mahigan/back-port.svg"
  26657. }
  26658. },
  26659. hoofpaw: {
  26660. height: math.unit(1.41, "feet"),
  26661. name: "Hoofpaw",
  26662. image: {
  26663. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26664. }
  26665. },
  26666. leftHandBack: {
  26667. height: math.unit(0.938, "feet"),
  26668. name: "Left Hand (Back)",
  26669. image: {
  26670. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26671. }
  26672. },
  26673. leftHandFront: {
  26674. height: math.unit(0.938, "feet"),
  26675. name: "Left Hand (Front)",
  26676. image: {
  26677. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26678. }
  26679. },
  26680. rightHandBack: {
  26681. height: math.unit(0.95, "feet"),
  26682. name: "Right Hand (Back)",
  26683. image: {
  26684. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26685. }
  26686. },
  26687. rightHandFront: {
  26688. height: math.unit(0.95, "feet"),
  26689. name: "Right Hand (Front)",
  26690. image: {
  26691. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Normal",
  26698. height: math.unit(6 + 4 / 12, "feet"),
  26699. default: true
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26705. {
  26706. front: {
  26707. height: math.unit(6, "feet"),
  26708. weight: math.unit(320, "lb"),
  26709. name: "Front",
  26710. image: {
  26711. source: "./media/characters/balina-mejeri/front.svg",
  26712. extra: 517 / 488,
  26713. bottom: 44.2 / 561
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(6 + 4 / 12, "feet")
  26721. },
  26722. {
  26723. name: "Business",
  26724. height: math.unit(155, "feet"),
  26725. default: true
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26731. {
  26732. kneeling: {
  26733. height: math.unit(6 + 4 / 12, "feet"),
  26734. weight: math.unit(300 * 20, "lb"),
  26735. name: "Kneeling",
  26736. image: {
  26737. source: "./media/characters/balbarian/kneeling.svg",
  26738. extra: 922 / 862,
  26739. bottom: 42.4 / 965
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(6 + 4 / 12, "feet")
  26747. },
  26748. {
  26749. name: "Treasured",
  26750. height: math.unit(18 + 9 / 12, "feet"),
  26751. default: true
  26752. },
  26753. {
  26754. name: "Macro",
  26755. height: math.unit(900, "feet")
  26756. },
  26757. ]
  26758. ))
  26759. characterMakers.push(() => makeCharacter(
  26760. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26761. {
  26762. front: {
  26763. height: math.unit(6 + 4 / 12, "feet"),
  26764. weight: math.unit(325, "lb"),
  26765. name: "Front",
  26766. image: {
  26767. source: "./media/characters/balina-amarini/front.svg",
  26768. extra: 415 / 403,
  26769. bottom: 19 / 433.4
  26770. }
  26771. },
  26772. back: {
  26773. height: math.unit(6 + 4 / 12, "feet"),
  26774. weight: math.unit(325, "lb"),
  26775. name: "Back",
  26776. image: {
  26777. source: "./media/characters/balina-amarini/back.svg",
  26778. extra: 415 / 403,
  26779. bottom: 13.5 / 432
  26780. }
  26781. },
  26782. overdrive: {
  26783. height: math.unit(6 + 4 / 12, "feet"),
  26784. weight: math.unit(400, "lb"),
  26785. name: "Overdrive",
  26786. image: {
  26787. source: "./media/characters/balina-amarini/overdrive.svg",
  26788. extra: 269 / 259,
  26789. bottom: 12 / 282
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Boom",
  26796. height: math.unit(9 + 10 / 12, "feet"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Macro",
  26801. height: math.unit(280, "feet")
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26807. {
  26808. goddess: {
  26809. height: math.unit(600, "feet"),
  26810. weight: math.unit(2000000, "tons"),
  26811. name: "Goddess",
  26812. image: {
  26813. source: "./media/characters/lady-kubwa/goddess.svg",
  26814. extra: 1240.5 / 1223,
  26815. bottom: 22 / 1263
  26816. }
  26817. },
  26818. goddesser: {
  26819. height: math.unit(900, "feet"),
  26820. weight: math.unit(20000000, "lb"),
  26821. name: "Goddess-er",
  26822. image: {
  26823. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26824. extra: 899 / 888,
  26825. bottom: 12.6 / 912
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Macro",
  26832. height: math.unit(600, "feet"),
  26833. default: true
  26834. },
  26835. {
  26836. name: "Megamacro",
  26837. height: math.unit(250, "miles")
  26838. },
  26839. ]
  26840. ))
  26841. characterMakers.push(() => makeCharacter(
  26842. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26843. {
  26844. front: {
  26845. height: math.unit(7 + 7 / 12, "feet"),
  26846. weight: math.unit(250, "lb"),
  26847. name: "Front",
  26848. image: {
  26849. source: "./media/characters/tala-grovehorn/front.svg",
  26850. extra: 2636 / 2525,
  26851. bottom: 147 / 2781
  26852. }
  26853. },
  26854. back: {
  26855. height: math.unit(7 + 7 / 12, "feet"),
  26856. weight: math.unit(250, "lb"),
  26857. name: "Back",
  26858. image: {
  26859. source: "./media/characters/tala-grovehorn/back.svg",
  26860. extra: 2635 / 2539,
  26861. bottom: 100 / 2732.8
  26862. }
  26863. },
  26864. mouth: {
  26865. height: math.unit(1.15, "feet"),
  26866. name: "Mouth",
  26867. image: {
  26868. source: "./media/characters/tala-grovehorn/mouth.svg"
  26869. }
  26870. },
  26871. dick: {
  26872. height: math.unit(2.36, "feet"),
  26873. name: "Dick",
  26874. image: {
  26875. source: "./media/characters/tala-grovehorn/dick.svg"
  26876. }
  26877. },
  26878. slit: {
  26879. height: math.unit(0.61, "feet"),
  26880. name: "Slit",
  26881. image: {
  26882. source: "./media/characters/tala-grovehorn/slit.svg"
  26883. }
  26884. },
  26885. },
  26886. [
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(7 + 7 / 12, "feet"),
  26894. weight: math.unit(225, "lb"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/epona/front.svg",
  26898. extra: 2445 / 2290,
  26899. bottom: 251 / 2696
  26900. }
  26901. },
  26902. back: {
  26903. height: math.unit(7 + 7 / 12, "feet"),
  26904. weight: math.unit(225, "lb"),
  26905. name: "Back",
  26906. image: {
  26907. source: "./media/characters/epona/back.svg",
  26908. extra: 2546 / 2408,
  26909. bottom: 44 / 2589
  26910. }
  26911. },
  26912. genitals: {
  26913. height: math.unit(1.5, "feet"),
  26914. name: "Genitals",
  26915. image: {
  26916. source: "./media/characters/epona/genitals.svg"
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(7 + 7 / 12, "feet"),
  26924. default: true
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26930. {
  26931. front: {
  26932. height: math.unit(7, "feet"),
  26933. weight: math.unit(518, "lb"),
  26934. name: "Front",
  26935. image: {
  26936. source: "./media/characters/avia-bloodbourn/front.svg",
  26937. extra: 1466 / 1350,
  26938. bottom: 65 / 1527
  26939. }
  26940. },
  26941. },
  26942. [
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(9.35, "feet"),
  26950. weight: math.unit(600, "lb"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/amera/front.svg",
  26954. extra: 891 / 818,
  26955. bottom: 30 / 922.7
  26956. }
  26957. },
  26958. back: {
  26959. height: math.unit(9.35, "feet"),
  26960. weight: math.unit(600, "lb"),
  26961. name: "Back",
  26962. image: {
  26963. source: "./media/characters/amera/back.svg",
  26964. extra: 876 / 824,
  26965. bottom: 6.8 / 884
  26966. }
  26967. },
  26968. dick: {
  26969. height: math.unit(2.14, "feet"),
  26970. name: "Dick",
  26971. image: {
  26972. source: "./media/characters/amera/dick.svg"
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Normal",
  26979. height: math.unit(9.35, "feet"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26986. {
  26987. kneeling: {
  26988. height: math.unit(3 + 4 / 12, "feet"),
  26989. weight: math.unit(90, "lb"),
  26990. name: "Kneeling",
  26991. image: {
  26992. source: "./media/characters/rosewen/kneeling.svg",
  26993. extra: 1835 / 1571,
  26994. bottom: 27.7 / 1862
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(3 + 4 / 12, "feet"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27008. {
  27009. front: {
  27010. height: math.unit(5 + 10 / 12, "feet"),
  27011. weight: math.unit(200, "lb"),
  27012. name: "Front",
  27013. image: {
  27014. source: "./media/characters/sabah/front.svg",
  27015. extra: 849 / 763,
  27016. bottom: 33.9 / 881
  27017. }
  27018. },
  27019. },
  27020. [
  27021. {
  27022. name: "Normal",
  27023. height: math.unit(5 + 10 / 12, "feet"),
  27024. default: true
  27025. },
  27026. ]
  27027. ))
  27028. characterMakers.push(() => makeCharacter(
  27029. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27030. {
  27031. front: {
  27032. height: math.unit(3 + 5 / 12, "feet"),
  27033. weight: math.unit(40, "kg"),
  27034. name: "Front",
  27035. image: {
  27036. source: "./media/characters/purple-flame/front.svg",
  27037. extra: 1577 / 1412,
  27038. bottom: 97 / 1694
  27039. }
  27040. },
  27041. frontDressed: {
  27042. height: math.unit(3 + 5 / 12, "feet"),
  27043. weight: math.unit(40, "kg"),
  27044. name: "Front (Dressed)",
  27045. image: {
  27046. source: "./media/characters/purple-flame/front-dressed.svg",
  27047. extra: 1577 / 1412,
  27048. bottom: 97 / 1694
  27049. }
  27050. },
  27051. headphones: {
  27052. height: math.unit(0.85, "feet"),
  27053. name: "Headphones",
  27054. image: {
  27055. source: "./media/characters/purple-flame/headphones.svg"
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Really Small",
  27062. height: math.unit(5, "cm")
  27063. },
  27064. {
  27065. name: "Micro",
  27066. height: math.unit(1 + 5 / 12, "feet")
  27067. },
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(3 + 5 / 12, "feet"),
  27071. default: true
  27072. },
  27073. {
  27074. name: "Minimacro",
  27075. height: math.unit(125, "feet")
  27076. },
  27077. {
  27078. name: "Macro",
  27079. height: math.unit(0.5, "miles")
  27080. },
  27081. {
  27082. name: "Megamacro",
  27083. height: math.unit(50, "miles")
  27084. },
  27085. {
  27086. name: "Gigantic",
  27087. height: math.unit(750, "miles")
  27088. },
  27089. {
  27090. name: "Planetary",
  27091. height: math.unit(15000, "miles")
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27097. {
  27098. front: {
  27099. height: math.unit(14, "feet"),
  27100. weight: math.unit(959, "lb"),
  27101. name: "Front",
  27102. image: {
  27103. source: "./media/characters/arsenal/front.svg",
  27104. extra: 2357 / 2157,
  27105. bottom: 93 / 2458
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(14, "feet"),
  27113. default: true
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(6, "feet"),
  27122. weight: math.unit(150, "lb"),
  27123. name: "Front",
  27124. image: {
  27125. source: "./media/characters/adira/front.svg",
  27126. extra: 1078 / 1029,
  27127. bottom: 87 / 1166
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Micro",
  27134. height: math.unit(4, "inches"),
  27135. default: true
  27136. },
  27137. {
  27138. name: "Macro",
  27139. height: math.unit(50, "feet")
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(16, "feet"),
  27148. weight: math.unit(1000, "lb"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/grim/front.svg",
  27152. extra: 622 / 614,
  27153. bottom: 18.1 / 642
  27154. }
  27155. },
  27156. back: {
  27157. height: math.unit(16, "feet"),
  27158. weight: math.unit(1000, "lb"),
  27159. name: "Back",
  27160. image: {
  27161. source: "./media/characters/grim/back.svg",
  27162. extra: 610.6 / 602,
  27163. bottom: 40.8 / 652
  27164. }
  27165. },
  27166. hunched: {
  27167. height: math.unit(9.75, "feet"),
  27168. weight: math.unit(1000, "lb"),
  27169. name: "Hunched",
  27170. image: {
  27171. source: "./media/characters/grim/hunched.svg",
  27172. extra: 304 / 297,
  27173. bottom: 35.4 / 394
  27174. }
  27175. },
  27176. },
  27177. [
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(16, "feet"),
  27181. default: true
  27182. },
  27183. ]
  27184. ))
  27185. characterMakers.push(() => makeCharacter(
  27186. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27187. {
  27188. front: {
  27189. height: math.unit(2.3, "meters"),
  27190. weight: math.unit(300, "lb"),
  27191. name: "Front",
  27192. image: {
  27193. source: "./media/characters/sinja/front-sfw.svg",
  27194. extra: 1393 / 1294,
  27195. bottom: 70 / 1463
  27196. }
  27197. },
  27198. frontNsfw: {
  27199. height: math.unit(2.3, "meters"),
  27200. weight: math.unit(300, "lb"),
  27201. name: "Front (NSFW)",
  27202. image: {
  27203. source: "./media/characters/sinja/front-nsfw.svg",
  27204. extra: 1393 / 1294,
  27205. bottom: 70 / 1463
  27206. }
  27207. },
  27208. back: {
  27209. height: math.unit(2.3, "meters"),
  27210. weight: math.unit(300, "lb"),
  27211. name: "Back",
  27212. image: {
  27213. source: "./media/characters/sinja/back.svg",
  27214. extra: 1393 / 1294,
  27215. bottom: 70 / 1463
  27216. }
  27217. },
  27218. head: {
  27219. height: math.unit(1.771, "feet"),
  27220. name: "Head",
  27221. image: {
  27222. source: "./media/characters/sinja/head.svg"
  27223. }
  27224. },
  27225. slit: {
  27226. height: math.unit(0.8, "feet"),
  27227. name: "Slit",
  27228. image: {
  27229. source: "./media/characters/sinja/slit.svg"
  27230. }
  27231. },
  27232. },
  27233. [
  27234. {
  27235. name: "Normal",
  27236. height: math.unit(2.3, "meters")
  27237. },
  27238. {
  27239. name: "Macro",
  27240. height: math.unit(91, "meters"),
  27241. default: true
  27242. },
  27243. {
  27244. name: "Megamacro",
  27245. height: math.unit(91440, "meters")
  27246. },
  27247. {
  27248. name: "Gigamacro",
  27249. height: math.unit(60960000, "meters")
  27250. },
  27251. {
  27252. name: "Teramacro",
  27253. height: math.unit(9144000000, "meters")
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(1.7, "meters"),
  27262. weight: math.unit(130, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/kyu/front.svg",
  27266. extra: 415 / 395,
  27267. bottom: 5 / 420
  27268. }
  27269. },
  27270. head: {
  27271. height: math.unit(1.75, "feet"),
  27272. name: "Head",
  27273. image: {
  27274. source: "./media/characters/kyu/head.svg"
  27275. }
  27276. },
  27277. foot: {
  27278. height: math.unit(0.81, "feet"),
  27279. name: "Foot",
  27280. image: {
  27281. source: "./media/characters/kyu/foot.svg"
  27282. }
  27283. },
  27284. },
  27285. [
  27286. {
  27287. name: "Normal",
  27288. height: math.unit(1.7, "meters")
  27289. },
  27290. {
  27291. name: "Macro",
  27292. height: math.unit(131, "feet"),
  27293. default: true
  27294. },
  27295. {
  27296. name: "Megamacro",
  27297. height: math.unit(91440, "meters")
  27298. },
  27299. {
  27300. name: "Gigamacro",
  27301. height: math.unit(60960000, "meters")
  27302. },
  27303. {
  27304. name: "Teramacro",
  27305. height: math.unit(9144000000, "meters")
  27306. },
  27307. ]
  27308. ))
  27309. characterMakers.push(() => makeCharacter(
  27310. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27311. {
  27312. front: {
  27313. height: math.unit(7 + 1 / 12, "feet"),
  27314. weight: math.unit(250, "lb"),
  27315. name: "Front",
  27316. image: {
  27317. source: "./media/characters/joey/front.svg",
  27318. extra: 1791 / 1537,
  27319. bottom: 28 / 1816
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Micro",
  27326. height: math.unit(3, "inches")
  27327. },
  27328. {
  27329. name: "Normal",
  27330. height: math.unit(7 + 1 / 12, "feet"),
  27331. default: true
  27332. },
  27333. ]
  27334. ))
  27335. characterMakers.push(() => makeCharacter(
  27336. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27337. {
  27338. front: {
  27339. height: math.unit(165, "cm"),
  27340. weight: math.unit(140, "lb"),
  27341. name: "Front",
  27342. image: {
  27343. source: "./media/characters/sam-evans/front.svg",
  27344. extra: 3417 / 3230,
  27345. bottom: 41.3 / 3417
  27346. }
  27347. },
  27348. frontSixTails: {
  27349. height: math.unit(165, "cm"),
  27350. weight: math.unit(140, "lb"),
  27351. name: "Front-six-tails",
  27352. image: {
  27353. source: "./media/characters/sam-evans/front-six-tails.svg",
  27354. extra: 3417 / 3230,
  27355. bottom: 41.3 / 3417
  27356. }
  27357. },
  27358. back: {
  27359. height: math.unit(165, "cm"),
  27360. weight: math.unit(140, "lb"),
  27361. name: "Back",
  27362. image: {
  27363. source: "./media/characters/sam-evans/back.svg",
  27364. extra: 3227 / 3032,
  27365. bottom: 6.8 / 3234
  27366. }
  27367. },
  27368. face: {
  27369. height: math.unit(0.68, "feet"),
  27370. name: "Face",
  27371. image: {
  27372. source: "./media/characters/sam-evans/face.svg"
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(165, "cm"),
  27380. default: true
  27381. },
  27382. {
  27383. name: "Macro",
  27384. height: math.unit(100, "meters")
  27385. },
  27386. {
  27387. name: "Macro+",
  27388. height: math.unit(800, "meters")
  27389. },
  27390. {
  27391. name: "Macro++",
  27392. height: math.unit(3, "km")
  27393. },
  27394. {
  27395. name: "Macro+++",
  27396. height: math.unit(30, "km")
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(10, "feet"),
  27405. weight: math.unit(750, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/juliet-a/front.svg",
  27409. extra: 1766 / 1720,
  27410. bottom: 43 / 1809
  27411. }
  27412. },
  27413. back: {
  27414. height: math.unit(10, "feet"),
  27415. weight: math.unit(750, "lb"),
  27416. name: "Back",
  27417. image: {
  27418. source: "./media/characters/juliet-a/back.svg",
  27419. extra: 1781 / 1734,
  27420. bottom: 35 / 1810,
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(10, "feet"),
  27428. default: true
  27429. },
  27430. {
  27431. name: "Dragon Form",
  27432. height: math.unit(250, "feet")
  27433. },
  27434. {
  27435. name: "Macro",
  27436. height: math.unit(1000, "feet")
  27437. },
  27438. {
  27439. name: "Megamacro",
  27440. height: math.unit(10000, "feet")
  27441. }
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27446. {
  27447. regular: {
  27448. height: math.unit(7 + 3 / 12, "feet"),
  27449. weight: math.unit(260, "lb"),
  27450. name: "Regular",
  27451. image: {
  27452. source: "./media/characters/wild/regular.svg",
  27453. extra: 97.45 / 92,
  27454. bottom: 6.8 / 104.3
  27455. }
  27456. },
  27457. biggums: {
  27458. height: math.unit(8 + 6 / 12, "feet"),
  27459. weight: math.unit(425, "lb"),
  27460. name: "Biggums",
  27461. image: {
  27462. source: "./media/characters/wild/biggums.svg",
  27463. extra: 97.45 / 92,
  27464. bottom: 7.5 / 132.34
  27465. }
  27466. },
  27467. mawRegular: {
  27468. height: math.unit(1.24, "feet"),
  27469. name: "Maw (Regular)",
  27470. image: {
  27471. source: "./media/characters/wild/maw.svg"
  27472. }
  27473. },
  27474. mawBiggums: {
  27475. height: math.unit(1.47, "feet"),
  27476. name: "Maw (Biggums)",
  27477. image: {
  27478. source: "./media/characters/wild/maw.svg"
  27479. }
  27480. },
  27481. },
  27482. [
  27483. {
  27484. name: "Normal",
  27485. height: math.unit(7 + 3 / 12, "feet"),
  27486. default: true
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27492. {
  27493. front: {
  27494. height: math.unit(2.5, "meters"),
  27495. weight: math.unit(200, "kg"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/vidar/front.svg",
  27499. extra: 2994 / 2795,
  27500. bottom: 56 / 3061
  27501. }
  27502. },
  27503. back: {
  27504. height: math.unit(2.5, "meters"),
  27505. weight: math.unit(200, "kg"),
  27506. name: "Back",
  27507. image: {
  27508. source: "./media/characters/vidar/back.svg",
  27509. extra: 3131 / 2928,
  27510. bottom: 13.5 / 3141.5
  27511. }
  27512. },
  27513. feral: {
  27514. height: math.unit(2.5, "meters"),
  27515. weight: math.unit(2000, "kg"),
  27516. name: "Feral",
  27517. image: {
  27518. source: "./media/characters/vidar/feral.svg",
  27519. extra: 2790 / 1765,
  27520. bottom: 6 / 2796
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Normal",
  27527. height: math.unit(2.5, "meters"),
  27528. default: true
  27529. },
  27530. {
  27531. name: "Macro",
  27532. height: math.unit(100, "meters")
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27538. {
  27539. front: {
  27540. height: math.unit(5 + 9 / 12, "feet"),
  27541. weight: math.unit(120, "lb"),
  27542. name: "Front",
  27543. image: {
  27544. source: "./media/characters/ash/front.svg",
  27545. extra: 2189 / 1961,
  27546. bottom: 5.2 / 2194
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(5 + 9 / 12, "feet"),
  27554. default: true
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(9, "feet"),
  27563. weight: math.unit(10000, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/gygabite/front.svg",
  27567. bottom: 31.7 / 537.8,
  27568. extra: 505 / 370
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(9, "feet"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(12, "feet"),
  27585. weight: math.unit(35000, "lb"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/p0tat0/front.svg",
  27589. extra: 1065 / 921,
  27590. bottom: 55.7 / 1121.25
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Normal",
  27597. height: math.unit(12, "feet"),
  27598. default: true
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27604. {
  27605. side: {
  27606. height: math.unit(6.5, "feet"),
  27607. weight: math.unit(800, "lb"),
  27608. name: "Side",
  27609. image: {
  27610. source: "./media/characters/dusk/side.svg",
  27611. extra: 615 / 373,
  27612. bottom: 53 / 664
  27613. }
  27614. },
  27615. sitting: {
  27616. height: math.unit(7, "feet"),
  27617. weight: math.unit(800, "lb"),
  27618. name: "Sitting",
  27619. image: {
  27620. source: "./media/characters/dusk/sitting.svg",
  27621. extra: 753 / 425,
  27622. bottom: 33 / 774
  27623. }
  27624. },
  27625. head: {
  27626. height: math.unit(6.1, "feet"),
  27627. name: "Head",
  27628. image: {
  27629. source: "./media/characters/dusk/head.svg"
  27630. }
  27631. },
  27632. },
  27633. [
  27634. {
  27635. name: "Normal",
  27636. height: math.unit(7, "feet"),
  27637. default: true
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(15, "feet"),
  27646. weight: math.unit(7000, "lb"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/jay-direwolf/front.svg",
  27650. extra: 1810 / 1732,
  27651. bottom: 66 / 1892
  27652. }
  27653. },
  27654. },
  27655. [
  27656. {
  27657. name: "Normal",
  27658. height: math.unit(15, "feet"),
  27659. default: true
  27660. },
  27661. ]
  27662. ))
  27663. characterMakers.push(() => makeCharacter(
  27664. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27665. {
  27666. front: {
  27667. height: math.unit(4 + 9 / 12, "feet"),
  27668. weight: math.unit(130, "lb"),
  27669. name: "Front",
  27670. image: {
  27671. source: "./media/characters/anchovie/front.svg",
  27672. extra: 382 / 350,
  27673. bottom: 25 / 409
  27674. }
  27675. },
  27676. back: {
  27677. height: math.unit(4 + 9 / 12, "feet"),
  27678. weight: math.unit(130, "lb"),
  27679. name: "Back",
  27680. image: {
  27681. source: "./media/characters/anchovie/back.svg",
  27682. extra: 385 / 352,
  27683. bottom: 16.6 / 402
  27684. }
  27685. },
  27686. frontDressed: {
  27687. height: math.unit(4 + 9 / 12, "feet"),
  27688. weight: math.unit(130, "lb"),
  27689. name: "Front (Dressed)",
  27690. image: {
  27691. source: "./media/characters/anchovie/front-dressed.svg",
  27692. extra: 382 / 350,
  27693. bottom: 25 / 409
  27694. }
  27695. },
  27696. backDressed: {
  27697. height: math.unit(4 + 9 / 12, "feet"),
  27698. weight: math.unit(130, "lb"),
  27699. name: "Back (Dressed)",
  27700. image: {
  27701. source: "./media/characters/anchovie/back-dressed.svg",
  27702. extra: 385 / 352,
  27703. bottom: 16.6 / 402
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Micro",
  27710. height: math.unit(6.4, "inches")
  27711. },
  27712. {
  27713. name: "Normal",
  27714. height: math.unit(4 + 9 / 12, "feet"),
  27715. default: true
  27716. },
  27717. ]
  27718. ))
  27719. characterMakers.push(() => makeCharacter(
  27720. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27721. {
  27722. front: {
  27723. height: math.unit(2, "meters"),
  27724. weight: math.unit(180, "lb"),
  27725. name: "Front",
  27726. image: {
  27727. source: "./media/characters/acidrenamon/front.svg",
  27728. extra: 987 / 890,
  27729. bottom: 22.8 / 1009
  27730. }
  27731. },
  27732. back: {
  27733. height: math.unit(2, "meters"),
  27734. weight: math.unit(180, "lb"),
  27735. name: "Back",
  27736. image: {
  27737. source: "./media/characters/acidrenamon/back.svg",
  27738. extra: 983 / 891,
  27739. bottom: 8.4 / 992
  27740. }
  27741. },
  27742. head: {
  27743. height: math.unit(1.92, "feet"),
  27744. name: "Head",
  27745. image: {
  27746. source: "./media/characters/acidrenamon/head.svg"
  27747. }
  27748. },
  27749. rump: {
  27750. height: math.unit(1.72, "feet"),
  27751. name: "Rump",
  27752. image: {
  27753. source: "./media/characters/acidrenamon/rump.svg"
  27754. }
  27755. },
  27756. tail: {
  27757. height: math.unit(4.2, "feet"),
  27758. name: "Tail",
  27759. image: {
  27760. source: "./media/characters/acidrenamon/tail.svg"
  27761. }
  27762. },
  27763. },
  27764. [
  27765. {
  27766. name: "Normal",
  27767. height: math.unit(2, "meters"),
  27768. default: true
  27769. },
  27770. {
  27771. name: "Minimacro",
  27772. height: math.unit(7, "meters")
  27773. },
  27774. {
  27775. name: "Macro",
  27776. height: math.unit(200, "meters")
  27777. },
  27778. {
  27779. name: "Gigamacro",
  27780. height: math.unit(0.2, "earths")
  27781. },
  27782. ]
  27783. ))
  27784. characterMakers.push(() => makeCharacter(
  27785. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27786. {
  27787. front: {
  27788. height: math.unit(152, "feet"),
  27789. name: "Front",
  27790. image: {
  27791. source: "./media/characters/kenzie-lee/front.svg",
  27792. extra: 1869/1774,
  27793. bottom: 128/1997
  27794. }
  27795. },
  27796. side: {
  27797. height: math.unit(86, "feet"),
  27798. name: "Side",
  27799. image: {
  27800. source: "./media/characters/kenzie-lee/side.svg",
  27801. extra: 930/815,
  27802. bottom: 177/1107
  27803. }
  27804. },
  27805. paw: {
  27806. height: math.unit(15, "feet"),
  27807. name: "Paw",
  27808. image: {
  27809. source: "./media/characters/kenzie-lee/paw.svg"
  27810. }
  27811. },
  27812. },
  27813. [
  27814. {
  27815. name: "Micro",
  27816. height: math.unit(1.5, "inches")
  27817. },
  27818. {
  27819. name: "Normal",
  27820. height: math.unit(152, "feet"),
  27821. default: true
  27822. },
  27823. {
  27824. name: "Megamacro",
  27825. height: math.unit(7, "miles")
  27826. },
  27827. {
  27828. name: "Gigamacro",
  27829. height: math.unit(8000, "miles")
  27830. },
  27831. ]
  27832. ))
  27833. characterMakers.push(() => makeCharacter(
  27834. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27835. {
  27836. side: {
  27837. height: math.unit(6, "feet"),
  27838. weight: math.unit(150, "lb"),
  27839. name: "Side",
  27840. image: {
  27841. source: "./media/characters/withers/side.svg",
  27842. extra: 1830 / 1728,
  27843. bottom: 96 / 1927
  27844. }
  27845. },
  27846. front: {
  27847. height: math.unit(6, "feet"),
  27848. weight: math.unit(150, "lb"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/withers/front.svg",
  27852. extra: 1514 / 1438,
  27853. bottom: 118 / 1632
  27854. }
  27855. },
  27856. },
  27857. [
  27858. {
  27859. name: "Macro",
  27860. height: math.unit(168, "feet"),
  27861. default: true
  27862. },
  27863. {
  27864. name: "Megamacro",
  27865. height: math.unit(15, "miles")
  27866. }
  27867. ]
  27868. ))
  27869. characterMakers.push(() => makeCharacter(
  27870. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27871. {
  27872. front: {
  27873. height: math.unit(6 + 7 / 12, "feet"),
  27874. weight: math.unit(250, "lb"),
  27875. name: "Front",
  27876. image: {
  27877. source: "./media/characters/nemoskii/front.svg",
  27878. extra: 2270 / 1734,
  27879. bottom: 86 / 2354
  27880. }
  27881. },
  27882. back: {
  27883. height: math.unit(6 + 7 / 12, "feet"),
  27884. weight: math.unit(250, "lb"),
  27885. name: "Back",
  27886. image: {
  27887. source: "./media/characters/nemoskii/back.svg",
  27888. extra: 1845 / 1788,
  27889. bottom: 10.5 / 1852
  27890. }
  27891. },
  27892. head: {
  27893. height: math.unit(1.31, "feet"),
  27894. name: "Head",
  27895. image: {
  27896. source: "./media/characters/nemoskii/head.svg"
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Micro",
  27903. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27904. },
  27905. {
  27906. name: "Normal",
  27907. height: math.unit(6 + 7 / 12, "feet"),
  27908. default: true
  27909. },
  27910. {
  27911. name: "Macro",
  27912. height: math.unit((6 + 7 / 12) * 150, "feet")
  27913. },
  27914. {
  27915. name: "Macro+",
  27916. height: math.unit((6 + 7 / 12) * 500, "feet")
  27917. },
  27918. {
  27919. name: "Megamacro",
  27920. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(1, "mile"),
  27929. weight: math.unit(265261.9, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/shui/front.svg",
  27933. extra: 1633 / 1564,
  27934. bottom: 91.5 / 1726
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Macro",
  27941. height: math.unit(1, "mile"),
  27942. default: true
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(12 + 6 / 12, "feet"),
  27951. weight: math.unit(1342, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/arokh-takakura/front.svg",
  27955. extra: 1089 / 1043,
  27956. bottom: 77.4 / 1176.7
  27957. }
  27958. },
  27959. back: {
  27960. height: math.unit(12 + 6 / 12, "feet"),
  27961. weight: math.unit(1342, "lb"),
  27962. name: "Back",
  27963. image: {
  27964. source: "./media/characters/arokh-takakura/back.svg",
  27965. extra: 1046 / 1019,
  27966. bottom: 102 / 1150
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Big",
  27973. height: math.unit(12 + 6 / 12, "feet"),
  27974. default: true
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(5 + 6 / 12, "feet"),
  27983. weight: math.unit(150, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/theo/front.svg",
  27987. extra: 1184 / 1131,
  27988. bottom: 7.4 / 1191
  27989. }
  27990. },
  27991. },
  27992. [
  27993. {
  27994. name: "Micro",
  27995. height: math.unit(5, "inches")
  27996. },
  27997. {
  27998. name: "Normal",
  27999. height: math.unit(5 + 6 / 12, "feet"),
  28000. default: true
  28001. },
  28002. ]
  28003. ))
  28004. characterMakers.push(() => makeCharacter(
  28005. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28006. {
  28007. front: {
  28008. height: math.unit(5 + 9 / 12, "feet"),
  28009. weight: math.unit(130, "lb"),
  28010. name: "Front",
  28011. image: {
  28012. source: "./media/characters/cecelia-swift/front.svg",
  28013. extra: 502 / 484,
  28014. bottom: 23 / 523
  28015. }
  28016. },
  28017. back: {
  28018. height: math.unit(5 + 9 / 12, "feet"),
  28019. weight: math.unit(130, "lb"),
  28020. name: "Back",
  28021. image: {
  28022. source: "./media/characters/cecelia-swift/back.svg",
  28023. extra: 499 / 485,
  28024. bottom: 12 / 511
  28025. }
  28026. },
  28027. head: {
  28028. height: math.unit(0.90, "feet"),
  28029. name: "Head",
  28030. image: {
  28031. source: "./media/characters/cecelia-swift/head.svg"
  28032. }
  28033. },
  28034. rump: {
  28035. height: math.unit(1.75, "feet"),
  28036. name: "Rump",
  28037. image: {
  28038. source: "./media/characters/cecelia-swift/rump.svg"
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Normal",
  28045. height: math.unit(5 + 9 / 12, "feet"),
  28046. default: true
  28047. },
  28048. {
  28049. name: "Big",
  28050. height: math.unit(50, "feet")
  28051. },
  28052. {
  28053. name: "Macro",
  28054. height: math.unit(100, "feet")
  28055. },
  28056. {
  28057. name: "Macro+",
  28058. height: math.unit(500, "feet")
  28059. },
  28060. {
  28061. name: "Macro++",
  28062. height: math.unit(1000, "feet")
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(6, "feet"),
  28071. weight: math.unit(150, "lb"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/kaunan/front.svg",
  28075. extra: 2890 / 2523,
  28076. bottom: 49 / 2939
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Macro",
  28083. height: math.unit(150, "feet"),
  28084. default: true
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(175, "cm"),
  28093. weight: math.unit(60, "kg"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/fei/front.svg",
  28097. extra: 1873/1723,
  28098. bottom: 53/1926
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Mortal",
  28105. height: math.unit(175, "cm")
  28106. },
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(3500, "m"),
  28110. default: true
  28111. },
  28112. {
  28113. name: "Stroll",
  28114. height: math.unit(17.5, "km")
  28115. },
  28116. {
  28117. name: "Showoff",
  28118. height: math.unit(175, "km")
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(7, "feet"),
  28127. weight: math.unit(1000, "kg"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/edrax/front.svg",
  28131. extra: 2838 / 2550,
  28132. bottom: 130 / 2968
  28133. }
  28134. },
  28135. },
  28136. [
  28137. {
  28138. name: "Small",
  28139. height: math.unit(7, "feet")
  28140. },
  28141. {
  28142. name: "Normal",
  28143. height: math.unit(1500, "meters")
  28144. },
  28145. {
  28146. name: "Mega",
  28147. height: math.unit(12000000, "km"),
  28148. default: true
  28149. },
  28150. {
  28151. name: "Megamacro",
  28152. height: math.unit(10600000, "lightyears")
  28153. },
  28154. {
  28155. name: "Hypermacro",
  28156. height: math.unit(256, "yottameters")
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28162. {
  28163. front: {
  28164. height: math.unit(10, "feet"),
  28165. weight: math.unit(750, "lb"),
  28166. name: "Front",
  28167. image: {
  28168. source: "./media/characters/clove/front.svg",
  28169. extra: 1918/1751,
  28170. bottom: 52/1970
  28171. }
  28172. },
  28173. back: {
  28174. height: math.unit(10, "feet"),
  28175. weight: math.unit(750, "lb"),
  28176. name: "Back",
  28177. image: {
  28178. source: "./media/characters/clove/back.svg",
  28179. extra: 1912/1747,
  28180. bottom: 50/1962
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(10, "feet"),
  28188. default: true
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28194. {
  28195. front: {
  28196. height: math.unit(4, "feet"),
  28197. weight: math.unit(50, "lb"),
  28198. name: "Front",
  28199. image: {
  28200. source: "./media/characters/alex-rabbit/front.svg",
  28201. extra: 507 / 458,
  28202. bottom: 18.5 / 527
  28203. }
  28204. },
  28205. back: {
  28206. height: math.unit(4, "feet"),
  28207. weight: math.unit(50, "lb"),
  28208. name: "Back",
  28209. image: {
  28210. source: "./media/characters/alex-rabbit/back.svg",
  28211. extra: 502 / 460,
  28212. bottom: 18.9 / 521
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(4, "feet"),
  28220. default: true
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28226. {
  28227. front: {
  28228. height: math.unit(1 + 3 / 12, "feet"),
  28229. weight: math.unit(80, "lb"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/zander-rose/front.svg",
  28233. extra: 916 / 797,
  28234. bottom: 17 / 933
  28235. }
  28236. },
  28237. back: {
  28238. height: math.unit(1 + 3 / 12, "feet"),
  28239. weight: math.unit(80, "lb"),
  28240. name: "Back",
  28241. image: {
  28242. source: "./media/characters/zander-rose/back.svg",
  28243. extra: 903 / 779,
  28244. bottom: 31 / 934
  28245. }
  28246. },
  28247. },
  28248. [
  28249. {
  28250. name: "Normal",
  28251. height: math.unit(1 + 3 / 12, "feet"),
  28252. default: true
  28253. },
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28258. {
  28259. anthro: {
  28260. height: math.unit(6, "feet"),
  28261. weight: math.unit(150, "lb"),
  28262. name: "Anthro",
  28263. image: {
  28264. source: "./media/characters/razz/anthro.svg",
  28265. extra: 1437 / 1343,
  28266. bottom: 48 / 1485
  28267. }
  28268. },
  28269. feral: {
  28270. height: math.unit(6, "feet"),
  28271. weight: math.unit(150, "lb"),
  28272. name: "Feral",
  28273. image: {
  28274. source: "./media/characters/razz/feral.svg",
  28275. extra: 2569 / 1385,
  28276. bottom: 95 / 2664
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(6, "feet"),
  28284. default: true
  28285. },
  28286. ]
  28287. ))
  28288. characterMakers.push(() => makeCharacter(
  28289. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28290. {
  28291. front: {
  28292. height: math.unit(9 + 4 / 12, "feet"),
  28293. weight: math.unit(500, "lb"),
  28294. name: "Front",
  28295. image: {
  28296. source: "./media/characters/morrigan/front.svg",
  28297. extra: 2707 / 2579,
  28298. bottom: 156 / 2863
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(9 + 4 / 12, "feet"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(5, "stories"),
  28315. weight: math.unit(4000, "lb"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/jenene/front.svg",
  28319. extra: 1780 / 1710,
  28320. bottom: 57 / 1837
  28321. }
  28322. },
  28323. },
  28324. [
  28325. {
  28326. name: "Normal",
  28327. height: math.unit(5, "stories"),
  28328. default: true
  28329. },
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28334. {
  28335. taurSfw: {
  28336. height: math.unit(10, "meters"),
  28337. weight: math.unit(17500, "kg"),
  28338. name: "Taur",
  28339. image: {
  28340. source: "./media/characters/faey/taur-sfw.svg",
  28341. extra: 1200 / 968,
  28342. bottom: 41 / 1241
  28343. }
  28344. },
  28345. chestmaw: {
  28346. height: math.unit(2.01, "meters"),
  28347. name: "Chestmaw",
  28348. image: {
  28349. source: "./media/characters/faey/chestmaw.svg"
  28350. }
  28351. },
  28352. foot: {
  28353. height: math.unit(2.43, "meters"),
  28354. name: "Foot",
  28355. image: {
  28356. source: "./media/characters/faey/foot.svg"
  28357. }
  28358. },
  28359. jaws: {
  28360. height: math.unit(1.66, "meters"),
  28361. name: "Jaws",
  28362. image: {
  28363. source: "./media/characters/faey/jaws.svg"
  28364. }
  28365. },
  28366. tongues: {
  28367. height: math.unit(2.01, "meters"),
  28368. name: "Tongues",
  28369. image: {
  28370. source: "./media/characters/faey/tongues.svg"
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Small",
  28377. height: math.unit(10, "meters"),
  28378. default: true
  28379. },
  28380. {
  28381. name: "Big",
  28382. height: math.unit(500000, "km")
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(7, "feet"),
  28391. weight: math.unit(275, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/roku/front.svg",
  28395. extra: 903 / 878,
  28396. bottom: 37 / 940
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(7, "feet"),
  28404. default: true
  28405. },
  28406. {
  28407. name: "Macro",
  28408. height: math.unit(500, "feet")
  28409. },
  28410. {
  28411. name: "Megamacro",
  28412. height: math.unit(200, "miles")
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28418. {
  28419. front: {
  28420. height: math.unit(6 + 2 / 12, "feet"),
  28421. weight: math.unit(150, "lb"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/lira/front.svg",
  28425. extra: 1727 / 1605,
  28426. bottom: 26 / 1753
  28427. }
  28428. },
  28429. back: {
  28430. height: math.unit(6 + 2 / 12, "feet"),
  28431. weight: math.unit(150, "lb"),
  28432. name: "Back",
  28433. image: {
  28434. source: "./media/characters/lira/back.svg",
  28435. extra: 1713/1621,
  28436. bottom: 20/1733
  28437. }
  28438. },
  28439. hand: {
  28440. height: math.unit(0.75, "feet"),
  28441. name: "Hand",
  28442. image: {
  28443. source: "./media/characters/lira/hand.svg"
  28444. }
  28445. },
  28446. maw: {
  28447. height: math.unit(0.65, "feet"),
  28448. name: "Maw",
  28449. image: {
  28450. source: "./media/characters/lira/maw.svg"
  28451. }
  28452. },
  28453. pawDigi: {
  28454. height: math.unit(1.6, "feet"),
  28455. name: "Paw Digi",
  28456. image: {
  28457. source: "./media/characters/lira/paw-digi.svg"
  28458. }
  28459. },
  28460. pawPlanti: {
  28461. height: math.unit(1.4, "feet"),
  28462. name: "Paw Planti",
  28463. image: {
  28464. source: "./media/characters/lira/paw-planti.svg"
  28465. }
  28466. },
  28467. },
  28468. [
  28469. {
  28470. name: "Normal",
  28471. height: math.unit(6 + 2 / 12, "feet"),
  28472. default: true
  28473. },
  28474. {
  28475. name: "Macro",
  28476. height: math.unit(100, "feet")
  28477. },
  28478. {
  28479. name: "Macro²",
  28480. height: math.unit(1600, "feet")
  28481. },
  28482. {
  28483. name: "Planetary",
  28484. height: math.unit(20, "earths")
  28485. },
  28486. ]
  28487. ))
  28488. characterMakers.push(() => makeCharacter(
  28489. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28490. {
  28491. front: {
  28492. height: math.unit(6, "feet"),
  28493. weight: math.unit(150, "lb"),
  28494. name: "Front",
  28495. image: {
  28496. source: "./media/characters/hadjet/front.svg",
  28497. extra: 1480 / 1346,
  28498. bottom: 26 / 1506
  28499. }
  28500. },
  28501. frontNsfw: {
  28502. height: math.unit(6, "feet"),
  28503. weight: math.unit(150, "lb"),
  28504. name: "Front (NSFW)",
  28505. image: {
  28506. source: "./media/characters/hadjet/front-nsfw.svg",
  28507. extra: 1440 / 1358,
  28508. bottom: 52 / 1492
  28509. }
  28510. },
  28511. },
  28512. [
  28513. {
  28514. name: "Macro",
  28515. height: math.unit(10, "stories"),
  28516. default: true
  28517. },
  28518. {
  28519. name: "Megamacro",
  28520. height: math.unit(1.5, "miles")
  28521. },
  28522. {
  28523. name: "Megamacro+",
  28524. height: math.unit(5, "miles")
  28525. },
  28526. ]
  28527. ))
  28528. characterMakers.push(() => makeCharacter(
  28529. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28530. {
  28531. side: {
  28532. height: math.unit(106, "feet"),
  28533. weight: math.unit(500, "tonnes"),
  28534. name: "Side",
  28535. image: {
  28536. source: "./media/characters/kodran/side.svg",
  28537. extra: 553 / 480,
  28538. bottom: 33 / 586
  28539. }
  28540. },
  28541. front: {
  28542. height: math.unit(132, "feet"),
  28543. weight: math.unit(500, "tonnes"),
  28544. name: "Front",
  28545. image: {
  28546. source: "./media/characters/kodran/front.svg",
  28547. extra: 667 / 643,
  28548. bottom: 42 / 709
  28549. }
  28550. },
  28551. flying: {
  28552. height: math.unit(350, "feet"),
  28553. weight: math.unit(500, "tonnes"),
  28554. name: "Flying",
  28555. image: {
  28556. source: "./media/characters/kodran/flying.svg"
  28557. }
  28558. },
  28559. foot: {
  28560. height: math.unit(33, "feet"),
  28561. name: "Foot",
  28562. image: {
  28563. source: "./media/characters/kodran/foot.svg"
  28564. }
  28565. },
  28566. footFront: {
  28567. height: math.unit(19, "feet"),
  28568. name: "Foot (Front)",
  28569. image: {
  28570. source: "./media/characters/kodran/foot-front.svg",
  28571. extra: 261 / 261,
  28572. bottom: 91 / 352
  28573. }
  28574. },
  28575. headFront: {
  28576. height: math.unit(53, "feet"),
  28577. name: "Head (Front)",
  28578. image: {
  28579. source: "./media/characters/kodran/head-front.svg"
  28580. }
  28581. },
  28582. headSide: {
  28583. height: math.unit(65, "feet"),
  28584. name: "Head (Side)",
  28585. image: {
  28586. source: "./media/characters/kodran/head-side.svg"
  28587. }
  28588. },
  28589. throat: {
  28590. height: math.unit(79, "feet"),
  28591. name: "Throat",
  28592. image: {
  28593. source: "./media/characters/kodran/throat.svg"
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Large",
  28600. height: math.unit(106, "feet"),
  28601. default: true
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28607. {
  28608. side: {
  28609. height: math.unit(11, "feet"),
  28610. weight: math.unit(150, "lb"),
  28611. name: "Side",
  28612. image: {
  28613. source: "./media/characters/pyxaron/side.svg",
  28614. extra: 305 / 195,
  28615. bottom: 17 / 322
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(11, "feet"),
  28623. default: true
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(6, "feet"),
  28632. weight: math.unit(150, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/meep/front.svg",
  28636. extra: 88 / 80,
  28637. bottom: 6 / 94
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Fun Sized",
  28644. height: math.unit(2, "inches"),
  28645. default: true
  28646. },
  28647. {
  28648. name: "Friend Sized",
  28649. height: math.unit(8, "inches")
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(15, "feet"),
  28658. weight: math.unit(2500, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/holly-rabbit/front.svg",
  28662. extra: 1433 / 1233,
  28663. bottom: 125 / 1558
  28664. }
  28665. },
  28666. dick: {
  28667. height: math.unit(4.6, "feet"),
  28668. name: "Dick",
  28669. image: {
  28670. source: "./media/characters/holly-rabbit/dick.svg"
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(15, "feet"),
  28678. default: true
  28679. },
  28680. {
  28681. name: "Macro",
  28682. height: math.unit(250, "feet")
  28683. },
  28684. {
  28685. name: "Macro+",
  28686. height: math.unit(2500, "feet")
  28687. },
  28688. ]
  28689. ))
  28690. characterMakers.push(() => makeCharacter(
  28691. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28692. {
  28693. front: {
  28694. height: math.unit(3.02, "meters"),
  28695. weight: math.unit(500, "kg"),
  28696. name: "Front",
  28697. image: {
  28698. source: "./media/characters/drena/front.svg",
  28699. extra: 282 / 243,
  28700. bottom: 8 / 290
  28701. }
  28702. },
  28703. side: {
  28704. height: math.unit(3.02, "meters"),
  28705. weight: math.unit(500, "kg"),
  28706. name: "Side",
  28707. image: {
  28708. source: "./media/characters/drena/side.svg",
  28709. extra: 280 / 245,
  28710. bottom: 10 / 290
  28711. }
  28712. },
  28713. back: {
  28714. height: math.unit(3.02, "meters"),
  28715. weight: math.unit(500, "kg"),
  28716. name: "Back",
  28717. image: {
  28718. source: "./media/characters/drena/back.svg",
  28719. extra: 278 / 243,
  28720. bottom: 2 / 280
  28721. }
  28722. },
  28723. foot: {
  28724. height: math.unit(0.75, "meters"),
  28725. name: "Foot",
  28726. image: {
  28727. source: "./media/characters/drena/foot.svg"
  28728. }
  28729. },
  28730. maw: {
  28731. height: math.unit(0.82, "meters"),
  28732. name: "Maw",
  28733. image: {
  28734. source: "./media/characters/drena/maw.svg"
  28735. }
  28736. },
  28737. rump: {
  28738. height: math.unit(0.93, "meters"),
  28739. name: "Rump",
  28740. image: {
  28741. source: "./media/characters/drena/rump.svg"
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Normal",
  28748. height: math.unit(3.02, "meters"),
  28749. default: true
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(6 + 4 / 12, "feet"),
  28758. weight: math.unit(250, "lb"),
  28759. name: "Front",
  28760. image: {
  28761. source: "./media/characters/remmyzilla/front.svg",
  28762. extra: 4033 / 3588,
  28763. bottom: 123 / 4156
  28764. }
  28765. },
  28766. back: {
  28767. height: math.unit(6 + 4 / 12, "feet"),
  28768. weight: math.unit(250, "lb"),
  28769. name: "Back",
  28770. image: {
  28771. source: "./media/characters/remmyzilla/back.svg",
  28772. extra: 2687 / 2555,
  28773. bottom: 48 / 2735
  28774. }
  28775. },
  28776. paw: {
  28777. height: math.unit(1.73, "feet"),
  28778. name: "Paw",
  28779. image: {
  28780. source: "./media/characters/remmyzilla/paw.svg"
  28781. }
  28782. },
  28783. maw: {
  28784. height: math.unit(1.73, "feet"),
  28785. name: "Maw",
  28786. image: {
  28787. source: "./media/characters/remmyzilla/maw.svg"
  28788. }
  28789. },
  28790. },
  28791. [
  28792. {
  28793. name: "Normal",
  28794. height: math.unit(6 + 4 / 12, "feet")
  28795. },
  28796. {
  28797. name: "Minimacro",
  28798. height: math.unit(12 + 8 / 12, "feet")
  28799. },
  28800. {
  28801. name: "Normal",
  28802. height: math.unit(640, "feet"),
  28803. default: true
  28804. },
  28805. {
  28806. name: "Megamacro",
  28807. height: math.unit(6400, "feet")
  28808. },
  28809. {
  28810. name: "Gigamacro",
  28811. height: math.unit(64000, "miles")
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(2.5, "meters"),
  28820. weight: math.unit(300, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/lawrence/front.svg",
  28824. extra: 357 / 335,
  28825. bottom: 30 / 387
  28826. }
  28827. },
  28828. back: {
  28829. height: math.unit(2.5, "meters"),
  28830. weight: math.unit(300, "lb"),
  28831. name: "Back",
  28832. image: {
  28833. source: "./media/characters/lawrence/back.svg",
  28834. extra: 357 / 338,
  28835. bottom: 16 / 373
  28836. }
  28837. },
  28838. head: {
  28839. height: math.unit(0.9, "meter"),
  28840. name: "Head",
  28841. image: {
  28842. source: "./media/characters/lawrence/head.svg"
  28843. }
  28844. },
  28845. maw: {
  28846. height: math.unit(0.7, "meter"),
  28847. name: "Maw",
  28848. image: {
  28849. source: "./media/characters/lawrence/maw.svg"
  28850. }
  28851. },
  28852. footBottom: {
  28853. height: math.unit(0.5, "meter"),
  28854. name: "Foot (Bottom)",
  28855. image: {
  28856. source: "./media/characters/lawrence/foot-bottom.svg"
  28857. }
  28858. },
  28859. footTop: {
  28860. height: math.unit(0.5, "meter"),
  28861. name: "Foot (Top)",
  28862. image: {
  28863. source: "./media/characters/lawrence/foot-top.svg"
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(2.5, "meters"),
  28871. default: true
  28872. },
  28873. {
  28874. name: "Macro",
  28875. height: math.unit(95, "meters")
  28876. },
  28877. {
  28878. name: "Megamacro",
  28879. height: math.unit(150, "km")
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28885. {
  28886. front: {
  28887. height: math.unit(4.2, "meters"),
  28888. name: "Front",
  28889. image: {
  28890. source: "./media/characters/sydney/front.svg",
  28891. extra: 1323 / 1277,
  28892. bottom: 111 / 1434
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Normal",
  28899. height: math.unit(4.2, "meters"),
  28900. default: true
  28901. },
  28902. ]
  28903. ))
  28904. characterMakers.push(() => makeCharacter(
  28905. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28906. {
  28907. back: {
  28908. height: math.unit(201, "feet"),
  28909. name: "Back",
  28910. image: {
  28911. source: "./media/characters/jessica/back.svg",
  28912. extra: 273 / 259,
  28913. bottom: 7 / 280
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(201, "feet"),
  28921. default: true
  28922. },
  28923. {
  28924. name: "Megamacro",
  28925. height: math.unit(8, "miles")
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28931. {
  28932. side: {
  28933. height: math.unit(5.6, "m"),
  28934. weight: math.unit(8000, "kg"),
  28935. name: "Side",
  28936. image: {
  28937. source: "./media/characters/victoria/side.svg",
  28938. extra: 1542/1229,
  28939. bottom: 124/1666
  28940. }
  28941. },
  28942. maw: {
  28943. height: math.unit(7.14, "feet"),
  28944. name: "Maw",
  28945. image: {
  28946. source: "./media/characters/victoria/maw.svg"
  28947. }
  28948. },
  28949. },
  28950. [
  28951. {
  28952. name: "Normal",
  28953. height: math.unit(5.6, "m"),
  28954. default: true
  28955. },
  28956. ]
  28957. ))
  28958. characterMakers.push(() => makeCharacter(
  28959. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28960. {
  28961. front: {
  28962. height: math.unit(5 + 6 / 12, "feet"),
  28963. name: "Front",
  28964. image: {
  28965. source: "./media/characters/cat/front.svg",
  28966. extra: 1449/1295,
  28967. bottom: 34/1483
  28968. }
  28969. },
  28970. back: {
  28971. height: math.unit(5 + 6 / 12, "feet"),
  28972. name: "Back",
  28973. image: {
  28974. source: "./media/characters/cat/back.svg",
  28975. extra: 1466/1301,
  28976. bottom: 19/1485
  28977. }
  28978. },
  28979. taur: {
  28980. height: math.unit(7, "feet"),
  28981. name: "Taur",
  28982. image: {
  28983. source: "./media/characters/cat/taur.svg",
  28984. extra: 1389/1233,
  28985. bottom: 83/1472
  28986. }
  28987. },
  28988. lucarioFront: {
  28989. height: math.unit(4, "feet"),
  28990. name: "Lucario (Front)",
  28991. image: {
  28992. source: "./media/characters/cat/lucario-front.svg",
  28993. extra: 1149/1019,
  28994. bottom: 84/1233
  28995. }
  28996. },
  28997. lucarioBack: {
  28998. height: math.unit(4, "feet"),
  28999. name: "Lucario (Back)",
  29000. image: {
  29001. source: "./media/characters/cat/lucario-back.svg",
  29002. extra: 1190/1059,
  29003. bottom: 33/1223
  29004. }
  29005. },
  29006. megaLucario: {
  29007. height: math.unit(4, "feet"),
  29008. name: "Mega Lucario",
  29009. image: {
  29010. source: "./media/characters/cat/mega-lucario.svg",
  29011. extra: 1515 / 1319,
  29012. bottom: 63 / 1578
  29013. }
  29014. },
  29015. nickit: {
  29016. height: math.unit(2, "feet"),
  29017. name: "Nickit",
  29018. image: {
  29019. source: "./media/characters/cat/nickit.svg",
  29020. extra: 1980 / 1585,
  29021. bottom: 102 / 2082
  29022. }
  29023. },
  29024. lopunnyFront: {
  29025. height: math.unit(5, "feet"),
  29026. name: "Lopunny (Front)",
  29027. image: {
  29028. source: "./media/characters/cat/lopunny-front.svg",
  29029. extra: 1782 / 1469,
  29030. bottom: 38 / 1820
  29031. }
  29032. },
  29033. lopunnyBack: {
  29034. height: math.unit(5, "feet"),
  29035. name: "Lopunny (Back)",
  29036. image: {
  29037. source: "./media/characters/cat/lopunny-back.svg",
  29038. extra: 1660 / 1490,
  29039. bottom: 25 / 1685
  29040. }
  29041. },
  29042. },
  29043. [
  29044. {
  29045. name: "Really small",
  29046. height: math.unit(1, "nm")
  29047. },
  29048. {
  29049. name: "Micro",
  29050. height: math.unit(5, "inches")
  29051. },
  29052. {
  29053. name: "Normal",
  29054. height: math.unit(5 + 6 / 12, "feet"),
  29055. default: true
  29056. },
  29057. {
  29058. name: "Macro",
  29059. height: math.unit(50, "feet")
  29060. },
  29061. {
  29062. name: "Macro+",
  29063. height: math.unit(150, "feet")
  29064. },
  29065. {
  29066. name: "Megamacro",
  29067. height: math.unit(100, "miles")
  29068. },
  29069. ]
  29070. ))
  29071. characterMakers.push(() => makeCharacter(
  29072. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29073. {
  29074. front: {
  29075. height: math.unit(63.4, "meters"),
  29076. weight: math.unit(3.28349e+6, "kilograms"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/kirina-violet/front.svg",
  29080. extra: 2812 / 2725,
  29081. bottom: 0 / 2812
  29082. }
  29083. },
  29084. back: {
  29085. height: math.unit(63.4, "meters"),
  29086. weight: math.unit(3.28349e+6, "kilograms"),
  29087. name: "Back",
  29088. image: {
  29089. source: "./media/characters/kirina-violet/back.svg",
  29090. extra: 2812 / 2725,
  29091. bottom: 0 / 2812
  29092. }
  29093. },
  29094. mouth: {
  29095. height: math.unit(4.35, "meters"),
  29096. name: "Mouth",
  29097. image: {
  29098. source: "./media/characters/kirina-violet/mouth.svg"
  29099. }
  29100. },
  29101. paw: {
  29102. height: math.unit(5.6, "meters"),
  29103. name: "Paw",
  29104. image: {
  29105. source: "./media/characters/kirina-violet/paw.svg"
  29106. }
  29107. },
  29108. tail: {
  29109. height: math.unit(18, "meters"),
  29110. name: "Tail",
  29111. image: {
  29112. source: "./media/characters/kirina-violet/tail.svg"
  29113. }
  29114. },
  29115. },
  29116. [
  29117. {
  29118. name: "Macro",
  29119. height: math.unit(63.4, "meters"),
  29120. default: true
  29121. },
  29122. ]
  29123. ))
  29124. characterMakers.push(() => makeCharacter(
  29125. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29126. {
  29127. front: {
  29128. height: math.unit(75, "feet"),
  29129. name: "Front",
  29130. image: {
  29131. source: "./media/characters/cat-gigachu/front.svg",
  29132. extra: 1239/1027,
  29133. bottom: 32/1271
  29134. }
  29135. },
  29136. back: {
  29137. height: math.unit(75, "feet"),
  29138. name: "Back",
  29139. image: {
  29140. source: "./media/characters/cat-gigachu/back.svg",
  29141. extra: 1229/1030,
  29142. bottom: 9/1238
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Dynamax",
  29149. height: math.unit(75, "feet"),
  29150. default: true
  29151. },
  29152. ]
  29153. ))
  29154. characterMakers.push(() => makeCharacter(
  29155. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29156. {
  29157. front: {
  29158. height: math.unit(6, "feet"),
  29159. weight: math.unit(150, "lb"),
  29160. name: "Front",
  29161. image: {
  29162. source: "./media/characters/sfaiyan/front.svg",
  29163. extra: 999 / 978,
  29164. bottom: 5 / 1004
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(1.82, "meters")
  29172. },
  29173. {
  29174. name: "Giant",
  29175. height: math.unit(2.27, "km"),
  29176. default: true
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29182. {
  29183. front: {
  29184. height: math.unit(179, "cm"),
  29185. weight: math.unit(100, "kg"),
  29186. name: "Front",
  29187. image: {
  29188. source: "./media/characters/raunehkeli/front.svg",
  29189. extra: 1934 / 1926,
  29190. bottom: 0 / 1934
  29191. }
  29192. },
  29193. },
  29194. [
  29195. {
  29196. name: "Normal",
  29197. height: math.unit(179, "cm")
  29198. },
  29199. {
  29200. name: "Maximum",
  29201. height: math.unit(575, "meters"),
  29202. default: true
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29208. {
  29209. front: {
  29210. height: math.unit(6, "feet"),
  29211. weight: math.unit(150, "lb"),
  29212. name: "Front",
  29213. image: {
  29214. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29215. extra: 2625 / 2518,
  29216. bottom: 60 / 2685
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Normal",
  29223. height: math.unit(6 + 2 / 12, "feet")
  29224. },
  29225. {
  29226. name: "Macro",
  29227. height: math.unit(1180, "feet"),
  29228. default: true
  29229. },
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29234. {
  29235. front: {
  29236. height: math.unit(5 + 6 / 12, "feet"),
  29237. weight: math.unit(108, "lb"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/lilith-zott/front.svg",
  29241. extra: 2510 / 2238,
  29242. bottom: 100 / 2610
  29243. }
  29244. },
  29245. frontDressed: {
  29246. height: math.unit(5 + 6 / 12, "feet"),
  29247. weight: math.unit(108, "lb"),
  29248. name: "Front (Dressed)",
  29249. image: {
  29250. source: "./media/characters/lilith-zott/front-dressed.svg",
  29251. extra: 2510 / 2238,
  29252. bottom: 100 / 2610
  29253. }
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Normal",
  29259. height: math.unit(5 + 6 / 12, "feet")
  29260. },
  29261. {
  29262. name: "Macro",
  29263. height: math.unit(1030, "feet"),
  29264. default: true
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(6, "feet"),
  29273. weight: math.unit(150, "lb"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29277. extra: 2567 / 2435,
  29278. bottom: 39 / 2606
  29279. }
  29280. },
  29281. frontSuper: {
  29282. height: math.unit(6, "feet"),
  29283. name: "Front (Super)",
  29284. image: {
  29285. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29286. extra: 2567 / 2435,
  29287. bottom: 39 / 2606
  29288. }
  29289. },
  29290. },
  29291. [
  29292. {
  29293. name: "Normal",
  29294. height: math.unit(5 + 10 / 12, "feet")
  29295. },
  29296. {
  29297. name: "Macro",
  29298. height: math.unit(1100, "feet"),
  29299. default: true
  29300. },
  29301. ]
  29302. ))
  29303. characterMakers.push(() => makeCharacter(
  29304. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29305. {
  29306. front: {
  29307. height: math.unit(100, "miles"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/sona/front.svg",
  29311. extra: 2433 / 2201,
  29312. bottom: 53 / 2486
  29313. }
  29314. },
  29315. foot: {
  29316. height: math.unit(16.1, "miles"),
  29317. name: "Foot",
  29318. image: {
  29319. source: "./media/characters/sona/foot.svg"
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Macro",
  29326. height: math.unit(100, "miles"),
  29327. default: true
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(6, "feet"),
  29336. weight: math.unit(150, "lb"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/bailey/front.svg",
  29340. extra: 1778 / 1724,
  29341. bottom: 30 / 1808
  29342. }
  29343. },
  29344. },
  29345. [
  29346. {
  29347. name: "Micro",
  29348. height: math.unit(4, "inches")
  29349. },
  29350. {
  29351. name: "Normal",
  29352. height: math.unit(5 + 5 / 12, "feet"),
  29353. default: true
  29354. },
  29355. {
  29356. name: "Macro",
  29357. height: math.unit(250, "feet")
  29358. },
  29359. {
  29360. name: "Megamacro",
  29361. height: math.unit(100, "miles")
  29362. },
  29363. ]
  29364. ))
  29365. characterMakers.push(() => makeCharacter(
  29366. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29367. {
  29368. front: {
  29369. height: math.unit(5 + 2 / 12, "feet"),
  29370. weight: math.unit(120, "lb"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/snaps/front.svg",
  29374. extra: 2370 / 2177,
  29375. bottom: 48 / 2418
  29376. }
  29377. },
  29378. back: {
  29379. height: math.unit(5 + 2 / 12, "feet"),
  29380. weight: math.unit(120, "lb"),
  29381. name: "Back",
  29382. image: {
  29383. source: "./media/characters/snaps/back.svg",
  29384. extra: 2408 / 2258,
  29385. bottom: 15 / 2423
  29386. }
  29387. },
  29388. },
  29389. [
  29390. {
  29391. name: "Micro",
  29392. height: math.unit(9, "inches")
  29393. },
  29394. {
  29395. name: "Normal",
  29396. height: math.unit(5 + 2 / 12, "feet"),
  29397. default: true
  29398. },
  29399. {
  29400. name: "Mini Macro",
  29401. height: math.unit(10, "feet")
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(1.8, "meters"),
  29410. weight: math.unit(85, "kg"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/azteck/front.svg",
  29414. extra: 2815 / 2625,
  29415. bottom: 89 / 2904
  29416. }
  29417. },
  29418. back: {
  29419. height: math.unit(1.8, "meters"),
  29420. weight: math.unit(85, "kg"),
  29421. name: "Back",
  29422. image: {
  29423. source: "./media/characters/azteck/back.svg",
  29424. extra: 2856 / 2648,
  29425. bottom: 85 / 2941
  29426. }
  29427. },
  29428. frontDressed: {
  29429. height: math.unit(1.8, "meters"),
  29430. weight: math.unit(85, "kg"),
  29431. name: "Front (Dressed)",
  29432. image: {
  29433. source: "./media/characters/azteck/front-dressed.svg",
  29434. extra: 2147 / 2003,
  29435. bottom: 68 / 2215
  29436. }
  29437. },
  29438. head: {
  29439. height: math.unit(0.47, "meters"),
  29440. weight: math.unit(85, "kg"),
  29441. name: "Head",
  29442. image: {
  29443. source: "./media/characters/azteck/head.svg"
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Bite sized",
  29450. height: math.unit(16, "cm")
  29451. },
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(1.8, "meters"),
  29455. default: true
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(6, "feet"),
  29464. weight: math.unit(150, "lb"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/pidge/front.svg",
  29468. extra: 620 / 588,
  29469. bottom: 9 / 629
  29470. }
  29471. },
  29472. back: {
  29473. height: math.unit(6, "feet"),
  29474. weight: math.unit(150, "lb"),
  29475. name: "Back",
  29476. image: {
  29477. source: "./media/characters/pidge/back.svg",
  29478. extra: 620 / 588,
  29479. bottom: 9 / 629
  29480. }
  29481. },
  29482. },
  29483. [
  29484. {
  29485. name: "Macro",
  29486. height: math.unit(1, "mile"),
  29487. default: true
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(6, "feet"),
  29496. weight: math.unit(150, "lb"),
  29497. name: "Front",
  29498. image: {
  29499. source: "./media/characters/en/front.svg",
  29500. extra: 1697 / 1563,
  29501. bottom: 103 / 1800
  29502. }
  29503. },
  29504. back: {
  29505. height: math.unit(6, "feet"),
  29506. weight: math.unit(150, "lb"),
  29507. name: "Back",
  29508. image: {
  29509. source: "./media/characters/en/back.svg",
  29510. extra: 1700 / 1570,
  29511. bottom: 51 / 1751
  29512. }
  29513. },
  29514. frontDressed: {
  29515. height: math.unit(6, "feet"),
  29516. weight: math.unit(150, "lb"),
  29517. name: "Front (Dressed)",
  29518. image: {
  29519. source: "./media/characters/en/front-dressed.svg",
  29520. extra: 1697 / 1563,
  29521. bottom: 103 / 1800
  29522. }
  29523. },
  29524. backDressed: {
  29525. height: math.unit(6, "feet"),
  29526. weight: math.unit(150, "lb"),
  29527. name: "Back (Dressed)",
  29528. image: {
  29529. source: "./media/characters/en/back-dressed.svg",
  29530. extra: 1700 / 1570,
  29531. bottom: 51 / 1751
  29532. }
  29533. },
  29534. },
  29535. [
  29536. {
  29537. name: "Macro",
  29538. height: math.unit(210, "feet"),
  29539. default: true
  29540. },
  29541. ]
  29542. ))
  29543. characterMakers.push(() => makeCharacter(
  29544. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29545. {
  29546. front: {
  29547. height: math.unit(6, "feet"),
  29548. weight: math.unit(150, "lb"),
  29549. name: "Front",
  29550. image: {
  29551. source: "./media/characters/haze-orris/front.svg",
  29552. extra: 3975 / 3525,
  29553. bottom: 137 / 4112
  29554. }
  29555. },
  29556. },
  29557. [
  29558. {
  29559. name: "Micro",
  29560. height: math.unit(150, "mm"),
  29561. default: true
  29562. },
  29563. ]
  29564. ))
  29565. characterMakers.push(() => makeCharacter(
  29566. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29567. {
  29568. front: {
  29569. height: math.unit(6, "feet"),
  29570. weight: math.unit(150, "lb"),
  29571. name: "Front",
  29572. image: {
  29573. source: "./media/characters/casselene-yaro/front.svg",
  29574. extra: 4721 / 4541,
  29575. bottom: 82 / 4803
  29576. }
  29577. },
  29578. back: {
  29579. height: math.unit(6, "feet"),
  29580. weight: math.unit(150, "lb"),
  29581. name: "Back",
  29582. image: {
  29583. source: "./media/characters/casselene-yaro/back.svg",
  29584. extra: 4569 / 4377,
  29585. bottom: 69 / 4638
  29586. }
  29587. },
  29588. frontDressed: {
  29589. height: math.unit(6, "feet"),
  29590. weight: math.unit(150, "lb"),
  29591. name: "Front-dressed",
  29592. image: {
  29593. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29594. extra: 4721 / 4541,
  29595. bottom: 82 / 4803
  29596. }
  29597. },
  29598. },
  29599. [
  29600. {
  29601. name: "Macro",
  29602. height: math.unit(190, "feet"),
  29603. default: true
  29604. },
  29605. ]
  29606. ))
  29607. characterMakers.push(() => makeCharacter(
  29608. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29609. {
  29610. front: {
  29611. height: math.unit(6, "feet"),
  29612. weight: math.unit(150, "lb"),
  29613. name: "Front",
  29614. image: {
  29615. source: "./media/characters/myra-rue-delore/front.svg",
  29616. extra: 1340 / 1308,
  29617. bottom: 67 / 1407
  29618. }
  29619. },
  29620. back: {
  29621. height: math.unit(6, "feet"),
  29622. weight: math.unit(150, "lb"),
  29623. name: "Back",
  29624. image: {
  29625. source: "./media/characters/myra-rue-delore/back.svg",
  29626. extra: 1341 / 1310,
  29627. bottom: 40 / 1381
  29628. }
  29629. },
  29630. frontDressed: {
  29631. height: math.unit(6, "feet"),
  29632. weight: math.unit(150, "lb"),
  29633. name: "Front (Dressed)",
  29634. image: {
  29635. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29636. extra: 1340 / 1308,
  29637. bottom: 67 / 1407
  29638. }
  29639. },
  29640. },
  29641. [
  29642. {
  29643. name: "Macro",
  29644. height: math.unit(150, "feet"),
  29645. default: true
  29646. },
  29647. ]
  29648. ))
  29649. characterMakers.push(() => makeCharacter(
  29650. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29651. {
  29652. front: {
  29653. height: math.unit(10, "feet"),
  29654. weight: math.unit(15015, "lb"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/fem!plat/front.svg",
  29658. extra: 2799 / 2604,
  29659. bottom: 149 / 2948
  29660. }
  29661. },
  29662. },
  29663. [
  29664. {
  29665. name: "Normal",
  29666. height: math.unit(10, "feet"),
  29667. default: true
  29668. },
  29669. {
  29670. name: "Macro",
  29671. height: math.unit(100, "feet")
  29672. },
  29673. {
  29674. name: "Megamacro",
  29675. height: math.unit(1000, "feet")
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29681. {
  29682. front: {
  29683. height: math.unit(15 + 5 / 12, "feet"),
  29684. weight: math.unit(4600, "lb"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/neapolitan-ananassa/front.svg",
  29688. extra: 2903 / 2736,
  29689. bottom: 0 / 2903
  29690. }
  29691. },
  29692. side: {
  29693. height: math.unit(15 + 5 / 12, "feet"),
  29694. weight: math.unit(4600, "lb"),
  29695. name: "Side",
  29696. image: {
  29697. source: "./media/characters/neapolitan-ananassa/side.svg",
  29698. extra: 2925 / 2719,
  29699. bottom: 0 / 2925
  29700. }
  29701. },
  29702. back: {
  29703. height: math.unit(15 + 5 / 12, "feet"),
  29704. weight: math.unit(4600, "lb"),
  29705. name: "Back",
  29706. image: {
  29707. source: "./media/characters/neapolitan-ananassa/back.svg",
  29708. extra: 2903 / 2736,
  29709. bottom: 0 / 2903
  29710. }
  29711. },
  29712. },
  29713. [
  29714. {
  29715. name: "Normal",
  29716. height: math.unit(15 + 5 / 12, "feet"),
  29717. default: true
  29718. },
  29719. {
  29720. name: "Post-Millenium",
  29721. height: math.unit(35 + 5 / 12, "feet")
  29722. },
  29723. {
  29724. name: "Post-Era",
  29725. height: math.unit(450 + 5 / 12, "feet")
  29726. },
  29727. ]
  29728. ))
  29729. characterMakers.push(() => makeCharacter(
  29730. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29731. {
  29732. front: {
  29733. height: math.unit(300, "meters"),
  29734. weight: math.unit(125000, "tonnes"),
  29735. name: "Front",
  29736. image: {
  29737. source: "./media/characters/pazuzu/front.svg",
  29738. extra: 877 / 794,
  29739. bottom: 47 / 924
  29740. }
  29741. },
  29742. },
  29743. [
  29744. {
  29745. name: "Macro",
  29746. height: math.unit(300, "meters"),
  29747. default: true
  29748. },
  29749. ]
  29750. ))
  29751. characterMakers.push(() => makeCharacter(
  29752. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29753. {
  29754. side: {
  29755. height: math.unit(10 + 7 / 12, "feet"),
  29756. weight: math.unit(2.5, "tons"),
  29757. name: "Side",
  29758. image: {
  29759. source: "./media/characters/aasha/side.svg",
  29760. extra: 1345 / 1245,
  29761. bottom: 111 / 1456
  29762. }
  29763. },
  29764. back: {
  29765. height: math.unit(10 + 7 / 12, "feet"),
  29766. weight: math.unit(2.5, "tons"),
  29767. name: "Back",
  29768. image: {
  29769. source: "./media/characters/aasha/back.svg",
  29770. extra: 1133 / 1057,
  29771. bottom: 257 / 1390
  29772. }
  29773. },
  29774. },
  29775. [
  29776. {
  29777. name: "Normal",
  29778. height: math.unit(10 + 7 / 12, "feet"),
  29779. default: true
  29780. },
  29781. ]
  29782. ))
  29783. characterMakers.push(() => makeCharacter(
  29784. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29785. {
  29786. front: {
  29787. height: math.unit(6 + 3 / 12, "feet"),
  29788. name: "Front",
  29789. image: {
  29790. source: "./media/characters/nevan/front.svg",
  29791. extra: 704 / 704,
  29792. bottom: 28 / 732
  29793. }
  29794. },
  29795. back: {
  29796. height: math.unit(6 + 3 / 12, "feet"),
  29797. name: "Back",
  29798. image: {
  29799. source: "./media/characters/nevan/back.svg",
  29800. extra: 714 / 714,
  29801. bottom: 21 / 735
  29802. }
  29803. },
  29804. frontFlaccid: {
  29805. height: math.unit(6 + 3 / 12, "feet"),
  29806. name: "Front (Flaccid)",
  29807. image: {
  29808. source: "./media/characters/nevan/front-flaccid.svg",
  29809. extra: 704 / 704,
  29810. bottom: 28 / 732
  29811. }
  29812. },
  29813. frontErect: {
  29814. height: math.unit(6 + 3 / 12, "feet"),
  29815. name: "Front (Erect)",
  29816. image: {
  29817. source: "./media/characters/nevan/front-erect.svg",
  29818. extra: 704 / 704,
  29819. bottom: 28 / 732
  29820. }
  29821. },
  29822. backFlaccid: {
  29823. height: math.unit(6 + 3 / 12, "feet"),
  29824. name: "Back (Flaccid)",
  29825. image: {
  29826. source: "./media/characters/nevan/back-flaccid.svg",
  29827. extra: 714 / 714,
  29828. bottom: 21 / 735
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Normal",
  29835. height: math.unit(6 + 3 / 12, "feet"),
  29836. default: true
  29837. },
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(4, "feet"),
  29845. name: "Front",
  29846. image: {
  29847. source: "./media/characters/arhan/front.svg",
  29848. extra: 3368 / 3133,
  29849. bottom: 0 / 3368
  29850. }
  29851. },
  29852. side: {
  29853. height: math.unit(4, "feet"),
  29854. name: "Side",
  29855. image: {
  29856. source: "./media/characters/arhan/side.svg",
  29857. extra: 3347 / 3105,
  29858. bottom: 0 / 3347
  29859. }
  29860. },
  29861. tongue: {
  29862. height: math.unit(1.42, "feet"),
  29863. name: "Tongue",
  29864. image: {
  29865. source: "./media/characters/arhan/tongue.svg"
  29866. }
  29867. },
  29868. head: {
  29869. height: math.unit(0.85, "feet"),
  29870. name: "Head",
  29871. image: {
  29872. source: "./media/characters/arhan/head.svg"
  29873. }
  29874. },
  29875. },
  29876. [
  29877. {
  29878. name: "Normal",
  29879. height: math.unit(4, "feet"),
  29880. default: true
  29881. },
  29882. ]
  29883. ))
  29884. characterMakers.push(() => makeCharacter(
  29885. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29886. {
  29887. front: {
  29888. height: math.unit(5 + 7.5 / 12, "feet"),
  29889. weight: math.unit(120, "lb"),
  29890. name: "Front",
  29891. image: {
  29892. source: "./media/characters/digi-duncan/front.svg",
  29893. extra: 330 / 326,
  29894. bottom: 16 / 346
  29895. }
  29896. },
  29897. side: {
  29898. height: math.unit(5 + 7.5 / 12, "feet"),
  29899. weight: math.unit(120, "lb"),
  29900. name: "Side",
  29901. image: {
  29902. source: "./media/characters/digi-duncan/side.svg",
  29903. extra: 341 / 337,
  29904. bottom: 1 / 342
  29905. }
  29906. },
  29907. back: {
  29908. height: math.unit(5 + 7.5 / 12, "feet"),
  29909. weight: math.unit(120, "lb"),
  29910. name: "Back",
  29911. image: {
  29912. source: "./media/characters/digi-duncan/back.svg",
  29913. extra: 330 / 326,
  29914. bottom: 12 / 342
  29915. }
  29916. },
  29917. },
  29918. [
  29919. {
  29920. name: "Speck",
  29921. height: math.unit(0.25, "mm")
  29922. },
  29923. {
  29924. name: "Micro",
  29925. height: math.unit(5, "mm")
  29926. },
  29927. {
  29928. name: "Tiny",
  29929. height: math.unit(0.5, "inches"),
  29930. default: true
  29931. },
  29932. {
  29933. name: "Human",
  29934. height: math.unit(5 + 7.5 / 12, "feet")
  29935. },
  29936. {
  29937. name: "Minigiant",
  29938. height: math.unit(8 + 5.25, "feet")
  29939. },
  29940. {
  29941. name: "Giant",
  29942. height: math.unit(2000, "feet")
  29943. },
  29944. {
  29945. name: "Mega",
  29946. height: math.unit(371.1, "miles")
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(2, "meters"),
  29955. weight: math.unit(350, "kg"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29959. extra: 898 / 838,
  29960. bottom: 9 / 907
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Micro",
  29967. height: math.unit(8, "meters")
  29968. },
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(50, "meters"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Macro",
  29976. height: math.unit(500, "meters")
  29977. },
  29978. ]
  29979. ))
  29980. characterMakers.push(() => makeCharacter(
  29981. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29982. {
  29983. front: {
  29984. height: math.unit(6 + 6 / 12, "feet"),
  29985. name: "Front",
  29986. image: {
  29987. source: "./media/characters/khardesh/front.svg",
  29988. extra: 1788/1596,
  29989. bottom: 66/1854
  29990. }
  29991. },
  29992. back: {
  29993. height: math.unit(6 + 6 / 12, "feet"),
  29994. name: "Back",
  29995. image: {
  29996. source: "./media/characters/khardesh/back.svg",
  29997. extra: 1781/1584,
  29998. bottom: 68/1849
  29999. }
  30000. },
  30001. },
  30002. [
  30003. {
  30004. name: "Normal",
  30005. height: math.unit(6 + 6 / 12, "feet"),
  30006. default: true
  30007. },
  30008. {
  30009. name: "Normal+",
  30010. height: math.unit(4, "meters")
  30011. },
  30012. {
  30013. name: "Macro",
  30014. height: math.unit(50, "meters")
  30015. },
  30016. {
  30017. name: "Macro+",
  30018. height: math.unit(100, "meters")
  30019. },
  30020. {
  30021. name: "Megamacro",
  30022. height: math.unit(20, "km")
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30028. {
  30029. front: {
  30030. height: math.unit(6, "feet"),
  30031. weight: math.unit(150, "lb"),
  30032. name: "Front",
  30033. image: {
  30034. source: "./media/characters/kosho/front.svg",
  30035. extra: 1847 / 1847,
  30036. bottom: 86 / 1933
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Second-stage micro",
  30043. height: math.unit(0.5, "inches")
  30044. },
  30045. {
  30046. name: "First-stage micro",
  30047. height: math.unit(6, "inches")
  30048. },
  30049. {
  30050. name: "Normal",
  30051. height: math.unit(6, "feet"),
  30052. default: true
  30053. },
  30054. {
  30055. name: "First-stage macro",
  30056. height: math.unit(72, "feet")
  30057. },
  30058. {
  30059. name: "Second-stage macro",
  30060. height: math.unit(864, "feet")
  30061. },
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30066. {
  30067. normal: {
  30068. height: math.unit(4 + 6 / 12, "feet"),
  30069. name: "Normal",
  30070. image: {
  30071. source: "./media/characters/hydra/normal.svg",
  30072. extra: 2833 / 2634,
  30073. bottom: 68 / 2901
  30074. }
  30075. },
  30076. smol: {
  30077. height: math.unit(0.705, "inches"),
  30078. name: "Smol",
  30079. image: {
  30080. source: "./media/characters/hydra/smol.svg",
  30081. extra: 2715 / 2540,
  30082. bottom: 0 / 2715
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(4 + 6 / 12, "feet"),
  30090. default: true
  30091. }
  30092. ]
  30093. ))
  30094. characterMakers.push(() => makeCharacter(
  30095. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30096. {
  30097. front: {
  30098. height: math.unit(0.6, "cm"),
  30099. name: "Front",
  30100. image: {
  30101. source: "./media/characters/daz/front.svg",
  30102. extra: 1682 / 1164,
  30103. bottom: 42 / 1724
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Normal",
  30110. height: math.unit(0.6, "cm"),
  30111. default: true
  30112. },
  30113. ]
  30114. ))
  30115. characterMakers.push(() => makeCharacter(
  30116. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30117. {
  30118. front: {
  30119. height: math.unit(6, "feet"),
  30120. weight: math.unit(235, "lb"),
  30121. name: "Front",
  30122. image: {
  30123. source: "./media/characters/theo-pangolin/front.svg",
  30124. extra: 1996 / 1969,
  30125. bottom: 115 / 2111
  30126. }
  30127. },
  30128. back: {
  30129. height: math.unit(6, "feet"),
  30130. weight: math.unit(235, "lb"),
  30131. name: "Back",
  30132. image: {
  30133. source: "./media/characters/theo-pangolin/back.svg",
  30134. extra: 1979 / 1979,
  30135. bottom: 40 / 2019
  30136. }
  30137. },
  30138. feral: {
  30139. height: math.unit(2, "feet"),
  30140. weight: math.unit(30, "lb"),
  30141. name: "Feral",
  30142. image: {
  30143. source: "./media/characters/theo-pangolin/feral.svg",
  30144. extra: 803 / 791,
  30145. bottom: 181 / 984
  30146. }
  30147. },
  30148. footFive: {
  30149. height: math.unit(1.43, "feet"),
  30150. name: "Foot (Five Toes)",
  30151. image: {
  30152. source: "./media/characters/theo-pangolin/foot-five.svg"
  30153. }
  30154. },
  30155. footFour: {
  30156. height: math.unit(1.43, "feet"),
  30157. name: "Foot (Four Toes)",
  30158. image: {
  30159. source: "./media/characters/theo-pangolin/foot-four.svg"
  30160. }
  30161. },
  30162. handFour: {
  30163. height: math.unit(0.81, "feet"),
  30164. name: "Hand (Four Fingers)",
  30165. image: {
  30166. source: "./media/characters/theo-pangolin/hand-four.svg"
  30167. }
  30168. },
  30169. handThree: {
  30170. height: math.unit(0.81, "feet"),
  30171. name: "Hand (Three Fingers)",
  30172. image: {
  30173. source: "./media/characters/theo-pangolin/hand-three.svg"
  30174. }
  30175. },
  30176. headFront: {
  30177. height: math.unit(1.37, "feet"),
  30178. name: "Head (Front)",
  30179. image: {
  30180. source: "./media/characters/theo-pangolin/head-front.svg"
  30181. }
  30182. },
  30183. headSide: {
  30184. height: math.unit(1.43, "feet"),
  30185. name: "Head (Side)",
  30186. image: {
  30187. source: "./media/characters/theo-pangolin/head-side.svg"
  30188. }
  30189. },
  30190. tongue: {
  30191. height: math.unit(2.29, "feet"),
  30192. name: "Tongue",
  30193. image: {
  30194. source: "./media/characters/theo-pangolin/tongue.svg"
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(6, "feet")
  30202. },
  30203. {
  30204. name: "Macro",
  30205. height: math.unit(400, "feet"),
  30206. default: true
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(6, "inches"),
  30215. weight: math.unit(0.036, "kg"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/renée/front.svg",
  30219. extra: 900 / 886,
  30220. bottom: 8 / 908
  30221. }
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Nano",
  30227. height: math.unit(1, "nm")
  30228. },
  30229. {
  30230. name: "Micro",
  30231. height: math.unit(1, "mm")
  30232. },
  30233. {
  30234. name: "Normal",
  30235. height: math.unit(6, "inches")
  30236. },
  30237. {
  30238. name: "Macro",
  30239. height: math.unit(2000, "feet"),
  30240. default: true
  30241. },
  30242. {
  30243. name: "Megamacro",
  30244. height: math.unit(2, "km")
  30245. },
  30246. {
  30247. name: "Gigamacro",
  30248. height: math.unit(2000, "km")
  30249. },
  30250. {
  30251. name: "Teramacro",
  30252. height: math.unit(250000, "km")
  30253. },
  30254. ]
  30255. ))
  30256. characterMakers.push(() => makeCharacter(
  30257. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30258. {
  30259. front: {
  30260. height: math.unit(4, "meters"),
  30261. weight: math.unit(150, "kg"),
  30262. name: "Front",
  30263. image: {
  30264. source: "./media/characters/caledvwlch/front.svg",
  30265. extra: 1760 / 1551,
  30266. bottom: 28 / 1788
  30267. }
  30268. },
  30269. side: {
  30270. height: math.unit(4, "meters"),
  30271. weight: math.unit(150, "kg"),
  30272. name: "Side",
  30273. image: {
  30274. source: "./media/characters/caledvwlch/side.svg",
  30275. extra: 1605 / 1536,
  30276. bottom: 31 / 1636
  30277. }
  30278. },
  30279. back: {
  30280. height: math.unit(4, "meters"),
  30281. weight: math.unit(150, "kg"),
  30282. name: "Back",
  30283. image: {
  30284. source: "./media/characters/caledvwlch/back.svg",
  30285. extra: 1635 / 1565,
  30286. bottom: 27 / 1662
  30287. }
  30288. },
  30289. },
  30290. [
  30291. {
  30292. name: "\"Incognito\"",
  30293. height: math.unit(4, "meters")
  30294. },
  30295. {
  30296. name: "Small rampage",
  30297. height: math.unit(600, "meters")
  30298. },
  30299. {
  30300. name: "Mega",
  30301. height: math.unit(30, "km")
  30302. },
  30303. {
  30304. name: "Home-size",
  30305. height: math.unit(50, "km"),
  30306. default: true
  30307. },
  30308. {
  30309. name: "Giga",
  30310. height: math.unit(300, "km")
  30311. },
  30312. {
  30313. name: "Lounging",
  30314. height: math.unit(11000, "km")
  30315. },
  30316. {
  30317. name: "Planet snacking",
  30318. height: math.unit(2000000, "km")
  30319. },
  30320. ]
  30321. ))
  30322. characterMakers.push(() => makeCharacter(
  30323. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30324. {
  30325. front: {
  30326. height: math.unit(6, "feet"),
  30327. weight: math.unit(215, "lb"),
  30328. name: "Front",
  30329. image: {
  30330. source: "./media/characters/sapphire-svell/front.svg",
  30331. extra: 495 / 455,
  30332. bottom: 20 / 515
  30333. }
  30334. },
  30335. back: {
  30336. height: math.unit(6, "feet"),
  30337. weight: math.unit(216, "lb"),
  30338. name: "Back",
  30339. image: {
  30340. source: "./media/characters/sapphire-svell/back.svg",
  30341. extra: 497 / 477,
  30342. bottom: 7 / 504
  30343. }
  30344. },
  30345. maw: {
  30346. height: math.unit(1.57, "feet"),
  30347. name: "Maw",
  30348. image: {
  30349. source: "./media/characters/sapphire-svell/maw.svg"
  30350. }
  30351. },
  30352. foot: {
  30353. height: math.unit(1.07, "feet"),
  30354. name: "Foot",
  30355. image: {
  30356. source: "./media/characters/sapphire-svell/foot.svg"
  30357. }
  30358. },
  30359. toering: {
  30360. height: math.unit(1.7, "inch"),
  30361. name: "Toering",
  30362. image: {
  30363. source: "./media/characters/sapphire-svell/toering.svg"
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(300, "feet"),
  30371. default: true
  30372. },
  30373. {
  30374. name: "Augmented",
  30375. height: math.unit(1250, "feet")
  30376. },
  30377. {
  30378. name: "Unleashed",
  30379. height: math.unit(3000, "feet")
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30385. {
  30386. side: {
  30387. height: math.unit(2 + 3 / 12, "feet"),
  30388. weight: math.unit(110, "lb"),
  30389. name: "Side",
  30390. image: {
  30391. source: "./media/characters/glitch-flux/side.svg",
  30392. extra: 997 / 805,
  30393. bottom: 20 / 1017
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Normal",
  30400. height: math.unit(2 + 3 / 12, "feet"),
  30401. default: true
  30402. },
  30403. ]
  30404. ))
  30405. characterMakers.push(() => makeCharacter(
  30406. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30407. {
  30408. front: {
  30409. height: math.unit(4, "meters"),
  30410. name: "Front",
  30411. image: {
  30412. source: "./media/characters/mid/front.svg",
  30413. extra: 507 / 476,
  30414. bottom: 17 / 524
  30415. }
  30416. },
  30417. back: {
  30418. height: math.unit(4, "meters"),
  30419. name: "Back",
  30420. image: {
  30421. source: "./media/characters/mid/back.svg",
  30422. extra: 519 / 487,
  30423. bottom: 7 / 526
  30424. }
  30425. },
  30426. stuck: {
  30427. height: math.unit(2.2, "meters"),
  30428. name: "Stuck",
  30429. image: {
  30430. source: "./media/characters/mid/stuck.svg",
  30431. extra: 1951 / 1869,
  30432. bottom: 88 / 2039
  30433. }
  30434. }
  30435. },
  30436. [
  30437. {
  30438. name: "Normal",
  30439. height: math.unit(4, "meters"),
  30440. default: true
  30441. },
  30442. {
  30443. name: "Big",
  30444. height: math.unit(10, "meters")
  30445. },
  30446. {
  30447. name: "Macro",
  30448. height: math.unit(800, "meters")
  30449. },
  30450. {
  30451. name: "Megamacro",
  30452. height: math.unit(100, "km")
  30453. },
  30454. {
  30455. name: "Overgrown",
  30456. height: math.unit(1, "parsec")
  30457. },
  30458. ]
  30459. ))
  30460. characterMakers.push(() => makeCharacter(
  30461. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30462. {
  30463. front: {
  30464. height: math.unit(2.5, "meters"),
  30465. weight: math.unit(225, "kg"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/iris/front.svg",
  30469. extra: 3348 / 3251,
  30470. bottom: 205 / 3553
  30471. }
  30472. },
  30473. maw: {
  30474. height: math.unit(0.56, "meter"),
  30475. name: "Maw",
  30476. image: {
  30477. source: "./media/characters/iris/maw.svg"
  30478. }
  30479. },
  30480. },
  30481. [
  30482. {
  30483. name: "Mewter cat",
  30484. height: math.unit(1.2, "meters")
  30485. },
  30486. {
  30487. name: "Minimacro",
  30488. height: math.unit(2.5, "meters"),
  30489. default: true
  30490. },
  30491. {
  30492. name: "Macro",
  30493. height: math.unit(180, "meters")
  30494. },
  30495. {
  30496. name: "Megamacro",
  30497. height: math.unit(2746, "meters")
  30498. },
  30499. ]
  30500. ))
  30501. characterMakers.push(() => makeCharacter(
  30502. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30503. {
  30504. front: {
  30505. height: math.unit(6, "feet"),
  30506. weight: math.unit(135, "lb"),
  30507. name: "Front",
  30508. image: {
  30509. source: "./media/characters/axel/front.svg",
  30510. extra: 908 / 908,
  30511. bottom: 58 / 966
  30512. }
  30513. },
  30514. side: {
  30515. height: math.unit(6, "feet"),
  30516. weight: math.unit(135, "lb"),
  30517. name: "Side",
  30518. image: {
  30519. source: "./media/characters/axel/side.svg",
  30520. extra: 958 / 958,
  30521. bottom: 11 / 969
  30522. }
  30523. },
  30524. back: {
  30525. height: math.unit(6, "feet"),
  30526. weight: math.unit(135, "lb"),
  30527. name: "Back",
  30528. image: {
  30529. source: "./media/characters/axel/back.svg",
  30530. extra: 887 / 887,
  30531. bottom: 34 / 921
  30532. }
  30533. },
  30534. head: {
  30535. height: math.unit(1.07, "feet"),
  30536. name: "Head",
  30537. image: {
  30538. source: "./media/characters/axel/head.svg"
  30539. }
  30540. },
  30541. beak: {
  30542. height: math.unit(1.4, "feet"),
  30543. name: "Beak",
  30544. image: {
  30545. source: "./media/characters/axel/beak.svg"
  30546. }
  30547. },
  30548. beakSide: {
  30549. height: math.unit(1.4, "feet"),
  30550. name: "Beak Side",
  30551. image: {
  30552. source: "./media/characters/axel/beak-side.svg"
  30553. }
  30554. },
  30555. sheath: {
  30556. height: math.unit(0.5, "feet"),
  30557. name: "Sheath",
  30558. image: {
  30559. source: "./media/characters/axel/sheath.svg"
  30560. }
  30561. },
  30562. dick: {
  30563. height: math.unit(0.98, "feet"),
  30564. name: "Dick",
  30565. image: {
  30566. source: "./media/characters/axel/dick.svg"
  30567. }
  30568. },
  30569. },
  30570. [
  30571. {
  30572. name: "Macro",
  30573. height: math.unit(68, "meters"),
  30574. default: true
  30575. },
  30576. ]
  30577. ))
  30578. characterMakers.push(() => makeCharacter(
  30579. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30580. {
  30581. front: {
  30582. height: math.unit(3.5, "meters"),
  30583. weight: math.unit(1200, "kg"),
  30584. name: "Front",
  30585. image: {
  30586. source: "./media/characters/joanna/front.svg",
  30587. extra: 1596 / 1488,
  30588. bottom: 29 / 1625
  30589. }
  30590. },
  30591. back: {
  30592. height: math.unit(3.5, "meters"),
  30593. weight: math.unit(1200, "kg"),
  30594. name: "Back",
  30595. image: {
  30596. source: "./media/characters/joanna/back.svg",
  30597. extra: 1594 / 1495,
  30598. bottom: 26 / 1620
  30599. }
  30600. },
  30601. frontShorts: {
  30602. height: math.unit(3.5, "meters"),
  30603. weight: math.unit(1200, "kg"),
  30604. name: "Front (Shorts)",
  30605. image: {
  30606. source: "./media/characters/joanna/front-shorts.svg",
  30607. extra: 1596 / 1488,
  30608. bottom: 29 / 1625
  30609. }
  30610. },
  30611. frontBiker: {
  30612. height: math.unit(3.5, "meters"),
  30613. weight: math.unit(1200, "kg"),
  30614. name: "Front (Biker)",
  30615. image: {
  30616. source: "./media/characters/joanna/front-biker.svg",
  30617. extra: 1596 / 1488,
  30618. bottom: 29 / 1625
  30619. }
  30620. },
  30621. backBiker: {
  30622. height: math.unit(3.5, "meters"),
  30623. weight: math.unit(1200, "kg"),
  30624. name: "Back (Biker)",
  30625. image: {
  30626. source: "./media/characters/joanna/back-biker.svg",
  30627. extra: 1594 / 1495,
  30628. bottom: 88 / 1682
  30629. }
  30630. },
  30631. bikeLeft: {
  30632. height: math.unit(2.4, "meters"),
  30633. weight: math.unit(1600, "kg"),
  30634. name: "Bike (Left)",
  30635. image: {
  30636. source: "./media/characters/joanna/bike-left.svg",
  30637. extra: 720 / 720,
  30638. bottom: 8 / 728
  30639. }
  30640. },
  30641. bikeRight: {
  30642. height: math.unit(2.4, "meters"),
  30643. weight: math.unit(1600, "kg"),
  30644. name: "Bike (Right)",
  30645. image: {
  30646. source: "./media/characters/joanna/bike-right.svg",
  30647. extra: 720 / 720,
  30648. bottom: 8 / 728
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Incognito",
  30655. height: math.unit(3.5, "meters")
  30656. },
  30657. {
  30658. name: "Casual Big",
  30659. height: math.unit(200, "meters")
  30660. },
  30661. {
  30662. name: "Macro",
  30663. height: math.unit(600, "meters")
  30664. },
  30665. {
  30666. name: "Original",
  30667. height: math.unit(20, "km"),
  30668. default: true
  30669. },
  30670. {
  30671. name: "Giga",
  30672. height: math.unit(400, "km")
  30673. },
  30674. {
  30675. name: "Lounging",
  30676. height: math.unit(1500, "km")
  30677. },
  30678. {
  30679. name: "Planetary",
  30680. height: math.unit(200000, "km")
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30686. {
  30687. front: {
  30688. height: math.unit(6, "feet"),
  30689. weight: math.unit(150, "lb"),
  30690. name: "Front",
  30691. image: {
  30692. source: "./media/characters/hugo-sigil/front.svg",
  30693. extra: 522 / 500,
  30694. bottom: 2 / 524
  30695. }
  30696. },
  30697. back: {
  30698. height: math.unit(6, "feet"),
  30699. weight: math.unit(150, "lb"),
  30700. name: "Back",
  30701. image: {
  30702. source: "./media/characters/hugo-sigil/back.svg",
  30703. extra: 519 / 495,
  30704. bottom: 5 / 524
  30705. }
  30706. },
  30707. maw: {
  30708. height: math.unit(1.4, "feet"),
  30709. weight: math.unit(150, "lb"),
  30710. name: "Maw",
  30711. image: {
  30712. source: "./media/characters/hugo-sigil/maw.svg"
  30713. }
  30714. },
  30715. feet: {
  30716. height: math.unit(1.56, "feet"),
  30717. weight: math.unit(150, "lb"),
  30718. name: "Feet",
  30719. image: {
  30720. source: "./media/characters/hugo-sigil/feet.svg",
  30721. extra: 177 / 177,
  30722. bottom: 12 / 189
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Normal",
  30729. height: math.unit(6, "feet")
  30730. },
  30731. {
  30732. name: "Macro",
  30733. height: math.unit(200, "feet"),
  30734. default: true
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(6, "feet"),
  30743. weight: math.unit(150, "lb"),
  30744. name: "Front",
  30745. image: {
  30746. source: "./media/characters/peri/front.svg",
  30747. extra: 2354 / 2233,
  30748. bottom: 49 / 2403
  30749. }
  30750. },
  30751. },
  30752. [
  30753. {
  30754. name: "Really Small",
  30755. height: math.unit(1, "nm")
  30756. },
  30757. {
  30758. name: "Micro",
  30759. height: math.unit(4, "inches")
  30760. },
  30761. {
  30762. name: "Normal",
  30763. height: math.unit(7, "inches"),
  30764. default: true
  30765. },
  30766. {
  30767. name: "Macro",
  30768. height: math.unit(400, "feet")
  30769. },
  30770. {
  30771. name: "Megamacro",
  30772. height: math.unit(100, "miles")
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30778. {
  30779. frontSlim: {
  30780. height: math.unit(7, "feet"),
  30781. name: "Front (Slim)",
  30782. image: {
  30783. source: "./media/characters/issilora/front-slim.svg",
  30784. extra: 529 / 449,
  30785. bottom: 53 / 582
  30786. }
  30787. },
  30788. sideSlim: {
  30789. height: math.unit(7, "feet"),
  30790. name: "Side (Slim)",
  30791. image: {
  30792. source: "./media/characters/issilora/side-slim.svg",
  30793. extra: 570 / 480,
  30794. bottom: 30 / 600
  30795. }
  30796. },
  30797. backSlim: {
  30798. height: math.unit(7, "feet"),
  30799. name: "Back (Slim)",
  30800. image: {
  30801. source: "./media/characters/issilora/back-slim.svg",
  30802. extra: 537 / 455,
  30803. bottom: 46 / 583
  30804. }
  30805. },
  30806. frontBuff: {
  30807. height: math.unit(7, "feet"),
  30808. name: "Front (Buff)",
  30809. image: {
  30810. source: "./media/characters/issilora/front-buff.svg",
  30811. extra: 2310 / 2035,
  30812. bottom: 335 / 2645
  30813. }
  30814. },
  30815. head: {
  30816. height: math.unit(1.94, "feet"),
  30817. name: "Head",
  30818. image: {
  30819. source: "./media/characters/issilora/head.svg"
  30820. }
  30821. },
  30822. },
  30823. [
  30824. {
  30825. name: "Minimum",
  30826. height: math.unit(7, "feet")
  30827. },
  30828. {
  30829. name: "Comfortable",
  30830. height: math.unit(17, "feet")
  30831. },
  30832. {
  30833. name: "Fun Size",
  30834. height: math.unit(47, "feet")
  30835. },
  30836. {
  30837. name: "Natural Macro",
  30838. height: math.unit(137, "feet"),
  30839. default: true
  30840. },
  30841. {
  30842. name: "Maximum Kaiju",
  30843. height: math.unit(397, "feet")
  30844. },
  30845. ]
  30846. ))
  30847. characterMakers.push(() => makeCharacter(
  30848. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30849. {
  30850. front: {
  30851. height: math.unit(50 + 9/12, "feet"),
  30852. weight: math.unit(32.8, "tons"),
  30853. name: "Front",
  30854. image: {
  30855. source: "./media/characters/irb'iiritaahn/front.svg",
  30856. extra: 1878/1826,
  30857. bottom: 326/2204
  30858. }
  30859. },
  30860. back: {
  30861. height: math.unit(50 + 9/12, "feet"),
  30862. weight: math.unit(32.8, "tons"),
  30863. name: "Back",
  30864. image: {
  30865. source: "./media/characters/irb'iiritaahn/back.svg",
  30866. extra: 2052/2018,
  30867. bottom: 152/2204
  30868. }
  30869. },
  30870. head: {
  30871. height: math.unit(12.86, "feet"),
  30872. name: "Head",
  30873. image: {
  30874. source: "./media/characters/irb'iiritaahn/head.svg"
  30875. }
  30876. },
  30877. maw: {
  30878. height: math.unit(9.66, "feet"),
  30879. name: "Maw",
  30880. image: {
  30881. source: "./media/characters/irb'iiritaahn/maw.svg"
  30882. }
  30883. },
  30884. frontDick: {
  30885. height: math.unit(8.78461, "feet"),
  30886. name: "Front Dick",
  30887. image: {
  30888. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30889. }
  30890. },
  30891. rearDick: {
  30892. height: math.unit(8.78461, "feet"),
  30893. name: "Rear Dick",
  30894. image: {
  30895. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30896. }
  30897. },
  30898. rearDickUnfolded: {
  30899. height: math.unit(8.78, "feet"),
  30900. name: "Rear Dick (Unfolded)",
  30901. image: {
  30902. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30903. }
  30904. },
  30905. wings: {
  30906. height: math.unit(43, "feet"),
  30907. name: "Wings",
  30908. image: {
  30909. source: "./media/characters/irb'iiritaahn/wings.svg"
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Macro",
  30916. height: math.unit(50 + 9/12, "feet"),
  30917. default: true
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30923. {
  30924. front: {
  30925. height: math.unit(205, "cm"),
  30926. weight: math.unit(102, "kg"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/irbisgreif/front.svg",
  30930. extra: 785/706,
  30931. bottom: 13/798
  30932. }
  30933. },
  30934. back: {
  30935. height: math.unit(205, "cm"),
  30936. weight: math.unit(102, "kg"),
  30937. name: "Back",
  30938. image: {
  30939. source: "./media/characters/irbisgreif/back.svg",
  30940. extra: 713/701,
  30941. bottom: 26/739
  30942. }
  30943. },
  30944. frontDressed: {
  30945. height: math.unit(216, "cm"),
  30946. weight: math.unit(102, "kg"),
  30947. name: "Front-dressed",
  30948. image: {
  30949. source: "./media/characters/irbisgreif/front-dressed.svg",
  30950. extra: 902/776,
  30951. bottom: 14/916
  30952. }
  30953. },
  30954. sideDressed: {
  30955. height: math.unit(195, "cm"),
  30956. weight: math.unit(102, "kg"),
  30957. name: "Side-dressed",
  30958. image: {
  30959. source: "./media/characters/irbisgreif/side-dressed.svg",
  30960. extra: 788/688,
  30961. bottom: 21/809
  30962. }
  30963. },
  30964. backDressed: {
  30965. height: math.unit(216, "cm"),
  30966. weight: math.unit(102, "kg"),
  30967. name: "Back-dressed",
  30968. image: {
  30969. source: "./media/characters/irbisgreif/back-dressed.svg",
  30970. extra: 901/783,
  30971. bottom: 10/911
  30972. }
  30973. },
  30974. dick: {
  30975. height: math.unit(0.49, "feet"),
  30976. name: "Dick",
  30977. image: {
  30978. source: "./media/characters/irbisgreif/dick.svg"
  30979. }
  30980. },
  30981. wingTop: {
  30982. height: math.unit(1.93 , "feet"),
  30983. name: "Wing-top",
  30984. image: {
  30985. source: "./media/characters/irbisgreif/wing-top.svg"
  30986. }
  30987. },
  30988. wingBottom: {
  30989. height: math.unit(1.93 , "feet"),
  30990. name: "Wing-bottom",
  30991. image: {
  30992. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(216, "cm"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(6, "feet"),
  31009. weight: math.unit(150, "lb"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/pride/front.svg",
  31013. extra: 1299/1230,
  31014. bottom: 18/1317
  31015. }
  31016. },
  31017. },
  31018. [
  31019. {
  31020. name: "Normal",
  31021. height: math.unit(7, "feet")
  31022. },
  31023. {
  31024. name: "Mini-macro",
  31025. height: math.unit(11, "feet")
  31026. },
  31027. {
  31028. name: "Macro",
  31029. height: math.unit(15, "meters"),
  31030. default: true
  31031. },
  31032. {
  31033. name: "Macro+",
  31034. height: math.unit(40, "meters")
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31040. {
  31041. front: {
  31042. height: math.unit(4 + 2 / 12, "feet"),
  31043. weight: math.unit(95, "lb"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/vaelophis-nyx/front.svg",
  31047. extra: 2532/2330,
  31048. bottom: 0/2532
  31049. }
  31050. },
  31051. back: {
  31052. height: math.unit(4 + 2 / 12, "feet"),
  31053. weight: math.unit(95, "lb"),
  31054. name: "Back",
  31055. image: {
  31056. source: "./media/characters/vaelophis-nyx/back.svg",
  31057. extra: 2484/2361,
  31058. bottom: 0/2484
  31059. }
  31060. },
  31061. feralSide: {
  31062. height: math.unit(2 + 1/12, "feet"),
  31063. weight: math.unit(20, "lb"),
  31064. name: "Feral (Side)",
  31065. image: {
  31066. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31067. extra: 1721/1581,
  31068. bottom: 70/1791
  31069. }
  31070. },
  31071. feralLazing: {
  31072. height: math.unit(1.08, "feet"),
  31073. weight: math.unit(20, "lb"),
  31074. name: "Feral (Lazing)",
  31075. image: {
  31076. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31077. extra: 822/822,
  31078. bottom: 248/1070
  31079. }
  31080. },
  31081. ear: {
  31082. height: math.unit(0.416, "feet"),
  31083. name: "Ear",
  31084. image: {
  31085. source: "./media/characters/vaelophis-nyx/ear.svg"
  31086. }
  31087. },
  31088. eye: {
  31089. height: math.unit(0.0748, "feet"),
  31090. name: "Eye",
  31091. image: {
  31092. source: "./media/characters/vaelophis-nyx/eye.svg"
  31093. }
  31094. },
  31095. mouth: {
  31096. height: math.unit(0.378, "feet"),
  31097. name: "Mouth",
  31098. image: {
  31099. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31100. }
  31101. },
  31102. spade: {
  31103. height: math.unit(0.55, "feet"),
  31104. name: "Spade",
  31105. image: {
  31106. source: "./media/characters/vaelophis-nyx/spade.svg"
  31107. }
  31108. },
  31109. },
  31110. [
  31111. {
  31112. name: "Normal",
  31113. height: math.unit(4 + 2/12, "feet"),
  31114. default: true
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31120. {
  31121. front: {
  31122. height: math.unit(7, "feet"),
  31123. weight: math.unit(231, "lb"),
  31124. name: "Front",
  31125. image: {
  31126. source: "./media/characters/flux/front.svg",
  31127. extra: 919/871,
  31128. bottom: 0/919
  31129. }
  31130. },
  31131. back: {
  31132. height: math.unit(7, "feet"),
  31133. weight: math.unit(231, "lb"),
  31134. name: "Back",
  31135. image: {
  31136. source: "./media/characters/flux/back.svg",
  31137. extra: 1040/992,
  31138. bottom: 0/1040
  31139. }
  31140. },
  31141. frontDressed: {
  31142. height: math.unit(7, "feet"),
  31143. weight: math.unit(231, "lb"),
  31144. name: "Front (Dressed)",
  31145. image: {
  31146. source: "./media/characters/flux/front-dressed.svg",
  31147. extra: 919/871,
  31148. bottom: 0/919
  31149. }
  31150. },
  31151. feralSide: {
  31152. height: math.unit(5, "feet"),
  31153. weight: math.unit(150, "lb"),
  31154. name: "Feral (Side)",
  31155. image: {
  31156. source: "./media/characters/flux/feral-side.svg",
  31157. extra: 598/528,
  31158. bottom: 28/626
  31159. }
  31160. },
  31161. head: {
  31162. height: math.unit(1.585, "feet"),
  31163. name: "Head",
  31164. image: {
  31165. source: "./media/characters/flux/head.svg"
  31166. }
  31167. },
  31168. headSide: {
  31169. height: math.unit(1.74, "feet"),
  31170. name: "Head (Side)",
  31171. image: {
  31172. source: "./media/characters/flux/head-side.svg"
  31173. }
  31174. },
  31175. headSideFire: {
  31176. height: math.unit(1.76, "feet"),
  31177. name: "Head (Side, Fire)",
  31178. image: {
  31179. source: "./media/characters/flux/head-side-fire.svg"
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Normal",
  31186. height: math.unit(7, "feet"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(9, "feet"),
  31196. weight: math.unit(1012, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/ulfra-lupae/front.svg",
  31200. extra: 1083/1011,
  31201. bottom: 67/1150
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Micro",
  31208. height: math.unit(6, "inches")
  31209. },
  31210. {
  31211. name: "Socializing",
  31212. height: math.unit(6 + 5/12, "feet")
  31213. },
  31214. {
  31215. name: "Normal",
  31216. height: math.unit(9, "feet"),
  31217. default: true
  31218. },
  31219. {
  31220. name: "Macro",
  31221. height: math.unit(150, "feet")
  31222. },
  31223. ]
  31224. ))
  31225. characterMakers.push(() => makeCharacter(
  31226. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31227. {
  31228. front: {
  31229. height: math.unit(5 + 2/12, "feet"),
  31230. weight: math.unit(120, "lb"),
  31231. name: "Front",
  31232. image: {
  31233. source: "./media/characters/timber/front.svg",
  31234. extra: 2814/2705,
  31235. bottom: 181/2995
  31236. }
  31237. },
  31238. },
  31239. [
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(5 + 2/12, "feet"),
  31243. default: true
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31249. {
  31250. front: {
  31251. height: math.unit(5 + 7/12, "feet"),
  31252. weight: math.unit(220, "lb"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/nicki/front.svg",
  31256. extra: 453/419,
  31257. bottom: 7/460
  31258. }
  31259. },
  31260. frontAlt: {
  31261. height: math.unit(5 + 7/12, "feet"),
  31262. weight: math.unit(220, "lb"),
  31263. name: "Front-alt",
  31264. image: {
  31265. source: "./media/characters/nicki/front-alt.svg",
  31266. extra: 435/411,
  31267. bottom: 12/447
  31268. }
  31269. },
  31270. back: {
  31271. height: math.unit(5 + 7/12, "feet"),
  31272. weight: math.unit(220, "lb"),
  31273. name: "Back",
  31274. image: {
  31275. source: "./media/characters/nicki/back.svg",
  31276. extra: 440/413,
  31277. bottom: 19/459
  31278. }
  31279. },
  31280. taur: {
  31281. height: math.unit(7 + 6/12, "feet"),
  31282. weight: math.unit(700, "lb"),
  31283. name: "Taur",
  31284. image: {
  31285. source: "./media/characters/nicki/taur.svg",
  31286. extra: 975/773,
  31287. bottom: 0/975
  31288. }
  31289. },
  31290. frontNsfw: {
  31291. height: math.unit(5 + 7/12, "feet"),
  31292. weight: math.unit(220, "lb"),
  31293. name: "Front (NSFW)",
  31294. image: {
  31295. source: "./media/characters/nicki/front-nsfw.svg",
  31296. extra: 453/419,
  31297. bottom: 7/460
  31298. }
  31299. },
  31300. frontNsfwAlt: {
  31301. height: math.unit(5 + 7/12, "feet"),
  31302. weight: math.unit(220, "lb"),
  31303. name: "Front (Alt, NSFW)",
  31304. image: {
  31305. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31306. extra: 435/411,
  31307. bottom: 12/447
  31308. }
  31309. },
  31310. backNsfw: {
  31311. height: math.unit(5 + 7/12, "feet"),
  31312. weight: math.unit(220, "lb"),
  31313. name: "Back (NSFW)",
  31314. image: {
  31315. source: "./media/characters/nicki/back-nsfw.svg",
  31316. extra: 440/413,
  31317. bottom: 19/459
  31318. }
  31319. },
  31320. head: {
  31321. height: math.unit(2.1, "feet"),
  31322. name: "Head",
  31323. image: {
  31324. source: "./media/characters/nicki/head.svg"
  31325. }
  31326. },
  31327. paw: {
  31328. height: math.unit(1.88, "feet"),
  31329. name: "Paw",
  31330. image: {
  31331. source: "./media/characters/nicki/paw.svg"
  31332. }
  31333. },
  31334. },
  31335. [
  31336. {
  31337. name: "Normal",
  31338. height: math.unit(5 + 7/12, "feet"),
  31339. default: true
  31340. },
  31341. ]
  31342. ))
  31343. characterMakers.push(() => makeCharacter(
  31344. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31345. {
  31346. front: {
  31347. height: math.unit(7 + 10/12, "feet"),
  31348. weight: math.unit(3.5, "tons"),
  31349. name: "Front",
  31350. image: {
  31351. source: "./media/characters/lee/front.svg",
  31352. extra: 1773/1615,
  31353. bottom: 86/1859
  31354. }
  31355. },
  31356. hand: {
  31357. height: math.unit(1.78, "feet"),
  31358. name: "Hand",
  31359. image: {
  31360. source: "./media/characters/lee/hand.svg"
  31361. }
  31362. },
  31363. maw: {
  31364. height: math.unit(1.18, "feet"),
  31365. name: "Maw",
  31366. image: {
  31367. source: "./media/characters/lee/maw.svg"
  31368. }
  31369. },
  31370. },
  31371. [
  31372. {
  31373. name: "Normal",
  31374. height: math.unit(7 + 10/12, "feet"),
  31375. default: true
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31381. {
  31382. front: {
  31383. height: math.unit(9, "feet"),
  31384. name: "Front",
  31385. image: {
  31386. source: "./media/characters/guti/front.svg",
  31387. extra: 4551/4355,
  31388. bottom: 123/4674
  31389. }
  31390. },
  31391. tongue: {
  31392. height: math.unit(1, "feet"),
  31393. name: "Tongue",
  31394. image: {
  31395. source: "./media/characters/guti/tongue.svg"
  31396. }
  31397. },
  31398. paw: {
  31399. height: math.unit(1.18, "feet"),
  31400. name: "Paw",
  31401. image: {
  31402. source: "./media/characters/guti/paw.svg"
  31403. }
  31404. },
  31405. },
  31406. [
  31407. {
  31408. name: "Normal",
  31409. height: math.unit(9, "feet"),
  31410. default: true
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31416. {
  31417. side: {
  31418. height: math.unit(5, "meters"),
  31419. name: "Side",
  31420. image: {
  31421. source: "./media/characters/vesper/side.svg",
  31422. extra: 1605/1518,
  31423. bottom: 0/1605
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Small",
  31430. height: math.unit(5, "meters")
  31431. },
  31432. {
  31433. name: "Sage",
  31434. height: math.unit(100, "meters"),
  31435. default: true
  31436. },
  31437. {
  31438. name: "Fun Size",
  31439. height: math.unit(600, "meters")
  31440. },
  31441. {
  31442. name: "Goddess",
  31443. height: math.unit(20000, "km")
  31444. },
  31445. {
  31446. name: "Maximum",
  31447. height: math.unit(5, "galaxies")
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31453. {
  31454. front: {
  31455. height: math.unit(6 + 3/12, "feet"),
  31456. weight: math.unit(190, "lb"),
  31457. name: "Front",
  31458. image: {
  31459. source: "./media/characters/gawain/front.svg",
  31460. extra: 2222/2139,
  31461. bottom: 90/2312
  31462. }
  31463. },
  31464. back: {
  31465. height: math.unit(6 + 3/12, "feet"),
  31466. weight: math.unit(190, "lb"),
  31467. name: "Back",
  31468. image: {
  31469. source: "./media/characters/gawain/back.svg",
  31470. extra: 2199/2111,
  31471. bottom: 73/2272
  31472. }
  31473. },
  31474. },
  31475. [
  31476. {
  31477. name: "Normal",
  31478. height: math.unit(6 + 3/12, "feet"),
  31479. default: true
  31480. },
  31481. ]
  31482. ))
  31483. characterMakers.push(() => makeCharacter(
  31484. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31485. {
  31486. side: {
  31487. height: math.unit(3.5, "meters"),
  31488. weight: math.unit(16000, "lb"),
  31489. name: "Side",
  31490. image: {
  31491. source: "./media/characters/dascalti/side.svg",
  31492. extra: 392/273,
  31493. bottom: 47/439
  31494. }
  31495. },
  31496. breath: {
  31497. height: math.unit(7.4, "feet"),
  31498. name: "Breath",
  31499. image: {
  31500. source: "./media/characters/dascalti/breath.svg"
  31501. }
  31502. },
  31503. fed: {
  31504. height: math.unit(3.6, "meters"),
  31505. weight: math.unit(16000, "lb"),
  31506. name: "Fed",
  31507. image: {
  31508. source: "./media/characters/dascalti/fed.svg",
  31509. extra: 1419/820,
  31510. bottom: 95/1514
  31511. }
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Normal",
  31517. height: math.unit(3.5, "meters"),
  31518. default: true
  31519. },
  31520. ]
  31521. ))
  31522. characterMakers.push(() => makeCharacter(
  31523. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31524. {
  31525. front: {
  31526. height: math.unit(3 + 5/12, "feet"),
  31527. name: "Front",
  31528. image: {
  31529. source: "./media/characters/mauve/front.svg",
  31530. extra: 1126/1033,
  31531. bottom: 65/1191
  31532. }
  31533. },
  31534. side: {
  31535. height: math.unit(3 + 5/12, "feet"),
  31536. name: "Side",
  31537. image: {
  31538. source: "./media/characters/mauve/side.svg",
  31539. extra: 1089/1001,
  31540. bottom: 29/1118
  31541. }
  31542. },
  31543. back: {
  31544. height: math.unit(3 + 5/12, "feet"),
  31545. name: "Back",
  31546. image: {
  31547. source: "./media/characters/mauve/back.svg",
  31548. extra: 1173/1053,
  31549. bottom: 109/1282
  31550. }
  31551. },
  31552. },
  31553. [
  31554. {
  31555. name: "Normal",
  31556. height: math.unit(3 + 5/12, "feet"),
  31557. default: true
  31558. },
  31559. ]
  31560. ))
  31561. characterMakers.push(() => makeCharacter(
  31562. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31563. {
  31564. front: {
  31565. height: math.unit(6 + 3/12, "feet"),
  31566. weight: math.unit(430, "lb"),
  31567. name: "Front",
  31568. image: {
  31569. source: "./media/characters/carlos/front.svg",
  31570. extra: 1964/1913,
  31571. bottom: 70/2034
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Normal",
  31578. height: math.unit(6 + 3/12, "feet"),
  31579. default: true
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31585. {
  31586. back: {
  31587. height: math.unit(5 + 10/12, "feet"),
  31588. weight: math.unit(200, "lb"),
  31589. name: "Back",
  31590. image: {
  31591. source: "./media/characters/jax/back.svg",
  31592. extra: 764/739,
  31593. bottom: 25/789
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Normal",
  31600. height: math.unit(5 + 10/12, "feet"),
  31601. default: true
  31602. },
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31607. {
  31608. front: {
  31609. height: math.unit(8, "feet"),
  31610. weight: math.unit(250, "lb"),
  31611. name: "Front",
  31612. image: {
  31613. source: "./media/characters/eikthynir/front.svg",
  31614. extra: 1332/1166,
  31615. bottom: 82/1414
  31616. }
  31617. },
  31618. back: {
  31619. height: math.unit(8, "feet"),
  31620. weight: math.unit(250, "lb"),
  31621. name: "Back",
  31622. image: {
  31623. source: "./media/characters/eikthynir/back.svg",
  31624. extra: 1342/1190,
  31625. bottom: 19/1361
  31626. }
  31627. },
  31628. dick: {
  31629. height: math.unit(2.35, "feet"),
  31630. name: "Dick",
  31631. image: {
  31632. source: "./media/characters/eikthynir/dick.svg"
  31633. }
  31634. },
  31635. },
  31636. [
  31637. {
  31638. name: "Normal",
  31639. height: math.unit(8, "feet"),
  31640. default: true
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(99, "meters"),
  31649. weight: math.unit(13000, "tons"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/zlmos/front.svg",
  31653. extra: 2202/1992,
  31654. bottom: 315/2517
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Macro",
  31661. height: math.unit(99, "meters"),
  31662. default: true
  31663. },
  31664. ]
  31665. ))
  31666. characterMakers.push(() => makeCharacter(
  31667. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31668. {
  31669. front: {
  31670. height: math.unit(6 + 5/12, "feet"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/purri/front.svg",
  31674. extra: 1698/1610,
  31675. bottom: 32/1730
  31676. }
  31677. },
  31678. frontAlt: {
  31679. height: math.unit(6 + 5/12, "feet"),
  31680. name: "Front (Alt)",
  31681. image: {
  31682. source: "./media/characters/purri/front-alt.svg",
  31683. extra: 450/420,
  31684. bottom: 26/476
  31685. }
  31686. },
  31687. boots: {
  31688. height: math.unit(5.5, "feet"),
  31689. name: "Boots",
  31690. image: {
  31691. source: "./media/characters/purri/boots.svg",
  31692. extra: 905/853,
  31693. bottom: 18/923
  31694. }
  31695. },
  31696. lying: {
  31697. height: math.unit(2, "feet"),
  31698. name: "Lying",
  31699. image: {
  31700. source: "./media/characters/purri/lying.svg",
  31701. extra: 940/843,
  31702. bottom: 146/1086
  31703. }
  31704. },
  31705. devious: {
  31706. height: math.unit(1.77, "feet"),
  31707. name: "Devious",
  31708. image: {
  31709. source: "./media/characters/purri/devious.svg",
  31710. extra: 1440/1155,
  31711. bottom: 147/1587
  31712. }
  31713. },
  31714. bean: {
  31715. height: math.unit(1.94, "feet"),
  31716. name: "Bean",
  31717. image: {
  31718. source: "./media/characters/purri/bean.svg"
  31719. }
  31720. },
  31721. },
  31722. [
  31723. {
  31724. name: "Micro",
  31725. height: math.unit(1, "mm")
  31726. },
  31727. {
  31728. name: "Normal",
  31729. height: math.unit(6 + 5/12, "feet"),
  31730. default: true
  31731. },
  31732. {
  31733. name: "Macro :3c",
  31734. height: math.unit(2, "miles")
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31740. {
  31741. front: {
  31742. height: math.unit(6 + 2/12, "feet"),
  31743. weight: math.unit(250, "lb"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/moonlight/front.svg",
  31747. extra: 1044/908,
  31748. bottom: 56/1100
  31749. }
  31750. },
  31751. feral: {
  31752. height: math.unit(3 + 1/12, "feet"),
  31753. weight: math.unit(50, "kg"),
  31754. name: "Feral",
  31755. image: {
  31756. source: "./media/characters/moonlight/feral.svg",
  31757. extra: 3705/2791,
  31758. bottom: 145/3850
  31759. }
  31760. },
  31761. paw: {
  31762. height: math.unit(1, "feet"),
  31763. name: "Paw",
  31764. image: {
  31765. source: "./media/characters/moonlight/paw.svg"
  31766. }
  31767. },
  31768. paws: {
  31769. height: math.unit(0.98, "feet"),
  31770. name: "Paws",
  31771. image: {
  31772. source: "./media/characters/moonlight/paws.svg",
  31773. extra: 939/939,
  31774. bottom: 50/989
  31775. }
  31776. },
  31777. mouth: {
  31778. height: math.unit(0.48, "feet"),
  31779. name: "Mouth",
  31780. image: {
  31781. source: "./media/characters/moonlight/mouth.svg"
  31782. }
  31783. },
  31784. dick: {
  31785. height: math.unit(1.46, "feet"),
  31786. name: "Dick",
  31787. image: {
  31788. source: "./media/characters/moonlight/dick.svg"
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(6 + 2/12, "feet"),
  31796. default: true
  31797. },
  31798. {
  31799. name: "Macro",
  31800. height: math.unit(300, "feet")
  31801. },
  31802. {
  31803. name: "Macro+",
  31804. height: math.unit(1, "mile")
  31805. },
  31806. {
  31807. name: "Mt. Moon",
  31808. height: math.unit(5, "miles")
  31809. },
  31810. {
  31811. name: "Megamacro",
  31812. height: math.unit(15, "miles")
  31813. },
  31814. ]
  31815. ))
  31816. characterMakers.push(() => makeCharacter(
  31817. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31818. {
  31819. back: {
  31820. height: math.unit(6, "feet"),
  31821. weight: math.unit(150, "lb"),
  31822. name: "Back",
  31823. image: {
  31824. source: "./media/characters/sylen/back.svg",
  31825. extra: 1335/1273,
  31826. bottom: 107/1442
  31827. }
  31828. },
  31829. },
  31830. [
  31831. {
  31832. name: "Normal",
  31833. height: math.unit(5 + 5/12, "feet")
  31834. },
  31835. {
  31836. name: "Megamacro",
  31837. height: math.unit(3, "miles"),
  31838. default: true
  31839. },
  31840. ]
  31841. ))
  31842. characterMakers.push(() => makeCharacter(
  31843. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31844. {
  31845. front: {
  31846. height: math.unit(6, "feet"),
  31847. weight: math.unit(190, "lb"),
  31848. name: "Front",
  31849. image: {
  31850. source: "./media/characters/huttser/front.svg",
  31851. extra: 1152/1058,
  31852. bottom: 23/1175
  31853. }
  31854. },
  31855. side: {
  31856. height: math.unit(6, "feet"),
  31857. weight: math.unit(190, "lb"),
  31858. name: "Side",
  31859. image: {
  31860. source: "./media/characters/huttser/side.svg",
  31861. extra: 1174/1065,
  31862. bottom: 18/1192
  31863. }
  31864. },
  31865. back: {
  31866. height: math.unit(6, "feet"),
  31867. weight: math.unit(190, "lb"),
  31868. name: "Back",
  31869. image: {
  31870. source: "./media/characters/huttser/back.svg",
  31871. extra: 1158/1056,
  31872. bottom: 12/1170
  31873. }
  31874. },
  31875. },
  31876. [
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31881. {
  31882. side: {
  31883. height: math.unit(12 + 9/12, "feet"),
  31884. weight: math.unit(15000, "lb"),
  31885. name: "Side",
  31886. image: {
  31887. source: "./media/characters/faan/side.svg",
  31888. extra: 2747/2697,
  31889. bottom: 0/2747
  31890. }
  31891. },
  31892. front: {
  31893. height: math.unit(12 + 9/12, "feet"),
  31894. weight: math.unit(15000, "lb"),
  31895. name: "Front",
  31896. image: {
  31897. source: "./media/characters/faan/front.svg",
  31898. extra: 607/571,
  31899. bottom: 24/631
  31900. }
  31901. },
  31902. head: {
  31903. height: math.unit(2.85, "feet"),
  31904. name: "Head",
  31905. image: {
  31906. source: "./media/characters/faan/head.svg"
  31907. }
  31908. },
  31909. headAlt: {
  31910. height: math.unit(3.13, "feet"),
  31911. name: "Head-alt",
  31912. image: {
  31913. source: "./media/characters/faan/head-alt.svg"
  31914. }
  31915. },
  31916. },
  31917. [
  31918. {
  31919. name: "Normal",
  31920. height: math.unit(12 + 9/12, "feet"),
  31921. default: true
  31922. },
  31923. ]
  31924. ))
  31925. characterMakers.push(() => makeCharacter(
  31926. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31927. {
  31928. front: {
  31929. height: math.unit(6, "feet"),
  31930. weight: math.unit(300, "lb"),
  31931. name: "Front",
  31932. image: {
  31933. source: "./media/characters/tanio/front.svg",
  31934. extra: 711/673,
  31935. bottom: 25/736
  31936. }
  31937. },
  31938. },
  31939. [
  31940. {
  31941. name: "Normal",
  31942. height: math.unit(6, "feet"),
  31943. default: true
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31949. {
  31950. front: {
  31951. height: math.unit(3, "inches"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/noboru/front.svg",
  31955. extra: 1039/932,
  31956. bottom: 18/1057
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Micro",
  31963. height: math.unit(3, "inches"),
  31964. default: true
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31970. {
  31971. front: {
  31972. height: math.unit(1.85, "meters"),
  31973. weight: math.unit(80, "kg"),
  31974. name: "Front",
  31975. image: {
  31976. source: "./media/characters/daniel-barrett/front.svg",
  31977. extra: 355/337,
  31978. bottom: 9/364
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Pico",
  31985. height: math.unit(0.0433, "mm")
  31986. },
  31987. {
  31988. name: "Nano",
  31989. height: math.unit(1.5, "mm")
  31990. },
  31991. {
  31992. name: "Micro",
  31993. height: math.unit(5.3, "cm"),
  31994. default: true
  31995. },
  31996. {
  31997. name: "Normal",
  31998. height: math.unit(1.85, "meters")
  31999. },
  32000. {
  32001. name: "Macro",
  32002. height: math.unit(64.7, "meters")
  32003. },
  32004. {
  32005. name: "Megamacro",
  32006. height: math.unit(2.26, "km")
  32007. },
  32008. {
  32009. name: "Gigamacro",
  32010. height: math.unit(79, "km")
  32011. },
  32012. {
  32013. name: "Teramacro",
  32014. height: math.unit(2765, "km")
  32015. },
  32016. {
  32017. name: "Petamacro",
  32018. height: math.unit(96678, "km")
  32019. },
  32020. ]
  32021. ))
  32022. characterMakers.push(() => makeCharacter(
  32023. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32024. {
  32025. front: {
  32026. height: math.unit(30, "meters"),
  32027. weight: math.unit(400, "tons"),
  32028. name: "Front",
  32029. image: {
  32030. source: "./media/characters/zeel/front.svg",
  32031. extra: 2599/2599,
  32032. bottom: 226/2825
  32033. }
  32034. },
  32035. },
  32036. [
  32037. {
  32038. name: "Macro",
  32039. height: math.unit(30, "meters"),
  32040. default: true
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32046. {
  32047. front: {
  32048. height: math.unit(6 + 7/12, "feet"),
  32049. weight: math.unit(210, "lb"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/tarn/front.svg",
  32053. extra: 3517/3220,
  32054. bottom: 91/3608
  32055. }
  32056. },
  32057. back: {
  32058. height: math.unit(6 + 7/12, "feet"),
  32059. weight: math.unit(210, "lb"),
  32060. name: "Back",
  32061. image: {
  32062. source: "./media/characters/tarn/back.svg",
  32063. extra: 3566/3241,
  32064. bottom: 34/3600
  32065. }
  32066. },
  32067. dick: {
  32068. height: math.unit(1.65, "feet"),
  32069. name: "Dick",
  32070. image: {
  32071. source: "./media/characters/tarn/dick.svg"
  32072. }
  32073. },
  32074. paw: {
  32075. height: math.unit(1.80, "feet"),
  32076. name: "Paw",
  32077. image: {
  32078. source: "./media/characters/tarn/paw.svg"
  32079. }
  32080. },
  32081. tongue: {
  32082. height: math.unit(0.97, "feet"),
  32083. name: "Tongue",
  32084. image: {
  32085. source: "./media/characters/tarn/tongue.svg"
  32086. }
  32087. },
  32088. },
  32089. [
  32090. {
  32091. name: "Micro",
  32092. height: math.unit(4, "inches")
  32093. },
  32094. {
  32095. name: "Normal",
  32096. height: math.unit(6 + 7/12, "feet"),
  32097. default: true
  32098. },
  32099. {
  32100. name: "Macro",
  32101. height: math.unit(300, "feet")
  32102. },
  32103. ]
  32104. ))
  32105. characterMakers.push(() => makeCharacter(
  32106. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32107. {
  32108. front: {
  32109. height: math.unit(5 + 7/12, "feet"),
  32110. weight: math.unit(80, "kg"),
  32111. name: "Front",
  32112. image: {
  32113. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32114. extra: 3023/2865,
  32115. bottom: 33/3056
  32116. }
  32117. },
  32118. back: {
  32119. height: math.unit(5 + 7/12, "feet"),
  32120. weight: math.unit(80, "kg"),
  32121. name: "Back",
  32122. image: {
  32123. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32124. extra: 3020/2886,
  32125. bottom: 30/3050
  32126. }
  32127. },
  32128. dick: {
  32129. height: math.unit(0.98, "feet"),
  32130. name: "Dick",
  32131. image: {
  32132. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32133. }
  32134. },
  32135. anatomy: {
  32136. height: math.unit(2.86, "feet"),
  32137. name: "Anatomy",
  32138. image: {
  32139. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32140. }
  32141. },
  32142. },
  32143. [
  32144. {
  32145. name: "Really Small",
  32146. height: math.unit(2, "inches")
  32147. },
  32148. {
  32149. name: "Micro",
  32150. height: math.unit(5.583, "inches")
  32151. },
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(5 + 7/12, "feet"),
  32155. default: true
  32156. },
  32157. {
  32158. name: "Macro",
  32159. height: math.unit(67, "feet")
  32160. },
  32161. {
  32162. name: "Megamacro",
  32163. height: math.unit(134, "feet")
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32169. {
  32170. front: {
  32171. height: math.unit(9, "feet"),
  32172. weight: math.unit(120, "lb"),
  32173. name: "Front",
  32174. image: {
  32175. source: "./media/characters/sally/front.svg",
  32176. extra: 1506/1349,
  32177. bottom: 66/1572
  32178. }
  32179. },
  32180. },
  32181. [
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(9, "feet"),
  32185. default: true
  32186. },
  32187. ]
  32188. ))
  32189. characterMakers.push(() => makeCharacter(
  32190. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32191. {
  32192. front: {
  32193. height: math.unit(8, "feet"),
  32194. weight: math.unit(900, "lb"),
  32195. name: "Front",
  32196. image: {
  32197. source: "./media/characters/owen/front.svg",
  32198. extra: 1761/1657,
  32199. bottom: 74/1835
  32200. }
  32201. },
  32202. side: {
  32203. height: math.unit(8, "feet"),
  32204. weight: math.unit(900, "lb"),
  32205. name: "Side",
  32206. image: {
  32207. source: "./media/characters/owen/side.svg",
  32208. extra: 1797/1734,
  32209. bottom: 30/1827
  32210. }
  32211. },
  32212. back: {
  32213. height: math.unit(8, "feet"),
  32214. weight: math.unit(900, "lb"),
  32215. name: "Back",
  32216. image: {
  32217. source: "./media/characters/owen/back.svg",
  32218. extra: 1796/1706,
  32219. bottom: 59/1855
  32220. }
  32221. },
  32222. maw: {
  32223. height: math.unit(1.76, "feet"),
  32224. name: "Maw",
  32225. image: {
  32226. source: "./media/characters/owen/maw.svg"
  32227. }
  32228. },
  32229. },
  32230. [
  32231. {
  32232. name: "Normal",
  32233. height: math.unit(8, "feet"),
  32234. default: true
  32235. },
  32236. ]
  32237. ))
  32238. characterMakers.push(() => makeCharacter(
  32239. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32240. {
  32241. front: {
  32242. height: math.unit(4, "feet"),
  32243. weight: math.unit(400, "lb"),
  32244. name: "Front",
  32245. image: {
  32246. source: "./media/characters/ryth/front.svg",
  32247. extra: 1920/1748,
  32248. bottom: 42/1962
  32249. }
  32250. },
  32251. back: {
  32252. height: math.unit(4, "feet"),
  32253. weight: math.unit(400, "lb"),
  32254. name: "Back",
  32255. image: {
  32256. source: "./media/characters/ryth/back.svg",
  32257. extra: 1897/1690,
  32258. bottom: 89/1986
  32259. }
  32260. },
  32261. mouth: {
  32262. height: math.unit(1.39, "feet"),
  32263. name: "Mouth",
  32264. image: {
  32265. source: "./media/characters/ryth/mouth.svg"
  32266. }
  32267. },
  32268. tailmaw: {
  32269. height: math.unit(1.23, "feet"),
  32270. name: "Tailmaw",
  32271. image: {
  32272. source: "./media/characters/ryth/tailmaw.svg"
  32273. }
  32274. },
  32275. goia: {
  32276. height: math.unit(4, "meters"),
  32277. weight: math.unit(10800, "lb"),
  32278. name: "Goia",
  32279. image: {
  32280. source: "./media/characters/ryth/goia.svg",
  32281. extra: 745/640,
  32282. bottom: 107/852
  32283. }
  32284. },
  32285. goiaFront: {
  32286. height: math.unit(4, "meters"),
  32287. weight: math.unit(10800, "lb"),
  32288. name: "Goia (Front)",
  32289. image: {
  32290. source: "./media/characters/ryth/goia-front.svg",
  32291. extra: 750/586,
  32292. bottom: 114/864
  32293. }
  32294. },
  32295. goiaMaw: {
  32296. height: math.unit(5.55, "feet"),
  32297. name: "Goia Maw",
  32298. image: {
  32299. source: "./media/characters/ryth/goia-maw.svg"
  32300. }
  32301. },
  32302. goiaForepaw: {
  32303. height: math.unit(3.5, "feet"),
  32304. name: "Goia Forepaw",
  32305. image: {
  32306. source: "./media/characters/ryth/goia-forepaw.svg"
  32307. }
  32308. },
  32309. goiaHindpaw: {
  32310. height: math.unit(5.55, "feet"),
  32311. name: "Goia Hindpaw",
  32312. image: {
  32313. source: "./media/characters/ryth/goia-hindpaw.svg"
  32314. }
  32315. },
  32316. },
  32317. [
  32318. {
  32319. name: "Normal",
  32320. height: math.unit(4, "feet"),
  32321. default: true
  32322. },
  32323. ]
  32324. ))
  32325. characterMakers.push(() => makeCharacter(
  32326. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32327. {
  32328. front: {
  32329. height: math.unit(7, "feet"),
  32330. weight: math.unit(180, "lb"),
  32331. name: "Front",
  32332. image: {
  32333. source: "./media/characters/necrolance/front.svg",
  32334. extra: 1062/947,
  32335. bottom: 41/1103
  32336. }
  32337. },
  32338. back: {
  32339. height: math.unit(7, "feet"),
  32340. weight: math.unit(180, "lb"),
  32341. name: "Back",
  32342. image: {
  32343. source: "./media/characters/necrolance/back.svg",
  32344. extra: 1045/984,
  32345. bottom: 14/1059
  32346. }
  32347. },
  32348. wing: {
  32349. height: math.unit(2.67, "feet"),
  32350. name: "Wing",
  32351. image: {
  32352. source: "./media/characters/necrolance/wing.svg"
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(7, "feet"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32366. {
  32367. front: {
  32368. height: math.unit(76, "meters"),
  32369. weight: math.unit(30000, "tons"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/tyler/front.svg",
  32373. extra: 1640/1640,
  32374. bottom: 114/1754
  32375. }
  32376. },
  32377. },
  32378. [
  32379. {
  32380. name: "Macro",
  32381. height: math.unit(76, "meters"),
  32382. default: true
  32383. },
  32384. ]
  32385. ))
  32386. characterMakers.push(() => makeCharacter(
  32387. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32388. {
  32389. front: {
  32390. height: math.unit(4 + 11/12, "feet"),
  32391. weight: math.unit(132, "lb"),
  32392. name: "Front",
  32393. image: {
  32394. source: "./media/characters/icey/front.svg",
  32395. extra: 2750/2550,
  32396. bottom: 33/2783
  32397. }
  32398. },
  32399. back: {
  32400. height: math.unit(4 + 11/12, "feet"),
  32401. weight: math.unit(132, "lb"),
  32402. name: "Back",
  32403. image: {
  32404. source: "./media/characters/icey/back.svg",
  32405. extra: 2624/2481,
  32406. bottom: 35/2659
  32407. }
  32408. },
  32409. },
  32410. [
  32411. {
  32412. name: "Normal",
  32413. height: math.unit(4 + 11/12, "feet"),
  32414. default: true
  32415. },
  32416. ]
  32417. ))
  32418. characterMakers.push(() => makeCharacter(
  32419. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32420. {
  32421. front: {
  32422. height: math.unit(100, "feet"),
  32423. weight: math.unit(0, "lb"),
  32424. name: "Front",
  32425. image: {
  32426. source: "./media/characters/smile/front.svg",
  32427. extra: 2983/2912,
  32428. bottom: 162/3145
  32429. }
  32430. },
  32431. back: {
  32432. height: math.unit(100, "feet"),
  32433. weight: math.unit(0, "lb"),
  32434. name: "Back",
  32435. image: {
  32436. source: "./media/characters/smile/back.svg",
  32437. extra: 3143/3031,
  32438. bottom: 91/3234
  32439. }
  32440. },
  32441. head: {
  32442. height: math.unit(26.3, "feet"),
  32443. weight: math.unit(0, "lb"),
  32444. name: "Head",
  32445. image: {
  32446. source: "./media/characters/smile/head.svg"
  32447. }
  32448. },
  32449. collar: {
  32450. height: math.unit(5.3, "feet"),
  32451. weight: math.unit(0, "lb"),
  32452. name: "Collar",
  32453. image: {
  32454. source: "./media/characters/smile/collar.svg"
  32455. }
  32456. },
  32457. },
  32458. [
  32459. {
  32460. name: "Macro",
  32461. height: math.unit(100, "feet"),
  32462. default: true
  32463. },
  32464. ]
  32465. ))
  32466. characterMakers.push(() => makeCharacter(
  32467. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32468. {
  32469. dragon: {
  32470. height: math.unit(26, "feet"),
  32471. weight: math.unit(36, "tons"),
  32472. name: "Dragon",
  32473. image: {
  32474. source: "./media/characters/arimphae/dragon.svg",
  32475. extra: 1574/983,
  32476. bottom: 357/1931
  32477. }
  32478. },
  32479. drake: {
  32480. height: math.unit(9, "feet"),
  32481. weight: math.unit(1.5, "tons"),
  32482. name: "Drake",
  32483. image: {
  32484. source: "./media/characters/arimphae/drake.svg",
  32485. extra: 1120/925,
  32486. bottom: 435/1555
  32487. }
  32488. },
  32489. },
  32490. [
  32491. {
  32492. name: "Small",
  32493. height: math.unit(26*5/9, "feet")
  32494. },
  32495. {
  32496. name: "Normal",
  32497. height: math.unit(26, "feet"),
  32498. default: true
  32499. },
  32500. ]
  32501. ))
  32502. characterMakers.push(() => makeCharacter(
  32503. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32504. {
  32505. front: {
  32506. height: math.unit(8 + 9/12, "feet"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/xander/front.svg",
  32510. extra: 1237/974,
  32511. bottom: 94/1331
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(8 + 9/12, "feet"),
  32519. default: true
  32520. },
  32521. {
  32522. name: "Gaze Grabber",
  32523. height: math.unit(13 + 8/12, "feet")
  32524. },
  32525. {
  32526. name: "Jaw Dropper",
  32527. height: math.unit(27, "feet")
  32528. },
  32529. {
  32530. name: "Show Stopper",
  32531. height: math.unit(136, "feet")
  32532. },
  32533. {
  32534. name: "Superstar",
  32535. height: math.unit(1.9e6, "miles")
  32536. },
  32537. ]
  32538. ))
  32539. characterMakers.push(() => makeCharacter(
  32540. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32541. {
  32542. side: {
  32543. height: math.unit(2100, "feet"),
  32544. name: "Side",
  32545. image: {
  32546. source: "./media/characters/osiris/side.svg",
  32547. extra: 1105/939,
  32548. bottom: 167/1272
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Macro",
  32555. height: math.unit(2100, "feet"),
  32556. default: true
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32562. {
  32563. front: {
  32564. height: math.unit(6 + 8/12, "feet"),
  32565. weight: math.unit(225, "lb"),
  32566. name: "Front",
  32567. image: {
  32568. source: "./media/characters/rhys-londe/front.svg",
  32569. extra: 2258/2141,
  32570. bottom: 188/2446
  32571. }
  32572. },
  32573. back: {
  32574. height: math.unit(6 + 8/12, "feet"),
  32575. weight: math.unit(225, "lb"),
  32576. name: "Back",
  32577. image: {
  32578. source: "./media/characters/rhys-londe/back.svg",
  32579. extra: 2237/2137,
  32580. bottom: 63/2300
  32581. }
  32582. },
  32583. frontNsfw: {
  32584. height: math.unit(6 + 8/12, "feet"),
  32585. weight: math.unit(225, "lb"),
  32586. name: "Front (NSFW)",
  32587. image: {
  32588. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32589. extra: 2258/2141,
  32590. bottom: 188/2446
  32591. }
  32592. },
  32593. backNsfw: {
  32594. height: math.unit(6 + 8/12, "feet"),
  32595. weight: math.unit(225, "lb"),
  32596. name: "Back (NSFW)",
  32597. image: {
  32598. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32599. extra: 2237/2137,
  32600. bottom: 63/2300
  32601. }
  32602. },
  32603. dick: {
  32604. height: math.unit(30, "inches"),
  32605. name: "Dick",
  32606. image: {
  32607. source: "./media/characters/rhys-londe/dick.svg"
  32608. }
  32609. },
  32610. maw: {
  32611. height: math.unit(1.6, "feet"),
  32612. name: "Maw",
  32613. image: {
  32614. source: "./media/characters/rhys-londe/maw.svg"
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(6 + 8/12, "feet"),
  32622. default: true
  32623. },
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32628. {
  32629. front: {
  32630. height: math.unit(3 + 10/12, "feet"),
  32631. weight: math.unit(90, "lb"),
  32632. name: "Front",
  32633. image: {
  32634. source: "./media/characters/taivas-ensim/front.svg",
  32635. extra: 1327/1216,
  32636. bottom: 96/1423
  32637. }
  32638. },
  32639. back: {
  32640. height: math.unit(3 + 10/12, "feet"),
  32641. weight: math.unit(90, "lb"),
  32642. name: "Back",
  32643. image: {
  32644. source: "./media/characters/taivas-ensim/back.svg",
  32645. extra: 1355/1247,
  32646. bottom: 11/1366
  32647. }
  32648. },
  32649. frontNsfw: {
  32650. height: math.unit(3 + 10/12, "feet"),
  32651. weight: math.unit(90, "lb"),
  32652. name: "Front (NSFW)",
  32653. image: {
  32654. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32655. extra: 1327/1216,
  32656. bottom: 96/1423
  32657. }
  32658. },
  32659. backNsfw: {
  32660. height: math.unit(3 + 10/12, "feet"),
  32661. weight: math.unit(90, "lb"),
  32662. name: "Back (NSFW)",
  32663. image: {
  32664. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32665. extra: 1355/1247,
  32666. bottom: 11/1366
  32667. }
  32668. },
  32669. },
  32670. [
  32671. {
  32672. name: "Normal",
  32673. height: math.unit(3 + 10/12, "feet"),
  32674. default: true
  32675. },
  32676. ]
  32677. ))
  32678. characterMakers.push(() => makeCharacter(
  32679. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32680. {
  32681. front: {
  32682. height: math.unit(9 + 6/12, "feet"),
  32683. weight: math.unit(940, "lb"),
  32684. name: "Front",
  32685. image: {
  32686. source: "./media/characters/byliss/front.svg",
  32687. extra: 1327/1290,
  32688. bottom: 82/1409
  32689. }
  32690. },
  32691. back: {
  32692. height: math.unit(9 + 6/12, "feet"),
  32693. weight: math.unit(940, "lb"),
  32694. name: "Back",
  32695. image: {
  32696. source: "./media/characters/byliss/back.svg",
  32697. extra: 1376/1349,
  32698. bottom: 9/1385
  32699. }
  32700. },
  32701. frontNsfw: {
  32702. height: math.unit(9 + 6/12, "feet"),
  32703. weight: math.unit(940, "lb"),
  32704. name: "Front (NSFW)",
  32705. image: {
  32706. source: "./media/characters/byliss/front-nsfw.svg",
  32707. extra: 1327/1290,
  32708. bottom: 82/1409
  32709. }
  32710. },
  32711. backNsfw: {
  32712. height: math.unit(9 + 6/12, "feet"),
  32713. weight: math.unit(940, "lb"),
  32714. name: "Back (NSFW)",
  32715. image: {
  32716. source: "./media/characters/byliss/back-nsfw.svg",
  32717. extra: 1376/1349,
  32718. bottom: 9/1385
  32719. }
  32720. },
  32721. },
  32722. [
  32723. {
  32724. name: "Normal",
  32725. height: math.unit(9 + 6/12, "feet"),
  32726. default: true
  32727. },
  32728. ]
  32729. ))
  32730. characterMakers.push(() => makeCharacter(
  32731. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32732. {
  32733. front: {
  32734. height: math.unit(5 + 2/12, "feet"),
  32735. weight: math.unit(200, "lb"),
  32736. name: "Front",
  32737. image: {
  32738. source: "./media/characters/noraly/front.svg",
  32739. extra: 4985/4773,
  32740. bottom: 150/5135
  32741. }
  32742. },
  32743. full: {
  32744. height: math.unit(5 + 2/12, "feet"),
  32745. weight: math.unit(164, "lb"),
  32746. name: "Full",
  32747. image: {
  32748. source: "./media/characters/noraly/full.svg",
  32749. extra: 1114/1059,
  32750. bottom: 35/1149
  32751. }
  32752. },
  32753. fuller: {
  32754. height: math.unit(5 + 2/12, "feet"),
  32755. weight: math.unit(230, "lb"),
  32756. name: "Fuller",
  32757. image: {
  32758. source: "./media/characters/noraly/fuller.svg",
  32759. extra: 1114/1059,
  32760. bottom: 35/1149
  32761. }
  32762. },
  32763. fullest: {
  32764. height: math.unit(5 + 2/12, "feet"),
  32765. weight: math.unit(300, "lb"),
  32766. name: "Fullest",
  32767. image: {
  32768. source: "./media/characters/noraly/fullest.svg",
  32769. extra: 1114/1059,
  32770. bottom: 35/1149
  32771. }
  32772. },
  32773. },
  32774. [
  32775. {
  32776. name: "Normal",
  32777. height: math.unit(5 + 2/12, "feet"),
  32778. default: true
  32779. },
  32780. ]
  32781. ))
  32782. characterMakers.push(() => makeCharacter(
  32783. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32784. {
  32785. front: {
  32786. height: math.unit(5 + 2/12, "feet"),
  32787. weight: math.unit(210, "lb"),
  32788. name: "Front",
  32789. image: {
  32790. source: "./media/characters/pera/front.svg",
  32791. extra: 1560/1531,
  32792. bottom: 165/1725
  32793. }
  32794. },
  32795. back: {
  32796. height: math.unit(5 + 2/12, "feet"),
  32797. weight: math.unit(210, "lb"),
  32798. name: "Back",
  32799. image: {
  32800. source: "./media/characters/pera/back.svg",
  32801. extra: 1523/1493,
  32802. bottom: 152/1675
  32803. }
  32804. },
  32805. dick: {
  32806. height: math.unit(2.4, "feet"),
  32807. name: "Dick",
  32808. image: {
  32809. source: "./media/characters/pera/dick.svg"
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Normal",
  32816. height: math.unit(5 + 2/12, "feet"),
  32817. default: true
  32818. },
  32819. ]
  32820. ))
  32821. characterMakers.push(() => makeCharacter(
  32822. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32823. {
  32824. front: {
  32825. height: math.unit(12, "feet"),
  32826. weight: math.unit(3200, "lb"),
  32827. name: "Front",
  32828. image: {
  32829. source: "./media/characters/julian/front.svg",
  32830. extra: 2962/2701,
  32831. bottom: 184/3146
  32832. }
  32833. },
  32834. maw: {
  32835. height: math.unit(5.35, "feet"),
  32836. name: "Maw",
  32837. image: {
  32838. source: "./media/characters/julian/maw.svg"
  32839. }
  32840. },
  32841. paw: {
  32842. height: math.unit(3.07, "feet"),
  32843. name: "Paw",
  32844. image: {
  32845. source: "./media/characters/julian/paw.svg"
  32846. }
  32847. },
  32848. },
  32849. [
  32850. {
  32851. name: "Default",
  32852. height: math.unit(12, "feet"),
  32853. default: true
  32854. },
  32855. {
  32856. name: "Big",
  32857. height: math.unit(50, "feet")
  32858. },
  32859. {
  32860. name: "Really Big",
  32861. height: math.unit(1, "mile")
  32862. },
  32863. {
  32864. name: "Extremely Big",
  32865. height: math.unit(100, "miles")
  32866. },
  32867. {
  32868. name: "Planet Hugger",
  32869. height: math.unit(200, "megameters")
  32870. },
  32871. {
  32872. name: "Unreasonably Big",
  32873. height: math.unit(1e300, "meters")
  32874. },
  32875. ]
  32876. ))
  32877. characterMakers.push(() => makeCharacter(
  32878. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32879. {
  32880. solgooleo: {
  32881. height: math.unit(4, "meters"),
  32882. weight: math.unit(6000*1.5, "kg"),
  32883. volume: math.unit(6000, "liters"),
  32884. name: "Solgooleo",
  32885. image: {
  32886. source: "./media/characters/pi/solgooleo.svg",
  32887. extra: 388/331,
  32888. bottom: 29/417
  32889. }
  32890. },
  32891. },
  32892. [
  32893. {
  32894. name: "Normal",
  32895. height: math.unit(4, "meters"),
  32896. default: true
  32897. },
  32898. ]
  32899. ))
  32900. characterMakers.push(() => makeCharacter(
  32901. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32902. {
  32903. front: {
  32904. height: math.unit(8, "feet"),
  32905. weight: math.unit(4, "tons"),
  32906. name: "Front",
  32907. image: {
  32908. source: "./media/characters/shaun/front.svg",
  32909. extra: 503/495,
  32910. bottom: 20/523
  32911. }
  32912. },
  32913. back: {
  32914. height: math.unit(8, "feet"),
  32915. weight: math.unit(4, "tons"),
  32916. name: "Back",
  32917. image: {
  32918. source: "./media/characters/shaun/back.svg",
  32919. extra: 487/480,
  32920. bottom: 20/507
  32921. }
  32922. },
  32923. },
  32924. [
  32925. {
  32926. name: "Lorg",
  32927. height: math.unit(8, "feet"),
  32928. default: true
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32934. {
  32935. front: {
  32936. height: math.unit(7, "feet"),
  32937. name: "Front",
  32938. image: {
  32939. source: "./media/characters/sini/front.svg",
  32940. extra: 726/678,
  32941. bottom: 35/761
  32942. }
  32943. },
  32944. back: {
  32945. height: math.unit(7, "feet"),
  32946. name: "Back",
  32947. image: {
  32948. source: "./media/characters/sini/back.svg",
  32949. extra: 743/701,
  32950. bottom: 12/755
  32951. }
  32952. },
  32953. mawAnthro: {
  32954. height: math.unit(2.14, "feet"),
  32955. name: "Maw (Anthro)",
  32956. image: {
  32957. source: "./media/characters/sini/maw-anthro.svg"
  32958. }
  32959. },
  32960. dick: {
  32961. height: math.unit(1.45, "feet"),
  32962. name: "Dick (Anthro)",
  32963. image: {
  32964. source: "./media/characters/sini/dick-anthro.svg"
  32965. }
  32966. },
  32967. feral: {
  32968. height: math.unit(16, "feet"),
  32969. name: "Feral",
  32970. image: {
  32971. source: "./media/characters/sini/feral.svg",
  32972. extra: 814/605,
  32973. bottom: 11/825
  32974. }
  32975. },
  32976. mawFeral: {
  32977. height: math.unit(5.66, "feet"),
  32978. name: "Maw-feral",
  32979. image: {
  32980. source: "./media/characters/sini/maw-feral.svg"
  32981. }
  32982. },
  32983. footFeral: {
  32984. height: math.unit(5.17, "feet"),
  32985. name: "Foot-feral",
  32986. image: {
  32987. source: "./media/characters/sini/foot-feral.svg"
  32988. }
  32989. },
  32990. },
  32991. [
  32992. {
  32993. name: "Normal",
  32994. height: math.unit(7, "feet"),
  32995. default: true
  32996. },
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33001. {
  33002. side: {
  33003. height: math.unit(13, "meters"),
  33004. weight: math.unit(9072, "kg"),
  33005. name: "Side",
  33006. image: {
  33007. source: "./media/characters/raylldo/side.svg",
  33008. extra: 403/344,
  33009. bottom: 42/445
  33010. }
  33011. },
  33012. leaping: {
  33013. height: math.unit(12.3, "meters"),
  33014. weight: math.unit(9072, "kg"),
  33015. name: "Leaping",
  33016. image: {
  33017. source: "./media/characters/raylldo/leaping.svg",
  33018. extra: 470/249,
  33019. bottom: 13/483
  33020. }
  33021. },
  33022. flying: {
  33023. height: math.unit(18, "meters"),
  33024. weight: math.unit(9072, "kg"),
  33025. name: "Flying",
  33026. image: {
  33027. source: "./media/characters/raylldo/flying.svg"
  33028. }
  33029. },
  33030. head: {
  33031. height: math.unit(5.85, "meters"),
  33032. name: "Head",
  33033. image: {
  33034. source: "./media/characters/raylldo/head.svg"
  33035. }
  33036. },
  33037. maw: {
  33038. height: math.unit(5.32, "meters"),
  33039. name: "Maw",
  33040. image: {
  33041. source: "./media/characters/raylldo/maw.svg"
  33042. }
  33043. },
  33044. eye: {
  33045. height: math.unit(0.54, "meters"),
  33046. name: "Eye",
  33047. image: {
  33048. source: "./media/characters/raylldo/eye.svg"
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(13, "meters"),
  33056. default: true
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33062. {
  33063. anthroFront: {
  33064. height: math.unit(9, "feet"),
  33065. weight: math.unit(600, "lb"),
  33066. name: "Anthro (Front)",
  33067. image: {
  33068. source: "./media/characters/glint/anthro-front.svg",
  33069. extra: 1097/1018,
  33070. bottom: 28/1125
  33071. }
  33072. },
  33073. anthroBack: {
  33074. height: math.unit(9, "feet"),
  33075. weight: math.unit(600, "lb"),
  33076. name: "Anthro (Back)",
  33077. image: {
  33078. source: "./media/characters/glint/anthro-back.svg",
  33079. extra: 1154/997,
  33080. bottom: 36/1190
  33081. }
  33082. },
  33083. feral: {
  33084. height: math.unit(11, "feet"),
  33085. weight: math.unit(50000, "lb"),
  33086. name: "Feral",
  33087. image: {
  33088. source: "./media/characters/glint/feral.svg",
  33089. extra: 3035/1585,
  33090. bottom: 1169/4204
  33091. }
  33092. },
  33093. dickAnthro: {
  33094. height: math.unit(0.7, "meters"),
  33095. name: "Dick (Anthro)",
  33096. image: {
  33097. source: "./media/characters/glint/dick-anthro.svg"
  33098. }
  33099. },
  33100. dickFeral: {
  33101. height: math.unit(2.65, "meters"),
  33102. name: "Dick (Feral)",
  33103. image: {
  33104. source: "./media/characters/glint/dick-feral.svg"
  33105. }
  33106. },
  33107. slitHidden: {
  33108. height: math.unit(5.85, "meters"),
  33109. name: "Slit (Hidden)",
  33110. image: {
  33111. source: "./media/characters/glint/slit-hidden.svg"
  33112. }
  33113. },
  33114. slitErect: {
  33115. height: math.unit(5.85, "meters"),
  33116. name: "Slit (Erect)",
  33117. image: {
  33118. source: "./media/characters/glint/slit-erect.svg"
  33119. }
  33120. },
  33121. mawAnthro: {
  33122. height: math.unit(0.63, "meters"),
  33123. name: "Maw (Anthro)",
  33124. image: {
  33125. source: "./media/characters/glint/maw.svg"
  33126. }
  33127. },
  33128. mawFeral: {
  33129. height: math.unit(2.89, "meters"),
  33130. name: "Maw (Feral)",
  33131. image: {
  33132. source: "./media/characters/glint/maw.svg"
  33133. }
  33134. },
  33135. },
  33136. [
  33137. {
  33138. name: "Normal",
  33139. height: math.unit(9, "feet"),
  33140. default: true
  33141. },
  33142. ]
  33143. ))
  33144. characterMakers.push(() => makeCharacter(
  33145. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33146. {
  33147. side: {
  33148. height: math.unit(15, "feet"),
  33149. weight: math.unit(5000, "kg"),
  33150. name: "Side",
  33151. image: {
  33152. source: "./media/characters/kairne/side.svg",
  33153. extra: 979/811,
  33154. bottom: 13/992
  33155. }
  33156. },
  33157. front: {
  33158. height: math.unit(15, "feet"),
  33159. weight: math.unit(5000, "kg"),
  33160. name: "Front",
  33161. image: {
  33162. source: "./media/characters/kairne/front.svg",
  33163. extra: 908/814,
  33164. bottom: 26/934
  33165. }
  33166. },
  33167. sideNsfw: {
  33168. height: math.unit(15, "feet"),
  33169. weight: math.unit(5000, "kg"),
  33170. name: "Side (NSFW)",
  33171. image: {
  33172. source: "./media/characters/kairne/side-nsfw.svg",
  33173. extra: 979/811,
  33174. bottom: 13/992
  33175. }
  33176. },
  33177. frontNsfw: {
  33178. height: math.unit(15, "feet"),
  33179. weight: math.unit(5000, "kg"),
  33180. name: "Front (NSFW)",
  33181. image: {
  33182. source: "./media/characters/kairne/front-nsfw.svg",
  33183. extra: 908/814,
  33184. bottom: 26/934
  33185. }
  33186. },
  33187. dickCaged: {
  33188. height: math.unit(0.65, "meters"),
  33189. name: "Dick-caged",
  33190. image: {
  33191. source: "./media/characters/kairne/dick-caged.svg"
  33192. }
  33193. },
  33194. dick: {
  33195. height: math.unit(0.79, "meters"),
  33196. name: "Dick",
  33197. image: {
  33198. source: "./media/characters/kairne/dick.svg"
  33199. }
  33200. },
  33201. genitals: {
  33202. height: math.unit(1.29, "meters"),
  33203. name: "Genitals",
  33204. image: {
  33205. source: "./media/characters/kairne/genitals.svg"
  33206. }
  33207. },
  33208. maw: {
  33209. height: math.unit(1.73, "meters"),
  33210. name: "Maw",
  33211. image: {
  33212. source: "./media/characters/kairne/maw.svg"
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Normal",
  33219. height: math.unit(15, "feet"),
  33220. default: true
  33221. },
  33222. ]
  33223. ))
  33224. characterMakers.push(() => makeCharacter(
  33225. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33226. {
  33227. front: {
  33228. height: math.unit(5 + 8/12, "feet"),
  33229. weight: math.unit(139, "lb"),
  33230. name: "Front",
  33231. image: {
  33232. source: "./media/characters/biscuit-jackal/front.svg",
  33233. extra: 2106/1961,
  33234. bottom: 58/2164
  33235. }
  33236. },
  33237. back: {
  33238. height: math.unit(5 + 8/12, "feet"),
  33239. weight: math.unit(139, "lb"),
  33240. name: "Back",
  33241. image: {
  33242. source: "./media/characters/biscuit-jackal/back.svg",
  33243. extra: 2132/1976,
  33244. bottom: 57/2189
  33245. }
  33246. },
  33247. werejackal: {
  33248. height: math.unit(6 + 3/12, "feet"),
  33249. weight: math.unit(188, "lb"),
  33250. name: "Werejackal",
  33251. image: {
  33252. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33253. extra: 2373/2178,
  33254. bottom: 53/2426
  33255. }
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Normal",
  33261. height: math.unit(5 + 8/12, "feet"),
  33262. default: true
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33268. {
  33269. front: {
  33270. height: math.unit(140, "cm"),
  33271. weight: math.unit(45, "kg"),
  33272. name: "Front",
  33273. image: {
  33274. source: "./media/characters/tayra-white/front.svg",
  33275. extra: 2229/2192,
  33276. bottom: 75/2304
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(140, "cm"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33290. {
  33291. front: {
  33292. height: math.unit(4 + 5/12, "feet"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/scoop/front.svg",
  33296. extra: 1257/1136,
  33297. bottom: 69/1326
  33298. }
  33299. },
  33300. back: {
  33301. height: math.unit(4 + 5/12, "feet"),
  33302. name: "Back",
  33303. image: {
  33304. source: "./media/characters/scoop/back.svg",
  33305. extra: 1321/1152,
  33306. bottom: 32/1353
  33307. }
  33308. },
  33309. maw: {
  33310. height: math.unit(0.68, "feet"),
  33311. name: "Maw",
  33312. image: {
  33313. source: "./media/characters/scoop/maw.svg"
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Really Small",
  33320. height: math.unit(1, "mm")
  33321. },
  33322. {
  33323. name: "Micro",
  33324. height: math.unit(1, "inch")
  33325. },
  33326. {
  33327. name: "Normal",
  33328. height: math.unit(4 + 5/12, "feet"),
  33329. default: true
  33330. },
  33331. {
  33332. name: "Macro",
  33333. height: math.unit(200, "feet")
  33334. },
  33335. {
  33336. name: "Megamacro",
  33337. height: math.unit(3240, "feet")
  33338. },
  33339. {
  33340. name: "Teramacro",
  33341. height: math.unit(2500, "miles")
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33347. {
  33348. front: {
  33349. height: math.unit(15 + 7/12, "feet"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/saphinara/front.svg",
  33353. extra: 604/546,
  33354. bottom: 19/623
  33355. }
  33356. },
  33357. side: {
  33358. height: math.unit(15 + 7/12, "feet"),
  33359. name: "Side",
  33360. image: {
  33361. source: "./media/characters/saphinara/side.svg",
  33362. extra: 605/547,
  33363. bottom: 6/611
  33364. }
  33365. },
  33366. back: {
  33367. height: math.unit(15 + 7/12, "feet"),
  33368. name: "Back",
  33369. image: {
  33370. source: "./media/characters/saphinara/back.svg",
  33371. extra: 591/531,
  33372. bottom: 13/604
  33373. }
  33374. },
  33375. frontTail: {
  33376. height: math.unit(15 + 7/12, "feet"),
  33377. name: "Front (Full Tail)",
  33378. image: {
  33379. source: "./media/characters/saphinara/front-tail.svg",
  33380. extra: 748/547,
  33381. bottom: 66/814
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Normal",
  33388. height: math.unit(15 + 7/12, "feet"),
  33389. default: true
  33390. },
  33391. {
  33392. name: "Angry",
  33393. height: math.unit(30 + 6/12, "feet")
  33394. },
  33395. {
  33396. name: "Enraged",
  33397. height: math.unit(102 + 1/12, "feet")
  33398. },
  33399. ]
  33400. ))
  33401. characterMakers.push(() => makeCharacter(
  33402. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33403. {
  33404. front: {
  33405. height: math.unit(6 + 8/12, "feet"),
  33406. weight: math.unit(300, "lb"),
  33407. name: "Front",
  33408. image: {
  33409. source: "./media/characters/jrain/front.svg",
  33410. extra: 3039/2865,
  33411. bottom: 399/3438
  33412. }
  33413. },
  33414. back: {
  33415. height: math.unit(6 + 8/12, "feet"),
  33416. weight: math.unit(300, "lb"),
  33417. name: "Back",
  33418. image: {
  33419. source: "./media/characters/jrain/back.svg",
  33420. extra: 3089/2938,
  33421. bottom: 172/3261
  33422. }
  33423. },
  33424. head: {
  33425. height: math.unit(2.14, "feet"),
  33426. name: "Head",
  33427. image: {
  33428. source: "./media/characters/jrain/head.svg"
  33429. }
  33430. },
  33431. maw: {
  33432. height: math.unit(1.77, "feet"),
  33433. name: "Maw",
  33434. image: {
  33435. source: "./media/characters/jrain/maw.svg"
  33436. }
  33437. },
  33438. leftHand: {
  33439. height: math.unit(1.1, "feet"),
  33440. name: "Left Hand",
  33441. image: {
  33442. source: "./media/characters/jrain/left-hand.svg"
  33443. }
  33444. },
  33445. rightHand: {
  33446. height: math.unit(1.1, "feet"),
  33447. name: "Right Hand",
  33448. image: {
  33449. source: "./media/characters/jrain/right-hand.svg"
  33450. }
  33451. },
  33452. eye: {
  33453. height: math.unit(0.35, "feet"),
  33454. name: "Eye",
  33455. image: {
  33456. source: "./media/characters/jrain/eye.svg"
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Normal",
  33463. height: math.unit(6 + 8/12, "feet"),
  33464. default: true
  33465. },
  33466. {
  33467. name: "Casually Large",
  33468. height: math.unit(25, "feet")
  33469. },
  33470. {
  33471. name: "Giant",
  33472. height: math.unit(100, "feet")
  33473. },
  33474. {
  33475. name: "Kaiju",
  33476. height: math.unit(300, "feet")
  33477. },
  33478. ]
  33479. ))
  33480. characterMakers.push(() => makeCharacter(
  33481. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33482. {
  33483. dragon: {
  33484. height: math.unit(5, "meters"),
  33485. name: "Dragon",
  33486. image: {
  33487. source: "./media/characters/sabrina/dragon.svg",
  33488. extra: 3670 / 2365,
  33489. bottom: 333 / 4003
  33490. }
  33491. },
  33492. gryphon: {
  33493. height: math.unit(3, "meters"),
  33494. name: "Gryphon",
  33495. image: {
  33496. source: "./media/characters/sabrina/gryphon.svg",
  33497. extra: 1576 / 945,
  33498. bottom: 71 / 1647
  33499. }
  33500. },
  33501. snake: {
  33502. height: math.unit(12, "meters"),
  33503. name: "Snake",
  33504. image: {
  33505. source: "./media/characters/sabrina/snake.svg",
  33506. extra: 1758 / 1320,
  33507. bottom: 186 / 1944
  33508. }
  33509. },
  33510. collar: {
  33511. height: math.unit(1.86, "meters"),
  33512. name: "Collar",
  33513. image: {
  33514. source: "./media/characters/sabrina/collar.svg"
  33515. }
  33516. },
  33517. eye: {
  33518. height: math.unit(0.53, "meters"),
  33519. name: "Eye",
  33520. image: {
  33521. source: "./media/characters/sabrina/eye.svg"
  33522. }
  33523. },
  33524. foot: {
  33525. height: math.unit(1.86, "meters"),
  33526. name: "Foot",
  33527. image: {
  33528. source: "./media/characters/sabrina/foot.svg"
  33529. }
  33530. },
  33531. hand: {
  33532. height: math.unit(1.32, "meters"),
  33533. name: "Hand",
  33534. image: {
  33535. source: "./media/characters/sabrina/hand.svg"
  33536. }
  33537. },
  33538. head: {
  33539. height: math.unit(2.44, "meters"),
  33540. name: "Head",
  33541. image: {
  33542. source: "./media/characters/sabrina/head.svg"
  33543. }
  33544. },
  33545. headAngry: {
  33546. height: math.unit(2.44, "meters"),
  33547. name: "Head (Angry))",
  33548. image: {
  33549. source: "./media/characters/sabrina/head-angry.svg"
  33550. }
  33551. },
  33552. maw: {
  33553. height: math.unit(1.65, "meters"),
  33554. name: "Maw",
  33555. image: {
  33556. source: "./media/characters/sabrina/maw.svg"
  33557. }
  33558. },
  33559. spikes: {
  33560. height: math.unit(1.69, "meters"),
  33561. name: "Spikes",
  33562. image: {
  33563. source: "./media/characters/sabrina/spikes.svg"
  33564. }
  33565. },
  33566. stomach: {
  33567. height: math.unit(1.15, "meters"),
  33568. name: "Stomach",
  33569. image: {
  33570. source: "./media/characters/sabrina/stomach.svg"
  33571. }
  33572. },
  33573. tongue: {
  33574. height: math.unit(1.27, "meters"),
  33575. name: "Tongue",
  33576. image: {
  33577. source: "./media/characters/sabrina/tongue.svg"
  33578. }
  33579. },
  33580. wingDorsal: {
  33581. height: math.unit(4.85, "meters"),
  33582. name: "Wing (Dorsal)",
  33583. image: {
  33584. source: "./media/characters/sabrina/wing-dorsal.svg"
  33585. }
  33586. },
  33587. wingVentral: {
  33588. height: math.unit(4.85, "meters"),
  33589. name: "Wing (Ventral)",
  33590. image: {
  33591. source: "./media/characters/sabrina/wing-ventral.svg"
  33592. }
  33593. },
  33594. },
  33595. [
  33596. {
  33597. name: "Normal",
  33598. height: math.unit(5, "meters"),
  33599. default: true
  33600. },
  33601. ]
  33602. ))
  33603. characterMakers.push(() => makeCharacter(
  33604. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33605. {
  33606. frontMaid: {
  33607. height: math.unit(5 + 5/12, "feet"),
  33608. weight: math.unit(130, "lb"),
  33609. name: "Front (Maid)",
  33610. image: {
  33611. source: "./media/characters/midnight-tales/front-maid.svg",
  33612. extra: 489/454,
  33613. bottom: 61/550
  33614. }
  33615. },
  33616. frontFormal: {
  33617. height: math.unit(5 + 5/12, "feet"),
  33618. weight: math.unit(130, "lb"),
  33619. name: "Front (Formal)",
  33620. image: {
  33621. source: "./media/characters/midnight-tales/front-formal.svg",
  33622. extra: 489/454,
  33623. bottom: 61/550
  33624. }
  33625. },
  33626. back: {
  33627. height: math.unit(5 + 5/12, "feet"),
  33628. weight: math.unit(130, "lb"),
  33629. name: "Back",
  33630. image: {
  33631. source: "./media/characters/midnight-tales/back.svg",
  33632. extra: 498/456,
  33633. bottom: 33/531
  33634. }
  33635. },
  33636. frontBeast: {
  33637. height: math.unit(40, "feet"),
  33638. weight: math.unit(64000, "lb"),
  33639. name: "Front (Beast)",
  33640. image: {
  33641. source: "./media/characters/midnight-tales/front-beast.svg",
  33642. extra: 927/860,
  33643. bottom: 53/980
  33644. }
  33645. },
  33646. backBeast: {
  33647. height: math.unit(40, "feet"),
  33648. weight: math.unit(64000, "lb"),
  33649. name: "Back (Beast)",
  33650. image: {
  33651. source: "./media/characters/midnight-tales/back-beast.svg",
  33652. extra: 929/855,
  33653. bottom: 16/945
  33654. }
  33655. },
  33656. footBeast: {
  33657. height: math.unit(6.7, "feet"),
  33658. name: "Foot (Beast)",
  33659. image: {
  33660. source: "./media/characters/midnight-tales/foot-beast.svg"
  33661. }
  33662. },
  33663. headBeast: {
  33664. height: math.unit(8, "feet"),
  33665. name: "Head (Beast)",
  33666. image: {
  33667. source: "./media/characters/midnight-tales/head-beast.svg"
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Normal",
  33674. height: math.unit(5 + 5 / 12, "feet"),
  33675. default: true
  33676. },
  33677. {
  33678. name: "Macro",
  33679. height: math.unit(25, "feet")
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33685. {
  33686. front: {
  33687. height: math.unit(5 + 10/12, "feet"),
  33688. name: "Front",
  33689. image: {
  33690. source: "./media/characters/argon/front.svg",
  33691. extra: 2009/1935,
  33692. bottom: 118/2127
  33693. }
  33694. },
  33695. back: {
  33696. height: math.unit(5 + 10/12, "feet"),
  33697. name: "Back",
  33698. image: {
  33699. source: "./media/characters/argon/back.svg",
  33700. extra: 2047/1992,
  33701. bottom: 20/2067
  33702. }
  33703. },
  33704. frontDressed: {
  33705. height: math.unit(5 + 10/12, "feet"),
  33706. name: "Front (Dressed)",
  33707. image: {
  33708. source: "./media/characters/argon/front-dressed.svg",
  33709. extra: 2009/1935,
  33710. bottom: 118/2127
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Normal",
  33717. height: math.unit(5 + 10/12, "feet"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(8 + 6/12, "feet"),
  33727. weight: math.unit(1150, "lb"),
  33728. name: "Front",
  33729. image: {
  33730. source: "./media/characters/kichi/front.svg",
  33731. extra: 1267/1164,
  33732. bottom: 61/1328
  33733. }
  33734. },
  33735. back: {
  33736. height: math.unit(8 + 6/12, "feet"),
  33737. weight: math.unit(1150, "lb"),
  33738. name: "Back",
  33739. image: {
  33740. source: "./media/characters/kichi/back.svg",
  33741. extra: 1273/1166,
  33742. bottom: 33/1306
  33743. }
  33744. },
  33745. },
  33746. [
  33747. {
  33748. name: "Normal",
  33749. height: math.unit(8 + 6/12, "feet"),
  33750. default: true
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33756. {
  33757. front: {
  33758. height: math.unit(6, "feet"),
  33759. weight: math.unit(210, "lb"),
  33760. name: "Front",
  33761. image: {
  33762. source: "./media/characters/manetel-greyscale/front.svg",
  33763. extra: 350/312,
  33764. bottom: 8/358
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Micro",
  33771. height: math.unit(2, "inches")
  33772. },
  33773. {
  33774. name: "Normal",
  33775. height: math.unit(6, "feet"),
  33776. default: true
  33777. },
  33778. {
  33779. name: "Minimacro",
  33780. height: math.unit(17, "feet")
  33781. },
  33782. {
  33783. name: "Macro",
  33784. height: math.unit(117, "feet")
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33790. {
  33791. side: {
  33792. height: math.unit(5 + 1/12, "feet"),
  33793. weight: math.unit(418, "lb"),
  33794. name: "Side",
  33795. image: {
  33796. source: "./media/characters/softpurr/side.svg",
  33797. extra: 1993/1945,
  33798. bottom: 134/2127
  33799. }
  33800. },
  33801. front: {
  33802. height: math.unit(5 + 1/12, "feet"),
  33803. weight: math.unit(418, "lb"),
  33804. name: "Front",
  33805. image: {
  33806. source: "./media/characters/softpurr/front.svg",
  33807. extra: 1950/1856,
  33808. bottom: 174/2124
  33809. }
  33810. },
  33811. paw: {
  33812. height: math.unit(1, "feet"),
  33813. name: "Paw",
  33814. image: {
  33815. source: "./media/characters/softpurr/paw.svg"
  33816. }
  33817. },
  33818. },
  33819. [
  33820. {
  33821. name: "Normal",
  33822. height: math.unit(5 + 1/12, "feet"),
  33823. default: true
  33824. },
  33825. ]
  33826. ))
  33827. characterMakers.push(() => makeCharacter(
  33828. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33829. {
  33830. front: {
  33831. height: math.unit(260, "meters"),
  33832. name: "Front",
  33833. image: {
  33834. source: "./media/characters/anahita/front.svg",
  33835. extra: 665/635,
  33836. bottom: 89/754
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Macro",
  33843. height: math.unit(260, "meters"),
  33844. default: true
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33850. {
  33851. front: {
  33852. height: math.unit(4 + 10/12, "feet"),
  33853. weight: math.unit(160, "lb"),
  33854. name: "Front",
  33855. image: {
  33856. source: "./media/characters/chip-mouse/front.svg",
  33857. extra: 3528/3408,
  33858. bottom: 0/3528
  33859. }
  33860. },
  33861. frontNsfw: {
  33862. height: math.unit(4 + 10/12, "feet"),
  33863. weight: math.unit(160, "lb"),
  33864. name: "Front (NSFW)",
  33865. image: {
  33866. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33867. extra: 3528/3408,
  33868. bottom: 0/3528
  33869. }
  33870. },
  33871. },
  33872. [
  33873. {
  33874. name: "Normal",
  33875. height: math.unit(4 + 10/12, "feet"),
  33876. default: true
  33877. },
  33878. ]
  33879. ))
  33880. characterMakers.push(() => makeCharacter(
  33881. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33882. {
  33883. side: {
  33884. height: math.unit(10, "feet"),
  33885. weight: math.unit(14000, "lb"),
  33886. name: "Side",
  33887. image: {
  33888. source: "./media/characters/kremm/side.svg",
  33889. extra: 1390/1053,
  33890. bottom: 90/1480
  33891. }
  33892. },
  33893. gut: {
  33894. height: math.unit(5.8, "feet"),
  33895. name: "Gut",
  33896. image: {
  33897. source: "./media/characters/kremm/gut.svg"
  33898. }
  33899. },
  33900. ass: {
  33901. height: math.unit(6.1, "feet"),
  33902. name: "Ass",
  33903. image: {
  33904. source: "./media/characters/kremm/ass.svg"
  33905. }
  33906. },
  33907. jaws: {
  33908. height: math.unit(2.2, "feet"),
  33909. name: "Jaws",
  33910. image: {
  33911. source: "./media/characters/kremm/jaws.svg"
  33912. }
  33913. },
  33914. dick: {
  33915. height: math.unit(4.26, "feet"),
  33916. name: "Dick",
  33917. image: {
  33918. source: "./media/characters/kremm/dick.svg"
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(10, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33932. {
  33933. front: {
  33934. height: math.unit(30, "stories"),
  33935. name: "Front",
  33936. image: {
  33937. source: "./media/characters/kai/front.svg",
  33938. extra: 1892/1718,
  33939. bottom: 162/2054
  33940. }
  33941. },
  33942. },
  33943. [
  33944. {
  33945. name: "Macro",
  33946. height: math.unit(30, "stories"),
  33947. default: true
  33948. },
  33949. ]
  33950. ))
  33951. characterMakers.push(() => makeCharacter(
  33952. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33953. {
  33954. front: {
  33955. height: math.unit(6 + 4/12, "feet"),
  33956. weight: math.unit(145, "lb"),
  33957. name: "Front",
  33958. image: {
  33959. source: "./media/characters/sykes/front.svg",
  33960. extra: 1321 / 1187,
  33961. bottom: 66 / 1387
  33962. }
  33963. },
  33964. back: {
  33965. height: math.unit(6 + 4/12, "feet"),
  33966. weight: math.unit(145, "lb"),
  33967. name: "Back",
  33968. image: {
  33969. source: "./media/characters/sykes/back.svg",
  33970. extra: 1326/1181,
  33971. bottom: 31/1357
  33972. }
  33973. },
  33974. handBack: {
  33975. height: math.unit(0.9, "feet"),
  33976. name: "Hand (Back)",
  33977. image: {
  33978. source: "./media/characters/sykes/hand-back.svg"
  33979. }
  33980. },
  33981. handFront: {
  33982. height: math.unit(0.839, "feet"),
  33983. name: "Hand (Front)",
  33984. image: {
  33985. source: "./media/characters/sykes/hand-front.svg"
  33986. }
  33987. },
  33988. leftFoot: {
  33989. height: math.unit(1.2, "feet"),
  33990. name: "Foot (Left)",
  33991. image: {
  33992. source: "./media/characters/sykes/foot-left.svg"
  33993. }
  33994. },
  33995. rightFoot: {
  33996. height: math.unit(1.2, "feet"),
  33997. name: "Foot (Right)",
  33998. image: {
  33999. source: "./media/characters/sykes/foot-right.svg"
  34000. }
  34001. },
  34002. maw: {
  34003. height: math.unit(1.93, "feet"),
  34004. name: "Maw",
  34005. image: {
  34006. source: "./media/characters/sykes/maw.svg"
  34007. }
  34008. },
  34009. teeth: {
  34010. height: math.unit(0.51, "feet"),
  34011. name: "Teeth",
  34012. image: {
  34013. source: "./media/characters/sykes/teeth.svg"
  34014. }
  34015. },
  34016. tongue: {
  34017. height: math.unit(2.13, "feet"),
  34018. name: "Tongue",
  34019. image: {
  34020. source: "./media/characters/sykes/tongue.svg"
  34021. }
  34022. },
  34023. uvula: {
  34024. height: math.unit(0.16, "feet"),
  34025. name: "Uvula",
  34026. image: {
  34027. source: "./media/characters/sykes/uvula.svg"
  34028. }
  34029. },
  34030. collar: {
  34031. height: math.unit(0.287, "feet"),
  34032. name: "Collar",
  34033. image: {
  34034. source: "./media/characters/sykes/collar.svg"
  34035. }
  34036. },
  34037. },
  34038. [
  34039. {
  34040. name: "Shrunken",
  34041. height: math.unit(5, "inches")
  34042. },
  34043. {
  34044. name: "Normal",
  34045. height: math.unit(6 + 4 / 12, "feet"),
  34046. default: true
  34047. },
  34048. {
  34049. name: "Big",
  34050. height: math.unit(15, "feet")
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(5 + 8/12, "feet"),
  34059. weight: math.unit(190, "lb"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/oven-otter/front.svg",
  34063. extra: 1809/1740,
  34064. bottom: 181/1990
  34065. }
  34066. },
  34067. back: {
  34068. height: math.unit(5 + 8/12, "feet"),
  34069. weight: math.unit(190, "lb"),
  34070. name: "Back",
  34071. image: {
  34072. source: "./media/characters/oven-otter/back.svg",
  34073. extra: 1709/1635,
  34074. bottom: 118/1827
  34075. }
  34076. },
  34077. hand: {
  34078. height: math.unit(1.07, "feet"),
  34079. name: "Hand",
  34080. image: {
  34081. source: "./media/characters/oven-otter/hand.svg"
  34082. }
  34083. },
  34084. beans: {
  34085. height: math.unit(1.74, "feet"),
  34086. name: "Beans",
  34087. image: {
  34088. source: "./media/characters/oven-otter/beans.svg"
  34089. }
  34090. },
  34091. },
  34092. [
  34093. {
  34094. name: "Micro",
  34095. height: math.unit(0.5, "inches")
  34096. },
  34097. {
  34098. name: "Normal",
  34099. height: math.unit(5 + 8/12, "feet"),
  34100. default: true
  34101. },
  34102. {
  34103. name: "Macro",
  34104. height: math.unit(250, "feet")
  34105. },
  34106. {
  34107. name: "Really High",
  34108. height: math.unit(420, "feet")
  34109. },
  34110. ]
  34111. ))
  34112. characterMakers.push(() => makeCharacter(
  34113. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34114. {
  34115. front: {
  34116. height: math.unit(5, "meters"),
  34117. weight: math.unit(292000000000000, "kg"),
  34118. name: "Front",
  34119. image: {
  34120. source: "./media/characters/devourer/front.svg",
  34121. extra: 1800/1733,
  34122. bottom: 211/2011
  34123. }
  34124. },
  34125. maw: {
  34126. height: math.unit(1.1, "meter"),
  34127. name: "Maw",
  34128. image: {
  34129. source: "./media/characters/devourer/maw.svg"
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Small",
  34136. height: math.unit(3, "meters")
  34137. },
  34138. {
  34139. name: "Large",
  34140. height: math.unit(5, "meters"),
  34141. default: true
  34142. },
  34143. ]
  34144. ))
  34145. characterMakers.push(() => makeCharacter(
  34146. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34147. {
  34148. front: {
  34149. height: math.unit(6, "feet"),
  34150. weight: math.unit(400, "lb"),
  34151. name: "Front",
  34152. image: {
  34153. source: "./media/characters/ellarby/front.svg",
  34154. extra: 1909/1763,
  34155. bottom: 80/1989
  34156. }
  34157. },
  34158. back: {
  34159. height: math.unit(6, "feet"),
  34160. weight: math.unit(400, "lb"),
  34161. name: "Back",
  34162. image: {
  34163. source: "./media/characters/ellarby/back.svg",
  34164. extra: 1914/1784,
  34165. bottom: 172/2086
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Mischief",
  34172. height: math.unit(18, "inches")
  34173. },
  34174. {
  34175. name: "Trouble",
  34176. height: math.unit(12, "feet")
  34177. },
  34178. {
  34179. name: "Havoc",
  34180. height: math.unit(200, "feet"),
  34181. default: true
  34182. },
  34183. {
  34184. name: "Pandemonium",
  34185. height: math.unit(1, "mile")
  34186. },
  34187. {
  34188. name: "Catastrophe",
  34189. height: math.unit(100, "miles")
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34195. {
  34196. front: {
  34197. height: math.unit(4.7, "meters"),
  34198. weight: math.unit(6500, "kg"),
  34199. name: "Front",
  34200. image: {
  34201. source: "./media/characters/vex/front.svg",
  34202. extra: 1288/1140,
  34203. bottom: 100/1388
  34204. }
  34205. },
  34206. },
  34207. [
  34208. {
  34209. name: "Normal",
  34210. height: math.unit(4.7, "meters"),
  34211. default: true
  34212. },
  34213. ]
  34214. ))
  34215. characterMakers.push(() => makeCharacter(
  34216. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34217. {
  34218. normal: {
  34219. height: math.unit(6, "feet"),
  34220. weight: math.unit(350, "lb"),
  34221. name: "Normal",
  34222. image: {
  34223. source: "./media/characters/teshy/normal.svg",
  34224. extra: 1795/1735,
  34225. bottom: 16/1811
  34226. }
  34227. },
  34228. monsterFront: {
  34229. height: math.unit(12, "feet"),
  34230. weight: math.unit(4700, "lb"),
  34231. name: "Monster (Front)",
  34232. image: {
  34233. source: "./media/characters/teshy/monster-front.svg",
  34234. extra: 2042/2034,
  34235. bottom: 128/2170
  34236. }
  34237. },
  34238. monsterSide: {
  34239. height: math.unit(12, "feet"),
  34240. weight: math.unit(4700, "lb"),
  34241. name: "Monster (Side)",
  34242. image: {
  34243. source: "./media/characters/teshy/monster-side.svg",
  34244. extra: 2067/2056,
  34245. bottom: 70/2137
  34246. }
  34247. },
  34248. monsterBack: {
  34249. height: math.unit(12, "feet"),
  34250. weight: math.unit(4700, "lb"),
  34251. name: "Monster (Back)",
  34252. image: {
  34253. source: "./media/characters/teshy/monster-back.svg",
  34254. extra: 1921/1914,
  34255. bottom: 171/2092
  34256. }
  34257. },
  34258. },
  34259. [
  34260. {
  34261. name: "Normal",
  34262. height: math.unit(6, "feet"),
  34263. default: true
  34264. },
  34265. ]
  34266. ))
  34267. characterMakers.push(() => makeCharacter(
  34268. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34269. {
  34270. front: {
  34271. height: math.unit(6, "feet"),
  34272. name: "Front",
  34273. image: {
  34274. source: "./media/characters/ramey/front.svg",
  34275. extra: 790/787,
  34276. bottom: 27/817
  34277. }
  34278. },
  34279. },
  34280. [
  34281. {
  34282. name: "Normal",
  34283. height: math.unit(6, "feet"),
  34284. default: true
  34285. },
  34286. ]
  34287. ))
  34288. characterMakers.push(() => makeCharacter(
  34289. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34290. {
  34291. front: {
  34292. height: math.unit(5 + 5/12, "feet"),
  34293. weight: math.unit(120, "lb"),
  34294. name: "Front",
  34295. image: {
  34296. source: "./media/characters/phirae/front.svg",
  34297. extra: 2491/2436,
  34298. bottom: 38/2529
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(5 + 5/12, "feet"),
  34306. default: true
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34312. {
  34313. front: {
  34314. height: math.unit(5 + 3/12, "feet"),
  34315. name: "Front",
  34316. image: {
  34317. source: "./media/characters/stagglas/front.svg",
  34318. extra: 962/882,
  34319. bottom: 53/1015
  34320. }
  34321. },
  34322. feral: {
  34323. height: math.unit(335, "cm"),
  34324. name: "Feral",
  34325. image: {
  34326. source: "./media/characters/stagglas/feral.svg",
  34327. extra: 1732/1090,
  34328. bottom: 48/1780
  34329. }
  34330. },
  34331. },
  34332. [
  34333. {
  34334. name: "Normal",
  34335. height: math.unit(5 + 3/12, "feet"),
  34336. default: true
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34342. {
  34343. front: {
  34344. height: math.unit(5 + 4/12, "feet"),
  34345. weight: math.unit(145, "lb"),
  34346. name: "Front",
  34347. image: {
  34348. source: "./media/characters/starra/front.svg",
  34349. extra: 1790/1691,
  34350. bottom: 91/1881
  34351. }
  34352. },
  34353. },
  34354. [
  34355. {
  34356. name: "Normal",
  34357. height: math.unit(5 + 4/12, "feet"),
  34358. default: true
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34364. {
  34365. front: {
  34366. height: math.unit(2.2, "meters"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34370. extra: 1194/1005,
  34371. bottom: 25/1219
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Normal",
  34378. height: math.unit(2.2, "meters"),
  34379. default: true
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34385. {
  34386. side: {
  34387. height: math.unit(8 + 2/12, "feet"),
  34388. weight: math.unit(1240, "lb"),
  34389. name: "Side",
  34390. image: {
  34391. source: "./media/characters/mika-valentine/side.svg",
  34392. extra: 2670/2501,
  34393. bottom: 250/2920
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Normal",
  34400. height: math.unit(8 + 2/12, "feet"),
  34401. default: true
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34407. {
  34408. front: {
  34409. height: math.unit(7 + 2/12, "feet"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/xoltol/front.svg",
  34413. extra: 2212/2124,
  34414. bottom: 84/2296
  34415. }
  34416. },
  34417. side: {
  34418. height: math.unit(7 + 2/12, "feet"),
  34419. name: "Side",
  34420. image: {
  34421. source: "./media/characters/xoltol/side.svg",
  34422. extra: 2273/2197,
  34423. bottom: 26/2299
  34424. }
  34425. },
  34426. hand: {
  34427. height: math.unit(2.5, "feet"),
  34428. name: "Hand",
  34429. image: {
  34430. source: "./media/characters/xoltol/hand.svg"
  34431. }
  34432. },
  34433. },
  34434. [
  34435. {
  34436. name: "Small-ish",
  34437. height: math.unit(5 + 11/12, "feet")
  34438. },
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(7 + 2/12, "feet")
  34442. },
  34443. {
  34444. name: "\"Macro\"",
  34445. height: math.unit(14 + 9/12, "feet"),
  34446. default: true
  34447. },
  34448. {
  34449. name: "Alternate Height",
  34450. height: math.unit(20, "feet")
  34451. },
  34452. {
  34453. name: "Actually Macro",
  34454. height: math.unit(100, "feet")
  34455. },
  34456. ]
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(5 + 2/12, "feet"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/kotetsu-redwood/front.svg",
  34466. extra: 1053/942,
  34467. bottom: 60/1113
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(5 + 2/12, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34481. {
  34482. front: {
  34483. height: math.unit(2.4, "meters"),
  34484. weight: math.unit(125, "kg"),
  34485. name: "Front",
  34486. image: {
  34487. source: "./media/characters/lilith/front.svg",
  34488. extra: 1590/1513,
  34489. bottom: 203/1793
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Humanoid",
  34496. height: math.unit(2.4, "meters")
  34497. },
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(6, "meters"),
  34501. default: true
  34502. },
  34503. {
  34504. name: "Largest",
  34505. height: math.unit(55, "meters")
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(8 + 4/12, "feet"),
  34514. weight: math.unit(535, "lb"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/beh'kah-bolger/front.svg",
  34518. extra: 1660/1603,
  34519. bottom: 37/1697
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(8 + 4/12, "feet"),
  34527. default: true
  34528. },
  34529. {
  34530. name: "Kaiju",
  34531. height: math.unit(250, "feet")
  34532. },
  34533. {
  34534. name: "Still Growing",
  34535. height: math.unit(10, "miles")
  34536. },
  34537. {
  34538. name: "Continental",
  34539. height: math.unit(5000, "miles")
  34540. },
  34541. {
  34542. name: "Final Form",
  34543. height: math.unit(2500000, "miles")
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(7 + 2/12, "feet"),
  34552. weight: math.unit(230, "kg"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/tatyana-milewska/front.svg",
  34556. extra: 1199/1150,
  34557. bottom: 86/1285
  34558. }
  34559. },
  34560. },
  34561. [
  34562. {
  34563. name: "Normal",
  34564. height: math.unit(7 + 2/12, "feet"),
  34565. default: true
  34566. },
  34567. {
  34568. name: "Big",
  34569. height: math.unit(12, "feet")
  34570. },
  34571. {
  34572. name: "Minimacro",
  34573. height: math.unit(20, "feet")
  34574. },
  34575. {
  34576. name: "Macro",
  34577. height: math.unit(120, "feet")
  34578. },
  34579. ]
  34580. ))
  34581. characterMakers.push(() => makeCharacter(
  34582. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34583. {
  34584. front: {
  34585. height: math.unit(7 + 8/12, "feet"),
  34586. weight: math.unit(152, "kg"),
  34587. name: "Front",
  34588. image: {
  34589. source: "./media/characters/helen-arri/front.svg",
  34590. extra: 440/423,
  34591. bottom: 14/454
  34592. }
  34593. },
  34594. back: {
  34595. height: math.unit(7 + 8/12, "feet"),
  34596. weight: math.unit(152, "kg"),
  34597. name: "Back",
  34598. image: {
  34599. source: "./media/characters/helen-arri/back.svg",
  34600. extra: 443/426,
  34601. bottom: 8/451
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Normal",
  34608. height: math.unit(7 + 8/12, "feet"),
  34609. default: true
  34610. },
  34611. {
  34612. name: "Big",
  34613. height: math.unit(14, "feet")
  34614. },
  34615. {
  34616. name: "Minimacro",
  34617. height: math.unit(24, "feet")
  34618. },
  34619. {
  34620. name: "Macro",
  34621. height: math.unit(140, "feet")
  34622. },
  34623. ]
  34624. ))
  34625. characterMakers.push(() => makeCharacter(
  34626. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34627. {
  34628. front: {
  34629. height: math.unit(6, "meters"),
  34630. name: "Front",
  34631. image: {
  34632. source: "./media/characters/ehanu-rehu/front.svg",
  34633. extra: 1800/1800,
  34634. bottom: 59/1859
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(6, "meters"),
  34642. default: true
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34648. {
  34649. front: {
  34650. height: math.unit(7 + 3/12, "feet"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/renholder/front.svg",
  34654. extra: 3096/2960,
  34655. bottom: 250/3346
  34656. }
  34657. },
  34658. },
  34659. [
  34660. {
  34661. name: "Normal Bat",
  34662. height: math.unit(7 + 3/12, "feet"),
  34663. default: true
  34664. },
  34665. {
  34666. name: "Slightly Tall Bat",
  34667. height: math.unit(100, "feet")
  34668. },
  34669. {
  34670. name: "Big Bat",
  34671. height: math.unit(1000, "feet")
  34672. },
  34673. {
  34674. name: "City-Sized Bat",
  34675. height: math.unit(200000, "feet")
  34676. },
  34677. {
  34678. name: "Bigger Bat",
  34679. height: math.unit(10000, "miles")
  34680. },
  34681. {
  34682. name: "Solar Sized Bat",
  34683. height: math.unit(100, "AU")
  34684. },
  34685. {
  34686. name: "Galactic Bat",
  34687. height: math.unit(200000, "lightyears")
  34688. },
  34689. {
  34690. name: "Universally Known Bat",
  34691. height: math.unit(1, "universe")
  34692. },
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34697. {
  34698. front: {
  34699. height: math.unit(6 + 11/12, "feet"),
  34700. weight: math.unit(250, "lb"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/cookiecat/front.svg",
  34704. extra: 893/827,
  34705. bottom: 14/907
  34706. }
  34707. },
  34708. },
  34709. [
  34710. {
  34711. name: "Micro",
  34712. height: math.unit(3, "inches")
  34713. },
  34714. {
  34715. name: "Normal",
  34716. height: math.unit(6 + 11/12, "feet"),
  34717. default: true
  34718. },
  34719. {
  34720. name: "Macro",
  34721. height: math.unit(100, "feet")
  34722. },
  34723. {
  34724. name: "Macro+",
  34725. height: math.unit(404, "feet")
  34726. },
  34727. {
  34728. name: "Megamacro",
  34729. height: math.unit(165, "miles")
  34730. },
  34731. {
  34732. name: "Planetary",
  34733. height: math.unit(4600, "miles")
  34734. },
  34735. ]
  34736. ))
  34737. characterMakers.push(() => makeCharacter(
  34738. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34739. {
  34740. front: {
  34741. height: math.unit(10 + 3/12, "feet"),
  34742. weight: math.unit(1500, "lb"),
  34743. name: "Front",
  34744. image: {
  34745. source: "./media/characters/tux-kusanagi/front.svg",
  34746. extra: 944/840,
  34747. bottom: 39/983
  34748. }
  34749. },
  34750. back: {
  34751. height: math.unit(10 + 3/12, "feet"),
  34752. weight: math.unit(1500, "lb"),
  34753. name: "Back",
  34754. image: {
  34755. source: "./media/characters/tux-kusanagi/back.svg",
  34756. extra: 941/842,
  34757. bottom: 28/969
  34758. }
  34759. },
  34760. rump: {
  34761. height: math.unit(5.25, "feet"),
  34762. name: "Rump",
  34763. image: {
  34764. source: "./media/characters/tux-kusanagi/rump.svg"
  34765. }
  34766. },
  34767. beak: {
  34768. height: math.unit(1.54, "feet"),
  34769. name: "Beak",
  34770. image: {
  34771. source: "./media/characters/tux-kusanagi/beak.svg"
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(10 + 3/12, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(58, "feet"),
  34788. weight: math.unit(200, "tons"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/uzarmazari/front.svg",
  34792. extra: 1575/1455,
  34793. bottom: 152/1727
  34794. }
  34795. },
  34796. back: {
  34797. height: math.unit(58, "feet"),
  34798. weight: math.unit(200, "tons"),
  34799. name: "Back",
  34800. image: {
  34801. source: "./media/characters/uzarmazari/back.svg",
  34802. extra: 1585/1510,
  34803. bottom: 157/1742
  34804. }
  34805. },
  34806. head: {
  34807. height: math.unit(26, "feet"),
  34808. name: "Head",
  34809. image: {
  34810. source: "./media/characters/uzarmazari/head.svg"
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(58, "feet"),
  34818. default: true
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34824. {
  34825. side: {
  34826. height: math.unit(15, "feet"),
  34827. name: "Side",
  34828. image: {
  34829. source: "./media/characters/akitu/side.svg",
  34830. extra: 1421/1321,
  34831. bottom: 157/1578
  34832. }
  34833. },
  34834. front: {
  34835. height: math.unit(15, "feet"),
  34836. name: "Front",
  34837. image: {
  34838. source: "./media/characters/akitu/front.svg",
  34839. extra: 1435/1326,
  34840. bottom: 232/1667
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Normal",
  34847. height: math.unit(15, "feet"),
  34848. default: true
  34849. },
  34850. ]
  34851. ))
  34852. characterMakers.push(() => makeCharacter(
  34853. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34854. {
  34855. front: {
  34856. height: math.unit(10 + 8/12, "feet"),
  34857. name: "Front",
  34858. image: {
  34859. source: "./media/characters/azalie-croixland/front.svg",
  34860. extra: 1972/1856,
  34861. bottom: 31/2003
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Original Height",
  34868. height: math.unit(5 + 4/12, "feet")
  34869. },
  34870. {
  34871. name: "Normal Height",
  34872. height: math.unit(10 + 8/12, "feet"),
  34873. default: true
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34879. {
  34880. side: {
  34881. height: math.unit(7 + 1/12, "feet"),
  34882. weight: math.unit(245, "lb"),
  34883. name: "Side",
  34884. image: {
  34885. source: "./media/characters/kavus-kazian/side.svg",
  34886. extra: 349/342,
  34887. bottom: 15/364
  34888. }
  34889. },
  34890. },
  34891. [
  34892. {
  34893. name: "Normal",
  34894. height: math.unit(7 + 1/12, "feet"),
  34895. default: true
  34896. },
  34897. ]
  34898. ))
  34899. characterMakers.push(() => makeCharacter(
  34900. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34901. {
  34902. normal: {
  34903. height: math.unit(5 + 11/12, "feet"),
  34904. name: "Normal",
  34905. image: {
  34906. source: "./media/characters/moonlight-rose/normal.svg",
  34907. extra: 1979/1835,
  34908. bottom: 14/1993
  34909. }
  34910. },
  34911. demon: {
  34912. height: math.unit(5, "km"),
  34913. name: "Demon",
  34914. image: {
  34915. source: "./media/characters/moonlight-rose/demon.svg",
  34916. extra: 986/916,
  34917. bottom: 28/1014
  34918. }
  34919. },
  34920. },
  34921. [
  34922. {
  34923. name: "\"Natural\" height",
  34924. height: math.unit(5 + 11/12, "feet")
  34925. },
  34926. {
  34927. name: "Comfortable Size",
  34928. height: math.unit(40, "meters")
  34929. },
  34930. {
  34931. name: "Common Size",
  34932. height: math.unit(50, "km"),
  34933. default: true
  34934. },
  34935. {
  34936. name: "Demonic",
  34937. height: math.unit(1.24415e+21, "meters")
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(16, "feet"),
  34946. weight: math.unit(610, "kg"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/huckle/front.svg",
  34950. extra: 1731/1625,
  34951. bottom: 33/1764
  34952. }
  34953. },
  34954. back: {
  34955. height: math.unit(16, "feet"),
  34956. weight: math.unit(610, "kg"),
  34957. name: "Back",
  34958. image: {
  34959. source: "./media/characters/huckle/back.svg",
  34960. extra: 1738/1651,
  34961. bottom: 37/1775
  34962. }
  34963. },
  34964. laughing: {
  34965. height: math.unit(3.75, "feet"),
  34966. name: "Laughing",
  34967. image: {
  34968. source: "./media/characters/huckle/laughing.svg"
  34969. }
  34970. },
  34971. angry: {
  34972. height: math.unit(4.15, "feet"),
  34973. name: "Angry",
  34974. image: {
  34975. source: "./media/characters/huckle/angry.svg"
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Normal",
  34982. height: math.unit(16, "feet"),
  34983. default: true
  34984. },
  34985. {
  34986. name: "Mini Macro",
  34987. height: math.unit(463, "feet")
  34988. },
  34989. {
  34990. name: "Macro",
  34991. height: math.unit(1680, "meters")
  34992. },
  34993. {
  34994. name: "Mega Macro",
  34995. height: math.unit(175, "km")
  34996. },
  34997. {
  34998. name: "Terra Macro",
  34999. height: math.unit(32, "gigameters")
  35000. },
  35001. {
  35002. name: "Multiverse+",
  35003. height: math.unit(2.56e23, "yottameters")
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(6 + 9/12, "feet"),
  35012. weight: math.unit(280, "lb"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/candy/front.svg",
  35016. extra: 234/217,
  35017. bottom: 11/245
  35018. }
  35019. },
  35020. },
  35021. [
  35022. {
  35023. name: "Really Small",
  35024. height: math.unit(0.1, "nm")
  35025. },
  35026. {
  35027. name: "Micro",
  35028. height: math.unit(2, "inches")
  35029. },
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(6 + 9/12, "feet"),
  35033. default: true
  35034. },
  35035. {
  35036. name: "Small Macro",
  35037. height: math.unit(69, "feet")
  35038. },
  35039. {
  35040. name: "Macro",
  35041. height: math.unit(160, "feet")
  35042. },
  35043. {
  35044. name: "Megamacro",
  35045. height: math.unit(22000, "miles")
  35046. },
  35047. {
  35048. name: "Gigamacro",
  35049. height: math.unit(50000, "miles")
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(4, "feet"),
  35058. weight: math.unit(90, "lb"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/joey-mcdonald/front.svg",
  35062. extra: 1059/852,
  35063. bottom: 33/1092
  35064. }
  35065. },
  35066. back: {
  35067. height: math.unit(4, "feet"),
  35068. weight: math.unit(90, "lb"),
  35069. name: "Back",
  35070. image: {
  35071. source: "./media/characters/joey-mcdonald/back.svg",
  35072. extra: 1077/879,
  35073. bottom: 5/1082
  35074. }
  35075. },
  35076. frontKobold: {
  35077. height: math.unit(4, "feet"),
  35078. weight: math.unit(100, "lb"),
  35079. name: "Front-kobold",
  35080. image: {
  35081. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35082. extra: 1480/1367,
  35083. bottom: 0/1480
  35084. }
  35085. },
  35086. backKobold: {
  35087. height: math.unit(4, "feet"),
  35088. weight: math.unit(100, "lb"),
  35089. name: "Back-kobold",
  35090. image: {
  35091. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35092. extra: 1449/1361,
  35093. bottom: 0/1449
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Normal",
  35100. height: math.unit(4, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35107. {
  35108. front: {
  35109. height: math.unit(12 + 6/12, "feet"),
  35110. name: "Front",
  35111. image: {
  35112. source: "./media/characters/kass-lockheed/front.svg",
  35113. extra: 354/343,
  35114. bottom: 9/363
  35115. }
  35116. },
  35117. back: {
  35118. height: math.unit(12 + 6/12, "feet"),
  35119. name: "Back",
  35120. image: {
  35121. source: "./media/characters/kass-lockheed/back.svg",
  35122. extra: 364/352,
  35123. bottom: 3/367
  35124. }
  35125. },
  35126. dick: {
  35127. height: math.unit(3.12, "feet"),
  35128. name: "Dick",
  35129. image: {
  35130. source: "./media/characters/kass-lockheed/dick.svg"
  35131. }
  35132. },
  35133. head: {
  35134. height: math.unit(2.6, "feet"),
  35135. name: "Head",
  35136. image: {
  35137. source: "./media/characters/kass-lockheed/head.svg"
  35138. }
  35139. },
  35140. bleh: {
  35141. height: math.unit(2.85, "feet"),
  35142. name: "Bleh",
  35143. image: {
  35144. source: "./media/characters/kass-lockheed/bleh.svg"
  35145. }
  35146. },
  35147. smug: {
  35148. height: math.unit(2.85, "feet"),
  35149. name: "Smug",
  35150. image: {
  35151. source: "./media/characters/kass-lockheed/smug.svg"
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(12 + 6/12, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(6 + 2/12, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/taylor/front.svg",
  35171. extra: 639/495,
  35172. bottom: 12/651
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(6 + 2/12, "feet"),
  35180. default: true
  35181. },
  35182. {
  35183. name: "Big",
  35184. height: math.unit(15, "feet")
  35185. },
  35186. {
  35187. name: "Lorg",
  35188. height: math.unit(80, "feet")
  35189. },
  35190. {
  35191. name: "Too Lorg",
  35192. height: math.unit(120, "feet")
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(15, "feet"),
  35201. name: "Front",
  35202. image: {
  35203. source: "./media/characters/kaizer/front.svg",
  35204. extra: 1612/1436,
  35205. bottom: 43/1655
  35206. }
  35207. },
  35208. },
  35209. [
  35210. {
  35211. name: "Normal",
  35212. height: math.unit(15, "feet"),
  35213. default: true
  35214. },
  35215. ]
  35216. ))
  35217. characterMakers.push(() => makeCharacter(
  35218. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35219. {
  35220. front: {
  35221. height: math.unit(2, "feet"),
  35222. weight: math.unit(30, "lb"),
  35223. name: "Front",
  35224. image: {
  35225. source: "./media/characters/sandy/front.svg",
  35226. extra: 1439/1307,
  35227. bottom: 194/1633
  35228. }
  35229. },
  35230. },
  35231. [
  35232. {
  35233. name: "Normal",
  35234. height: math.unit(2, "feet"),
  35235. default: true
  35236. },
  35237. ]
  35238. ))
  35239. characterMakers.push(() => makeCharacter(
  35240. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35241. {
  35242. front: {
  35243. height: math.unit(3, "feet"),
  35244. name: "Front",
  35245. image: {
  35246. source: "./media/characters/mellvi/front.svg",
  35247. extra: 1831/1630,
  35248. bottom: 58/1889
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Normal",
  35255. height: math.unit(3, "feet"),
  35256. default: true
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35262. {
  35263. front: {
  35264. height: math.unit(5 + 11/12, "feet"),
  35265. weight: math.unit(200, "lb"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/shirou/front.svg",
  35269. extra: 2491/2383,
  35270. bottom: 189/2680
  35271. }
  35272. },
  35273. back: {
  35274. height: math.unit(5 + 11/12, "feet"),
  35275. weight: math.unit(200, "lb"),
  35276. name: "Back",
  35277. image: {
  35278. source: "./media/characters/shirou/back.svg",
  35279. extra: 2554/2450,
  35280. bottom: 76/2630
  35281. }
  35282. },
  35283. },
  35284. [
  35285. {
  35286. name: "Normal",
  35287. height: math.unit(5 + 11/12, "feet"),
  35288. default: true
  35289. },
  35290. ]
  35291. ))
  35292. characterMakers.push(() => makeCharacter(
  35293. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35294. {
  35295. front: {
  35296. height: math.unit(6 + 3/12, "feet"),
  35297. weight: math.unit(177, "lb"),
  35298. name: "Front",
  35299. image: {
  35300. source: "./media/characters/noryu/front.svg",
  35301. extra: 973/885,
  35302. bottom: 10/983
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(6 + 3/12, "feet"),
  35310. default: true
  35311. },
  35312. ]
  35313. ))
  35314. characterMakers.push(() => makeCharacter(
  35315. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35316. {
  35317. front: {
  35318. height: math.unit(5 + 6/12, "feet"),
  35319. weight: math.unit(170, "lb"),
  35320. name: "Front",
  35321. image: {
  35322. source: "./media/characters/mevolas-rubenido/front.svg",
  35323. extra: 2109/1901,
  35324. bottom: 96/2205
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(5 + 6/12, "feet"),
  35332. default: true
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(100, "feet"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/dee/front.svg",
  35344. extra: 2153/2036,
  35345. bottom: 59/2212
  35346. }
  35347. },
  35348. back: {
  35349. height: math.unit(100, "feet"),
  35350. name: "Back",
  35351. image: {
  35352. source: "./media/characters/dee/back.svg",
  35353. extra: 2183/2058,
  35354. bottom: 75/2258
  35355. }
  35356. },
  35357. foot: {
  35358. height: math.unit(19.43, "feet"),
  35359. name: "Foot",
  35360. image: {
  35361. source: "./media/characters/dee/foot.svg"
  35362. }
  35363. },
  35364. hoof: {
  35365. height: math.unit(20.6, "feet"),
  35366. name: "Hoof",
  35367. image: {
  35368. source: "./media/characters/dee/hoof.svg"
  35369. }
  35370. },
  35371. },
  35372. [
  35373. {
  35374. name: "Macro",
  35375. height: math.unit(100, "feet"),
  35376. default: true
  35377. },
  35378. ]
  35379. ))
  35380. characterMakers.push(() => makeCharacter(
  35381. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35382. {
  35383. front: {
  35384. height: math.unit(5 + 6/12, "feet"),
  35385. name: "Front",
  35386. image: {
  35387. source: "./media/characters/teh/front.svg",
  35388. extra: 1002/847,
  35389. bottom: 62/1064
  35390. }
  35391. },
  35392. },
  35393. [
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(5 + 6/12, "feet"),
  35397. default: true
  35398. },
  35399. ]
  35400. ))
  35401. characterMakers.push(() => makeCharacter(
  35402. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35403. {
  35404. side: {
  35405. height: math.unit(6 + 1/12, "feet"),
  35406. weight: math.unit(204, "lb"),
  35407. name: "Side",
  35408. image: {
  35409. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35410. extra: 974/775,
  35411. bottom: 169/1143
  35412. }
  35413. },
  35414. sitting: {
  35415. height: math.unit(6 + 2/12, "feet"),
  35416. weight: math.unit(204, "lb"),
  35417. name: "Sitting",
  35418. image: {
  35419. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35420. extra: 1175/964,
  35421. bottom: 378/1553
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(6 + 1/12, "feet"),
  35429. default: true
  35430. },
  35431. ]
  35432. ))
  35433. characterMakers.push(() => makeCharacter(
  35434. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35435. {
  35436. front: {
  35437. height: math.unit(6, "inches"),
  35438. name: "Front",
  35439. image: {
  35440. source: "./media/characters/tululi/front.svg",
  35441. extra: 1997/1876,
  35442. bottom: 20/2017
  35443. }
  35444. },
  35445. },
  35446. [
  35447. {
  35448. name: "Normal",
  35449. height: math.unit(6, "inches"),
  35450. default: true
  35451. },
  35452. ]
  35453. ))
  35454. characterMakers.push(() => makeCharacter(
  35455. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35456. {
  35457. front: {
  35458. height: math.unit(4 + 1/12, "feet"),
  35459. name: "Front",
  35460. image: {
  35461. source: "./media/characters/star/front.svg",
  35462. extra: 1493/1189,
  35463. bottom: 48/1541
  35464. }
  35465. },
  35466. },
  35467. [
  35468. {
  35469. name: "Normal",
  35470. height: math.unit(4 + 1/12, "feet"),
  35471. default: true
  35472. },
  35473. ]
  35474. ))
  35475. characterMakers.push(() => makeCharacter(
  35476. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35477. {
  35478. front: {
  35479. height: math.unit(6 + 3/12, "feet"),
  35480. name: "Front",
  35481. image: {
  35482. source: "./media/characters/comet/front.svg",
  35483. extra: 1681/1462,
  35484. bottom: 26/1707
  35485. }
  35486. },
  35487. },
  35488. [
  35489. {
  35490. name: "Normal",
  35491. height: math.unit(6 + 3/12, "feet"),
  35492. default: true
  35493. },
  35494. ]
  35495. ))
  35496. characterMakers.push(() => makeCharacter(
  35497. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35498. {
  35499. front: {
  35500. height: math.unit(950, "feet"),
  35501. name: "Front",
  35502. image: {
  35503. source: "./media/characters/vortex/front.svg",
  35504. extra: 1497/1434,
  35505. bottom: 56/1553
  35506. }
  35507. },
  35508. maw: {
  35509. height: math.unit(285, "feet"),
  35510. name: "Maw",
  35511. image: {
  35512. source: "./media/characters/vortex/maw.svg"
  35513. }
  35514. },
  35515. },
  35516. [
  35517. {
  35518. name: "Macro",
  35519. height: math.unit(950, "feet"),
  35520. default: true
  35521. },
  35522. ]
  35523. ))
  35524. characterMakers.push(() => makeCharacter(
  35525. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35526. {
  35527. front: {
  35528. height: math.unit(600, "feet"),
  35529. weight: math.unit(0.02, "grams"),
  35530. name: "Front",
  35531. image: {
  35532. source: "./media/characters/doodle/front.svg",
  35533. extra: 1578/1413,
  35534. bottom: 37/1615
  35535. }
  35536. },
  35537. },
  35538. [
  35539. {
  35540. name: "Macro",
  35541. height: math.unit(600, "feet"),
  35542. default: true
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(6 + 6/12, "feet"),
  35551. name: "Front",
  35552. image: {
  35553. source: "./media/characters/jai/front.svg",
  35554. extra: 1645/1534,
  35555. bottom: 115/1760
  35556. }
  35557. },
  35558. },
  35559. [
  35560. {
  35561. name: "Normal",
  35562. height: math.unit(6 + 6/12, "feet"),
  35563. default: true
  35564. },
  35565. ]
  35566. ))
  35567. characterMakers.push(() => makeCharacter(
  35568. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35569. {
  35570. front: {
  35571. height: math.unit(6 + 8/12, "feet"),
  35572. name: "Front",
  35573. image: {
  35574. source: "./media/characters/pixel/front.svg",
  35575. extra: 1900/1735,
  35576. bottom: 63/1963
  35577. }
  35578. },
  35579. },
  35580. [
  35581. {
  35582. name: "Normal",
  35583. height: math.unit(6 + 8/12, "feet"),
  35584. default: true
  35585. },
  35586. ]
  35587. ))
  35588. characterMakers.push(() => makeCharacter(
  35589. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35590. {
  35591. back: {
  35592. height: math.unit(4 + 1/12, "feet"),
  35593. weight: math.unit(75, "lb"),
  35594. name: "Back",
  35595. image: {
  35596. source: "./media/characters/rhett/back.svg",
  35597. extra: 930/878,
  35598. bottom: 25/955
  35599. }
  35600. },
  35601. front: {
  35602. height: math.unit(4 + 1/12, "feet"),
  35603. weight: math.unit(75, "lb"),
  35604. name: "Front",
  35605. image: {
  35606. source: "./media/characters/rhett/front.svg",
  35607. extra: 1682/1586,
  35608. bottom: 92/1774
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Micro",
  35615. height: math.unit(8, "inches")
  35616. },
  35617. {
  35618. name: "Tiny",
  35619. height: math.unit(2, "feet")
  35620. },
  35621. {
  35622. name: "Normal",
  35623. height: math.unit(4 + 1/12, "feet"),
  35624. default: true
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35630. {
  35631. front: {
  35632. height: math.unit(3 + 3/12, "feet"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/penny/front.svg",
  35636. extra: 1406/1311,
  35637. bottom: 26/1432
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Normal",
  35644. height: math.unit(3 + 3/12, "feet"),
  35645. default: true
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35651. {
  35652. front: {
  35653. height: math.unit(4 + 11/12, "feet"),
  35654. name: "Front",
  35655. image: {
  35656. source: "./media/characters/monty/front.svg",
  35657. extra: 1479/1209,
  35658. bottom: 0/1479
  35659. }
  35660. },
  35661. },
  35662. [
  35663. {
  35664. name: "Normal",
  35665. height: math.unit(4 + 11/12, "feet"),
  35666. default: true
  35667. },
  35668. ]
  35669. ))
  35670. characterMakers.push(() => makeCharacter(
  35671. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35672. {
  35673. front: {
  35674. height: math.unit(8 + 4/12, "feet"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/sterling/front.svg",
  35678. extra: 1420/1236,
  35679. bottom: 27/1447
  35680. }
  35681. },
  35682. },
  35683. [
  35684. {
  35685. name: "Normal",
  35686. height: math.unit(8 + 4/12, "feet"),
  35687. default: true
  35688. },
  35689. ]
  35690. ))
  35691. characterMakers.push(() => makeCharacter(
  35692. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35693. {
  35694. front: {
  35695. height: math.unit(15, "feet"),
  35696. name: "Front",
  35697. image: {
  35698. source: "./media/characters/marble/front.svg",
  35699. extra: 973/937,
  35700. bottom: 32/1005
  35701. }
  35702. },
  35703. },
  35704. [
  35705. {
  35706. name: "Normal",
  35707. height: math.unit(15, "feet"),
  35708. default: true
  35709. },
  35710. ]
  35711. ))
  35712. characterMakers.push(() => makeCharacter(
  35713. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35714. {
  35715. front: {
  35716. height: math.unit(3, "inches"),
  35717. name: "Front",
  35718. image: {
  35719. source: "./media/characters/powder/front.svg",
  35720. extra: 1504/1334,
  35721. bottom: 518/2022
  35722. }
  35723. },
  35724. },
  35725. [
  35726. {
  35727. name: "Normal",
  35728. height: math.unit(3, "inches"),
  35729. default: true
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35735. {
  35736. front: {
  35737. height: math.unit(4 + 5/12, "feet"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/joey-raccoon/front.svg",
  35741. extra: 1273/1197,
  35742. bottom: 0/1273
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(4 + 5/12, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35756. {
  35757. front: {
  35758. height: math.unit(8 + 4/12, "feet"),
  35759. name: "Front",
  35760. image: {
  35761. source: "./media/characters/vick/front.svg",
  35762. extra: 2187/2118,
  35763. bottom: 47/2234
  35764. }
  35765. },
  35766. },
  35767. [
  35768. {
  35769. name: "Normal",
  35770. height: math.unit(8 + 4/12, "feet"),
  35771. default: true
  35772. },
  35773. ]
  35774. ))
  35775. characterMakers.push(() => makeCharacter(
  35776. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35777. {
  35778. front: {
  35779. height: math.unit(5 + 5/12, "feet"),
  35780. name: "Front",
  35781. image: {
  35782. source: "./media/characters/mitsy/front.svg",
  35783. extra: 1842/1695,
  35784. bottom: 0/1842
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(5 + 5/12, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(6 + 3/12, "feet"),
  35801. name: "Front",
  35802. image: {
  35803. source: "./media/characters/silvy/front.svg",
  35804. extra: 1995/1836,
  35805. bottom: 225/2220
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(6 + 3/12, "feet"),
  35813. default: true
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35819. {
  35820. front: {
  35821. height: math.unit(3 + 8/12, "feet"),
  35822. name: "Front",
  35823. image: {
  35824. source: "./media/characters/rodney/front.svg",
  35825. extra: 1956/1747,
  35826. bottom: 31/1987
  35827. }
  35828. },
  35829. frontDressed: {
  35830. height: math.unit(2.9, "feet"),
  35831. name: "Front (Dressed)",
  35832. image: {
  35833. source: "./media/characters/rodney/front-dressed.svg",
  35834. extra: 1382/1241,
  35835. bottom: 385/1767
  35836. }
  35837. },
  35838. },
  35839. [
  35840. {
  35841. name: "Normal",
  35842. height: math.unit(3 + 8/12, "feet"),
  35843. default: true
  35844. },
  35845. ]
  35846. ))
  35847. characterMakers.push(() => makeCharacter(
  35848. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35849. {
  35850. front: {
  35851. height: math.unit(5 + 9/12, "feet"),
  35852. weight: math.unit(194, "lbs"),
  35853. name: "Front",
  35854. image: {
  35855. source: "./media/characters/zakail-sudekai/front.svg",
  35856. extra: 2696/2533,
  35857. bottom: 248/2944
  35858. }
  35859. },
  35860. maw: {
  35861. height: math.unit(1.35, "feet"),
  35862. name: "Maw",
  35863. image: {
  35864. source: "./media/characters/zakail-sudekai/maw.svg"
  35865. }
  35866. },
  35867. },
  35868. [
  35869. {
  35870. name: "Normal",
  35871. height: math.unit(5 + 9/12, "feet"),
  35872. default: true
  35873. },
  35874. ]
  35875. ))
  35876. characterMakers.push(() => makeCharacter(
  35877. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35878. {
  35879. front: {
  35880. height: math.unit(8 + 4/12, "feet"),
  35881. weight: math.unit(1200, "lb"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/eleanor/front.svg",
  35885. extra: 1226/1192,
  35886. bottom: 52/1278
  35887. }
  35888. },
  35889. back: {
  35890. height: math.unit(8 + 4/12, "feet"),
  35891. weight: math.unit(1200, "lb"),
  35892. name: "Back",
  35893. image: {
  35894. source: "./media/characters/eleanor/back.svg",
  35895. extra: 1242/1184,
  35896. bottom: 60/1302
  35897. }
  35898. },
  35899. head: {
  35900. height: math.unit(2.62, "feet"),
  35901. name: "Head",
  35902. image: {
  35903. source: "./media/characters/eleanor/head.svg"
  35904. }
  35905. },
  35906. },
  35907. [
  35908. {
  35909. name: "Normal",
  35910. height: math.unit(8 + 4/12, "feet"),
  35911. default: true
  35912. },
  35913. ]
  35914. ))
  35915. characterMakers.push(() => makeCharacter(
  35916. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35917. {
  35918. front: {
  35919. height: math.unit(8 + 4/12, "feet"),
  35920. weight: math.unit(750, "lb"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/tanya/front.svg",
  35924. extra: 1749/1615,
  35925. bottom: 33/1782
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(8 + 4/12, "feet"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35939. {
  35940. front: {
  35941. height: math.unit(5, "feet"),
  35942. weight: math.unit(225, "lb"),
  35943. name: "Front",
  35944. image: {
  35945. source: "./media/characters/cindy/front.svg",
  35946. extra: 1320/1250,
  35947. bottom: 42/1362
  35948. }
  35949. },
  35950. frontDressed: {
  35951. height: math.unit(5, "feet"),
  35952. weight: math.unit(225, "lb"),
  35953. name: "Front (Dressed)",
  35954. image: {
  35955. source: "./media/characters/cindy/front-dressed.svg",
  35956. extra: 1320/1250,
  35957. bottom: 42/1362
  35958. }
  35959. },
  35960. back: {
  35961. height: math.unit(5, "feet"),
  35962. weight: math.unit(225, "lb"),
  35963. name: "Back",
  35964. image: {
  35965. source: "./media/characters/cindy/back.svg",
  35966. extra: 1384/1346,
  35967. bottom: 14/1398
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(5, "feet"),
  35975. default: true
  35976. },
  35977. ]
  35978. ))
  35979. characterMakers.push(() => makeCharacter(
  35980. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35981. {
  35982. front: {
  35983. height: math.unit(6 + 9/12, "feet"),
  35984. weight: math.unit(440, "lb"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/wilbur-owen/front.svg",
  35988. extra: 1575/1448,
  35989. bottom: 72/1647
  35990. }
  35991. },
  35992. back: {
  35993. height: math.unit(6 + 9/12, "feet"),
  35994. weight: math.unit(440, "lb"),
  35995. name: "Back",
  35996. image: {
  35997. source: "./media/characters/wilbur-owen/back.svg",
  35998. extra: 1578/1445,
  35999. bottom: 36/1614
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(6 + 9/12, "feet"),
  36007. default: true
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(6 + 5/12, "feet"),
  36016. weight: math.unit(650, "lb"),
  36017. name: "Front",
  36018. image: {
  36019. source: "./media/characters/keegan/front.svg",
  36020. extra: 2387/2198,
  36021. bottom: 33/2420
  36022. }
  36023. },
  36024. side: {
  36025. height: math.unit(6 + 5/12, "feet"),
  36026. weight: math.unit(650, "lb"),
  36027. name: "Side",
  36028. image: {
  36029. source: "./media/characters/keegan/side.svg",
  36030. extra: 2390/2202,
  36031. bottom: 47/2437
  36032. }
  36033. },
  36034. back: {
  36035. height: math.unit(6 + 5/12, "feet"),
  36036. weight: math.unit(650, "lb"),
  36037. name: "Back",
  36038. image: {
  36039. source: "./media/characters/keegan/back.svg",
  36040. extra: 2418/2268,
  36041. bottom: 15/2433
  36042. }
  36043. },
  36044. frontSfw: {
  36045. height: math.unit(6 + 5/12, "feet"),
  36046. weight: math.unit(650, "lb"),
  36047. name: "Front (SFW)",
  36048. image: {
  36049. source: "./media/characters/keegan/front-sfw.svg",
  36050. extra: 2387/2198,
  36051. bottom: 33/2420
  36052. }
  36053. },
  36054. beans: {
  36055. height: math.unit(1.85, "feet"),
  36056. name: "Beans",
  36057. image: {
  36058. source: "./media/characters/keegan/beans.svg"
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(6 + 5/12, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(9, "feet"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/colton/front.svg",
  36078. extra: 1589/1326,
  36079. bottom: 139/1728
  36080. }
  36081. },
  36082. },
  36083. [
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(9, "feet"),
  36087. default: true
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36093. {
  36094. front: {
  36095. height: math.unit(2 + 9/12, "feet"),
  36096. name: "Front",
  36097. image: {
  36098. source: "./media/characters/bora/front.svg",
  36099. extra: 1265/1250,
  36100. bottom: 24/1289
  36101. }
  36102. },
  36103. },
  36104. [
  36105. {
  36106. name: "Normal",
  36107. height: math.unit(2 + 9/12, "feet"),
  36108. default: true
  36109. },
  36110. ]
  36111. ))
  36112. characterMakers.push(() => makeCharacter(
  36113. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36114. {
  36115. front: {
  36116. height: math.unit(8, "feet"),
  36117. name: "Front",
  36118. image: {
  36119. source: "./media/characters/myu-myu/front.svg",
  36120. extra: 1949/1857,
  36121. bottom: 90/2039
  36122. }
  36123. },
  36124. },
  36125. [
  36126. {
  36127. name: "Normal",
  36128. height: math.unit(8, "feet"),
  36129. default: true
  36130. },
  36131. {
  36132. name: "Big",
  36133. height: math.unit(15, "feet")
  36134. },
  36135. {
  36136. name: "BIG",
  36137. height: math.unit(25, "feet")
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36143. {
  36144. side: {
  36145. height: math.unit(7 + 5/12, "feet"),
  36146. weight: math.unit(2800, "lb"),
  36147. name: "Side",
  36148. image: {
  36149. source: "./media/characters/haloren/side.svg",
  36150. extra: 1793/409,
  36151. bottom: 59/1852
  36152. }
  36153. },
  36154. frontPaw: {
  36155. height: math.unit(2.36, "feet"),
  36156. name: "Front paw",
  36157. image: {
  36158. source: "./media/characters/haloren/front-paw.svg"
  36159. }
  36160. },
  36161. hindPaw: {
  36162. height: math.unit(3.18, "feet"),
  36163. name: "Hind paw",
  36164. image: {
  36165. source: "./media/characters/haloren/hind-paw.svg"
  36166. }
  36167. },
  36168. maw: {
  36169. height: math.unit(5.05, "feet"),
  36170. name: "Maw",
  36171. image: {
  36172. source: "./media/characters/haloren/maw.svg"
  36173. }
  36174. },
  36175. dick: {
  36176. height: math.unit(2.90, "feet"),
  36177. name: "Dick",
  36178. image: {
  36179. source: "./media/characters/haloren/dick.svg"
  36180. }
  36181. },
  36182. },
  36183. [
  36184. {
  36185. name: "Normal",
  36186. height: math.unit(7 + 5/12, "feet"),
  36187. default: true
  36188. },
  36189. {
  36190. name: "Enhanced",
  36191. height: math.unit(14 + 3/12, "feet")
  36192. },
  36193. ]
  36194. ))
  36195. characterMakers.push(() => makeCharacter(
  36196. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36197. {
  36198. front: {
  36199. height: math.unit(171, "cm"),
  36200. name: "Front",
  36201. image: {
  36202. source: "./media/characters/kimmy/front.svg",
  36203. extra: 1491/1435,
  36204. bottom: 53/1544
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Small",
  36211. height: math.unit(9, "cm")
  36212. },
  36213. {
  36214. name: "Normal",
  36215. height: math.unit(171, "cm"),
  36216. default: true
  36217. },
  36218. ]
  36219. ))
  36220. characterMakers.push(() => makeCharacter(
  36221. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36222. {
  36223. front: {
  36224. height: math.unit(8, "feet"),
  36225. weight: math.unit(300, "lb"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/galeboomer/front.svg",
  36229. extra: 4651/4415,
  36230. bottom: 162/4813
  36231. }
  36232. },
  36233. back: {
  36234. height: math.unit(8, "feet"),
  36235. weight: math.unit(300, "lb"),
  36236. name: "Back",
  36237. image: {
  36238. source: "./media/characters/galeboomer/back.svg",
  36239. extra: 4544/4314,
  36240. bottom: 16/4560
  36241. }
  36242. },
  36243. frontAlt: {
  36244. height: math.unit(8, "feet"),
  36245. weight: math.unit(300, "lb"),
  36246. name: "Front (Alt)",
  36247. image: {
  36248. source: "./media/characters/galeboomer/front-alt.svg",
  36249. extra: 4458/4228,
  36250. bottom: 68/4526
  36251. }
  36252. },
  36253. maw: {
  36254. height: math.unit(1.2, "feet"),
  36255. name: "Maw",
  36256. image: {
  36257. source: "./media/characters/galeboomer/maw.svg"
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Normal",
  36264. height: math.unit(8, "feet"),
  36265. default: true
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36271. {
  36272. front: {
  36273. height: math.unit(5 + 9/12, "feet"),
  36274. weight: math.unit(120, "lb"),
  36275. name: "Front",
  36276. image: {
  36277. source: "./media/characters/chyr/front.svg",
  36278. extra: 1323/1254,
  36279. bottom: 63/1386
  36280. }
  36281. },
  36282. back: {
  36283. height: math.unit(5 + 9/12, "feet"),
  36284. weight: math.unit(120, "lb"),
  36285. name: "Back",
  36286. image: {
  36287. source: "./media/characters/chyr/back.svg",
  36288. extra: 1323/1252,
  36289. bottom: 48/1371
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Normal",
  36296. height: math.unit(5 + 9/12, "feet"),
  36297. default: true
  36298. },
  36299. ]
  36300. ))
  36301. characterMakers.push(() => makeCharacter(
  36302. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36303. {
  36304. front: {
  36305. height: math.unit(7, "feet"),
  36306. weight: math.unit(310, "lb"),
  36307. name: "Front",
  36308. image: {
  36309. source: "./media/characters/solarus/front.svg",
  36310. extra: 2415/2021,
  36311. bottom: 103/2518
  36312. }
  36313. },
  36314. back: {
  36315. height: math.unit(7, "feet"),
  36316. weight: math.unit(310, "lb"),
  36317. name: "Back",
  36318. image: {
  36319. source: "./media/characters/solarus/back.svg",
  36320. extra: 2463/2089,
  36321. bottom: 79/2542
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(7, "feet"),
  36329. default: true
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(16, "feet"),
  36338. name: "Front",
  36339. image: {
  36340. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36341. extra: 1844/1780,
  36342. bottom: 58/1902
  36343. }
  36344. },
  36345. winterCoat: {
  36346. height: math.unit(16, "feet"),
  36347. name: "Winter Coat",
  36348. image: {
  36349. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36350. extra: 1807/1775,
  36351. bottom: 69/1876
  36352. }
  36353. },
  36354. },
  36355. [
  36356. {
  36357. name: "Normal",
  36358. height: math.unit(16, "feet"),
  36359. default: true
  36360. },
  36361. {
  36362. name: "Chicago Size",
  36363. height: math.unit(560, "feet")
  36364. },
  36365. ]
  36366. ))
  36367. characterMakers.push(() => makeCharacter(
  36368. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36369. {
  36370. front: {
  36371. height: math.unit(11 + 6/12, "feet"),
  36372. weight: math.unit(1366, "lb"),
  36373. name: "Front",
  36374. image: {
  36375. source: "./media/characters/lexor/front.svg",
  36376. extra: 1560/1481,
  36377. bottom: 211/1771
  36378. }
  36379. },
  36380. back: {
  36381. height: math.unit(11 + 6/12, "feet"),
  36382. weight: math.unit(1366, "lb"),
  36383. name: "Back",
  36384. image: {
  36385. source: "./media/characters/lexor/back.svg",
  36386. extra: 1614/1533,
  36387. bottom: 76/1690
  36388. }
  36389. },
  36390. maw: {
  36391. height: math.unit(3, "feet"),
  36392. name: "Maw",
  36393. image: {
  36394. source: "./media/characters/lexor/maw.svg"
  36395. }
  36396. },
  36397. dick: {
  36398. height: math.unit(2.59, "feet"),
  36399. name: "Dick",
  36400. image: {
  36401. source: "./media/characters/lexor/dick.svg"
  36402. }
  36403. },
  36404. },
  36405. [
  36406. {
  36407. name: "Normal",
  36408. height: math.unit(11 + 6/12, "feet"),
  36409. default: true
  36410. },
  36411. ]
  36412. ))
  36413. characterMakers.push(() => makeCharacter(
  36414. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36415. {
  36416. front: {
  36417. height: math.unit(5 + 8/12, "feet"),
  36418. name: "Front",
  36419. image: {
  36420. source: "./media/characters/magnum/front.svg",
  36421. extra: 942/855,
  36422. bottom: 26/968
  36423. }
  36424. },
  36425. },
  36426. [
  36427. {
  36428. name: "Normal",
  36429. height: math.unit(5 + 8/12, "feet"),
  36430. default: true
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(18 + 4/12, "feet"),
  36439. weight: math.unit(1500, "kg"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/solas-sharpsman/front.svg",
  36443. extra: 1698/1589,
  36444. bottom: 0/1698
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(18 + 4/12, "feet"),
  36452. default: true
  36453. },
  36454. ]
  36455. ))
  36456. characterMakers.push(() => makeCharacter(
  36457. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36458. {
  36459. front: {
  36460. height: math.unit(5 + 5/12, "feet"),
  36461. weight: math.unit(180, "lb"),
  36462. name: "Front",
  36463. image: {
  36464. source: "./media/characters/october/front.svg",
  36465. extra: 1800/1650,
  36466. bottom: 0/1800
  36467. }
  36468. },
  36469. frontNsfw: {
  36470. height: math.unit(5 + 5/12, "feet"),
  36471. weight: math.unit(180, "lb"),
  36472. name: "Front (NSFW)",
  36473. image: {
  36474. source: "./media/characters/october/front-nsfw.svg",
  36475. extra: 1392/1307,
  36476. bottom: 42/1434
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Normal",
  36483. height: math.unit(5 + 5/12, "feet"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(8 + 6/12, "feet"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/essynkardi/front.svg",
  36496. extra: 1914/1846,
  36497. bottom: 22/1936
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(8 + 6/12, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(6 + 6/12, "feet"),
  36514. weight: math.unit(7, "lb"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/icky/front.svg",
  36518. extra: 813/782,
  36519. bottom: 66/879
  36520. }
  36521. },
  36522. back: {
  36523. height: math.unit(6 + 6/12, "feet"),
  36524. weight: math.unit(7, "lb"),
  36525. name: "Back",
  36526. image: {
  36527. source: "./media/characters/icky/back.svg",
  36528. extra: 754/735,
  36529. bottom: 56/810
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(6 + 6/12, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36543. {
  36544. front: {
  36545. height: math.unit(15, "feet"),
  36546. name: "Front",
  36547. image: {
  36548. source: "./media/characters/rojas/front.svg",
  36549. extra: 1462/1408,
  36550. bottom: 95/1557
  36551. }
  36552. },
  36553. back: {
  36554. height: math.unit(15, "feet"),
  36555. name: "Back",
  36556. image: {
  36557. source: "./media/characters/rojas/back.svg",
  36558. extra: 1023/954,
  36559. bottom: 28/1051
  36560. }
  36561. },
  36562. },
  36563. [
  36564. {
  36565. name: "Normal",
  36566. height: math.unit(15, "feet"),
  36567. default: true
  36568. },
  36569. ]
  36570. ))
  36571. characterMakers.push(() => makeCharacter(
  36572. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36573. {
  36574. frontHuman: {
  36575. height: math.unit(5 + 7/12, "feet"),
  36576. name: "Front (Human)",
  36577. image: {
  36578. source: "./media/characters/alek-dryagan/front-human.svg",
  36579. extra: 1687/1667,
  36580. bottom: 69/1756
  36581. }
  36582. },
  36583. backHuman: {
  36584. height: math.unit(5 + 7/12, "feet"),
  36585. name: "Back (Human)",
  36586. image: {
  36587. source: "./media/characters/alek-dryagan/back-human.svg",
  36588. extra: 1670/1649,
  36589. bottom: 65/1735
  36590. }
  36591. },
  36592. frontDemi: {
  36593. height: math.unit(65, "feet"),
  36594. name: "Front (Demi)",
  36595. image: {
  36596. source: "./media/characters/alek-dryagan/front-demi.svg",
  36597. extra: 1669/1642,
  36598. bottom: 49/1718
  36599. }
  36600. },
  36601. backDemi: {
  36602. height: math.unit(65, "feet"),
  36603. name: "Back (Demi)",
  36604. image: {
  36605. source: "./media/characters/alek-dryagan/back-demi.svg",
  36606. extra: 1658/1637,
  36607. bottom: 40/1698
  36608. }
  36609. },
  36610. mawHuman: {
  36611. height: math.unit(0.3, "feet"),
  36612. name: "Maw (Human)",
  36613. image: {
  36614. source: "./media/characters/alek-dryagan/maw-human.svg"
  36615. }
  36616. },
  36617. mawDemi: {
  36618. height: math.unit(3.8, "feet"),
  36619. name: "Maw (Demi)",
  36620. image: {
  36621. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36622. }
  36623. },
  36624. },
  36625. [
  36626. {
  36627. name: "Normal",
  36628. height: math.unit(5 + 7/12, "feet"),
  36629. default: true
  36630. },
  36631. ]
  36632. ))
  36633. characterMakers.push(() => makeCharacter(
  36634. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36635. {
  36636. frontHuman: {
  36637. height: math.unit(5 + 2/12, "feet"),
  36638. name: "Front (Human)",
  36639. image: {
  36640. source: "./media/characters/gen/front-human.svg",
  36641. extra: 1627/1538,
  36642. bottom: 71/1698
  36643. }
  36644. },
  36645. backHuman: {
  36646. height: math.unit(5 + 2/12, "feet"),
  36647. name: "Back (Human)",
  36648. image: {
  36649. source: "./media/characters/gen/back-human.svg",
  36650. extra: 1638/1548,
  36651. bottom: 69/1707
  36652. }
  36653. },
  36654. frontDemi: {
  36655. height: math.unit(5 + 2/12, "feet"),
  36656. name: "Front (Demi)",
  36657. image: {
  36658. source: "./media/characters/gen/front-demi.svg",
  36659. extra: 1627/1538,
  36660. bottom: 71/1698
  36661. }
  36662. },
  36663. backDemi: {
  36664. height: math.unit(5 + 2/12, "feet"),
  36665. name: "Back (Demi)",
  36666. image: {
  36667. source: "./media/characters/gen/back-demi.svg",
  36668. extra: 1638/1548,
  36669. bottom: 69/1707
  36670. }
  36671. },
  36672. },
  36673. [
  36674. {
  36675. name: "Normal",
  36676. height: math.unit(5 + 2/12, "feet"),
  36677. default: true
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36683. {
  36684. frontImp: {
  36685. height: math.unit(1 + 11/12, "feet"),
  36686. name: "Front (Imp)",
  36687. image: {
  36688. source: "./media/characters/max-kobold/front-imp.svg",
  36689. extra: 1238/1134,
  36690. bottom: 81/1319
  36691. }
  36692. },
  36693. backImp: {
  36694. height: math.unit(1 + 11/12, "feet"),
  36695. name: "Back (Imp)",
  36696. image: {
  36697. source: "./media/characters/max-kobold/back-imp.svg",
  36698. extra: 1334/1175,
  36699. bottom: 34/1368
  36700. }
  36701. },
  36702. frontDemi: {
  36703. height: math.unit(5 + 9/12, "feet"),
  36704. name: "Front (Demi)",
  36705. image: {
  36706. source: "./media/characters/max-kobold/front-demi.svg",
  36707. extra: 1715/1685,
  36708. bottom: 54/1769
  36709. }
  36710. },
  36711. backDemi: {
  36712. height: math.unit(5 + 9/12, "feet"),
  36713. name: "Back (Demi)",
  36714. image: {
  36715. source: "./media/characters/max-kobold/back-demi.svg",
  36716. extra: 1752/1729,
  36717. bottom: 41/1793
  36718. }
  36719. },
  36720. handImp: {
  36721. height: math.unit(0.45, "feet"),
  36722. name: "Hand (Imp)",
  36723. image: {
  36724. source: "./media/characters/max-kobold/hand.svg"
  36725. }
  36726. },
  36727. pawImp: {
  36728. height: math.unit(0.46, "feet"),
  36729. name: "Paw (Imp)",
  36730. image: {
  36731. source: "./media/characters/max-kobold/paw.svg"
  36732. }
  36733. },
  36734. handDemi: {
  36735. height: math.unit(0.80, "feet"),
  36736. name: "Hand (Demi)",
  36737. image: {
  36738. source: "./media/characters/max-kobold/hand.svg"
  36739. }
  36740. },
  36741. pawDemi: {
  36742. height: math.unit(1.1, "feet"),
  36743. name: "Paw (Demi)",
  36744. image: {
  36745. source: "./media/characters/max-kobold/paw.svg"
  36746. }
  36747. },
  36748. headImp: {
  36749. height: math.unit(1.33, "feet"),
  36750. name: "Head (Imp)",
  36751. image: {
  36752. source: "./media/characters/max-kobold/head-imp.svg"
  36753. }
  36754. },
  36755. mawImp: {
  36756. height: math.unit(0.75, "feet"),
  36757. name: "Maw (Imp)",
  36758. image: {
  36759. source: "./media/characters/max-kobold/maw-imp.svg"
  36760. }
  36761. },
  36762. mawDemi: {
  36763. height: math.unit(0.42, "feet"),
  36764. name: "Maw (Demi)",
  36765. image: {
  36766. source: "./media/characters/max-kobold/maw-demi.svg"
  36767. }
  36768. },
  36769. },
  36770. [
  36771. {
  36772. name: "Normal",
  36773. height: math.unit(1 + 11/12, "feet"),
  36774. default: true
  36775. },
  36776. ]
  36777. ))
  36778. characterMakers.push(() => makeCharacter(
  36779. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36780. {
  36781. front: {
  36782. height: math.unit(7 + 5/12, "feet"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/carbon/front.svg",
  36786. extra: 1754/1689,
  36787. bottom: 65/1819
  36788. }
  36789. },
  36790. back: {
  36791. height: math.unit(7 + 5/12, "feet"),
  36792. name: "Back",
  36793. image: {
  36794. source: "./media/characters/carbon/back.svg",
  36795. extra: 1762/1695,
  36796. bottom: 24/1786
  36797. }
  36798. },
  36799. frontGigantamax: {
  36800. height: math.unit(150, "feet"),
  36801. name: "Front (Gigantamax)",
  36802. image: {
  36803. source: "./media/characters/carbon/front-gigantamax.svg",
  36804. extra: 1826/1669,
  36805. bottom: 59/1885
  36806. }
  36807. },
  36808. backGigantamax: {
  36809. height: math.unit(150, "feet"),
  36810. name: "Back (Gigantamax)",
  36811. image: {
  36812. source: "./media/characters/carbon/back-gigantamax.svg",
  36813. extra: 1796/1653,
  36814. bottom: 53/1849
  36815. }
  36816. },
  36817. maw: {
  36818. height: math.unit(0.48, "feet"),
  36819. name: "Maw",
  36820. image: {
  36821. source: "./media/characters/carbon/maw.svg"
  36822. }
  36823. },
  36824. mawGigantamax: {
  36825. height: math.unit(7.5, "feet"),
  36826. name: "Maw (Gigantamax)",
  36827. image: {
  36828. source: "./media/characters/carbon/maw-gigantamax.svg"
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(7 + 5/12, "feet"),
  36836. default: true
  36837. },
  36838. ]
  36839. ))
  36840. characterMakers.push(() => makeCharacter(
  36841. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36842. {
  36843. front: {
  36844. height: math.unit(6, "feet"),
  36845. name: "Front",
  36846. image: {
  36847. source: "./media/characters/maverick/front.svg",
  36848. extra: 1672/1661,
  36849. bottom: 85/1757
  36850. }
  36851. },
  36852. back: {
  36853. height: math.unit(6, "feet"),
  36854. name: "Back",
  36855. image: {
  36856. source: "./media/characters/maverick/back.svg",
  36857. extra: 1642/1631,
  36858. bottom: 38/1680
  36859. }
  36860. },
  36861. },
  36862. [
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(6, "feet"),
  36866. default: true
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(15, "feet"),
  36875. weight: math.unit(615, "lb"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/grockle/front.svg",
  36879. extra: 1535/1427,
  36880. bottom: 56/1591
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Normal",
  36887. height: math.unit(15, "feet"),
  36888. default: true
  36889. },
  36890. {
  36891. name: "Large",
  36892. height: math.unit(150, "feet")
  36893. },
  36894. {
  36895. name: "Macro",
  36896. height: math.unit(1876, "feet")
  36897. },
  36898. {
  36899. name: "Mega Macro",
  36900. height: math.unit(121940, "feet")
  36901. },
  36902. {
  36903. name: "Giga Macro",
  36904. height: math.unit(750, "km")
  36905. },
  36906. {
  36907. name: "Tera Macro",
  36908. height: math.unit(750000, "km")
  36909. },
  36910. {
  36911. name: "Galactic",
  36912. height: math.unit(1.4e5, "km")
  36913. },
  36914. {
  36915. name: "Godlike",
  36916. height: math.unit(9.8e280, "galaxies")
  36917. },
  36918. ]
  36919. ))
  36920. characterMakers.push(() => makeCharacter(
  36921. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36922. {
  36923. front: {
  36924. height: math.unit(11, "meters"),
  36925. weight: math.unit(20, "tonnes"),
  36926. name: "Front",
  36927. image: {
  36928. source: "./media/characters/alistair/front.svg",
  36929. extra: 1265/1009,
  36930. bottom: 93/1358
  36931. }
  36932. },
  36933. },
  36934. [
  36935. {
  36936. name: "Normal",
  36937. height: math.unit(11, "meters"),
  36938. default: true
  36939. },
  36940. ]
  36941. ))
  36942. characterMakers.push(() => makeCharacter(
  36943. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36944. {
  36945. front: {
  36946. height: math.unit(5 + 8/12, "feet"),
  36947. name: "Front",
  36948. image: {
  36949. source: "./media/characters/haruka/front.svg",
  36950. extra: 2012/1952,
  36951. bottom: 0/2012
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(5 + 8/12, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36965. {
  36966. back: {
  36967. height: math.unit(9, "feet"),
  36968. name: "Back",
  36969. image: {
  36970. source: "./media/characters/vivian-sylveon/back.svg",
  36971. extra: 1853/1714,
  36972. bottom: 0/1853
  36973. }
  36974. },
  36975. },
  36976. [
  36977. {
  36978. name: "Normal",
  36979. height: math.unit(9, "feet"),
  36980. default: true
  36981. },
  36982. {
  36983. name: "Macro",
  36984. height: math.unit(500, "feet")
  36985. },
  36986. {
  36987. name: "Megamacro",
  36988. height: math.unit(600, "miles")
  36989. },
  36990. {
  36991. name: "Gigamacro",
  36992. height: math.unit(30000, "miles")
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36998. {
  36999. anthro: {
  37000. height: math.unit(5 + 10/12, "feet"),
  37001. weight: math.unit(100, "lb"),
  37002. name: "Anthro",
  37003. image: {
  37004. source: "./media/characters/daiki/anthro.svg",
  37005. extra: 1115/1027,
  37006. bottom: 69/1184
  37007. }
  37008. },
  37009. feral: {
  37010. height: math.unit(200, "feet"),
  37011. name: "Feral",
  37012. image: {
  37013. source: "./media/characters/daiki/feral.svg",
  37014. extra: 1256/313,
  37015. bottom: 39/1295
  37016. }
  37017. },
  37018. feralHead: {
  37019. height: math.unit(171, "feet"),
  37020. name: "Feral Head",
  37021. image: {
  37022. source: "./media/characters/daiki/feral-head.svg"
  37023. }
  37024. },
  37025. manaDragon: {
  37026. height: math.unit(170, "meters"),
  37027. name: "Mana-dragon",
  37028. image: {
  37029. source: "./media/characters/daiki/mana-dragon.svg",
  37030. extra: 763/420,
  37031. bottom: 97/860
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(5 + 10/12, "feet"),
  37039. default: true
  37040. },
  37041. ]
  37042. ))
  37043. characterMakers.push(() => makeCharacter(
  37044. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37045. {
  37046. fullyEquippedFront: {
  37047. height: math.unit(3 + 1/12, "feet"),
  37048. weight: math.unit(24, "lb"),
  37049. name: "Fully Equipped (Front)",
  37050. image: {
  37051. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37052. extra: 687/605,
  37053. bottom: 18/705
  37054. }
  37055. },
  37056. fullyEquippedBack: {
  37057. height: math.unit(3 + 1/12, "feet"),
  37058. weight: math.unit(24, "lb"),
  37059. name: "Fully Equipped (Back)",
  37060. image: {
  37061. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37062. extra: 689/590,
  37063. bottom: 18/707
  37064. }
  37065. },
  37066. dailyWear: {
  37067. height: math.unit(3 + 1/12, "feet"),
  37068. weight: math.unit(24, "lb"),
  37069. name: "Daily Wear",
  37070. image: {
  37071. source: "./media/characters/tea-spot/daily-wear.svg",
  37072. extra: 701/620,
  37073. bottom: 21/722
  37074. }
  37075. },
  37076. maidWork: {
  37077. height: math.unit(3 + 1/12, "feet"),
  37078. weight: math.unit(24, "lb"),
  37079. name: "Maid Work",
  37080. image: {
  37081. source: "./media/characters/tea-spot/maid-work.svg",
  37082. extra: 693/609,
  37083. bottom: 15/708
  37084. }
  37085. },
  37086. },
  37087. [
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(3 + 1/12, "feet"),
  37091. default: true
  37092. },
  37093. ]
  37094. ))
  37095. characterMakers.push(() => makeCharacter(
  37096. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37097. {
  37098. front: {
  37099. height: math.unit(175, "cm"),
  37100. weight: math.unit(75, "kg"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/chee/front.svg",
  37104. extra: 1796/1740,
  37105. bottom: 40/1836
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Micro-Micro",
  37112. height: math.unit(1, "nm")
  37113. },
  37114. {
  37115. name: "Micro-erst",
  37116. height: math.unit(1, "micrometer")
  37117. },
  37118. {
  37119. name: "Micro-er",
  37120. height: math.unit(1, "cm")
  37121. },
  37122. {
  37123. name: "Normal",
  37124. height: math.unit(175, "cm"),
  37125. default: true
  37126. },
  37127. {
  37128. name: "Macro",
  37129. height: math.unit(100, "m")
  37130. },
  37131. {
  37132. name: "Macro-er",
  37133. height: math.unit(1, "km")
  37134. },
  37135. {
  37136. name: "Macro-erst",
  37137. height: math.unit(10, "km")
  37138. },
  37139. {
  37140. name: "Macro-Macro",
  37141. height: math.unit(100, "km")
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37147. {
  37148. front: {
  37149. height: math.unit(11 + 9/12, "feet"),
  37150. weight: math.unit(935, "lb"),
  37151. name: "Front",
  37152. image: {
  37153. source: "./media/characters/kingsley/front.svg",
  37154. extra: 1803/1674,
  37155. bottom: 127/1930
  37156. }
  37157. },
  37158. frontNude: {
  37159. height: math.unit(11 + 9/12, "feet"),
  37160. weight: math.unit(935, "lb"),
  37161. name: "Front (Nude)",
  37162. image: {
  37163. source: "./media/characters/kingsley/front-nude.svg",
  37164. extra: 1803/1674,
  37165. bottom: 127/1930
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Normal",
  37172. height: math.unit(11 + 9/12, "feet"),
  37173. default: true
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37179. {
  37180. side: {
  37181. height: math.unit(9, "feet"),
  37182. name: "Side",
  37183. image: {
  37184. source: "./media/characters/rymel/side.svg",
  37185. extra: 792/469,
  37186. bottom: 121/913
  37187. }
  37188. },
  37189. maw: {
  37190. height: math.unit(2.4, "meters"),
  37191. name: "Maw",
  37192. image: {
  37193. source: "./media/characters/rymel/maw.svg"
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "House Drake",
  37200. height: math.unit(2, "feet")
  37201. },
  37202. {
  37203. name: "Reduced",
  37204. height: math.unit(4.5, "feet")
  37205. },
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(9, "feet"),
  37209. default: true
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(1.74, "meters"),
  37218. weight: math.unit(55, "kg"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/rubus/front.svg",
  37222. extra: 1894/1742,
  37223. bottom: 44/1938
  37224. }
  37225. },
  37226. },
  37227. [
  37228. {
  37229. name: "Normal",
  37230. height: math.unit(1.74, "meters"),
  37231. default: true
  37232. },
  37233. ]
  37234. ))
  37235. characterMakers.push(() => makeCharacter(
  37236. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37237. {
  37238. front: {
  37239. height: math.unit(5 + 2/12, "feet"),
  37240. weight: math.unit(112, "lb"),
  37241. name: "Front",
  37242. image: {
  37243. source: "./media/characters/cassie-kingston/front.svg",
  37244. extra: 1438/1390,
  37245. bottom: 47/1485
  37246. }
  37247. },
  37248. },
  37249. [
  37250. {
  37251. name: "Normal",
  37252. height: math.unit(5 + 2/12, "feet"),
  37253. default: true
  37254. },
  37255. {
  37256. name: "Macro",
  37257. height: math.unit(128, "feet")
  37258. },
  37259. {
  37260. name: "Megamacro",
  37261. height: math.unit(2.56, "miles")
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(7, "feet"),
  37270. name: "Front",
  37271. image: {
  37272. source: "./media/characters/fox/front.svg",
  37273. extra: 1798/1703,
  37274. bottom: 55/1853
  37275. }
  37276. },
  37277. back: {
  37278. height: math.unit(7, "feet"),
  37279. name: "Back",
  37280. image: {
  37281. source: "./media/characters/fox/back.svg",
  37282. extra: 1748/1649,
  37283. bottom: 32/1780
  37284. }
  37285. },
  37286. head: {
  37287. height: math.unit(1.95, "feet"),
  37288. name: "Head",
  37289. image: {
  37290. source: "./media/characters/fox/head.svg"
  37291. }
  37292. },
  37293. dick: {
  37294. height: math.unit(1.33, "feet"),
  37295. name: "Dick",
  37296. image: {
  37297. source: "./media/characters/fox/dick.svg"
  37298. }
  37299. },
  37300. foot: {
  37301. height: math.unit(1, "feet"),
  37302. name: "Foot",
  37303. image: {
  37304. source: "./media/characters/fox/foot.svg"
  37305. }
  37306. },
  37307. paw: {
  37308. height: math.unit(0.92, "feet"),
  37309. name: "Paw",
  37310. image: {
  37311. source: "./media/characters/fox/paw.svg"
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Small",
  37318. height: math.unit(3, "inches")
  37319. },
  37320. {
  37321. name: "\"Realistic\"",
  37322. height: math.unit(7, "feet")
  37323. },
  37324. {
  37325. name: "Normal",
  37326. height: math.unit(150, "feet"),
  37327. default: true
  37328. },
  37329. {
  37330. name: "BIG",
  37331. height: math.unit(1200, "feet")
  37332. },
  37333. {
  37334. name: "👀",
  37335. height: math.unit(5, "miles")
  37336. },
  37337. {
  37338. name: "👀👀👀",
  37339. height: math.unit(64, "miles")
  37340. },
  37341. ]
  37342. ))
  37343. characterMakers.push(() => makeCharacter(
  37344. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37345. {
  37346. front: {
  37347. height: math.unit(625, "feet"),
  37348. name: "Front",
  37349. image: {
  37350. source: "./media/characters/asonja-rossa/front.svg",
  37351. extra: 1833/1686,
  37352. bottom: 24/1857
  37353. }
  37354. },
  37355. back: {
  37356. height: math.unit(625, "feet"),
  37357. name: "Back",
  37358. image: {
  37359. source: "./media/characters/asonja-rossa/back.svg",
  37360. extra: 1852/1753,
  37361. bottom: 26/1878
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Macro",
  37368. height: math.unit(625, "feet"),
  37369. default: true
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37375. {
  37376. side: {
  37377. height: math.unit(8, "feet"),
  37378. name: "Side",
  37379. image: {
  37380. source: "./media/characters/rezukii/side.svg",
  37381. extra: 979/542,
  37382. bottom: 87/1066
  37383. }
  37384. },
  37385. sitting: {
  37386. height: math.unit(14.6, "feet"),
  37387. name: "Sitting",
  37388. image: {
  37389. source: "./media/characters/rezukii/sitting.svg",
  37390. extra: 1023/813,
  37391. bottom: 45/1068
  37392. }
  37393. },
  37394. },
  37395. [
  37396. {
  37397. name: "Tiny",
  37398. height: math.unit(2, "feet")
  37399. },
  37400. {
  37401. name: "Smol",
  37402. height: math.unit(4, "feet")
  37403. },
  37404. {
  37405. name: "Normal",
  37406. height: math.unit(8, "feet"),
  37407. default: true
  37408. },
  37409. {
  37410. name: "Big",
  37411. height: math.unit(12, "feet")
  37412. },
  37413. {
  37414. name: "Macro",
  37415. height: math.unit(30, "feet")
  37416. },
  37417. ]
  37418. ))
  37419. characterMakers.push(() => makeCharacter(
  37420. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37421. {
  37422. front: {
  37423. height: math.unit(14, "feet"),
  37424. weight: math.unit(9.5, "tonnes"),
  37425. name: "Front",
  37426. image: {
  37427. source: "./media/characters/dawnheart/front.svg",
  37428. extra: 2792/2675,
  37429. bottom: 64/2856
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(14, "feet"),
  37437. default: true
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37443. {
  37444. front: {
  37445. height: math.unit(1.7, "m"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/gladi/front.svg",
  37449. extra: 1460/1362,
  37450. bottom: 19/1479
  37451. }
  37452. },
  37453. back: {
  37454. height: math.unit(1.7, "m"),
  37455. name: "Back",
  37456. image: {
  37457. source: "./media/characters/gladi/back.svg",
  37458. extra: 1459/1357,
  37459. bottom: 12/1471
  37460. }
  37461. },
  37462. feral: {
  37463. height: math.unit(2.05, "m"),
  37464. name: "Feral",
  37465. image: {
  37466. source: "./media/characters/gladi/feral.svg",
  37467. extra: 821/557,
  37468. bottom: 91/912
  37469. }
  37470. },
  37471. },
  37472. [
  37473. {
  37474. name: "Shortest",
  37475. height: math.unit(70, "cm")
  37476. },
  37477. {
  37478. name: "Normal",
  37479. height: math.unit(1.7, "m")
  37480. },
  37481. {
  37482. name: "Macro",
  37483. height: math.unit(10, "m"),
  37484. default: true
  37485. },
  37486. {
  37487. name: "Tallest",
  37488. height: math.unit(200, "m")
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(5 + 7/12, "feet"),
  37497. weight: math.unit(2, "tons"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/erdno/front.svg",
  37501. extra: 1234/1129,
  37502. bottom: 35/1269
  37503. }
  37504. },
  37505. angled: {
  37506. height: math.unit(5 + 7/12, "feet"),
  37507. weight: math.unit(2, "tons"),
  37508. name: "Angled",
  37509. image: {
  37510. source: "./media/characters/erdno/angled.svg",
  37511. extra: 1185/1139,
  37512. bottom: 36/1221
  37513. }
  37514. },
  37515. side: {
  37516. height: math.unit(5 + 7/12, "feet"),
  37517. weight: math.unit(2, "tons"),
  37518. name: "Side",
  37519. image: {
  37520. source: "./media/characters/erdno/side.svg",
  37521. extra: 1191/1144,
  37522. bottom: 40/1231
  37523. }
  37524. },
  37525. back: {
  37526. height: math.unit(5 + 7/12, "feet"),
  37527. weight: math.unit(2, "tons"),
  37528. name: "Back",
  37529. image: {
  37530. source: "./media/characters/erdno/back.svg",
  37531. extra: 1202/1146,
  37532. bottom: 17/1219
  37533. }
  37534. },
  37535. frontNsfw: {
  37536. height: math.unit(5 + 7/12, "feet"),
  37537. weight: math.unit(2, "tons"),
  37538. name: "Front (NSFW)",
  37539. image: {
  37540. source: "./media/characters/erdno/front-nsfw.svg",
  37541. extra: 1234/1129,
  37542. bottom: 35/1269
  37543. }
  37544. },
  37545. angledNsfw: {
  37546. height: math.unit(5 + 7/12, "feet"),
  37547. weight: math.unit(2, "tons"),
  37548. name: "Angled (NSFW)",
  37549. image: {
  37550. source: "./media/characters/erdno/angled-nsfw.svg",
  37551. extra: 1185/1139,
  37552. bottom: 36/1221
  37553. }
  37554. },
  37555. sideNsfw: {
  37556. height: math.unit(5 + 7/12, "feet"),
  37557. weight: math.unit(2, "tons"),
  37558. name: "Side (NSFW)",
  37559. image: {
  37560. source: "./media/characters/erdno/side-nsfw.svg",
  37561. extra: 1191/1144,
  37562. bottom: 40/1231
  37563. }
  37564. },
  37565. backNsfw: {
  37566. height: math.unit(5 + 7/12, "feet"),
  37567. weight: math.unit(2, "tons"),
  37568. name: "Back (NSFW)",
  37569. image: {
  37570. source: "./media/characters/erdno/back-nsfw.svg",
  37571. extra: 1202/1146,
  37572. bottom: 17/1219
  37573. }
  37574. },
  37575. frontHyper: {
  37576. height: math.unit(5 + 7/12, "feet"),
  37577. weight: math.unit(2, "tons"),
  37578. name: "Front (Hyper)",
  37579. image: {
  37580. source: "./media/characters/erdno/front-hyper.svg",
  37581. extra: 1298/1136,
  37582. bottom: 35/1333
  37583. }
  37584. },
  37585. },
  37586. [
  37587. {
  37588. name: "Normal",
  37589. height: math.unit(5 + 7/12, "feet"),
  37590. default: true
  37591. },
  37592. {
  37593. name: "Big",
  37594. height: math.unit(5.7, "meters")
  37595. },
  37596. {
  37597. name: "Macro",
  37598. height: math.unit(5.7, "kilometers")
  37599. },
  37600. {
  37601. name: "Megamacro",
  37602. height: math.unit(5.7, "earths")
  37603. },
  37604. ]
  37605. ))
  37606. characterMakers.push(() => makeCharacter(
  37607. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37608. {
  37609. front: {
  37610. height: math.unit(5 + 10/12, "feet"),
  37611. weight: math.unit(150, "lb"),
  37612. name: "Front",
  37613. image: {
  37614. source: "./media/characters/jamie/front.svg",
  37615. extra: 1908/1768,
  37616. bottom: 19/1927
  37617. }
  37618. },
  37619. },
  37620. [
  37621. {
  37622. name: "Minimum",
  37623. height: math.unit(2, "cm")
  37624. },
  37625. {
  37626. name: "Micro",
  37627. height: math.unit(3, "inches")
  37628. },
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(5 + 10/12, "feet"),
  37632. default: true
  37633. },
  37634. {
  37635. name: "Macro",
  37636. height: math.unit(150, "feet")
  37637. },
  37638. {
  37639. name: "Megamacro",
  37640. height: math.unit(10000, "m")
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(2, "meters"),
  37649. weight: math.unit(100, "kg"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/shiron/front.svg",
  37653. extra: 2103/1985,
  37654. bottom: 98/2201
  37655. }
  37656. },
  37657. back: {
  37658. height: math.unit(2, "meters"),
  37659. weight: math.unit(100, "kg"),
  37660. name: "Back",
  37661. image: {
  37662. source: "./media/characters/shiron/back.svg",
  37663. extra: 2110/2015,
  37664. bottom: 89/2199
  37665. }
  37666. },
  37667. hand: {
  37668. height: math.unit(0.96, "feet"),
  37669. name: "Hand",
  37670. image: {
  37671. source: "./media/characters/shiron/hand.svg"
  37672. }
  37673. },
  37674. foot: {
  37675. height: math.unit(1.464, "feet"),
  37676. name: "Foot",
  37677. image: {
  37678. source: "./media/characters/shiron/foot.svg"
  37679. }
  37680. },
  37681. },
  37682. [
  37683. {
  37684. name: "Normal",
  37685. height: math.unit(2, "meters")
  37686. },
  37687. {
  37688. name: "Macro",
  37689. height: math.unit(500, "meters"),
  37690. default: true
  37691. },
  37692. {
  37693. name: "Megamacro",
  37694. height: math.unit(20, "km")
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(6, "feet"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/sam/front.svg",
  37706. extra: 849/826,
  37707. bottom: 19/868
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(6, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(8 + 4/12, "feet"),
  37724. weight: math.unit(122, "kg"),
  37725. name: "Front",
  37726. image: {
  37727. source: "./media/characters/namori-kurogawa/front.svg",
  37728. extra: 1894/1576,
  37729. bottom: 34/1928
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Normal",
  37736. height: math.unit(8 + 4/12, "feet"),
  37737. default: true
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37743. {
  37744. front: {
  37745. height: math.unit(9, "feet"),
  37746. weight: math.unit(621, "lb"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/unmru/front.svg",
  37750. extra: 1853/1747,
  37751. bottom: 73/1926
  37752. }
  37753. },
  37754. side: {
  37755. height: math.unit(9, "feet"),
  37756. weight: math.unit(621, "lb"),
  37757. name: "Side",
  37758. image: {
  37759. source: "./media/characters/unmru/side.svg",
  37760. extra: 1781/1671,
  37761. bottom: 127/1908
  37762. }
  37763. },
  37764. back: {
  37765. height: math.unit(9, "feet"),
  37766. weight: math.unit(621, "lb"),
  37767. name: "Back",
  37768. image: {
  37769. source: "./media/characters/unmru/back.svg",
  37770. extra: 1894/1765,
  37771. bottom: 75/1969
  37772. }
  37773. },
  37774. dick: {
  37775. height: math.unit(3, "feet"),
  37776. weight: math.unit(35, "lb"),
  37777. name: "Dick",
  37778. image: {
  37779. source: "./media/characters/unmru/dick.svg"
  37780. }
  37781. },
  37782. },
  37783. [
  37784. {
  37785. name: "Normal",
  37786. height: math.unit(9, "feet")
  37787. },
  37788. {
  37789. name: "Natural",
  37790. height: math.unit(27, "feet"),
  37791. default: true
  37792. },
  37793. {
  37794. name: "Giant",
  37795. height: math.unit(90, "feet")
  37796. },
  37797. {
  37798. name: "Kaiju",
  37799. height: math.unit(270, "feet")
  37800. },
  37801. {
  37802. name: "Macro",
  37803. height: math.unit(900, "feet")
  37804. },
  37805. {
  37806. name: "Macro+",
  37807. height: math.unit(2700, "feet")
  37808. },
  37809. {
  37810. name: "Megamacro",
  37811. height: math.unit(9000, "feet")
  37812. },
  37813. {
  37814. name: "City-Crushing",
  37815. height: math.unit(27000, "feet")
  37816. },
  37817. {
  37818. name: "Mountain-Mashing",
  37819. height: math.unit(90000, "feet")
  37820. },
  37821. {
  37822. name: "Earth-Eclipsing",
  37823. height: math.unit(2.7e8, "feet")
  37824. },
  37825. {
  37826. name: "Sol-Swallowing",
  37827. height: math.unit(9e10, "feet")
  37828. },
  37829. {
  37830. name: "Majoris-Munching",
  37831. height: math.unit(2.7e13, "feet")
  37832. },
  37833. ]
  37834. ))
  37835. characterMakers.push(() => makeCharacter(
  37836. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37837. {
  37838. front: {
  37839. height: math.unit(1, "inch"),
  37840. name: "Front",
  37841. image: {
  37842. source: "./media/characters/squeaks-mouse/front.svg",
  37843. extra: 352/308,
  37844. bottom: 25/377
  37845. }
  37846. },
  37847. },
  37848. [
  37849. {
  37850. name: "Micro",
  37851. height: math.unit(1, "inch"),
  37852. default: true
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37858. {
  37859. side: {
  37860. height: math.unit(35, "feet"),
  37861. name: "Side",
  37862. image: {
  37863. source: "./media/characters/sayko/side.svg",
  37864. extra: 1697/1021,
  37865. bottom: 82/1779
  37866. }
  37867. },
  37868. head: {
  37869. height: math.unit(16, "feet"),
  37870. name: "Head",
  37871. image: {
  37872. source: "./media/characters/sayko/head.svg"
  37873. }
  37874. },
  37875. forepaw: {
  37876. height: math.unit(7.85, "feet"),
  37877. name: "Forepaw",
  37878. image: {
  37879. source: "./media/characters/sayko/forepaw.svg"
  37880. }
  37881. },
  37882. hindpaw: {
  37883. height: math.unit(8.8, "feet"),
  37884. name: "Hindpaw",
  37885. image: {
  37886. source: "./media/characters/sayko/hindpaw.svg"
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(35, "feet"),
  37894. default: true
  37895. },
  37896. {
  37897. name: "Colossus",
  37898. height: math.unit(100, "meters")
  37899. },
  37900. {
  37901. name: "\"Small\" Deity",
  37902. height: math.unit(1, "km")
  37903. },
  37904. {
  37905. name: "\"Large\" Deity",
  37906. height: math.unit(15, "km")
  37907. },
  37908. ]
  37909. ))
  37910. characterMakers.push(() => makeCharacter(
  37911. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37912. {
  37913. front: {
  37914. height: math.unit(6, "feet"),
  37915. weight: math.unit(250, "lb"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/mukiro/front.svg",
  37919. extra: 1368/1310,
  37920. bottom: 34/1402
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal",
  37927. height: math.unit(6, "feet"),
  37928. default: true
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37934. {
  37935. front: {
  37936. height: math.unit(12 + 4/12, "feet"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37940. extra: 1346/1311,
  37941. bottom: 65/1411
  37942. }
  37943. },
  37944. },
  37945. [
  37946. {
  37947. name: "Base",
  37948. height: math.unit(12 + 4/12, "feet"),
  37949. default: true
  37950. },
  37951. {
  37952. name: "Macro",
  37953. height: math.unit(150, "feet")
  37954. },
  37955. {
  37956. name: "Mega",
  37957. height: math.unit(2, "miles")
  37958. },
  37959. {
  37960. name: "Demi God",
  37961. height: math.unit(4, "AU")
  37962. },
  37963. {
  37964. name: "God Size",
  37965. height: math.unit(1, "universe")
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37971. {
  37972. front: {
  37973. height: math.unit(3 + 3/12, "feet"),
  37974. weight: math.unit(88, "lb"),
  37975. name: "Front",
  37976. image: {
  37977. source: "./media/characters/trey/front.svg",
  37978. extra: 1815/1509,
  37979. bottom: 60/1875
  37980. }
  37981. },
  37982. },
  37983. [
  37984. {
  37985. name: "Normal",
  37986. height: math.unit(3 + 3/12, "feet"),
  37987. default: true
  37988. },
  37989. ]
  37990. ))
  37991. characterMakers.push(() => makeCharacter(
  37992. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37993. {
  37994. front: {
  37995. height: math.unit(4, "meters"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/adelonda/front.svg",
  37999. extra: 1077/982,
  38000. bottom: 39/1116
  38001. }
  38002. },
  38003. back: {
  38004. height: math.unit(4, "meters"),
  38005. name: "Back",
  38006. image: {
  38007. source: "./media/characters/adelonda/back.svg",
  38008. extra: 1105/1003,
  38009. bottom: 25/1130
  38010. }
  38011. },
  38012. feral: {
  38013. height: math.unit(40/1.5, "meters"),
  38014. name: "Feral",
  38015. image: {
  38016. source: "./media/characters/adelonda/feral.svg",
  38017. extra: 597/271,
  38018. bottom: 387/984
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(4, "meters"),
  38026. default: true
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38032. {
  38033. front: {
  38034. height: math.unit(8 + 4/12, "feet"),
  38035. weight: math.unit(670, "lb"),
  38036. name: "Front",
  38037. image: {
  38038. source: "./media/characters/acadiel/front.svg",
  38039. extra: 1901/1595,
  38040. bottom: 142/2043
  38041. }
  38042. },
  38043. },
  38044. [
  38045. {
  38046. name: "Normal",
  38047. height: math.unit(8 + 4/12, "feet"),
  38048. default: true
  38049. },
  38050. {
  38051. name: "Macro",
  38052. height: math.unit(200, "feet")
  38053. },
  38054. ]
  38055. ))
  38056. characterMakers.push(() => makeCharacter(
  38057. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38058. {
  38059. front: {
  38060. height: math.unit(6 + 2/12, "feet"),
  38061. weight: math.unit(185, "lb"),
  38062. name: "Front",
  38063. image: {
  38064. source: "./media/characters/kayne-ein/front.svg",
  38065. extra: 1780/1560,
  38066. bottom: 81/1861
  38067. }
  38068. },
  38069. },
  38070. [
  38071. {
  38072. name: "Normal",
  38073. height: math.unit(6 + 2/12, "feet"),
  38074. default: true
  38075. },
  38076. {
  38077. name: "Transformation Stage",
  38078. height: math.unit(15, "feet")
  38079. },
  38080. {
  38081. name: "Macro",
  38082. height: math.unit(150, "feet")
  38083. },
  38084. {
  38085. name: "Earth's Shadow",
  38086. height: math.unit(6200, "miles")
  38087. },
  38088. {
  38089. name: "Universal Demon",
  38090. height: math.unit(28e9, "parsecs")
  38091. },
  38092. {
  38093. name: "Multiverse God",
  38094. height: math.unit(3, "multiverses")
  38095. },
  38096. ]
  38097. ))
  38098. characterMakers.push(() => makeCharacter(
  38099. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38100. {
  38101. front: {
  38102. height: math.unit(5 + 5/12, "feet"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/fawn/front.svg",
  38106. extra: 1873/1731,
  38107. bottom: 95/1968
  38108. }
  38109. },
  38110. back: {
  38111. height: math.unit(5 + 5/12, "feet"),
  38112. name: "Back",
  38113. image: {
  38114. source: "./media/characters/fawn/back.svg",
  38115. extra: 1813/1700,
  38116. bottom: 14/1827
  38117. }
  38118. },
  38119. hoof: {
  38120. height: math.unit(1.45, "feet"),
  38121. name: "Hoof",
  38122. image: {
  38123. source: "./media/characters/fawn/hoof.svg"
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(5 + 5/12, "feet"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38137. {
  38138. front: {
  38139. height: math.unit(2 + 5/12, "feet"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/orion/front.svg",
  38143. extra: 1366/1304,
  38144. bottom: 43/1409
  38145. }
  38146. },
  38147. paw: {
  38148. height: math.unit(0.52, "feet"),
  38149. name: "Paw",
  38150. image: {
  38151. source: "./media/characters/orion/paw.svg"
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(2 + 5/12, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(5 + 10/12, "feet"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/vera/front.svg",
  38171. extra: 1680/1575,
  38172. bottom: 49/1729
  38173. }
  38174. },
  38175. back: {
  38176. height: math.unit(5 + 10/12, "feet"),
  38177. name: "Back",
  38178. image: {
  38179. source: "./media/characters/vera/back.svg",
  38180. extra: 1700/1588,
  38181. bottom: 18/1718
  38182. }
  38183. },
  38184. arcanine: {
  38185. height: math.unit(6 + 8/12, "feet"),
  38186. name: "Arcanine",
  38187. image: {
  38188. source: "./media/characters/vera/arcanine.svg",
  38189. extra: 1590/1511,
  38190. bottom: 71/1661
  38191. }
  38192. },
  38193. maw: {
  38194. height: math.unit(0.82, "feet"),
  38195. name: "Maw",
  38196. image: {
  38197. source: "./media/characters/vera/maw.svg"
  38198. }
  38199. },
  38200. mawArcanine: {
  38201. height: math.unit(0.97, "feet"),
  38202. name: "Maw (Arcanine)",
  38203. image: {
  38204. source: "./media/characters/vera/maw-arcanine.svg"
  38205. }
  38206. },
  38207. paw: {
  38208. height: math.unit(0.75, "feet"),
  38209. name: "Paw",
  38210. image: {
  38211. source: "./media/characters/vera/paw.svg"
  38212. }
  38213. },
  38214. pawprint: {
  38215. height: math.unit(0.52, "feet"),
  38216. name: "Pawprint",
  38217. image: {
  38218. source: "./media/characters/vera/pawprint.svg"
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Normal",
  38225. height: math.unit(5 + 10/12, "feet"),
  38226. default: true
  38227. },
  38228. {
  38229. name: "Macro",
  38230. height: math.unit(75, "feet")
  38231. },
  38232. ]
  38233. ))
  38234. characterMakers.push(() => makeCharacter(
  38235. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38236. {
  38237. front: {
  38238. height: math.unit(4, "feet"),
  38239. weight: math.unit(40, "lb"),
  38240. name: "Front",
  38241. image: {
  38242. source: "./media/characters/orvan-rabbit/front.svg",
  38243. extra: 1896/1642,
  38244. bottom: 29/1925
  38245. }
  38246. },
  38247. },
  38248. [
  38249. {
  38250. name: "Normal",
  38251. height: math.unit(4, "feet"),
  38252. default: true
  38253. },
  38254. ]
  38255. ))
  38256. characterMakers.push(() => makeCharacter(
  38257. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38258. {
  38259. front: {
  38260. height: math.unit(6, "feet"),
  38261. weight: math.unit(168, "lb"),
  38262. name: "Front",
  38263. image: {
  38264. source: "./media/characters/lisa/front.svg",
  38265. extra: 2065/1867,
  38266. bottom: 46/2111
  38267. }
  38268. },
  38269. back: {
  38270. height: math.unit(6, "feet"),
  38271. weight: math.unit(168, "lb"),
  38272. name: "Back",
  38273. image: {
  38274. source: "./media/characters/lisa/back.svg",
  38275. extra: 1982/1838,
  38276. bottom: 29/2011
  38277. }
  38278. },
  38279. maw: {
  38280. height: math.unit(0.81, "feet"),
  38281. name: "Maw",
  38282. image: {
  38283. source: "./media/characters/lisa/maw.svg"
  38284. }
  38285. },
  38286. paw: {
  38287. height: math.unit(0.9, "feet"),
  38288. name: "Paw",
  38289. image: {
  38290. source: "./media/characters/lisa/paw.svg"
  38291. }
  38292. },
  38293. caribousune: {
  38294. height: math.unit(7 + 2/12, "feet"),
  38295. weight: math.unit(268, "lb"),
  38296. name: "Caribousune",
  38297. image: {
  38298. source: "./media/characters/lisa/caribousune.svg",
  38299. extra: 1843/1633,
  38300. bottom: 29/1872
  38301. }
  38302. },
  38303. frontCaribousune: {
  38304. height: math.unit(7 + 2/12, "feet"),
  38305. weight: math.unit(268, "lb"),
  38306. name: "Front (Caribousune)",
  38307. image: {
  38308. source: "./media/characters/lisa/front-caribousune.svg",
  38309. extra: 1818/1638,
  38310. bottom: 52/1870
  38311. }
  38312. },
  38313. sideCaribousune: {
  38314. height: math.unit(7 + 2/12, "feet"),
  38315. weight: math.unit(268, "lb"),
  38316. name: "Side (Caribousune)",
  38317. image: {
  38318. source: "./media/characters/lisa/side-caribousune.svg",
  38319. extra: 1851/1635,
  38320. bottom: 16/1867
  38321. }
  38322. },
  38323. backCaribousune: {
  38324. height: math.unit(7 + 2/12, "feet"),
  38325. weight: math.unit(268, "lb"),
  38326. name: "Back (Caribousune)",
  38327. image: {
  38328. source: "./media/characters/lisa/back-caribousune.svg",
  38329. extra: 1801/1604,
  38330. bottom: 44/1845
  38331. }
  38332. },
  38333. caribou: {
  38334. height: math.unit(7 + 2/12, "feet"),
  38335. weight: math.unit(268, "lb"),
  38336. name: "Caribou",
  38337. image: {
  38338. source: "./media/characters/lisa/caribou.svg",
  38339. extra: 1843/1633,
  38340. bottom: 29/1872
  38341. }
  38342. },
  38343. frontCaribou: {
  38344. height: math.unit(7 + 2/12, "feet"),
  38345. weight: math.unit(268, "lb"),
  38346. name: "Front (Caribou)",
  38347. image: {
  38348. source: "./media/characters/lisa/front-caribou.svg",
  38349. extra: 1818/1638,
  38350. bottom: 52/1870
  38351. }
  38352. },
  38353. sideCaribou: {
  38354. height: math.unit(7 + 2/12, "feet"),
  38355. weight: math.unit(268, "lb"),
  38356. name: "Side (Caribou)",
  38357. image: {
  38358. source: "./media/characters/lisa/side-caribou.svg",
  38359. extra: 1851/1635,
  38360. bottom: 16/1867
  38361. }
  38362. },
  38363. backCaribou: {
  38364. height: math.unit(7 + 2/12, "feet"),
  38365. weight: math.unit(268, "lb"),
  38366. name: "Back (Caribou)",
  38367. image: {
  38368. source: "./media/characters/lisa/back-caribou.svg",
  38369. extra: 1801/1604,
  38370. bottom: 44/1845
  38371. }
  38372. },
  38373. mawCaribou: {
  38374. height: math.unit(1.45, "feet"),
  38375. name: "Maw (Caribou)",
  38376. image: {
  38377. source: "./media/characters/lisa/maw-caribou.svg"
  38378. }
  38379. },
  38380. mawCaribousune: {
  38381. height: math.unit(1.45, "feet"),
  38382. name: "Maw (Caribousune)",
  38383. image: {
  38384. source: "./media/characters/lisa/maw-caribousune.svg"
  38385. }
  38386. },
  38387. pawCaribousune: {
  38388. height: math.unit(1.61, "feet"),
  38389. name: "Paw (Caribou)",
  38390. image: {
  38391. source: "./media/characters/lisa/paw-caribousune.svg"
  38392. }
  38393. },
  38394. },
  38395. [
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(6, "feet")
  38399. },
  38400. {
  38401. name: "God Size",
  38402. height: math.unit(72, "feet"),
  38403. default: true
  38404. },
  38405. {
  38406. name: "Towering",
  38407. height: math.unit(288, "feet")
  38408. },
  38409. {
  38410. name: "City Size",
  38411. height: math.unit(48384, "feet")
  38412. },
  38413. {
  38414. name: "Continental",
  38415. height: math.unit(4200, "miles")
  38416. },
  38417. {
  38418. name: "Planet Eater",
  38419. height: math.unit(42, "earths")
  38420. },
  38421. {
  38422. name: "Star Swallower",
  38423. height: math.unit(42, "solarradii")
  38424. },
  38425. {
  38426. name: "System Swallower",
  38427. height: math.unit(84000, "AU")
  38428. },
  38429. {
  38430. name: "Galaxy Gobbler",
  38431. height: math.unit(42, "galaxies")
  38432. },
  38433. {
  38434. name: "Universe Devourer",
  38435. height: math.unit(42, "universes")
  38436. },
  38437. {
  38438. name: "Multiverse Muncher",
  38439. height: math.unit(42, "multiverses")
  38440. },
  38441. ]
  38442. ))
  38443. characterMakers.push(() => makeCharacter(
  38444. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38445. {
  38446. front: {
  38447. height: math.unit(36, "feet"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/shadow-rat/front.svg",
  38451. extra: 1845/1758,
  38452. bottom: 83/1928
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Macro",
  38459. height: math.unit(36, "feet"),
  38460. default: true
  38461. },
  38462. ]
  38463. ))
  38464. characterMakers.push(() => makeCharacter(
  38465. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38466. {
  38467. side: {
  38468. height: math.unit(8, "feet"),
  38469. weight: math.unit(2630, "lb"),
  38470. name: "Side",
  38471. image: {
  38472. source: "./media/characters/torallia/side.svg",
  38473. extra: 2164/2021,
  38474. bottom: 371/2535
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Mortal Interaction",
  38481. height: math.unit(8, "feet")
  38482. },
  38483. {
  38484. name: "Natural",
  38485. height: math.unit(24, "feet"),
  38486. default: true
  38487. },
  38488. {
  38489. name: "Giant",
  38490. height: math.unit(80, "feet")
  38491. },
  38492. {
  38493. name: "Kaiju",
  38494. height: math.unit(240, "feet")
  38495. },
  38496. {
  38497. name: "Macro",
  38498. height: math.unit(800, "feet")
  38499. },
  38500. {
  38501. name: "Macro+",
  38502. height: math.unit(2400, "feet")
  38503. },
  38504. {
  38505. name: "Macro++",
  38506. height: math.unit(8000, "feet")
  38507. },
  38508. {
  38509. name: "City-Crushing",
  38510. height: math.unit(24000, "feet")
  38511. },
  38512. {
  38513. name: "Mountain-Mashing",
  38514. height: math.unit(80000, "feet")
  38515. },
  38516. {
  38517. name: "District Demolisher",
  38518. height: math.unit(240000, "feet")
  38519. },
  38520. {
  38521. name: "Tri-County Terror",
  38522. height: math.unit(800000, "feet")
  38523. },
  38524. {
  38525. name: "State Smasher",
  38526. height: math.unit(2.4e6, "feet")
  38527. },
  38528. {
  38529. name: "Nation Nemesis",
  38530. height: math.unit(8e6, "feet")
  38531. },
  38532. {
  38533. name: "Continent Cracker",
  38534. height: math.unit(2.4e7, "feet")
  38535. },
  38536. {
  38537. name: "Planet-Pillaging",
  38538. height: math.unit(8e7, "feet")
  38539. },
  38540. {
  38541. name: "Earth-Eclipsing",
  38542. height: math.unit(2.4e8, "feet")
  38543. },
  38544. {
  38545. name: "Jovian-Jostling",
  38546. height: math.unit(8e8, "feet")
  38547. },
  38548. {
  38549. name: "Gas Giant Gulper",
  38550. height: math.unit(2.4e9, "feet")
  38551. },
  38552. {
  38553. name: "Astral Annihilator",
  38554. height: math.unit(8e9, "feet")
  38555. },
  38556. {
  38557. name: "Celestial Conqueror",
  38558. height: math.unit(2.4e10, "feet")
  38559. },
  38560. {
  38561. name: "Sol-Swallowing",
  38562. height: math.unit(8e10, "feet")
  38563. },
  38564. {
  38565. name: "Hunter of the Heavens",
  38566. height: math.unit(2.4e13, "feet")
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38572. {
  38573. front: {
  38574. height: math.unit(6 + 8/12, "feet"),
  38575. name: "Front",
  38576. image: {
  38577. source: "./media/characters/rebecca-pawlson/front.svg",
  38578. extra: 1737/1596,
  38579. bottom: 107/1844
  38580. }
  38581. },
  38582. back: {
  38583. height: math.unit(6 + 8/12, "feet"),
  38584. name: "Back",
  38585. image: {
  38586. source: "./media/characters/rebecca-pawlson/back.svg",
  38587. extra: 1702/1523,
  38588. bottom: 86/1788
  38589. }
  38590. },
  38591. },
  38592. [
  38593. {
  38594. name: "Normal",
  38595. height: math.unit(6 + 8/12, "feet")
  38596. },
  38597. {
  38598. name: "Mini Macro",
  38599. height: math.unit(10, "feet"),
  38600. default: true
  38601. },
  38602. {
  38603. name: "Macro",
  38604. height: math.unit(100, "feet")
  38605. },
  38606. {
  38607. name: "Mega Macro",
  38608. height: math.unit(2500, "feet")
  38609. },
  38610. {
  38611. name: "Giga Macro",
  38612. height: math.unit(50, "miles")
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(7 + 6/12, "feet"),
  38621. weight: math.unit(600, "lb"),
  38622. name: "Front",
  38623. image: {
  38624. source: "./media/characters/moxie-nova/front.svg",
  38625. extra: 1734/1652,
  38626. bottom: 41/1775
  38627. }
  38628. },
  38629. },
  38630. [
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(7 + 6/12, "feet"),
  38634. default: true
  38635. },
  38636. ]
  38637. ))
  38638. characterMakers.push(() => makeCharacter(
  38639. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38640. {
  38641. goat: {
  38642. height: math.unit(4, "feet"),
  38643. weight: math.unit(180, "lb"),
  38644. name: "Goat",
  38645. image: {
  38646. source: "./media/characters/tiffany/goat.svg",
  38647. extra: 1845/1595,
  38648. bottom: 106/1951
  38649. }
  38650. },
  38651. front: {
  38652. height: math.unit(5, "feet"),
  38653. weight: math.unit(150, "lb"),
  38654. name: "Foxcoon",
  38655. image: {
  38656. source: "./media/characters/tiffany/foxcoon.svg",
  38657. extra: 1941/1845,
  38658. bottom: 58/1999
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(5, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(8, "feet"),
  38675. weight: math.unit(300, "lb"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/raxinath/front.svg",
  38679. extra: 1407/1309,
  38680. bottom: 39/1446
  38681. }
  38682. },
  38683. back: {
  38684. height: math.unit(8, "feet"),
  38685. weight: math.unit(300, "lb"),
  38686. name: "Back",
  38687. image: {
  38688. source: "./media/characters/raxinath/back.svg",
  38689. extra: 1405/1315,
  38690. bottom: 9/1414
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Speck",
  38697. height: math.unit(0.5, "nm")
  38698. },
  38699. {
  38700. name: "Micro",
  38701. height: math.unit(3, "inches")
  38702. },
  38703. {
  38704. name: "Kobold",
  38705. height: math.unit(3, "feet")
  38706. },
  38707. {
  38708. name: "Normal",
  38709. height: math.unit(8, "feet"),
  38710. default: true
  38711. },
  38712. {
  38713. name: "Giant",
  38714. height: math.unit(50, "feet")
  38715. },
  38716. {
  38717. name: "Macro",
  38718. height: math.unit(1000, "feet")
  38719. },
  38720. {
  38721. name: "Megamacro",
  38722. height: math.unit(1, "mile")
  38723. },
  38724. ]
  38725. ))
  38726. characterMakers.push(() => makeCharacter(
  38727. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38728. {
  38729. front: {
  38730. height: math.unit(10, "feet"),
  38731. weight: math.unit(1442, "lb"),
  38732. name: "Front",
  38733. image: {
  38734. source: "./media/characters/mal-dragon/front.svg",
  38735. extra: 1515/1444,
  38736. bottom: 113/1628
  38737. }
  38738. },
  38739. back: {
  38740. height: math.unit(10, "feet"),
  38741. weight: math.unit(1442, "lb"),
  38742. name: "Back",
  38743. image: {
  38744. source: "./media/characters/mal-dragon/back.svg",
  38745. extra: 1527/1434,
  38746. bottom: 25/1552
  38747. }
  38748. },
  38749. },
  38750. [
  38751. {
  38752. name: "Mortal Interaction",
  38753. height: math.unit(10, "feet"),
  38754. default: true
  38755. },
  38756. {
  38757. name: "Large",
  38758. height: math.unit(30, "feet")
  38759. },
  38760. {
  38761. name: "Kaiju",
  38762. height: math.unit(300, "feet")
  38763. },
  38764. {
  38765. name: "Megamacro",
  38766. height: math.unit(10000, "feet")
  38767. },
  38768. {
  38769. name: "Continent Cracker",
  38770. height: math.unit(30000000, "feet")
  38771. },
  38772. {
  38773. name: "Sol-Swallowing",
  38774. height: math.unit(1e11, "feet")
  38775. },
  38776. {
  38777. name: "Light Universal",
  38778. height: math.unit(5, "universes")
  38779. },
  38780. {
  38781. name: "Universe Atoms",
  38782. height: math.unit(1.829e9, "universes")
  38783. },
  38784. {
  38785. name: "Light Multiversal",
  38786. height: math.unit(5, "multiverses")
  38787. },
  38788. {
  38789. name: "Multiverse Atoms",
  38790. height: math.unit(1.829e9, "multiverses")
  38791. },
  38792. {
  38793. name: "Fabric of Time",
  38794. height: math.unit(1e262, "multiverses")
  38795. },
  38796. ]
  38797. ))
  38798. characterMakers.push(() => makeCharacter(
  38799. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38800. {
  38801. front: {
  38802. height: math.unit(9, "feet"),
  38803. weight: math.unit(1050, "lb"),
  38804. name: "Front",
  38805. image: {
  38806. source: "./media/characters/tabitha/front.svg",
  38807. extra: 2083/1994,
  38808. bottom: 68/2151
  38809. }
  38810. },
  38811. },
  38812. [
  38813. {
  38814. name: "Baseline",
  38815. height: math.unit(9, "feet"),
  38816. default: true
  38817. },
  38818. {
  38819. name: "Giant",
  38820. height: math.unit(90, "feet")
  38821. },
  38822. {
  38823. name: "Macro",
  38824. height: math.unit(900, "feet")
  38825. },
  38826. {
  38827. name: "Megamacro",
  38828. height: math.unit(9000, "feet")
  38829. },
  38830. {
  38831. name: "City-Crushing",
  38832. height: math.unit(27000, "feet")
  38833. },
  38834. {
  38835. name: "Mountain-Mashing",
  38836. height: math.unit(90000, "feet")
  38837. },
  38838. {
  38839. name: "Nation Nemesis",
  38840. height: math.unit(9e6, "feet")
  38841. },
  38842. {
  38843. name: "Continent Cracker",
  38844. height: math.unit(27e6, "feet")
  38845. },
  38846. {
  38847. name: "Earth-Eclipsing",
  38848. height: math.unit(2.7e8, "feet")
  38849. },
  38850. {
  38851. name: "Gas Giant Gulper",
  38852. height: math.unit(2.7e9, "feet")
  38853. },
  38854. {
  38855. name: "Sol-Swallowing",
  38856. height: math.unit(9e10, "feet")
  38857. },
  38858. {
  38859. name: "Galaxy Gulper",
  38860. height: math.unit(9, "galaxies")
  38861. },
  38862. {
  38863. name: "Cosmos Churner",
  38864. height: math.unit(9, "universes")
  38865. },
  38866. ]
  38867. ))
  38868. characterMakers.push(() => makeCharacter(
  38869. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38870. {
  38871. front: {
  38872. height: math.unit(160, "cm"),
  38873. weight: math.unit(55, "kg"),
  38874. name: "Front",
  38875. image: {
  38876. source: "./media/characters/tow/front.svg",
  38877. extra: 1751/1722,
  38878. bottom: 74/1825
  38879. }
  38880. },
  38881. },
  38882. [
  38883. {
  38884. name: "Norm",
  38885. height: math.unit(160, "cm")
  38886. },
  38887. {
  38888. name: "Casual",
  38889. height: math.unit(3200, "m"),
  38890. default: true
  38891. },
  38892. {
  38893. name: "Show-Off",
  38894. height: math.unit(160, "km")
  38895. },
  38896. ]
  38897. ))
  38898. characterMakers.push(() => makeCharacter(
  38899. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38900. {
  38901. front: {
  38902. height: math.unit(7 + 11/12, "feet"),
  38903. weight: math.unit(342.8, "lb"),
  38904. name: "Front",
  38905. image: {
  38906. source: "./media/characters/vivian-orca-dragon/front.svg",
  38907. extra: 1890/1865,
  38908. bottom: 28/1918
  38909. }
  38910. },
  38911. },
  38912. [
  38913. {
  38914. name: "Micro",
  38915. height: math.unit(5, "inches")
  38916. },
  38917. {
  38918. name: "Normal",
  38919. height: math.unit(7 + 11/12, "feet"),
  38920. default: true
  38921. },
  38922. {
  38923. name: "Macro",
  38924. height: math.unit(395 + 7/12, "feet")
  38925. },
  38926. ]
  38927. ))
  38928. characterMakers.push(() => makeCharacter(
  38929. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38930. {
  38931. side: {
  38932. height: math.unit(10, "feet"),
  38933. weight: math.unit(1442, "lb"),
  38934. name: "Side",
  38935. image: {
  38936. source: "./media/characters/lotherakon/side.svg",
  38937. extra: 1604/1497,
  38938. bottom: 89/1693
  38939. }
  38940. },
  38941. },
  38942. [
  38943. {
  38944. name: "Mortal Interaction",
  38945. height: math.unit(10, "feet")
  38946. },
  38947. {
  38948. name: "Large",
  38949. height: math.unit(30, "feet"),
  38950. default: true
  38951. },
  38952. {
  38953. name: "Giant",
  38954. height: math.unit(100, "feet")
  38955. },
  38956. {
  38957. name: "Kaiju",
  38958. height: math.unit(300, "feet")
  38959. },
  38960. {
  38961. name: "Macro",
  38962. height: math.unit(1000, "feet")
  38963. },
  38964. {
  38965. name: "Macro+",
  38966. height: math.unit(3000, "feet")
  38967. },
  38968. {
  38969. name: "Megamacro",
  38970. height: math.unit(10000, "feet")
  38971. },
  38972. {
  38973. name: "City-Crushing",
  38974. height: math.unit(30000, "feet")
  38975. },
  38976. {
  38977. name: "Continent Cracker",
  38978. height: math.unit(30e6, "feet")
  38979. },
  38980. {
  38981. name: "Earth Eclipsing",
  38982. height: math.unit(3e8, "feet")
  38983. },
  38984. {
  38985. name: "Gas Giant Gulper",
  38986. height: math.unit(3e9, "feet")
  38987. },
  38988. {
  38989. name: "Sol-Swallowing",
  38990. height: math.unit(1e11, "feet")
  38991. },
  38992. {
  38993. name: "System Swallower",
  38994. height: math.unit(3e14, "feet")
  38995. },
  38996. {
  38997. name: "Galaxy Gulper",
  38998. height: math.unit(10, "galaxies")
  38999. },
  39000. {
  39001. name: "Light Universal",
  39002. height: math.unit(5, "universes")
  39003. },
  39004. {
  39005. name: "Universe Palm",
  39006. height: math.unit(20, "universes")
  39007. },
  39008. {
  39009. name: "Light Multiversal",
  39010. height: math.unit(5, "multiverses")
  39011. },
  39012. {
  39013. name: "Multiverse Palm",
  39014. height: math.unit(20, "multiverses")
  39015. },
  39016. {
  39017. name: "Inferno Incarnate",
  39018. height: math.unit(1e7, "multiverses")
  39019. },
  39020. ]
  39021. ))
  39022. characterMakers.push(() => makeCharacter(
  39023. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39024. {
  39025. front: {
  39026. height: math.unit(8, "feet"),
  39027. weight: math.unit(1200, "lb"),
  39028. name: "Front",
  39029. image: {
  39030. source: "./media/characters/malithee/front.svg",
  39031. extra: 1675/1640,
  39032. bottom: 162/1837
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Mortal Interaction",
  39039. height: math.unit(8, "feet"),
  39040. default: true
  39041. },
  39042. {
  39043. name: "Large",
  39044. height: math.unit(24, "feet")
  39045. },
  39046. {
  39047. name: "Kaiju",
  39048. height: math.unit(240, "feet")
  39049. },
  39050. {
  39051. name: "Megamacro",
  39052. height: math.unit(8000, "feet")
  39053. },
  39054. {
  39055. name: "Continent Cracker",
  39056. height: math.unit(24e6, "feet")
  39057. },
  39058. {
  39059. name: "Earth-Eclipsing",
  39060. height: math.unit(2.4e8, "feet")
  39061. },
  39062. {
  39063. name: "Sol-Swallowing",
  39064. height: math.unit(8e10, "feet")
  39065. },
  39066. {
  39067. name: "Galaxy Gulper",
  39068. height: math.unit(8, "galaxies")
  39069. },
  39070. {
  39071. name: "Light Universal",
  39072. height: math.unit(4, "universes")
  39073. },
  39074. {
  39075. name: "Universe Atoms",
  39076. height: math.unit(1.829e9, "universes")
  39077. },
  39078. {
  39079. name: "Light Multiversal",
  39080. height: math.unit(4, "multiverses")
  39081. },
  39082. {
  39083. name: "Multiverse Atoms",
  39084. height: math.unit(1.829e9, "multiverses")
  39085. },
  39086. {
  39087. name: "Nigh-Omnipresence",
  39088. height: math.unit(8e261, "multiverses")
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(10, "feet"),
  39097. weight: math.unit(1500, "lb"),
  39098. name: "Front",
  39099. image: {
  39100. source: "./media/characters/miles-thestia/front.svg",
  39101. extra: 1812/1727,
  39102. bottom: 86/1898
  39103. }
  39104. },
  39105. back: {
  39106. height: math.unit(10, "feet"),
  39107. weight: math.unit(1500, "lb"),
  39108. name: "Back",
  39109. image: {
  39110. source: "./media/characters/miles-thestia/back.svg",
  39111. extra: 1799/1690,
  39112. bottom: 47/1846
  39113. }
  39114. },
  39115. frontNsfw: {
  39116. height: math.unit(10, "feet"),
  39117. weight: math.unit(1500, "lb"),
  39118. name: "Front (NSFW)",
  39119. image: {
  39120. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39121. extra: 1812/1727,
  39122. bottom: 86/1898
  39123. }
  39124. },
  39125. },
  39126. [
  39127. {
  39128. name: "Mini-Macro",
  39129. height: math.unit(10, "feet"),
  39130. default: true
  39131. },
  39132. ]
  39133. ))
  39134. characterMakers.push(() => makeCharacter(
  39135. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39136. {
  39137. front: {
  39138. height: math.unit(25, "feet"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/titan-s-wulf/front.svg",
  39142. extra: 1560/1484,
  39143. bottom: 76/1636
  39144. }
  39145. },
  39146. },
  39147. [
  39148. {
  39149. name: "Smallest",
  39150. height: math.unit(25, "feet"),
  39151. default: true
  39152. },
  39153. {
  39154. name: "Normal",
  39155. height: math.unit(200, "feet")
  39156. },
  39157. {
  39158. name: "Macro",
  39159. height: math.unit(200000, "feet")
  39160. },
  39161. {
  39162. name: "Multiversal Original",
  39163. height: math.unit(10000, "multiverses")
  39164. },
  39165. ]
  39166. ))
  39167. characterMakers.push(() => makeCharacter(
  39168. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39169. {
  39170. front: {
  39171. height: math.unit(8, "feet"),
  39172. weight: math.unit(553, "lb"),
  39173. name: "Front",
  39174. image: {
  39175. source: "./media/characters/tawendeh/front.svg",
  39176. extra: 2365/2268,
  39177. bottom: 83/2448
  39178. }
  39179. },
  39180. frontClothed: {
  39181. height: math.unit(8, "feet"),
  39182. weight: math.unit(553, "lb"),
  39183. name: "Front (Clothed)",
  39184. image: {
  39185. source: "./media/characters/tawendeh/front-clothed.svg",
  39186. extra: 2365/2268,
  39187. bottom: 83/2448
  39188. }
  39189. },
  39190. back: {
  39191. height: math.unit(8, "feet"),
  39192. weight: math.unit(553, "lb"),
  39193. name: "Back",
  39194. image: {
  39195. source: "./media/characters/tawendeh/back.svg",
  39196. extra: 2397/2294,
  39197. bottom: 42/2439
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Mortal Interaction",
  39204. height: math.unit(8, "feet"),
  39205. default: true
  39206. },
  39207. {
  39208. name: "Giant",
  39209. height: math.unit(80, "feet")
  39210. },
  39211. {
  39212. name: "Macro",
  39213. height: math.unit(800, "feet")
  39214. },
  39215. {
  39216. name: "Megamacro",
  39217. height: math.unit(8000, "feet")
  39218. },
  39219. {
  39220. name: "City-Crushing",
  39221. height: math.unit(24000, "feet")
  39222. },
  39223. {
  39224. name: "Mountain-Mashing",
  39225. height: math.unit(80000, "feet")
  39226. },
  39227. {
  39228. name: "Nation Nemesis",
  39229. height: math.unit(8e6, "feet")
  39230. },
  39231. {
  39232. name: "Continent Cracker",
  39233. height: math.unit(24e6, "feet")
  39234. },
  39235. {
  39236. name: "Earth-Eclipsing",
  39237. height: math.unit(2.4e8, "feet")
  39238. },
  39239. {
  39240. name: "Gas Giant Gulper",
  39241. height: math.unit(2.4e9, "feet")
  39242. },
  39243. {
  39244. name: "Sol-Swallowing",
  39245. height: math.unit(8e10, "feet")
  39246. },
  39247. {
  39248. name: "Galaxy Gulper",
  39249. height: math.unit(8, "galaxies")
  39250. },
  39251. {
  39252. name: "Cosmos Churner",
  39253. height: math.unit(8, "universes")
  39254. },
  39255. {
  39256. name: "Omnipotent Otter",
  39257. height: math.unit(80, "universes")
  39258. },
  39259. ]
  39260. ))
  39261. characterMakers.push(() => makeCharacter(
  39262. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39263. {
  39264. front: {
  39265. height: math.unit(2.6, "meters"),
  39266. weight: math.unit(900, "kg"),
  39267. name: "Front",
  39268. image: {
  39269. source: "./media/characters/neesha/front.svg",
  39270. extra: 1803/1653,
  39271. bottom: 128/1931
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Normal",
  39278. height: math.unit(2.6, "meters"),
  39279. default: true
  39280. },
  39281. {
  39282. name: "Macro",
  39283. height: math.unit(50, "meters")
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(5, "feet"),
  39292. weight: math.unit(185, "lb"),
  39293. name: "Front",
  39294. image: {
  39295. source: "./media/characters/kyera/front.svg",
  39296. extra: 1875/1790,
  39297. bottom: 96/1971
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(5, "feet"),
  39305. default: true
  39306. },
  39307. ]
  39308. ))
  39309. characterMakers.push(() => makeCharacter(
  39310. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39311. {
  39312. front: {
  39313. height: math.unit(7 + 6/12, "feet"),
  39314. weight: math.unit(540, "lb"),
  39315. name: "Front",
  39316. image: {
  39317. source: "./media/characters/yuko/front.svg",
  39318. extra: 1282/1222,
  39319. bottom: 101/1383
  39320. }
  39321. },
  39322. frontClothed: {
  39323. height: math.unit(7 + 6/12, "feet"),
  39324. weight: math.unit(540, "lb"),
  39325. name: "Front (Clothed)",
  39326. image: {
  39327. source: "./media/characters/yuko/front-clothed.svg",
  39328. extra: 1282/1222,
  39329. bottom: 101/1383
  39330. }
  39331. },
  39332. },
  39333. [
  39334. {
  39335. name: "Normal",
  39336. height: math.unit(7 + 6/12, "feet"),
  39337. default: true
  39338. },
  39339. {
  39340. name: "Macro",
  39341. height: math.unit(26 + 9/12, "feet")
  39342. },
  39343. {
  39344. name: "Megamacro",
  39345. height: math.unit(300, "feet")
  39346. },
  39347. {
  39348. name: "Gigamacro",
  39349. height: math.unit(5000, "feet")
  39350. },
  39351. {
  39352. name: "Planetary",
  39353. height: math.unit(10000, "miles")
  39354. },
  39355. ]
  39356. ))
  39357. characterMakers.push(() => makeCharacter(
  39358. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39359. {
  39360. front: {
  39361. height: math.unit(8 + 2/12, "feet"),
  39362. weight: math.unit(600, "lb"),
  39363. name: "Front",
  39364. image: {
  39365. source: "./media/characters/deam-nitrel/front.svg",
  39366. extra: 1308/1234,
  39367. bottom: 125/1433
  39368. }
  39369. },
  39370. },
  39371. [
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(8 + 2/12, "feet"),
  39375. default: true
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39381. {
  39382. front: {
  39383. height: math.unit(6.1, "feet"),
  39384. weight: math.unit(180, "lb"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/skyress/front.svg",
  39388. extra: 1045/915,
  39389. bottom: 28/1073
  39390. }
  39391. },
  39392. maw: {
  39393. height: math.unit(1, "feet"),
  39394. name: "Maw",
  39395. image: {
  39396. source: "./media/characters/skyress/maw.svg"
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(6.1, "feet"),
  39404. default: true
  39405. },
  39406. {
  39407. name: "Macro",
  39408. height: math.unit(200, "feet")
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39414. {
  39415. front: {
  39416. height: math.unit(4 + 2/12, "feet"),
  39417. weight: math.unit(40, "kg"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/amethyst-jones/front.svg",
  39421. extra: 1220/1150,
  39422. bottom: 101/1321
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(4 + 2/12, "feet"),
  39430. default: true
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(1.7, "m"),
  39439. weight: math.unit(135, "lb"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/jade/front.svg",
  39443. extra: 1818/1767,
  39444. bottom: 32/1850
  39445. }
  39446. },
  39447. back: {
  39448. height: math.unit(1.7, "m"),
  39449. weight: math.unit(135, "lb"),
  39450. name: "Back",
  39451. image: {
  39452. source: "./media/characters/jade/back.svg",
  39453. extra: 1869/1809,
  39454. bottom: 35/1904
  39455. }
  39456. },
  39457. hand: {
  39458. height: math.unit(0.24, "m"),
  39459. name: "Hand",
  39460. image: {
  39461. source: "./media/characters/jade/hand.svg"
  39462. }
  39463. },
  39464. foot: {
  39465. height: math.unit(0.263, "m"),
  39466. name: "Foot",
  39467. image: {
  39468. source: "./media/characters/jade/foot.svg"
  39469. }
  39470. },
  39471. dick: {
  39472. height: math.unit(0.47, "m"),
  39473. name: "Dick",
  39474. image: {
  39475. source: "./media/characters/jade/dick.svg"
  39476. }
  39477. },
  39478. },
  39479. [
  39480. {
  39481. name: "Micro",
  39482. height: math.unit(22, "cm")
  39483. },
  39484. {
  39485. name: "Normal",
  39486. height: math.unit(1.7, "m"),
  39487. default: true
  39488. },
  39489. {
  39490. name: "Macro",
  39491. height: math.unit(152, "m")
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39497. {
  39498. front: {
  39499. height: math.unit(100, "miles"),
  39500. weight: math.unit(20000, "tons"),
  39501. name: "Front",
  39502. image: {
  39503. source: "./media/characters/cookie/front.svg",
  39504. extra: 1125/1070,
  39505. bottom: 30/1155
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Big",
  39512. height: math.unit(50, "feet")
  39513. },
  39514. {
  39515. name: "Macro",
  39516. height: math.unit(100, "miles"),
  39517. default: true
  39518. },
  39519. {
  39520. name: "Megamacro",
  39521. height: math.unit(90000, "miles")
  39522. },
  39523. ]
  39524. ))
  39525. characterMakers.push(() => makeCharacter(
  39526. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39527. {
  39528. front: {
  39529. height: math.unit(6, "feet"),
  39530. weight: math.unit(145, "lb"),
  39531. name: "Front",
  39532. image: {
  39533. source: "./media/characters/farzian/front.svg",
  39534. extra: 1902/1693,
  39535. bottom: 108/2010
  39536. }
  39537. },
  39538. },
  39539. [
  39540. {
  39541. name: "Macro",
  39542. height: math.unit(500, "feet"),
  39543. default: true
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39549. {
  39550. front: {
  39551. height: math.unit(3 + 6/12, "feet"),
  39552. weight: math.unit(50, "lb"),
  39553. name: "Front",
  39554. image: {
  39555. source: "./media/characters/kimberly-tilson/front.svg",
  39556. extra: 1400/1322,
  39557. bottom: 36/1436
  39558. }
  39559. },
  39560. back: {
  39561. height: math.unit(3 + 6/12, "feet"),
  39562. weight: math.unit(50, "lb"),
  39563. name: "Back",
  39564. image: {
  39565. source: "./media/characters/kimberly-tilson/back.svg",
  39566. extra: 1370/1307,
  39567. bottom: 20/1390
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(3 + 6/12, "feet"),
  39575. default: true
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(1148, "feet"),
  39584. weight: math.unit(34057, "lb"),
  39585. name: "Front",
  39586. image: {
  39587. source: "./media/characters/harthos/front.svg",
  39588. extra: 1391/1339,
  39589. bottom: 13/1404
  39590. }
  39591. },
  39592. },
  39593. [
  39594. {
  39595. name: "Macro",
  39596. height: math.unit(1148, "feet"),
  39597. default: true
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39603. {
  39604. front: {
  39605. height: math.unit(15, "feet"),
  39606. name: "Front",
  39607. image: {
  39608. source: "./media/characters/hypatia/front.svg",
  39609. extra: 1653/1591,
  39610. bottom: 79/1732
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(15, "feet")
  39618. },
  39619. {
  39620. name: "Small",
  39621. height: math.unit(300, "feet")
  39622. },
  39623. {
  39624. name: "Macro",
  39625. height: math.unit(2500, "feet"),
  39626. default: true
  39627. },
  39628. {
  39629. name: "Mega Macro",
  39630. height: math.unit(1500, "miles")
  39631. },
  39632. {
  39633. name: "Giga Macro",
  39634. height: math.unit(1.5e6, "miles")
  39635. },
  39636. ]
  39637. ))
  39638. characterMakers.push(() => makeCharacter(
  39639. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39640. {
  39641. front: {
  39642. height: math.unit(6, "feet"),
  39643. weight: math.unit(200, "lb"),
  39644. name: "Front",
  39645. image: {
  39646. source: "./media/characters/wulver/front.svg",
  39647. extra: 1724/1632,
  39648. bottom: 130/1854
  39649. }
  39650. },
  39651. frontNsfw: {
  39652. height: math.unit(6, "feet"),
  39653. weight: math.unit(200, "lb"),
  39654. name: "Front (NSFW)",
  39655. image: {
  39656. source: "./media/characters/wulver/front-nsfw.svg",
  39657. extra: 1724/1632,
  39658. bottom: 130/1854
  39659. }
  39660. },
  39661. },
  39662. [
  39663. {
  39664. name: "Human-Sized",
  39665. height: math.unit(6, "feet")
  39666. },
  39667. {
  39668. name: "Normal",
  39669. height: math.unit(4, "meters"),
  39670. default: true
  39671. },
  39672. {
  39673. name: "Large",
  39674. height: math.unit(6, "m")
  39675. },
  39676. ]
  39677. ))
  39678. characterMakers.push(() => makeCharacter(
  39679. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39680. {
  39681. front: {
  39682. height: math.unit(7, "feet"),
  39683. name: "Front",
  39684. image: {
  39685. source: "./media/characters/maru/front.svg",
  39686. extra: 1595/1570,
  39687. bottom: 0/1595
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(7, "feet"),
  39695. default: true
  39696. },
  39697. {
  39698. name: "Macro",
  39699. height: math.unit(700, "feet")
  39700. },
  39701. {
  39702. name: "Mega Macro",
  39703. height: math.unit(25, "miles")
  39704. },
  39705. ]
  39706. ))
  39707. characterMakers.push(() => makeCharacter(
  39708. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39709. {
  39710. front: {
  39711. height: math.unit(6, "feet"),
  39712. weight: math.unit(170, "lb"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/xenon/front.svg",
  39716. extra: 1376/1305,
  39717. bottom: 56/1432
  39718. }
  39719. },
  39720. back: {
  39721. height: math.unit(6, "feet"),
  39722. weight: math.unit(170, "lb"),
  39723. name: "Back",
  39724. image: {
  39725. source: "./media/characters/xenon/back.svg",
  39726. extra: 1328/1259,
  39727. bottom: 95/1423
  39728. }
  39729. },
  39730. maw: {
  39731. height: math.unit(0.52, "feet"),
  39732. name: "Maw",
  39733. image: {
  39734. source: "./media/characters/xenon/maw.svg"
  39735. }
  39736. },
  39737. hand: {
  39738. height: math.unit(0.82, "feet"),
  39739. name: "Hand",
  39740. image: {
  39741. source: "./media/characters/xenon/hand.svg"
  39742. }
  39743. },
  39744. foot: {
  39745. height: math.unit(1.13, "feet"),
  39746. name: "Foot",
  39747. image: {
  39748. source: "./media/characters/xenon/foot.svg"
  39749. }
  39750. },
  39751. },
  39752. [
  39753. {
  39754. name: "Micro",
  39755. height: math.unit(0.8, "inches")
  39756. },
  39757. {
  39758. name: "Normal",
  39759. height: math.unit(6, "feet")
  39760. },
  39761. {
  39762. name: "Macro",
  39763. height: math.unit(50, "feet"),
  39764. default: true
  39765. },
  39766. {
  39767. name: "Macro+",
  39768. height: math.unit(250, "feet")
  39769. },
  39770. {
  39771. name: "Megamacro",
  39772. height: math.unit(1500, "feet")
  39773. },
  39774. ]
  39775. ))
  39776. characterMakers.push(() => makeCharacter(
  39777. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39778. {
  39779. front: {
  39780. height: math.unit(7 + 5/12, "feet"),
  39781. name: "Front",
  39782. image: {
  39783. source: "./media/characters/zane/front.svg",
  39784. extra: 1260/1203,
  39785. bottom: 94/1354
  39786. }
  39787. },
  39788. back: {
  39789. height: math.unit(5.05, "feet"),
  39790. name: "Back",
  39791. image: {
  39792. source: "./media/characters/zane/back.svg",
  39793. extra: 893/829,
  39794. bottom: 30/923
  39795. }
  39796. },
  39797. werewolf: {
  39798. height: math.unit(11, "feet"),
  39799. name: "Werewolf",
  39800. image: {
  39801. source: "./media/characters/zane/werewolf.svg",
  39802. extra: 1383/1323,
  39803. bottom: 89/1472
  39804. }
  39805. },
  39806. foot: {
  39807. height: math.unit(1.46, "feet"),
  39808. name: "Foot",
  39809. image: {
  39810. source: "./media/characters/zane/foot.svg"
  39811. }
  39812. },
  39813. footFront: {
  39814. height: math.unit(0.784, "feet"),
  39815. name: "Foot (Front)",
  39816. image: {
  39817. source: "./media/characters/zane/foot-front.svg"
  39818. }
  39819. },
  39820. dick: {
  39821. height: math.unit(1.95, "feet"),
  39822. name: "Dick",
  39823. image: {
  39824. source: "./media/characters/zane/dick.svg"
  39825. }
  39826. },
  39827. dickWerewolf: {
  39828. height: math.unit(3.77, "feet"),
  39829. name: "Dick (Werewolf)",
  39830. image: {
  39831. source: "./media/characters/zane/dick.svg"
  39832. }
  39833. },
  39834. },
  39835. [
  39836. {
  39837. name: "Normal",
  39838. height: math.unit(7 + 5/12, "feet"),
  39839. default: true
  39840. },
  39841. ]
  39842. ))
  39843. characterMakers.push(() => makeCharacter(
  39844. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39845. {
  39846. front: {
  39847. height: math.unit(6 + 2/12, "feet"),
  39848. weight: math.unit(284, "lb"),
  39849. name: "Front",
  39850. image: {
  39851. source: "./media/characters/benni-desparque/front.svg",
  39852. extra: 1353/1126,
  39853. bottom: 69/1422
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Civilian",
  39860. height: math.unit(6 + 2/12, "feet")
  39861. },
  39862. {
  39863. name: "Normal",
  39864. height: math.unit(98, "feet"),
  39865. default: true
  39866. },
  39867. {
  39868. name: "Kaiju Fighter",
  39869. height: math.unit(268, "feet")
  39870. },
  39871. ]
  39872. ))
  39873. characterMakers.push(() => makeCharacter(
  39874. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39875. {
  39876. front: {
  39877. height: math.unit(5, "feet"),
  39878. weight: math.unit(105, "lb"),
  39879. name: "Front",
  39880. image: {
  39881. source: "./media/characters/maxine/front.svg",
  39882. extra: 1386/1250,
  39883. bottom: 71/1457
  39884. }
  39885. },
  39886. },
  39887. [
  39888. {
  39889. name: "Normal",
  39890. height: math.unit(5, "feet"),
  39891. default: true
  39892. },
  39893. ]
  39894. ))
  39895. characterMakers.push(() => makeCharacter(
  39896. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39897. {
  39898. front: {
  39899. height: math.unit(11 + 7/12, "feet"),
  39900. weight: math.unit(9576, "lb"),
  39901. name: "Front",
  39902. image: {
  39903. source: "./media/characters/scaly/front.svg",
  39904. extra: 888/867,
  39905. bottom: 36/924
  39906. }
  39907. },
  39908. },
  39909. [
  39910. {
  39911. name: "Normal",
  39912. height: math.unit(11 + 7/12, "feet"),
  39913. default: true
  39914. },
  39915. ]
  39916. ))
  39917. characterMakers.push(() => makeCharacter(
  39918. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39919. {
  39920. front: {
  39921. height: math.unit(9, "inches"),
  39922. name: "Front",
  39923. image: {
  39924. source: "./media/characters/saelria/front.svg",
  39925. extra: 662/621,
  39926. bottom: 12/674
  39927. }
  39928. },
  39929. },
  39930. [
  39931. {
  39932. name: "Tiny",
  39933. height: math.unit(9, "inches"),
  39934. default: true
  39935. },
  39936. ]
  39937. ))
  39938. characterMakers.push(() => makeCharacter(
  39939. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39940. {
  39941. front: {
  39942. height: math.unit(80, "meters"),
  39943. weight: math.unit(7000, "tonnes"),
  39944. name: "Front",
  39945. image: {
  39946. source: "./media/characters/tef/front.svg",
  39947. extra: 2036/1991,
  39948. bottom: 54/2090
  39949. }
  39950. },
  39951. back: {
  39952. height: math.unit(80, "meters"),
  39953. weight: math.unit(7000, "tonnes"),
  39954. name: "Back",
  39955. image: {
  39956. source: "./media/characters/tef/back.svg",
  39957. extra: 2036/1991,
  39958. bottom: 54/2090
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Macro",
  39965. height: math.unit(80, "meters"),
  39966. default: true
  39967. },
  39968. ]
  39969. ))
  39970. characterMakers.push(() => makeCharacter(
  39971. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39972. {
  39973. front: {
  39974. height: math.unit(13, "feet"),
  39975. weight: math.unit(6, "tons"),
  39976. name: "Front",
  39977. image: {
  39978. source: "./media/characters/rover/front.svg",
  39979. extra: 1233/1156,
  39980. bottom: 50/1283
  39981. }
  39982. },
  39983. back: {
  39984. height: math.unit(13, "feet"),
  39985. weight: math.unit(6, "tons"),
  39986. name: "Back",
  39987. image: {
  39988. source: "./media/characters/rover/back.svg",
  39989. extra: 1327/1258,
  39990. bottom: 39/1366
  39991. }
  39992. },
  39993. },
  39994. [
  39995. {
  39996. name: "Normal",
  39997. height: math.unit(13, "feet"),
  39998. default: true
  39999. },
  40000. {
  40001. name: "Macro",
  40002. height: math.unit(1300, "feet")
  40003. },
  40004. {
  40005. name: "Megamacro",
  40006. height: math.unit(1300, "miles")
  40007. },
  40008. {
  40009. name: "Gigamacro",
  40010. height: math.unit(1300000, "miles")
  40011. },
  40012. ]
  40013. ))
  40014. characterMakers.push(() => makeCharacter(
  40015. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40016. {
  40017. front: {
  40018. height: math.unit(6, "feet"),
  40019. weight: math.unit(150, "lb"),
  40020. name: "Front",
  40021. image: {
  40022. source: "./media/characters/ariz/front.svg",
  40023. extra: 1401/1346,
  40024. bottom: 5/1406
  40025. }
  40026. },
  40027. },
  40028. [
  40029. {
  40030. name: "Normal",
  40031. height: math.unit(10, "feet"),
  40032. default: true
  40033. },
  40034. ]
  40035. ))
  40036. characterMakers.push(() => makeCharacter(
  40037. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40038. {
  40039. front: {
  40040. height: math.unit(6, "feet"),
  40041. weight: math.unit(140, "lb"),
  40042. name: "Front",
  40043. image: {
  40044. source: "./media/characters/sigrun/front.svg",
  40045. extra: 1418/1359,
  40046. bottom: 27/1445
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Macro",
  40053. height: math.unit(35, "feet"),
  40054. default: true
  40055. },
  40056. ]
  40057. ))
  40058. characterMakers.push(() => makeCharacter(
  40059. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40060. {
  40061. front: {
  40062. height: math.unit(6, "feet"),
  40063. weight: math.unit(150, "lb"),
  40064. name: "Front",
  40065. image: {
  40066. source: "./media/characters/numin/front.svg",
  40067. extra: 1433/1388,
  40068. bottom: 12/1445
  40069. }
  40070. },
  40071. },
  40072. [
  40073. {
  40074. name: "Macro",
  40075. height: math.unit(21.5, "km"),
  40076. default: true
  40077. },
  40078. ]
  40079. ))
  40080. characterMakers.push(() => makeCharacter(
  40081. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40082. {
  40083. front: {
  40084. height: math.unit(6, "feet"),
  40085. weight: math.unit(463, "lb"),
  40086. name: "Front",
  40087. image: {
  40088. source: "./media/characters/melwa/front.svg",
  40089. extra: 1307/1248,
  40090. bottom: 93/1400
  40091. }
  40092. },
  40093. },
  40094. [
  40095. {
  40096. name: "Macro",
  40097. height: math.unit(50, "meters"),
  40098. default: true
  40099. },
  40100. ]
  40101. ))
  40102. characterMakers.push(() => makeCharacter(
  40103. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40104. {
  40105. front: {
  40106. height: math.unit(325, "feet"),
  40107. name: "Front",
  40108. image: {
  40109. source: "./media/characters/zorkaiju/front.svg",
  40110. extra: 1955/1814,
  40111. bottom: 40/1995
  40112. }
  40113. },
  40114. frontExtended: {
  40115. height: math.unit(325, "feet"),
  40116. name: "Front (Extended)",
  40117. image: {
  40118. source: "./media/characters/zorkaiju/front-extended.svg",
  40119. extra: 1955/1814,
  40120. bottom: 40/1995
  40121. }
  40122. },
  40123. side: {
  40124. height: math.unit(325, "feet"),
  40125. name: "Side",
  40126. image: {
  40127. source: "./media/characters/zorkaiju/side.svg",
  40128. extra: 1495/1396,
  40129. bottom: 17/1512
  40130. }
  40131. },
  40132. sideExtended: {
  40133. height: math.unit(325, "feet"),
  40134. name: "Side (Extended)",
  40135. image: {
  40136. source: "./media/characters/zorkaiju/side-extended.svg",
  40137. extra: 1495/1396,
  40138. bottom: 17/1512
  40139. }
  40140. },
  40141. back: {
  40142. height: math.unit(325, "feet"),
  40143. name: "Back",
  40144. image: {
  40145. source: "./media/characters/zorkaiju/back.svg",
  40146. extra: 1959/1821,
  40147. bottom: 31/1990
  40148. }
  40149. },
  40150. backExtended: {
  40151. height: math.unit(325, "feet"),
  40152. name: "Back (Extended)",
  40153. image: {
  40154. source: "./media/characters/zorkaiju/back-extended.svg",
  40155. extra: 1959/1821,
  40156. bottom: 31/1990
  40157. }
  40158. },
  40159. hand: {
  40160. height: math.unit(58.4, "feet"),
  40161. name: "Hand",
  40162. image: {
  40163. source: "./media/characters/zorkaiju/hand.svg"
  40164. }
  40165. },
  40166. handExtended: {
  40167. height: math.unit(61.4, "feet"),
  40168. name: "Hand (Extended)",
  40169. image: {
  40170. source: "./media/characters/zorkaiju/hand-extended.svg"
  40171. }
  40172. },
  40173. foot: {
  40174. height: math.unit(95, "feet"),
  40175. name: "Foot",
  40176. image: {
  40177. source: "./media/characters/zorkaiju/foot.svg"
  40178. }
  40179. },
  40180. leftArm: {
  40181. height: math.unit(59, "feet"),
  40182. name: "Left Arm",
  40183. image: {
  40184. source: "./media/characters/zorkaiju/left-arm.svg"
  40185. }
  40186. },
  40187. rightArm: {
  40188. height: math.unit(59, "feet"),
  40189. name: "Right Arm",
  40190. image: {
  40191. source: "./media/characters/zorkaiju/right-arm.svg"
  40192. }
  40193. },
  40194. tail: {
  40195. height: math.unit(104, "feet"),
  40196. name: "Tail",
  40197. image: {
  40198. source: "./media/characters/zorkaiju/tail.svg"
  40199. }
  40200. },
  40201. tailExtended: {
  40202. height: math.unit(104, "feet"),
  40203. name: "Tail (Extended)",
  40204. image: {
  40205. source: "./media/characters/zorkaiju/tail-extended.svg"
  40206. }
  40207. },
  40208. tailBottom: {
  40209. height: math.unit(104, "feet"),
  40210. name: "Tail Bottom",
  40211. image: {
  40212. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40213. }
  40214. },
  40215. crystal: {
  40216. height: math.unit(27.54, "feet"),
  40217. name: "Crystal",
  40218. image: {
  40219. source: "./media/characters/zorkaiju/crystal.svg"
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Kaiju",
  40226. height: math.unit(325, "feet"),
  40227. default: true
  40228. },
  40229. ]
  40230. ))
  40231. characterMakers.push(() => makeCharacter(
  40232. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40233. {
  40234. front: {
  40235. height: math.unit(6 + 1/12, "feet"),
  40236. weight: math.unit(115, "lb"),
  40237. name: "Front",
  40238. image: {
  40239. source: "./media/characters/bailey-belfry/front.svg",
  40240. extra: 1240/1121,
  40241. bottom: 101/1341
  40242. }
  40243. },
  40244. },
  40245. [
  40246. {
  40247. name: "Normal",
  40248. height: math.unit(6 + 1/12, "feet"),
  40249. default: true
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40255. {
  40256. side: {
  40257. height: math.unit(4, "meters"),
  40258. weight: math.unit(250, "kg"),
  40259. name: "Side",
  40260. image: {
  40261. source: "./media/characters/blacky/side.svg",
  40262. extra: 1027/919,
  40263. bottom: 43/1070
  40264. }
  40265. },
  40266. maw: {
  40267. height: math.unit(1, "meters"),
  40268. name: "Maw",
  40269. image: {
  40270. source: "./media/characters/blacky/maw.svg"
  40271. }
  40272. },
  40273. paw: {
  40274. height: math.unit(1, "meters"),
  40275. name: "Paw",
  40276. image: {
  40277. source: "./media/characters/blacky/paw.svg"
  40278. }
  40279. },
  40280. },
  40281. [
  40282. {
  40283. name: "Normal",
  40284. height: math.unit(4, "meters"),
  40285. default: true
  40286. },
  40287. ]
  40288. ))
  40289. characterMakers.push(() => makeCharacter(
  40290. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40291. {
  40292. front: {
  40293. height: math.unit(170, "cm"),
  40294. weight: math.unit(66, "kg"),
  40295. name: "Front",
  40296. image: {
  40297. source: "./media/characters/thux-ei/front.svg",
  40298. extra: 1109/1011,
  40299. bottom: 8/1117
  40300. }
  40301. },
  40302. },
  40303. [
  40304. {
  40305. name: "Normal",
  40306. height: math.unit(170, "cm"),
  40307. default: true
  40308. },
  40309. ]
  40310. ))
  40311. characterMakers.push(() => makeCharacter(
  40312. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40313. {
  40314. front: {
  40315. height: math.unit(5, "feet"),
  40316. weight: math.unit(120, "lb"),
  40317. name: "Front",
  40318. image: {
  40319. source: "./media/characters/roxanne-voltaire/front.svg",
  40320. extra: 1901/1779,
  40321. bottom: 53/1954
  40322. }
  40323. },
  40324. },
  40325. [
  40326. {
  40327. name: "Normal",
  40328. height: math.unit(5, "feet"),
  40329. default: true
  40330. },
  40331. {
  40332. name: "Giant",
  40333. height: math.unit(50, "feet")
  40334. },
  40335. {
  40336. name: "Titan",
  40337. height: math.unit(500, "feet")
  40338. },
  40339. {
  40340. name: "Macro",
  40341. height: math.unit(5000, "feet")
  40342. },
  40343. {
  40344. name: "Megamacro",
  40345. height: math.unit(50000, "feet")
  40346. },
  40347. {
  40348. name: "Gigamacro",
  40349. height: math.unit(500000, "feet")
  40350. },
  40351. {
  40352. name: "Teramacro",
  40353. height: math.unit(5e6, "feet")
  40354. },
  40355. ]
  40356. ))
  40357. characterMakers.push(() => makeCharacter(
  40358. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40359. {
  40360. front: {
  40361. height: math.unit(6 + 2/12, "feet"),
  40362. name: "Front",
  40363. image: {
  40364. source: "./media/characters/squeaks/front.svg",
  40365. extra: 1823/1768,
  40366. bottom: 138/1961
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Micro",
  40373. height: math.unit(0.5, "inches")
  40374. },
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(6 + 2/12, "feet"),
  40378. default: true
  40379. },
  40380. {
  40381. name: "Macro",
  40382. height: math.unit(600, "feet")
  40383. },
  40384. ]
  40385. ))
  40386. characterMakers.push(() => makeCharacter(
  40387. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40388. {
  40389. front: {
  40390. height: math.unit(1.72, "meters"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/archinger/front.svg",
  40394. extra: 1861/1675,
  40395. bottom: 125/1986
  40396. }
  40397. },
  40398. back: {
  40399. height: math.unit(1.72, "meters"),
  40400. name: "Back",
  40401. image: {
  40402. source: "./media/characters/archinger/back.svg",
  40403. extra: 1844/1701,
  40404. bottom: 104/1948
  40405. }
  40406. },
  40407. cock: {
  40408. height: math.unit(0.59, "feet"),
  40409. name: "Cock",
  40410. image: {
  40411. source: "./media/characters/archinger/cock.svg"
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Normal",
  40418. height: math.unit(1.72, "meters"),
  40419. default: true
  40420. },
  40421. {
  40422. name: "Macro",
  40423. height: math.unit(84, "meters")
  40424. },
  40425. {
  40426. name: "Macro+",
  40427. height: math.unit(112, "meters")
  40428. },
  40429. {
  40430. name: "Macro++",
  40431. height: math.unit(960, "meters")
  40432. },
  40433. {
  40434. name: "Macro+++",
  40435. height: math.unit(4, "km")
  40436. },
  40437. {
  40438. name: "Macro++++",
  40439. height: math.unit(48, "km")
  40440. },
  40441. {
  40442. name: "Macro+++++",
  40443. height: math.unit(4500, "km")
  40444. },
  40445. ]
  40446. ))
  40447. characterMakers.push(() => makeCharacter(
  40448. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40449. {
  40450. front: {
  40451. height: math.unit(5 + 5/12, "feet"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/alsnapz/front.svg",
  40455. extra: 1157/1065,
  40456. bottom: 42/1199
  40457. }
  40458. },
  40459. },
  40460. [
  40461. {
  40462. name: "Normal",
  40463. height: math.unit(5 + 5/12, "feet"),
  40464. default: true
  40465. },
  40466. ]
  40467. ))
  40468. characterMakers.push(() => makeCharacter(
  40469. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40470. {
  40471. side: {
  40472. height: math.unit(3.2, "earths"),
  40473. name: "Side",
  40474. image: {
  40475. source: "./media/characters/mag/side.svg",
  40476. extra: 1331/1008,
  40477. bottom: 52/1383
  40478. }
  40479. },
  40480. wing: {
  40481. height: math.unit(1.94, "earths"),
  40482. name: "Wing",
  40483. image: {
  40484. source: "./media/characters/mag/wing.svg"
  40485. }
  40486. },
  40487. dick: {
  40488. height: math.unit(1.8, "earths"),
  40489. name: "Dick",
  40490. image: {
  40491. source: "./media/characters/mag/dick.svg"
  40492. }
  40493. },
  40494. ass: {
  40495. height: math.unit(1.33, "earths"),
  40496. name: "Ass",
  40497. image: {
  40498. source: "./media/characters/mag/ass.svg"
  40499. }
  40500. },
  40501. head: {
  40502. height: math.unit(1.1, "earths"),
  40503. name: "Head",
  40504. image: {
  40505. source: "./media/characters/mag/head.svg"
  40506. }
  40507. },
  40508. maw: {
  40509. height: math.unit(1.62, "earths"),
  40510. name: "Maw",
  40511. image: {
  40512. source: "./media/characters/mag/maw.svg"
  40513. }
  40514. },
  40515. },
  40516. [
  40517. {
  40518. name: "Small",
  40519. height: math.unit(162, "feet")
  40520. },
  40521. {
  40522. name: "Normal",
  40523. height: math.unit(3.2, "earths"),
  40524. default: true
  40525. },
  40526. ]
  40527. ))
  40528. characterMakers.push(() => makeCharacter(
  40529. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40530. {
  40531. front: {
  40532. height: math.unit(512, "feet"),
  40533. weight: math.unit(63509, "tonnes"),
  40534. name: "Front",
  40535. image: {
  40536. source: "./media/characters/vorrel-harroc/front.svg",
  40537. extra: 1075/1063,
  40538. bottom: 62/1137
  40539. }
  40540. },
  40541. },
  40542. [
  40543. {
  40544. name: "Normal",
  40545. height: math.unit(10, "feet")
  40546. },
  40547. {
  40548. name: "Macro",
  40549. height: math.unit(512, "feet"),
  40550. default: true
  40551. },
  40552. {
  40553. name: "Megamacro",
  40554. height: math.unit(256, "miles")
  40555. },
  40556. {
  40557. name: "Gigamacro",
  40558. height: math.unit(4096, "miles")
  40559. },
  40560. ]
  40561. ))
  40562. characterMakers.push(() => makeCharacter(
  40563. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40564. {
  40565. side: {
  40566. height: math.unit(50, "feet"),
  40567. name: "Side",
  40568. image: {
  40569. source: "./media/characters/froimar/side.svg",
  40570. extra: 855/638,
  40571. bottom: 99/954
  40572. }
  40573. },
  40574. },
  40575. [
  40576. {
  40577. name: "Macro",
  40578. height: math.unit(50, "feet"),
  40579. default: true
  40580. },
  40581. ]
  40582. ))
  40583. characterMakers.push(() => makeCharacter(
  40584. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40585. {
  40586. front: {
  40587. height: math.unit(210, "miles"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/timothy/front.svg",
  40591. extra: 1007/943,
  40592. bottom: 62/1069
  40593. }
  40594. },
  40595. frontSkirt: {
  40596. height: math.unit(210, "miles"),
  40597. name: "Front (Skirt)",
  40598. image: {
  40599. source: "./media/characters/timothy/front-skirt.svg",
  40600. extra: 1007/943,
  40601. bottom: 62/1069
  40602. }
  40603. },
  40604. frontCoat: {
  40605. height: math.unit(210, "miles"),
  40606. name: "Front (Coat)",
  40607. image: {
  40608. source: "./media/characters/timothy/front-coat.svg",
  40609. extra: 1007/943,
  40610. bottom: 62/1069
  40611. }
  40612. },
  40613. },
  40614. [
  40615. {
  40616. name: "Macro",
  40617. height: math.unit(210, "miles"),
  40618. default: true
  40619. },
  40620. {
  40621. name: "Megamacro",
  40622. height: math.unit(210000, "miles")
  40623. },
  40624. ]
  40625. ))
  40626. characterMakers.push(() => makeCharacter(
  40627. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40628. {
  40629. front: {
  40630. height: math.unit(188, "feet"),
  40631. name: "Front",
  40632. image: {
  40633. source: "./media/characters/pyotr/front.svg",
  40634. extra: 1912/1826,
  40635. bottom: 18/1930
  40636. }
  40637. },
  40638. },
  40639. [
  40640. {
  40641. name: "Macro",
  40642. height: math.unit(188, "feet"),
  40643. default: true
  40644. },
  40645. {
  40646. name: "Megamacro",
  40647. height: math.unit(8, "miles")
  40648. },
  40649. ]
  40650. ))
  40651. characterMakers.push(() => makeCharacter(
  40652. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40653. {
  40654. side: {
  40655. height: math.unit(10, "feet"),
  40656. weight: math.unit(4500, "lb"),
  40657. name: "Side",
  40658. image: {
  40659. source: "./media/characters/ackart/side.svg",
  40660. extra: 1776/1668,
  40661. bottom: 116/1892
  40662. }
  40663. },
  40664. },
  40665. [
  40666. {
  40667. name: "Normal",
  40668. height: math.unit(10, "feet"),
  40669. default: true
  40670. },
  40671. ]
  40672. ))
  40673. characterMakers.push(() => makeCharacter(
  40674. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40675. {
  40676. side: {
  40677. height: math.unit(21, "feet"),
  40678. name: "Side",
  40679. image: {
  40680. source: "./media/characters/nolow/side.svg",
  40681. extra: 1484/1434,
  40682. bottom: 85/1569
  40683. }
  40684. },
  40685. sideErect: {
  40686. height: math.unit(21, "feet"),
  40687. name: "Side-erect",
  40688. image: {
  40689. source: "./media/characters/nolow/side-erect.svg",
  40690. extra: 1484/1434,
  40691. bottom: 85/1569
  40692. }
  40693. },
  40694. },
  40695. [
  40696. {
  40697. name: "Regular",
  40698. height: math.unit(12, "feet")
  40699. },
  40700. {
  40701. name: "Big Chee",
  40702. height: math.unit(21, "feet"),
  40703. default: true
  40704. },
  40705. ]
  40706. ))
  40707. characterMakers.push(() => makeCharacter(
  40708. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40709. {
  40710. front: {
  40711. height: math.unit(7, "feet"),
  40712. weight: math.unit(250, "lb"),
  40713. name: "Front",
  40714. image: {
  40715. source: "./media/characters/nines/front.svg",
  40716. extra: 1741/1607,
  40717. bottom: 41/1782
  40718. }
  40719. },
  40720. side: {
  40721. height: math.unit(7, "feet"),
  40722. weight: math.unit(250, "lb"),
  40723. name: "Side",
  40724. image: {
  40725. source: "./media/characters/nines/side.svg",
  40726. extra: 1854/1735,
  40727. bottom: 93/1947
  40728. }
  40729. },
  40730. back: {
  40731. height: math.unit(7, "feet"),
  40732. weight: math.unit(250, "lb"),
  40733. name: "Back",
  40734. image: {
  40735. source: "./media/characters/nines/back.svg",
  40736. extra: 1748/1615,
  40737. bottom: 20/1768
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Megamacro",
  40744. height: math.unit(99, "km"),
  40745. default: true
  40746. },
  40747. ]
  40748. ))
  40749. characterMakers.push(() => makeCharacter(
  40750. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40751. {
  40752. front: {
  40753. height: math.unit(5 + 10/12, "feet"),
  40754. weight: math.unit(210, "lb"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/zenith/front.svg",
  40758. extra: 1531/1452,
  40759. bottom: 198/1729
  40760. }
  40761. },
  40762. back: {
  40763. height: math.unit(5 + 10/12, "feet"),
  40764. weight: math.unit(210, "lb"),
  40765. name: "Back",
  40766. image: {
  40767. source: "./media/characters/zenith/back.svg",
  40768. extra: 1571/1487,
  40769. bottom: 75/1646
  40770. }
  40771. },
  40772. },
  40773. [
  40774. {
  40775. name: "Normal",
  40776. height: math.unit(5 + 10/12, "feet"),
  40777. default: true
  40778. }
  40779. ]
  40780. ))
  40781. characterMakers.push(() => makeCharacter(
  40782. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40783. {
  40784. front: {
  40785. height: math.unit(4, "feet"),
  40786. weight: math.unit(60, "lb"),
  40787. name: "Front",
  40788. image: {
  40789. source: "./media/characters/jasper/front.svg",
  40790. extra: 1450/1379,
  40791. bottom: 19/1469
  40792. }
  40793. },
  40794. },
  40795. [
  40796. {
  40797. name: "Normal",
  40798. height: math.unit(4, "feet"),
  40799. default: true
  40800. },
  40801. ]
  40802. ))
  40803. characterMakers.push(() => makeCharacter(
  40804. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40805. {
  40806. front: {
  40807. height: math.unit(6 + 5/12, "feet"),
  40808. weight: math.unit(290, "lb"),
  40809. name: "Front",
  40810. image: {
  40811. source: "./media/characters/tiberius-thyben/front.svg",
  40812. extra: 757/739,
  40813. bottom: 39/796
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "Micro",
  40820. height: math.unit(1.5, "inches")
  40821. },
  40822. {
  40823. name: "Normal",
  40824. height: math.unit(6 + 5/12, "feet"),
  40825. default: true
  40826. },
  40827. {
  40828. name: "Macro",
  40829. height: math.unit(300, "feet")
  40830. },
  40831. ]
  40832. ))
  40833. characterMakers.push(() => makeCharacter(
  40834. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40835. {
  40836. front: {
  40837. height: math.unit(5 + 6/12, "feet"),
  40838. weight: math.unit(60, "kg"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/sabre/front.svg",
  40842. extra: 738/671,
  40843. bottom: 27/765
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "Teeny",
  40850. height: math.unit(2, "inches")
  40851. },
  40852. {
  40853. name: "Smol",
  40854. height: math.unit(8, "inches")
  40855. },
  40856. {
  40857. name: "Normal",
  40858. height: math.unit(5 + 6/12, "feet"),
  40859. default: true
  40860. },
  40861. {
  40862. name: "Mini-Macro",
  40863. height: math.unit(15, "feet")
  40864. },
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(50, "feet")
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(6 + 4/12, "feet"),
  40876. weight: math.unit(170, "lb"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/charlie/front.svg",
  40880. extra: 1348/1228,
  40881. bottom: 15/1363
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Macro",
  40888. height: math.unit(1700, "meters"),
  40889. default: true
  40890. },
  40891. {
  40892. name: "MegaMacro",
  40893. height: math.unit(20400, "meters")
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(6 + 3/12, "feet"),
  40902. weight: math.unit(185, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/susan-grant/front.svg",
  40906. extra: 1351/1327,
  40907. bottom: 26/1377
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(6 + 3/12, "feet"),
  40915. default: true
  40916. },
  40917. {
  40918. name: "Macro",
  40919. height: math.unit(225, "feet")
  40920. },
  40921. {
  40922. name: "Macro+",
  40923. height: math.unit(900, "feet")
  40924. },
  40925. {
  40926. name: "MegaMacro",
  40927. height: math.unit(14400, "feet")
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(5 + 4/12, "feet"),
  40936. weight: math.unit(110, "lb"),
  40937. name: "Front",
  40938. image: {
  40939. source: "./media/characters/axel-isanov/front.svg",
  40940. extra: 1096/1065,
  40941. bottom: 13/1109
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Normal",
  40948. height: math.unit(5 + 4/12, "feet"),
  40949. default: true
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(9, "feet"),
  40958. weight: math.unit(467, "lb"),
  40959. name: "Front",
  40960. image: {
  40961. source: "./media/characters/necahual/front.svg",
  40962. extra: 920/873,
  40963. bottom: 26/946
  40964. }
  40965. },
  40966. back: {
  40967. height: math.unit(9, "feet"),
  40968. weight: math.unit(467, "lb"),
  40969. name: "Back",
  40970. image: {
  40971. source: "./media/characters/necahual/back.svg",
  40972. extra: 930/884,
  40973. bottom: 16/946
  40974. }
  40975. },
  40976. frontUnderwear: {
  40977. height: math.unit(9, "feet"),
  40978. weight: math.unit(467, "lb"),
  40979. name: "Front (Underwear)",
  40980. image: {
  40981. source: "./media/characters/necahual/front-underwear.svg",
  40982. extra: 920/873,
  40983. bottom: 26/946
  40984. }
  40985. },
  40986. frontDressed: {
  40987. height: math.unit(9, "feet"),
  40988. weight: math.unit(467, "lb"),
  40989. name: "Front (Dressed)",
  40990. image: {
  40991. source: "./media/characters/necahual/front-dressed.svg",
  40992. extra: 920/873,
  40993. bottom: 26/946
  40994. }
  40995. },
  40996. },
  40997. [
  40998. {
  40999. name: "Comprsesed",
  41000. height: math.unit(9, "feet")
  41001. },
  41002. {
  41003. name: "Natural",
  41004. height: math.unit(15, "feet"),
  41005. default: true
  41006. },
  41007. {
  41008. name: "Boosted",
  41009. height: math.unit(50, "feet")
  41010. },
  41011. {
  41012. name: "Boosted+",
  41013. height: math.unit(150, "feet")
  41014. },
  41015. {
  41016. name: "Max",
  41017. height: math.unit(500, "feet")
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41023. {
  41024. front: {
  41025. height: math.unit(22 + 1/12, "feet"),
  41026. weight: math.unit(3200, "lb"),
  41027. name: "Front",
  41028. image: {
  41029. source: "./media/characters/theo-acacia/front.svg",
  41030. extra: 1796/1741,
  41031. bottom: 83/1879
  41032. }
  41033. },
  41034. frontUnderwear: {
  41035. height: math.unit(22 + 1/12, "feet"),
  41036. weight: math.unit(3200, "lb"),
  41037. name: "Front (Underwear)",
  41038. image: {
  41039. source: "./media/characters/theo-acacia/front-underwear.svg",
  41040. extra: 1796/1741,
  41041. bottom: 83/1879
  41042. }
  41043. },
  41044. frontNude: {
  41045. height: math.unit(22 + 1/12, "feet"),
  41046. weight: math.unit(3200, "lb"),
  41047. name: "Front (Nude)",
  41048. image: {
  41049. source: "./media/characters/theo-acacia/front-nude.svg",
  41050. extra: 1796/1741,
  41051. bottom: 83/1879
  41052. }
  41053. },
  41054. },
  41055. [
  41056. {
  41057. name: "Normal",
  41058. height: math.unit(22 + 1/12, "feet"),
  41059. default: true
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(20, "feet"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/astra/front.svg",
  41071. extra: 1850/1714,
  41072. bottom: 106/1956
  41073. }
  41074. },
  41075. frontUndressed: {
  41076. height: math.unit(20, "feet"),
  41077. name: "Front (Undressed)",
  41078. image: {
  41079. source: "./media/characters/astra/front-undressed.svg",
  41080. extra: 1926/1749,
  41081. bottom: 0/1926
  41082. }
  41083. },
  41084. hand: {
  41085. height: math.unit(1.53, "feet"),
  41086. name: "Hand",
  41087. image: {
  41088. source: "./media/characters/astra/hand.svg"
  41089. }
  41090. },
  41091. paw: {
  41092. height: math.unit(1.53, "feet"),
  41093. name: "Paw",
  41094. image: {
  41095. source: "./media/characters/astra/paw.svg"
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Smallest",
  41102. height: math.unit(20, "feet")
  41103. },
  41104. {
  41105. name: "Normal",
  41106. height: math.unit(1e9, "miles"),
  41107. default: true
  41108. },
  41109. {
  41110. name: "Larger",
  41111. height: math.unit(5, "multiverses")
  41112. },
  41113. {
  41114. name: "Largest",
  41115. height: math.unit(1e9, "multiverses")
  41116. },
  41117. ]
  41118. ))
  41119. characterMakers.push(() => makeCharacter(
  41120. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41121. {
  41122. front: {
  41123. height: math.unit(8, "feet"),
  41124. name: "Front",
  41125. image: {
  41126. source: "./media/characters/breanna/front.svg",
  41127. extra: 1912/1632,
  41128. bottom: 33/1945
  41129. }
  41130. },
  41131. },
  41132. [
  41133. {
  41134. name: "Smallest",
  41135. height: math.unit(8, "feet")
  41136. },
  41137. {
  41138. name: "Normal",
  41139. height: math.unit(1, "mile"),
  41140. default: true
  41141. },
  41142. {
  41143. name: "Maximum",
  41144. height: math.unit(1500000000000, "lightyears")
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41150. {
  41151. front: {
  41152. height: math.unit(5 + 11/12, "feet"),
  41153. weight: math.unit(155, "lb"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/cai/front.svg",
  41157. extra: 1823/1702,
  41158. bottom: 32/1855
  41159. }
  41160. },
  41161. back: {
  41162. height: math.unit(5 + 11/12, "feet"),
  41163. weight: math.unit(155, "lb"),
  41164. name: "Back",
  41165. image: {
  41166. source: "./media/characters/cai/back.svg",
  41167. extra: 1809/1708,
  41168. bottom: 31/1840
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Normal",
  41175. height: math.unit(5 + 11/12, "feet"),
  41176. default: true
  41177. },
  41178. {
  41179. name: "Big",
  41180. height: math.unit(15, "feet")
  41181. },
  41182. {
  41183. name: "Macro",
  41184. height: math.unit(200, "feet")
  41185. },
  41186. ]
  41187. ))
  41188. characterMakers.push(() => makeCharacter(
  41189. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41190. {
  41191. front: {
  41192. height: math.unit(5 + 6/12, "feet"),
  41193. weight: math.unit(160, "lb"),
  41194. name: "Front",
  41195. image: {
  41196. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41197. extra: 1227/1174,
  41198. bottom: 37/1264
  41199. }
  41200. },
  41201. },
  41202. [
  41203. {
  41204. name: "Macro",
  41205. height: math.unit(444, "meters"),
  41206. default: true
  41207. },
  41208. ]
  41209. ))
  41210. characterMakers.push(() => makeCharacter(
  41211. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41212. {
  41213. front: {
  41214. height: math.unit(18 + 7/12, "feet"),
  41215. name: "Front",
  41216. image: {
  41217. source: "./media/characters/rex/front.svg",
  41218. extra: 1941/1807,
  41219. bottom: 66/2007
  41220. }
  41221. },
  41222. back: {
  41223. height: math.unit(18 + 7/12, "feet"),
  41224. name: "Back",
  41225. image: {
  41226. source: "./media/characters/rex/back.svg",
  41227. extra: 1937/1822,
  41228. bottom: 42/1979
  41229. }
  41230. },
  41231. boot: {
  41232. height: math.unit(3.45, "feet"),
  41233. name: "Boot",
  41234. image: {
  41235. source: "./media/characters/rex/boot.svg"
  41236. }
  41237. },
  41238. paw: {
  41239. height: math.unit(4.17, "feet"),
  41240. name: "Paw",
  41241. image: {
  41242. source: "./media/characters/rex/paw.svg"
  41243. }
  41244. },
  41245. head: {
  41246. height: math.unit(6.728, "feet"),
  41247. name: "Head",
  41248. image: {
  41249. source: "./media/characters/rex/head.svg"
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Nano",
  41256. height: math.unit(18 + 7/12, "feet")
  41257. },
  41258. {
  41259. name: "Micro",
  41260. height: math.unit(1.5, "megameters")
  41261. },
  41262. {
  41263. name: "Normal",
  41264. height: math.unit(440, "megameters"),
  41265. default: true
  41266. },
  41267. {
  41268. name: "Macro",
  41269. height: math.unit(2.5, "gigameters")
  41270. },
  41271. {
  41272. name: "Gigamacro",
  41273. height: math.unit(2, "galaxies")
  41274. },
  41275. ]
  41276. ))
  41277. characterMakers.push(() => makeCharacter(
  41278. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41279. {
  41280. side: {
  41281. height: math.unit(32, "feet"),
  41282. weight: math.unit(250000, "lb"),
  41283. name: "Side",
  41284. image: {
  41285. source: "./media/characters/silverwing/side.svg",
  41286. extra: 1100/1019,
  41287. bottom: 204/1304
  41288. }
  41289. },
  41290. },
  41291. [
  41292. {
  41293. name: "Normal",
  41294. height: math.unit(32, "feet"),
  41295. default: true
  41296. },
  41297. ]
  41298. ))
  41299. characterMakers.push(() => makeCharacter(
  41300. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41301. {
  41302. front: {
  41303. height: math.unit(6 + 6/12, "feet"),
  41304. weight: math.unit(350, "lb"),
  41305. name: "Front",
  41306. image: {
  41307. source: "./media/characters/tristan-hawthorne/front.svg",
  41308. extra: 1159/1124,
  41309. bottom: 37/1196
  41310. }
  41311. },
  41312. },
  41313. [
  41314. {
  41315. name: "Normal",
  41316. height: math.unit(6 + 6/12, "feet"),
  41317. default: true
  41318. },
  41319. ]
  41320. ))
  41321. characterMakers.push(() => makeCharacter(
  41322. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41323. {
  41324. front: {
  41325. height: math.unit(5 + 11/12, "feet"),
  41326. weight: math.unit(190, "lb"),
  41327. name: "Front",
  41328. image: {
  41329. source: "./media/characters/mizu/front.svg",
  41330. extra: 1988/1788,
  41331. bottom: 14/2002
  41332. }
  41333. },
  41334. },
  41335. [
  41336. {
  41337. name: "Normal",
  41338. height: math.unit(5 + 11/12, "feet"),
  41339. default: true
  41340. },
  41341. ]
  41342. ))
  41343. characterMakers.push(() => makeCharacter(
  41344. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41345. {
  41346. front: {
  41347. height: math.unit(6, "feet"),
  41348. name: "Front",
  41349. image: {
  41350. source: "./media/characters/moonlight-rose-terra/front.svg",
  41351. extra: 1434/1252,
  41352. bottom: 48/1482
  41353. }
  41354. },
  41355. },
  41356. [
  41357. {
  41358. name: "TRAPPIST-1D",
  41359. height: math.unit(4992*2, "km")
  41360. },
  41361. {
  41362. name: "Earth",
  41363. height: math.unit(6367*2, "km"),
  41364. default: true
  41365. },
  41366. {
  41367. name: "Kepler-22b",
  41368. height: math.unit(15282*2, "km")
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(6, "feet"),
  41377. name: "Front",
  41378. image: {
  41379. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41380. extra: 1851/1712,
  41381. bottom: 0/1851
  41382. }
  41383. },
  41384. },
  41385. [
  41386. {
  41387. name: "Enceladus",
  41388. height: math.unit(513*2, "km")
  41389. },
  41390. {
  41391. name: "Europe",
  41392. height: math.unit(1560*2, "km")
  41393. },
  41394. {
  41395. name: "Neptune",
  41396. height: math.unit(24622*2, "km"),
  41397. default: true
  41398. },
  41399. {
  41400. name: "CoRoT-9b",
  41401. height: math.unit(75067*2, "km")
  41402. },
  41403. ]
  41404. ))
  41405. characterMakers.push(() => makeCharacter(
  41406. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41407. {
  41408. front: {
  41409. height: math.unit(6, "feet"),
  41410. name: "Front",
  41411. image: {
  41412. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41413. extra: 1367/1286,
  41414. bottom: 55/1422
  41415. }
  41416. },
  41417. },
  41418. [
  41419. {
  41420. name: "Saturn",
  41421. height: math.unit(58232*2, "km")
  41422. },
  41423. {
  41424. name: "Jupiter",
  41425. height: math.unit(69911*2, "km"),
  41426. default: true
  41427. },
  41428. {
  41429. name: "HD 100546 b",
  41430. height: math.unit(482938, "km")
  41431. },
  41432. ]
  41433. ))
  41434. characterMakers.push(() => makeCharacter(
  41435. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41436. {
  41437. front: {
  41438. height: math.unit(1.7, "feet"),
  41439. weight: math.unit(50, "lb"),
  41440. name: "Front",
  41441. image: {
  41442. source: "./media/characters/dechroma/front.svg",
  41443. extra: 1095/859,
  41444. bottom: 64/1159
  41445. }
  41446. },
  41447. },
  41448. [
  41449. {
  41450. name: "Normal",
  41451. height: math.unit(1.7, "feet"),
  41452. default: true
  41453. },
  41454. ]
  41455. ))
  41456. characterMakers.push(() => makeCharacter(
  41457. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41458. {
  41459. side: {
  41460. height: math.unit(30, "feet"),
  41461. name: "Side",
  41462. image: {
  41463. source: "./media/characters/veluren-thanazel/side.svg",
  41464. extra: 1611/633,
  41465. bottom: 118/1729
  41466. }
  41467. },
  41468. front: {
  41469. height: math.unit(30, "feet"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/veluren-thanazel/front.svg",
  41473. extra: 1486/636,
  41474. bottom: 238/1724
  41475. }
  41476. },
  41477. head: {
  41478. height: math.unit(21.4, "feet"),
  41479. name: "Head",
  41480. image: {
  41481. source: "./media/characters/veluren-thanazel/head.svg"
  41482. }
  41483. },
  41484. genitals: {
  41485. height: math.unit(19.4, "feet"),
  41486. name: "Genitals",
  41487. image: {
  41488. source: "./media/characters/veluren-thanazel/genitals.svg"
  41489. }
  41490. },
  41491. },
  41492. [
  41493. {
  41494. name: "Social",
  41495. height: math.unit(6, "feet")
  41496. },
  41497. {
  41498. name: "Play",
  41499. height: math.unit(12, "feet")
  41500. },
  41501. {
  41502. name: "True",
  41503. height: math.unit(30, "feet"),
  41504. default: true
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(7 + 6/12, "feet"),
  41513. weight: math.unit(500, "kg"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/arcturas/front.svg",
  41517. extra: 1700/1500,
  41518. bottom: 145/1845
  41519. }
  41520. },
  41521. },
  41522. [
  41523. {
  41524. name: "Normal",
  41525. height: math.unit(7 + 6/12, "feet"),
  41526. default: true
  41527. },
  41528. ]
  41529. ))
  41530. characterMakers.push(() => makeCharacter(
  41531. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41532. {
  41533. side: {
  41534. height: math.unit(6, "feet"),
  41535. weight: math.unit(2, "tons"),
  41536. name: "Side",
  41537. image: {
  41538. source: "./media/characters/vitaen/side.svg",
  41539. extra: 1157/617,
  41540. bottom: 122/1279
  41541. }
  41542. },
  41543. },
  41544. [
  41545. {
  41546. name: "Normal",
  41547. height: math.unit(6, "feet"),
  41548. default: true
  41549. },
  41550. ]
  41551. ))
  41552. characterMakers.push(() => makeCharacter(
  41553. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41554. {
  41555. front: {
  41556. height: math.unit(19, "feet"),
  41557. name: "Front",
  41558. image: {
  41559. source: "./media/characters/fia-dreamweaver/front.svg",
  41560. extra: 1630/1504,
  41561. bottom: 25/1655
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(19, "feet"),
  41569. default: true
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41575. {
  41576. front: {
  41577. height: math.unit(5 + 4/12, "feet"),
  41578. name: "Front",
  41579. image: {
  41580. source: "./media/characters/artan/front.svg",
  41581. extra: 1618/1535,
  41582. bottom: 46/1664
  41583. }
  41584. },
  41585. back: {
  41586. height: math.unit(5 + 4/12, "feet"),
  41587. name: "Back",
  41588. image: {
  41589. source: "./media/characters/artan/back.svg",
  41590. extra: 1618/1543,
  41591. bottom: 31/1649
  41592. }
  41593. },
  41594. },
  41595. [
  41596. {
  41597. name: "Normal",
  41598. height: math.unit(5 + 4/12, "feet"),
  41599. default: true
  41600. },
  41601. ]
  41602. ))
  41603. characterMakers.push(() => makeCharacter(
  41604. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41605. {
  41606. side: {
  41607. height: math.unit(182, "cm"),
  41608. weight: math.unit(1000, "lb"),
  41609. name: "Side",
  41610. image: {
  41611. source: "./media/characters/silver-dragon/side.svg",
  41612. extra: 710/287,
  41613. bottom: 88/798
  41614. }
  41615. },
  41616. },
  41617. [
  41618. {
  41619. name: "Normal",
  41620. height: math.unit(182, "cm"),
  41621. default: true
  41622. },
  41623. ]
  41624. ))
  41625. characterMakers.push(() => makeCharacter(
  41626. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41627. {
  41628. side: {
  41629. height: math.unit(6 + 6/12, "feet"),
  41630. weight: math.unit(1.5, "tons"),
  41631. name: "Side",
  41632. image: {
  41633. source: "./media/characters/zephyr/side.svg",
  41634. extra: 1433/586,
  41635. bottom: 109/1542
  41636. }
  41637. },
  41638. },
  41639. [
  41640. {
  41641. name: "Normal",
  41642. height: math.unit(6 + 6/12, "feet"),
  41643. default: true
  41644. },
  41645. ]
  41646. ))
  41647. characterMakers.push(() => makeCharacter(
  41648. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41649. {
  41650. side: {
  41651. height: math.unit(1, "feet"),
  41652. name: "Side",
  41653. image: {
  41654. source: "./media/characters/vixye/side.svg",
  41655. extra: 632/541,
  41656. bottom: 0/632
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(1, "feet"),
  41664. default: true
  41665. },
  41666. {
  41667. name: "True",
  41668. height: math.unit(1e15, "multiverses")
  41669. },
  41670. ]
  41671. ))
  41672. characterMakers.push(() => makeCharacter(
  41673. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41674. {
  41675. front: {
  41676. height: math.unit(8 + 2/12, "feet"),
  41677. weight: math.unit(650, "lb"),
  41678. name: "Front",
  41679. image: {
  41680. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41681. extra: 1174/1137,
  41682. bottom: 82/1256
  41683. }
  41684. },
  41685. back: {
  41686. height: math.unit(8 + 2/12, "feet"),
  41687. weight: math.unit(650, "lb"),
  41688. name: "Back",
  41689. image: {
  41690. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41691. extra: 1204/1157,
  41692. bottom: 46/1250
  41693. }
  41694. },
  41695. },
  41696. [
  41697. {
  41698. name: "Wildform",
  41699. height: math.unit(8 + 2/12, "feet"),
  41700. default: true
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41706. {
  41707. front: {
  41708. height: math.unit(18, "feet"),
  41709. name: "Front",
  41710. image: {
  41711. source: "./media/characters/cyphin/front.svg",
  41712. extra: 970/886,
  41713. bottom: 42/1012
  41714. }
  41715. },
  41716. back: {
  41717. height: math.unit(18, "feet"),
  41718. name: "Back",
  41719. image: {
  41720. source: "./media/characters/cyphin/back.svg",
  41721. extra: 1009/894,
  41722. bottom: 24/1033
  41723. }
  41724. },
  41725. head: {
  41726. height: math.unit(5.05, "feet"),
  41727. name: "Head",
  41728. image: {
  41729. source: "./media/characters/cyphin/head.svg"
  41730. }
  41731. },
  41732. tailbud: {
  41733. height: math.unit(5, "feet"),
  41734. name: "Tailbud",
  41735. image: {
  41736. source: "./media/characters/cyphin/tailbud.svg"
  41737. }
  41738. },
  41739. },
  41740. [
  41741. ]
  41742. ))
  41743. characterMakers.push(() => makeCharacter(
  41744. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41745. {
  41746. side: {
  41747. height: math.unit(10, "feet"),
  41748. weight: math.unit(6, "tons"),
  41749. name: "Side",
  41750. image: {
  41751. source: "./media/characters/raijin/side.svg",
  41752. extra: 1529/613,
  41753. bottom: 337/1866
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Normal",
  41760. height: math.unit(10, "feet"),
  41761. default: true
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41767. {
  41768. side: {
  41769. height: math.unit(9, "feet"),
  41770. name: "Side",
  41771. image: {
  41772. source: "./media/characters/nilghais/side.svg",
  41773. extra: 1047/744,
  41774. bottom: 91/1138
  41775. }
  41776. },
  41777. head: {
  41778. height: math.unit(3.14, "feet"),
  41779. name: "Head",
  41780. image: {
  41781. source: "./media/characters/nilghais/head.svg"
  41782. }
  41783. },
  41784. mouth: {
  41785. height: math.unit(4.6, "feet"),
  41786. name: "Mouth",
  41787. image: {
  41788. source: "./media/characters/nilghais/mouth.svg"
  41789. }
  41790. },
  41791. wings: {
  41792. height: math.unit(24, "feet"),
  41793. name: "Wings",
  41794. image: {
  41795. source: "./media/characters/nilghais/wings.svg"
  41796. }
  41797. },
  41798. ass: {
  41799. height: math.unit(6.12, "feet"),
  41800. name: "Ass",
  41801. image: {
  41802. source: "./media/characters/nilghais/ass.svg"
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Normal",
  41809. height: math.unit(9, "feet"),
  41810. default: true
  41811. },
  41812. ]
  41813. ))
  41814. characterMakers.push(() => makeCharacter(
  41815. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41816. {
  41817. regular: {
  41818. height: math.unit(16 + 2/12, "feet"),
  41819. weight: math.unit(2300, "lb"),
  41820. name: "Regular",
  41821. image: {
  41822. source: "./media/characters/zolgar/regular.svg",
  41823. extra: 1246/1004,
  41824. bottom: 124/1370
  41825. }
  41826. },
  41827. boxers: {
  41828. height: math.unit(16 + 2/12, "feet"),
  41829. weight: math.unit(2300, "lb"),
  41830. name: "Boxers",
  41831. image: {
  41832. source: "./media/characters/zolgar/boxers.svg",
  41833. extra: 1246/1004,
  41834. bottom: 124/1370
  41835. }
  41836. },
  41837. armored: {
  41838. height: math.unit(16 + 2/12, "feet"),
  41839. weight: math.unit(2300, "lb"),
  41840. name: "Armored",
  41841. image: {
  41842. source: "./media/characters/zolgar/armored.svg",
  41843. extra: 1246/1004,
  41844. bottom: 124/1370
  41845. }
  41846. },
  41847. goth: {
  41848. height: math.unit(16 + 2/12, "feet"),
  41849. weight: math.unit(2300, "lb"),
  41850. name: "Goth",
  41851. image: {
  41852. source: "./media/characters/zolgar/goth.svg",
  41853. extra: 1246/1004,
  41854. bottom: 124/1370
  41855. }
  41856. },
  41857. },
  41858. [
  41859. {
  41860. name: "Shrunken Down",
  41861. height: math.unit(9 + 2/12, "feet")
  41862. },
  41863. {
  41864. name: "Normal",
  41865. height: math.unit(16 + 2/12, "feet"),
  41866. default: true
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(6, "feet"),
  41875. weight: math.unit(168, "lb"),
  41876. name: "Front",
  41877. image: {
  41878. source: "./media/characters/luca/front.svg",
  41879. extra: 841/667,
  41880. bottom: 102/943
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Normal",
  41887. height: math.unit(6, "feet"),
  41888. default: true
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41894. {
  41895. side: {
  41896. height: math.unit(7 + 3/12, "feet"),
  41897. weight: math.unit(312, "lb"),
  41898. name: "Side",
  41899. image: {
  41900. source: "./media/characters/zezo/side.svg",
  41901. extra: 1192/1067,
  41902. bottom: 63/1255
  41903. }
  41904. },
  41905. },
  41906. [
  41907. {
  41908. name: "Normal",
  41909. height: math.unit(7 + 3/12, "feet"),
  41910. default: true
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(5 + 5/12, "feet"),
  41919. weight: math.unit(170, "lb"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/mayso/front.svg",
  41923. extra: 1215/1108,
  41924. bottom: 16/1231
  41925. }
  41926. },
  41927. },
  41928. [
  41929. {
  41930. name: "Normal",
  41931. height: math.unit(5 + 5/12, "feet"),
  41932. default: true
  41933. },
  41934. ]
  41935. ))
  41936. characterMakers.push(() => makeCharacter(
  41937. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41938. {
  41939. front: {
  41940. height: math.unit(4 + 3/12, "feet"),
  41941. weight: math.unit(80, "lb"),
  41942. name: "Front",
  41943. image: {
  41944. source: "./media/characters/hess/front.svg",
  41945. extra: 1200/1123,
  41946. bottom: 16/1216
  41947. }
  41948. },
  41949. },
  41950. [
  41951. {
  41952. name: "Normal",
  41953. height: math.unit(4 + 3/12, "feet"),
  41954. default: true
  41955. },
  41956. ]
  41957. ))
  41958. characterMakers.push(() => makeCharacter(
  41959. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41960. {
  41961. front: {
  41962. height: math.unit(1.9, "meters"),
  41963. name: "Front",
  41964. image: {
  41965. source: "./media/characters/ashgar/front.svg",
  41966. extra: 1177/1146,
  41967. bottom: 99/1276
  41968. }
  41969. },
  41970. back: {
  41971. height: math.unit(1.9, "meters"),
  41972. name: "Back",
  41973. image: {
  41974. source: "./media/characters/ashgar/back.svg",
  41975. extra: 1201/1183,
  41976. bottom: 53/1254
  41977. }
  41978. },
  41979. feral: {
  41980. height: math.unit(1.4, "meters"),
  41981. name: "Feral",
  41982. image: {
  41983. source: "./media/characters/ashgar/feral.svg",
  41984. extra: 370/345,
  41985. bottom: 45/415
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Normal",
  41992. height: math.unit(1.9, "meters"),
  41993. default: true
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41999. {
  42000. regular: {
  42001. height: math.unit(6, "feet"),
  42002. weight: math.unit(220, "lb"),
  42003. name: "Regular",
  42004. image: {
  42005. source: "./media/characters/phillip/regular.svg",
  42006. extra: 1373/1277,
  42007. bottom: 75/1448
  42008. }
  42009. },
  42010. dressed: {
  42011. height: math.unit(6, "feet"),
  42012. weight: math.unit(220, "lb"),
  42013. name: "Dressed",
  42014. image: {
  42015. source: "./media/characters/phillip/dressed.svg",
  42016. extra: 1373/1277,
  42017. bottom: 75/1448
  42018. }
  42019. },
  42020. paw: {
  42021. height: math.unit(1.44, "feet"),
  42022. name: "Paw",
  42023. image: {
  42024. source: "./media/characters/phillip/paw.svg"
  42025. }
  42026. },
  42027. },
  42028. [
  42029. {
  42030. name: "Normal",
  42031. height: math.unit(6, "feet"),
  42032. default: true
  42033. },
  42034. ]
  42035. ))
  42036. characterMakers.push(() => makeCharacter(
  42037. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42038. {
  42039. side: {
  42040. height: math.unit(42, "feet"),
  42041. name: "Side",
  42042. image: {
  42043. source: "./media/characters/uvula/side.svg",
  42044. extra: 683/586,
  42045. bottom: 60/743
  42046. }
  42047. },
  42048. front: {
  42049. height: math.unit(42, "feet"),
  42050. name: "Front",
  42051. image: {
  42052. source: "./media/characters/uvula/front.svg",
  42053. extra: 705/613,
  42054. bottom: 54/759
  42055. }
  42056. },
  42057. maw: {
  42058. height: math.unit(23.5, "feet"),
  42059. name: "Maw",
  42060. image: {
  42061. source: "./media/characters/uvula/maw.svg"
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Original Size",
  42068. height: math.unit(14, "inches")
  42069. },
  42070. {
  42071. name: "Human Size",
  42072. height: math.unit(6, "feet")
  42073. },
  42074. {
  42075. name: "Big",
  42076. height: math.unit(42, "feet"),
  42077. default: true
  42078. },
  42079. {
  42080. name: "Bigger",
  42081. height: math.unit(100, "feet")
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42087. {
  42088. front: {
  42089. height: math.unit(5 + 11/12, "feet"),
  42090. name: "Front",
  42091. image: {
  42092. source: "./media/characters/lannah/front.svg",
  42093. extra: 1208/1113,
  42094. bottom: 97/1305
  42095. }
  42096. },
  42097. },
  42098. [
  42099. {
  42100. name: "Normal",
  42101. height: math.unit(5 + 11/12, "feet"),
  42102. default: true
  42103. },
  42104. ]
  42105. ))
  42106. characterMakers.push(() => makeCharacter(
  42107. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42108. {
  42109. front: {
  42110. height: math.unit(6 + 3/12, "feet"),
  42111. weight: math.unit(3.5, "tons"),
  42112. name: "Front",
  42113. image: {
  42114. source: "./media/characters/emberflame/front.svg",
  42115. extra: 1198/672,
  42116. bottom: 82/1280
  42117. }
  42118. },
  42119. side: {
  42120. height: math.unit(6 + 3/12, "feet"),
  42121. weight: math.unit(3.5, "tons"),
  42122. name: "Side",
  42123. image: {
  42124. source: "./media/characters/emberflame/side.svg",
  42125. extra: 938/527,
  42126. bottom: 56/994
  42127. }
  42128. },
  42129. },
  42130. [
  42131. {
  42132. name: "Normal",
  42133. height: math.unit(6 + 3/12, "feet"),
  42134. default: true
  42135. },
  42136. ]
  42137. ))
  42138. characterMakers.push(() => makeCharacter(
  42139. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42140. {
  42141. side: {
  42142. height: math.unit(17.5, "feet"),
  42143. weight: math.unit(35, "tons"),
  42144. name: "Side",
  42145. image: {
  42146. source: "./media/characters/sophie-ambrose/side.svg",
  42147. extra: 1573/1242,
  42148. bottom: 71/1644
  42149. }
  42150. },
  42151. maw: {
  42152. height: math.unit(7.4, "feet"),
  42153. name: "Maw",
  42154. image: {
  42155. source: "./media/characters/sophie-ambrose/maw.svg"
  42156. }
  42157. },
  42158. },
  42159. [
  42160. {
  42161. name: "Normal",
  42162. height: math.unit(17.5, "feet"),
  42163. default: true
  42164. },
  42165. ]
  42166. ))
  42167. characterMakers.push(() => makeCharacter(
  42168. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42169. {
  42170. front: {
  42171. height: math.unit(280, "feet"),
  42172. weight: math.unit(550, "tons"),
  42173. name: "Front",
  42174. image: {
  42175. source: "./media/characters/king-mugi/front.svg",
  42176. extra: 1102/947,
  42177. bottom: 104/1206
  42178. }
  42179. },
  42180. },
  42181. [
  42182. {
  42183. name: "King Mugi",
  42184. height: math.unit(280, "feet"),
  42185. default: true
  42186. },
  42187. ]
  42188. ))
  42189. characterMakers.push(() => makeCharacter(
  42190. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42191. {
  42192. front: {
  42193. height: math.unit(64, "meters"),
  42194. name: "Front",
  42195. image: {
  42196. source: "./media/characters/nova-fox/front.svg",
  42197. extra: 1310/1246,
  42198. bottom: 65/1375
  42199. }
  42200. },
  42201. },
  42202. [
  42203. {
  42204. name: "Macro",
  42205. height: math.unit(64, "meters"),
  42206. default: true
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42212. {
  42213. front: {
  42214. height: math.unit(6 + 3/12, "feet"),
  42215. weight: math.unit(170, "lb"),
  42216. name: "Front",
  42217. image: {
  42218. source: "./media/characters/sam-bat/front.svg",
  42219. extra: 1601/1411,
  42220. bottom: 125/1726
  42221. }
  42222. },
  42223. back: {
  42224. height: math.unit(6 + 3/12, "feet"),
  42225. weight: math.unit(170, "lb"),
  42226. name: "Back",
  42227. image: {
  42228. source: "./media/characters/sam-bat/back.svg",
  42229. extra: 1577/1405,
  42230. bottom: 58/1635
  42231. }
  42232. },
  42233. },
  42234. [
  42235. {
  42236. name: "Normal",
  42237. height: math.unit(6 + 3/12, "feet"),
  42238. default: true
  42239. },
  42240. ]
  42241. ))
  42242. characterMakers.push(() => makeCharacter(
  42243. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42244. {
  42245. front: {
  42246. height: math.unit(59, "feet"),
  42247. weight: math.unit(40000, "lb"),
  42248. name: "Front",
  42249. image: {
  42250. source: "./media/characters/inari/front.svg",
  42251. extra: 1884/1350,
  42252. bottom: 95/1979
  42253. }
  42254. },
  42255. },
  42256. [
  42257. {
  42258. name: "Gigantamax",
  42259. height: math.unit(59, "feet"),
  42260. default: true
  42261. },
  42262. ]
  42263. ))
  42264. characterMakers.push(() => makeCharacter(
  42265. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42266. {
  42267. front: {
  42268. height: math.unit(5 + 8/12, "feet"),
  42269. name: "Front",
  42270. image: {
  42271. source: "./media/characters/elizabeth/front.svg",
  42272. extra: 1395/1298,
  42273. bottom: 54/1449
  42274. }
  42275. },
  42276. mouth: {
  42277. height: math.unit(1.97, "feet"),
  42278. name: "Mouth",
  42279. image: {
  42280. source: "./media/characters/elizabeth/mouth.svg"
  42281. }
  42282. },
  42283. foot: {
  42284. height: math.unit(1.17, "feet"),
  42285. name: "Foot",
  42286. image: {
  42287. source: "./media/characters/elizabeth/foot.svg"
  42288. }
  42289. },
  42290. },
  42291. [
  42292. {
  42293. name: "Normal",
  42294. height: math.unit(5 + 8/12, "feet"),
  42295. default: true
  42296. },
  42297. {
  42298. name: "Minimacro",
  42299. height: math.unit(18, "feet")
  42300. },
  42301. {
  42302. name: "Macro",
  42303. height: math.unit(180, "feet")
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(5 + 2/12, "feet"),
  42312. name: "Front",
  42313. image: {
  42314. source: "./media/characters/october-gossamer/front.svg",
  42315. extra: 505/454,
  42316. bottom: 7/512
  42317. }
  42318. },
  42319. back: {
  42320. height: math.unit(5 + 2/12, "feet"),
  42321. name: "Back",
  42322. image: {
  42323. source: "./media/characters/october-gossamer/back.svg",
  42324. extra: 501/454,
  42325. bottom: 11/512
  42326. }
  42327. },
  42328. },
  42329. [
  42330. {
  42331. name: "Normal",
  42332. height: math.unit(5 + 2/12, "feet"),
  42333. default: true
  42334. },
  42335. ]
  42336. ))
  42337. characterMakers.push(() => makeCharacter(
  42338. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42339. {
  42340. front: {
  42341. height: math.unit(5, "feet"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/epiglottis/front.svg",
  42345. extra: 923/849,
  42346. bottom: 17/940
  42347. }
  42348. },
  42349. },
  42350. [
  42351. {
  42352. name: "Original Size",
  42353. height: math.unit(10, "inches")
  42354. },
  42355. {
  42356. name: "Human Size",
  42357. height: math.unit(5, "feet"),
  42358. default: true
  42359. },
  42360. {
  42361. name: "Big",
  42362. height: math.unit(25, "feet")
  42363. },
  42364. {
  42365. name: "Bigger",
  42366. height: math.unit(50, "feet")
  42367. },
  42368. {
  42369. name: "oh lawd",
  42370. height: math.unit(75, "feet")
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42376. {
  42377. front: {
  42378. height: math.unit(2 + 4/12, "feet"),
  42379. weight: math.unit(60, "lb"),
  42380. name: "Front",
  42381. image: {
  42382. source: "./media/characters/lerm/front.svg",
  42383. extra: 796/790,
  42384. bottom: 79/875
  42385. }
  42386. },
  42387. },
  42388. [
  42389. {
  42390. name: "Normal",
  42391. height: math.unit(2 + 4/12, "feet"),
  42392. default: true
  42393. },
  42394. ]
  42395. ))
  42396. characterMakers.push(() => makeCharacter(
  42397. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42398. {
  42399. front: {
  42400. height: math.unit(5.5, "feet"),
  42401. weight: math.unit(130, "lb"),
  42402. name: "Front",
  42403. image: {
  42404. source: "./media/characters/xena-nebadon/front.svg",
  42405. extra: 1828/1730,
  42406. bottom: 79/1907
  42407. }
  42408. },
  42409. },
  42410. [
  42411. {
  42412. name: "Tiny Puppy",
  42413. height: math.unit(3, "inches")
  42414. },
  42415. {
  42416. name: "Normal",
  42417. height: math.unit(5.5, "feet"),
  42418. default: true
  42419. },
  42420. {
  42421. name: "Lotta Lady",
  42422. height: math.unit(12, "feet")
  42423. },
  42424. {
  42425. name: "Pretty Big",
  42426. height: math.unit(100, "feet")
  42427. },
  42428. {
  42429. name: "Big",
  42430. height: math.unit(500, "feet")
  42431. },
  42432. {
  42433. name: "Skyscraper Toys",
  42434. height: math.unit(2500, "feet")
  42435. },
  42436. {
  42437. name: "Plane Catcher",
  42438. height: math.unit(8, "miles")
  42439. },
  42440. {
  42441. name: "Planet Toys",
  42442. height: math.unit(15, "earths")
  42443. },
  42444. {
  42445. name: "Stardust",
  42446. height: math.unit(0.25, "galaxies")
  42447. },
  42448. {
  42449. name: "Snacks",
  42450. height: math.unit(70, "universes")
  42451. },
  42452. ]
  42453. ))
  42454. characterMakers.push(() => makeCharacter(
  42455. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42456. {
  42457. front: {
  42458. height: math.unit(1.6, "meters"),
  42459. weight: math.unit(60, "kg"),
  42460. name: "Front",
  42461. image: {
  42462. source: "./media/characters/bounty/front.svg",
  42463. extra: 1426/1308,
  42464. bottom: 15/1441
  42465. }
  42466. },
  42467. back: {
  42468. height: math.unit(1.6, "meters"),
  42469. weight: math.unit(60, "kg"),
  42470. name: "Back",
  42471. image: {
  42472. source: "./media/characters/bounty/back.svg",
  42473. extra: 1417/1307,
  42474. bottom: 8/1425
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Normal",
  42481. height: math.unit(1.6, "meters"),
  42482. default: true
  42483. },
  42484. {
  42485. name: "Macro",
  42486. height: math.unit(300, "meters")
  42487. },
  42488. ]
  42489. ))
  42490. characterMakers.push(() => makeCharacter(
  42491. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42492. {
  42493. front: {
  42494. height: math.unit(2 + 8/12, "feet"),
  42495. weight: math.unit(15, "lb"),
  42496. name: "Front",
  42497. image: {
  42498. source: "./media/characters/mochi/front.svg",
  42499. extra: 1022/852,
  42500. bottom: 435/1457
  42501. }
  42502. },
  42503. back: {
  42504. height: math.unit(2 + 8/12, "feet"),
  42505. weight: math.unit(15, "lb"),
  42506. name: "Back",
  42507. image: {
  42508. source: "./media/characters/mochi/back.svg",
  42509. extra: 1335/1119,
  42510. bottom: 39/1374
  42511. }
  42512. },
  42513. bird: {
  42514. height: math.unit(2 + 8/12, "feet"),
  42515. weight: math.unit(15, "lb"),
  42516. name: "Bird",
  42517. image: {
  42518. source: "./media/characters/mochi/bird.svg",
  42519. extra: 1251/1113,
  42520. bottom: 178/1429
  42521. }
  42522. },
  42523. kaiju: {
  42524. height: math.unit(154, "feet"),
  42525. weight: math.unit(1e7, "lb"),
  42526. name: "Kaiju",
  42527. image: {
  42528. source: "./media/characters/mochi/kaiju.svg",
  42529. extra: 460/324,
  42530. bottom: 40/500
  42531. }
  42532. },
  42533. head: {
  42534. height: math.unit(1.21, "feet"),
  42535. name: "Head",
  42536. image: {
  42537. source: "./media/characters/mochi/head.svg"
  42538. }
  42539. },
  42540. alternateTail: {
  42541. height: math.unit(2 + 8/12, "feet"),
  42542. weight: math.unit(45, "lb"),
  42543. name: "Alternate Tail",
  42544. image: {
  42545. source: "./media/characters/mochi/alternate-tail.svg",
  42546. extra: 139/76,
  42547. bottom: 45/184
  42548. }
  42549. },
  42550. },
  42551. [
  42552. {
  42553. name: "Micro",
  42554. height: math.unit(2, "inches")
  42555. },
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(2 + 8/12, "feet"),
  42559. default: true
  42560. },
  42561. {
  42562. name: "Macro",
  42563. height: math.unit(106, "feet")
  42564. },
  42565. ]
  42566. ))
  42567. characterMakers.push(() => makeCharacter(
  42568. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42569. {
  42570. front: {
  42571. height: math.unit(5.67, "feet"),
  42572. weight: math.unit(135, "lb"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/sarel/front.svg",
  42576. extra: 865/788,
  42577. bottom: 97/962
  42578. }
  42579. },
  42580. back: {
  42581. height: math.unit(5.67, "feet"),
  42582. weight: math.unit(135, "lb"),
  42583. name: "Back",
  42584. image: {
  42585. source: "./media/characters/sarel/back.svg",
  42586. extra: 857/777,
  42587. bottom: 32/889
  42588. }
  42589. },
  42590. chozoan: {
  42591. height: math.unit(5.67, "feet"),
  42592. weight: math.unit(135, "lb"),
  42593. name: "Chozoan",
  42594. image: {
  42595. source: "./media/characters/sarel/chozoan.svg",
  42596. extra: 865/788,
  42597. bottom: 97/962
  42598. }
  42599. },
  42600. current: {
  42601. height: math.unit(5.67, "feet"),
  42602. weight: math.unit(135, "lb"),
  42603. name: "Current",
  42604. image: {
  42605. source: "./media/characters/sarel/current.svg",
  42606. extra: 865/788,
  42607. bottom: 97/962
  42608. }
  42609. },
  42610. head: {
  42611. height: math.unit(1.77, "feet"),
  42612. name: "Head",
  42613. image: {
  42614. source: "./media/characters/sarel/head.svg"
  42615. }
  42616. },
  42617. claws: {
  42618. height: math.unit(1.8, "feet"),
  42619. name: "Claws",
  42620. image: {
  42621. source: "./media/characters/sarel/claws.svg"
  42622. }
  42623. },
  42624. clawsAlt: {
  42625. height: math.unit(1.8, "feet"),
  42626. name: "Claws-alt",
  42627. image: {
  42628. source: "./media/characters/sarel/claws-alt.svg"
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Normal",
  42635. height: math.unit(5.67, "feet"),
  42636. default: true
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(5500, "feet"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/alyonia/front.svg",
  42648. extra: 1200/1135,
  42649. bottom: 29/1229
  42650. }
  42651. },
  42652. back: {
  42653. height: math.unit(5500, "feet"),
  42654. name: "Back",
  42655. image: {
  42656. source: "./media/characters/alyonia/back.svg",
  42657. extra: 1205/1138,
  42658. bottom: 10/1215
  42659. }
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Small",
  42665. height: math.unit(10, "feet")
  42666. },
  42667. {
  42668. name: "Macro",
  42669. height: math.unit(500, "feet")
  42670. },
  42671. {
  42672. name: "Mega Macro",
  42673. height: math.unit(5500, "feet"),
  42674. default: true
  42675. },
  42676. {
  42677. name: "Mega Macro+",
  42678. height: math.unit(500000, "feet")
  42679. },
  42680. {
  42681. name: "Giga Macro",
  42682. height: math.unit(3000, "miles")
  42683. },
  42684. {
  42685. name: "Tera Macro",
  42686. height: math.unit(2.8e6, "miles")
  42687. },
  42688. {
  42689. name: "Galactic",
  42690. height: math.unit(120000, "lightyears")
  42691. },
  42692. ]
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42696. {
  42697. werewolf: {
  42698. height: math.unit(8, "feet"),
  42699. weight: math.unit(425, "lb"),
  42700. name: "Werewolf",
  42701. image: {
  42702. source: "./media/characters/autumn/werewolf.svg",
  42703. extra: 2154/2031,
  42704. bottom: 160/2314
  42705. }
  42706. },
  42707. human: {
  42708. height: math.unit(5 + 8/12, "feet"),
  42709. weight: math.unit(150, "lb"),
  42710. name: "Human",
  42711. image: {
  42712. source: "./media/characters/autumn/human.svg",
  42713. extra: 1200/1149,
  42714. bottom: 30/1230
  42715. }
  42716. },
  42717. },
  42718. [
  42719. {
  42720. name: "Normal",
  42721. height: math.unit(8, "feet"),
  42722. default: true
  42723. },
  42724. ]
  42725. ))
  42726. characterMakers.push(() => makeCharacter(
  42727. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42728. {
  42729. front: {
  42730. height: math.unit(8 + 5/12, "feet"),
  42731. weight: math.unit(825, "lb"),
  42732. name: "Front",
  42733. image: {
  42734. source: "./media/characters/cobalt-charizard/front.svg",
  42735. extra: 1268/1155,
  42736. bottom: 122/1390
  42737. }
  42738. },
  42739. side: {
  42740. height: math.unit(8 + 5/12, "feet"),
  42741. weight: math.unit(825, "lb"),
  42742. name: "Side",
  42743. image: {
  42744. source: "./media/characters/cobalt-charizard/side.svg",
  42745. extra: 1348/1257,
  42746. bottom: 58/1406
  42747. }
  42748. },
  42749. gMax: {
  42750. height: math.unit(134 + 11/12, "feet"),
  42751. name: "G-Max",
  42752. image: {
  42753. source: "./media/characters/cobalt-charizard/g-max.svg",
  42754. extra: 1835/1541,
  42755. bottom: 151/1986
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(8 + 5/12, "feet"),
  42763. default: true
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(6 + 3/12, "feet"),
  42772. weight: math.unit(210, "lb"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/stella/front.svg",
  42776. extra: 3549/3335,
  42777. bottom: 51/3600
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Normal",
  42784. height: math.unit(6 + 3/12, "feet"),
  42785. default: true
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(5, "feet"),
  42794. weight: math.unit(90, "lb"),
  42795. name: "Front",
  42796. image: {
  42797. source: "./media/characters/riley-bishop/front.svg",
  42798. extra: 1450/1428,
  42799. bottom: 152/1602
  42800. }
  42801. },
  42802. },
  42803. [
  42804. {
  42805. name: "Normal",
  42806. height: math.unit(5, "feet"),
  42807. default: true
  42808. },
  42809. ]
  42810. ))
  42811. characterMakers.push(() => makeCharacter(
  42812. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42813. {
  42814. side: {
  42815. height: math.unit(8 + 2/12, "feet"),
  42816. weight: math.unit(500, "kg"),
  42817. name: "Side",
  42818. image: {
  42819. source: "./media/characters/theo-arcanine/side.svg",
  42820. extra: 1342/1074,
  42821. bottom: 111/1453
  42822. }
  42823. },
  42824. },
  42825. [
  42826. {
  42827. name: "Normal",
  42828. height: math.unit(8 + 2/12, "feet"),
  42829. default: true
  42830. },
  42831. ]
  42832. ))
  42833. characterMakers.push(() => makeCharacter(
  42834. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42835. {
  42836. front: {
  42837. height: math.unit(4, "feet"),
  42838. name: "Front",
  42839. image: {
  42840. source: "./media/characters/kali/front.svg",
  42841. extra: 1921/1357,
  42842. bottom: 70/1991
  42843. }
  42844. },
  42845. },
  42846. [
  42847. {
  42848. name: "Normal",
  42849. height: math.unit(4, "feet"),
  42850. default: true
  42851. },
  42852. {
  42853. name: "Macro",
  42854. height: math.unit(32, "meters")
  42855. },
  42856. {
  42857. name: "Macro+",
  42858. height: math.unit(150, "meters")
  42859. },
  42860. {
  42861. name: "Megamacro",
  42862. height: math.unit(7500, "meters")
  42863. },
  42864. {
  42865. name: "Megamacro+",
  42866. height: math.unit(80, "kilometers")
  42867. },
  42868. ]
  42869. ))
  42870. characterMakers.push(() => makeCharacter(
  42871. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42872. {
  42873. side: {
  42874. height: math.unit(5 + 11/12, "feet"),
  42875. weight: math.unit(236, "lb"),
  42876. name: "Side",
  42877. image: {
  42878. source: "./media/characters/gapp/side.svg",
  42879. extra: 775/340,
  42880. bottom: 58/833
  42881. }
  42882. },
  42883. mouth: {
  42884. height: math.unit(2.98, "feet"),
  42885. name: "Mouth",
  42886. image: {
  42887. source: "./media/characters/gapp/mouth.svg"
  42888. }
  42889. },
  42890. },
  42891. [
  42892. {
  42893. name: "Normal",
  42894. height: math.unit(5 + 1/12, "feet"),
  42895. default: true
  42896. },
  42897. ]
  42898. ))
  42899. characterMakers.push(() => makeCharacter(
  42900. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42901. {
  42902. front: {
  42903. height: math.unit(6, "feet"),
  42904. name: "Front",
  42905. image: {
  42906. source: "./media/characters/persephone/front.svg",
  42907. extra: 1895/1717,
  42908. bottom: 96/1991
  42909. }
  42910. },
  42911. back: {
  42912. height: math.unit(6, "feet"),
  42913. name: "Back",
  42914. image: {
  42915. source: "./media/characters/persephone/back.svg",
  42916. extra: 1868/1679,
  42917. bottom: 26/1894
  42918. }
  42919. },
  42920. casual: {
  42921. height: math.unit(6, "feet"),
  42922. name: "Casual",
  42923. image: {
  42924. source: "./media/characters/persephone/casual.svg",
  42925. extra: 1713/1541,
  42926. bottom: 76/1789
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Human Size",
  42933. height: math.unit(6, "feet")
  42934. },
  42935. {
  42936. name: "Big Steppy",
  42937. height: math.unit(600, "meters"),
  42938. default: true
  42939. },
  42940. {
  42941. name: "Galaxy Brain",
  42942. height: math.unit(1, "zettameter")
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42948. {
  42949. front: {
  42950. height: math.unit(1.85, "meters"),
  42951. name: "Front",
  42952. image: {
  42953. source: "./media/characters/riley-foxthing/front.svg",
  42954. extra: 1495/1354,
  42955. bottom: 122/1617
  42956. }
  42957. },
  42958. frontAlt: {
  42959. height: math.unit(1.85, "meters"),
  42960. name: "Front (Alt)",
  42961. image: {
  42962. source: "./media/characters/riley-foxthing/front-alt.svg",
  42963. extra: 1572/1389,
  42964. bottom: 116/1688
  42965. }
  42966. },
  42967. },
  42968. [
  42969. {
  42970. name: "Normal Sized",
  42971. height: math.unit(1.85, "meters"),
  42972. default: true
  42973. },
  42974. {
  42975. name: "Quite Sizable",
  42976. height: math.unit(5, "meters")
  42977. },
  42978. {
  42979. name: "Rather Large",
  42980. height: math.unit(20, "meters")
  42981. },
  42982. {
  42983. name: "Macro",
  42984. height: math.unit(450, "meters")
  42985. },
  42986. {
  42987. name: "Giga",
  42988. height: math.unit(5, "km")
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42994. {
  42995. front: {
  42996. height: math.unit(6, "feet"),
  42997. weight: math.unit(200, "lb"),
  42998. name: "Front",
  42999. image: {
  43000. source: "./media/characters/blizzard/front.svg",
  43001. extra: 1136/990,
  43002. bottom: 136/1272
  43003. }
  43004. },
  43005. back: {
  43006. height: math.unit(6, "feet"),
  43007. weight: math.unit(200, "lb"),
  43008. name: "Back",
  43009. image: {
  43010. source: "./media/characters/blizzard/back.svg",
  43011. extra: 1175/1034,
  43012. bottom: 97/1272
  43013. }
  43014. },
  43015. sitting: {
  43016. height: math.unit(3.725, "feet"),
  43017. weight: math.unit(200, "lb"),
  43018. name: "Sitting",
  43019. image: {
  43020. source: "./media/characters/blizzard/sitting.svg",
  43021. extra: 581/485,
  43022. bottom: 90/671
  43023. }
  43024. },
  43025. frontWizard: {
  43026. height: math.unit(7.9, "feet"),
  43027. weight: math.unit(200, "lb"),
  43028. name: "Front (Wizard)",
  43029. image: {
  43030. source: "./media/characters/blizzard/front-wizard.svg"
  43031. }
  43032. },
  43033. backWizard: {
  43034. height: math.unit(7.9, "feet"),
  43035. weight: math.unit(200, "lb"),
  43036. name: "Back (Wizard)",
  43037. image: {
  43038. source: "./media/characters/blizzard/back-wizard.svg"
  43039. }
  43040. },
  43041. frontNsfw: {
  43042. height: math.unit(6, "feet"),
  43043. weight: math.unit(200, "lb"),
  43044. name: "Front (NSFW)",
  43045. image: {
  43046. source: "./media/characters/blizzard/front-nsfw.svg",
  43047. extra: 1136/990,
  43048. bottom: 136/1272
  43049. }
  43050. },
  43051. backNsfw: {
  43052. height: math.unit(6, "feet"),
  43053. weight: math.unit(200, "lb"),
  43054. name: "Back (NSFW)",
  43055. image: {
  43056. source: "./media/characters/blizzard/back-nsfw.svg",
  43057. extra: 1175/1034,
  43058. bottom: 97/1272
  43059. }
  43060. },
  43061. sittingNsfw: {
  43062. height: math.unit(3.725, "feet"),
  43063. weight: math.unit(200, "lb"),
  43064. name: "Sitting (NSFW)",
  43065. image: {
  43066. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43067. extra: 581/485,
  43068. bottom: 90/671
  43069. }
  43070. },
  43071. wizardFrontNsfw: {
  43072. height: math.unit(7.9, "feet"),
  43073. weight: math.unit(200, "lb"),
  43074. name: "Wizard (Front, NSFW)",
  43075. image: {
  43076. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43077. }
  43078. },
  43079. },
  43080. [
  43081. {
  43082. name: "Normal",
  43083. height: math.unit(6, "feet"),
  43084. default: true
  43085. },
  43086. ]
  43087. ))
  43088. characterMakers.push(() => makeCharacter(
  43089. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43090. {
  43091. front: {
  43092. height: math.unit(5 + 2/12, "feet"),
  43093. name: "Front",
  43094. image: {
  43095. source: "./media/characters/lumi/front.svg",
  43096. extra: 1328/1268,
  43097. bottom: 103/1431
  43098. }
  43099. },
  43100. back: {
  43101. height: math.unit(5 + 2/12, "feet"),
  43102. name: "Back",
  43103. image: {
  43104. source: "./media/characters/lumi/back.svg",
  43105. extra: 1381/1327,
  43106. bottom: 43/1424
  43107. }
  43108. },
  43109. },
  43110. [
  43111. {
  43112. name: "Normal",
  43113. height: math.unit(5 + 2/12, "feet"),
  43114. default: true
  43115. },
  43116. ]
  43117. ))
  43118. characterMakers.push(() => makeCharacter(
  43119. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43120. {
  43121. front: {
  43122. height: math.unit(5 + 9/12, "feet"),
  43123. name: "Front",
  43124. image: {
  43125. source: "./media/characters/aliya-cotton/front.svg",
  43126. extra: 577/564,
  43127. bottom: 29/606
  43128. }
  43129. },
  43130. },
  43131. [
  43132. {
  43133. name: "Normal",
  43134. height: math.unit(5 + 9/12, "feet"),
  43135. default: true
  43136. },
  43137. ]
  43138. ))
  43139. characterMakers.push(() => makeCharacter(
  43140. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43141. {
  43142. front: {
  43143. height: math.unit(2.7, "meters"),
  43144. weight: math.unit(25000, "lb"),
  43145. name: "Front",
  43146. image: {
  43147. source: "./media/characters/noah-luxray/front.svg",
  43148. extra: 1644/825,
  43149. bottom: 339/1983
  43150. }
  43151. },
  43152. side: {
  43153. height: math.unit(2.97, "meters"),
  43154. weight: math.unit(25000, "lb"),
  43155. name: "Side",
  43156. image: {
  43157. source: "./media/characters/noah-luxray/side.svg",
  43158. extra: 1319/650,
  43159. bottom: 163/1482
  43160. }
  43161. },
  43162. dick: {
  43163. height: math.unit(7.4, "feet"),
  43164. weight: math.unit(2500, "lb"),
  43165. name: "Dick",
  43166. image: {
  43167. source: "./media/characters/noah-luxray/dick.svg"
  43168. }
  43169. },
  43170. dickAlt: {
  43171. height: math.unit(10.83, "feet"),
  43172. weight: math.unit(2500, "lb"),
  43173. name: "Dick-alt",
  43174. image: {
  43175. source: "./media/characters/noah-luxray/dick-alt.svg"
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "BIG",
  43182. height: math.unit(2.7, "meters"),
  43183. default: true
  43184. },
  43185. ]
  43186. ))
  43187. characterMakers.push(() => makeCharacter(
  43188. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43189. {
  43190. standing: {
  43191. height: math.unit(183, "cm"),
  43192. weight: math.unit(68, "kg"),
  43193. name: "Standing",
  43194. image: {
  43195. source: "./media/characters/arion/standing.svg",
  43196. extra: 1869/1807,
  43197. bottom: 93/1962
  43198. }
  43199. },
  43200. reclining: {
  43201. height: math.unit(70.5, "cm"),
  43202. weight: math.unit(68, "lb"),
  43203. name: "Reclining",
  43204. image: {
  43205. source: "./media/characters/arion/reclining.svg",
  43206. extra: 937/870,
  43207. bottom: 63/1000
  43208. }
  43209. },
  43210. },
  43211. [
  43212. {
  43213. name: "Colossus Size, Low",
  43214. height: math.unit(33, "meters"),
  43215. default: true
  43216. },
  43217. {
  43218. name: "Colossus Size, Mid",
  43219. height: math.unit(52, "meters")
  43220. },
  43221. {
  43222. name: "Colossus Size, High",
  43223. height: math.unit(60, "meters")
  43224. },
  43225. {
  43226. name: "Titan Size, Low",
  43227. height: math.unit(91, "meters"),
  43228. },
  43229. {
  43230. name: "Titan Size, Mid",
  43231. height: math.unit(122, "meters")
  43232. },
  43233. {
  43234. name: "Titan Size, High",
  43235. height: math.unit(162, "meters")
  43236. },
  43237. ]
  43238. ))
  43239. characterMakers.push(() => makeCharacter(
  43240. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43241. {
  43242. front: {
  43243. height: math.unit(53, "meters"),
  43244. name: "Front",
  43245. image: {
  43246. source: "./media/characters/stellar-marbey/front.svg",
  43247. extra: 1913/1805,
  43248. bottom: 92/2005
  43249. }
  43250. },
  43251. back: {
  43252. height: math.unit(53, "meters"),
  43253. name: "Back",
  43254. image: {
  43255. source: "./media/characters/stellar-marbey/back.svg",
  43256. extra: 1960/1851,
  43257. bottom: 28/1988
  43258. }
  43259. },
  43260. mouth: {
  43261. height: math.unit(3.5, "meters"),
  43262. name: "Mouth",
  43263. image: {
  43264. source: "./media/characters/stellar-marbey/mouth.svg"
  43265. }
  43266. },
  43267. },
  43268. [
  43269. {
  43270. name: "Macro",
  43271. height: math.unit(53, "meters"),
  43272. default: true
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43278. {
  43279. front: {
  43280. height: math.unit(8 + 1/12, "feet"),
  43281. weight: math.unit(233, "lb"),
  43282. name: "Front",
  43283. image: {
  43284. source: "./media/characters/matsu/front.svg",
  43285. extra: 832/772,
  43286. bottom: 40/872
  43287. }
  43288. },
  43289. back: {
  43290. height: math.unit(8 + 1/12, "feet"),
  43291. weight: math.unit(233, "lb"),
  43292. name: "Back",
  43293. image: {
  43294. source: "./media/characters/matsu/back.svg",
  43295. extra: 839/780,
  43296. bottom: 47/886
  43297. }
  43298. },
  43299. },
  43300. [
  43301. {
  43302. name: "Normal",
  43303. height: math.unit(8 + 1/12, "feet"),
  43304. default: true
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43310. {
  43311. front: {
  43312. height: math.unit(4, "feet"),
  43313. weight: math.unit(148, "lb"),
  43314. name: "Front",
  43315. image: {
  43316. source: "./media/characters/thiz/front.svg",
  43317. extra: 1913/1748,
  43318. bottom: 62/1975
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(4, "feet"),
  43326. default: true
  43327. },
  43328. ]
  43329. ))
  43330. characterMakers.push(() => makeCharacter(
  43331. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43332. {
  43333. front: {
  43334. height: math.unit(7 + 6/12, "feet"),
  43335. weight: math.unit(267, "lb"),
  43336. name: "Front",
  43337. image: {
  43338. source: "./media/characters/marcel/front.svg",
  43339. extra: 1221/1096,
  43340. bottom: 76/1297
  43341. }
  43342. },
  43343. },
  43344. [
  43345. {
  43346. name: "Normal",
  43347. height: math.unit(7 + 6/12, "feet"),
  43348. default: true
  43349. },
  43350. ]
  43351. ))
  43352. characterMakers.push(() => makeCharacter(
  43353. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43354. {
  43355. side: {
  43356. height: math.unit(42, "meters"),
  43357. name: "Side",
  43358. image: {
  43359. source: "./media/characters/flake/side.svg",
  43360. extra: 1525/1306,
  43361. bottom: 209/1734
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(42, "meters"),
  43369. default: true
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43375. {
  43376. dressed: {
  43377. height: math.unit(6 + 4/12, "feet"),
  43378. weight: math.unit(520, "lb"),
  43379. name: "Dressed",
  43380. image: {
  43381. source: "./media/characters/someonne/dressed.svg",
  43382. extra: 1020/1010,
  43383. bottom: 178/1198
  43384. }
  43385. },
  43386. undressed: {
  43387. height: math.unit(6 + 4/12, "feet"),
  43388. weight: math.unit(520, "lb"),
  43389. name: "Undressed",
  43390. image: {
  43391. source: "./media/characters/someonne/undressed.svg",
  43392. extra: 1019/1014,
  43393. bottom: 169/1188
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(6 + 4/12, "feet"),
  43401. default: true
  43402. },
  43403. ]
  43404. ))
  43405. characterMakers.push(() => makeCharacter(
  43406. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43407. {
  43408. front: {
  43409. height: math.unit(3, "feet"),
  43410. weight: math.unit(30, "lb"),
  43411. name: "Front",
  43412. image: {
  43413. source: "./media/characters/till/front.svg",
  43414. extra: 892/823,
  43415. bottom: 55/947
  43416. }
  43417. },
  43418. },
  43419. [
  43420. {
  43421. name: "Normal",
  43422. height: math.unit(3, "feet"),
  43423. default: true
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43429. {
  43430. front: {
  43431. height: math.unit(9 + 8/12, "feet"),
  43432. weight: math.unit(800, "lb"),
  43433. name: "Front",
  43434. image: {
  43435. source: "./media/characters/sydney-heki/front.svg",
  43436. extra: 1360/1300,
  43437. bottom: 22/1382
  43438. }
  43439. },
  43440. back: {
  43441. height: math.unit(9 + 8/12, "feet"),
  43442. weight: math.unit(800, "lb"),
  43443. name: "Back",
  43444. image: {
  43445. source: "./media/characters/sydney-heki/back.svg",
  43446. extra: 1356/1293,
  43447. bottom: 12/1368
  43448. }
  43449. },
  43450. frontDressed: {
  43451. height: math.unit(9 + 8/12, "feet"),
  43452. weight: math.unit(800, "lb"),
  43453. name: "Front-dressed",
  43454. image: {
  43455. source: "./media/characters/sydney-heki/front-dressed.svg",
  43456. extra: 1360/1300,
  43457. bottom: 22/1382
  43458. }
  43459. },
  43460. },
  43461. [
  43462. {
  43463. name: "Normal",
  43464. height: math.unit(9 + 8/12, "feet"),
  43465. default: true
  43466. },
  43467. {
  43468. name: "Macro",
  43469. height: math.unit(500, "feet")
  43470. },
  43471. {
  43472. name: "Megamacro",
  43473. height: math.unit(3.6, "miles")
  43474. },
  43475. ]
  43476. ))
  43477. characterMakers.push(() => makeCharacter(
  43478. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43479. {
  43480. front: {
  43481. height: math.unit(200, "cm"),
  43482. weight: math.unit(250, "lb"),
  43483. name: "Front",
  43484. image: {
  43485. source: "./media/characters/fowler-karlsson/front.svg",
  43486. extra: 897/845,
  43487. bottom: 123/1020
  43488. }
  43489. },
  43490. back: {
  43491. height: math.unit(200, "cm"),
  43492. weight: math.unit(250, "lb"),
  43493. name: "Back",
  43494. image: {
  43495. source: "./media/characters/fowler-karlsson/back.svg",
  43496. extra: 999/944,
  43497. bottom: 26/1025
  43498. }
  43499. },
  43500. dick: {
  43501. height: math.unit(1.92, "feet"),
  43502. weight: math.unit(150, "lb"),
  43503. name: "Dick",
  43504. image: {
  43505. source: "./media/characters/fowler-karlsson/dick.svg"
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Normal",
  43512. height: math.unit(200, "cm"),
  43513. default: true
  43514. },
  43515. {
  43516. name: "Smaller Macro",
  43517. height: math.unit(90, "m")
  43518. },
  43519. {
  43520. name: "Macro",
  43521. height: math.unit(150, "m")
  43522. },
  43523. {
  43524. name: "Bigger Macro",
  43525. height: math.unit(300, "m")
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43531. {
  43532. side: {
  43533. height: math.unit(8 + 2/12, "feet"),
  43534. weight: math.unit(1, "tonne"),
  43535. name: "Side",
  43536. image: {
  43537. source: "./media/characters/rylide/side.svg",
  43538. extra: 1318/1034,
  43539. bottom: 106/1424
  43540. }
  43541. },
  43542. sitting: {
  43543. height: math.unit(303, "cm"),
  43544. weight: math.unit(1, "tonne"),
  43545. name: "Sitting",
  43546. image: {
  43547. source: "./media/characters/rylide/sitting.svg",
  43548. extra: 1303/1103,
  43549. bottom: 36/1339
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(8 + 2/12, "feet"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(5 + 10/12, "feet"),
  43566. weight: math.unit(160, "lb"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/pudask/front.svg",
  43570. extra: 1616/1590,
  43571. bottom: 161/1777
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Ferret Height",
  43578. height: math.unit(2 + 5/12, "feet")
  43579. },
  43580. {
  43581. name: "Canon Height",
  43582. height: math.unit(5 + 10/12, "feet"),
  43583. default: true
  43584. },
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(3 + 6/12, "feet"),
  43592. weight: math.unit(60, "lb"),
  43593. name: "Front",
  43594. image: {
  43595. source: "./media/characters/ramita/front.svg",
  43596. extra: 1402/1232,
  43597. bottom: 62/1464
  43598. }
  43599. },
  43600. dressed: {
  43601. height: math.unit(3 + 6/12, "feet"),
  43602. weight: math.unit(60, "lb"),
  43603. name: "Dressed",
  43604. image: {
  43605. source: "./media/characters/ramita/dressed.svg",
  43606. extra: 1534/1249,
  43607. bottom: 50/1584
  43608. }
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Normal",
  43614. height: math.unit(3 + 6/12, "feet"),
  43615. default: true
  43616. },
  43617. ]
  43618. ))
  43619. characterMakers.push(() => makeCharacter(
  43620. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43621. {
  43622. front: {
  43623. height: math.unit(8, "feet"),
  43624. name: "Front",
  43625. image: {
  43626. source: "./media/characters/ark/front.svg",
  43627. extra: 772/693,
  43628. bottom: 45/817
  43629. }
  43630. },
  43631. },
  43632. [
  43633. {
  43634. name: "Normal",
  43635. height: math.unit(8, "feet"),
  43636. default: true
  43637. },
  43638. ]
  43639. ))
  43640. characterMakers.push(() => makeCharacter(
  43641. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43642. {
  43643. front: {
  43644. height: math.unit(6, "feet"),
  43645. weight: math.unit(250, "lb"),
  43646. volume: math.unit(5/8, "gallons"),
  43647. name: "Front",
  43648. image: {
  43649. source: "./media/characters/ludwig-horn/front.svg",
  43650. extra: 1782/1635,
  43651. bottom: 96/1878
  43652. }
  43653. },
  43654. back: {
  43655. height: math.unit(6, "feet"),
  43656. weight: math.unit(250, "lb"),
  43657. volume: math.unit(5/8, "gallons"),
  43658. name: "Back",
  43659. image: {
  43660. source: "./media/characters/ludwig-horn/back.svg",
  43661. extra: 1874/1729,
  43662. bottom: 27/1901
  43663. }
  43664. },
  43665. dick: {
  43666. height: math.unit(1.05, "feet"),
  43667. weight: math.unit(15, "lb"),
  43668. volume: math.unit(5/8, "gallons"),
  43669. name: "Dick",
  43670. image: {
  43671. source: "./media/characters/ludwig-horn/dick.svg"
  43672. }
  43673. },
  43674. },
  43675. [
  43676. {
  43677. name: "Small",
  43678. height: math.unit(6, "feet")
  43679. },
  43680. {
  43681. name: "Typical",
  43682. height: math.unit(12, "feet"),
  43683. default: true
  43684. },
  43685. {
  43686. name: "Building",
  43687. height: math.unit(80, "feet")
  43688. },
  43689. {
  43690. name: "Town",
  43691. height: math.unit(800, "feet")
  43692. },
  43693. {
  43694. name: "Kingdom",
  43695. height: math.unit(80000, "feet")
  43696. },
  43697. {
  43698. name: "Planet",
  43699. height: math.unit(8000000, "feet")
  43700. },
  43701. {
  43702. name: "Universe",
  43703. height: math.unit(8000000000, "feet")
  43704. },
  43705. {
  43706. name: "Transcended",
  43707. height: math.unit(8e27, "feet")
  43708. },
  43709. ]
  43710. ))
  43711. characterMakers.push(() => makeCharacter(
  43712. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43713. {
  43714. front: {
  43715. height: math.unit(5, "feet"),
  43716. weight: math.unit(50, "kg"),
  43717. name: "Front",
  43718. image: {
  43719. source: "./media/characters/biot-avery/front.svg",
  43720. extra: 1295/1232,
  43721. bottom: 86/1381
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Normal",
  43728. height: math.unit(5, "feet"),
  43729. default: true
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43735. {
  43736. front: {
  43737. height: math.unit(6, "feet"),
  43738. name: "Front",
  43739. image: {
  43740. source: "./media/characters/kitsune-kiro/front.svg",
  43741. extra: 1270/1158,
  43742. bottom: 42/1312
  43743. }
  43744. },
  43745. frontAlt: {
  43746. height: math.unit(6, "feet"),
  43747. name: "Front-alt",
  43748. image: {
  43749. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43750. extra: 1130/1081,
  43751. bottom: 36/1166
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Smol",
  43758. height: math.unit(3, "feet")
  43759. },
  43760. {
  43761. name: "Normal",
  43762. height: math.unit(6, "feet"),
  43763. default: true
  43764. },
  43765. ]
  43766. ))
  43767. characterMakers.push(() => makeCharacter(
  43768. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43769. {
  43770. front: {
  43771. height: math.unit(6, "feet"),
  43772. weight: math.unit(125, "lb"),
  43773. name: "Front",
  43774. image: {
  43775. source: "./media/characters/jack-thatcher/front.svg",
  43776. extra: 1474/1370,
  43777. bottom: 26/1500
  43778. }
  43779. },
  43780. back: {
  43781. height: math.unit(6, "feet"),
  43782. weight: math.unit(125, "lb"),
  43783. name: "Back",
  43784. image: {
  43785. source: "./media/characters/jack-thatcher/back.svg",
  43786. extra: 1489/1384,
  43787. bottom: 18/1507
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(6, "feet"),
  43795. default: true
  43796. },
  43797. {
  43798. name: "Macro",
  43799. height: math.unit(75, "feet")
  43800. },
  43801. {
  43802. name: "Macro-er",
  43803. height: math.unit(250, "feet")
  43804. },
  43805. ]
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43809. {
  43810. front: {
  43811. height: math.unit(7, "feet"),
  43812. weight: math.unit(110, "kg"),
  43813. name: "Front",
  43814. image: {
  43815. source: "./media/characters/max-hyper/front.svg",
  43816. extra: 1969/1881,
  43817. bottom: 49/2018
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(7, "feet"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(5 + 5/12, "feet"),
  43834. weight: math.unit(160, "lb"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/spook/front.svg",
  43838. extra: 794/791,
  43839. bottom: 54/848
  43840. }
  43841. },
  43842. back: {
  43843. height: math.unit(5 + 5/12, "feet"),
  43844. weight: math.unit(160, "lb"),
  43845. name: "Back",
  43846. image: {
  43847. source: "./media/characters/spook/back.svg",
  43848. extra: 812/798,
  43849. bottom: 32/844
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Normal",
  43856. height: math.unit(5 + 5/12, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(18, "feet"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/xeaduulix/front.svg",
  43869. extra: 1380/1166,
  43870. bottom: 110/1490
  43871. }
  43872. },
  43873. back: {
  43874. height: math.unit(18, "feet"),
  43875. name: "Back",
  43876. image: {
  43877. source: "./media/characters/xeaduulix/back.svg",
  43878. extra: 1592/1170,
  43879. bottom: 128/1720
  43880. }
  43881. },
  43882. frontNsfw: {
  43883. height: math.unit(18, "feet"),
  43884. name: "Front (NSFW)",
  43885. image: {
  43886. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43887. extra: 1380/1166,
  43888. bottom: 110/1490
  43889. }
  43890. },
  43891. backNsfw: {
  43892. height: math.unit(18, "feet"),
  43893. name: "Back (NSFW)",
  43894. image: {
  43895. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43896. extra: 1592/1170,
  43897. bottom: 128/1720
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Normal",
  43904. height: math.unit(18, "feet"),
  43905. default: true
  43906. },
  43907. ]
  43908. ))
  43909. characterMakers.push(() => makeCharacter(
  43910. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43911. {
  43912. spreadWings: {
  43913. height: math.unit(20, "feet"),
  43914. name: "Spread Wings",
  43915. image: {
  43916. source: "./media/characters/fledge/spread-wings.svg",
  43917. extra: 693/635,
  43918. bottom: 26/719
  43919. }
  43920. },
  43921. front: {
  43922. height: math.unit(20, "feet"),
  43923. name: "Front",
  43924. image: {
  43925. source: "./media/characters/fledge/front.svg",
  43926. extra: 684/637,
  43927. bottom: 18/702
  43928. }
  43929. },
  43930. frontAlt: {
  43931. height: math.unit(20, "feet"),
  43932. name: "Front (Alt)",
  43933. image: {
  43934. source: "./media/characters/fledge/front-alt.svg",
  43935. extra: 708/664,
  43936. bottom: 13/721
  43937. }
  43938. },
  43939. back: {
  43940. height: math.unit(20, "feet"),
  43941. name: "Back",
  43942. image: {
  43943. source: "./media/characters/fledge/back.svg",
  43944. extra: 718/634,
  43945. bottom: 22/740
  43946. }
  43947. },
  43948. head: {
  43949. height: math.unit(5.55, "feet"),
  43950. name: "Head",
  43951. image: {
  43952. source: "./media/characters/fledge/head.svg"
  43953. }
  43954. },
  43955. headAlt: {
  43956. height: math.unit(5.1, "feet"),
  43957. name: "Head (Alt)",
  43958. image: {
  43959. source: "./media/characters/fledge/head-alt.svg"
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Small",
  43966. height: math.unit(6 + 2/12, "feet")
  43967. },
  43968. {
  43969. name: "Big",
  43970. height: math.unit(20, "feet"),
  43971. default: true
  43972. },
  43973. {
  43974. name: "Giant",
  43975. height: math.unit(100, "feet")
  43976. },
  43977. {
  43978. name: "Macro",
  43979. height: math.unit(200, "feet")
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43985. {
  43986. front: {
  43987. height: math.unit(1, "meter"),
  43988. name: "Front",
  43989. image: {
  43990. source: "./media/characters/atlas-morenai/front.svg",
  43991. extra: 1275/1043,
  43992. bottom: 19/1294
  43993. }
  43994. },
  43995. back: {
  43996. height: math.unit(1, "meter"),
  43997. name: "Back",
  43998. image: {
  43999. source: "./media/characters/atlas-morenai/back.svg",
  44000. extra: 1141/1001,
  44001. bottom: 25/1166
  44002. }
  44003. },
  44004. },
  44005. [
  44006. {
  44007. name: "Normal",
  44008. height: math.unit(1, "meter"),
  44009. default: true
  44010. },
  44011. {
  44012. name: "Magic-Infused",
  44013. height: math.unit(5, "meters")
  44014. },
  44015. ]
  44016. ))
  44017. characterMakers.push(() => makeCharacter(
  44018. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44019. {
  44020. front: {
  44021. height: math.unit(5, "meters"),
  44022. name: "Front",
  44023. image: {
  44024. source: "./media/characters/cintia/front.svg",
  44025. extra: 1312/1228,
  44026. bottom: 38/1350
  44027. }
  44028. },
  44029. back: {
  44030. height: math.unit(5, "meters"),
  44031. name: "Back",
  44032. image: {
  44033. source: "./media/characters/cintia/back.svg",
  44034. extra: 1260/1166,
  44035. bottom: 98/1358
  44036. }
  44037. },
  44038. frontDick: {
  44039. height: math.unit(5, "meters"),
  44040. name: "Front (Dick)",
  44041. image: {
  44042. source: "./media/characters/cintia/front-dick.svg",
  44043. extra: 1312/1228,
  44044. bottom: 38/1350
  44045. }
  44046. },
  44047. backDick: {
  44048. height: math.unit(5, "meters"),
  44049. name: "Back (Dick)",
  44050. image: {
  44051. source: "./media/characters/cintia/back-dick.svg",
  44052. extra: 1260/1166,
  44053. bottom: 98/1358
  44054. }
  44055. },
  44056. bust: {
  44057. height: math.unit(1.97, "meters"),
  44058. name: "Bust",
  44059. image: {
  44060. source: "./media/characters/cintia/bust.svg",
  44061. extra: 617/565,
  44062. bottom: 0/617
  44063. }
  44064. },
  44065. },
  44066. [
  44067. {
  44068. name: "Normal",
  44069. height: math.unit(5, "meters"),
  44070. default: true
  44071. },
  44072. ]
  44073. ))
  44074. characterMakers.push(() => makeCharacter(
  44075. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44076. {
  44077. side: {
  44078. height: math.unit(100, "feet"),
  44079. name: "Side",
  44080. image: {
  44081. source: "./media/characters/denora/side.svg",
  44082. extra: 875/803,
  44083. bottom: 9/884
  44084. }
  44085. },
  44086. },
  44087. [
  44088. {
  44089. name: "Standard",
  44090. height: math.unit(100, "feet"),
  44091. default: true
  44092. },
  44093. {
  44094. name: "Grand",
  44095. height: math.unit(1000, "feet")
  44096. },
  44097. {
  44098. name: "Conquering",
  44099. height: math.unit(10000, "feet")
  44100. },
  44101. ]
  44102. ))
  44103. characterMakers.push(() => makeCharacter(
  44104. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44105. {
  44106. dressed: {
  44107. height: math.unit(8 + 5/12, "feet"),
  44108. weight: math.unit(700, "lb"),
  44109. name: "Dressed",
  44110. image: {
  44111. source: "./media/characters/kiva/dressed.svg",
  44112. extra: 1102/1055,
  44113. bottom: 60/1162
  44114. }
  44115. },
  44116. nude: {
  44117. height: math.unit(8 + 5/12, "feet"),
  44118. weight: math.unit(700, "lb"),
  44119. name: "Nude",
  44120. image: {
  44121. source: "./media/characters/kiva/nude.svg",
  44122. extra: 1102/1055,
  44123. bottom: 60/1162
  44124. }
  44125. },
  44126. },
  44127. [
  44128. {
  44129. name: "Base Height",
  44130. height: math.unit(8 + 5/12, "feet"),
  44131. default: true
  44132. },
  44133. {
  44134. name: "Macro",
  44135. height: math.unit(100, "feet")
  44136. },
  44137. {
  44138. name: "Max",
  44139. height: math.unit(3280, "feet")
  44140. },
  44141. ]
  44142. ))
  44143. characterMakers.push(() => makeCharacter(
  44144. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44145. {
  44146. front: {
  44147. height: math.unit(6 + 8/12, "feet"),
  44148. weight: math.unit(250, "lb"),
  44149. name: "Front",
  44150. image: {
  44151. source: "./media/characters/ztragon/front.svg",
  44152. extra: 1825/1684,
  44153. bottom: 98/1923
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(6 + 8/12, "feet"),
  44161. default: true
  44162. },
  44163. {
  44164. name: "Macro",
  44165. height: math.unit(80, "feet")
  44166. },
  44167. ]
  44168. ))
  44169. characterMakers.push(() => makeCharacter(
  44170. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44171. {
  44172. front: {
  44173. height: math.unit(10.4, "feet"),
  44174. weight: math.unit(2, "tons"),
  44175. name: "Front",
  44176. image: {
  44177. source: "./media/characters/yesenia/front.svg",
  44178. extra: 1479/1474,
  44179. bottom: 233/1712
  44180. }
  44181. },
  44182. },
  44183. [
  44184. {
  44185. name: "Normal",
  44186. height: math.unit(10.4, "feet"),
  44187. default: true
  44188. },
  44189. ]
  44190. ))
  44191. characterMakers.push(() => makeCharacter(
  44192. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44193. {
  44194. normal: {
  44195. height: math.unit(6 + 1/12, "feet"),
  44196. weight: math.unit(180, "lb"),
  44197. name: "Normal",
  44198. image: {
  44199. source: "./media/characters/leanne-lycheborne/normal.svg",
  44200. extra: 1748/1660,
  44201. bottom: 98/1846
  44202. }
  44203. },
  44204. were: {
  44205. height: math.unit(12, "feet"),
  44206. weight: math.unit(1600, "lb"),
  44207. name: "Were",
  44208. image: {
  44209. source: "./media/characters/leanne-lycheborne/were.svg",
  44210. extra: 1485/1432,
  44211. bottom: 66/1551
  44212. }
  44213. },
  44214. },
  44215. [
  44216. {
  44217. name: "Normal",
  44218. height: math.unit(6 + 1/12, "feet"),
  44219. default: true
  44220. },
  44221. ]
  44222. ))
  44223. characterMakers.push(() => makeCharacter(
  44224. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44225. {
  44226. side: {
  44227. height: math.unit(13, "feet"),
  44228. name: "Side",
  44229. image: {
  44230. source: "./media/characters/kira-tyler/side.svg",
  44231. extra: 693/393,
  44232. bottom: 58/751
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(13, "feet"),
  44240. default: true
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(10.3, "feet"),
  44249. weight: math.unit(150, "lb"),
  44250. name: "Front",
  44251. image: {
  44252. source: "./media/characters/blaze/front.svg",
  44253. extra: 1378/1286,
  44254. bottom: 172/1550
  44255. }
  44256. },
  44257. },
  44258. [
  44259. {
  44260. name: "Normal",
  44261. height: math.unit(10.3, "feet"),
  44262. default: true
  44263. },
  44264. ]
  44265. ))
  44266. characterMakers.push(() => makeCharacter(
  44267. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44268. {
  44269. side: {
  44270. height: math.unit(2, "meters"),
  44271. weight: math.unit(400, "kg"),
  44272. name: "Side",
  44273. image: {
  44274. source: "./media/characters/anu/side.svg",
  44275. extra: 506/394,
  44276. bottom: 18/524
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Humanoid",
  44283. height: math.unit(2, "meters")
  44284. },
  44285. {
  44286. name: "Normal",
  44287. height: math.unit(5, "meters"),
  44288. default: true
  44289. },
  44290. ]
  44291. ))
  44292. characterMakers.push(() => makeCharacter(
  44293. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44294. {
  44295. front: {
  44296. height: math.unit(5 + 5/12, "feet"),
  44297. weight: math.unit(170, "lb"),
  44298. name: "Front",
  44299. image: {
  44300. source: "./media/characters/synx-the-lynx/front.svg",
  44301. extra: 1893/1745,
  44302. bottom: 17/1910
  44303. }
  44304. },
  44305. side: {
  44306. height: math.unit(5 + 5/12, "feet"),
  44307. weight: math.unit(170, "lb"),
  44308. name: "Side",
  44309. image: {
  44310. source: "./media/characters/synx-the-lynx/side.svg",
  44311. extra: 1884/1740,
  44312. bottom: 39/1923
  44313. }
  44314. },
  44315. back: {
  44316. height: math.unit(5 + 5/12, "feet"),
  44317. weight: math.unit(170, "lb"),
  44318. name: "Back",
  44319. image: {
  44320. source: "./media/characters/synx-the-lynx/back.svg",
  44321. extra: 1903/1755,
  44322. bottom: 14/1917
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Normal",
  44329. height: math.unit(5 + 5/12, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44336. {
  44337. back: {
  44338. height: math.unit(15, "feet"),
  44339. name: "Back",
  44340. image: {
  44341. source: "./media/characters/nadezda-fex/back.svg",
  44342. extra: 1695/1481,
  44343. bottom: 25/1720
  44344. }
  44345. },
  44346. },
  44347. [
  44348. {
  44349. name: "Normal",
  44350. height: math.unit(15, "feet"),
  44351. default: true
  44352. },
  44353. {
  44354. name: "Macro",
  44355. height: math.unit(2.5, "miles")
  44356. },
  44357. {
  44358. name: "Goddess",
  44359. height: math.unit(2, "multiverses")
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(216, "cm"),
  44368. name: "Front",
  44369. image: {
  44370. source: "./media/characters/lev/front.svg",
  44371. extra: 1728/1670,
  44372. bottom: 82/1810
  44373. }
  44374. },
  44375. back: {
  44376. height: math.unit(216, "cm"),
  44377. name: "Back",
  44378. image: {
  44379. source: "./media/characters/lev/back.svg",
  44380. extra: 1738/1675,
  44381. bottom: 24/1762
  44382. }
  44383. },
  44384. dressed: {
  44385. height: math.unit(216, "cm"),
  44386. name: "Dressed",
  44387. image: {
  44388. source: "./media/characters/lev/dressed.svg",
  44389. extra: 1397/1351,
  44390. bottom: 73/1470
  44391. }
  44392. },
  44393. head: {
  44394. height: math.unit(0.51, "meter"),
  44395. name: "Head",
  44396. image: {
  44397. source: "./media/characters/lev/head.svg"
  44398. }
  44399. },
  44400. },
  44401. [
  44402. {
  44403. name: "Normal",
  44404. height: math.unit(216, "cm"),
  44405. default: true
  44406. },
  44407. {
  44408. name: "Relatively Macro",
  44409. height: math.unit(80, "meters")
  44410. },
  44411. {
  44412. name: "Megamacro",
  44413. height: math.unit(21600, "meters")
  44414. },
  44415. {
  44416. name: "Megamacro+",
  44417. height: math.unit(64800, "meters")
  44418. },
  44419. ]
  44420. ))
  44421. characterMakers.push(() => makeCharacter(
  44422. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44423. {
  44424. front: {
  44425. height: math.unit(2, "meters"),
  44426. weight: math.unit(80, "kg"),
  44427. name: "Front",
  44428. image: {
  44429. source: "./media/characters/moka/front.svg",
  44430. extra: 1337/1255,
  44431. bottom: 58/1395
  44432. }
  44433. },
  44434. },
  44435. [
  44436. {
  44437. name: "Micro",
  44438. height: math.unit(15, "cm")
  44439. },
  44440. {
  44441. name: "Normal",
  44442. height: math.unit(2, "meters"),
  44443. default: true
  44444. },
  44445. {
  44446. name: "Macro",
  44447. height: math.unit(20, "meters"),
  44448. },
  44449. ]
  44450. ))
  44451. characterMakers.push(() => makeCharacter(
  44452. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44453. {
  44454. front: {
  44455. height: math.unit(9, "feet"),
  44456. weight: math.unit(240, "lb"),
  44457. name: "Front",
  44458. image: {
  44459. source: "./media/characters/kuzco/front.svg",
  44460. extra: 1593/1487,
  44461. bottom: 32/1625
  44462. }
  44463. },
  44464. side: {
  44465. height: math.unit(9, "feet"),
  44466. weight: math.unit(240, "lb"),
  44467. name: "Side",
  44468. image: {
  44469. source: "./media/characters/kuzco/side.svg",
  44470. extra: 1575/1485,
  44471. bottom: 30/1605
  44472. }
  44473. },
  44474. back: {
  44475. height: math.unit(9, "feet"),
  44476. weight: math.unit(240, "lb"),
  44477. name: "Back",
  44478. image: {
  44479. source: "./media/characters/kuzco/back.svg",
  44480. extra: 1603/1514,
  44481. bottom: 14/1617
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(9, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44495. {
  44496. side: {
  44497. height: math.unit(2, "meters"),
  44498. weight: math.unit(300, "kg"),
  44499. name: "Side",
  44500. image: {
  44501. source: "./media/characters/ceruleus/side.svg",
  44502. extra: 1068/974,
  44503. bottom: 126/1194
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Normal",
  44510. height: math.unit(16, "meters"),
  44511. default: true
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44517. {
  44518. front: {
  44519. height: math.unit(9, "feet"),
  44520. weight: math.unit(500, "kg"),
  44521. name: "Front",
  44522. image: {
  44523. source: "./media/characters/acouya/front.svg",
  44524. extra: 1660/1473,
  44525. bottom: 28/1688
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(9, "feet"),
  44533. default: true
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44539. {
  44540. front: {
  44541. height: math.unit(5 + 6/12, "feet"),
  44542. weight: math.unit(195, "lb"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/vant/front.svg",
  44546. extra: 1396/1320,
  44547. bottom: 20/1416
  44548. }
  44549. },
  44550. back: {
  44551. height: math.unit(5 + 6/12, "feet"),
  44552. weight: math.unit(195, "lb"),
  44553. name: "Back",
  44554. image: {
  44555. source: "./media/characters/vant/back.svg",
  44556. extra: 1396/1320,
  44557. bottom: 20/1416
  44558. }
  44559. },
  44560. maw: {
  44561. height: math.unit(0.75, "feet"),
  44562. name: "Maw",
  44563. image: {
  44564. source: "./media/characters/vant/maw.svg"
  44565. }
  44566. },
  44567. paw: {
  44568. height: math.unit(1.07, "feet"),
  44569. name: "Paw",
  44570. image: {
  44571. source: "./media/characters/vant/paw.svg"
  44572. }
  44573. },
  44574. },
  44575. [
  44576. {
  44577. name: "Micro",
  44578. height: math.unit(0.25, "inches")
  44579. },
  44580. {
  44581. name: "Normal",
  44582. height: math.unit(5 + 6/12, "feet"),
  44583. default: true
  44584. },
  44585. {
  44586. name: "Macro",
  44587. height: math.unit(75, "feet")
  44588. },
  44589. ]
  44590. ))
  44591. characterMakers.push(() => makeCharacter(
  44592. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44593. {
  44594. front: {
  44595. height: math.unit(30, "meters"),
  44596. weight: math.unit(363, "tons"),
  44597. name: "Front",
  44598. image: {
  44599. source: "./media/characters/ahra/front.svg",
  44600. extra: 1914/1814,
  44601. bottom: 46/1960
  44602. }
  44603. },
  44604. },
  44605. [
  44606. {
  44607. name: "Macro",
  44608. height: math.unit(30, "meters"),
  44609. default: true
  44610. },
  44611. ]
  44612. ))
  44613. characterMakers.push(() => makeCharacter(
  44614. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44615. {
  44616. undressed: {
  44617. height: math.unit(2, "m"),
  44618. weight: math.unit(250, "kg"),
  44619. name: "Undressed",
  44620. image: {
  44621. source: "./media/characters/coriander/undressed.svg",
  44622. extra: 1757/1606,
  44623. bottom: 107/1864
  44624. }
  44625. },
  44626. dressed: {
  44627. height: math.unit(2, "m"),
  44628. weight: math.unit(250, "kg"),
  44629. name: "Dressed",
  44630. image: {
  44631. source: "./media/characters/coriander/dressed.svg",
  44632. extra: 1757/1606,
  44633. bottom: 107/1864
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Normal",
  44640. height: math.unit(4, "meters"),
  44641. default: true
  44642. },
  44643. {
  44644. name: "XL",
  44645. height: math.unit(6, "meters")
  44646. },
  44647. {
  44648. name: "XXL",
  44649. height: math.unit(8, "meters")
  44650. },
  44651. ]
  44652. ))
  44653. characterMakers.push(() => makeCharacter(
  44654. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44655. {
  44656. front: {
  44657. height: math.unit(6, "feet"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/syrinx/front.svg",
  44661. extra: 1557/1259,
  44662. bottom: 171/1728
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(6 + 3/12, "feet"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44676. {
  44677. front: {
  44678. height: math.unit(11 + 6/12, "feet"),
  44679. weight: math.unit(1.5, "tons"),
  44680. name: "Front",
  44681. image: {
  44682. source: "./media/characters/bor/front.svg",
  44683. extra: 1189/1109,
  44684. bottom: 170/1359
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Normal",
  44691. height: math.unit(11 + 6/12, "feet"),
  44692. default: true
  44693. },
  44694. {
  44695. name: "Macro",
  44696. height: math.unit(32 + 9/12, "feet")
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44702. {
  44703. anthro: {
  44704. height: math.unit(9, "feet"),
  44705. weight: math.unit(2076, "lb"),
  44706. name: "Anthro",
  44707. image: {
  44708. source: "./media/characters/abacus/anthro.svg",
  44709. extra: 1540/1494,
  44710. bottom: 233/1773
  44711. }
  44712. },
  44713. pigeon: {
  44714. height: math.unit(1, "feet"),
  44715. name: "Pigeon",
  44716. image: {
  44717. source: "./media/characters/abacus/pigeon.svg",
  44718. extra: 528/525,
  44719. bottom: 46/574
  44720. }
  44721. },
  44722. },
  44723. [
  44724. {
  44725. name: "Normal",
  44726. height: math.unit(9, "feet"),
  44727. default: true
  44728. },
  44729. ]
  44730. ))
  44731. characterMakers.push(() => makeCharacter(
  44732. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44733. {
  44734. side: {
  44735. height: math.unit(6, "feet"),
  44736. name: "Side",
  44737. image: {
  44738. source: "./media/characters/delkhan/side.svg",
  44739. extra: 1884/1786,
  44740. bottom: 308/2192
  44741. }
  44742. },
  44743. head: {
  44744. height: math.unit(3.38, "feet"),
  44745. name: "Head",
  44746. image: {
  44747. source: "./media/characters/delkhan/head.svg"
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(72, "feet"),
  44755. default: true
  44756. },
  44757. {
  44758. name: "Giant",
  44759. height: math.unit(172, "feet")
  44760. },
  44761. ]
  44762. ))
  44763. characterMakers.push(() => makeCharacter(
  44764. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44765. {
  44766. standing: {
  44767. height: math.unit(6, "feet"),
  44768. name: "Standing",
  44769. image: {
  44770. source: "./media/characters/euchidat/standing.svg",
  44771. extra: 1612/1553,
  44772. bottom: 116/1728
  44773. }
  44774. },
  44775. leaning: {
  44776. height: math.unit(6, "feet"),
  44777. name: "Leaning",
  44778. image: {
  44779. source: "./media/characters/euchidat/leaning.svg",
  44780. extra: 1719/1674,
  44781. bottom: 27/1746
  44782. }
  44783. },
  44784. },
  44785. [
  44786. {
  44787. name: "Normal",
  44788. height: math.unit(175, "feet"),
  44789. default: true
  44790. },
  44791. {
  44792. name: "Megamacro",
  44793. height: math.unit(190, "miles")
  44794. },
  44795. {
  44796. name: "Gigamacro",
  44797. height: math.unit(190000, "miles")
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(6, "feet"),
  44806. weight: math.unit(150, "lb"),
  44807. name: "Front",
  44808. image: {
  44809. source: "./media/characters/rebecca-stack/front.svg",
  44810. extra: 1256/1201,
  44811. bottom: 18/1274
  44812. }
  44813. },
  44814. },
  44815. [
  44816. {
  44817. name: "Normal",
  44818. height: math.unit(5 + 8/12, "feet"),
  44819. default: true
  44820. },
  44821. {
  44822. name: "Demolitionist",
  44823. height: math.unit(200, "feet")
  44824. },
  44825. {
  44826. name: "Out of Control",
  44827. height: math.unit(2, "miles")
  44828. },
  44829. {
  44830. name: "Giga",
  44831. height: math.unit(7200, "miles")
  44832. },
  44833. ]
  44834. ))
  44835. characterMakers.push(() => makeCharacter(
  44836. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44837. {
  44838. front: {
  44839. height: math.unit(6, "feet"),
  44840. weight: math.unit(150, "lb"),
  44841. name: "Front",
  44842. image: {
  44843. source: "./media/characters/jenny-cartwright/front.svg",
  44844. extra: 1384/1376,
  44845. bottom: 58/1442
  44846. }
  44847. },
  44848. },
  44849. [
  44850. {
  44851. name: "Normal",
  44852. height: math.unit(6 + 7/12, "feet"),
  44853. default: true
  44854. },
  44855. {
  44856. name: "Librarian",
  44857. height: math.unit(55, "feet")
  44858. },
  44859. {
  44860. name: "Sightseer",
  44861. height: math.unit(50, "miles")
  44862. },
  44863. {
  44864. name: "Giga",
  44865. height: math.unit(30000, "miles")
  44866. },
  44867. ]
  44868. ))
  44869. characterMakers.push(() => makeCharacter(
  44870. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44871. {
  44872. nude: {
  44873. height: math.unit(8, "feet"),
  44874. weight: math.unit(225, "lb"),
  44875. name: "Nude",
  44876. image: {
  44877. source: "./media/characters/marvy/nude.svg",
  44878. extra: 1900/1683,
  44879. bottom: 89/1989
  44880. }
  44881. },
  44882. dressed: {
  44883. height: math.unit(8, "feet"),
  44884. weight: math.unit(225, "lb"),
  44885. name: "Dressed",
  44886. image: {
  44887. source: "./media/characters/marvy/dressed.svg",
  44888. extra: 1900/1683,
  44889. bottom: 89/1989
  44890. }
  44891. },
  44892. head: {
  44893. height: math.unit(2.85, "feet"),
  44894. name: "Head",
  44895. image: {
  44896. source: "./media/characters/marvy/head.svg"
  44897. }
  44898. },
  44899. },
  44900. [
  44901. {
  44902. name: "Normal",
  44903. height: math.unit(8, "feet"),
  44904. default: true
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44910. {
  44911. front: {
  44912. height: math.unit(8, "feet"),
  44913. weight: math.unit(250, "lb"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/leah/front.svg",
  44917. extra: 1257/1149,
  44918. bottom: 109/1366
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(8, "feet"),
  44926. default: true
  44927. },
  44928. {
  44929. name: "Minimacro",
  44930. height: math.unit(40, "feet")
  44931. },
  44932. {
  44933. name: "Macro",
  44934. height: math.unit(124, "feet")
  44935. },
  44936. {
  44937. name: "Megamacro",
  44938. height: math.unit(850, "feet")
  44939. },
  44940. ]
  44941. ))
  44942. characterMakers.push(() => makeCharacter(
  44943. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44944. {
  44945. side: {
  44946. height: math.unit(13 + 6/12, "feet"),
  44947. weight: math.unit(3200, "lb"),
  44948. name: "Side",
  44949. image: {
  44950. source: "./media/characters/alvir/side.svg",
  44951. extra: 896/589,
  44952. bottom: 26/922
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Normal",
  44959. height: math.unit(13 + 6/12, "feet"),
  44960. default: true
  44961. },
  44962. ]
  44963. ))
  44964. characterMakers.push(() => makeCharacter(
  44965. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  44966. {
  44967. front: {
  44968. height: math.unit(5 + 4/12, "feet"),
  44969. weight: math.unit(236, "lb"),
  44970. name: "Front",
  44971. image: {
  44972. source: "./media/characters/zaina-khalil/front.svg",
  44973. extra: 1533/1485,
  44974. bottom: 94/1627
  44975. }
  44976. },
  44977. side: {
  44978. height: math.unit(5 + 4/12, "feet"),
  44979. weight: math.unit(236, "lb"),
  44980. name: "Side",
  44981. image: {
  44982. source: "./media/characters/zaina-khalil/side.svg",
  44983. extra: 1537/1498,
  44984. bottom: 66/1603
  44985. }
  44986. },
  44987. back: {
  44988. height: math.unit(5 + 4/12, "feet"),
  44989. weight: math.unit(236, "lb"),
  44990. name: "Back",
  44991. image: {
  44992. source: "./media/characters/zaina-khalil/back.svg",
  44993. extra: 1546/1494,
  44994. bottom: 89/1635
  44995. }
  44996. },
  44997. },
  44998. [
  44999. {
  45000. name: "Normal",
  45001. height: math.unit(5 + 4/12, "feet"),
  45002. default: true
  45003. },
  45004. ]
  45005. ))
  45006. characterMakers.push(() => makeCharacter(
  45007. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45008. {
  45009. side: {
  45010. height: math.unit(12, "feet"),
  45011. weight: math.unit(4000, "lb"),
  45012. name: "Side",
  45013. image: {
  45014. source: "./media/characters/terry/side.svg",
  45015. extra: 1518/1439,
  45016. bottom: 149/1667
  45017. }
  45018. },
  45019. },
  45020. [
  45021. {
  45022. name: "Normal",
  45023. height: math.unit(12, "feet"),
  45024. default: true
  45025. },
  45026. ]
  45027. ))
  45028. characterMakers.push(() => makeCharacter(
  45029. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45030. {
  45031. front: {
  45032. height: math.unit(12, "feet"),
  45033. weight: math.unit(1500, "lb"),
  45034. name: "Front",
  45035. image: {
  45036. source: "./media/characters/kahea/front.svg",
  45037. extra: 1722/1617,
  45038. bottom: 179/1901
  45039. }
  45040. },
  45041. },
  45042. [
  45043. {
  45044. name: "Normal",
  45045. height: math.unit(12, "feet"),
  45046. default: true
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45052. {
  45053. demonFront: {
  45054. height: math.unit(36, "feet"),
  45055. name: "Front",
  45056. image: {
  45057. source: "./media/characters/alex-xuria/demon-front.svg",
  45058. extra: 1705/1673,
  45059. bottom: 198/1903
  45060. },
  45061. form: "demon",
  45062. default: true
  45063. },
  45064. demonBack: {
  45065. height: math.unit(36, "feet"),
  45066. name: "Back",
  45067. image: {
  45068. source: "./media/characters/alex-xuria/demon-back.svg",
  45069. extra: 1725/1693,
  45070. bottom: 70/1795
  45071. },
  45072. form: "demon"
  45073. },
  45074. demonHead: {
  45075. height: math.unit(2.14, "meters"),
  45076. name: "Head",
  45077. image: {
  45078. source: "./media/characters/alex-xuria/demon-head.svg"
  45079. },
  45080. form: "demon"
  45081. },
  45082. demonHand: {
  45083. height: math.unit(1.61, "meters"),
  45084. name: "Hand",
  45085. image: {
  45086. source: "./media/characters/alex-xuria/demon-hand.svg"
  45087. },
  45088. form: "demon"
  45089. },
  45090. demonPaw: {
  45091. height: math.unit(1.35, "meters"),
  45092. name: "Paw",
  45093. image: {
  45094. source: "./media/characters/alex-xuria/demon-paw.svg"
  45095. },
  45096. form: "demon"
  45097. },
  45098. demonFoot: {
  45099. height: math.unit(2.2, "meters"),
  45100. name: "Foot",
  45101. image: {
  45102. source: "./media/characters/alex-xuria/demon-foot.svg"
  45103. },
  45104. form: "demon"
  45105. },
  45106. demonCock: {
  45107. height: math.unit(1.74, "meters"),
  45108. name: "Cock",
  45109. image: {
  45110. source: "./media/characters/alex-xuria/demon-cock.svg"
  45111. },
  45112. form: "demon"
  45113. },
  45114. demonTailClosed: {
  45115. height: math.unit(1.47, "meters"),
  45116. name: "Tail (Closed)",
  45117. image: {
  45118. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45119. },
  45120. form: "demon"
  45121. },
  45122. demonTailOpen: {
  45123. height: math.unit(2.85, "meters"),
  45124. name: "Tail (Open)",
  45125. image: {
  45126. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45127. },
  45128. form: "demon"
  45129. },
  45130. incubusFront: {
  45131. height: math.unit(12, "feet"),
  45132. name: "Front",
  45133. image: {
  45134. source: "./media/characters/alex-xuria/incubus-front.svg",
  45135. extra: 1754/1677,
  45136. bottom: 125/1879
  45137. },
  45138. form: "incubus",
  45139. default: true
  45140. },
  45141. incubusBack: {
  45142. height: math.unit(12, "feet"),
  45143. name: "Back",
  45144. image: {
  45145. source: "./media/characters/alex-xuria/incubus-back.svg",
  45146. extra: 1702/1647,
  45147. bottom: 30/1732
  45148. },
  45149. form: "incubus"
  45150. },
  45151. incubusHead: {
  45152. height: math.unit(3.45, "feet"),
  45153. name: "Head",
  45154. image: {
  45155. source: "./media/characters/alex-xuria/incubus-head.svg"
  45156. },
  45157. form: "incubus"
  45158. },
  45159. rabbitFront: {
  45160. height: math.unit(6, "feet"),
  45161. name: "Front",
  45162. image: {
  45163. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45164. extra: 1369/1349,
  45165. bottom: 45/1414
  45166. },
  45167. form: "rabbit",
  45168. default: true
  45169. },
  45170. rabbitSide: {
  45171. height: math.unit(6, "feet"),
  45172. name: "Side",
  45173. image: {
  45174. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45175. extra: 1370/1356,
  45176. bottom: 37/1407
  45177. },
  45178. form: "rabbit"
  45179. },
  45180. rabbitBack: {
  45181. height: math.unit(6, "feet"),
  45182. name: "Back",
  45183. image: {
  45184. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45185. extra: 1375/1358,
  45186. bottom: 43/1418
  45187. },
  45188. form: "rabbit"
  45189. },
  45190. },
  45191. [
  45192. {
  45193. name: "Normal",
  45194. height: math.unit(6, "feet"),
  45195. default: true,
  45196. form: "rabbit"
  45197. },
  45198. {
  45199. name: "Incubus",
  45200. height: math.unit(12, "feet"),
  45201. default: true,
  45202. form: "incubus"
  45203. },
  45204. {
  45205. name: "Demon",
  45206. height: math.unit(36, "feet"),
  45207. default: true,
  45208. form: "demon"
  45209. }
  45210. ],
  45211. {
  45212. "demon": {
  45213. name: "Demon",
  45214. default: true
  45215. },
  45216. "incubus": {
  45217. name: "Incubus",
  45218. },
  45219. "rabbit": {
  45220. name: "Rabbit"
  45221. }
  45222. }
  45223. ))
  45224. characterMakers.push(() => makeCharacter(
  45225. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45226. {
  45227. front: {
  45228. height: math.unit(7 + 5/12, "feet"),
  45229. weight: math.unit(510, "lb"),
  45230. name: "Front",
  45231. image: {
  45232. source: "./media/characters/syrup/front.svg",
  45233. extra: 932/916,
  45234. bottom: 26/958
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Normal",
  45241. height: math.unit(7 + 5/12, "feet"),
  45242. default: true
  45243. },
  45244. {
  45245. name: "Big",
  45246. height: math.unit(50, "feet")
  45247. },
  45248. {
  45249. name: "Macro",
  45250. height: math.unit(300, "feet")
  45251. },
  45252. {
  45253. name: "Megamacro",
  45254. height: math.unit(1, "mile")
  45255. },
  45256. ]
  45257. ))
  45258. characterMakers.push(() => makeCharacter(
  45259. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45260. {
  45261. front: {
  45262. height: math.unit(6 + 9/12, "feet"),
  45263. name: "Front",
  45264. image: {
  45265. source: "./media/characters/zeimne/front.svg",
  45266. extra: 1969/1806,
  45267. bottom: 53/2022
  45268. }
  45269. },
  45270. },
  45271. [
  45272. {
  45273. name: "Normal",
  45274. height: math.unit(6 + 9/12, "feet"),
  45275. default: true
  45276. },
  45277. {
  45278. name: "Giant",
  45279. height: math.unit(550, "feet")
  45280. },
  45281. {
  45282. name: "Mega",
  45283. height: math.unit(3, "miles")
  45284. },
  45285. {
  45286. name: "Giga",
  45287. height: math.unit(250, "miles")
  45288. },
  45289. {
  45290. name: "Tera",
  45291. height: math.unit(1, "AU")
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45297. {
  45298. front: {
  45299. height: math.unit(5 + 2/12, "feet"),
  45300. name: "Front",
  45301. image: {
  45302. source: "./media/characters/grar/front.svg",
  45303. extra: 1331/1119,
  45304. bottom: 60/1391
  45305. }
  45306. },
  45307. back: {
  45308. height: math.unit(5 + 2/12, "feet"),
  45309. name: "Back",
  45310. image: {
  45311. source: "./media/characters/grar/back.svg",
  45312. extra: 1385/1169,
  45313. bottom: 23/1408
  45314. }
  45315. },
  45316. },
  45317. [
  45318. {
  45319. name: "Normal",
  45320. height: math.unit(5 + 2/12, "feet"),
  45321. default: true
  45322. },
  45323. ]
  45324. ))
  45325. characterMakers.push(() => makeCharacter(
  45326. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45327. {
  45328. front: {
  45329. height: math.unit(13 + 7/12, "feet"),
  45330. weight: math.unit(2200, "lb"),
  45331. name: "Front",
  45332. image: {
  45333. source: "./media/characters/endraya/front.svg",
  45334. extra: 1289/1215,
  45335. bottom: 50/1339
  45336. }
  45337. },
  45338. nude: {
  45339. height: math.unit(13 + 7/12, "feet"),
  45340. weight: math.unit(2200, "lb"),
  45341. name: "Nude",
  45342. image: {
  45343. source: "./media/characters/endraya/nude.svg",
  45344. extra: 1247/1171,
  45345. bottom: 40/1287
  45346. }
  45347. },
  45348. head: {
  45349. height: math.unit(2.6, "feet"),
  45350. name: "Head",
  45351. image: {
  45352. source: "./media/characters/endraya/head.svg"
  45353. }
  45354. },
  45355. slit: {
  45356. height: math.unit(3.4, "feet"),
  45357. name: "Slit",
  45358. image: {
  45359. source: "./media/characters/endraya/slit.svg"
  45360. }
  45361. },
  45362. },
  45363. [
  45364. {
  45365. name: "Normal",
  45366. height: math.unit(13 + 7/12, "feet"),
  45367. default: true
  45368. },
  45369. {
  45370. name: "Macro",
  45371. height: math.unit(200, "feet")
  45372. },
  45373. ]
  45374. ))
  45375. characterMakers.push(() => makeCharacter(
  45376. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45377. {
  45378. front: {
  45379. height: math.unit(412, "meters"),
  45380. name: "Front",
  45381. image: {
  45382. source: "./media/characters/rodryana/front.svg",
  45383. extra: 2002/1921,
  45384. bottom: 53/2055
  45385. }
  45386. },
  45387. back: {
  45388. height: math.unit(412, "meters"),
  45389. name: "Back",
  45390. image: {
  45391. source: "./media/characters/rodryana/back.svg",
  45392. extra: 1993/1926,
  45393. bottom: 48/2041
  45394. }
  45395. },
  45396. maw: {
  45397. height: math.unit(45, "meters"),
  45398. name: "Maw",
  45399. image: {
  45400. source: "./media/characters/rodryana/maw.svg"
  45401. }
  45402. },
  45403. slit: {
  45404. height: math.unit(72, "meters"),
  45405. name: "Slit",
  45406. image: {
  45407. source: "./media/characters/rodryana/slit.svg"
  45408. }
  45409. },
  45410. },
  45411. [
  45412. {
  45413. name: "Macro",
  45414. height: math.unit(412, "meters"),
  45415. default: true
  45416. },
  45417. ]
  45418. ))
  45419. characterMakers.push(() => makeCharacter(
  45420. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45421. {
  45422. front: {
  45423. height: math.unit(6, "feet"),
  45424. weight: math.unit(1000, "lb"),
  45425. name: "Front",
  45426. image: {
  45427. source: "./media/characters/asaya/front.svg",
  45428. extra: 1460/1200,
  45429. bottom: 71/1531
  45430. }
  45431. },
  45432. },
  45433. [
  45434. {
  45435. name: "Normal",
  45436. height: math.unit(8, "km"),
  45437. default: true
  45438. },
  45439. ]
  45440. ))
  45441. characterMakers.push(() => makeCharacter(
  45442. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45443. {
  45444. front: {
  45445. height: math.unit(3.5, "meters"),
  45446. name: "Front",
  45447. image: {
  45448. source: "./media/characters/sarzu-and-israz/front.svg",
  45449. extra: 1570/1558,
  45450. bottom: 150/1720
  45451. },
  45452. },
  45453. back: {
  45454. height: math.unit(3.5, "meters"),
  45455. name: "Back",
  45456. image: {
  45457. source: "./media/characters/sarzu-and-israz/back.svg",
  45458. extra: 1523/1509,
  45459. bottom: 132/1655
  45460. },
  45461. },
  45462. frontFemale: {
  45463. height: math.unit(3.5, "meters"),
  45464. name: "Front (Female)",
  45465. image: {
  45466. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45467. extra: 1570/1558,
  45468. bottom: 150/1720
  45469. },
  45470. },
  45471. frontHerm: {
  45472. height: math.unit(3.5, "meters"),
  45473. name: "Front (Herm)",
  45474. image: {
  45475. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45476. extra: 1570/1558,
  45477. bottom: 150/1720
  45478. },
  45479. },
  45480. },
  45481. [
  45482. {
  45483. name: "Normal",
  45484. height: math.unit(3.5, "meters"),
  45485. default: true,
  45486. },
  45487. {
  45488. name: "Macro",
  45489. height: math.unit(65.5, "meters"),
  45490. },
  45491. ],
  45492. ))
  45493. characterMakers.push(() => makeCharacter(
  45494. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45495. {
  45496. front: {
  45497. height: math.unit(6, "feet"),
  45498. weight: math.unit(250, "lb"),
  45499. name: "Front",
  45500. image: {
  45501. source: "./media/characters/zenimma/front.svg",
  45502. extra: 1346/1320,
  45503. bottom: 58/1404
  45504. }
  45505. },
  45506. back: {
  45507. height: math.unit(6, "feet"),
  45508. weight: math.unit(250, "lb"),
  45509. name: "Back",
  45510. image: {
  45511. source: "./media/characters/zenimma/back.svg",
  45512. extra: 1324/1308,
  45513. bottom: 44/1368
  45514. }
  45515. },
  45516. dick: {
  45517. height: math.unit(1.44, "feet"),
  45518. name: "Dick",
  45519. image: {
  45520. source: "./media/characters/zenimma/dick.svg"
  45521. }
  45522. },
  45523. },
  45524. [
  45525. {
  45526. name: "Canon Height",
  45527. height: math.unit(66, "miles"),
  45528. default: true
  45529. },
  45530. ]
  45531. ))
  45532. //characters
  45533. function makeCharacters() {
  45534. const results = [];
  45535. characterMakers.forEach(character => {
  45536. results.push(character());
  45537. });
  45538. return results;
  45539. }