less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46368 lines
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. }
  1812. //species
  1813. function getSpeciesInfo(speciesList) {
  1814. let result = new Set();
  1815. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1816. result.add(entry)
  1817. });
  1818. return Array.from(result);
  1819. };
  1820. function getSpeciesInfoHelper(species) {
  1821. if (!speciesData[species]) {
  1822. console.warn(species + " doesn't exist");
  1823. return [];
  1824. }
  1825. if (speciesData[species].parents) {
  1826. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1827. } else {
  1828. return [species];
  1829. }
  1830. }
  1831. characterMakers.push(() => makeCharacter(
  1832. {
  1833. name: "Fen",
  1834. species: ["crux"],
  1835. description: {
  1836. title: "Bio",
  1837. text: "Very furry. Sheds on everything."
  1838. },
  1839. tags: [
  1840. "anthro",
  1841. "goo"
  1842. ]
  1843. },
  1844. {
  1845. front: {
  1846. height: math.unit(12, "feet"),
  1847. weight: math.unit(1600, "lb"),
  1848. name: "Front",
  1849. image: {
  1850. source: "./media/characters/fen/front.svg",
  1851. extra: 1804/1562,
  1852. bottom: 205/2009
  1853. }
  1854. },
  1855. diving: {
  1856. height: math.unit(4.9, "meters"),
  1857. weight: math.unit(1600, "lb"),
  1858. name: "Diving",
  1859. image: {
  1860. source: "./media/characters/fen/diving.svg"
  1861. }
  1862. },
  1863. maw: {
  1864. height: math.unit(5.03, "feet"),
  1865. name: "Maw",
  1866. image: {
  1867. source: "./media/characters/fen/maw.svg"
  1868. }
  1869. },
  1870. back: {
  1871. height: math.unit(12, "feet"),
  1872. weight: math.unit(1600, "lb"),
  1873. name: "Back",
  1874. image: {
  1875. source: "./media/characters/fen/back.svg",
  1876. },
  1877. info: {
  1878. description: {
  1879. mode: "append",
  1880. text: "\n\nHe is not currently looking at you."
  1881. }
  1882. }
  1883. },
  1884. full: {
  1885. height: math.unit(1.6, "meter"),
  1886. weight: math.unit(2200, "lb"),
  1887. name: "Full",
  1888. image: {
  1889. source: "./media/characters/fen/full.svg",
  1890. extra: 1133/859,
  1891. bottom: 145/1278
  1892. },
  1893. info: {
  1894. description: {
  1895. mode: "append",
  1896. text: "\n\nMunch."
  1897. }
  1898. }
  1899. },
  1900. goo: {
  1901. height: math.unit(4.53, "feet"),
  1902. weight: math.unit(1600, "lb"),
  1903. capacity: math.unit(6, "people"),
  1904. name: "Goo",
  1905. image: {
  1906. source: "./media/characters/fen/goo.svg",
  1907. bottom: 116 / 613
  1908. }
  1909. },
  1910. lounging: {
  1911. height: math.unit(10.52, "feet"),
  1912. weight: math.unit(1600, "lb"),
  1913. name: "Lounging",
  1914. image: {
  1915. source: "./media/characters/fen/lounging.svg"
  1916. }
  1917. },
  1918. },
  1919. [
  1920. {
  1921. name: "Small",
  1922. height: math.unit(2.2428, "meter")
  1923. },
  1924. {
  1925. name: "Normal",
  1926. height: math.unit(12, "feet"),
  1927. default: true,
  1928. },
  1929. {
  1930. name: "Big",
  1931. height: math.unit(20, "feet")
  1932. },
  1933. {
  1934. name: "Minimacro",
  1935. height: math.unit(40, "feet"),
  1936. info: {
  1937. description: {
  1938. mode: "append",
  1939. text: "\n\nTOO DAMN BIG"
  1940. }
  1941. }
  1942. },
  1943. {
  1944. name: "Macro",
  1945. height: math.unit(100, "feet"),
  1946. info: {
  1947. description: {
  1948. mode: "append",
  1949. text: "\n\nTOO DAMN BIG"
  1950. }
  1951. }
  1952. },
  1953. {
  1954. name: "Megamacro",
  1955. height: math.unit(2, "miles")
  1956. },
  1957. {
  1958. name: "Gigamacro",
  1959. height: math.unit(10, "earths")
  1960. },
  1961. ]
  1962. ))
  1963. characterMakers.push(() => makeCharacter(
  1964. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1965. {
  1966. front: {
  1967. height: math.unit(183, "cm"),
  1968. weight: math.unit(80, "kg"),
  1969. name: "Front",
  1970. image: {
  1971. source: "./media/characters/sofia-fluttertail/front.svg",
  1972. bottom: 0.01,
  1973. extra: 2154 / 2081
  1974. }
  1975. },
  1976. frontAlt: {
  1977. height: math.unit(183, "cm"),
  1978. weight: math.unit(80, "kg"),
  1979. name: "Front (alt)",
  1980. image: {
  1981. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1982. }
  1983. },
  1984. back: {
  1985. height: math.unit(183, "cm"),
  1986. weight: math.unit(80, "kg"),
  1987. name: "Back",
  1988. image: {
  1989. source: "./media/characters/sofia-fluttertail/back.svg"
  1990. }
  1991. },
  1992. kneeling: {
  1993. height: math.unit(125, "cm"),
  1994. weight: math.unit(80, "kg"),
  1995. name: "Kneeling",
  1996. image: {
  1997. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1998. extra: 1033 / 977,
  1999. bottom: 23.7 / 1057
  2000. }
  2001. },
  2002. maw: {
  2003. height: math.unit(183 / 5, "cm"),
  2004. name: "Maw",
  2005. image: {
  2006. source: "./media/characters/sofia-fluttertail/maw.svg"
  2007. }
  2008. },
  2009. mawcloseup: {
  2010. height: math.unit(183 / 5 * 0.41, "cm"),
  2011. name: "Maw (Closeup)",
  2012. image: {
  2013. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2014. }
  2015. },
  2016. paws: {
  2017. height: math.unit(1.17, "feet"),
  2018. name: "Paws",
  2019. image: {
  2020. source: "./media/characters/sofia-fluttertail/paws.svg",
  2021. extra: 851 / 851,
  2022. bottom: 17 / 868
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(1.83, "meter")
  2030. },
  2031. {
  2032. name: "Size Thief",
  2033. height: math.unit(18, "feet")
  2034. },
  2035. {
  2036. name: "50 Foot Collie",
  2037. height: math.unit(50, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(96, "feet"),
  2042. default: true
  2043. },
  2044. {
  2045. name: "Megamerger",
  2046. height: math.unit(650, "feet")
  2047. },
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2052. {
  2053. front: {
  2054. height: math.unit(7, "feet"),
  2055. weight: math.unit(100, "kg"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/march/front.svg",
  2059. extra: 1992/1851,
  2060. bottom: 39/2031
  2061. }
  2062. },
  2063. foot: {
  2064. height: math.unit(0.9, "feet"),
  2065. name: "Foot",
  2066. image: {
  2067. source: "./media/characters/march/foot.svg"
  2068. }
  2069. },
  2070. },
  2071. [
  2072. {
  2073. name: "Normal",
  2074. height: math.unit(7.9, "feet")
  2075. },
  2076. {
  2077. name: "Macro",
  2078. height: math.unit(220, "meters")
  2079. },
  2080. {
  2081. name: "Megamacro",
  2082. height: math.unit(2.98, "km"),
  2083. default: true
  2084. },
  2085. {
  2086. name: "Gigamacro",
  2087. height: math.unit(15963, "km")
  2088. },
  2089. {
  2090. name: "Teramacro",
  2091. height: math.unit(2980000000, "km")
  2092. },
  2093. {
  2094. name: "Examacro",
  2095. height: math.unit(250, "parsecs")
  2096. },
  2097. ]
  2098. ))
  2099. characterMakers.push(() => makeCharacter(
  2100. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2101. {
  2102. front: {
  2103. height: math.unit(6, "feet"),
  2104. weight: math.unit(60, "kg"),
  2105. name: "Front",
  2106. image: {
  2107. source: "./media/characters/noir/front.svg",
  2108. extra: 1,
  2109. bottom: 0.032
  2110. }
  2111. },
  2112. },
  2113. [
  2114. {
  2115. name: "Normal",
  2116. height: math.unit(6.6, "feet")
  2117. },
  2118. {
  2119. name: "Macro",
  2120. height: math.unit(500, "feet")
  2121. },
  2122. {
  2123. name: "Megamacro",
  2124. height: math.unit(2.5, "km"),
  2125. default: true
  2126. },
  2127. {
  2128. name: "Gigamacro",
  2129. height: math.unit(22500, "km")
  2130. },
  2131. {
  2132. name: "Teramacro",
  2133. height: math.unit(2500000000, "km")
  2134. },
  2135. {
  2136. name: "Examacro",
  2137. height: math.unit(200, "parsecs")
  2138. },
  2139. ]
  2140. ))
  2141. characterMakers.push(() => makeCharacter(
  2142. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2143. {
  2144. front: {
  2145. height: math.unit(7, "feet"),
  2146. weight: math.unit(100, "kg"),
  2147. name: "Front",
  2148. image: {
  2149. source: "./media/characters/okuri/front.svg",
  2150. extra: 1,
  2151. bottom: 0.037
  2152. }
  2153. },
  2154. back: {
  2155. height: math.unit(7, "feet"),
  2156. weight: math.unit(100, "kg"),
  2157. name: "Back",
  2158. image: {
  2159. source: "./media/characters/okuri/back.svg",
  2160. extra: 1,
  2161. bottom: 0.007
  2162. }
  2163. },
  2164. },
  2165. [
  2166. {
  2167. name: "Megamacro",
  2168. height: math.unit(100, "miles"),
  2169. default: true
  2170. },
  2171. ]
  2172. ))
  2173. characterMakers.push(() => makeCharacter(
  2174. { name: "Manny", species: ["manectric"], 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/manny/front.svg",
  2182. extra: 1,
  2183. bottom: 0.06
  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/manny/back.svg",
  2192. extra: 1,
  2193. bottom: 0.014
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Normal",
  2200. height: math.unit(7, "feet"),
  2201. },
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(78, "feet"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Macro+",
  2209. height: math.unit(300, "meters")
  2210. },
  2211. {
  2212. name: "Macro++",
  2213. height: math.unit(2400, "meters")
  2214. },
  2215. {
  2216. name: "Megamacro",
  2217. height: math.unit(5167, "meters")
  2218. },
  2219. {
  2220. name: "Gigamacro",
  2221. height: math.unit(41769, "miles")
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(7, "feet"),
  2230. weight: math.unit(100, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/adake/front-1.svg"
  2234. }
  2235. },
  2236. frontAlt: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front (Alt)",
  2240. image: {
  2241. source: "./media/characters/adake/front-2.svg",
  2242. extra: 1,
  2243. bottom: 0.01
  2244. }
  2245. },
  2246. back: {
  2247. height: math.unit(7, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Back",
  2250. image: {
  2251. source: "./media/characters/adake/back.svg",
  2252. }
  2253. },
  2254. kneel: {
  2255. height: math.unit(5.385, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Kneeling",
  2258. image: {
  2259. source: "./media/characters/adake/kneel.svg",
  2260. bottom: 0.052
  2261. }
  2262. },
  2263. },
  2264. [
  2265. {
  2266. name: "Normal",
  2267. height: math.unit(7, "feet"),
  2268. },
  2269. {
  2270. name: "Macro",
  2271. height: math.unit(78, "feet"),
  2272. default: true
  2273. },
  2274. {
  2275. name: "Macro+",
  2276. height: math.unit(300, "meters")
  2277. },
  2278. {
  2279. name: "Macro++",
  2280. height: math.unit(2400, "meters")
  2281. },
  2282. {
  2283. name: "Megamacro",
  2284. height: math.unit(5167, "meters")
  2285. },
  2286. {
  2287. name: "Gigamacro",
  2288. height: math.unit(41769, "miles")
  2289. },
  2290. ]
  2291. ))
  2292. characterMakers.push(() => makeCharacter(
  2293. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2294. {
  2295. front: {
  2296. height: math.unit(1.65, "meters"),
  2297. weight: math.unit(50, "kg"),
  2298. name: "Front",
  2299. image: {
  2300. source: "./media/characters/elijah/front.svg",
  2301. extra: 858 / 830,
  2302. bottom: 95.5 / 953.8559
  2303. }
  2304. },
  2305. back: {
  2306. height: math.unit(1.65, "meters"),
  2307. weight: math.unit(50, "kg"),
  2308. name: "Back",
  2309. image: {
  2310. source: "./media/characters/elijah/back.svg",
  2311. extra: 895 / 850,
  2312. bottom: 5.3 / 897.956
  2313. }
  2314. },
  2315. frontNsfw: {
  2316. height: math.unit(1.65, "meters"),
  2317. weight: math.unit(50, "kg"),
  2318. name: "Front (NSFW)",
  2319. image: {
  2320. source: "./media/characters/elijah/front-nsfw.svg",
  2321. extra: 858 / 830,
  2322. bottom: 95.5 / 953.8559
  2323. }
  2324. },
  2325. backNsfw: {
  2326. height: math.unit(1.65, "meters"),
  2327. weight: math.unit(50, "kg"),
  2328. name: "Back (NSFW)",
  2329. image: {
  2330. source: "./media/characters/elijah/back-nsfw.svg",
  2331. extra: 895 / 850,
  2332. bottom: 5.3 / 897.956
  2333. }
  2334. },
  2335. dick: {
  2336. height: math.unit(1, "feet"),
  2337. name: "Dick",
  2338. image: {
  2339. source: "./media/characters/elijah/dick.svg"
  2340. }
  2341. },
  2342. beakOpen: {
  2343. height: math.unit(1.25, "feet"),
  2344. name: "Beak (Open)",
  2345. image: {
  2346. source: "./media/characters/elijah/beak-open.svg"
  2347. }
  2348. },
  2349. beakShut: {
  2350. height: math.unit(1.25, "feet"),
  2351. name: "Beak (Shut)",
  2352. image: {
  2353. source: "./media/characters/elijah/beak-shut.svg"
  2354. }
  2355. },
  2356. footFlexing: {
  2357. height: math.unit(1.61, "feet"),
  2358. name: "Foot (Flexing)",
  2359. image: {
  2360. source: "./media/characters/elijah/foot-flexing.svg"
  2361. }
  2362. },
  2363. footStepping: {
  2364. height: math.unit(1.44, "feet"),
  2365. name: "Foot (Stepping)",
  2366. image: {
  2367. source: "./media/characters/elijah/foot-stepping.svg"
  2368. }
  2369. },
  2370. plantigradeLeg: {
  2371. height: math.unit(2.34, "feet"),
  2372. name: "Plantigrade Leg",
  2373. image: {
  2374. source: "./media/characters/elijah/plantigrade-leg.svg"
  2375. }
  2376. },
  2377. plantigradeFootLeft: {
  2378. height: math.unit(0.9, "feet"),
  2379. name: "Plantigrade Foot (Left)",
  2380. image: {
  2381. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2382. }
  2383. },
  2384. plantigradeFootRight: {
  2385. height: math.unit(0.9, "feet"),
  2386. name: "Plantigrade Foot (Right)",
  2387. image: {
  2388. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2389. }
  2390. },
  2391. },
  2392. [
  2393. {
  2394. name: "Normal",
  2395. height: math.unit(1.65, "meters")
  2396. },
  2397. {
  2398. name: "Macro",
  2399. height: math.unit(55, "meters"),
  2400. default: true
  2401. },
  2402. {
  2403. name: "Macro+",
  2404. height: math.unit(105, "meters")
  2405. },
  2406. ]
  2407. ))
  2408. characterMakers.push(() => makeCharacter(
  2409. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2410. {
  2411. front: {
  2412. height: math.unit(7 + 2/12, "feet"),
  2413. weight: math.unit(320, "kg"),
  2414. name: "Front",
  2415. image: {
  2416. source: "./media/characters/rai/front.svg",
  2417. extra: 1802/1696,
  2418. bottom: 68/1870
  2419. }
  2420. },
  2421. frontDressed: {
  2422. height: math.unit(7 + 2/12, "feet"),
  2423. weight: math.unit(320, "kg"),
  2424. name: "Front (Dressed)",
  2425. image: {
  2426. source: "./media/characters/rai/front-dressed.svg",
  2427. extra: 1802/1696,
  2428. bottom: 68/1870
  2429. }
  2430. },
  2431. side: {
  2432. height: math.unit(7 + 2/12, "feet"),
  2433. weight: math.unit(320, "kg"),
  2434. name: "Side",
  2435. image: {
  2436. source: "./media/characters/rai/side.svg",
  2437. extra: 1789/1710,
  2438. bottom: 115/1904
  2439. }
  2440. },
  2441. back: {
  2442. height: math.unit(7 + 2/12, "feet"),
  2443. weight: math.unit(320, "kg"),
  2444. name: "Back",
  2445. image: {
  2446. source: "./media/characters/rai/back.svg",
  2447. extra: 1770/1707,
  2448. bottom: 28/1798
  2449. }
  2450. },
  2451. feral: {
  2452. height: math.unit(9.5, "feet"),
  2453. weight: math.unit(640, "kg"),
  2454. name: "Feral",
  2455. image: {
  2456. source: "./media/characters/rai/feral.svg",
  2457. extra: 945/553,
  2458. bottom: 176/1121
  2459. }
  2460. },
  2461. dragon: {
  2462. height: math.unit(23, "feet"),
  2463. weight: math.unit(50000, "lb"),
  2464. name: "Dragon",
  2465. image: {
  2466. source: "./media/characters/rai/dragon.svg",
  2467. extra: 2498 / 2030,
  2468. bottom: 85.2 / 2584
  2469. }
  2470. },
  2471. maw: {
  2472. height: math.unit(1.69, "feet"),
  2473. name: "Maw",
  2474. image: {
  2475. source: "./media/characters/rai/maw.svg"
  2476. }
  2477. },
  2478. },
  2479. [
  2480. {
  2481. name: "Normal",
  2482. height: math.unit(7 + 2/12, "feet")
  2483. },
  2484. {
  2485. name: "Big",
  2486. height: math.unit(11, "feet")
  2487. },
  2488. {
  2489. name: "Macro",
  2490. height: math.unit(302, "feet"),
  2491. default: true
  2492. },
  2493. ]
  2494. ))
  2495. characterMakers.push(() => makeCharacter(
  2496. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2497. {
  2498. frontDressed: {
  2499. height: math.unit(216, "feet"),
  2500. weight: math.unit(7000000, "lb"),
  2501. name: "Front (Dressed)",
  2502. image: {
  2503. source: "./media/characters/jazzy/front-dressed.svg",
  2504. extra: 2738 / 2651,
  2505. bottom: 41.8 / 2786
  2506. }
  2507. },
  2508. backDressed: {
  2509. height: math.unit(216, "feet"),
  2510. weight: math.unit(7000000, "lb"),
  2511. name: "Back (Dressed)",
  2512. image: {
  2513. source: "./media/characters/jazzy/back-dressed.svg",
  2514. extra: 2775 / 2673,
  2515. bottom: 36.8 / 2817
  2516. }
  2517. },
  2518. front: {
  2519. height: math.unit(216, "feet"),
  2520. weight: math.unit(7000000, "lb"),
  2521. name: "Front",
  2522. image: {
  2523. source: "./media/characters/jazzy/front.svg",
  2524. extra: 2738 / 2651,
  2525. bottom: 41.8 / 2786
  2526. }
  2527. },
  2528. back: {
  2529. height: math.unit(216, "feet"),
  2530. weight: math.unit(7000000, "lb"),
  2531. name: "Back",
  2532. image: {
  2533. source: "./media/characters/jazzy/back.svg",
  2534. extra: 2775 / 2673,
  2535. bottom: 36.8 / 2817
  2536. }
  2537. },
  2538. maw: {
  2539. height: math.unit(20, "feet"),
  2540. name: "Maw",
  2541. image: {
  2542. source: "./media/characters/jazzy/maw.svg"
  2543. }
  2544. },
  2545. paws: {
  2546. height: math.unit(27.5, "feet"),
  2547. name: "Paws",
  2548. image: {
  2549. source: "./media/characters/jazzy/paws.svg"
  2550. }
  2551. },
  2552. eye: {
  2553. height: math.unit(4.4, "feet"),
  2554. name: "Eye",
  2555. image: {
  2556. source: "./media/characters/jazzy/eye.svg"
  2557. }
  2558. },
  2559. droneOffense: {
  2560. height: math.unit(9.5, "inches"),
  2561. name: "Drone (Offense)",
  2562. image: {
  2563. source: "./media/characters/jazzy/drone-offense.svg"
  2564. }
  2565. },
  2566. droneRecon: {
  2567. height: math.unit(9.5, "inches"),
  2568. name: "Drone (Recon)",
  2569. image: {
  2570. source: "./media/characters/jazzy/drone-recon.svg"
  2571. }
  2572. },
  2573. droneDefense: {
  2574. height: math.unit(9.5, "inches"),
  2575. name: "Drone (Defense)",
  2576. image: {
  2577. source: "./media/characters/jazzy/drone-defense.svg"
  2578. }
  2579. },
  2580. },
  2581. [
  2582. {
  2583. name: "Macro",
  2584. height: math.unit(216, "feet"),
  2585. default: true
  2586. },
  2587. ]
  2588. ))
  2589. characterMakers.push(() => makeCharacter(
  2590. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2591. {
  2592. front: {
  2593. height: math.unit(9 + 6/12, "feet"),
  2594. weight: math.unit(700, "lb"),
  2595. name: "Front",
  2596. image: {
  2597. source: "./media/characters/flamm/front.svg",
  2598. extra: 1751/1632,
  2599. bottom: 46/1797
  2600. }
  2601. },
  2602. buff: {
  2603. height: math.unit(9 + 6/12, "feet"),
  2604. weight: math.unit(950, "lb"),
  2605. name: "Buff",
  2606. image: {
  2607. source: "./media/characters/flamm/buff.svg",
  2608. extra: 3018/2874,
  2609. bottom: 221/3239
  2610. }
  2611. },
  2612. },
  2613. [
  2614. {
  2615. name: "Normal",
  2616. height: math.unit(9.5, "feet")
  2617. },
  2618. {
  2619. name: "Macro",
  2620. height: math.unit(200, "feet"),
  2621. default: true
  2622. },
  2623. ]
  2624. ))
  2625. characterMakers.push(() => makeCharacter(
  2626. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2627. {
  2628. front: {
  2629. height: math.unit(5 + 3/12, "feet"),
  2630. weight: math.unit(60, "kg"),
  2631. name: "Front",
  2632. image: {
  2633. source: "./media/characters/zephiro/front.svg",
  2634. extra: 2309 / 2162,
  2635. bottom: 0.069
  2636. }
  2637. },
  2638. side: {
  2639. height: math.unit(5 + 3/12, "feet"),
  2640. weight: math.unit(60, "kg"),
  2641. name: "Side",
  2642. image: {
  2643. source: "./media/characters/zephiro/side.svg",
  2644. extra: 2403 / 2279,
  2645. bottom: 0.015
  2646. }
  2647. },
  2648. back: {
  2649. height: math.unit(5 + 3/12, "feet"),
  2650. weight: math.unit(60, "kg"),
  2651. name: "Back",
  2652. image: {
  2653. source: "./media/characters/zephiro/back.svg",
  2654. extra: 2373 / 2244,
  2655. bottom: 0.013
  2656. }
  2657. },
  2658. hand: {
  2659. height: math.unit(0.68, "feet"),
  2660. name: "Hand",
  2661. image: {
  2662. source: "./media/characters/zephiro/hand.svg"
  2663. }
  2664. },
  2665. paw: {
  2666. height: math.unit(1, "feet"),
  2667. name: "Paw",
  2668. image: {
  2669. source: "./media/characters/zephiro/paw.svg"
  2670. }
  2671. },
  2672. beans: {
  2673. height: math.unit(0.93, "feet"),
  2674. name: "Beans",
  2675. image: {
  2676. source: "./media/characters/zephiro/beans.svg"
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Micro",
  2683. height: math.unit(3, "inches")
  2684. },
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(5 + 3 / 12, "feet"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(118, "feet")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(5, "feet"),
  2701. weight: math.unit(90, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/fory/front.svg",
  2705. extra: 2862 / 2674,
  2706. bottom: 180 / 3043.8
  2707. }
  2708. },
  2709. back: {
  2710. height: math.unit(5, "feet"),
  2711. weight: math.unit(90, "kg"),
  2712. name: "Back",
  2713. image: {
  2714. source: "./media/characters/fory/back.svg",
  2715. extra: 2962 / 2791,
  2716. bottom: 106 / 3071.8
  2717. }
  2718. },
  2719. foot: {
  2720. height: math.unit(2.14, "feet"),
  2721. name: "Foot",
  2722. image: {
  2723. source: "./media/characters/fory/foot.svg"
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Normal",
  2730. height: math.unit(5, "feet")
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(50, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Megamacro",
  2739. height: math.unit(10, "miles")
  2740. },
  2741. {
  2742. name: "Gigamacro",
  2743. height: math.unit(5, "earths")
  2744. },
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2749. {
  2750. front: {
  2751. height: math.unit(7, "feet"),
  2752. weight: math.unit(90, "kg"),
  2753. name: "Front",
  2754. image: {
  2755. source: "./media/characters/kurrikage/front.svg",
  2756. extra: 1845/1733,
  2757. bottom: 119/1964
  2758. }
  2759. },
  2760. back: {
  2761. height: math.unit(7, "feet"),
  2762. weight: math.unit(90, "kg"),
  2763. name: "Back",
  2764. image: {
  2765. source: "./media/characters/kurrikage/back.svg",
  2766. extra: 1790/1677,
  2767. bottom: 61/1851
  2768. }
  2769. },
  2770. dressed: {
  2771. height: math.unit(7, "feet"),
  2772. weight: math.unit(90, "kg"),
  2773. name: "Dressed",
  2774. image: {
  2775. source: "./media/characters/kurrikage/dressed.svg",
  2776. extra: 1845/1733,
  2777. bottom: 119/1964
  2778. }
  2779. },
  2780. foot: {
  2781. height: math.unit(1.5, "feet"),
  2782. name: "Foot",
  2783. image: {
  2784. source: "./media/characters/kurrikage/foot.svg"
  2785. }
  2786. },
  2787. staff: {
  2788. height: math.unit(6.7, "feet"),
  2789. name: "Staff",
  2790. image: {
  2791. source: "./media/characters/kurrikage/staff.svg"
  2792. }
  2793. },
  2794. peek: {
  2795. height: math.unit(1.05, "feet"),
  2796. name: "Peeking",
  2797. image: {
  2798. source: "./media/characters/kurrikage/peek.svg",
  2799. bottom: 0.08
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(12, "feet"),
  2807. default: true
  2808. },
  2809. {
  2810. name: "Big",
  2811. height: math.unit(20, "feet")
  2812. },
  2813. {
  2814. name: "Macro",
  2815. height: math.unit(500, "feet")
  2816. },
  2817. {
  2818. name: "Megamacro",
  2819. height: math.unit(20, "miles")
  2820. },
  2821. ]
  2822. ))
  2823. characterMakers.push(() => makeCharacter(
  2824. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2825. {
  2826. front: {
  2827. height: math.unit(6, "feet"),
  2828. weight: math.unit(75, "kg"),
  2829. name: "Front",
  2830. image: {
  2831. source: "./media/characters/shingo/front.svg",
  2832. extra: 1900/1825,
  2833. bottom: 82/1982
  2834. }
  2835. },
  2836. side: {
  2837. height: math.unit(6, "feet"),
  2838. weight: math.unit(75, "kg"),
  2839. name: "Side",
  2840. image: {
  2841. source: "./media/characters/shingo/side.svg",
  2842. extra: 1930/1865,
  2843. bottom: 16/1946
  2844. }
  2845. },
  2846. back: {
  2847. height: math.unit(6, "feet"),
  2848. weight: math.unit(75, "kg"),
  2849. name: "Back",
  2850. image: {
  2851. source: "./media/characters/shingo/back.svg",
  2852. extra: 1922/1852,
  2853. bottom: 16/1938
  2854. }
  2855. },
  2856. frontDressed: {
  2857. height: math.unit(6, "feet"),
  2858. weight: math.unit(150, "lb"),
  2859. name: "Front-dressed",
  2860. image: {
  2861. source: "./media/characters/shingo/front-dressed.svg",
  2862. extra: 1900/1825,
  2863. bottom: 82/1982
  2864. }
  2865. },
  2866. paw: {
  2867. height: math.unit(1.29, "feet"),
  2868. name: "Paw",
  2869. image: {
  2870. source: "./media/characters/shingo/paw.svg"
  2871. }
  2872. },
  2873. hand: {
  2874. height: math.unit(1.07, "feet"),
  2875. name: "Hand",
  2876. image: {
  2877. source: "./media/characters/shingo/hand.svg"
  2878. }
  2879. },
  2880. frontAlt: {
  2881. height: math.unit(6, "feet"),
  2882. weight: math.unit(75, "kg"),
  2883. name: "Front (Alt)",
  2884. image: {
  2885. source: "./media/characters/shingo/front-alt.svg",
  2886. extra: 3511 / 3338,
  2887. bottom: 0.005
  2888. }
  2889. },
  2890. frontAlt2: {
  2891. height: math.unit(6, "feet"),
  2892. weight: math.unit(75, "kg"),
  2893. name: "Front (Alt 2)",
  2894. image: {
  2895. source: "./media/characters/shingo/front-alt-2.svg",
  2896. extra: 706/681,
  2897. bottom: 11/717
  2898. }
  2899. },
  2900. pawAlt: {
  2901. height: math.unit(1, "feet"),
  2902. name: "Paw (Alt)",
  2903. image: {
  2904. source: "./media/characters/shingo/paw-alt.svg"
  2905. }
  2906. },
  2907. },
  2908. [
  2909. {
  2910. name: "Micro",
  2911. height: math.unit(4, "inches")
  2912. },
  2913. {
  2914. name: "Normal",
  2915. height: math.unit(6, "feet"),
  2916. default: true
  2917. },
  2918. {
  2919. name: "Macro",
  2920. height: math.unit(108, "feet")
  2921. },
  2922. {
  2923. name: "Macro+",
  2924. height: math.unit(1500, "feet")
  2925. },
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2930. {
  2931. side: {
  2932. height: math.unit(6, "feet"),
  2933. weight: math.unit(75, "kg"),
  2934. name: "Side",
  2935. image: {
  2936. source: "./media/characters/aigey/side.svg"
  2937. }
  2938. },
  2939. },
  2940. [
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(200, "feet"),
  2944. default: true
  2945. },
  2946. {
  2947. name: "Megamacro",
  2948. height: math.unit(100, "miles")
  2949. },
  2950. ]
  2951. )
  2952. )
  2953. characterMakers.push(() => makeCharacter(
  2954. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2955. {
  2956. front: {
  2957. height: math.unit(5 + 5 / 12, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Front",
  2960. image: {
  2961. source: "./media/characters/natasha/front.svg",
  2962. extra: 859 / 824,
  2963. bottom: 23 / 879.6
  2964. }
  2965. },
  2966. frontNsfw: {
  2967. height: math.unit(5 + 5 / 12, "feet"),
  2968. weight: math.unit(75, "kg"),
  2969. name: "Front (NSFW)",
  2970. image: {
  2971. source: "./media/characters/natasha/front-nsfw.svg",
  2972. extra: 859 / 824,
  2973. bottom: 23 / 879.6
  2974. }
  2975. },
  2976. frontErect: {
  2977. height: math.unit(5 + 5 / 12, "feet"),
  2978. weight: math.unit(75, "kg"),
  2979. name: "Front (Erect)",
  2980. image: {
  2981. source: "./media/characters/natasha/front-erect.svg",
  2982. extra: 859 / 824,
  2983. bottom: 23 / 879.6
  2984. }
  2985. },
  2986. back: {
  2987. height: math.unit(5 + 5 / 12, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Back",
  2990. image: {
  2991. source: "./media/characters/natasha/back.svg",
  2992. extra: 887.9 / 852.6,
  2993. bottom: 9.7 / 896.4
  2994. }
  2995. },
  2996. backAlt: {
  2997. height: math.unit(5 + 5 / 12, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Back (Alt)",
  3000. image: {
  3001. source: "./media/characters/natasha/back-alt.svg",
  3002. extra: 1236.7 / 1192,
  3003. bottom: 22.3 / 1258.2
  3004. }
  3005. },
  3006. dick: {
  3007. height: math.unit(1.772, "feet"),
  3008. name: "Dick",
  3009. image: {
  3010. source: "./media/characters/natasha/dick.svg"
  3011. }
  3012. },
  3013. paw: {
  3014. height: math.unit(0.250, "meters"),
  3015. name: "Paw",
  3016. image: {
  3017. source: "./media/characters/natasha/paw.svg"
  3018. }
  3019. },
  3020. },
  3021. [
  3022. {
  3023. name: "Normal",
  3024. height: math.unit(5 + 5 / 12, "feet")
  3025. },
  3026. {
  3027. name: "Large",
  3028. height: math.unit(12, "feet")
  3029. },
  3030. {
  3031. name: "Macro",
  3032. height: math.unit(100, "feet"),
  3033. default: true
  3034. },
  3035. {
  3036. name: "Macro+",
  3037. height: math.unit(260, "feet")
  3038. },
  3039. {
  3040. name: "Macro++",
  3041. height: math.unit(1, "mile")
  3042. },
  3043. ]
  3044. ))
  3045. characterMakers.push(() => makeCharacter(
  3046. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3047. {
  3048. front: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front",
  3052. image: {
  3053. source: "./media/characters/malik/front.svg"
  3054. }
  3055. },
  3056. side: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Side",
  3060. image: {
  3061. source: "./media/characters/malik/side.svg",
  3062. extra: 1.1539
  3063. }
  3064. },
  3065. back: {
  3066. height: math.unit(6, "feet"),
  3067. weight: math.unit(75, "kg"),
  3068. name: "Back",
  3069. image: {
  3070. source: "./media/characters/malik/back.svg"
  3071. }
  3072. },
  3073. },
  3074. [
  3075. {
  3076. name: "Macro",
  3077. height: math.unit(156, "feet"),
  3078. default: true
  3079. },
  3080. {
  3081. name: "Macro+",
  3082. height: math.unit(1188, "feet")
  3083. },
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3088. {
  3089. front: {
  3090. height: math.unit(6, "feet"),
  3091. weight: math.unit(75, "kg"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/sefer/front.svg",
  3095. extra: 848 / 659,
  3096. bottom: 28.3 / 876.442
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(6, "feet"),
  3101. weight: math.unit(75, "kg"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/sefer/back.svg",
  3105. extra: 864 / 695,
  3106. bottom: 10 / 871
  3107. }
  3108. },
  3109. frontDressed: {
  3110. height: math.unit(6, "feet"),
  3111. weight: math.unit(75, "kg"),
  3112. name: "Front (Dressed)",
  3113. image: {
  3114. source: "./media/characters/sefer/front-dressed.svg",
  3115. extra: 839 / 653,
  3116. bottom: 37.6 / 878
  3117. }
  3118. },
  3119. },
  3120. [
  3121. {
  3122. name: "Normal",
  3123. height: math.unit(6, "feet"),
  3124. default: true
  3125. },
  3126. ]
  3127. ))
  3128. characterMakers.push(() => makeCharacter(
  3129. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3130. {
  3131. body: {
  3132. height: math.unit(2.2428, "meter"),
  3133. weight: math.unit(124.738, "kg"),
  3134. name: "Body",
  3135. image: {
  3136. extra: 1225 / 1050,
  3137. source: "./media/characters/north/front.svg"
  3138. }
  3139. }
  3140. },
  3141. [
  3142. {
  3143. name: "Micro",
  3144. height: math.unit(4, "inches")
  3145. },
  3146. {
  3147. name: "Macro",
  3148. height: math.unit(63, "meters")
  3149. },
  3150. {
  3151. name: "Megamacro",
  3152. height: math.unit(101, "miles"),
  3153. default: true
  3154. }
  3155. ]
  3156. ))
  3157. characterMakers.push(() => makeCharacter(
  3158. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3159. {
  3160. angled: {
  3161. height: math.unit(4, "meter"),
  3162. weight: math.unit(150, "kg"),
  3163. name: "Angled",
  3164. image: {
  3165. source: "./media/characters/talan/angled-sfw.svg",
  3166. bottom: 29 / 3734
  3167. }
  3168. },
  3169. angledNsfw: {
  3170. height: math.unit(4, "meter"),
  3171. weight: math.unit(150, "kg"),
  3172. name: "Angled (NSFW)",
  3173. image: {
  3174. source: "./media/characters/talan/angled-nsfw.svg",
  3175. bottom: 29 / 3734
  3176. }
  3177. },
  3178. frontNsfw: {
  3179. height: math.unit(4, "meter"),
  3180. weight: math.unit(150, "kg"),
  3181. name: "Front (NSFW)",
  3182. image: {
  3183. source: "./media/characters/talan/front-nsfw.svg",
  3184. bottom: 29 / 3734
  3185. }
  3186. },
  3187. sideNsfw: {
  3188. height: math.unit(4, "meter"),
  3189. weight: math.unit(150, "kg"),
  3190. name: "Side (NSFW)",
  3191. image: {
  3192. source: "./media/characters/talan/side-nsfw.svg",
  3193. bottom: 29 / 3734
  3194. }
  3195. },
  3196. back: {
  3197. height: math.unit(4, "meter"),
  3198. weight: math.unit(150, "kg"),
  3199. name: "Back",
  3200. image: {
  3201. source: "./media/characters/talan/back.svg"
  3202. }
  3203. },
  3204. dickBottom: {
  3205. height: math.unit(0.621, "meter"),
  3206. name: "Dick (Bottom)",
  3207. image: {
  3208. source: "./media/characters/talan/dick-bottom.svg"
  3209. }
  3210. },
  3211. dickTop: {
  3212. height: math.unit(0.621, "meter"),
  3213. name: "Dick (Top)",
  3214. image: {
  3215. source: "./media/characters/talan/dick-top.svg"
  3216. }
  3217. },
  3218. dickSide: {
  3219. height: math.unit(0.305, "meter"),
  3220. name: "Dick (Side)",
  3221. image: {
  3222. source: "./media/characters/talan/dick-side.svg"
  3223. }
  3224. },
  3225. dickFront: {
  3226. height: math.unit(0.305, "meter"),
  3227. name: "Dick (Front)",
  3228. image: {
  3229. source: "./media/characters/talan/dick-front.svg"
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(4, "meters")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(100, "meters")
  3241. },
  3242. {
  3243. name: "Megamacro",
  3244. height: math.unit(2, "miles"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Gigamacro",
  3249. height: math.unit(5000, "miles")
  3250. },
  3251. {
  3252. name: "Teramacro",
  3253. height: math.unit(100, "parsecs")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(90, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/gael'rathus/front.svg"
  3266. }
  3267. },
  3268. frontAlt: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(90, "kg"),
  3271. name: "Front (alt)",
  3272. image: {
  3273. source: "./media/characters/gael'rathus/front-alt.svg"
  3274. }
  3275. },
  3276. frontAlt2: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(90, "kg"),
  3279. name: "Front (alt 2)",
  3280. image: {
  3281. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(9, "feet"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Large",
  3293. height: math.unit(25, "feet")
  3294. },
  3295. {
  3296. name: "Macro",
  3297. height: math.unit(0.25, "miles")
  3298. },
  3299. {
  3300. name: "Megamacro",
  3301. height: math.unit(10, "miles")
  3302. }
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3307. {
  3308. side: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(140, "kg"),
  3311. name: "Side",
  3312. image: {
  3313. source: "./media/characters/sosha/side.svg",
  3314. bottom: 0.042
  3315. }
  3316. },
  3317. },
  3318. [
  3319. {
  3320. name: "Normal",
  3321. height: math.unit(12, "feet"),
  3322. default: true
  3323. }
  3324. ]
  3325. ))
  3326. characterMakers.push(() => makeCharacter(
  3327. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3328. {
  3329. side: {
  3330. height: math.unit(5 + 5 / 12, "feet"),
  3331. weight: math.unit(170, "kg"),
  3332. name: "Side",
  3333. image: {
  3334. source: "./media/characters/runnola/side.svg",
  3335. extra: 741 / 448,
  3336. bottom: 0.05
  3337. }
  3338. },
  3339. },
  3340. [
  3341. {
  3342. name: "Small",
  3343. height: math.unit(3, "feet")
  3344. },
  3345. {
  3346. name: "Normal",
  3347. height: math.unit(5 + 5 / 12, "feet"),
  3348. default: true
  3349. },
  3350. {
  3351. name: "Big",
  3352. height: math.unit(10, "feet")
  3353. },
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3358. {
  3359. front: {
  3360. height: math.unit(2, "meter"),
  3361. weight: math.unit(50, "kg"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/kurribird/front.svg",
  3365. bottom: 0.015
  3366. }
  3367. },
  3368. frontAlt: {
  3369. height: math.unit(1.5, "meter"),
  3370. weight: math.unit(50, "kg"),
  3371. name: "Front (Alt)",
  3372. image: {
  3373. source: "./media/characters/kurribird/front-alt.svg",
  3374. extra: 1.45
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(7, "feet")
  3382. },
  3383. {
  3384. name: "Big",
  3385. height: math.unit(12, "feet"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(1500, "feet")
  3391. },
  3392. {
  3393. name: "Megamacro",
  3394. height: math.unit(2, "miles")
  3395. }
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(2, "meter"),
  3403. weight: math.unit(80, "kg"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/elbial/front.svg",
  3407. extra: 1643 / 1556,
  3408. bottom: 60.2 / 1696
  3409. }
  3410. },
  3411. side: {
  3412. height: math.unit(2, "meter"),
  3413. weight: math.unit(80, "kg"),
  3414. name: "Side",
  3415. image: {
  3416. source: "./media/characters/elbial/side.svg",
  3417. extra: 1630 / 1565,
  3418. bottom: 71.5 / 1697
  3419. }
  3420. },
  3421. back: {
  3422. height: math.unit(2, "meter"),
  3423. weight: math.unit(80, "kg"),
  3424. name: "Back",
  3425. image: {
  3426. source: "./media/characters/elbial/back.svg",
  3427. extra: 1668 / 1595,
  3428. bottom: 5.6 / 1672
  3429. }
  3430. },
  3431. frontDressed: {
  3432. height: math.unit(2, "meter"),
  3433. weight: math.unit(80, "kg"),
  3434. name: "Front (Dressed)",
  3435. image: {
  3436. source: "./media/characters/elbial/front-dressed.svg",
  3437. extra: 1653 / 1584,
  3438. bottom: 57 / 1708
  3439. }
  3440. },
  3441. genitals: {
  3442. height: math.unit(2 / 3.367, "meter"),
  3443. name: "Genitals",
  3444. image: {
  3445. source: "./media/characters/elbial/genitals.svg"
  3446. }
  3447. },
  3448. },
  3449. [
  3450. {
  3451. name: "Large",
  3452. height: math.unit(100, "feet")
  3453. },
  3454. {
  3455. name: "Macro",
  3456. height: math.unit(500, "feet"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(10, "miles")
  3462. },
  3463. {
  3464. name: "Gigamacro",
  3465. height: math.unit(25000, "miles")
  3466. },
  3467. {
  3468. name: "Full-Size",
  3469. height: math.unit(8000000, "gigaparsecs")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3475. {
  3476. front: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(60, "kg"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/noah/front.svg"
  3482. }
  3483. },
  3484. talons: {
  3485. height: math.unit(0.315, "meter"),
  3486. name: "Talons",
  3487. image: {
  3488. source: "./media/characters/noah/talons.svg"
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Large",
  3495. height: math.unit(50, "feet")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(750, "feet"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Megamacro",
  3504. height: math.unit(50, "miles")
  3505. },
  3506. {
  3507. name: "Gigamacro",
  3508. height: math.unit(100000, "miles")
  3509. },
  3510. {
  3511. name: "Full-Size",
  3512. height: math.unit(3000000000, "miles")
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(80, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/natalya/front.svg"
  3525. }
  3526. },
  3527. back: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(80, "kg"),
  3530. name: "Back",
  3531. image: {
  3532. source: "./media/characters/natalya/back.svg"
  3533. }
  3534. }
  3535. },
  3536. [
  3537. {
  3538. name: "Normal",
  3539. height: math.unit(150, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Megamacro",
  3544. height: math.unit(5, "miles")
  3545. },
  3546. {
  3547. name: "Full-Size",
  3548. height: math.unit(600, "kiloparsecs")
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(50, "kg"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/erestrebah/front.svg",
  3561. extra: 1262/1162,
  3562. bottom: 96/1358
  3563. }
  3564. },
  3565. back: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(50, "kg"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/erestrebah/back.svg",
  3571. extra: 1257/1139,
  3572. bottom: 13/1270
  3573. }
  3574. },
  3575. wing: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(50, "kg"),
  3578. name: "Wing",
  3579. image: {
  3580. source: "./media/characters/erestrebah/wing.svg",
  3581. extra: 1262/1162,
  3582. bottom: 96/1358
  3583. }
  3584. },
  3585. mouth: {
  3586. height: math.unit(0.39, "feet"),
  3587. name: "Mouth",
  3588. image: {
  3589. source: "./media/characters/erestrebah/mouth.svg"
  3590. }
  3591. }
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(10, "feet")
  3597. },
  3598. {
  3599. name: "Large",
  3600. height: math.unit(50, "feet"),
  3601. default: true
  3602. },
  3603. {
  3604. name: "Macro",
  3605. height: math.unit(300, "feet")
  3606. },
  3607. {
  3608. name: "Macro+",
  3609. height: math.unit(750, "feet")
  3610. },
  3611. {
  3612. name: "Megamacro",
  3613. height: math.unit(3, "miles")
  3614. }
  3615. ]
  3616. ))
  3617. characterMakers.push(() => makeCharacter(
  3618. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3619. {
  3620. front: {
  3621. height: math.unit(2, "meter"),
  3622. weight: math.unit(80, "kg"),
  3623. name: "Front",
  3624. image: {
  3625. source: "./media/characters/jennifer/front.svg",
  3626. bottom: 0.11,
  3627. extra: 1.16
  3628. }
  3629. },
  3630. frontAlt: {
  3631. height: math.unit(2, "meter"),
  3632. weight: math.unit(80, "kg"),
  3633. name: "Front (Alt)",
  3634. image: {
  3635. source: "./media/characters/jennifer/front-alt.svg"
  3636. }
  3637. }
  3638. },
  3639. [
  3640. {
  3641. name: "Canon Height",
  3642. height: math.unit(120, "feet"),
  3643. default: true
  3644. },
  3645. {
  3646. name: "Macro+",
  3647. height: math.unit(300, "feet")
  3648. },
  3649. {
  3650. name: "Megamacro",
  3651. height: math.unit(20000, "feet")
  3652. }
  3653. ]
  3654. ))
  3655. characterMakers.push(() => makeCharacter(
  3656. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3657. {
  3658. front: {
  3659. height: math.unit(2, "meter"),
  3660. weight: math.unit(50, "kg"),
  3661. name: "Front",
  3662. image: {
  3663. source: "./media/characters/kalista/front.svg",
  3664. extra: 1314/1145,
  3665. bottom: 101/1415
  3666. }
  3667. },
  3668. back: {
  3669. height: math.unit(2, "meter"),
  3670. weight: math.unit(50, "kg"),
  3671. name: "Back",
  3672. image: {
  3673. source: "./media/characters/kalista/back.svg",
  3674. extra: 1366 / 1156,
  3675. bottom: 33.9 / 1362.78
  3676. }
  3677. }
  3678. },
  3679. [
  3680. {
  3681. name: "Uncomfortably Small",
  3682. height: math.unit(10, "feet")
  3683. },
  3684. {
  3685. name: "Small",
  3686. height: math.unit(30, "feet")
  3687. },
  3688. {
  3689. name: "Macro",
  3690. height: math.unit(100, "feet"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Macro+",
  3695. height: math.unit(2000, "feet")
  3696. },
  3697. {
  3698. name: "True Form",
  3699. height: math.unit(8924, "miles")
  3700. }
  3701. ]
  3702. ))
  3703. characterMakers.push(() => makeCharacter(
  3704. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3705. {
  3706. front: {
  3707. height: math.unit(2, "meter"),
  3708. weight: math.unit(120, "kg"),
  3709. name: "Front",
  3710. image: {
  3711. source: "./media/characters/ggv/front.svg"
  3712. }
  3713. },
  3714. side: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(120, "kg"),
  3717. name: "Side",
  3718. image: {
  3719. source: "./media/characters/ggv/side.svg"
  3720. }
  3721. }
  3722. },
  3723. [
  3724. {
  3725. name: "Extremely Puny",
  3726. height: math.unit(9 + 5 / 12, "feet")
  3727. },
  3728. {
  3729. name: "Horribly Small",
  3730. height: math.unit(47.7, "miles"),
  3731. default: true
  3732. },
  3733. {
  3734. name: "Reasonably Sized",
  3735. height: math.unit(25000, "parsecs")
  3736. },
  3737. {
  3738. name: "Slightly Uncompressed",
  3739. height: math.unit(7.77e31, "parsecs")
  3740. },
  3741. {
  3742. name: "Omniversal",
  3743. height: math.unit(1e300, "meters")
  3744. },
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(2, "meter"),
  3752. weight: math.unit(75, "lb"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/napalm/front.svg"
  3756. }
  3757. },
  3758. back: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(75, "lb"),
  3761. name: "Back",
  3762. image: {
  3763. source: "./media/characters/napalm/back.svg"
  3764. }
  3765. }
  3766. },
  3767. [
  3768. {
  3769. name: "Standard",
  3770. height: math.unit(55, "feet"),
  3771. default: true
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3777. {
  3778. front: {
  3779. height: math.unit(7 + 5 / 6, "feet"),
  3780. weight: math.unit(325, "lb"),
  3781. name: "Front",
  3782. image: {
  3783. source: "./media/characters/asana/front.svg",
  3784. extra: 1133 / 1060,
  3785. bottom: 15.2 / 1148.6
  3786. }
  3787. },
  3788. back: {
  3789. height: math.unit(7 + 5 / 6, "feet"),
  3790. weight: math.unit(325, "lb"),
  3791. name: "Back",
  3792. image: {
  3793. source: "./media/characters/asana/back.svg",
  3794. extra: 1114 / 1043,
  3795. bottom: 5 / 1120
  3796. }
  3797. },
  3798. dressedDark: {
  3799. height: math.unit(7 + 5 / 6, "feet"),
  3800. weight: math.unit(325, "lb"),
  3801. name: "Dressed (Dark)",
  3802. image: {
  3803. source: "./media/characters/asana/dressed-dark.svg",
  3804. extra: 1133 / 1060,
  3805. bottom: 15.2 / 1148.6
  3806. }
  3807. },
  3808. dressedLight: {
  3809. height: math.unit(7 + 5 / 6, "feet"),
  3810. weight: math.unit(325, "lb"),
  3811. name: "Dressed (Light)",
  3812. image: {
  3813. source: "./media/characters/asana/dressed-light.svg",
  3814. extra: 1133 / 1060,
  3815. bottom: 15.2 / 1148.6
  3816. }
  3817. },
  3818. },
  3819. [
  3820. {
  3821. name: "Standard",
  3822. height: math.unit(7 + 5 / 6, "feet"),
  3823. default: true
  3824. },
  3825. {
  3826. name: "Large",
  3827. height: math.unit(10, "meters")
  3828. },
  3829. {
  3830. name: "Macro",
  3831. height: math.unit(2500, "meters")
  3832. },
  3833. {
  3834. name: "Megamacro",
  3835. height: math.unit(5e6, "meters")
  3836. },
  3837. {
  3838. name: "Examacro",
  3839. height: math.unit(5e12, "lightyears")
  3840. },
  3841. {
  3842. name: "Max Size",
  3843. height: math.unit(1e31, "lightyears")
  3844. }
  3845. ]
  3846. ))
  3847. characterMakers.push(() => makeCharacter(
  3848. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3849. {
  3850. front: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(60, "kg"),
  3853. name: "Front",
  3854. image: {
  3855. source: "./media/characters/ebony/front.svg",
  3856. bottom: 0.03,
  3857. extra: 1045 / 810 + 0.03
  3858. }
  3859. },
  3860. side: {
  3861. height: math.unit(2, "meter"),
  3862. weight: math.unit(60, "kg"),
  3863. name: "Side",
  3864. image: {
  3865. source: "./media/characters/ebony/side.svg",
  3866. bottom: 0.03,
  3867. extra: 1045 / 810 + 0.03
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(60, "kg"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/ebony/back.svg",
  3876. bottom: 0.01,
  3877. extra: 1045 / 810 + 0.01
  3878. }
  3879. },
  3880. },
  3881. [
  3882. // TODO check why I did this lol
  3883. {
  3884. name: "Standard",
  3885. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3886. default: true
  3887. },
  3888. {
  3889. name: "Macro",
  3890. height: math.unit(200, "feet")
  3891. },
  3892. {
  3893. name: "Gigamacro",
  3894. height: math.unit(13000, "km")
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3900. {
  3901. front: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(175, "lb"),
  3904. name: "Front",
  3905. image: {
  3906. source: "./media/characters/mountain/front.svg",
  3907. extra: 972 / 955,
  3908. bottom: 64 / 1036.6
  3909. }
  3910. },
  3911. back: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(175, "lb"),
  3914. name: "Back",
  3915. image: {
  3916. source: "./media/characters/mountain/back.svg",
  3917. extra: 970 / 950,
  3918. bottom: 28.25 / 999
  3919. }
  3920. },
  3921. },
  3922. [
  3923. {
  3924. name: "Large",
  3925. height: math.unit(20, "meters")
  3926. },
  3927. {
  3928. name: "Macro",
  3929. height: math.unit(300, "meters")
  3930. },
  3931. {
  3932. name: "Gigamacro",
  3933. height: math.unit(10000, "km"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Examacro",
  3938. height: math.unit(10e9, "lightyears")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(8, "feet"),
  3947. weight: math.unit(500, "lb"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/rick/front.svg"
  3951. }
  3952. }
  3953. },
  3954. [
  3955. {
  3956. name: "Normal",
  3957. height: math.unit(8, "feet"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Macro",
  3962. height: math.unit(5, "km")
  3963. }
  3964. ]
  3965. ))
  3966. characterMakers.push(() => makeCharacter(
  3967. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3968. {
  3969. front: {
  3970. height: math.unit(8, "feet"),
  3971. weight: math.unit(120, "lb"),
  3972. name: "Front",
  3973. image: {
  3974. source: "./media/characters/ona/front.svg"
  3975. }
  3976. },
  3977. frontAlt: {
  3978. height: math.unit(8, "feet"),
  3979. weight: math.unit(120, "lb"),
  3980. name: "Front (Alt)",
  3981. image: {
  3982. source: "./media/characters/ona/front-alt.svg"
  3983. }
  3984. },
  3985. back: {
  3986. height: math.unit(8, "feet"),
  3987. weight: math.unit(120, "lb"),
  3988. name: "Back",
  3989. image: {
  3990. source: "./media/characters/ona/back.svg"
  3991. }
  3992. },
  3993. foot: {
  3994. height: math.unit(1.1, "feet"),
  3995. name: "Foot",
  3996. image: {
  3997. source: "./media/characters/ona/foot.svg"
  3998. }
  3999. }
  4000. },
  4001. [
  4002. {
  4003. name: "Megamacro",
  4004. height: math.unit(70, "km"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Gigamacro",
  4009. height: math.unit(681818, "miles")
  4010. },
  4011. {
  4012. name: "Examacro",
  4013. height: math.unit(3800000, "lightyears")
  4014. },
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(12, "feet"),
  4022. weight: math.unit(3000, "lb"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/mech/front.svg",
  4026. extra: 2900 / 2770,
  4027. bottom: 110 / 3010
  4028. }
  4029. },
  4030. back: {
  4031. height: math.unit(12, "feet"),
  4032. weight: math.unit(3000, "lb"),
  4033. name: "Back",
  4034. image: {
  4035. source: "./media/characters/mech/back.svg",
  4036. extra: 3011 / 2890,
  4037. bottom: 94 / 3105
  4038. }
  4039. },
  4040. maw: {
  4041. height: math.unit(3.07, "feet"),
  4042. name: "Maw",
  4043. image: {
  4044. source: "./media/characters/mech/maw.svg"
  4045. }
  4046. },
  4047. head: {
  4048. height: math.unit(2.82, "feet"),
  4049. name: "Head",
  4050. image: {
  4051. source: "./media/characters/mech/head.svg"
  4052. }
  4053. },
  4054. dick: {
  4055. height: math.unit(1.43, "feet"),
  4056. name: "Dick",
  4057. image: {
  4058. source: "./media/characters/mech/dick.svg"
  4059. }
  4060. },
  4061. },
  4062. [
  4063. {
  4064. name: "Normal",
  4065. height: math.unit(12, "feet")
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(300, "feet"),
  4070. default: true
  4071. },
  4072. {
  4073. name: "Macro+",
  4074. height: math.unit(1500, "feet")
  4075. },
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4080. {
  4081. front: {
  4082. height: math.unit(1.3, "meter"),
  4083. weight: math.unit(30, "kg"),
  4084. name: "Front",
  4085. image: {
  4086. source: "./media/characters/gregory/front.svg",
  4087. }
  4088. }
  4089. },
  4090. [
  4091. {
  4092. name: "Normal",
  4093. height: math.unit(1.3, "meter"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Macro",
  4098. height: math.unit(20, "meter")
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(2.8, "meter"),
  4107. weight: math.unit(200, "kg"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/elory/front.svg",
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(2.8, "meter"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(38, "meter")
  4123. }
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(470, "feet"),
  4131. weight: math.unit(924, "tons"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/angelpatamon/front.svg",
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(470, "feet"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Deity Size I",
  4146. height: math.unit(28651.2, "km")
  4147. },
  4148. {
  4149. name: "Deity Size II",
  4150. height: math.unit(171907.2, "km")
  4151. }
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4156. {
  4157. side: {
  4158. height: math.unit(7.2, "meter"),
  4159. weight: math.unit(8.2, "tons"),
  4160. name: "Side",
  4161. image: {
  4162. source: "./media/characters/cryae/side.svg",
  4163. extra: 3500 / 1500
  4164. }
  4165. }
  4166. },
  4167. [
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(7.2, "meter"),
  4171. default: true
  4172. }
  4173. ]
  4174. ))
  4175. characterMakers.push(() => makeCharacter(
  4176. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4177. {
  4178. front: {
  4179. height: math.unit(6, "feet"),
  4180. weight: math.unit(175, "lb"),
  4181. name: "Front",
  4182. image: {
  4183. source: "./media/characters/xera/front.svg",
  4184. extra: 2377 / 1972,
  4185. bottom: 75.5 / 2452
  4186. }
  4187. },
  4188. side: {
  4189. height: math.unit(6, "feet"),
  4190. weight: math.unit(175, "lb"),
  4191. name: "Side",
  4192. image: {
  4193. source: "./media/characters/xera/side.svg",
  4194. extra: 2345 / 2019,
  4195. bottom: 39.7 / 2384
  4196. }
  4197. },
  4198. back: {
  4199. height: math.unit(6, "feet"),
  4200. weight: math.unit(175, "lb"),
  4201. name: "Back",
  4202. image: {
  4203. source: "./media/characters/xera/back.svg",
  4204. extra: 2095 / 1984,
  4205. bottom: 67 / 2166
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "Small",
  4212. height: math.unit(10, "feet")
  4213. },
  4214. {
  4215. name: "Macro",
  4216. height: math.unit(500, "meters"),
  4217. default: true
  4218. },
  4219. {
  4220. name: "Macro+",
  4221. height: math.unit(10, "km")
  4222. },
  4223. {
  4224. name: "Gigamacro",
  4225. height: math.unit(25000, "km")
  4226. },
  4227. {
  4228. name: "Teramacro",
  4229. height: math.unit(3e6, "km")
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4235. {
  4236. front: {
  4237. height: math.unit(6, "feet"),
  4238. weight: math.unit(175, "lb"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/nebula/front.svg",
  4242. extra: 2566 / 2362,
  4243. bottom: 81 / 2644
  4244. }
  4245. }
  4246. },
  4247. [
  4248. {
  4249. name: "Small",
  4250. height: math.unit(4.5, "meters")
  4251. },
  4252. {
  4253. name: "Macro",
  4254. height: math.unit(1500, "meters"),
  4255. default: true
  4256. },
  4257. {
  4258. name: "Megamacro",
  4259. height: math.unit(150, "km")
  4260. },
  4261. {
  4262. name: "Gigamacro",
  4263. height: math.unit(27000, "km")
  4264. }
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(6, "feet"),
  4272. weight: math.unit(225, "lb"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/abysgar/front.svg"
  4276. }
  4277. }
  4278. },
  4279. [
  4280. {
  4281. name: "Small",
  4282. height: math.unit(4.5, "meters")
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(1250, "meters"),
  4287. default: true
  4288. },
  4289. {
  4290. name: "Megamacro",
  4291. height: math.unit(125, "km")
  4292. },
  4293. {
  4294. name: "Gigamacro",
  4295. height: math.unit(26000, "km")
  4296. }
  4297. ]
  4298. ))
  4299. characterMakers.push(() => makeCharacter(
  4300. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4301. {
  4302. front: {
  4303. height: math.unit(6, "feet"),
  4304. weight: math.unit(180, "lb"),
  4305. name: "Front",
  4306. image: {
  4307. source: "./media/characters/yakuz/front.svg"
  4308. }
  4309. }
  4310. },
  4311. [
  4312. {
  4313. name: "Small",
  4314. height: math.unit(5, "meters")
  4315. },
  4316. {
  4317. name: "Macro",
  4318. height: math.unit(1500, "meters"),
  4319. default: true
  4320. },
  4321. {
  4322. name: "Megamacro",
  4323. height: math.unit(200, "km")
  4324. },
  4325. {
  4326. name: "Gigamacro",
  4327. height: math.unit(100000, "km")
  4328. }
  4329. ]
  4330. ))
  4331. characterMakers.push(() => makeCharacter(
  4332. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4333. {
  4334. front: {
  4335. height: math.unit(6, "feet"),
  4336. weight: math.unit(175, "lb"),
  4337. name: "Front",
  4338. image: {
  4339. source: "./media/characters/mirova/front.svg",
  4340. extra: 3334 / 3071,
  4341. bottom: 42 / 3375.6
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Small",
  4348. height: math.unit(5, "meters")
  4349. },
  4350. {
  4351. name: "Macro",
  4352. height: math.unit(900, "meters"),
  4353. default: true
  4354. },
  4355. {
  4356. name: "Megamacro",
  4357. height: math.unit(135, "km")
  4358. },
  4359. {
  4360. name: "Gigamacro",
  4361. height: math.unit(20000, "km")
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4367. {
  4368. side: {
  4369. height: math.unit(28.35, "feet"),
  4370. weight: math.unit(99.75, "tons"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/asana-mech/side.svg",
  4374. extra: 923 / 699,
  4375. bottom: 50 / 975
  4376. }
  4377. },
  4378. chaingun: {
  4379. height: math.unit(7, "feet"),
  4380. weight: math.unit(2400, "lb"),
  4381. name: "Chaingun",
  4382. image: {
  4383. source: "./media/characters/asana-mech/chaingun.svg"
  4384. }
  4385. },
  4386. laser: {
  4387. height: math.unit(7.12, "feet"),
  4388. weight: math.unit(2000, "lb"),
  4389. name: "Laser",
  4390. image: {
  4391. source: "./media/characters/asana-mech/laser.svg"
  4392. }
  4393. },
  4394. },
  4395. [
  4396. {
  4397. name: "Normal",
  4398. height: math.unit(28.35, "feet"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Macro",
  4403. height: math.unit(2500, "feet")
  4404. },
  4405. {
  4406. name: "Megamacro",
  4407. height: math.unit(25, "miles")
  4408. },
  4409. {
  4410. name: "Examacro",
  4411. height: math.unit(6e8, "lightyears")
  4412. },
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(5, "meters"),
  4420. weight: math.unit(1000, "kg"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/asche/front.svg",
  4424. extra: 1258 / 1190,
  4425. bottom: 47 / 1305
  4426. }
  4427. },
  4428. frontUnderwear: {
  4429. height: math.unit(5, "meters"),
  4430. weight: math.unit(1000, "kg"),
  4431. name: "Front (Underwear)",
  4432. image: {
  4433. source: "./media/characters/asche/front-underwear.svg",
  4434. extra: 1258 / 1190,
  4435. bottom: 47 / 1305
  4436. }
  4437. },
  4438. frontDressed: {
  4439. height: math.unit(5, "meters"),
  4440. weight: math.unit(1000, "kg"),
  4441. name: "Front (Dressed)",
  4442. image: {
  4443. source: "./media/characters/asche/front-dressed.svg",
  4444. extra: 1258 / 1190,
  4445. bottom: 47 / 1305
  4446. }
  4447. },
  4448. frontArmor: {
  4449. height: math.unit(5, "meters"),
  4450. weight: math.unit(1000, "kg"),
  4451. name: "Front (Armored)",
  4452. image: {
  4453. source: "./media/characters/asche/front-armored.svg",
  4454. extra: 1374 / 1308,
  4455. bottom: 23 / 1397
  4456. }
  4457. },
  4458. mp724: {
  4459. height: math.unit(0.96, "meters"),
  4460. weight: math.unit(38, "kg"),
  4461. name: "H&K MP724",
  4462. image: {
  4463. source: "./media/characters/asche/h&k-mp724.svg"
  4464. }
  4465. },
  4466. side: {
  4467. height: math.unit(5, "meters"),
  4468. weight: math.unit(1000, "kg"),
  4469. name: "Side",
  4470. image: {
  4471. source: "./media/characters/asche/side.svg",
  4472. extra: 1717 / 1609,
  4473. bottom: 0.005
  4474. }
  4475. },
  4476. back: {
  4477. height: math.unit(5, "meters"),
  4478. weight: math.unit(1000, "kg"),
  4479. name: "Back",
  4480. image: {
  4481. source: "./media/characters/asche/back.svg",
  4482. extra: 1570 / 1501
  4483. }
  4484. },
  4485. },
  4486. [
  4487. {
  4488. name: "DEFCON 5",
  4489. height: math.unit(5, "meters")
  4490. },
  4491. {
  4492. name: "DEFCON 4",
  4493. height: math.unit(500, "meters"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "DEFCON 3",
  4498. height: math.unit(5, "km")
  4499. },
  4500. {
  4501. name: "DEFCON 2",
  4502. height: math.unit(500, "km")
  4503. },
  4504. {
  4505. name: "DEFCON 1",
  4506. height: math.unit(500000, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 0",
  4510. height: math.unit(3, "gigaparsecs")
  4511. },
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(2, "meters"),
  4519. weight: math.unit(76, "kg"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/gale/front.svg"
  4523. }
  4524. },
  4525. frontAlt1: {
  4526. height: math.unit(2, "meters"),
  4527. weight: math.unit(76, "kg"),
  4528. name: "Front (Alt 1)",
  4529. image: {
  4530. source: "./media/characters/gale/front-alt-1.svg"
  4531. }
  4532. },
  4533. frontAlt2: {
  4534. height: math.unit(2, "meters"),
  4535. weight: math.unit(76, "kg"),
  4536. name: "Front (Alt 2)",
  4537. image: {
  4538. source: "./media/characters/gale/front-alt-2.svg"
  4539. }
  4540. },
  4541. },
  4542. [
  4543. {
  4544. name: "Normal",
  4545. height: math.unit(7, "feet")
  4546. },
  4547. {
  4548. name: "Macro",
  4549. height: math.unit(150, "feet"),
  4550. default: true
  4551. },
  4552. {
  4553. name: "Macro+",
  4554. height: math.unit(300, "feet")
  4555. },
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(5 + 10/12, "feet"),
  4563. weight: math.unit(67, "kg"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/draylen/front.svg",
  4567. extra: 832/777,
  4568. bottom: 85/917
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(5 + 10/12, "feet")
  4576. },
  4577. {
  4578. name: "Macro",
  4579. height: math.unit(150, "feet"),
  4580. default: true
  4581. }
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4586. {
  4587. front: {
  4588. height: math.unit(7 + 9 / 12, "feet"),
  4589. weight: math.unit(379, "lbs"),
  4590. name: "Front",
  4591. image: {
  4592. source: "./media/characters/chez/front.svg"
  4593. }
  4594. },
  4595. side: {
  4596. height: math.unit(7 + 9 / 12, "feet"),
  4597. weight: math.unit(379, "lbs"),
  4598. name: "Side",
  4599. image: {
  4600. source: "./media/characters/chez/side.svg"
  4601. }
  4602. }
  4603. },
  4604. [
  4605. {
  4606. name: "Normal",
  4607. height: math.unit(7 + 9 / 12, "feet"),
  4608. default: true
  4609. },
  4610. {
  4611. name: "God King",
  4612. height: math.unit(9750000, "meters")
  4613. }
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4618. {
  4619. front: {
  4620. height: math.unit(6, "feet"),
  4621. weight: math.unit(275, "lbs"),
  4622. name: "Front",
  4623. image: {
  4624. source: "./media/characters/kaylum/front.svg",
  4625. bottom: 0.01,
  4626. extra: 1166 / 1031
  4627. }
  4628. },
  4629. frontWingless: {
  4630. height: math.unit(6, "feet"),
  4631. weight: math.unit(275, "lbs"),
  4632. name: "Front (Wingless)",
  4633. image: {
  4634. source: "./media/characters/kaylum/front-wingless.svg",
  4635. bottom: 0.01,
  4636. extra: 1117 / 1031
  4637. }
  4638. }
  4639. },
  4640. [
  4641. {
  4642. name: "Normal",
  4643. height: math.unit(3.05, "meters")
  4644. },
  4645. {
  4646. name: "Master",
  4647. height: math.unit(5.5, "meters")
  4648. },
  4649. {
  4650. name: "Rampage",
  4651. height: math.unit(19, "meters")
  4652. },
  4653. {
  4654. name: "Macro Lite",
  4655. height: math.unit(37, "meters")
  4656. },
  4657. {
  4658. name: "Hyper Predator",
  4659. height: math.unit(61, "meters")
  4660. },
  4661. {
  4662. name: "Macro",
  4663. height: math.unit(138, "meters"),
  4664. default: true
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(150, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/geta/front.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Micro",
  4683. height: math.unit(3, "inches"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(5 + 5 / 12, "feet")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(300, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/tyrnn/front.svg"
  4701. }
  4702. }
  4703. },
  4704. [
  4705. {
  4706. name: "Main Height",
  4707. height: math.unit(355, "feet"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Fave. Height",
  4712. height: math.unit(2400, "feet")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(6, "feet"),
  4721. weight: math.unit(300, "lbs"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/appledectomy/front.svg"
  4725. }
  4726. }
  4727. },
  4728. [
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(2500, "feet")
  4732. },
  4733. {
  4734. name: "Megamacro",
  4735. height: math.unit(50, "miles"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Gigamacro",
  4740. height: math.unit(5000, "miles")
  4741. },
  4742. {
  4743. name: "Teramacro",
  4744. height: math.unit(250000, "miles")
  4745. },
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(200, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/vulpes/front.svg",
  4757. extra: 573 / 543,
  4758. bottom: 0.033
  4759. }
  4760. },
  4761. side: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(200, "lbs"),
  4764. name: "Side",
  4765. image: {
  4766. source: "./media/characters/vulpes/side.svg",
  4767. extra: 577 / 549,
  4768. bottom: 11 / 588
  4769. }
  4770. },
  4771. back: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(200, "lbs"),
  4774. name: "Back",
  4775. image: {
  4776. source: "./media/characters/vulpes/back.svg",
  4777. extra: 573 / 549,
  4778. bottom: 20 / 593
  4779. }
  4780. },
  4781. feet: {
  4782. height: math.unit(1.276, "feet"),
  4783. name: "Feet",
  4784. image: {
  4785. source: "./media/characters/vulpes/feet.svg"
  4786. }
  4787. },
  4788. maw: {
  4789. height: math.unit(1.18, "feet"),
  4790. name: "Maw",
  4791. image: {
  4792. source: "./media/characters/vulpes/maw.svg"
  4793. }
  4794. },
  4795. },
  4796. [
  4797. {
  4798. name: "Micro",
  4799. height: math.unit(2, "inches")
  4800. },
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(6.3, "feet")
  4804. },
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(850, "feet")
  4808. },
  4809. {
  4810. name: "Megamacro",
  4811. height: math.unit(7500, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(570000, "miles")
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(210, "lbs"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/rain-fallen/front.svg"
  4829. }
  4830. },
  4831. side: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(210, "lbs"),
  4834. name: "Side",
  4835. image: {
  4836. source: "./media/characters/rain-fallen/side.svg"
  4837. }
  4838. },
  4839. back: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(210, "lbs"),
  4842. name: "Back",
  4843. image: {
  4844. source: "./media/characters/rain-fallen/back.svg"
  4845. }
  4846. },
  4847. feral: {
  4848. height: math.unit(9, "feet"),
  4849. weight: math.unit(700, "lbs"),
  4850. name: "Feral",
  4851. image: {
  4852. source: "./media/characters/rain-fallen/feral.svg"
  4853. }
  4854. },
  4855. },
  4856. [
  4857. {
  4858. name: "Meddling with Mortals",
  4859. height: math.unit(8 + 8/12, "feet")
  4860. },
  4861. {
  4862. name: "Normal",
  4863. height: math.unit(5, "meter")
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(150, "meter"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Megamacro",
  4872. height: math.unit(278e6, "meter")
  4873. },
  4874. {
  4875. name: "Gigamacro",
  4876. height: math.unit(2e9, "meter")
  4877. },
  4878. {
  4879. name: "Teramacro",
  4880. height: math.unit(8e12, "meter")
  4881. },
  4882. {
  4883. name: "Devourer",
  4884. height: math.unit(14, "zettameters")
  4885. },
  4886. {
  4887. name: "Scarlet King",
  4888. height: math.unit(18, "yottameters")
  4889. },
  4890. {
  4891. name: "Void",
  4892. height: math.unit(1e88, "yottameters")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4898. {
  4899. standing: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(180, "lbs"),
  4902. name: "Standing",
  4903. image: {
  4904. source: "./media/characters/zaakira/standing.svg",
  4905. extra: 1599/1504,
  4906. bottom: 39/1638
  4907. }
  4908. },
  4909. laying: {
  4910. height: math.unit(3, "feet"),
  4911. weight: math.unit(180, "lbs"),
  4912. name: "Laying",
  4913. image: {
  4914. source: "./media/characters/zaakira/laying.svg"
  4915. }
  4916. },
  4917. },
  4918. [
  4919. {
  4920. name: "Normal",
  4921. height: math.unit(12, "feet")
  4922. },
  4923. {
  4924. name: "Macro",
  4925. height: math.unit(279, "feet"),
  4926. default: true
  4927. }
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4932. {
  4933. femSfw: {
  4934. height: math.unit(8, "feet"),
  4935. weight: math.unit(350, "lb"),
  4936. name: "Fem",
  4937. image: {
  4938. source: "./media/characters/sigvald/fem-sfw.svg",
  4939. extra: 182 / 164,
  4940. bottom: 8.7 / 190.5
  4941. }
  4942. },
  4943. femNsfw: {
  4944. height: math.unit(8, "feet"),
  4945. weight: math.unit(350, "lb"),
  4946. name: "Fem (NSFW)",
  4947. image: {
  4948. source: "./media/characters/sigvald/fem-nsfw.svg",
  4949. extra: 182 / 164,
  4950. bottom: 8.7 / 190.5
  4951. }
  4952. },
  4953. maleNsfw: {
  4954. height: math.unit(8, "feet"),
  4955. weight: math.unit(350, "lb"),
  4956. name: "Male (NSFW)",
  4957. image: {
  4958. source: "./media/characters/sigvald/male-nsfw.svg",
  4959. extra: 182 / 164,
  4960. bottom: 8.7 / 190.5
  4961. }
  4962. },
  4963. hermNsfw: {
  4964. height: math.unit(8, "feet"),
  4965. weight: math.unit(350, "lb"),
  4966. name: "Herm (NSFW)",
  4967. image: {
  4968. source: "./media/characters/sigvald/herm-nsfw.svg",
  4969. extra: 182 / 164,
  4970. bottom: 8.7 / 190.5
  4971. }
  4972. },
  4973. dick: {
  4974. height: math.unit(2.36, "feet"),
  4975. name: "Dick",
  4976. image: {
  4977. source: "./media/characters/sigvald/dick.svg"
  4978. }
  4979. },
  4980. eye: {
  4981. height: math.unit(0.31, "feet"),
  4982. name: "Eye",
  4983. image: {
  4984. source: "./media/characters/sigvald/eye.svg"
  4985. }
  4986. },
  4987. mouth: {
  4988. height: math.unit(0.92, "feet"),
  4989. name: "Mouth",
  4990. image: {
  4991. source: "./media/characters/sigvald/mouth.svg"
  4992. }
  4993. },
  4994. paws: {
  4995. height: math.unit(2.2, "feet"),
  4996. name: "Paws",
  4997. image: {
  4998. source: "./media/characters/sigvald/paws.svg"
  4999. }
  5000. }
  5001. },
  5002. [
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(8, "feet")
  5006. },
  5007. {
  5008. name: "Large",
  5009. height: math.unit(12, "feet")
  5010. },
  5011. {
  5012. name: "Larger",
  5013. height: math.unit(20, "feet")
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(150, "feet")
  5018. },
  5019. {
  5020. name: "Macro+",
  5021. height: math.unit(200, "feet"),
  5022. default: true
  5023. },
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5028. {
  5029. side: {
  5030. height: math.unit(12, "feet"),
  5031. weight: math.unit(2000, "kg"),
  5032. name: "Side",
  5033. image: {
  5034. source: "./media/characters/scott/side.svg",
  5035. extra: 754 / 724,
  5036. bottom: 0.069
  5037. }
  5038. },
  5039. upright: {
  5040. height: math.unit(12, "feet"),
  5041. weight: math.unit(2000, "kg"),
  5042. name: "Upright",
  5043. image: {
  5044. source: "./media/characters/scott/upright.svg",
  5045. extra: 3881 / 3722,
  5046. bottom: 0.05
  5047. }
  5048. },
  5049. },
  5050. [
  5051. {
  5052. name: "Normal",
  5053. height: math.unit(12, "feet"),
  5054. default: true
  5055. },
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5060. {
  5061. side: {
  5062. height: math.unit(8, "meters"),
  5063. weight: math.unit(84755, "lbs"),
  5064. name: "Side",
  5065. image: {
  5066. source: "./media/characters/tobias/side.svg",
  5067. extra: 1474 / 1096,
  5068. bottom: 38.9 / 1513.1235
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Normal",
  5075. height: math.unit(8, "meters"),
  5076. default: true
  5077. },
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5082. {
  5083. front: {
  5084. height: math.unit(5.5, "feet"),
  5085. weight: math.unit(400, "lbs"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/kieran/front.svg",
  5089. extra: 2694 / 2364,
  5090. bottom: 217 / 2908
  5091. }
  5092. },
  5093. side: {
  5094. height: math.unit(5.5, "feet"),
  5095. weight: math.unit(400, "lbs"),
  5096. name: "Side",
  5097. image: {
  5098. source: "./media/characters/kieran/side.svg",
  5099. extra: 875 / 777,
  5100. bottom: 84.6 / 959
  5101. }
  5102. },
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(5.5, "feet"),
  5108. default: true
  5109. },
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5114. {
  5115. side: {
  5116. height: math.unit(2, "meters"),
  5117. weight: math.unit(70, "kg"),
  5118. name: "Side",
  5119. image: {
  5120. source: "./media/characters/sanya/side.svg",
  5121. bottom: 0.02,
  5122. extra: 1.02
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Small",
  5129. height: math.unit(2, "meters")
  5130. },
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(3, "meters")
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(16, "meters"),
  5138. default: true
  5139. },
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5144. {
  5145. front: {
  5146. height: math.unit(2, "meters"),
  5147. weight: math.unit(120, "kg"),
  5148. name: "Front",
  5149. image: {
  5150. source: "./media/characters/miranda/front.svg",
  5151. extra: 195 / 185,
  5152. bottom: 10.9 / 206.5
  5153. }
  5154. },
  5155. back: {
  5156. height: math.unit(2, "meters"),
  5157. weight: math.unit(120, "kg"),
  5158. name: "Back",
  5159. image: {
  5160. source: "./media/characters/miranda/back.svg",
  5161. extra: 201 / 193,
  5162. bottom: 2.3 / 203.7
  5163. }
  5164. },
  5165. },
  5166. [
  5167. {
  5168. name: "Normal",
  5169. height: math.unit(10, "feet"),
  5170. default: true
  5171. }
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "James", species: ["deer"], tags: ["anthro"] },
  5176. {
  5177. side: {
  5178. height: math.unit(2, "meters"),
  5179. weight: math.unit(100, "kg"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/james/front.svg",
  5183. extra: 10 / 8.5
  5184. }
  5185. },
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(8.5, "feet"),
  5191. default: true
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5197. {
  5198. side: {
  5199. height: math.unit(9.5, "feet"),
  5200. weight: math.unit(2500, "lbs"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/heather/side.svg"
  5204. }
  5205. },
  5206. },
  5207. [
  5208. {
  5209. name: "Normal",
  5210. height: math.unit(9.5, "feet"),
  5211. default: true
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5217. {
  5218. side: {
  5219. height: math.unit(6.5, "feet"),
  5220. weight: math.unit(400, "lbs"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/lukas/side.svg",
  5224. extra: 7.25 / 6.5
  5225. }
  5226. },
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(6.5, "feet"),
  5232. default: true
  5233. }
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5238. {
  5239. side: {
  5240. height: math.unit(5, "feet"),
  5241. weight: math.unit(3000, "lbs"),
  5242. name: "Side",
  5243. image: {
  5244. source: "./media/characters/louise/side.svg"
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Normal",
  5251. height: math.unit(5, "feet"),
  5252. default: true
  5253. }
  5254. ]
  5255. ))
  5256. characterMakers.push(() => makeCharacter(
  5257. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5258. {
  5259. side: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(150, "lbs"),
  5262. name: "Side",
  5263. image: {
  5264. source: "./media/characters/ramona/side.svg",
  5265. extra: 871/854,
  5266. bottom: 41/912
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(5.3, "meters"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(20, "stories")
  5279. },
  5280. {
  5281. name: "Macro+",
  5282. height: math.unit(50, "stories")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5288. {
  5289. standing: {
  5290. height: math.unit(5.75, "feet"),
  5291. weight: math.unit(160, "lbs"),
  5292. name: "Standing",
  5293. image: {
  5294. source: "./media/characters/deerpuff/standing.svg",
  5295. extra: 682 / 624
  5296. }
  5297. },
  5298. sitting: {
  5299. height: math.unit(5.75 / 1.79, "feet"),
  5300. weight: math.unit(160, "lbs"),
  5301. name: "Sitting",
  5302. image: {
  5303. source: "./media/characters/deerpuff/sitting.svg",
  5304. bottom: 44 / 400,
  5305. extra: 1
  5306. }
  5307. },
  5308. taurLaying: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(400, "lbs"),
  5311. name: "Taur (Laying)",
  5312. image: {
  5313. source: "./media/characters/deerpuff/taur-laying.svg"
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Puffball",
  5320. height: math.unit(6, "inches")
  5321. },
  5322. {
  5323. name: "Normalpuff",
  5324. height: math.unit(5.75, "feet")
  5325. },
  5326. {
  5327. name: "Macropuff",
  5328. height: math.unit(1500, "feet"),
  5329. default: true
  5330. },
  5331. {
  5332. name: "Megapuff",
  5333. height: math.unit(500, "miles")
  5334. },
  5335. {
  5336. name: "Gigapuff",
  5337. height: math.unit(250000, "miles")
  5338. },
  5339. {
  5340. name: "Omegapuff",
  5341. height: math.unit(1000, "lightyears")
  5342. },
  5343. ]
  5344. ))
  5345. characterMakers.push(() => makeCharacter(
  5346. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5347. {
  5348. stomping: {
  5349. height: math.unit(6, "feet"),
  5350. weight: math.unit(170, "lbs"),
  5351. name: "Stomping",
  5352. image: {
  5353. source: "./media/characters/vivian/stomping.svg"
  5354. }
  5355. },
  5356. sitting: {
  5357. height: math.unit(6 / 1.75, "feet"),
  5358. weight: math.unit(170, "lbs"),
  5359. name: "Sitting",
  5360. image: {
  5361. source: "./media/characters/vivian/sitting.svg",
  5362. bottom: 1 / 6.4,
  5363. extra: 1,
  5364. }
  5365. },
  5366. },
  5367. [
  5368. {
  5369. name: "Normal",
  5370. height: math.unit(7, "feet"),
  5371. default: true
  5372. },
  5373. {
  5374. name: "Macro",
  5375. height: math.unit(10, "stories")
  5376. },
  5377. {
  5378. name: "Macro+",
  5379. height: math.unit(30, "stories")
  5380. },
  5381. {
  5382. name: "Megamacro",
  5383. height: math.unit(10, "miles")
  5384. },
  5385. {
  5386. name: "Megamacro+",
  5387. height: math.unit(2750000, "meters")
  5388. },
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(160, "lbs"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/prince/front.svg",
  5400. extra: 3400 / 3000
  5401. }
  5402. },
  5403. jumping: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(160, "lbs"),
  5406. name: "Jumping",
  5407. image: {
  5408. source: "./media/characters/prince/jump.svg",
  5409. extra: 2555 / 2134
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(7.75, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Not cute",
  5421. height: math.unit(17, "feet")
  5422. },
  5423. {
  5424. name: "I said NOT",
  5425. height: math.unit(91, "feet")
  5426. },
  5427. {
  5428. name: "Please stop",
  5429. height: math.unit(560, "feet")
  5430. },
  5431. {
  5432. name: "What have you done",
  5433. height: math.unit(2200, "feet")
  5434. },
  5435. {
  5436. name: "Deer God",
  5437. height: math.unit(3.6, "miles")
  5438. },
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5443. {
  5444. standing: {
  5445. height: math.unit(6, "feet"),
  5446. weight: math.unit(300, "lbs"),
  5447. name: "Standing",
  5448. image: {
  5449. source: "./media/characters/psymon/standing.svg",
  5450. extra: 1888 / 1810,
  5451. bottom: 0.05
  5452. }
  5453. },
  5454. slithering: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(300, "lbs"),
  5457. name: "Slithering",
  5458. image: {
  5459. source: "./media/characters/psymon/slithering.svg",
  5460. extra: 1330 / 1224
  5461. }
  5462. },
  5463. slitheringAlt: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(300, "lbs"),
  5466. name: "Slithering (Alt)",
  5467. image: {
  5468. source: "./media/characters/psymon/slithering-alt.svg",
  5469. extra: 1330 / 1224
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(11.25, "feet"),
  5477. default: true
  5478. },
  5479. {
  5480. name: "Large",
  5481. height: math.unit(27, "feet")
  5482. },
  5483. {
  5484. name: "Giant",
  5485. height: math.unit(87, "feet")
  5486. },
  5487. {
  5488. name: "Macro",
  5489. height: math.unit(365, "feet")
  5490. },
  5491. {
  5492. name: "Megamacro",
  5493. height: math.unit(3, "miles")
  5494. },
  5495. {
  5496. name: "World Serpent",
  5497. height: math.unit(8000, "miles")
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5503. {
  5504. front: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(180, "lbs"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/daimos/front.svg",
  5510. extra: 4160 / 3897,
  5511. bottom: 0.021
  5512. }
  5513. }
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(8, "feet"),
  5519. default: true
  5520. },
  5521. {
  5522. name: "Big Dog",
  5523. height: math.unit(22, "feet")
  5524. },
  5525. {
  5526. name: "Macro",
  5527. height: math.unit(127, "feet")
  5528. },
  5529. {
  5530. name: "Megamacro",
  5531. height: math.unit(3600, "feet")
  5532. },
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5537. {
  5538. side: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(180, "lbs"),
  5541. name: "Side",
  5542. image: {
  5543. source: "./media/characters/blake/side.svg",
  5544. extra: 1212 / 1120,
  5545. bottom: 0.05
  5546. }
  5547. },
  5548. crouched: {
  5549. height: math.unit(6 * 0.57, "feet"),
  5550. weight: math.unit(180, "lbs"),
  5551. name: "Crouched",
  5552. image: {
  5553. source: "./media/characters/blake/crouched.svg",
  5554. extra: 840 / 587,
  5555. bottom: 0.04
  5556. }
  5557. },
  5558. bent: {
  5559. height: math.unit(6 * 0.75, "feet"),
  5560. weight: math.unit(180, "lbs"),
  5561. name: "Bent",
  5562. image: {
  5563. source: "./media/characters/blake/bent.svg",
  5564. extra: 592 / 544,
  5565. bottom: 0.035
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(8 + 1 / 6, "feet"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Big Backside",
  5577. height: math.unit(37, "feet")
  5578. },
  5579. {
  5580. name: "Subway Shredder",
  5581. height: math.unit(72, "feet")
  5582. },
  5583. {
  5584. name: "City Carver",
  5585. height: math.unit(1675, "feet")
  5586. },
  5587. {
  5588. name: "Tectonic Tweaker",
  5589. height: math.unit(2300, "miles")
  5590. },
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(180, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/guisetto/front.svg",
  5602. extra: 856 / 817,
  5603. bottom: 0.06
  5604. }
  5605. },
  5606. airborne: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(180, "lbs"),
  5609. name: "Airborne",
  5610. image: {
  5611. source: "./media/characters/guisetto/airborne.svg",
  5612. extra: 584 / 525
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(10 + 11 / 12, "feet"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Large",
  5624. height: math.unit(35, "feet")
  5625. },
  5626. {
  5627. name: "Macro",
  5628. height: math.unit(475, "feet")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5634. {
  5635. front: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(180, "lbs"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/luxor/front.svg",
  5641. extra: 2940 / 2152
  5642. }
  5643. },
  5644. back: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(180, "lbs"),
  5647. name: "Back",
  5648. image: {
  5649. source: "./media/characters/luxor/back.svg",
  5650. extra: 1083 / 960
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(5 + 5 / 6, "feet"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Lamp",
  5662. height: math.unit(50, "feet")
  5663. },
  5664. {
  5665. name: "Lämp",
  5666. height: math.unit(300, "feet")
  5667. },
  5668. {
  5669. name: "The sun is a lamp",
  5670. height: math.unit(250000, "miles")
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(50, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/huoyan/front.svg"
  5683. }
  5684. },
  5685. side: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(180, "lbs"),
  5688. name: "Side",
  5689. image: {
  5690. source: "./media/characters/huoyan/side.svg"
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Chef",
  5697. height: math.unit(9, "feet")
  5698. },
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(65, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Macro",
  5706. height: math.unit(780, "feet")
  5707. },
  5708. {
  5709. name: "Flaming Mountain",
  5710. height: math.unit(4.8, "miles")
  5711. },
  5712. {
  5713. name: "Celestial",
  5714. height: math.unit(765000, "miles")
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(5 + 3 / 4, "feet"),
  5723. weight: math.unit(120, "lbs"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/tails/front.svg"
  5727. }
  5728. }
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(5 + 3 / 4, "feet"),
  5734. default: true
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(4, "feet"),
  5743. weight: math.unit(50, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/rainy/front.svg"
  5747. }
  5748. }
  5749. },
  5750. [
  5751. {
  5752. name: "Macro",
  5753. height: math.unit(800, "feet"),
  5754. default: true
  5755. }
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5760. {
  5761. front: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(150, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/rainier/front.svg"
  5767. }
  5768. }
  5769. },
  5770. [
  5771. {
  5772. name: "Micro",
  5773. height: math.unit(2, "mm"),
  5774. default: true
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(8 + 4/12, "feet"),
  5783. name: "Front",
  5784. image: {
  5785. source: "./media/characters/andy-renard/front.svg",
  5786. extra: 1839/1726,
  5787. bottom: 134/1973
  5788. }
  5789. },
  5790. back: {
  5791. height: math.unit(8 + 4/12, "feet"),
  5792. name: "Back",
  5793. image: {
  5794. source: "./media/characters/andy-renard/back.svg",
  5795. extra: 1838/1710,
  5796. bottom: 105/1943
  5797. }
  5798. },
  5799. },
  5800. [
  5801. {
  5802. name: "Tall",
  5803. height: math.unit(8 + 4/12, "feet")
  5804. },
  5805. {
  5806. name: "Mini Macro",
  5807. height: math.unit(15, "feet"),
  5808. default: true
  5809. },
  5810. {
  5811. name: "Macro",
  5812. height: math.unit(100, "feet")
  5813. },
  5814. {
  5815. name: "Mega Macro",
  5816. height: math.unit(1000, "feet")
  5817. },
  5818. {
  5819. name: "Giga Macro",
  5820. height: math.unit(10, "miles")
  5821. },
  5822. {
  5823. name: "God Macro",
  5824. height: math.unit(1, "multiverse")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5830. {
  5831. front: {
  5832. height: math.unit(6, "feet"),
  5833. weight: math.unit(210, "lbs"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/cimmaron/front-sfw.svg",
  5837. extra: 701 / 676,
  5838. bottom: 0.046
  5839. }
  5840. },
  5841. back: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(210, "lbs"),
  5844. name: "Back",
  5845. image: {
  5846. source: "./media/characters/cimmaron/back-sfw.svg",
  5847. extra: 701 / 676,
  5848. bottom: 0.046
  5849. }
  5850. },
  5851. frontNsfw: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(210, "lbs"),
  5854. name: "Front (NSFW)",
  5855. image: {
  5856. source: "./media/characters/cimmaron/front-nsfw.svg",
  5857. extra: 701 / 676,
  5858. bottom: 0.046
  5859. }
  5860. },
  5861. backNsfw: {
  5862. height: math.unit(6, "feet"),
  5863. weight: math.unit(210, "lbs"),
  5864. name: "Back (NSFW)",
  5865. image: {
  5866. source: "./media/characters/cimmaron/back-nsfw.svg",
  5867. extra: 701 / 676,
  5868. bottom: 0.046
  5869. }
  5870. },
  5871. dick: {
  5872. height: math.unit(1.714, "feet"),
  5873. name: "Dick",
  5874. image: {
  5875. source: "./media/characters/cimmaron/dick.svg"
  5876. }
  5877. },
  5878. },
  5879. [
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(6, "feet"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Macro Mayor",
  5887. height: math.unit(350, "meters")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(6, "feet"),
  5896. weight: math.unit(200, "lbs"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/akari/front.svg",
  5900. extra: 962 / 901,
  5901. bottom: 0.04
  5902. }
  5903. }
  5904. },
  5905. [
  5906. {
  5907. name: "Micro",
  5908. height: math.unit(5, "inches"),
  5909. default: true
  5910. },
  5911. {
  5912. name: "Normal",
  5913. height: math.unit(7, "feet")
  5914. },
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5919. {
  5920. front: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(140, "lbs"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/cynosura/front.svg",
  5926. extra: 896 / 847
  5927. }
  5928. },
  5929. back: {
  5930. height: math.unit(6, "feet"),
  5931. weight: math.unit(140, "lbs"),
  5932. name: "Back",
  5933. image: {
  5934. source: "./media/characters/cynosura/back.svg",
  5935. extra: 1365 / 1250
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Micro",
  5942. height: math.unit(4, "inches")
  5943. },
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(5.75, "feet"),
  5947. default: true
  5948. },
  5949. {
  5950. name: "Tall",
  5951. height: math.unit(10, "feet")
  5952. },
  5953. {
  5954. name: "Big",
  5955. height: math.unit(20, "feet")
  5956. },
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(50, "feet")
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(13 + 2/12, "feet"),
  5968. weight: math.unit(800, "kg"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/gin/front.svg",
  5972. extra: 1312/1191,
  5973. bottom: 45/1357
  5974. }
  5975. },
  5976. mouth: {
  5977. height: math.unit(2.39 * 1.8, "feet"),
  5978. name: "Mouth",
  5979. image: {
  5980. source: "./media/characters/gin/mouth.svg"
  5981. }
  5982. },
  5983. hand: {
  5984. height: math.unit(1.57 * 2.19, "feet"),
  5985. name: "Hand",
  5986. image: {
  5987. source: "./media/characters/gin/hand.svg"
  5988. }
  5989. },
  5990. foot: {
  5991. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5992. name: "Foot",
  5993. image: {
  5994. source: "./media/characters/gin/foot.svg"
  5995. }
  5996. },
  5997. sole: {
  5998. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5999. name: "Sole",
  6000. image: {
  6001. source: "./media/characters/gin/sole.svg"
  6002. }
  6003. },
  6004. },
  6005. [
  6006. {
  6007. name: "Very Small",
  6008. height: math.unit(13 + 2 / 12, "feet")
  6009. },
  6010. {
  6011. name: "Micro",
  6012. height: math.unit(600, "miles")
  6013. },
  6014. {
  6015. name: "Regular",
  6016. height: math.unit(20, "earths"),
  6017. default: true
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(2.2, "solarradii")
  6022. },
  6023. {
  6024. name: "Teramacro",
  6025. height: math.unit(1.2, "galaxies")
  6026. },
  6027. {
  6028. name: "Omegamacro",
  6029. height: math.unit(200, "universes")
  6030. },
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6035. {
  6036. front: {
  6037. height: math.unit(6 + 1 / 6, "feet"),
  6038. weight: math.unit(178, "lbs"),
  6039. name: "Front",
  6040. image: {
  6041. source: "./media/characters/guy/front.svg"
  6042. }
  6043. }
  6044. },
  6045. [
  6046. {
  6047. name: "Normal",
  6048. height: math.unit(6 + 1 / 6, "feet"),
  6049. default: true
  6050. },
  6051. {
  6052. name: "Large",
  6053. height: math.unit(25 + 7 / 12, "feet")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(60 + 9 / 12, "feet")
  6058. },
  6059. {
  6060. name: "Macro+",
  6061. height: math.unit(246, "feet")
  6062. },
  6063. {
  6064. name: "Macro++",
  6065. height: math.unit(878, "feet")
  6066. }
  6067. ]
  6068. ))
  6069. characterMakers.push(() => makeCharacter(
  6070. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6071. {
  6072. front: {
  6073. height: math.unit(9, "feet"),
  6074. weight: math.unit(800, "lbs"),
  6075. name: "Front",
  6076. image: {
  6077. source: "./media/characters/tiberius/front.svg",
  6078. extra: 2295 / 2071
  6079. }
  6080. },
  6081. back: {
  6082. height: math.unit(9, "feet"),
  6083. weight: math.unit(800, "lbs"),
  6084. name: "Back",
  6085. image: {
  6086. source: "./media/characters/tiberius/back.svg",
  6087. extra: 2373 / 2160
  6088. }
  6089. },
  6090. },
  6091. [
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(9, "feet"),
  6095. default: true
  6096. }
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6101. {
  6102. front: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(600, "lbs"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/surgo/front.svg",
  6108. extra: 3591 / 2227
  6109. }
  6110. },
  6111. back: {
  6112. height: math.unit(6, "feet"),
  6113. weight: math.unit(600, "lbs"),
  6114. name: "Back",
  6115. image: {
  6116. source: "./media/characters/surgo/back.svg",
  6117. extra: 3557 / 2228
  6118. }
  6119. },
  6120. laying: {
  6121. height: math.unit(6 * 0.85, "feet"),
  6122. weight: math.unit(600, "lbs"),
  6123. name: "Laying",
  6124. image: {
  6125. source: "./media/characters/surgo/laying.svg"
  6126. }
  6127. },
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(6, "feet"),
  6133. default: true
  6134. }
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6139. {
  6140. side: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(150, "lbs"),
  6143. name: "Side",
  6144. image: {
  6145. source: "./media/characters/cibus/side.svg",
  6146. extra: 800 / 400
  6147. }
  6148. },
  6149. },
  6150. [
  6151. {
  6152. name: "Normal",
  6153. height: math.unit(6, "feet"),
  6154. default: true
  6155. }
  6156. ]
  6157. ))
  6158. characterMakers.push(() => makeCharacter(
  6159. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6160. {
  6161. front: {
  6162. height: math.unit(6, "feet"),
  6163. weight: math.unit(240, "lbs"),
  6164. name: "Front",
  6165. image: {
  6166. source: "./media/characters/nibbles/front.svg"
  6167. }
  6168. },
  6169. side: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(240, "lbs"),
  6172. name: "Side",
  6173. image: {
  6174. source: "./media/characters/nibbles/side.svg"
  6175. }
  6176. },
  6177. },
  6178. [
  6179. {
  6180. name: "Normal",
  6181. height: math.unit(9, "feet"),
  6182. default: true
  6183. }
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6188. {
  6189. side: {
  6190. height: math.unit(5 + 1 / 6, "feet"),
  6191. weight: math.unit(130, "lbs"),
  6192. name: "Side",
  6193. image: {
  6194. source: "./media/characters/rikky/side.svg",
  6195. extra: 851 / 801
  6196. }
  6197. },
  6198. },
  6199. [
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(5 + 1 / 6, "feet")
  6203. },
  6204. {
  6205. name: "Macro",
  6206. height: math.unit(152, "feet"),
  6207. default: true
  6208. },
  6209. {
  6210. name: "Megamacro",
  6211. height: math.unit(7, "miles")
  6212. }
  6213. ]
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6217. {
  6218. side: {
  6219. height: math.unit(370, "cm"),
  6220. weight: math.unit(350, "lbs"),
  6221. name: "Side",
  6222. image: {
  6223. source: "./media/characters/malfressa/side.svg"
  6224. }
  6225. },
  6226. walking: {
  6227. height: math.unit(370, "cm"),
  6228. weight: math.unit(350, "lbs"),
  6229. name: "Walking",
  6230. image: {
  6231. source: "./media/characters/malfressa/walking.svg"
  6232. }
  6233. },
  6234. feral: {
  6235. height: math.unit(2500, "cm"),
  6236. weight: math.unit(100000, "lbs"),
  6237. name: "Feral",
  6238. image: {
  6239. source: "./media/characters/malfressa/feral.svg",
  6240. extra: 2108 / 837,
  6241. bottom: 0.02
  6242. }
  6243. },
  6244. },
  6245. [
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(370, "cm")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(300, "meters"),
  6253. default: true
  6254. }
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(6, "feet"),
  6262. weight: math.unit(60, "kg"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/jaro/front.svg"
  6266. }
  6267. },
  6268. back: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(60, "kg"),
  6271. name: "Back",
  6272. image: {
  6273. source: "./media/characters/jaro/back.svg"
  6274. }
  6275. },
  6276. },
  6277. [
  6278. {
  6279. name: "Micro",
  6280. height: math.unit(7, "inches")
  6281. },
  6282. {
  6283. name: "Normal",
  6284. height: math.unit(5.5, "feet"),
  6285. default: true
  6286. },
  6287. {
  6288. name: "Minimacro",
  6289. height: math.unit(20, "feet")
  6290. },
  6291. {
  6292. name: "Macro",
  6293. height: math.unit(200, "meters")
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(195, "lb"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/rogue/front.svg"
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(90, "feet"),
  6313. default: true
  6314. },
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6319. {
  6320. front: {
  6321. height: math.unit(5 + 8 / 12, "feet"),
  6322. weight: math.unit(140, "lb"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/piper/front.svg",
  6326. extra: 3948/3655,
  6327. bottom: 0/3948
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Micro",
  6334. height: math.unit(2, "inches")
  6335. },
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(5 + 8 / 12, "feet")
  6339. },
  6340. {
  6341. name: "Macro",
  6342. height: math.unit(250, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Megamacro",
  6347. height: math.unit(7, "miles")
  6348. },
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(220, "lb"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/gemini/front.svg"
  6360. }
  6361. },
  6362. back: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(220, "lb"),
  6365. name: "Back",
  6366. image: {
  6367. source: "./media/characters/gemini/back.svg"
  6368. }
  6369. },
  6370. kneeling: {
  6371. height: math.unit(6 / 1.5, "feet"),
  6372. weight: math.unit(220, "lb"),
  6373. name: "Kneeling",
  6374. image: {
  6375. source: "./media/characters/gemini/kneeling.svg",
  6376. bottom: 0.02
  6377. }
  6378. },
  6379. },
  6380. [
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(300, "meters"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Megamacro",
  6388. height: math.unit(6900, "meters")
  6389. },
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6394. {
  6395. anthro: {
  6396. height: math.unit(2.35, "meters"),
  6397. weight: math.unit(73, "kg"),
  6398. name: "Anthro",
  6399. image: {
  6400. source: "./media/characters/alicia/anthro.svg",
  6401. extra: 2571 / 2385,
  6402. bottom: 75 / 2648
  6403. }
  6404. },
  6405. paw: {
  6406. height: math.unit(1.32, "feet"),
  6407. name: "Paw",
  6408. image: {
  6409. source: "./media/characters/alicia/paw.svg"
  6410. }
  6411. },
  6412. feral: {
  6413. height: math.unit(1.69, "meters"),
  6414. weight: math.unit(73, "kg"),
  6415. name: "Feral",
  6416. image: {
  6417. source: "./media/characters/alicia/feral.svg",
  6418. extra: 2123 / 1715,
  6419. bottom: 222 / 2349
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(2.35, "meters")
  6427. },
  6428. {
  6429. name: "Macro",
  6430. height: math.unit(60, "meters"),
  6431. default: true
  6432. },
  6433. {
  6434. name: "Megamacro",
  6435. height: math.unit(10000, "kilometers")
  6436. },
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6441. {
  6442. front: {
  6443. height: math.unit(7, "feet"),
  6444. weight: math.unit(250, "lbs"),
  6445. name: "Front",
  6446. image: {
  6447. source: "./media/characters/archy/front.svg"
  6448. }
  6449. }
  6450. },
  6451. [
  6452. {
  6453. name: "Micro",
  6454. height: math.unit(1, "inch")
  6455. },
  6456. {
  6457. name: "Shorty",
  6458. height: math.unit(5, "feet")
  6459. },
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(7, "feet")
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(600, "meters"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Megamacro",
  6471. height: math.unit(1, "mile")
  6472. },
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(1.65, "meters"),
  6480. weight: math.unit(74, "kg"),
  6481. name: "Front",
  6482. image: {
  6483. source: "./media/characters/berri/front.svg",
  6484. extra: 857 / 837,
  6485. bottom: 18 / 877
  6486. }
  6487. },
  6488. bum: {
  6489. height: math.unit(1.46, "feet"),
  6490. name: "Bum",
  6491. image: {
  6492. source: "./media/characters/berri/bum.svg"
  6493. }
  6494. },
  6495. mouth: {
  6496. height: math.unit(0.44, "feet"),
  6497. name: "Mouth",
  6498. image: {
  6499. source: "./media/characters/berri/mouth.svg"
  6500. }
  6501. },
  6502. paw: {
  6503. height: math.unit(0.826, "feet"),
  6504. name: "Paw",
  6505. image: {
  6506. source: "./media/characters/berri/paw.svg"
  6507. }
  6508. },
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(1.65, "meters")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(60, "m"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(9.213, "km")
  6523. },
  6524. {
  6525. name: "Planet Eater",
  6526. height: math.unit(489, "megameters")
  6527. },
  6528. {
  6529. name: "Teramacro",
  6530. height: math.unit(2471635000000, "meters")
  6531. },
  6532. {
  6533. name: "Examacro",
  6534. height: math.unit(8.0624e+26, "meters")
  6535. }
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(1.72, "meters"),
  6543. weight: math.unit(68, "kg"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/lexi/front.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Very Smol",
  6553. height: math.unit(10, "mm")
  6554. },
  6555. {
  6556. name: "Micro",
  6557. height: math.unit(6.8, "cm"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(1.72, "m")
  6563. }
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(1.69, "meters"),
  6571. weight: math.unit(68, "kg"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/martin/front.svg",
  6575. extra: 596 / 581
  6576. }
  6577. }
  6578. },
  6579. [
  6580. {
  6581. name: "Micro",
  6582. height: math.unit(6.85, "cm"),
  6583. default: true
  6584. },
  6585. {
  6586. name: "Normal",
  6587. height: math.unit(1.69, "m")
  6588. }
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6593. {
  6594. front: {
  6595. height: math.unit(1.69, "meters"),
  6596. weight: math.unit(68, "kg"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/juno/front.svg"
  6600. }
  6601. }
  6602. },
  6603. [
  6604. {
  6605. name: "Micro",
  6606. height: math.unit(7, "cm")
  6607. },
  6608. {
  6609. name: "Normal",
  6610. height: math.unit(1.89, "m")
  6611. },
  6612. {
  6613. name: "Macro",
  6614. height: math.unit(353, "meters"),
  6615. default: true
  6616. }
  6617. ]
  6618. ))
  6619. characterMakers.push(() => makeCharacter(
  6620. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6621. {
  6622. front: {
  6623. height: math.unit(1.93, "meters"),
  6624. weight: math.unit(83, "kg"),
  6625. name: "Front",
  6626. image: {
  6627. source: "./media/characters/samantha/front.svg"
  6628. }
  6629. },
  6630. frontClothed: {
  6631. height: math.unit(1.93, "meters"),
  6632. weight: math.unit(83, "kg"),
  6633. name: "Front (Clothed)",
  6634. image: {
  6635. source: "./media/characters/samantha/front-clothed.svg"
  6636. }
  6637. },
  6638. back: {
  6639. height: math.unit(1.93, "meters"),
  6640. weight: math.unit(83, "kg"),
  6641. name: "Back",
  6642. image: {
  6643. source: "./media/characters/samantha/back.svg"
  6644. }
  6645. },
  6646. },
  6647. [
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(1.93, "m")
  6651. },
  6652. {
  6653. name: "Macro",
  6654. height: math.unit(74, "meters"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Macro+",
  6659. height: math.unit(223, "meters"),
  6660. },
  6661. {
  6662. name: "Megamacro",
  6663. height: math.unit(8381, "meters"),
  6664. },
  6665. {
  6666. name: "Megamacro+",
  6667. height: math.unit(12000, "kilometers")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(1.92, "meters"),
  6676. weight: math.unit(80, "kg"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/dr-clay/front.svg"
  6680. }
  6681. },
  6682. frontClothed: {
  6683. height: math.unit(1.92, "meters"),
  6684. weight: math.unit(80, "kg"),
  6685. name: "Front (Clothed)",
  6686. image: {
  6687. source: "./media/characters/dr-clay/front-clothed.svg"
  6688. }
  6689. }
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(1.92, "m")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(214, "meters"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Macro+",
  6703. height: math.unit(12.237, "meters"),
  6704. },
  6705. {
  6706. name: "Megamacro",
  6707. height: math.unit(557, "megameters"),
  6708. },
  6709. {
  6710. name: "Unimaginable",
  6711. height: math.unit(120e9, "lightyears")
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(2, "meters"),
  6720. weight: math.unit(80, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Teramacro",
  6730. height: math.unit(500000, "lightyears"),
  6731. default: true
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6737. {
  6738. crux: {
  6739. height: math.unit(2, "meters"),
  6740. weight: math.unit(150, "kg"),
  6741. name: "Crux",
  6742. image: {
  6743. source: "./media/characters/vemus/crux.svg",
  6744. extra: 1074/936,
  6745. bottom: 23/1097
  6746. }
  6747. },
  6748. skunkTanuki: {
  6749. height: math.unit(2, "meters"),
  6750. weight: math.unit(150, "kg"),
  6751. name: "Skunk-Tanuki",
  6752. image: {
  6753. source: "./media/characters/vemus/skunk-tanuki.svg",
  6754. extra: 926/893,
  6755. bottom: 20/946
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(3.75, "meters"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Big",
  6767. height: math.unit(8, "meters")
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(100, "meters")
  6772. },
  6773. {
  6774. name: "Macro+",
  6775. height: math.unit(1500, "meters")
  6776. },
  6777. {
  6778. name: "Stellar",
  6779. height: math.unit(14e8, "meters")
  6780. },
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(2, "meters"),
  6788. weight: math.unit(70, "kg"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/beherit/front.svg",
  6792. extra: 1408 / 1242
  6793. }
  6794. }
  6795. },
  6796. [
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(6, "feet")
  6800. },
  6801. {
  6802. name: "Lorg",
  6803. height: math.unit(25, "feet"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Lorger",
  6808. height: math.unit(75, "feet")
  6809. },
  6810. {
  6811. name: "Macro",
  6812. height: math.unit(200, "meters")
  6813. },
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(2, "meters"),
  6821. weight: math.unit(150, "kg"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/everett/front.svg",
  6825. extra: 2038 / 1737,
  6826. bottom: 0.03
  6827. }
  6828. },
  6829. paw: {
  6830. height: math.unit(2 / 3.6, "meters"),
  6831. name: "Paw",
  6832. image: {
  6833. source: "./media/characters/everett/paw.svg"
  6834. }
  6835. },
  6836. },
  6837. [
  6838. {
  6839. name: "Normal",
  6840. height: math.unit(15, "feet"),
  6841. default: true
  6842. },
  6843. {
  6844. name: "Lorg",
  6845. height: math.unit(70, "feet"),
  6846. default: true
  6847. },
  6848. {
  6849. name: "Lorger",
  6850. height: math.unit(250, "feet")
  6851. },
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(500, "meters")
  6855. },
  6856. ]
  6857. ))
  6858. characterMakers.push(() => makeCharacter(
  6859. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6860. {
  6861. front: {
  6862. height: math.unit(2, "meters"),
  6863. weight: math.unit(86, "kg"),
  6864. name: "Front",
  6865. image: {
  6866. source: "./media/characters/rose/front.svg",
  6867. extra: 1785/1636,
  6868. bottom: 30/1815
  6869. }
  6870. },
  6871. frontSporty: {
  6872. height: math.unit(2, "meters"),
  6873. weight: math.unit(86, "kg"),
  6874. name: "Front (Sporty)",
  6875. image: {
  6876. source: "./media/characters/rose/front-sporty.svg",
  6877. extra: 350/335,
  6878. bottom: 10/360
  6879. }
  6880. },
  6881. frontAlt: {
  6882. height: math.unit(1.6, "meters"),
  6883. weight: math.unit(86, "kg"),
  6884. name: "Front (Alt)",
  6885. image: {
  6886. source: "./media/characters/rose/front-alt.svg",
  6887. extra: 299/283,
  6888. bottom: 3/302
  6889. }
  6890. },
  6891. plush: {
  6892. height: math.unit(2, "meters"),
  6893. weight: math.unit(86/3, "kg"),
  6894. name: "Plush",
  6895. image: {
  6896. source: "./media/characters/rose/plush.svg",
  6897. extra: 361/337,
  6898. bottom: 11/372
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "True Micro",
  6905. height: math.unit(9, "cm")
  6906. },
  6907. {
  6908. name: "Micro",
  6909. height: math.unit(16, "cm")
  6910. },
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(1.85, "meters"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Mini-Macro",
  6918. height: math.unit(5, "meters")
  6919. },
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(15, "meters")
  6923. },
  6924. {
  6925. name: "True Macro",
  6926. height: math.unit(40, "meters")
  6927. },
  6928. {
  6929. name: "City Scale",
  6930. height: math.unit(1, "km")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(2, "meters"),
  6939. weight: math.unit(350, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/regal/front.svg"
  6943. }
  6944. },
  6945. back: {
  6946. height: math.unit(2, "meters"),
  6947. weight: math.unit(350, "lbs"),
  6948. name: "Back",
  6949. image: {
  6950. source: "./media/characters/regal/back.svg"
  6951. }
  6952. },
  6953. },
  6954. [
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(350, "feet"),
  6958. default: true
  6959. }
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(4 + 11 / 12, "feet"),
  6967. weight: math.unit(100, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/opal/front.svg"
  6971. }
  6972. },
  6973. frontAlt: {
  6974. height: math.unit(4 + 11 / 12, "feet"),
  6975. weight: math.unit(100, "lbs"),
  6976. name: "Front (Alt)",
  6977. image: {
  6978. source: "./media/characters/opal/front-alt.svg"
  6979. }
  6980. },
  6981. },
  6982. [
  6983. {
  6984. name: "Small",
  6985. height: math.unit(4 + 11 / 12, "feet")
  6986. },
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(20, "feet"),
  6990. default: true
  6991. },
  6992. {
  6993. name: "Macro",
  6994. height: math.unit(120, "feet")
  6995. },
  6996. {
  6997. name: "Megamacro",
  6998. height: math.unit(80, "miles")
  6999. },
  7000. {
  7001. name: "True Size",
  7002. height: math.unit(100000, "lightyears")
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7008. {
  7009. front: {
  7010. height: math.unit(6, "feet"),
  7011. weight: math.unit(200, "lbs"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/vector-wuff/front.svg"
  7015. }
  7016. }
  7017. },
  7018. [
  7019. {
  7020. name: "Normal",
  7021. height: math.unit(2.8, "meters")
  7022. },
  7023. {
  7024. name: "Macro",
  7025. height: math.unit(450, "meters"),
  7026. default: true
  7027. },
  7028. {
  7029. name: "Megamacro",
  7030. height: math.unit(15, "kilometers")
  7031. }
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7036. {
  7037. front: {
  7038. height: math.unit(6, "feet"),
  7039. weight: math.unit(256, "lbs"),
  7040. name: "Front",
  7041. image: {
  7042. source: "./media/characters/dannik/front.svg"
  7043. }
  7044. }
  7045. },
  7046. [
  7047. {
  7048. name: "Macro",
  7049. height: math.unit(69.57, "meters"),
  7050. default: true
  7051. },
  7052. ]
  7053. ))
  7054. characterMakers.push(() => makeCharacter(
  7055. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7056. {
  7057. front: {
  7058. height: math.unit(6, "feet"),
  7059. weight: math.unit(120, "lbs"),
  7060. name: "Front",
  7061. image: {
  7062. source: "./media/characters/azura-saharah/front.svg"
  7063. }
  7064. },
  7065. back: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(120, "lbs"),
  7068. name: "Back",
  7069. image: {
  7070. source: "./media/characters/azura-saharah/back.svg"
  7071. }
  7072. },
  7073. },
  7074. [
  7075. {
  7076. name: "Macro",
  7077. height: math.unit(100, "feet"),
  7078. default: true
  7079. },
  7080. ]
  7081. ))
  7082. characterMakers.push(() => makeCharacter(
  7083. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7084. {
  7085. side: {
  7086. height: math.unit(5 + 4 / 12, "feet"),
  7087. weight: math.unit(163, "lbs"),
  7088. name: "Side",
  7089. image: {
  7090. source: "./media/characters/kennedy/side.svg"
  7091. }
  7092. }
  7093. },
  7094. [
  7095. {
  7096. name: "Standard Doggo",
  7097. height: math.unit(5 + 4 / 12, "feet")
  7098. },
  7099. {
  7100. name: "Big Doggo",
  7101. height: math.unit(25 + 3 / 12, "feet"),
  7102. default: true
  7103. },
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(5 + 5/12, "feet"),
  7111. weight: math.unit(100, "lbs"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/odios-de-lunar/front.svg",
  7115. extra: 1468/1323,
  7116. bottom: 22/1490
  7117. }
  7118. }
  7119. },
  7120. [
  7121. {
  7122. name: "Micro",
  7123. height: math.unit(3, "inches")
  7124. },
  7125. {
  7126. name: "Normal",
  7127. height: math.unit(5.5, "feet"),
  7128. default: true
  7129. },
  7130. {
  7131. name: "Macro",
  7132. height: math.unit(100, "feet")
  7133. },
  7134. ]
  7135. ))
  7136. characterMakers.push(() => makeCharacter(
  7137. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7138. {
  7139. back: {
  7140. height: math.unit(6, "feet"),
  7141. weight: math.unit(220, "lbs"),
  7142. name: "Back",
  7143. image: {
  7144. source: "./media/characters/mandake/back.svg"
  7145. }
  7146. }
  7147. },
  7148. [
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(7, "feet"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Macro",
  7156. height: math.unit(78, "feet")
  7157. },
  7158. {
  7159. name: "Macro+",
  7160. height: math.unit(300, "meters")
  7161. },
  7162. {
  7163. name: "Macro++",
  7164. height: math.unit(2400, "feet")
  7165. },
  7166. {
  7167. name: "Megamacro",
  7168. height: math.unit(5167, "meters")
  7169. },
  7170. {
  7171. name: "Gigamacro",
  7172. height: math.unit(41769, "miles")
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7178. {
  7179. front: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(120, "lbs"),
  7182. name: "Front",
  7183. image: {
  7184. source: "./media/characters/yozey/front.svg"
  7185. }
  7186. },
  7187. frontAlt: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(120, "lbs"),
  7190. name: "Front (Alt)",
  7191. image: {
  7192. source: "./media/characters/yozey/front-alt.svg"
  7193. }
  7194. },
  7195. side: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(120, "lbs"),
  7198. name: "Side",
  7199. image: {
  7200. source: "./media/characters/yozey/side.svg"
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Micro",
  7207. height: math.unit(3, "inches"),
  7208. default: true
  7209. },
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(6, "feet")
  7213. }
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7218. {
  7219. front: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(103, "lbs"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/valeska-voss/front.svg"
  7225. }
  7226. }
  7227. },
  7228. [
  7229. {
  7230. name: "Mini-Sized Sub",
  7231. height: math.unit(3.1, "inches")
  7232. },
  7233. {
  7234. name: "Mid-Sized Sub",
  7235. height: math.unit(6.2, "inches")
  7236. },
  7237. {
  7238. name: "Full-Sized Sub",
  7239. height: math.unit(9.3, "inches")
  7240. },
  7241. {
  7242. name: "Normal",
  7243. height: math.unit(5 + 2 / 12, "foot"),
  7244. default: true
  7245. },
  7246. ]
  7247. ))
  7248. characterMakers.push(() => makeCharacter(
  7249. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7250. {
  7251. front: {
  7252. height: math.unit(6, "feet"),
  7253. weight: math.unit(160, "lbs"),
  7254. name: "Front",
  7255. image: {
  7256. source: "./media/characters/gene-zeta/front.svg",
  7257. extra: 3006 / 2826,
  7258. bottom: 182 / 3188
  7259. }
  7260. }
  7261. },
  7262. [
  7263. {
  7264. name: "Micro",
  7265. height: math.unit(6, "inches")
  7266. },
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(5 + 11 / 12, "foot"),
  7270. default: true
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(140, "feet")
  7275. },
  7276. {
  7277. name: "Supercharged",
  7278. height: math.unit(2500, "feet")
  7279. },
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7284. {
  7285. front: {
  7286. height: math.unit(6, "feet"),
  7287. weight: math.unit(350, "lbs"),
  7288. name: "Front",
  7289. image: {
  7290. source: "./media/characters/razinox/front.svg",
  7291. extra: 1686 / 1548,
  7292. bottom: 28.2 / 1868
  7293. }
  7294. },
  7295. back: {
  7296. height: math.unit(6, "feet"),
  7297. weight: math.unit(350, "lbs"),
  7298. name: "Back",
  7299. image: {
  7300. source: "./media/characters/razinox/back.svg",
  7301. extra: 1660 / 1590,
  7302. bottom: 15 / 1665
  7303. }
  7304. },
  7305. },
  7306. [
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(10 + 8 / 12, "foot")
  7310. },
  7311. {
  7312. name: "Minimacro",
  7313. height: math.unit(15, "foot")
  7314. },
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(60, "foot"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Megamacro",
  7322. height: math.unit(5, "miles")
  7323. },
  7324. {
  7325. name: "Gigamacro",
  7326. height: math.unit(6000, "miles")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(150, "lbs"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/cobalt/front.svg"
  7339. }
  7340. }
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(8 + 1 / 12, "foot")
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(111, "foot"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Supracosmic",
  7354. height: math.unit(1e42, "feet")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(140, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/amanda/front.svg"
  7367. }
  7368. }
  7369. },
  7370. [
  7371. {
  7372. name: "Micro",
  7373. height: math.unit(5, "inches"),
  7374. default: true
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7380. {
  7381. front: {
  7382. height: math.unit(2.75, "meters"),
  7383. weight: math.unit(1200, "lb"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/teal/front.svg",
  7387. extra: 2463 / 2320,
  7388. bottom: 166 / 2629
  7389. }
  7390. },
  7391. back: {
  7392. height: math.unit(2.75, "meters"),
  7393. weight: math.unit(1200, "lb"),
  7394. name: "Back",
  7395. image: {
  7396. source: "./media/characters/teal/back.svg",
  7397. extra: 2580 / 2489,
  7398. bottom: 151 / 2731
  7399. }
  7400. },
  7401. sitting: {
  7402. height: math.unit(1.9, "meters"),
  7403. weight: math.unit(1200, "lb"),
  7404. name: "Sitting",
  7405. image: {
  7406. source: "./media/characters/teal/sitting.svg",
  7407. extra: 623 / 590,
  7408. bottom: 121 / 744
  7409. }
  7410. },
  7411. standing: {
  7412. height: math.unit(2.75, "meters"),
  7413. weight: math.unit(1200, "lb"),
  7414. name: "Standing",
  7415. image: {
  7416. source: "./media/characters/teal/standing.svg",
  7417. extra: 923 / 893,
  7418. bottom: 60 / 983
  7419. }
  7420. },
  7421. stretching: {
  7422. height: math.unit(3.65, "meters"),
  7423. weight: math.unit(1200, "lb"),
  7424. name: "Stretching",
  7425. image: {
  7426. source: "./media/characters/teal/stretching.svg",
  7427. extra: 1276 / 1244,
  7428. bottom: 0 / 1276
  7429. }
  7430. },
  7431. legged: {
  7432. height: math.unit(1.3, "meters"),
  7433. weight: math.unit(100, "lb"),
  7434. name: "Legged",
  7435. image: {
  7436. source: "./media/characters/teal/legged.svg",
  7437. extra: 462 / 437,
  7438. bottom: 24 / 486
  7439. }
  7440. },
  7441. naga: {
  7442. height: math.unit(5.4, "meters"),
  7443. weight: math.unit(4000, "lb"),
  7444. name: "Naga",
  7445. image: {
  7446. source: "./media/characters/teal/naga.svg",
  7447. extra: 1902 / 1858,
  7448. bottom: 0 / 1902
  7449. }
  7450. },
  7451. hand: {
  7452. height: math.unit(0.52, "meters"),
  7453. name: "Hand",
  7454. image: {
  7455. source: "./media/characters/teal/hand.svg"
  7456. }
  7457. },
  7458. maw: {
  7459. height: math.unit(0.43, "meters"),
  7460. name: "Maw",
  7461. image: {
  7462. source: "./media/characters/teal/maw.svg"
  7463. }
  7464. },
  7465. slit: {
  7466. height: math.unit(0.25, "meters"),
  7467. name: "Slit",
  7468. image: {
  7469. source: "./media/characters/teal/slit.svg"
  7470. }
  7471. },
  7472. },
  7473. [
  7474. {
  7475. name: "Normal",
  7476. height: math.unit(2.75, "meters"),
  7477. default: true
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(300, "feet")
  7482. },
  7483. {
  7484. name: "Macro+",
  7485. height: math.unit(2000, "feet")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7491. {
  7492. frontCat: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(180, "lbs"),
  7495. name: "Front (Cat)",
  7496. image: {
  7497. source: "./media/characters/ravin-amulet/front-cat.svg"
  7498. }
  7499. },
  7500. frontCatAlt: {
  7501. height: math.unit(6, "feet"),
  7502. weight: math.unit(180, "lbs"),
  7503. name: "Front (Alt, Cat)",
  7504. image: {
  7505. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7506. }
  7507. },
  7508. frontWerewolf: {
  7509. height: math.unit(6 * 1.2, "feet"),
  7510. weight: math.unit(225, "lbs"),
  7511. name: "Front (Werewolf)",
  7512. image: {
  7513. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7514. }
  7515. },
  7516. backWerewolf: {
  7517. height: math.unit(6 * 1.2, "feet"),
  7518. weight: math.unit(225, "lbs"),
  7519. name: "Back (Werewolf)",
  7520. image: {
  7521. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Nano",
  7528. height: math.unit(1, "micrometer")
  7529. },
  7530. {
  7531. name: "Micro",
  7532. height: math.unit(1, "inch")
  7533. },
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(6, "feet"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(60, "feet")
  7542. }
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7547. {
  7548. front: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(165, "lbs"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/fluoresce/front.svg"
  7554. }
  7555. }
  7556. },
  7557. [
  7558. {
  7559. name: "Micro",
  7560. height: math.unit(6, "cm")
  7561. },
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(5 + 7 / 12, "feet"),
  7565. default: true
  7566. },
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(56, "feet")
  7570. },
  7571. {
  7572. name: "Megamacro",
  7573. height: math.unit(1.9, "miles")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(9 + 6 / 12, "feet"),
  7582. weight: math.unit(523, "lbs"),
  7583. name: "Side",
  7584. image: {
  7585. source: "./media/characters/aurora/side.svg"
  7586. }
  7587. }
  7588. },
  7589. [
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(9 + 6 / 12, "feet")
  7593. },
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(96, "feet"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Macro+",
  7601. height: math.unit(243, "feet")
  7602. },
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(194, "cm"),
  7610. weight: math.unit(90, "kg"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/ranek/front.svg"
  7614. }
  7615. },
  7616. side: {
  7617. height: math.unit(194, "cm"),
  7618. weight: math.unit(90, "kg"),
  7619. name: "Side",
  7620. image: {
  7621. source: "./media/characters/ranek/side.svg"
  7622. }
  7623. },
  7624. back: {
  7625. height: math.unit(194, "cm"),
  7626. weight: math.unit(90, "kg"),
  7627. name: "Back",
  7628. image: {
  7629. source: "./media/characters/ranek/back.svg"
  7630. }
  7631. },
  7632. feral: {
  7633. height: math.unit(30, "cm"),
  7634. weight: math.unit(1.6, "lbs"),
  7635. name: "Feral",
  7636. image: {
  7637. source: "./media/characters/ranek/feral.svg"
  7638. }
  7639. },
  7640. },
  7641. [
  7642. {
  7643. name: "Normal",
  7644. height: math.unit(194, "cm"),
  7645. default: true
  7646. },
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(100, "meters")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(5 + 6 / 12, "feet"),
  7658. weight: math.unit(153, "lbs"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/andrew-cooper/front.svg"
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Nano",
  7668. height: math.unit(1, "mm")
  7669. },
  7670. {
  7671. name: "Micro",
  7672. height: math.unit(2, "inches")
  7673. },
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(5 + 6 / 12, "feet"),
  7677. default: true
  7678. }
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(6, "feet"),
  7686. weight: math.unit(180, "lbs"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/akane-sato/front.svg",
  7690. extra: 1219 / 1140
  7691. }
  7692. },
  7693. back: {
  7694. height: math.unit(6, "feet"),
  7695. weight: math.unit(180, "lbs"),
  7696. name: "Back",
  7697. image: {
  7698. source: "./media/characters/akane-sato/back.svg",
  7699. extra: 1219 / 1170
  7700. }
  7701. },
  7702. },
  7703. [
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(2.5, "meters")
  7707. },
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(250, "meters"),
  7711. default: true
  7712. },
  7713. {
  7714. name: "Megamacro",
  7715. height: math.unit(25, "km")
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(65, "kg"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/rook/front.svg",
  7728. extra: 960 / 950
  7729. }
  7730. }
  7731. },
  7732. [
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(8.8, "feet")
  7736. },
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(88, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Megamacro",
  7744. height: math.unit(8, "miles")
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7750. {
  7751. front: {
  7752. height: math.unit(12 + 2 / 12, "feet"),
  7753. weight: math.unit(808, "lbs"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/prodigy/front.svg"
  7757. }
  7758. }
  7759. },
  7760. [
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(12 + 2 / 12, "feet"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(143, "feet")
  7769. },
  7770. {
  7771. name: "Macro+",
  7772. height: math.unit(400, "feet")
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(225, "lbs"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/daniel/front.svg"
  7785. }
  7786. },
  7787. leaning: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(225, "lbs"),
  7790. name: "Leaning",
  7791. image: {
  7792. source: "./media/characters/daniel/leaning.svg"
  7793. }
  7794. },
  7795. },
  7796. [
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(1000, "feet"),
  7800. default: true
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(88, "lbs"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/chiros/front.svg",
  7813. extra: 306 / 226
  7814. }
  7815. },
  7816. side: {
  7817. height: math.unit(6, "feet"),
  7818. weight: math.unit(88, "lbs"),
  7819. name: "Side",
  7820. image: {
  7821. source: "./media/characters/chiros/side.svg",
  7822. extra: 306 / 226
  7823. }
  7824. },
  7825. },
  7826. [
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(6, "cm"),
  7830. default: true
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7836. {
  7837. front: {
  7838. height: math.unit(6, "feet"),
  7839. weight: math.unit(100, "lbs"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/selka/front.svg",
  7843. extra: 947 / 887
  7844. }
  7845. }
  7846. },
  7847. [
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(5, "cm"),
  7851. default: true
  7852. },
  7853. ]
  7854. ))
  7855. characterMakers.push(() => makeCharacter(
  7856. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7857. {
  7858. front: {
  7859. height: math.unit(8 + 3 / 12, "feet"),
  7860. weight: math.unit(424, "lbs"),
  7861. name: "Front",
  7862. image: {
  7863. source: "./media/characters/verin/front.svg",
  7864. extra: 1845 / 1550
  7865. }
  7866. },
  7867. frontArmored: {
  7868. height: math.unit(8 + 3 / 12, "feet"),
  7869. weight: math.unit(424, "lbs"),
  7870. name: "Front (Armored)",
  7871. image: {
  7872. source: "./media/characters/verin/front-armor.svg",
  7873. extra: 1845 / 1550,
  7874. bottom: 0.01
  7875. }
  7876. },
  7877. back: {
  7878. height: math.unit(8 + 3 / 12, "feet"),
  7879. weight: math.unit(424, "lbs"),
  7880. name: "Back",
  7881. image: {
  7882. source: "./media/characters/verin/back.svg",
  7883. bottom: 0.1,
  7884. extra: 1
  7885. }
  7886. },
  7887. foot: {
  7888. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7889. name: "Foot",
  7890. image: {
  7891. source: "./media/characters/verin/foot.svg"
  7892. }
  7893. },
  7894. },
  7895. [
  7896. {
  7897. name: "Normal",
  7898. height: math.unit(8 + 3 / 12, "feet")
  7899. },
  7900. {
  7901. name: "Minimacro",
  7902. height: math.unit(21, "feet"),
  7903. default: true
  7904. },
  7905. {
  7906. name: "Macro",
  7907. height: math.unit(626, "feet")
  7908. },
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(2.718, "meters"),
  7916. weight: math.unit(150, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/sovrim-terraquian/front.svg"
  7920. }
  7921. },
  7922. back: {
  7923. height: math.unit(2.718, "meters"),
  7924. weight: math.unit(150, "lbs"),
  7925. name: "Back",
  7926. image: {
  7927. source: "./media/characters/sovrim-terraquian/back.svg"
  7928. }
  7929. }
  7930. },
  7931. [
  7932. {
  7933. name: "Micro",
  7934. height: math.unit(2, "inches")
  7935. },
  7936. {
  7937. name: "Small",
  7938. height: math.unit(1, "meter")
  7939. },
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(Math.E, "meters"),
  7943. default: true
  7944. },
  7945. {
  7946. name: "Macro",
  7947. height: math.unit(20, "meters")
  7948. },
  7949. {
  7950. name: "Macro+",
  7951. height: math.unit(400, "meters")
  7952. },
  7953. ]
  7954. ))
  7955. characterMakers.push(() => makeCharacter(
  7956. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7957. {
  7958. front: {
  7959. height: math.unit(7, "feet"),
  7960. weight: math.unit(489, "lbs"),
  7961. name: "Front",
  7962. image: {
  7963. source: "./media/characters/reece-silvermane/front.svg",
  7964. bottom: 0.02,
  7965. extra: 1
  7966. }
  7967. },
  7968. },
  7969. [
  7970. {
  7971. name: "Macro",
  7972. height: math.unit(1.5, "miles"),
  7973. default: true
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(6, "feet"),
  7982. weight: math.unit(78, "kg"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/kane/front.svg",
  7986. extra: 978 / 899
  7987. }
  7988. },
  7989. },
  7990. [
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(2.1, "m"),
  7994. },
  7995. {
  7996. name: "Macro",
  7997. height: math.unit(1, "km"),
  7998. default: true
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(6, "feet"),
  8007. weight: math.unit(200, "kg"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/tegon/front.svg",
  8011. bottom: 0.01,
  8012. extra: 1
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(1, "inch")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(6 + 3 / 12, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(300, "feet")
  8029. },
  8030. {
  8031. name: "Megamacro",
  8032. height: math.unit(69, "miles")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8038. {
  8039. side: {
  8040. height: math.unit(6, "feet"),
  8041. weight: math.unit(2304, "lbs"),
  8042. name: "Side",
  8043. image: {
  8044. source: "./media/characters/arcturax/side.svg",
  8045. extra: 790 / 376,
  8046. bottom: 0.01
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Micro",
  8053. height: math.unit(2, "inch")
  8054. },
  8055. {
  8056. name: "Normal",
  8057. height: math.unit(6, "feet")
  8058. },
  8059. {
  8060. name: "Macro",
  8061. height: math.unit(39, "feet"),
  8062. default: true
  8063. },
  8064. {
  8065. name: "Megamacro",
  8066. height: math.unit(7, "miles")
  8067. },
  8068. ]
  8069. ))
  8070. characterMakers.push(() => makeCharacter(
  8071. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8072. {
  8073. front: {
  8074. height: math.unit(6, "feet"),
  8075. weight: math.unit(50, "lbs"),
  8076. name: "Front",
  8077. image: {
  8078. source: "./media/characters/sentri/front.svg",
  8079. extra: 1750 / 1570,
  8080. bottom: 0.025
  8081. }
  8082. },
  8083. frontAlt: {
  8084. height: math.unit(6, "feet"),
  8085. weight: math.unit(50, "lbs"),
  8086. name: "Front (Alt)",
  8087. image: {
  8088. source: "./media/characters/sentri/front-alt.svg",
  8089. extra: 1750 / 1570,
  8090. bottom: 0.025
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(15, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(2500, "feet")
  8103. }
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(5 + 8 / 12, "feet"),
  8111. weight: math.unit(130, "lbs"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/corvin/front.svg",
  8115. extra: 1803 / 1629
  8116. }
  8117. },
  8118. frontShirt: {
  8119. height: math.unit(5 + 8 / 12, "feet"),
  8120. weight: math.unit(130, "lbs"),
  8121. name: "Front (Shirt)",
  8122. image: {
  8123. source: "./media/characters/corvin/front-shirt.svg",
  8124. extra: 1803 / 1629
  8125. }
  8126. },
  8127. frontPoncho: {
  8128. height: math.unit(5 + 8 / 12, "feet"),
  8129. weight: math.unit(130, "lbs"),
  8130. name: "Front (Poncho)",
  8131. image: {
  8132. source: "./media/characters/corvin/front-poncho.svg",
  8133. extra: 1803 / 1629
  8134. }
  8135. },
  8136. side: {
  8137. height: math.unit(5 + 8 / 12, "feet"),
  8138. weight: math.unit(130, "lbs"),
  8139. name: "Side",
  8140. image: {
  8141. source: "./media/characters/corvin/side.svg",
  8142. extra: 1012 / 945
  8143. }
  8144. },
  8145. back: {
  8146. height: math.unit(5 + 8 / 12, "feet"),
  8147. weight: math.unit(130, "lbs"),
  8148. name: "Back",
  8149. image: {
  8150. source: "./media/characters/corvin/back.svg",
  8151. extra: 1803 / 1629
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Micro",
  8158. height: math.unit(3, "inches")
  8159. },
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(5 + 8 / 12, "feet")
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(300, "feet"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "Megamacro",
  8171. height: math.unit(500, "miles")
  8172. }
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8177. {
  8178. front: {
  8179. height: math.unit(6, "feet"),
  8180. weight: math.unit(135, "lbs"),
  8181. name: "Front",
  8182. image: {
  8183. source: "./media/characters/q/front.svg",
  8184. extra: 854 / 752,
  8185. bottom: 0.005
  8186. }
  8187. },
  8188. back: {
  8189. height: math.unit(6, "feet"),
  8190. weight: math.unit(130, "lbs"),
  8191. name: "Back",
  8192. image: {
  8193. source: "./media/characters/q/back.svg",
  8194. extra: 854 / 752
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Macro",
  8201. height: math.unit(90, "feet"),
  8202. default: true
  8203. },
  8204. {
  8205. name: "Extra Macro",
  8206. height: math.unit(300, "feet"),
  8207. },
  8208. {
  8209. name: "BIG WALF",
  8210. height: math.unit(750, "feet"),
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8216. {
  8217. front: {
  8218. height: math.unit(6, "feet"),
  8219. weight: math.unit(150, "lbs"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/carley/front.svg",
  8223. extra: 3927 / 3540,
  8224. bottom: 29.2 / 735
  8225. }
  8226. }
  8227. },
  8228. [
  8229. {
  8230. name: "Normal",
  8231. height: math.unit(6 + 3 / 12, "feet")
  8232. },
  8233. {
  8234. name: "Macro",
  8235. height: math.unit(185, "feet"),
  8236. default: true
  8237. },
  8238. {
  8239. name: "Megamacro",
  8240. height: math.unit(8, "miles"),
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8246. {
  8247. front: {
  8248. height: math.unit(3, "feet"),
  8249. weight: math.unit(28, "lbs"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/citrine/front.svg"
  8253. }
  8254. }
  8255. },
  8256. [
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(3, "feet"),
  8260. default: true
  8261. }
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8266. {
  8267. front: {
  8268. height: math.unit(14, "feet"),
  8269. weight: math.unit(1450, "kg"),
  8270. capacity: math.unit(15, "people"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/aura-starwind/front.svg",
  8274. extra: 1440/1327,
  8275. bottom: 11/1451
  8276. }
  8277. },
  8278. side: {
  8279. height: math.unit(14, "feet"),
  8280. weight: math.unit(1450, "kg"),
  8281. capacity: math.unit(15, "people"),
  8282. name: "Side",
  8283. image: {
  8284. source: "./media/characters/aura-starwind/side.svg",
  8285. extra: 1654 / 1497
  8286. }
  8287. },
  8288. taur: {
  8289. height: math.unit(18, "feet"),
  8290. weight: math.unit(5500, "kg"),
  8291. capacity: math.unit(50, "people"),
  8292. name: "Taur",
  8293. image: {
  8294. source: "./media/characters/aura-starwind/taur.svg",
  8295. extra: 1760 / 1650
  8296. }
  8297. },
  8298. feral: {
  8299. height: math.unit(46, "feet"),
  8300. weight: math.unit(25000, "kg"),
  8301. capacity: math.unit(120, "people"),
  8302. name: "Feral",
  8303. image: {
  8304. source: "./media/characters/aura-starwind/feral.svg"
  8305. }
  8306. },
  8307. },
  8308. [
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(14, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(50, "meters")
  8317. },
  8318. {
  8319. name: "Megamacro",
  8320. height: math.unit(5000, "meters")
  8321. },
  8322. {
  8323. name: "Gigamacro",
  8324. height: math.unit(100000, "kilometers")
  8325. },
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(2 + 7 / 12, "feet"),
  8333. weight: math.unit(32, "lbs"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/rivet/front.svg",
  8337. extra: 1716 / 1658,
  8338. bottom: 0.03
  8339. }
  8340. },
  8341. foot: {
  8342. height: math.unit(0.551, "feet"),
  8343. name: "Rivet's Foot",
  8344. image: {
  8345. source: "./media/characters/rivet/foot.svg"
  8346. },
  8347. rename: true
  8348. }
  8349. },
  8350. [
  8351. {
  8352. name: "Micro",
  8353. height: math.unit(1.5, "inches"),
  8354. },
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(2 + 7 / 12, "feet"),
  8358. default: true
  8359. },
  8360. {
  8361. name: "Macro",
  8362. height: math.unit(85, "feet")
  8363. },
  8364. {
  8365. name: "Megamacro",
  8366. height: math.unit(2.2, "km")
  8367. }
  8368. ]
  8369. ))
  8370. characterMakers.push(() => makeCharacter(
  8371. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8372. {
  8373. front: {
  8374. height: math.unit(5 + 9 / 12, "feet"),
  8375. weight: math.unit(150, "lbs"),
  8376. name: "Front",
  8377. image: {
  8378. source: "./media/characters/coffee/front.svg",
  8379. extra: 3666 / 3032,
  8380. bottom: 0.04
  8381. }
  8382. },
  8383. foot: {
  8384. height: math.unit(1.29, "feet"),
  8385. name: "Foot",
  8386. image: {
  8387. source: "./media/characters/coffee/foot.svg"
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Micro",
  8394. height: math.unit(2, "inches"),
  8395. },
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(5 + 9 / 12, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Macro",
  8403. height: math.unit(800, "feet")
  8404. },
  8405. {
  8406. name: "Megamacro",
  8407. height: math.unit(25, "miles")
  8408. }
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8413. {
  8414. front: {
  8415. height: math.unit(6, "feet"),
  8416. weight: math.unit(200, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/chari-gal/front.svg",
  8420. extra: 1568 / 1385,
  8421. bottom: 0.047
  8422. }
  8423. },
  8424. gigantamax: {
  8425. height: math.unit(6 * 16, "feet"),
  8426. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8427. name: "Gigantamax",
  8428. image: {
  8429. source: "./media/characters/chari-gal/gigantamax.svg",
  8430. extra: 1124 / 888,
  8431. bottom: 0.03
  8432. }
  8433. },
  8434. },
  8435. [
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(5 + 7 / 12, "feet")
  8439. },
  8440. {
  8441. name: "Macro",
  8442. height: math.unit(200, "feet"),
  8443. default: true
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(150, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/nova/front.svg",
  8456. extra: 5000 / 4722,
  8457. bottom: 0.02
  8458. }
  8459. }
  8460. },
  8461. [
  8462. {
  8463. name: "Micro-",
  8464. height: math.unit(0.8, "inches")
  8465. },
  8466. {
  8467. name: "Micro",
  8468. height: math.unit(2, "inches"),
  8469. default: true
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8475. {
  8476. front: {
  8477. height: math.unit(3 + 1 / 12, "feet"),
  8478. weight: math.unit(21.7, "lbs"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/argent/front.svg",
  8482. extra: 1471 / 1331,
  8483. bottom: 100.8 / 1575.5
  8484. }
  8485. }
  8486. },
  8487. [
  8488. {
  8489. name: "Micro",
  8490. height: math.unit(2, "inches")
  8491. },
  8492. {
  8493. name: "Normal",
  8494. height: math.unit(3 + 1 / 12, "feet"),
  8495. default: true
  8496. },
  8497. {
  8498. name: "Macro",
  8499. height: math.unit(120, "feet")
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8505. {
  8506. lamp: {
  8507. height: math.unit(7 * 1559 / 989, "feet"),
  8508. name: "Magic Lamp",
  8509. image: {
  8510. source: "./media/characters/mira-al-cul/lamp.svg",
  8511. extra: 1617 / 1559
  8512. }
  8513. },
  8514. front: {
  8515. height: math.unit(7, "feet"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/mira-al-cul/front.svg",
  8519. extra: 1044 / 990
  8520. }
  8521. },
  8522. },
  8523. [
  8524. {
  8525. name: "Heavily Restricted",
  8526. height: math.unit(7 * 1559 / 989, "feet")
  8527. },
  8528. {
  8529. name: "Freshly Freed",
  8530. height: math.unit(50 * 1559 / 989, "feet")
  8531. },
  8532. {
  8533. name: "World Encompassing",
  8534. height: math.unit(10000 * 1559 / 989, "miles")
  8535. },
  8536. {
  8537. name: "Galactic",
  8538. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8539. },
  8540. {
  8541. name: "Palmed Universe",
  8542. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Multiversal Matriarch",
  8547. height: math.unit(8.87e10, "yottameters")
  8548. },
  8549. {
  8550. name: "Void Mother",
  8551. height: math.unit(3.14e110, "yottaparsecs")
  8552. },
  8553. {
  8554. name: "Toying with Transcendence",
  8555. height: math.unit(1e307, "meters")
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8561. {
  8562. front: {
  8563. height: math.unit(17 + 1 / 12, "feet"),
  8564. weight: math.unit(476.2 * 5, "lbs"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/kuro-shi-uchū/front.svg",
  8568. extra: 2329 / 1835,
  8569. bottom: 0.02
  8570. }
  8571. },
  8572. },
  8573. [
  8574. {
  8575. name: "Micro",
  8576. height: math.unit(2, "inches")
  8577. },
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(12, "meters")
  8581. },
  8582. {
  8583. name: "Planetary",
  8584. height: math.unit(0.00929, "AU"),
  8585. default: true
  8586. },
  8587. {
  8588. name: "Universal",
  8589. height: math.unit(20, "gigaparsecs")
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(5 + 2 / 12, "feet"),
  8598. weight: math.unit(120, "lbs"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/katherine/front.svg",
  8602. extra: 2075 / 1969
  8603. }
  8604. },
  8605. dress: {
  8606. height: math.unit(5 + 2 / 12, "feet"),
  8607. weight: math.unit(120, "lbs"),
  8608. name: "Dress",
  8609. image: {
  8610. source: "./media/characters/katherine/dress.svg",
  8611. extra: 2258 / 2064
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(1, "inches"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(5 + 2 / 12, "feet")
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(100, "meters")
  8628. },
  8629. {
  8630. name: "Megamacro",
  8631. height: math.unit(80, "miles")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(7 + 8 / 12, "feet"),
  8640. weight: math.unit(250, "lbs"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/yevis/front.svg",
  8644. extra: 1938 / 1755
  8645. }
  8646. }
  8647. },
  8648. [
  8649. {
  8650. name: "Mortal",
  8651. height: math.unit(7 + 8 / 12, "feet")
  8652. },
  8653. {
  8654. name: "Battle",
  8655. height: math.unit(25 + 11 / 12, "feet")
  8656. },
  8657. {
  8658. name: "Wrath",
  8659. height: math.unit(1654 + 11 / 12, "feet")
  8660. },
  8661. {
  8662. name: "Planet Destroyer",
  8663. height: math.unit(12000, "miles")
  8664. },
  8665. {
  8666. name: "Galaxy Conqueror",
  8667. height: math.unit(1.45, "zettameters"),
  8668. default: true
  8669. },
  8670. {
  8671. name: "Universal War",
  8672. height: math.unit(184, "gigaparsecs")
  8673. },
  8674. {
  8675. name: "Eternity War",
  8676. height: math.unit(1.98e55, "yottaparsecs")
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8682. {
  8683. front: {
  8684. height: math.unit(5 + 8 / 12, "feet"),
  8685. weight: math.unit(63, "kg"),
  8686. name: "Front",
  8687. image: {
  8688. source: "./media/characters/xavier/front.svg",
  8689. extra: 944 / 883
  8690. }
  8691. },
  8692. frontStretch: {
  8693. height: math.unit(5 + 8 / 12, "feet"),
  8694. weight: math.unit(63, "kg"),
  8695. name: "Stretching",
  8696. image: {
  8697. source: "./media/characters/xavier/front-stretch.svg",
  8698. extra: 962 / 820
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(5 + 8 / 12, "feet")
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(100, "meters"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "McLargeHuge",
  8714. height: math.unit(10, "miles")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(5 + 5 / 12, "feet"),
  8723. weight: math.unit(150, "lb"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/joshii/front.svg",
  8727. extra: 765 / 653,
  8728. bottom: 51 / 816
  8729. }
  8730. },
  8731. foot: {
  8732. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8733. name: "Foot",
  8734. image: {
  8735. source: "./media/characters/joshii/foot.svg"
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Micro",
  8742. height: math.unit(2, "inches"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Normal",
  8747. height: math.unit(5 + 5 / 12, "feet")
  8748. },
  8749. {
  8750. name: "Macro",
  8751. height: math.unit(785, "feet")
  8752. },
  8753. {
  8754. name: "Megamacro",
  8755. height: math.unit(24.5, "miles")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(150, "lb"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/goddess-elizabeth/front.svg",
  8768. extra: 1800 / 1525,
  8769. bottom: 0.005
  8770. }
  8771. },
  8772. foot: {
  8773. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8774. name: "Foot",
  8775. image: {
  8776. source: "./media/characters/goddess-elizabeth/foot.svg"
  8777. }
  8778. },
  8779. mouth: {
  8780. height: math.unit(6, "feet"),
  8781. name: "Mouth",
  8782. image: {
  8783. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Micro",
  8790. height: math.unit(12, "feet")
  8791. },
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(80, "miles"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(15000, "parsecs")
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(5 + 9 / 12, "feet"),
  8808. weight: math.unit(144, "lb"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/kara/front.svg"
  8812. }
  8813. },
  8814. feet: {
  8815. height: math.unit(6 / 6.765, "feet"),
  8816. name: "Kara's Feet",
  8817. rename: true,
  8818. image: {
  8819. source: "./media/characters/kara/feet.svg"
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(5 + 9 / 12, "feet")
  8827. },
  8828. {
  8829. name: "Macro",
  8830. height: math.unit(174, "feet"),
  8831. default: true
  8832. },
  8833. ]
  8834. ))
  8835. characterMakers.push(() => makeCharacter(
  8836. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8837. {
  8838. front: {
  8839. height: math.unit(18, "feet"),
  8840. weight: math.unit(4050, "lb"),
  8841. name: "Front",
  8842. image: {
  8843. source: "./media/characters/tyrone/front.svg",
  8844. extra: 2405 / 2270,
  8845. bottom: 182 / 2587
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(18, "feet"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Macro",
  8857. height: math.unit(300, "feet")
  8858. },
  8859. {
  8860. name: "Megamacro",
  8861. height: math.unit(15, "km")
  8862. },
  8863. {
  8864. name: "Gigamacro",
  8865. height: math.unit(500, "km")
  8866. },
  8867. {
  8868. name: "Teramacro",
  8869. height: math.unit(0.5, "gigameters")
  8870. },
  8871. {
  8872. name: "Omnimacro",
  8873. height: math.unit(1e252, "yottauniverse")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8879. {
  8880. front: {
  8881. height: math.unit(7 + 8 / 12, "feet"),
  8882. weight: math.unit(120, "lb"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/danny/front.svg",
  8886. extra: 1490 / 1350
  8887. }
  8888. },
  8889. back: {
  8890. height: math.unit(7 + 8 / 12, "feet"),
  8891. weight: math.unit(120, "lb"),
  8892. name: "Back",
  8893. image: {
  8894. source: "./media/characters/danny/back.svg",
  8895. extra: 1490 / 1350
  8896. }
  8897. },
  8898. },
  8899. [
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(7 + 8 / 12, "feet"),
  8903. default: true
  8904. },
  8905. ]
  8906. ))
  8907. characterMakers.push(() => makeCharacter(
  8908. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8909. {
  8910. front: {
  8911. height: math.unit(3.5, "inches"),
  8912. weight: math.unit(19, "grams"),
  8913. name: "Front",
  8914. image: {
  8915. source: "./media/characters/mallow/front.svg",
  8916. extra: 471 / 431
  8917. }
  8918. },
  8919. back: {
  8920. height: math.unit(3.5, "inches"),
  8921. weight: math.unit(19, "grams"),
  8922. name: "Back",
  8923. image: {
  8924. source: "./media/characters/mallow/back.svg",
  8925. extra: 471 / 431
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Normal",
  8932. height: math.unit(3.5, "inches"),
  8933. default: true
  8934. },
  8935. ]
  8936. ))
  8937. characterMakers.push(() => makeCharacter(
  8938. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8939. {
  8940. front: {
  8941. height: math.unit(9, "feet"),
  8942. weight: math.unit(230, "kg"),
  8943. name: "Front",
  8944. image: {
  8945. source: "./media/characters/starry-aqua/front.svg"
  8946. }
  8947. },
  8948. back: {
  8949. height: math.unit(9, "feet"),
  8950. weight: math.unit(230, "kg"),
  8951. name: "Back",
  8952. image: {
  8953. source: "./media/characters/starry-aqua/back.svg"
  8954. }
  8955. },
  8956. hand: {
  8957. height: math.unit(9 * 0.1168, "feet"),
  8958. name: "Hand",
  8959. image: {
  8960. source: "./media/characters/starry-aqua/hand.svg"
  8961. }
  8962. },
  8963. foot: {
  8964. height: math.unit(9 * 0.18, "feet"),
  8965. name: "Foot",
  8966. image: {
  8967. source: "./media/characters/starry-aqua/foot.svg"
  8968. }
  8969. }
  8970. },
  8971. [
  8972. {
  8973. name: "Micro",
  8974. height: math.unit(3, "inches")
  8975. },
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(9, "feet")
  8979. },
  8980. {
  8981. name: "Macro",
  8982. height: math.unit(300, "feet"),
  8983. default: true
  8984. },
  8985. {
  8986. name: "Megamacro",
  8987. height: math.unit(3200, "feet")
  8988. }
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8993. {
  8994. front: {
  8995. height: math.unit(15, "feet"),
  8996. weight: math.unit(5026, "lb"),
  8997. name: "Front",
  8998. image: {
  8999. source: "./media/characters/luka-towers/front.svg",
  9000. extra: 1269/1133,
  9001. bottom: 51/1320
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(15, "feet"),
  9009. default: true
  9010. },
  9011. {
  9012. name: "Minimacro",
  9013. height: math.unit(25, "feet")
  9014. },
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(320, "feet")
  9018. },
  9019. {
  9020. name: "Megamacro",
  9021. height: math.unit(35000, "feet")
  9022. },
  9023. {
  9024. name: "Gigamacro",
  9025. height: math.unit(4000, "miles")
  9026. },
  9027. {
  9028. name: "Teramacro",
  9029. height: math.unit(15000, "miles")
  9030. },
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9035. {
  9036. front: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(150, "lb"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/natalie-nightring/front.svg",
  9042. extra: 1,
  9043. bottom: 0.06
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Uh Oh",
  9050. height: math.unit(0.1, "mm")
  9051. },
  9052. {
  9053. name: "Small",
  9054. height: math.unit(3, "inches")
  9055. },
  9056. {
  9057. name: "Human Scale",
  9058. height: math.unit(6, "feet")
  9059. },
  9060. {
  9061. name: "Librarian",
  9062. height: math.unit(50, "feet"),
  9063. default: true
  9064. },
  9065. {
  9066. name: "Immense",
  9067. height: math.unit(200, "miles")
  9068. },
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9073. {
  9074. front: {
  9075. height: math.unit(6, "feet"),
  9076. weight: math.unit(180, "lbs"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/danni-rosie/front.svg",
  9080. extra: 1260 / 1128,
  9081. bottom: 0.022
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Micro",
  9088. height: math.unit(2, "inches"),
  9089. default: true
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(5 + 9 / 12, "feet"),
  9098. weight: math.unit(220, "lb"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/samantha-kruse/front.svg",
  9102. extra: (985 / 935),
  9103. bottom: 0.03
  9104. }
  9105. },
  9106. frontUndressed: {
  9107. height: math.unit(5 + 9 / 12, "feet"),
  9108. weight: math.unit(220, "lb"),
  9109. name: "Front (Undressed)",
  9110. image: {
  9111. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9112. extra: (973 / 923),
  9113. bottom: 0.025
  9114. }
  9115. },
  9116. fat: {
  9117. height: math.unit(5 + 9 / 12, "feet"),
  9118. weight: math.unit(900, "lb"),
  9119. name: "Front (Fat)",
  9120. image: {
  9121. source: "./media/characters/samantha-kruse/fat.svg",
  9122. extra: 2688 / 2561
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(5 + 9 / 12, "feet"),
  9130. default: true
  9131. }
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9136. {
  9137. back: {
  9138. height: math.unit(5 + 4 / 12, "feet"),
  9139. weight: math.unit(4963, "lb"),
  9140. name: "Back",
  9141. image: {
  9142. source: "./media/characters/amelia-rosie/back.svg",
  9143. extra: 1113 / 963,
  9144. bottom: 0.01
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Level 0",
  9151. height: math.unit(5 + 4 / 12, "feet")
  9152. },
  9153. {
  9154. name: "Level 1",
  9155. height: math.unit(164597, "feet"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Level 2",
  9160. height: math.unit(956243, "miles")
  9161. },
  9162. {
  9163. name: "Level 3",
  9164. height: math.unit(29421709423, "miles")
  9165. },
  9166. {
  9167. name: "Level 4",
  9168. height: math.unit(154, "lightyears")
  9169. },
  9170. {
  9171. name: "Level 5",
  9172. height: math.unit(4738272, "lightyears")
  9173. },
  9174. {
  9175. name: "Level 6",
  9176. height: math.unit(145787152896, "lightyears")
  9177. },
  9178. ]
  9179. ))
  9180. characterMakers.push(() => makeCharacter(
  9181. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9182. {
  9183. front: {
  9184. height: math.unit(5 + 11 / 12, "feet"),
  9185. weight: math.unit(65, "kg"),
  9186. name: "Front",
  9187. image: {
  9188. source: "./media/characters/rook-kitara/front.svg",
  9189. extra: 1347 / 1274,
  9190. bottom: 0.005
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Totally Unfair",
  9197. height: math.unit(1.8, "mm")
  9198. },
  9199. {
  9200. name: "Lap Rookie",
  9201. height: math.unit(1.4, "feet")
  9202. },
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(5 + 11 / 12, "feet"),
  9206. default: true
  9207. },
  9208. {
  9209. name: "How Did This Happen",
  9210. height: math.unit(80, "miles")
  9211. }
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(7, "feet"),
  9219. weight: math.unit(300, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/pisces/front.svg",
  9223. extra: 2255 / 2115,
  9224. bottom: 0.03
  9225. }
  9226. },
  9227. back: {
  9228. height: math.unit(7, "feet"),
  9229. weight: math.unit(300, "lb"),
  9230. name: "Back",
  9231. image: {
  9232. source: "./media/characters/pisces/back.svg",
  9233. extra: 2146 / 2055,
  9234. bottom: 0.04
  9235. }
  9236. },
  9237. },
  9238. [
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(7, "feet"),
  9242. default: true
  9243. },
  9244. {
  9245. name: "Swimming Pool",
  9246. height: math.unit(12.2, "meters")
  9247. },
  9248. {
  9249. name: "Olympic Swimming Pool",
  9250. height: math.unit(56.3, "meters")
  9251. },
  9252. {
  9253. name: "Lake Superior",
  9254. height: math.unit(93900, "meters")
  9255. },
  9256. {
  9257. name: "Mediterranean Sea",
  9258. height: math.unit(644457, "meters")
  9259. },
  9260. {
  9261. name: "World's Oceans",
  9262. height: math.unit(4567491, "meters")
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(2.3, "meters"),
  9271. weight: math.unit(120, "kg"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/zelas/front.svg"
  9275. }
  9276. },
  9277. side: {
  9278. height: math.unit(2.3, "meters"),
  9279. weight: math.unit(120, "kg"),
  9280. name: "Side",
  9281. image: {
  9282. source: "./media/characters/zelas/side.svg"
  9283. }
  9284. },
  9285. back: {
  9286. height: math.unit(2.3, "meters"),
  9287. weight: math.unit(120, "kg"),
  9288. name: "Back",
  9289. image: {
  9290. source: "./media/characters/zelas/back.svg"
  9291. }
  9292. },
  9293. foot: {
  9294. height: math.unit(1.116, "feet"),
  9295. name: "Foot",
  9296. image: {
  9297. source: "./media/characters/zelas/foot.svg"
  9298. }
  9299. },
  9300. },
  9301. [
  9302. {
  9303. name: "Normal",
  9304. height: math.unit(2.3, "meters")
  9305. },
  9306. {
  9307. name: "Macro",
  9308. height: math.unit(30, "meters"),
  9309. default: true
  9310. },
  9311. ]
  9312. ))
  9313. characterMakers.push(() => makeCharacter(
  9314. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9315. {
  9316. front: {
  9317. height: math.unit(1, "inch"),
  9318. weight: math.unit(0.21, "grams"),
  9319. name: "Front",
  9320. image: {
  9321. source: "./media/characters/talbot/front.svg",
  9322. extra: 594 / 544
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Micro",
  9329. height: math.unit(1, "inch"),
  9330. default: true
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9336. {
  9337. front: {
  9338. height: math.unit(3 + 3 / 12, "feet"),
  9339. weight: math.unit(51.8, "lb"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/fliss/front.svg",
  9343. extra: 840 / 640
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Teeny Tiny",
  9350. height: math.unit(1, "mm")
  9351. },
  9352. {
  9353. name: "Small",
  9354. height: math.unit(1, "inch"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Standard Sylveon",
  9359. height: math.unit(3 + 3 / 12, "feet")
  9360. },
  9361. {
  9362. name: "Large Nuisance",
  9363. height: math.unit(33, "feet")
  9364. },
  9365. {
  9366. name: "City Filler",
  9367. height: math.unit(3000, "feet")
  9368. },
  9369. {
  9370. name: "New Horizon",
  9371. height: math.unit(6000, "miles")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(5, "cm"),
  9380. weight: math.unit(1.94, "g"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/fleta/front.svg",
  9384. extra: 835 / 803
  9385. }
  9386. },
  9387. back: {
  9388. height: math.unit(5, "cm"),
  9389. weight: math.unit(1.94, "g"),
  9390. name: "Back",
  9391. image: {
  9392. source: "./media/characters/fleta/back.svg",
  9393. extra: 835 / 803
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Micro",
  9400. height: math.unit(5, "cm"),
  9401. default: true
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9407. {
  9408. front: {
  9409. height: math.unit(6, "feet"),
  9410. weight: math.unit(225, "lb"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/dominic/front.svg",
  9414. extra: 1770 / 1620,
  9415. bottom: 0.025
  9416. }
  9417. },
  9418. back: {
  9419. height: math.unit(6, "feet"),
  9420. weight: math.unit(225, "lb"),
  9421. name: "Back",
  9422. image: {
  9423. source: "./media/characters/dominic/back.svg",
  9424. extra: 1745 / 1620,
  9425. bottom: 0.065
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Nano",
  9432. height: math.unit(0.1, "mm")
  9433. },
  9434. {
  9435. name: "Micro-",
  9436. height: math.unit(1, "mm")
  9437. },
  9438. {
  9439. name: "Micro",
  9440. height: math.unit(4, "inches")
  9441. },
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(6 + 4 / 12, "feet"),
  9445. default: true
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(115, "feet")
  9450. },
  9451. {
  9452. name: "Macro+",
  9453. height: math.unit(955, "feet")
  9454. },
  9455. {
  9456. name: "Megamacro",
  9457. height: math.unit(8990, "feet")
  9458. },
  9459. {
  9460. name: "Gigmacro",
  9461. height: math.unit(9310, "miles")
  9462. },
  9463. {
  9464. name: "Teramacro",
  9465. height: math.unit(1567005010, "miles")
  9466. },
  9467. {
  9468. name: "Examacro",
  9469. height: math.unit(1425, "parsecs")
  9470. },
  9471. ]
  9472. ))
  9473. characterMakers.push(() => makeCharacter(
  9474. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9475. {
  9476. front: {
  9477. height: math.unit(400, "feet"),
  9478. weight: math.unit(44444444, "lb"),
  9479. name: "Front",
  9480. image: {
  9481. source: "./media/characters/major-colonel/front.svg"
  9482. }
  9483. },
  9484. back: {
  9485. height: math.unit(400, "feet"),
  9486. weight: math.unit(44444444, "lb"),
  9487. name: "Back",
  9488. image: {
  9489. source: "./media/characters/major-colonel/back.svg"
  9490. }
  9491. },
  9492. },
  9493. [
  9494. {
  9495. name: "Macro",
  9496. height: math.unit(400, "feet"),
  9497. default: true
  9498. },
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9503. {
  9504. catFront: {
  9505. height: math.unit(6, "feet"),
  9506. weight: math.unit(120, "lb"),
  9507. name: "Front (Cat Side)",
  9508. image: {
  9509. source: "./media/characters/axel-lycan/cat-front.svg",
  9510. extra: 430 / 402,
  9511. bottom: 43 / 472.35
  9512. }
  9513. },
  9514. catBack: {
  9515. height: math.unit(6, "feet"),
  9516. weight: math.unit(120, "lb"),
  9517. name: "Back (Cat Side)",
  9518. image: {
  9519. source: "./media/characters/axel-lycan/cat-back.svg",
  9520. extra: 447 / 419,
  9521. bottom: 23.3 / 469
  9522. }
  9523. },
  9524. wolfFront: {
  9525. height: math.unit(6, "feet"),
  9526. weight: math.unit(120, "lb"),
  9527. name: "Front (Wolf Side)",
  9528. image: {
  9529. source: "./media/characters/axel-lycan/wolf-front.svg",
  9530. extra: 485 / 456,
  9531. bottom: 19 / 504
  9532. }
  9533. },
  9534. wolfBack: {
  9535. height: math.unit(6, "feet"),
  9536. weight: math.unit(120, "lb"),
  9537. name: "Back (Wolf Side)",
  9538. image: {
  9539. source: "./media/characters/axel-lycan/wolf-back.svg",
  9540. extra: 475 / 438,
  9541. bottom: 39.2 / 514
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(1, "km"),
  9549. default: true
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(5 + 9 / 12, "feet"),
  9558. weight: math.unit(175, "lb"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/vanrel-hyena/front.svg",
  9562. extra: 1086 / 1010,
  9563. bottom: 0.04
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Normal",
  9570. height: math.unit(5 + 9 / 12, "feet"),
  9571. default: true
  9572. },
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(6, "feet"),
  9580. weight: math.unit(103, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/abbott-absol/front.svg",
  9584. extra: 2010 / 1842
  9585. }
  9586. },
  9587. },
  9588. [
  9589. {
  9590. name: "Megamicro",
  9591. height: math.unit(0.1, "mm")
  9592. },
  9593. {
  9594. name: "Micro",
  9595. height: math.unit(1, "inch")
  9596. },
  9597. {
  9598. name: "Normal",
  9599. height: math.unit(6, "feet"),
  9600. default: true
  9601. },
  9602. ]
  9603. ))
  9604. characterMakers.push(() => makeCharacter(
  9605. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9606. {
  9607. front: {
  9608. height: math.unit(6, "feet"),
  9609. weight: math.unit(264, "lb"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/hector/front.svg",
  9613. extra: 2280 / 2130,
  9614. bottom: 0.07
  9615. }
  9616. },
  9617. },
  9618. [
  9619. {
  9620. name: "Normal",
  9621. height: math.unit(12.25, "foot"),
  9622. default: true
  9623. },
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(160, "feet")
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9632. {
  9633. front: {
  9634. height: math.unit(6, "feet"),
  9635. weight: math.unit(150, "lb"),
  9636. name: "Front",
  9637. image: {
  9638. source: "./media/characters/sal/front.svg",
  9639. extra: 1846 / 1699,
  9640. bottom: 0.04
  9641. }
  9642. },
  9643. },
  9644. [
  9645. {
  9646. name: "Megamacro",
  9647. height: math.unit(10, "miles"),
  9648. default: true
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9654. {
  9655. front: {
  9656. height: math.unit(3, "meters"),
  9657. weight: math.unit(450, "kg"),
  9658. name: "front",
  9659. image: {
  9660. source: "./media/characters/ranger/front.svg",
  9661. extra: 2401 / 2243,
  9662. bottom: 0.05
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Normal",
  9669. height: math.unit(3, "meters"),
  9670. default: true
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(14, "feet"),
  9679. weight: math.unit(800, "kg"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/theresa/front.svg",
  9683. extra: 3575 / 3346,
  9684. bottom: 0.03
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Normal",
  9691. height: math.unit(14, "feet"),
  9692. default: true
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9698. {
  9699. front: {
  9700. height: math.unit(6, "feet"),
  9701. weight: math.unit(3, "kg"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/ine/front.svg",
  9705. extra: 678 / 539,
  9706. bottom: 0.023
  9707. }
  9708. },
  9709. },
  9710. [
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(2.265, "feet"),
  9714. default: true
  9715. },
  9716. ]
  9717. ))
  9718. characterMakers.push(() => makeCharacter(
  9719. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9720. {
  9721. front: {
  9722. height: math.unit(5, "feet"),
  9723. weight: math.unit(30, "kg"),
  9724. name: "Front",
  9725. image: {
  9726. source: "./media/characters/vial/front.svg",
  9727. extra: 1365 / 1277,
  9728. bottom: 0.04
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(5, "feet"),
  9736. default: true
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9742. {
  9743. side: {
  9744. height: math.unit(3.4, "meters"),
  9745. weight: math.unit(1000, "lb"),
  9746. name: "Side",
  9747. image: {
  9748. source: "./media/characters/rovoska/side.svg",
  9749. extra: 4403 / 1515
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(3.4, "meters"),
  9757. default: true
  9758. },
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(8, "feet"),
  9766. weight: math.unit(315, "lb"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/gunner-rotthbauer/front.svg"
  9770. }
  9771. },
  9772. back: {
  9773. height: math.unit(8, "feet"),
  9774. weight: math.unit(315, "lb"),
  9775. name: "Back",
  9776. image: {
  9777. source: "./media/characters/gunner-rotthbauer/back.svg"
  9778. }
  9779. },
  9780. },
  9781. [
  9782. {
  9783. name: "Micro",
  9784. height: math.unit(3.5, "inches")
  9785. },
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(8, "feet"),
  9789. default: true
  9790. },
  9791. {
  9792. name: "Macro",
  9793. height: math.unit(250, "feet")
  9794. },
  9795. {
  9796. name: "Megamacro",
  9797. height: math.unit(1, "AU")
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(5 + 5 / 12, "feet"),
  9806. weight: math.unit(140, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/allatia/front.svg",
  9810. extra: 1227 / 1180,
  9811. bottom: 0.027
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(5 + 5 / 12, "feet")
  9819. },
  9820. {
  9821. name: "Macro",
  9822. height: math.unit(250, "feet"),
  9823. default: true
  9824. },
  9825. {
  9826. name: "Megamacro",
  9827. height: math.unit(8, "miles")
  9828. }
  9829. ]
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9833. {
  9834. front: {
  9835. height: math.unit(6, "feet"),
  9836. weight: math.unit(120, "lb"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/tene/front.svg",
  9840. extra: 1728 / 1578,
  9841. bottom: 0.022
  9842. }
  9843. },
  9844. stomping: {
  9845. height: math.unit(2.025, "meters"),
  9846. weight: math.unit(120, "lb"),
  9847. name: "Stomping",
  9848. image: {
  9849. source: "./media/characters/tene/stomping.svg",
  9850. extra: 938 / 873,
  9851. bottom: 0.01
  9852. }
  9853. },
  9854. sitting: {
  9855. height: math.unit(1, "meter"),
  9856. weight: math.unit(120, "lb"),
  9857. name: "Sitting",
  9858. image: {
  9859. source: "./media/characters/tene/sitting.svg",
  9860. extra: 437 / 415,
  9861. bottom: 0.1
  9862. }
  9863. },
  9864. feral: {
  9865. height: math.unit(3.9, "feet"),
  9866. weight: math.unit(250, "lb"),
  9867. name: "Feral",
  9868. image: {
  9869. source: "./media/characters/tene/feral.svg",
  9870. extra: 717 / 458,
  9871. bottom: 0.179
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(6, "feet")
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(300, "feet"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "Megamacro",
  9887. height: math.unit(5, "miles")
  9888. },
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9893. {
  9894. side: {
  9895. height: math.unit(6, "feet"),
  9896. name: "Side",
  9897. image: {
  9898. source: "./media/characters/evander/side.svg",
  9899. extra: 877 / 477
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Normal",
  9906. height: math.unit(0.83, "meters"),
  9907. default: true
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(12, "feet"),
  9916. weight: math.unit(1000, "lb"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9920. extra: 1762 / 1611
  9921. }
  9922. },
  9923. back: {
  9924. height: math.unit(12, "feet"),
  9925. weight: math.unit(1000, "lb"),
  9926. name: "Back",
  9927. image: {
  9928. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9929. extra: 1762 / 1611
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Normal",
  9936. height: math.unit(12, "feet"),
  9937. default: true
  9938. },
  9939. {
  9940. name: "Kaiju",
  9941. height: math.unit(150, "feet")
  9942. },
  9943. ]
  9944. ))
  9945. characterMakers.push(() => makeCharacter(
  9946. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9947. {
  9948. front: {
  9949. height: math.unit(6, "feet"),
  9950. weight: math.unit(150, "lb"),
  9951. name: "Front",
  9952. image: {
  9953. source: "./media/characters/zero-alurus/front.svg"
  9954. }
  9955. },
  9956. back: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(150, "lb"),
  9959. name: "Back",
  9960. image: {
  9961. source: "./media/characters/zero-alurus/back.svg"
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(5 + 10 / 12, "feet")
  9969. },
  9970. {
  9971. name: "Macro",
  9972. height: math.unit(60, "feet"),
  9973. default: true
  9974. },
  9975. {
  9976. name: "Macro+",
  9977. height: math.unit(450, "feet")
  9978. },
  9979. ]
  9980. ))
  9981. characterMakers.push(() => makeCharacter(
  9982. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9983. {
  9984. front: {
  9985. height: math.unit(6, "feet"),
  9986. weight: math.unit(200, "lb"),
  9987. name: "Front",
  9988. image: {
  9989. source: "./media/characters/mega-shi/front.svg",
  9990. extra: 1279 / 1250,
  9991. bottom: 0.02
  9992. }
  9993. },
  9994. back: {
  9995. height: math.unit(6, "feet"),
  9996. weight: math.unit(200, "lb"),
  9997. name: "Back",
  9998. image: {
  9999. source: "./media/characters/mega-shi/back.svg",
  10000. extra: 1279 / 1250,
  10001. bottom: 0.02
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Micro",
  10008. height: math.unit(16 + 6 / 12, "feet")
  10009. },
  10010. {
  10011. name: "Third Dimension",
  10012. height: math.unit(40, "meters")
  10013. },
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(660, "feet"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Megamacro",
  10021. height: math.unit(10, "miles")
  10022. },
  10023. {
  10024. name: "Planetary Launch",
  10025. height: math.unit(500, "miles")
  10026. },
  10027. {
  10028. name: "Interstellar",
  10029. height: math.unit(1e9, "miles")
  10030. },
  10031. {
  10032. name: "Leaving the Universe",
  10033. height: math.unit(1, "gigaparsec")
  10034. },
  10035. {
  10036. name: "Travelling Universes",
  10037. height: math.unit(30e15, "parsecs")
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10043. {
  10044. front: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(150, "lb"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/odyssey/front.svg",
  10050. extra: 1782 / 1582,
  10051. bottom: 0.01
  10052. }
  10053. },
  10054. side: {
  10055. height: math.unit(5.7, "feet"),
  10056. weight: math.unit(140, "lb"),
  10057. name: "Side",
  10058. image: {
  10059. source: "./media/characters/odyssey/side.svg",
  10060. extra: 6462 / 5700
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(5 + 4 / 12, "feet")
  10068. },
  10069. {
  10070. name: "Macro",
  10071. height: math.unit(1, "km")
  10072. },
  10073. {
  10074. name: "Megamacro",
  10075. height: math.unit(3000, "km")
  10076. },
  10077. {
  10078. name: "Gigamacro",
  10079. height: math.unit(1, "AU"),
  10080. default: true
  10081. },
  10082. {
  10083. name: "Omniversal",
  10084. height: math.unit(100e14, "lightyears")
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(6, "feet"),
  10093. weight: math.unit(300, "lb"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/mekuto/front.svg",
  10097. extra: 921 / 832,
  10098. bottom: 0.03
  10099. }
  10100. },
  10101. hand: {
  10102. height: math.unit(6 / 10.24, "feet"),
  10103. name: "Hand",
  10104. image: {
  10105. source: "./media/characters/mekuto/hand.svg"
  10106. }
  10107. },
  10108. foot: {
  10109. height: math.unit(6 / 5.05, "feet"),
  10110. name: "Foot",
  10111. image: {
  10112. source: "./media/characters/mekuto/foot.svg"
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Minimicro",
  10119. height: math.unit(0.2, "inches")
  10120. },
  10121. {
  10122. name: "Micro",
  10123. height: math.unit(1.5, "inches")
  10124. },
  10125. {
  10126. name: "Normal",
  10127. height: math.unit(5 + 11 / 12, "feet"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Minimacro",
  10132. height: math.unit(17 + 9 / 12, "feet")
  10133. },
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(177.5, "feet")
  10137. },
  10138. {
  10139. name: "Megamacro",
  10140. height: math.unit(152, "miles")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(6.5, "inches"),
  10149. weight: math.unit(13, "oz"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/dafydd-tomos/front.svg",
  10153. extra: 2990 / 2603,
  10154. bottom: 0.03
  10155. }
  10156. },
  10157. },
  10158. [
  10159. {
  10160. name: "Micro",
  10161. height: math.unit(6.5, "inches"),
  10162. default: true
  10163. },
  10164. ]
  10165. ))
  10166. characterMakers.push(() => makeCharacter(
  10167. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10168. {
  10169. front: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(150, "lb"),
  10172. name: "Front",
  10173. image: {
  10174. source: "./media/characters/splinter/front.svg",
  10175. extra: 2990 / 2882,
  10176. bottom: 0.04
  10177. }
  10178. },
  10179. back: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(150, "lb"),
  10182. name: "Back",
  10183. image: {
  10184. source: "./media/characters/splinter/back.svg",
  10185. extra: 2990 / 2882,
  10186. bottom: 0.04
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(6, "feet")
  10194. },
  10195. {
  10196. name: "Macro",
  10197. height: math.unit(230, "meters"),
  10198. default: true
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(4 + 10 / 12, "feet"),
  10207. weight: math.unit(480, "lb"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/snow-gabumon/front.svg",
  10211. extra: 1140 / 963,
  10212. bottom: 0.058
  10213. }
  10214. },
  10215. back: {
  10216. height: math.unit(4 + 10 / 12, "feet"),
  10217. weight: math.unit(480, "lb"),
  10218. name: "Back",
  10219. image: {
  10220. source: "./media/characters/snow-gabumon/back.svg",
  10221. extra: 1115 / 962,
  10222. bottom: 0.041
  10223. }
  10224. },
  10225. frontUndresed: {
  10226. height: math.unit(4 + 10 / 12, "feet"),
  10227. weight: math.unit(480, "lb"),
  10228. name: "Front (Undressed)",
  10229. image: {
  10230. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10231. extra: 1061 / 960,
  10232. bottom: 0.045
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Micro",
  10239. height: math.unit(1, "inch")
  10240. },
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(4 + 10 / 12, "feet"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Macro",
  10248. height: math.unit(200, "feet")
  10249. },
  10250. {
  10251. name: "Megamacro",
  10252. height: math.unit(120, "miles")
  10253. },
  10254. {
  10255. name: "Gigamacro",
  10256. height: math.unit(9800, "miles")
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(1.7, "meters"),
  10265. weight: math.unit(140, "lb"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/moody/front.svg",
  10269. extra: 3226 / 3007,
  10270. bottom: 0.087
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Micro",
  10277. height: math.unit(1, "mm")
  10278. },
  10279. {
  10280. name: "Normal",
  10281. height: math.unit(1.7, "meters"),
  10282. default: true
  10283. },
  10284. {
  10285. name: "Macro",
  10286. height: math.unit(80, "meters")
  10287. },
  10288. {
  10289. name: "Macro+",
  10290. height: math.unit(500, "meters")
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10296. {
  10297. front: {
  10298. height: math.unit(6, "feet"),
  10299. weight: math.unit(150, "lb"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/zyas/front.svg",
  10303. extra: 1180 / 1120,
  10304. bottom: 0.045
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Normal",
  10311. height: math.unit(10, "feet"),
  10312. default: true
  10313. },
  10314. {
  10315. name: "Macro",
  10316. height: math.unit(500, "feet")
  10317. },
  10318. {
  10319. name: "Megamacro",
  10320. height: math.unit(5, "miles")
  10321. },
  10322. {
  10323. name: "Teramacro",
  10324. height: math.unit(150000, "miles")
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(150, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/cuon/front.svg",
  10337. extra: 1390 / 1320,
  10338. bottom: 0.008
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Micro",
  10345. height: math.unit(3, "inches")
  10346. },
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(18 + 9 / 12, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(360, "feet")
  10355. },
  10356. {
  10357. name: "Megamacro",
  10358. height: math.unit(360, "miles")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(2.4, "meters"),
  10367. weight: math.unit(70, "kg"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/nyanuxk/front.svg",
  10371. extra: 1172 / 1084,
  10372. bottom: 0.065
  10373. }
  10374. },
  10375. side: {
  10376. height: math.unit(2.4, "meters"),
  10377. weight: math.unit(70, "kg"),
  10378. name: "Side",
  10379. image: {
  10380. source: "./media/characters/nyanuxk/side.svg",
  10381. extra: 1190 / 1132,
  10382. bottom: 0.007
  10383. }
  10384. },
  10385. back: {
  10386. height: math.unit(2.4, "meters"),
  10387. weight: math.unit(70, "kg"),
  10388. name: "Back",
  10389. image: {
  10390. source: "./media/characters/nyanuxk/back.svg",
  10391. extra: 1200 / 1141,
  10392. bottom: 0.015
  10393. }
  10394. },
  10395. foot: {
  10396. height: math.unit(0.52, "meters"),
  10397. name: "Foot",
  10398. image: {
  10399. source: "./media/characters/nyanuxk/foot.svg"
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Micro",
  10406. height: math.unit(2, "cm")
  10407. },
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(2.4, "meters"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Smaller Macro",
  10415. height: math.unit(120, "meters")
  10416. },
  10417. {
  10418. name: "Bigger Macro",
  10419. height: math.unit(1.2, "km")
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(15, "kilometers")
  10424. },
  10425. {
  10426. name: "Gigamacro",
  10427. height: math.unit(2000, "km")
  10428. },
  10429. {
  10430. name: "Teramacro",
  10431. height: math.unit(500000, "km")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10437. {
  10438. side: {
  10439. height: math.unit(6, "feet"),
  10440. name: "Side",
  10441. image: {
  10442. source: "./media/characters/ailbhe/side.svg",
  10443. extra: 757 / 464,
  10444. bottom: 0.041
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(1.07, "meters"),
  10452. default: true
  10453. },
  10454. ]
  10455. ))
  10456. characterMakers.push(() => makeCharacter(
  10457. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10458. {
  10459. front: {
  10460. height: math.unit(6, "feet"),
  10461. weight: math.unit(120, "kg"),
  10462. name: "Front",
  10463. image: {
  10464. source: "./media/characters/zevulfius/front.svg",
  10465. extra: 965 / 903
  10466. }
  10467. },
  10468. side: {
  10469. height: math.unit(6, "feet"),
  10470. weight: math.unit(120, "kg"),
  10471. name: "Side",
  10472. image: {
  10473. source: "./media/characters/zevulfius/side.svg",
  10474. extra: 939 / 900
  10475. }
  10476. },
  10477. back: {
  10478. height: math.unit(6, "feet"),
  10479. weight: math.unit(120, "kg"),
  10480. name: "Back",
  10481. image: {
  10482. source: "./media/characters/zevulfius/back.svg",
  10483. extra: 918 / 854,
  10484. bottom: 0.005
  10485. }
  10486. },
  10487. foot: {
  10488. height: math.unit(6 / 3.72, "feet"),
  10489. name: "Foot",
  10490. image: {
  10491. source: "./media/characters/zevulfius/foot.svg"
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Macro",
  10498. height: math.unit(750, "meters")
  10499. },
  10500. {
  10501. name: "Megamacro",
  10502. height: math.unit(20, "km"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Gigamacro",
  10507. height: math.unit(2000, "km")
  10508. },
  10509. {
  10510. name: "Teramacro",
  10511. height: math.unit(250000, "km")
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(100, "feet"),
  10520. weight: math.unit(350, "kg"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/rikes/front.svg",
  10524. extra: 1565 / 1483,
  10525. bottom: 0.017
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Macro",
  10532. height: math.unit(100, "feet"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(8, "feet"),
  10542. weight: math.unit(356, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/adam-silver-mane/front.svg",
  10546. extra: 1036/937,
  10547. bottom: 63/1099
  10548. }
  10549. },
  10550. side: {
  10551. height: math.unit(8, "feet"),
  10552. weight: math.unit(356, "lb"),
  10553. name: "Side",
  10554. image: {
  10555. source: "./media/characters/adam-silver-mane/side.svg",
  10556. extra: 997/901,
  10557. bottom: 59/1056
  10558. }
  10559. },
  10560. frontNsfw: {
  10561. height: math.unit(8, "feet"),
  10562. weight: math.unit(356, "lb"),
  10563. name: "Front (NSFW)",
  10564. image: {
  10565. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10566. extra: 1036/937,
  10567. bottom: 63/1099
  10568. }
  10569. },
  10570. sideNsfw: {
  10571. height: math.unit(8, "feet"),
  10572. weight: math.unit(356, "lb"),
  10573. name: "Side (NSFW)",
  10574. image: {
  10575. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10576. extra: 997/901,
  10577. bottom: 59/1056
  10578. }
  10579. },
  10580. dick: {
  10581. height: math.unit(2.1, "feet"),
  10582. name: "Dick",
  10583. image: {
  10584. source: "./media/characters/adam-silver-mane/dick.svg"
  10585. }
  10586. },
  10587. taur: {
  10588. height: math.unit(16, "feet"),
  10589. weight: math.unit(1500, "kg"),
  10590. name: "Taur",
  10591. image: {
  10592. source: "./media/characters/adam-silver-mane/taur.svg",
  10593. extra: 1713 / 1571,
  10594. bottom: 0.01
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(8, "feet")
  10602. },
  10603. {
  10604. name: "Minimacro",
  10605. height: math.unit(80, "feet")
  10606. },
  10607. {
  10608. name: "MDA",
  10609. height: math.unit(80, "meters")
  10610. },
  10611. {
  10612. name: "Macro",
  10613. height: math.unit(800, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(8000, "feet")
  10619. },
  10620. {
  10621. name: "Gigamacro",
  10622. height: math.unit(800, "miles")
  10623. },
  10624. {
  10625. name: "Teramacro",
  10626. height: math.unit(80000, "miles")
  10627. },
  10628. {
  10629. name: "Celestial",
  10630. height: math.unit(8e6, "miles")
  10631. },
  10632. {
  10633. name: "Star Dragon",
  10634. height: math.unit(800000, "parsecs")
  10635. },
  10636. {
  10637. name: "Godly",
  10638. height: math.unit(800, "teraparsecs")
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10644. {
  10645. front: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/ky'owin/front.svg",
  10651. extra: 3888 / 3068,
  10652. bottom: 0.015
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(6 + 8 / 12, "feet")
  10660. },
  10661. {
  10662. name: "Large",
  10663. height: math.unit(68, "feet")
  10664. },
  10665. {
  10666. name: "Macro",
  10667. height: math.unit(132, "feet")
  10668. },
  10669. {
  10670. name: "Macro+",
  10671. height: math.unit(340, "feet")
  10672. },
  10673. {
  10674. name: "Macro++",
  10675. height: math.unit(680, "feet"),
  10676. default: true
  10677. },
  10678. {
  10679. name: "Megamacro",
  10680. height: math.unit(1, "mile")
  10681. },
  10682. {
  10683. name: "Megamacro+",
  10684. height: math.unit(10, "miles")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10690. {
  10691. front: {
  10692. height: math.unit(4, "feet"),
  10693. weight: math.unit(50, "lb"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/mal/front.svg",
  10697. extra: 785 / 724,
  10698. bottom: 0.07
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Micro",
  10705. height: math.unit(4, "inches")
  10706. },
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(4, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(200, "feet")
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/jordan-deware/front.svg",
  10727. extra: 1191 / 1012
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Nano",
  10734. height: math.unit(0.01, "mm")
  10735. },
  10736. {
  10737. name: "Minimicro",
  10738. height: math.unit(1, "mm")
  10739. },
  10740. {
  10741. name: "Micro",
  10742. height: math.unit(0.5, "inches")
  10743. },
  10744. {
  10745. name: "Normal",
  10746. height: math.unit(4, "feet"),
  10747. default: true
  10748. },
  10749. {
  10750. name: "Minimacro",
  10751. height: math.unit(40, "meters")
  10752. },
  10753. {
  10754. name: "Small Macro",
  10755. height: math.unit(400, "meters")
  10756. },
  10757. {
  10758. name: "Macro",
  10759. height: math.unit(4, "miles")
  10760. },
  10761. {
  10762. name: "Megamacro",
  10763. height: math.unit(40, "miles")
  10764. },
  10765. {
  10766. name: "Megamacro+",
  10767. height: math.unit(400, "miles")
  10768. },
  10769. {
  10770. name: "Gigamacro",
  10771. height: math.unit(400000, "miles")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10777. {
  10778. side: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(150, "lb"),
  10781. name: "Side",
  10782. image: {
  10783. source: "./media/characters/kimiko/side.svg",
  10784. extra: 600 / 358
  10785. }
  10786. },
  10787. },
  10788. [
  10789. {
  10790. name: "Normal",
  10791. height: math.unit(15, "feet"),
  10792. default: true
  10793. },
  10794. {
  10795. name: "Macro",
  10796. height: math.unit(220, "feet")
  10797. },
  10798. {
  10799. name: "Macro+",
  10800. height: math.unit(1450, "feet")
  10801. },
  10802. {
  10803. name: "Megamacro",
  10804. height: math.unit(11500, "feet")
  10805. },
  10806. {
  10807. name: "Gigamacro",
  10808. height: math.unit(9500, "miles")
  10809. },
  10810. {
  10811. name: "Teramacro",
  10812. height: math.unit(2208005005, "miles")
  10813. },
  10814. {
  10815. name: "Examacro",
  10816. height: math.unit(2750, "parsecs")
  10817. },
  10818. {
  10819. name: "Zettamacro",
  10820. height: math.unit(101500, "parsecs")
  10821. },
  10822. ]
  10823. ))
  10824. characterMakers.push(() => makeCharacter(
  10825. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10826. {
  10827. front: {
  10828. height: math.unit(6, "feet"),
  10829. weight: math.unit(70, "kg"),
  10830. name: "Front",
  10831. image: {
  10832. source: "./media/characters/andrew-sleepy/front.svg"
  10833. }
  10834. },
  10835. side: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(70, "kg"),
  10838. name: "Side",
  10839. image: {
  10840. source: "./media/characters/andrew-sleepy/side.svg"
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Micro",
  10847. height: math.unit(1, "mm"),
  10848. default: true
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(150, "lb"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/judio/front.svg",
  10861. extra: 1258 / 1110
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(5 + 6 / 12, "feet")
  10869. },
  10870. {
  10871. name: "Macro",
  10872. height: math.unit(1000, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Megamacro",
  10877. height: math.unit(10, "miles")
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(6, "feet"),
  10886. weight: math.unit(68, "kg"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/nomaxice/front.svg",
  10890. extra: 1498 / 1073,
  10891. bottom: 0.075
  10892. }
  10893. },
  10894. foot: {
  10895. height: math.unit(1.1, "feet"),
  10896. name: "Foot",
  10897. image: {
  10898. source: "./media/characters/nomaxice/foot.svg"
  10899. }
  10900. },
  10901. },
  10902. [
  10903. {
  10904. name: "Micro",
  10905. height: math.unit(8, "cm")
  10906. },
  10907. {
  10908. name: "Norm",
  10909. height: math.unit(1.82, "m")
  10910. },
  10911. {
  10912. name: "Norm+",
  10913. height: math.unit(8.8, "feet")
  10914. },
  10915. {
  10916. name: "Big",
  10917. height: math.unit(8, "meters"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(18, "meters")
  10923. },
  10924. {
  10925. name: "Macro+",
  10926. height: math.unit(88, "meters")
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10932. {
  10933. front: {
  10934. height: math.unit(12, "feet"),
  10935. weight: math.unit(1.5, "tons"),
  10936. name: "Front",
  10937. image: {
  10938. source: "./media/characters/dydros/front.svg",
  10939. extra: 863 / 800,
  10940. bottom: 0.015
  10941. }
  10942. },
  10943. back: {
  10944. height: math.unit(12, "feet"),
  10945. weight: math.unit(1.5, "tons"),
  10946. name: "Back",
  10947. image: {
  10948. source: "./media/characters/dydros/back.svg",
  10949. extra: 900 / 843,
  10950. bottom: 0.005
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(12, "feet"),
  10958. default: true
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(100, "kg"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/riggi/front.svg",
  10971. extra: 5787 / 5303
  10972. }
  10973. },
  10974. hyper: {
  10975. height: math.unit(6 * 5 / 3, "feet"),
  10976. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10977. name: "Hyper",
  10978. image: {
  10979. source: "./media/characters/riggi/hyper.svg",
  10980. extra: 3595 / 3485
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Small Macro",
  10987. height: math.unit(50, "feet")
  10988. },
  10989. {
  10990. name: "Default",
  10991. height: math.unit(200, "feet"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Loom",
  10996. height: math.unit(10000, "feet")
  10997. },
  10998. {
  10999. name: "Cruising Altitude",
  11000. height: math.unit(30000, "feet")
  11001. },
  11002. {
  11003. name: "Megamacro",
  11004. height: math.unit(100, "miles")
  11005. },
  11006. {
  11007. name: "Continent Sized",
  11008. height: math.unit(2800, "miles")
  11009. },
  11010. {
  11011. name: "Earth Sized",
  11012. height: math.unit(8000, "miles")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(250, "lb"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/alexi/front.svg",
  11025. extra: 3483 / 3291,
  11026. bottom: 0.04
  11027. }
  11028. },
  11029. back: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(250, "lb"),
  11032. name: "Back",
  11033. image: {
  11034. source: "./media/characters/alexi/back.svg",
  11035. extra: 3533 / 3356,
  11036. bottom: 0.021
  11037. }
  11038. },
  11039. frontTransforming: {
  11040. height: math.unit(8.58, "feet"),
  11041. weight: math.unit(1300, "lb"),
  11042. name: "Transforming",
  11043. image: {
  11044. source: "./media/characters/alexi/front-transforming.svg",
  11045. extra: 437 / 409,
  11046. bottom: 19 / 458.66
  11047. }
  11048. },
  11049. frontTransformed: {
  11050. height: math.unit(12.5, "feet"),
  11051. weight: math.unit(4000, "lb"),
  11052. name: "Transformed",
  11053. image: {
  11054. source: "./media/characters/alexi/front-transformed.svg",
  11055. extra: 639 / 614,
  11056. bottom: 30.55 / 671
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(14, "feet"),
  11064. default: true
  11065. },
  11066. {
  11067. name: "Minimacro",
  11068. height: math.unit(30, "meters")
  11069. },
  11070. {
  11071. name: "Macro",
  11072. height: math.unit(500, "meters")
  11073. },
  11074. {
  11075. name: "Megamacro",
  11076. height: math.unit(9000, "km")
  11077. },
  11078. {
  11079. name: "Teramacro",
  11080. height: math.unit(384000, "km")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(6, "feet"),
  11089. weight: math.unit(150, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/kayroo/front.svg",
  11093. extra: 1153 / 1038,
  11094. bottom: 0.06
  11095. }
  11096. },
  11097. foot: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(150, "lb"),
  11100. name: "Foot",
  11101. image: {
  11102. source: "./media/characters/kayroo/foot.svg"
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(8, "feet"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Minimacro",
  11114. height: math.unit(250, "feet")
  11115. },
  11116. {
  11117. name: "Macro",
  11118. height: math.unit(2800, "feet")
  11119. },
  11120. {
  11121. name: "Megamacro",
  11122. height: math.unit(5200, "feet")
  11123. },
  11124. {
  11125. name: "Gigamacro",
  11126. height: math.unit(27000, "feet")
  11127. },
  11128. {
  11129. name: "Omega",
  11130. height: math.unit(45000, "feet")
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(18, "feet"),
  11139. weight: math.unit(5800, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/rhys/front.svg",
  11143. extra: 3386 / 3090,
  11144. bottom: 0.07
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Normal",
  11151. height: math.unit(18, "feet"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Working Size",
  11156. height: math.unit(200, "feet")
  11157. },
  11158. {
  11159. name: "Demolition Size",
  11160. height: math.unit(2000, "feet")
  11161. },
  11162. {
  11163. name: "Maximum Licensed Size",
  11164. height: math.unit(5, "miles")
  11165. },
  11166. {
  11167. name: "Maximum Observed Size",
  11168. height: math.unit(10, "yottameters")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(250, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/toto/front.svg",
  11181. extra: 527 / 479,
  11182. bottom: 0.05
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Micro",
  11189. height: math.unit(3, "feet")
  11190. },
  11191. {
  11192. name: "Normal",
  11193. height: math.unit(10, "feet")
  11194. },
  11195. {
  11196. name: "Macro",
  11197. height: math.unit(150, "feet"),
  11198. default: true
  11199. },
  11200. {
  11201. name: "Megamacro",
  11202. height: math.unit(1200, "feet")
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "King", species: ["lion"], tags: ["anthro"] },
  11208. {
  11209. back: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(150, "lb"),
  11212. name: "Back",
  11213. image: {
  11214. source: "./media/characters/king/back.svg"
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Micro",
  11221. height: math.unit(2, "inches")
  11222. },
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(8, "feet")
  11226. },
  11227. {
  11228. name: "Macro",
  11229. height: math.unit(200, "feet"),
  11230. default: true
  11231. },
  11232. {
  11233. name: "Megamacro",
  11234. height: math.unit(50, "miles")
  11235. },
  11236. ]
  11237. ))
  11238. characterMakers.push(() => makeCharacter(
  11239. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11240. {
  11241. front: {
  11242. height: math.unit(11, "feet"),
  11243. weight: math.unit(1400, "lb"),
  11244. name: "Front",
  11245. image: {
  11246. source: "./media/characters/cordite/front.svg",
  11247. extra: 1919/1827,
  11248. bottom: 40/1959
  11249. }
  11250. },
  11251. side: {
  11252. height: math.unit(11, "feet"),
  11253. weight: math.unit(1400, "lb"),
  11254. name: "Side",
  11255. image: {
  11256. source: "./media/characters/cordite/side.svg",
  11257. extra: 1908/1793,
  11258. bottom: 38/1946
  11259. }
  11260. },
  11261. back: {
  11262. height: math.unit(11, "feet"),
  11263. weight: math.unit(1400, "lb"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/cordite/back.svg",
  11267. extra: 1938/1837,
  11268. bottom: 10/1948
  11269. }
  11270. },
  11271. feral: {
  11272. height: math.unit(2, "feet"),
  11273. weight: math.unit(90, "lb"),
  11274. name: "Feral",
  11275. image: {
  11276. source: "./media/characters/cordite/feral.svg",
  11277. extra: 1260 / 755,
  11278. bottom: 0.05
  11279. }
  11280. },
  11281. },
  11282. [
  11283. {
  11284. name: "Normal",
  11285. height: math.unit(11, "feet"),
  11286. default: true
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/pianostrong/front.svg",
  11299. extra: 6577 / 6254,
  11300. bottom: 0.02
  11301. }
  11302. },
  11303. side: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(150, "lb"),
  11306. name: "Side",
  11307. image: {
  11308. source: "./media/characters/pianostrong/side.svg",
  11309. extra: 6106 / 5730
  11310. }
  11311. },
  11312. back: {
  11313. height: math.unit(6, "feet"),
  11314. weight: math.unit(150, "lb"),
  11315. name: "Back",
  11316. image: {
  11317. source: "./media/characters/pianostrong/back.svg",
  11318. extra: 6085 / 5733,
  11319. bottom: 0.01
  11320. }
  11321. },
  11322. },
  11323. [
  11324. {
  11325. name: "Macro",
  11326. height: math.unit(100, "feet")
  11327. },
  11328. {
  11329. name: "Macro+",
  11330. height: math.unit(300, "feet"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Macro++",
  11335. height: math.unit(1000, "feet")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(150, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/kona/front.svg",
  11348. extra: 2960 / 2629,
  11349. bottom: 0.005
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(11 + 8 / 12, "feet")
  11357. },
  11358. {
  11359. name: "Macro",
  11360. height: math.unit(850, "feet"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Macro+",
  11365. height: math.unit(1.5, "km"),
  11366. default: true
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(80, "miles")
  11371. },
  11372. {
  11373. name: "Gigamacro",
  11374. height: math.unit(3500, "miles")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11380. {
  11381. side: {
  11382. height: math.unit(1.9, "meters"),
  11383. weight: math.unit(326, "kg"),
  11384. name: "Side",
  11385. image: {
  11386. source: "./media/characters/levi/side.svg",
  11387. extra: 1704 / 1334,
  11388. bottom: 0.02
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(1.9, "meters"),
  11396. default: true
  11397. },
  11398. {
  11399. name: "Macro",
  11400. height: math.unit(20, "meters")
  11401. },
  11402. {
  11403. name: "Macro+",
  11404. height: math.unit(200, "meters")
  11405. },
  11406. {
  11407. name: "Megamacro",
  11408. height: math.unit(2, "km")
  11409. },
  11410. {
  11411. name: "Megamacro+",
  11412. height: math.unit(20, "km")
  11413. },
  11414. {
  11415. name: "Gigamacro",
  11416. height: math.unit(2500, "km")
  11417. },
  11418. {
  11419. name: "Gigamacro+",
  11420. height: math.unit(120000, "km")
  11421. },
  11422. {
  11423. name: "Teramacro",
  11424. height: math.unit(7.77e6, "km")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11430. {
  11431. front: {
  11432. height: math.unit(6 + 4/12, "feet"),
  11433. weight: math.unit(190, "lb"),
  11434. name: "Front",
  11435. image: {
  11436. source: "./media/characters/bmc/front.svg",
  11437. extra: 1626/1472,
  11438. bottom: 79/1705
  11439. }
  11440. },
  11441. back: {
  11442. height: math.unit(6 + 4/12, "feet"),
  11443. weight: math.unit(190, "lb"),
  11444. name: "Back",
  11445. image: {
  11446. source: "./media/characters/bmc/back.svg",
  11447. extra: 1640/1479,
  11448. bottom: 45/1685
  11449. }
  11450. },
  11451. frontArmor: {
  11452. height: math.unit(6 + 4/12, "feet"),
  11453. weight: math.unit(190, "lb"),
  11454. name: "Front-armor",
  11455. image: {
  11456. source: "./media/characters/bmc/front-armor.svg",
  11457. extra: 1538/1468,
  11458. bottom: 79/1617
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Human-sized",
  11465. height: math.unit(6 + 4 / 12, "feet")
  11466. },
  11467. {
  11468. name: "Interactive Size",
  11469. height: math.unit(25, "feet")
  11470. },
  11471. {
  11472. name: "Small",
  11473. height: math.unit(250, "feet")
  11474. },
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(1250, "feet"),
  11478. default: true
  11479. },
  11480. {
  11481. name: "Good Day",
  11482. height: math.unit(88, "miles")
  11483. },
  11484. {
  11485. name: "Largest Measured Size",
  11486. height: math.unit(105.960, "galaxies")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(20, "feet"),
  11495. weight: math.unit(2016, "kg"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/sven-the-kaiju/front.svg",
  11499. extra: 1277/1250,
  11500. bottom: 35/1312
  11501. }
  11502. },
  11503. mouth: {
  11504. height: math.unit(1.85, "feet"),
  11505. name: "Mouth",
  11506. image: {
  11507. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Fairy",
  11514. height: math.unit(6, "inches")
  11515. },
  11516. {
  11517. name: "Normal",
  11518. height: math.unit(20, "feet"),
  11519. default: true
  11520. },
  11521. {
  11522. name: "Rampage",
  11523. height: math.unit(200, "feet")
  11524. },
  11525. {
  11526. name: "Archfey Forest Guardian",
  11527. height: math.unit(1, "mile")
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(4, "meters"),
  11536. weight: math.unit(2, "tons"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/marik/front.svg",
  11540. extra: 1057 / 1003,
  11541. bottom: 0.08
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(4, "meters"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(20, "meters")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(50, "km")
  11558. },
  11559. {
  11560. name: "Gigamacro",
  11561. height: math.unit(100, "km")
  11562. },
  11563. {
  11564. name: "Alpha Macro",
  11565. height: math.unit(7.88e7, "yottameters")
  11566. },
  11567. ]
  11568. ))
  11569. characterMakers.push(() => makeCharacter(
  11570. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11571. {
  11572. front: {
  11573. height: math.unit(6, "feet"),
  11574. weight: math.unit(110, "lb"),
  11575. name: "Front",
  11576. image: {
  11577. source: "./media/characters/mel/front.svg",
  11578. extra: 736 / 617,
  11579. bottom: 0.017
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Pico",
  11586. height: math.unit(3, "pm")
  11587. },
  11588. {
  11589. name: "Nano",
  11590. height: math.unit(3, "nm")
  11591. },
  11592. {
  11593. name: "Micro",
  11594. height: math.unit(0.3, "mm"),
  11595. default: true
  11596. },
  11597. {
  11598. name: "Micro+",
  11599. height: math.unit(3, "mm")
  11600. },
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(5 + 10.5 / 12, "feet")
  11604. },
  11605. ]
  11606. ))
  11607. characterMakers.push(() => makeCharacter(
  11608. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11609. {
  11610. kaiju: {
  11611. height: math.unit(1.75, "meters"),
  11612. weight: math.unit(55, "kg"),
  11613. name: "Kaiju",
  11614. image: {
  11615. source: "./media/characters/lykonous/kaiju.svg",
  11616. extra: 1055 / 946,
  11617. bottom: 0.135
  11618. }
  11619. },
  11620. },
  11621. [
  11622. {
  11623. name: "Normal",
  11624. height: math.unit(2.5, "meters"),
  11625. default: true
  11626. },
  11627. {
  11628. name: "Kaiju Dragon",
  11629. height: math.unit(60, "meters")
  11630. },
  11631. {
  11632. name: "Mega Kaiju",
  11633. height: math.unit(120, "km")
  11634. },
  11635. {
  11636. name: "Giga Kaiju",
  11637. height: math.unit(200, "megameters")
  11638. },
  11639. {
  11640. name: "Terra Kaiju",
  11641. height: math.unit(400, "gigameters")
  11642. },
  11643. {
  11644. name: "Kaiju Dragon God",
  11645. height: math.unit(13000, "exaparsecs")
  11646. },
  11647. ]
  11648. ))
  11649. characterMakers.push(() => makeCharacter(
  11650. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11651. {
  11652. front: {
  11653. height: math.unit(6, "feet"),
  11654. weight: math.unit(150, "lb"),
  11655. name: "Front",
  11656. image: {
  11657. source: "./media/characters/blü/front.svg",
  11658. extra: 1883 / 1564,
  11659. bottom: 0.031
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Normal",
  11666. height: math.unit(13, "feet"),
  11667. default: true
  11668. },
  11669. {
  11670. name: "Big Boi",
  11671. height: math.unit(150, "meters")
  11672. },
  11673. {
  11674. name: "Mini Stomper",
  11675. height: math.unit(300, "meters")
  11676. },
  11677. {
  11678. name: "Macro",
  11679. height: math.unit(1000, "meters")
  11680. },
  11681. {
  11682. name: "Megamacro",
  11683. height: math.unit(11000, "meters")
  11684. },
  11685. {
  11686. name: "Gigamacro",
  11687. height: math.unit(11000, "km")
  11688. },
  11689. {
  11690. name: "Teramacro",
  11691. height: math.unit(420000, "km")
  11692. },
  11693. {
  11694. name: "Examacro",
  11695. height: math.unit(120, "parsecs")
  11696. },
  11697. {
  11698. name: "God Tho",
  11699. height: math.unit(98000000000, "parsecs")
  11700. },
  11701. ]
  11702. ))
  11703. characterMakers.push(() => makeCharacter(
  11704. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11705. {
  11706. taurFront: {
  11707. height: math.unit(6, "feet"),
  11708. weight: math.unit(200, "lb"),
  11709. name: "Taur (Front)",
  11710. image: {
  11711. source: "./media/characters/scales/taur-front.svg",
  11712. extra: 1,
  11713. bottom: 0.05
  11714. }
  11715. },
  11716. taurBack: {
  11717. height: math.unit(6, "feet"),
  11718. weight: math.unit(200, "lb"),
  11719. name: "Taur (Back)",
  11720. image: {
  11721. source: "./media/characters/scales/taur-back.svg",
  11722. extra: 1,
  11723. bottom: 0.08
  11724. }
  11725. },
  11726. anthro: {
  11727. height: math.unit(6 * 7 / 12, "feet"),
  11728. weight: math.unit(100, "lb"),
  11729. name: "Anthro",
  11730. image: {
  11731. source: "./media/characters/scales/anthro.svg",
  11732. extra: 1,
  11733. bottom: 0.06
  11734. }
  11735. },
  11736. },
  11737. [
  11738. {
  11739. name: "Normal",
  11740. height: math.unit(12, "feet"),
  11741. default: true
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(6, "feet"),
  11750. weight: math.unit(150, "lb"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/koragos/front.svg",
  11754. extra: 841 / 794,
  11755. bottom: 0.035
  11756. }
  11757. },
  11758. back: {
  11759. height: math.unit(6, "feet"),
  11760. weight: math.unit(150, "lb"),
  11761. name: "Back",
  11762. image: {
  11763. source: "./media/characters/koragos/back.svg",
  11764. extra: 841 / 810,
  11765. bottom: 0.022
  11766. }
  11767. },
  11768. },
  11769. [
  11770. {
  11771. name: "Normal",
  11772. height: math.unit(6 + 11 / 12, "feet"),
  11773. default: true
  11774. },
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(490, "feet")
  11778. },
  11779. {
  11780. name: "Megamacro",
  11781. height: math.unit(10, "miles")
  11782. },
  11783. {
  11784. name: "Gigamacro",
  11785. height: math.unit(50, "miles")
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(250, "lb"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/xylrem/front.svg",
  11798. extra: 3323 / 3050,
  11799. bottom: 0.065
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Micro",
  11806. height: math.unit(4, "feet")
  11807. },
  11808. {
  11809. name: "Normal",
  11810. height: math.unit(16, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Macro",
  11815. height: math.unit(2720, "feet")
  11816. },
  11817. {
  11818. name: "Megamacro",
  11819. height: math.unit(25000, "miles")
  11820. },
  11821. ]
  11822. ))
  11823. characterMakers.push(() => makeCharacter(
  11824. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11825. {
  11826. front: {
  11827. height: math.unit(8, "feet"),
  11828. weight: math.unit(250, "kg"),
  11829. name: "Front",
  11830. image: {
  11831. source: "./media/characters/ikideru/front.svg",
  11832. extra: 930 / 870,
  11833. bottom: 0.087
  11834. }
  11835. },
  11836. back: {
  11837. height: math.unit(8, "feet"),
  11838. weight: math.unit(250, "kg"),
  11839. name: "Back",
  11840. image: {
  11841. source: "./media/characters/ikideru/back.svg",
  11842. extra: 919 / 852,
  11843. bottom: 0.055
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Rare",
  11850. height: math.unit(8, "feet"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Playful Loom",
  11855. height: math.unit(80, "feet")
  11856. },
  11857. {
  11858. name: "City Leaner",
  11859. height: math.unit(230, "feet")
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(2500, "feet")
  11864. },
  11865. {
  11866. name: "Gigamacro",
  11867. height: math.unit(26400, "feet")
  11868. },
  11869. {
  11870. name: "Tectonic Shifter",
  11871. height: math.unit(1.7, "megameters")
  11872. },
  11873. {
  11874. name: "Planet Carer",
  11875. height: math.unit(21, "megameters")
  11876. },
  11877. {
  11878. name: "God",
  11879. height: math.unit(11157.22, "parsecs")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(6, "feet"),
  11888. weight: math.unit(120, "lb"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/neo/front.svg"
  11892. }
  11893. },
  11894. },
  11895. [
  11896. {
  11897. name: "Micro",
  11898. height: math.unit(2, "inches"),
  11899. default: true
  11900. },
  11901. {
  11902. name: "Human Size",
  11903. height: math.unit(5 + 8 / 12, "feet")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(13 + 10 / 12, "feet"),
  11912. weight: math.unit(5320, "lb"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/chauncey-chantz/front.svg",
  11916. extra: 1587 / 1435,
  11917. bottom: 0.02
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(13 + 10 / 12, "feet"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(45, "feet")
  11930. },
  11931. {
  11932. name: "Megamacro",
  11933. height: math.unit(250, "miles")
  11934. },
  11935. {
  11936. name: "Planetary",
  11937. height: math.unit(10000, "miles")
  11938. },
  11939. {
  11940. name: "Galactic",
  11941. height: math.unit(40000, "parsecs")
  11942. },
  11943. {
  11944. name: "Universal",
  11945. height: math.unit(1, "yottameter")
  11946. },
  11947. ]
  11948. ))
  11949. characterMakers.push(() => makeCharacter(
  11950. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11951. {
  11952. front: {
  11953. height: math.unit(6, "feet"),
  11954. weight: math.unit(150, "lb"),
  11955. name: "Front",
  11956. image: {
  11957. source: "./media/characters/epifox/front.svg",
  11958. extra: 1,
  11959. bottom: 0.075
  11960. }
  11961. },
  11962. },
  11963. [
  11964. {
  11965. name: "Micro",
  11966. height: math.unit(6, "inches")
  11967. },
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(12, "feet"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Macro",
  11975. height: math.unit(3810, "feet")
  11976. },
  11977. {
  11978. name: "Megamacro",
  11979. height: math.unit(500, "miles")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(1.8796, "m"),
  11988. weight: math.unit(230, "lb"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/colin-t/front.svg",
  11992. extra: 1272 / 1193,
  11993. bottom: 0.07
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Micro",
  12000. height: math.unit(0.571, "meters")
  12001. },
  12002. {
  12003. name: "Normal",
  12004. height: math.unit(1.8796, "meters"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Tall",
  12009. height: math.unit(4, "meters")
  12010. },
  12011. {
  12012. name: "Macro",
  12013. height: math.unit(67.241, "meters")
  12014. },
  12015. {
  12016. name: "Megamacro",
  12017. height: math.unit(371.856, "meters")
  12018. },
  12019. {
  12020. name: "Planetary",
  12021. height: math.unit(12631.5689, "km")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12027. {
  12028. front: {
  12029. height: math.unit(1.85, "meters"),
  12030. weight: math.unit(80, "kg"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/matvei/front.svg",
  12034. extra: 614 / 594,
  12035. bottom: 0.01
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(1.85, "meters"),
  12043. default: true
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(5 + 9 / 12, "feet"),
  12052. weight: math.unit(70, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/quincy/front.svg",
  12056. extra: 3041 / 2751
  12057. }
  12058. },
  12059. back: {
  12060. height: math.unit(5 + 9 / 12, "feet"),
  12061. weight: math.unit(70, "lb"),
  12062. name: "Back",
  12063. image: {
  12064. source: "./media/characters/quincy/back.svg",
  12065. extra: 3041 / 2751
  12066. }
  12067. },
  12068. flying: {
  12069. height: math.unit(5 + 4 / 12, "feet"),
  12070. weight: math.unit(70, "lb"),
  12071. name: "Flying",
  12072. image: {
  12073. source: "./media/characters/quincy/flying.svg",
  12074. extra: 1044 / 930
  12075. }
  12076. },
  12077. },
  12078. [
  12079. {
  12080. name: "Micro",
  12081. height: math.unit(3, "cm")
  12082. },
  12083. {
  12084. name: "Normal",
  12085. height: math.unit(5 + 9 / 12, "feet")
  12086. },
  12087. {
  12088. name: "Macro",
  12089. height: math.unit(200, "meters"),
  12090. default: true
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(1000, "meters")
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(3 + 11/12, "feet"),
  12103. weight: math.unit(50, "lb"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/vanrel/front.svg",
  12107. extra: 1104/949,
  12108. bottom: 52/1156
  12109. }
  12110. },
  12111. back: {
  12112. height: math.unit(3 + 11/12, "feet"),
  12113. weight: math.unit(50, "lb"),
  12114. name: "Back",
  12115. image: {
  12116. source: "./media/characters/vanrel/back.svg",
  12117. extra: 1119/976,
  12118. bottom: 37/1156
  12119. }
  12120. },
  12121. tome: {
  12122. height: math.unit(1.35, "feet"),
  12123. weight: math.unit(10, "lb"),
  12124. name: "Vanrel's Tome",
  12125. rename: true,
  12126. image: {
  12127. source: "./media/characters/vanrel/tome.svg"
  12128. }
  12129. },
  12130. beans: {
  12131. height: math.unit(0.89, "feet"),
  12132. name: "Beans",
  12133. image: {
  12134. source: "./media/characters/vanrel/beans.svg"
  12135. }
  12136. },
  12137. },
  12138. [
  12139. {
  12140. name: "Normal",
  12141. height: math.unit(3 + 11/12, "feet"),
  12142. default: true
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(7 + 5 / 12, "feet"),
  12151. name: "Front",
  12152. image: {
  12153. source: "./media/characters/kuiper-vanrel/front.svg",
  12154. extra: 1219/1169,
  12155. bottom: 69/1288
  12156. }
  12157. },
  12158. back: {
  12159. height: math.unit(7 + 5 / 12, "feet"),
  12160. name: "Back",
  12161. image: {
  12162. source: "./media/characters/kuiper-vanrel/back.svg",
  12163. extra: 1236/1193,
  12164. bottom: 27/1263
  12165. }
  12166. },
  12167. foot: {
  12168. height: math.unit(0.55, "meters"),
  12169. name: "Foot",
  12170. image: {
  12171. source: "./media/characters/kuiper-vanrel/foot.svg",
  12172. }
  12173. },
  12174. battle: {
  12175. height: math.unit(6.824, "feet"),
  12176. name: "Battle",
  12177. image: {
  12178. source: "./media/characters/kuiper-vanrel/battle.svg",
  12179. extra: 1466 / 1327,
  12180. bottom: 29 / 1492.5
  12181. }
  12182. },
  12183. meerkui: {
  12184. height: math.unit(18, "inches"),
  12185. name: "Meerkui",
  12186. image: {
  12187. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12188. extra: 1354/1289,
  12189. bottom: 69/1423
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(7 + 5 / 12, "feet"),
  12197. default: true
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(8 + 5 / 12, "feet"),
  12206. name: "Front",
  12207. image: {
  12208. source: "./media/characters/keset-vanrel/front.svg",
  12209. extra: 1231/1148,
  12210. bottom: 82/1313
  12211. }
  12212. },
  12213. back: {
  12214. height: math.unit(8 + 5 / 12, "feet"),
  12215. name: "Back",
  12216. image: {
  12217. source: "./media/characters/keset-vanrel/back.svg",
  12218. extra: 1240/1174,
  12219. bottom: 33/1273
  12220. }
  12221. },
  12222. hand: {
  12223. height: math.unit(0.6, "meters"),
  12224. name: "Hand",
  12225. image: {
  12226. source: "./media/characters/keset-vanrel/hand.svg"
  12227. }
  12228. },
  12229. foot: {
  12230. height: math.unit(0.94978, "meters"),
  12231. name: "Foot",
  12232. image: {
  12233. source: "./media/characters/keset-vanrel/foot.svg"
  12234. }
  12235. },
  12236. battle: {
  12237. height: math.unit(7.408, "feet"),
  12238. name: "Battle",
  12239. image: {
  12240. source: "./media/characters/keset-vanrel/battle.svg",
  12241. extra: 1890 / 1386,
  12242. bottom: 73.28 / 1970
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(8 + 5 / 12, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(6, "feet"),
  12259. weight: math.unit(150, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/neos/front.svg",
  12263. extra: 1696 / 992,
  12264. bottom: 0.14
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Normal",
  12271. height: math.unit(54, "cm"),
  12272. default: true
  12273. },
  12274. {
  12275. name: "Macro",
  12276. height: math.unit(100, "m")
  12277. },
  12278. {
  12279. name: "Megamacro",
  12280. height: math.unit(10, "km")
  12281. },
  12282. {
  12283. name: "Megamacro+",
  12284. height: math.unit(100, "km")
  12285. },
  12286. {
  12287. name: "Gigamacro",
  12288. height: math.unit(100, "Mm")
  12289. },
  12290. {
  12291. name: "Teramacro",
  12292. height: math.unit(100, "Gm")
  12293. },
  12294. {
  12295. name: "Examacro",
  12296. height: math.unit(100, "Em")
  12297. },
  12298. {
  12299. name: "Godly",
  12300. height: math.unit(10000, "Ym")
  12301. },
  12302. {
  12303. name: "Beyond Godly",
  12304. height: math.unit(25, "multiverses")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12310. {
  12311. feminine: {
  12312. height: math.unit(5, "feet"),
  12313. weight: math.unit(100, "lb"),
  12314. name: "Feminine",
  12315. image: {
  12316. source: "./media/characters/sammy-mouse/feminine.svg",
  12317. extra: 2526 / 2425,
  12318. bottom: 0.123
  12319. }
  12320. },
  12321. masculine: {
  12322. height: math.unit(5, "feet"),
  12323. weight: math.unit(100, "lb"),
  12324. name: "Masculine",
  12325. image: {
  12326. source: "./media/characters/sammy-mouse/masculine.svg",
  12327. extra: 2526 / 2425,
  12328. bottom: 0.123
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Micro",
  12335. height: math.unit(5, "inches")
  12336. },
  12337. {
  12338. name: "Normal",
  12339. height: math.unit(5, "feet"),
  12340. default: true
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(60, "feet")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(4, "feet"),
  12353. weight: math.unit(50, "lb"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/kole/front.svg",
  12357. extra: 1423 / 1303,
  12358. bottom: 0.025
  12359. }
  12360. },
  12361. back: {
  12362. height: math.unit(4, "feet"),
  12363. weight: math.unit(50, "lb"),
  12364. name: "Back",
  12365. image: {
  12366. source: "./media/characters/kole/back.svg",
  12367. extra: 1426 / 1280,
  12368. bottom: 0.02
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Normal",
  12375. height: math.unit(4, "feet"),
  12376. default: true
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(2.5, "feet"),
  12385. weight: math.unit(32, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/rufran/front.svg",
  12389. extra: 1313/885,
  12390. bottom: 94/1407
  12391. }
  12392. },
  12393. side: {
  12394. height: math.unit(2.5, "feet"),
  12395. weight: math.unit(32, "lb"),
  12396. name: "Side",
  12397. image: {
  12398. source: "./media/characters/rufran/side.svg",
  12399. extra: 1109/852,
  12400. bottom: 118/1227
  12401. }
  12402. },
  12403. back: {
  12404. height: math.unit(2.5, "feet"),
  12405. weight: math.unit(32, "lb"),
  12406. name: "Back",
  12407. image: {
  12408. source: "./media/characters/rufran/back.svg",
  12409. extra: 1280/878,
  12410. bottom: 131/1411
  12411. }
  12412. },
  12413. mouth: {
  12414. height: math.unit(1.13, "feet"),
  12415. name: "Mouth",
  12416. image: {
  12417. source: "./media/characters/rufran/mouth.svg"
  12418. }
  12419. },
  12420. foot: {
  12421. height: math.unit(1.33, "feet"),
  12422. name: "Foot",
  12423. image: {
  12424. source: "./media/characters/rufran/foot.svg"
  12425. }
  12426. },
  12427. koboldFront: {
  12428. height: math.unit(2 + 6 / 12, "feet"),
  12429. weight: math.unit(20, "lb"),
  12430. name: "Front (Kobold)",
  12431. image: {
  12432. source: "./media/characters/rufran/kobold-front.svg",
  12433. extra: 2041 / 1839,
  12434. bottom: 0.055
  12435. }
  12436. },
  12437. koboldBack: {
  12438. height: math.unit(2 + 6 / 12, "feet"),
  12439. weight: math.unit(20, "lb"),
  12440. name: "Back (Kobold)",
  12441. image: {
  12442. source: "./media/characters/rufran/kobold-back.svg",
  12443. extra: 2054 / 1839,
  12444. bottom: 0.01
  12445. }
  12446. },
  12447. koboldHand: {
  12448. height: math.unit(0.2166, "meters"),
  12449. name: "Hand (Kobold)",
  12450. image: {
  12451. source: "./media/characters/rufran/kobold-hand.svg"
  12452. }
  12453. },
  12454. koboldFoot: {
  12455. height: math.unit(0.185, "meters"),
  12456. name: "Foot (Kobold)",
  12457. image: {
  12458. source: "./media/characters/rufran/kobold-foot.svg"
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Micro",
  12465. height: math.unit(1, "inch")
  12466. },
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(2 + 6 / 12, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Big",
  12474. height: math.unit(60, "feet")
  12475. },
  12476. {
  12477. name: "Macro",
  12478. height: math.unit(325, "feet")
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12484. {
  12485. front: {
  12486. height: math.unit(0.3, "meters"),
  12487. weight: math.unit(3.5, "kg"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/chip/front.svg",
  12491. extra: 748 / 674
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Micro",
  12498. height: math.unit(1, "inch"),
  12499. default: true
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12505. {
  12506. side: {
  12507. height: math.unit(2.3, "meters"),
  12508. weight: math.unit(3500, "lb"),
  12509. name: "Side",
  12510. image: {
  12511. source: "./media/characters/torvid/side.svg",
  12512. extra: 1972 / 722,
  12513. bottom: 0.035
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(2.3, "meters"),
  12521. default: true
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12527. {
  12528. front: {
  12529. height: math.unit(2, "meters"),
  12530. weight: math.unit(150.5, "kg"),
  12531. name: "Front",
  12532. image: {
  12533. source: "./media/characters/susan/front.svg",
  12534. extra: 693 / 635,
  12535. bottom: 0.05
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Megamacro",
  12542. height: math.unit(505, "miles"),
  12543. default: true
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12549. {
  12550. front: {
  12551. height: math.unit(6, "feet"),
  12552. weight: math.unit(150, "lb"),
  12553. name: "Front",
  12554. image: {
  12555. source: "./media/characters/raindrops/front.svg",
  12556. extra: 2655 / 2461,
  12557. bottom: 49 / 2705
  12558. }
  12559. },
  12560. back: {
  12561. height: math.unit(6, "feet"),
  12562. weight: math.unit(150, "lb"),
  12563. name: "Back",
  12564. image: {
  12565. source: "./media/characters/raindrops/back.svg",
  12566. extra: 2574 / 2400,
  12567. bottom: 65 / 2634
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Micro",
  12574. height: math.unit(6, "inches")
  12575. },
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(6 + 2 / 12, "feet")
  12579. },
  12580. {
  12581. name: "Macro",
  12582. height: math.unit(131, "feet"),
  12583. default: true
  12584. },
  12585. {
  12586. name: "Megamacro",
  12587. height: math.unit(15, "miles")
  12588. },
  12589. {
  12590. name: "Gigamacro",
  12591. height: math.unit(4000, "miles")
  12592. },
  12593. {
  12594. name: "Teramacro",
  12595. height: math.unit(315000, "miles")
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(2.794, "meters"),
  12604. weight: math.unit(325, "kg"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/tezwa/front.svg",
  12608. extra: 2083 / 1906,
  12609. bottom: 0.031
  12610. }
  12611. },
  12612. foot: {
  12613. height: math.unit(0.687, "meters"),
  12614. name: "Foot",
  12615. image: {
  12616. source: "./media/characters/tezwa/foot.svg"
  12617. }
  12618. },
  12619. },
  12620. [
  12621. {
  12622. name: "Normal",
  12623. height: math.unit(9 + 2 / 12, "feet"),
  12624. default: true
  12625. },
  12626. ]
  12627. ))
  12628. characterMakers.push(() => makeCharacter(
  12629. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12630. {
  12631. front: {
  12632. height: math.unit(58, "feet"),
  12633. weight: math.unit(89000, "lb"),
  12634. name: "Front",
  12635. image: {
  12636. source: "./media/characters/typhus/front.svg",
  12637. extra: 816 / 800,
  12638. bottom: 0.065
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Macro",
  12645. height: math.unit(58, "feet"),
  12646. default: true
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(12, "feet"),
  12655. weight: math.unit(6, "tonnes"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/lyra-von-wulf/front.svg",
  12659. extra: 1,
  12660. bottom: 0.10
  12661. }
  12662. },
  12663. frontMecha: {
  12664. height: math.unit(12, "feet"),
  12665. weight: math.unit(12, "tonnes"),
  12666. name: "Front (Mecha)",
  12667. image: {
  12668. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12669. extra: 1,
  12670. bottom: 0.042
  12671. }
  12672. },
  12673. maw: {
  12674. height: math.unit(2.2, "feet"),
  12675. name: "Maw",
  12676. image: {
  12677. source: "./media/characters/lyra-von-wulf/maw.svg"
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(12, "feet"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Classic",
  12689. height: math.unit(50, "feet")
  12690. },
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(500, "feet")
  12694. },
  12695. {
  12696. name: "Megamacro",
  12697. height: math.unit(1, "mile")
  12698. },
  12699. {
  12700. name: "Gigamacro",
  12701. height: math.unit(400, "miles")
  12702. },
  12703. {
  12704. name: "Teramacro",
  12705. height: math.unit(22000, "miles")
  12706. },
  12707. {
  12708. name: "Solarmacro",
  12709. height: math.unit(8600000, "miles")
  12710. },
  12711. {
  12712. name: "Galactic",
  12713. height: math.unit(1057000, "lightyears")
  12714. },
  12715. ]
  12716. ))
  12717. characterMakers.push(() => makeCharacter(
  12718. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12719. {
  12720. front: {
  12721. height: math.unit(6 + 10 / 12, "feet"),
  12722. weight: math.unit(150, "lb"),
  12723. name: "Front",
  12724. image: {
  12725. source: "./media/characters/dixon/front.svg",
  12726. extra: 3361 / 3209,
  12727. bottom: 0.01
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(6 + 10 / 12, "feet"),
  12735. default: true
  12736. },
  12737. {
  12738. name: "Big",
  12739. height: math.unit(12, "meters")
  12740. },
  12741. {
  12742. name: "Macro",
  12743. height: math.unit(500, "meters")
  12744. },
  12745. {
  12746. name: "Megamacro",
  12747. height: math.unit(2, "km")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(185, "cm"),
  12756. weight: math.unit(68, "kg"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/kauko/front.svg",
  12760. extra: 1455 / 1421,
  12761. bottom: 0.03
  12762. }
  12763. },
  12764. back: {
  12765. height: math.unit(185, "cm"),
  12766. weight: math.unit(68, "kg"),
  12767. name: "Back",
  12768. image: {
  12769. source: "./media/characters/kauko/back.svg",
  12770. extra: 1455 / 1421,
  12771. bottom: 0.004
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Normal",
  12778. height: math.unit(185, "cm"),
  12779. default: true
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(150, "kg"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/varg/front.svg",
  12792. extra: 1108 / 1018,
  12793. bottom: 0.0375
  12794. }
  12795. },
  12796. },
  12797. [
  12798. {
  12799. name: "Normal",
  12800. height: math.unit(5, "meters")
  12801. },
  12802. {
  12803. name: "Macro",
  12804. height: math.unit(200, "meters")
  12805. },
  12806. {
  12807. name: "Megamacro",
  12808. height: math.unit(20, "kilometers")
  12809. },
  12810. {
  12811. name: "True Size",
  12812. height: math.unit(211, "km"),
  12813. default: true
  12814. },
  12815. {
  12816. name: "Gigamacro",
  12817. height: math.unit(1000, "km")
  12818. },
  12819. {
  12820. name: "Gigamacro+",
  12821. height: math.unit(8000, "km")
  12822. },
  12823. {
  12824. name: "Teramacro",
  12825. height: math.unit(1000000, "km")
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(7 + 7 / 12, "feet"),
  12834. weight: math.unit(267, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/dayza/front.svg",
  12838. extra: 1262 / 1200,
  12839. bottom: 0.035
  12840. }
  12841. },
  12842. side: {
  12843. height: math.unit(7 + 7 / 12, "feet"),
  12844. weight: math.unit(267, "lb"),
  12845. name: "Side",
  12846. image: {
  12847. source: "./media/characters/dayza/side.svg",
  12848. extra: 1295 / 1245,
  12849. bottom: 0.05
  12850. }
  12851. },
  12852. back: {
  12853. height: math.unit(7 + 7 / 12, "feet"),
  12854. weight: math.unit(267, "lb"),
  12855. name: "Back",
  12856. image: {
  12857. source: "./media/characters/dayza/back.svg",
  12858. extra: 1241 / 1170
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Normal",
  12865. height: math.unit(7 + 7 / 12, "feet"),
  12866. default: true
  12867. },
  12868. {
  12869. name: "Macro",
  12870. height: math.unit(155, "feet")
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(6 + 5 / 12, "feet"),
  12879. weight: math.unit(160, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/xanthos/front.svg",
  12883. extra: 1,
  12884. bottom: 0.04
  12885. }
  12886. },
  12887. back: {
  12888. height: math.unit(6 + 5 / 12, "feet"),
  12889. weight: math.unit(160, "lb"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/xanthos/back.svg",
  12893. extra: 1,
  12894. bottom: 0.03
  12895. }
  12896. },
  12897. hand: {
  12898. height: math.unit(0.928, "feet"),
  12899. name: "Hand",
  12900. image: {
  12901. source: "./media/characters/xanthos/hand.svg"
  12902. }
  12903. },
  12904. foot: {
  12905. height: math.unit(1.286, "feet"),
  12906. name: "Foot",
  12907. image: {
  12908. source: "./media/characters/xanthos/foot.svg"
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(6 + 5 / 12, "feet"),
  12916. default: true
  12917. },
  12918. {
  12919. name: "Normal+",
  12920. height: math.unit(6, "meters")
  12921. },
  12922. {
  12923. name: "Macro",
  12924. height: math.unit(40, "feet")
  12925. },
  12926. {
  12927. name: "Macro+",
  12928. height: math.unit(200, "meters")
  12929. },
  12930. {
  12931. name: "Megamacro",
  12932. height: math.unit(20, "km")
  12933. },
  12934. {
  12935. name: "Megamacro+",
  12936. height: math.unit(100, "km")
  12937. },
  12938. {
  12939. name: "Gigamacro",
  12940. height: math.unit(200, "megameters")
  12941. },
  12942. {
  12943. name: "Gigamacro+",
  12944. height: math.unit(1.5, "gigameters")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(6 + 3 / 12, "feet"),
  12953. weight: math.unit(215, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/grynn/front.svg",
  12957. extra: 4627 / 4209,
  12958. bottom: 0.047
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Micro",
  12965. height: math.unit(6, "inches")
  12966. },
  12967. {
  12968. name: "Normal",
  12969. height: math.unit(6 + 3 / 12, "feet"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Big",
  12974. height: math.unit(104, "feet")
  12975. },
  12976. {
  12977. name: "Macro",
  12978. height: math.unit(944, "feet")
  12979. },
  12980. {
  12981. name: "Macro+",
  12982. height: math.unit(9480, "feet")
  12983. },
  12984. {
  12985. name: "Megamacro",
  12986. height: math.unit(78752, "feet")
  12987. },
  12988. {
  12989. name: "Megamacro+",
  12990. height: math.unit(630128, "feet")
  12991. },
  12992. {
  12993. name: "Megamacro++",
  12994. height: math.unit(3150695, "feet")
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13000. {
  13001. front: {
  13002. height: math.unit(7 + 5 / 12, "feet"),
  13003. weight: math.unit(450, "lb"),
  13004. name: "Front",
  13005. image: {
  13006. source: "./media/characters/mocha-aura/front.svg",
  13007. extra: 1907 / 1817,
  13008. bottom: 0.04
  13009. }
  13010. },
  13011. back: {
  13012. height: math.unit(7 + 5 / 12, "feet"),
  13013. weight: math.unit(450, "lb"),
  13014. name: "Back",
  13015. image: {
  13016. source: "./media/characters/mocha-aura/back.svg",
  13017. extra: 1900 / 1825,
  13018. bottom: 0.045
  13019. }
  13020. },
  13021. },
  13022. [
  13023. {
  13024. name: "Nano",
  13025. height: math.unit(1, "nm")
  13026. },
  13027. {
  13028. name: "Megamicro",
  13029. height: math.unit(1, "mm")
  13030. },
  13031. {
  13032. name: "Micro",
  13033. height: math.unit(3, "inches")
  13034. },
  13035. {
  13036. name: "Normal",
  13037. height: math.unit(7 + 5 / 12, "feet"),
  13038. default: true
  13039. },
  13040. {
  13041. name: "Macro",
  13042. height: math.unit(30, "feet")
  13043. },
  13044. {
  13045. name: "Megamacro",
  13046. height: math.unit(3500, "feet")
  13047. },
  13048. {
  13049. name: "Teramacro",
  13050. height: math.unit(500000, "miles")
  13051. },
  13052. {
  13053. name: "Petamacro",
  13054. height: math.unit(50000000000000000, "parsecs")
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(6, "feet"),
  13063. weight: math.unit(150, "lb"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/ilisha-devya/front.svg",
  13067. extra: 1,
  13068. bottom: 0.175
  13069. }
  13070. },
  13071. back: {
  13072. height: math.unit(6, "feet"),
  13073. weight: math.unit(150, "lb"),
  13074. name: "Back",
  13075. image: {
  13076. source: "./media/characters/ilisha-devya/back.svg",
  13077. extra: 1,
  13078. bottom: 0.015
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Macro",
  13085. height: math.unit(500, "feet"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Megamacro",
  13090. height: math.unit(10, "miles")
  13091. },
  13092. {
  13093. name: "Gigamacro",
  13094. height: math.unit(100000, "miles")
  13095. },
  13096. {
  13097. name: "Examacro",
  13098. height: math.unit(1e9, "lightyears")
  13099. },
  13100. {
  13101. name: "Omniversal",
  13102. height: math.unit(1e33, "lightyears")
  13103. },
  13104. {
  13105. name: "Beyond Infinite",
  13106. height: math.unit(1e100, "lightyears")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13112. {
  13113. Side: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Side",
  13117. image: {
  13118. source: "./media/characters/mira/side.svg",
  13119. extra: 900 / 799,
  13120. bottom: 0.02
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Human Size",
  13127. height: math.unit(6, "feet")
  13128. },
  13129. {
  13130. name: "Macro",
  13131. height: math.unit(100, "feet"),
  13132. default: true
  13133. },
  13134. {
  13135. name: "Megamacro",
  13136. height: math.unit(10, "miles")
  13137. },
  13138. {
  13139. name: "Gigamacro",
  13140. height: math.unit(25000, "miles")
  13141. },
  13142. {
  13143. name: "Teramacro",
  13144. height: math.unit(300, "AU")
  13145. },
  13146. {
  13147. name: "Full Size",
  13148. height: math.unit(4.5e10, "lightyears")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(6, "feet"),
  13157. weight: math.unit(150, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/holly/front.svg",
  13161. extra: 639 / 606
  13162. }
  13163. },
  13164. back: {
  13165. height: math.unit(6, "feet"),
  13166. weight: math.unit(150, "lb"),
  13167. name: "Back",
  13168. image: {
  13169. source: "./media/characters/holly/back.svg",
  13170. extra: 623 / 598
  13171. }
  13172. },
  13173. frontWorking: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Front (Working)",
  13177. image: {
  13178. source: "./media/characters/holly/front-working.svg",
  13179. extra: 607 / 577,
  13180. bottom: 0.048
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Normal",
  13187. height: math.unit(12 + 3 / 12, "feet"),
  13188. default: true
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/porter/front.svg",
  13201. extra: 1,
  13202. bottom: 0.01
  13203. }
  13204. },
  13205. frontRobes: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front (Robes)",
  13209. image: {
  13210. source: "./media/characters/porter/front-robes.svg",
  13211. extra: 1.01,
  13212. bottom: 0.01
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(11 + 9 / 12, "feet"),
  13220. default: true
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13226. {
  13227. legendary: {
  13228. height: math.unit(6, "feet"),
  13229. weight: math.unit(150, "lb"),
  13230. name: "Legendary",
  13231. image: {
  13232. source: "./media/characters/lucy/legendary.svg",
  13233. extra: 1355 / 1100,
  13234. bottom: 0.045
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Legendary",
  13241. height: math.unit(86882 * 2, "miles"),
  13242. default: true
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(150, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/drusilla/front.svg",
  13255. extra: 678 / 635,
  13256. bottom: 0.03
  13257. }
  13258. },
  13259. back: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(150, "lb"),
  13262. name: "Back",
  13263. image: {
  13264. source: "./media/characters/drusilla/back.svg",
  13265. extra: 678 / 635,
  13266. bottom: 0.005
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Macro",
  13273. height: math.unit(100, "feet")
  13274. },
  13275. {
  13276. name: "Canon Height",
  13277. height: math.unit(2000, "feet"),
  13278. default: true
  13279. },
  13280. ]
  13281. ))
  13282. characterMakers.push(() => makeCharacter(
  13283. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13284. {
  13285. front: {
  13286. height: math.unit(6, "feet"),
  13287. weight: math.unit(180, "lb"),
  13288. name: "Front",
  13289. image: {
  13290. source: "./media/characters/renard-thatch/front.svg",
  13291. extra: 2411 / 2275,
  13292. bottom: 0.01
  13293. }
  13294. },
  13295. frontPosing: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(180, "lb"),
  13298. name: "Front (Posing)",
  13299. image: {
  13300. source: "./media/characters/renard-thatch/front-posing.svg",
  13301. extra: 2381 / 2261,
  13302. bottom: 0.01
  13303. }
  13304. },
  13305. back: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(180, "lb"),
  13308. name: "Back",
  13309. image: {
  13310. source: "./media/characters/renard-thatch/back.svg",
  13311. extra: 2428 / 2288
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Micro",
  13318. height: math.unit(3, "inches")
  13319. },
  13320. {
  13321. name: "Default",
  13322. height: math.unit(6, "feet"),
  13323. default: true
  13324. },
  13325. {
  13326. name: "Macro",
  13327. height: math.unit(75, "feet")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(1450, "feet"),
  13336. weight: math.unit(1.21e6, "tons"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/sekvra/front.svg",
  13340. extra: 1,
  13341. bottom: 0.03
  13342. }
  13343. },
  13344. frontClothed: {
  13345. height: math.unit(1450, "feet"),
  13346. weight: math.unit(1.21e6, "tons"),
  13347. name: "Front (Clothed)",
  13348. image: {
  13349. source: "./media/characters/sekvra/front-clothed.svg",
  13350. extra: 1,
  13351. bottom: 0.03
  13352. }
  13353. },
  13354. side: {
  13355. height: math.unit(1450, "feet"),
  13356. weight: math.unit(1.21e6, "tons"),
  13357. name: "Side",
  13358. image: {
  13359. source: "./media/characters/sekvra/side.svg",
  13360. extra: 1,
  13361. bottom: 0.025
  13362. }
  13363. },
  13364. back: {
  13365. height: math.unit(1450, "feet"),
  13366. weight: math.unit(1.21e6, "tons"),
  13367. name: "Back",
  13368. image: {
  13369. source: "./media/characters/sekvra/back.svg",
  13370. extra: 1,
  13371. bottom: 0.005
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Macro",
  13378. height: math.unit(1450, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Megamacro",
  13383. height: math.unit(15000, "feet")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(150, "lb"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/carmine/front.svg",
  13396. extra: 1,
  13397. bottom: 0.035
  13398. }
  13399. },
  13400. frontArmor: {
  13401. height: math.unit(6, "feet"),
  13402. weight: math.unit(150, "lb"),
  13403. name: "Front (Armor)",
  13404. image: {
  13405. source: "./media/characters/carmine/front-armor.svg",
  13406. extra: 1,
  13407. bottom: 0.035
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Large",
  13414. height: math.unit(1, "mile")
  13415. },
  13416. {
  13417. name: "Huge",
  13418. height: math.unit(40, "miles"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Colossal",
  13423. height: math.unit(2500, "miles")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/elyssia/front.svg",
  13436. extra: 2201 / 2035,
  13437. bottom: 0.05
  13438. }
  13439. },
  13440. frontClothed: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Front (Clothed)",
  13444. image: {
  13445. source: "./media/characters/elyssia/front-clothed.svg",
  13446. extra: 2201 / 2035,
  13447. bottom: 0.05
  13448. }
  13449. },
  13450. back: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Back",
  13454. image: {
  13455. source: "./media/characters/elyssia/back.svg",
  13456. extra: 2201 / 2035,
  13457. bottom: 0.013
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Smaller",
  13464. height: math.unit(150, "feet")
  13465. },
  13466. {
  13467. name: "Standard",
  13468. height: math.unit(1400, "feet"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Distracted",
  13473. height: math.unit(15000, "feet")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(7 + 4/12, "feet"),
  13482. weight: math.unit(690, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/geno-maxwell/front.svg",
  13486. extra: 984/856,
  13487. bottom: 87/1071
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(7 + 4/12, "feet"),
  13492. weight: math.unit(690, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/geno-maxwell/back.svg",
  13496. extra: 981/854,
  13497. bottom: 57/1038
  13498. }
  13499. },
  13500. frontCostume: {
  13501. height: math.unit(7 + 4/12, "feet"),
  13502. weight: math.unit(690, "lb"),
  13503. name: "Front (Costume)",
  13504. image: {
  13505. source: "./media/characters/geno-maxwell/front-costume.svg",
  13506. extra: 984/856,
  13507. bottom: 87/1071
  13508. }
  13509. },
  13510. backcostume: {
  13511. height: math.unit(7 + 4/12, "feet"),
  13512. weight: math.unit(690, "lb"),
  13513. name: "Back (Costume)",
  13514. image: {
  13515. source: "./media/characters/geno-maxwell/back-costume.svg",
  13516. extra: 981/854,
  13517. bottom: 57/1038
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Micro",
  13524. height: math.unit(3, "inches")
  13525. },
  13526. {
  13527. name: "Normal",
  13528. height: math.unit(7 + 4 / 12, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Macro",
  13533. height: math.unit(220, "feet")
  13534. },
  13535. {
  13536. name: "Megamacro",
  13537. height: math.unit(11, "miles")
  13538. },
  13539. ]
  13540. ))
  13541. characterMakers.push(() => makeCharacter(
  13542. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13543. {
  13544. front: {
  13545. height: math.unit(7 + 4/12, "feet"),
  13546. weight: math.unit(750, "lb"),
  13547. name: "Front",
  13548. image: {
  13549. source: "./media/characters/regena-maxwell/front.svg",
  13550. extra: 984/856,
  13551. bottom: 87/1071
  13552. }
  13553. },
  13554. back: {
  13555. height: math.unit(7 + 4/12, "feet"),
  13556. weight: math.unit(750, "lb"),
  13557. name: "Back",
  13558. image: {
  13559. source: "./media/characters/regena-maxwell/back.svg",
  13560. extra: 981/854,
  13561. bottom: 57/1038
  13562. }
  13563. },
  13564. frontCostume: {
  13565. height: math.unit(7 + 4/12, "feet"),
  13566. weight: math.unit(750, "lb"),
  13567. name: "Front (Costume)",
  13568. image: {
  13569. source: "./media/characters/regena-maxwell/front-costume.svg",
  13570. extra: 984/856,
  13571. bottom: 87/1071
  13572. }
  13573. },
  13574. backcostume: {
  13575. height: math.unit(7 + 4/12, "feet"),
  13576. weight: math.unit(750, "lb"),
  13577. name: "Back (Costume)",
  13578. image: {
  13579. source: "./media/characters/regena-maxwell/back-costume.svg",
  13580. extra: 981/854,
  13581. bottom: 57/1038
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Normal",
  13588. height: math.unit(7 + 4 / 12, "feet"),
  13589. default: true
  13590. },
  13591. {
  13592. name: "Macro",
  13593. height: math.unit(220, "feet")
  13594. },
  13595. {
  13596. name: "Megamacro",
  13597. height: math.unit(11, "miles")
  13598. },
  13599. ]
  13600. ))
  13601. characterMakers.push(() => makeCharacter(
  13602. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13603. {
  13604. front: {
  13605. height: math.unit(6, "feet"),
  13606. weight: math.unit(150, "lb"),
  13607. name: "Front",
  13608. image: {
  13609. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13610. extra: 860 / 690,
  13611. bottom: 0.03
  13612. }
  13613. },
  13614. },
  13615. [
  13616. {
  13617. name: "Normal",
  13618. height: math.unit(1.7, "meters"),
  13619. default: true
  13620. },
  13621. ]
  13622. ))
  13623. characterMakers.push(() => makeCharacter(
  13624. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13625. {
  13626. front: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(150, "lb"),
  13629. name: "Front",
  13630. image: {
  13631. source: "./media/characters/quilly/front.svg",
  13632. extra: 890 / 776
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Gigamacro",
  13639. height: math.unit(404090, "miles"),
  13640. default: true
  13641. },
  13642. ]
  13643. ))
  13644. characterMakers.push(() => makeCharacter(
  13645. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13646. {
  13647. front: {
  13648. height: math.unit(7 + 8 / 12, "feet"),
  13649. weight: math.unit(350, "lb"),
  13650. name: "Front",
  13651. image: {
  13652. source: "./media/characters/tempest/front.svg",
  13653. extra: 1175 / 1086,
  13654. bottom: 0.02
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Normal",
  13661. height: math.unit(7 + 8 / 12, "feet"),
  13662. default: true
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13668. {
  13669. side: {
  13670. height: math.unit(4 + 5 / 12, "feet"),
  13671. weight: math.unit(80, "lb"),
  13672. name: "Side",
  13673. image: {
  13674. source: "./media/characters/rodger/side.svg",
  13675. extra: 1235 / 1118
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Micro",
  13682. height: math.unit(1, "inch")
  13683. },
  13684. {
  13685. name: "Normal",
  13686. height: math.unit(4 + 5 / 12, "feet"),
  13687. default: true
  13688. },
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(120, "feet")
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13697. {
  13698. front: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(150, "lb"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/danyel/front.svg",
  13704. extra: 1185 / 1123,
  13705. bottom: 0.05
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Shrunken",
  13712. height: math.unit(0.5, "mm")
  13713. },
  13714. {
  13715. name: "Micro",
  13716. height: math.unit(1, "mm"),
  13717. default: true
  13718. },
  13719. {
  13720. name: "Upsized",
  13721. height: math.unit(5 + 5 / 12, "feet")
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13727. {
  13728. front: {
  13729. height: math.unit(5 + 6 / 12, "feet"),
  13730. weight: math.unit(200, "lb"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/vivian-bijoux/front.svg",
  13734. extra: 1217/1209,
  13735. bottom: 76/1293
  13736. }
  13737. },
  13738. back: {
  13739. height: math.unit(5 + 6 / 12, "feet"),
  13740. weight: math.unit(200, "lb"),
  13741. name: "Back",
  13742. image: {
  13743. source: "./media/characters/vivian-bijoux/back.svg",
  13744. extra: 1214/1208,
  13745. bottom: 51/1265
  13746. }
  13747. },
  13748. dressed: {
  13749. height: math.unit(5 + 6 / 12, "feet"),
  13750. weight: math.unit(200, "lb"),
  13751. name: "Dressed",
  13752. image: {
  13753. source: "./media/characters/vivian-bijoux/dressed.svg",
  13754. extra: 1217/1209,
  13755. bottom: 76/1293
  13756. }
  13757. },
  13758. },
  13759. [
  13760. {
  13761. name: "Normal",
  13762. height: math.unit(5 + 6 / 12, "feet"),
  13763. default: true
  13764. },
  13765. {
  13766. name: "Bad Dream",
  13767. height: math.unit(500, "feet")
  13768. },
  13769. {
  13770. name: "Nightmare",
  13771. height: math.unit(500, "miles")
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6 + 1 / 12, "feet"),
  13780. weight: math.unit(260, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/zeta/front.svg",
  13784. extra: 1968 / 1889,
  13785. bottom: 0.06
  13786. }
  13787. },
  13788. back: {
  13789. height: math.unit(6 + 1 / 12, "feet"),
  13790. weight: math.unit(260, "lb"),
  13791. name: "Back",
  13792. image: {
  13793. source: "./media/characters/zeta/back.svg",
  13794. extra: 1944 / 1858,
  13795. bottom: 0.03
  13796. }
  13797. },
  13798. hand: {
  13799. height: math.unit(1.112, "feet"),
  13800. name: "Hand",
  13801. image: {
  13802. source: "./media/characters/zeta/hand.svg"
  13803. }
  13804. },
  13805. foot: {
  13806. height: math.unit(1.48, "feet"),
  13807. name: "Foot",
  13808. image: {
  13809. source: "./media/characters/zeta/foot.svg"
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Micro",
  13816. height: math.unit(6, "inches")
  13817. },
  13818. {
  13819. name: "Normal",
  13820. height: math.unit(6 + 1 / 12, "feet"),
  13821. default: true
  13822. },
  13823. {
  13824. name: "Macro",
  13825. height: math.unit(20, "feet")
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(150, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/jamie-larsen/front.svg",
  13838. extra: 962 / 933,
  13839. bottom: 0.02
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/jamie-larsen/back.svg",
  13848. extra: 997 / 946
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(28 + 7 / 12, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Macro+",
  13860. height: math.unit(180, "feet")
  13861. },
  13862. {
  13863. name: "Megamacro",
  13864. height: math.unit(10, "miles")
  13865. },
  13866. {
  13867. name: "Gigamacro",
  13868. height: math.unit(200000, "miles")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13874. {
  13875. front: {
  13876. height: math.unit(6, "feet"),
  13877. weight: math.unit(120, "lb"),
  13878. name: "Front",
  13879. image: {
  13880. source: "./media/characters/vance/front.svg",
  13881. extra: 1980 / 1890,
  13882. bottom: 0.09
  13883. }
  13884. },
  13885. back: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(120, "lb"),
  13888. name: "Back",
  13889. image: {
  13890. source: "./media/characters/vance/back.svg",
  13891. extra: 2081 / 1994,
  13892. bottom: 0.014
  13893. }
  13894. },
  13895. hand: {
  13896. height: math.unit(0.88, "feet"),
  13897. name: "Hand",
  13898. image: {
  13899. source: "./media/characters/vance/hand.svg"
  13900. }
  13901. },
  13902. foot: {
  13903. height: math.unit(0.64, "feet"),
  13904. name: "Foot",
  13905. image: {
  13906. source: "./media/characters/vance/foot.svg"
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Small",
  13913. height: math.unit(90, "feet"),
  13914. default: true
  13915. },
  13916. {
  13917. name: "Macro",
  13918. height: math.unit(100, "meters")
  13919. },
  13920. {
  13921. name: "Megamacro",
  13922. height: math.unit(15, "miles")
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(180, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/xochitl/front.svg",
  13935. extra: 2297 / 2261,
  13936. bottom: 0.065
  13937. }
  13938. },
  13939. back: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(180, "lb"),
  13942. name: "Back",
  13943. image: {
  13944. source: "./media/characters/xochitl/back.svg",
  13945. extra: 2386 / 2354,
  13946. bottom: 0.01
  13947. }
  13948. },
  13949. foot: {
  13950. height: math.unit(6 / 5 * 1.15, "feet"),
  13951. weight: math.unit(150, "lb"),
  13952. name: "Foot",
  13953. image: {
  13954. source: "./media/characters/xochitl/foot.svg"
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Macro",
  13961. height: math.unit(80, "feet")
  13962. },
  13963. {
  13964. name: "Macro+",
  13965. height: math.unit(400, "feet"),
  13966. default: true
  13967. },
  13968. {
  13969. name: "Gigamacro",
  13970. height: math.unit(80000, "miles")
  13971. },
  13972. {
  13973. name: "Gigamacro+",
  13974. height: math.unit(400000, "miles")
  13975. },
  13976. {
  13977. name: "Teramacro",
  13978. height: math.unit(300, "AU")
  13979. },
  13980. ]
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13984. {
  13985. front: {
  13986. height: math.unit(6, "feet"),
  13987. weight: math.unit(150, "lb"),
  13988. name: "Front",
  13989. image: {
  13990. source: "./media/characters/vincent/front.svg",
  13991. extra: 1130 / 1080,
  13992. bottom: 0.055
  13993. }
  13994. },
  13995. beak: {
  13996. height: math.unit(6 * 0.1, "feet"),
  13997. name: "Beak",
  13998. image: {
  13999. source: "./media/characters/vincent/beak.svg"
  14000. }
  14001. },
  14002. hand: {
  14003. height: math.unit(6 * 0.85, "feet"),
  14004. weight: math.unit(150, "lb"),
  14005. name: "Hand",
  14006. image: {
  14007. source: "./media/characters/vincent/hand.svg"
  14008. }
  14009. },
  14010. foot: {
  14011. height: math.unit(6 * 0.19, "feet"),
  14012. weight: math.unit(150, "lb"),
  14013. name: "Foot",
  14014. image: {
  14015. source: "./media/characters/vincent/foot.svg"
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Base",
  14022. height: math.unit(6 + 5 / 12, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Macro",
  14027. height: math.unit(300, "feet")
  14028. },
  14029. {
  14030. name: "Megamacro",
  14031. height: math.unit(2, "miles")
  14032. },
  14033. {
  14034. name: "Gigamacro",
  14035. height: math.unit(1000, "miles")
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14041. {
  14042. front: {
  14043. height: math.unit(2, "meters"),
  14044. weight: math.unit(500, "kg"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/coatl/front.svg",
  14048. extra: 3948 / 3500,
  14049. bottom: 0.082
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(4, "meters")
  14057. },
  14058. {
  14059. name: "Macro",
  14060. height: math.unit(100, "meters"),
  14061. default: true
  14062. },
  14063. {
  14064. name: "Macro+",
  14065. height: math.unit(300, "meters")
  14066. },
  14067. {
  14068. name: "Megamacro",
  14069. height: math.unit(3, "gigameters")
  14070. },
  14071. {
  14072. name: "Megamacro+",
  14073. height: math.unit(300, "terameters")
  14074. },
  14075. {
  14076. name: "Megamacro++",
  14077. height: math.unit(3, "lightyears")
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(6, "feet"),
  14086. weight: math.unit(50, "kg"),
  14087. name: "front",
  14088. image: {
  14089. source: "./media/characters/shiroryu/front.svg",
  14090. extra: 1990 / 1935
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Mortal Mingling",
  14097. height: math.unit(3, "meters")
  14098. },
  14099. {
  14100. name: "Kaiju-ish",
  14101. height: math.unit(250, "meters")
  14102. },
  14103. {
  14104. name: "Somewhat Godly",
  14105. height: math.unit(400, "km"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Planetary",
  14110. height: math.unit(300, "megameters")
  14111. },
  14112. {
  14113. name: "Galaxy-dwarfing",
  14114. height: math.unit(450, "kiloparsecs")
  14115. },
  14116. {
  14117. name: "Universe Eater",
  14118. height: math.unit(150, "gigaparsecs")
  14119. },
  14120. {
  14121. name: "Almost Immeasurable",
  14122. height: math.unit(1.3e266, "yottaparsecs")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(6, "feet"),
  14131. weight: math.unit(150, "lb"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/umeko/front.svg",
  14135. extra: 1,
  14136. bottom: 0.019
  14137. }
  14138. },
  14139. frontArmored: {
  14140. height: math.unit(6, "feet"),
  14141. weight: math.unit(150, "lb"),
  14142. name: "Front (Armored)",
  14143. image: {
  14144. source: "./media/characters/umeko/front-armored.svg",
  14145. extra: 1,
  14146. bottom: 0.021
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Macro",
  14153. height: math.unit(220, "feet"),
  14154. default: true
  14155. },
  14156. {
  14157. name: "Guardian Dragon",
  14158. height: math.unit(50, "miles")
  14159. },
  14160. {
  14161. name: "Cosmic",
  14162. height: math.unit(800000, "miles")
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(6, "feet"),
  14171. weight: math.unit(150, "lb"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/cassidy/front.svg",
  14175. extra: 1,
  14176. bottom: 0.043
  14177. }
  14178. },
  14179. },
  14180. [
  14181. {
  14182. name: "Canon Height",
  14183. height: math.unit(120, "feet"),
  14184. default: true
  14185. },
  14186. {
  14187. name: "Macro+",
  14188. height: math.unit(400, "feet")
  14189. },
  14190. {
  14191. name: "Macro++",
  14192. height: math.unit(4000, "feet")
  14193. },
  14194. {
  14195. name: "Megamacro",
  14196. height: math.unit(3, "miles")
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(150, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/isaac/front.svg",
  14209. extra: 896 / 815,
  14210. bottom: 0.11
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Human Size",
  14217. height: math.unit(8, "feet"),
  14218. default: true
  14219. },
  14220. {
  14221. name: "Macro",
  14222. height: math.unit(400, "feet")
  14223. },
  14224. {
  14225. name: "Megamacro",
  14226. height: math.unit(50, "miles")
  14227. },
  14228. {
  14229. name: "Canon Height",
  14230. height: math.unit(200, "AU")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(6, "feet"),
  14239. weight: math.unit(72, "kg"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/sleekit/front.svg",
  14243. extra: 4693 / 4487,
  14244. bottom: 0.012
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Minimum Height",
  14251. height: math.unit(10, "meters")
  14252. },
  14253. {
  14254. name: "Smaller",
  14255. height: math.unit(25, "meters")
  14256. },
  14257. {
  14258. name: "Larger",
  14259. height: math.unit(38, "meters"),
  14260. default: true
  14261. },
  14262. {
  14263. name: "Maximum height",
  14264. height: math.unit(100, "meters")
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(6, "feet"),
  14273. weight: math.unit(150, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/nillia/front.svg",
  14277. extra: 2195 / 2037,
  14278. bottom: 0.005
  14279. }
  14280. },
  14281. back: {
  14282. height: math.unit(6, "feet"),
  14283. weight: math.unit(150, "lb"),
  14284. name: "Back",
  14285. image: {
  14286. source: "./media/characters/nillia/back.svg",
  14287. extra: 2195 / 2037,
  14288. bottom: 0.005
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Canon Height",
  14295. height: math.unit(489, "feet"),
  14296. default: true
  14297. }
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], 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/mesmyriza/front.svg",
  14309. extra: 2067 / 1784,
  14310. bottom: 0.035
  14311. }
  14312. },
  14313. foot: {
  14314. height: math.unit(6 / (250 / 35), "feet"),
  14315. name: "Foot",
  14316. image: {
  14317. source: "./media/characters/mesmyriza/foot.svg"
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Macro",
  14324. height: math.unit(457, "meters"),
  14325. default: true
  14326. },
  14327. {
  14328. name: "Megamacro",
  14329. height: math.unit(8, "megameters")
  14330. },
  14331. ]
  14332. ))
  14333. characterMakers.push(() => makeCharacter(
  14334. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14335. {
  14336. front: {
  14337. height: math.unit(6, "feet"),
  14338. weight: math.unit(250, "lb"),
  14339. name: "Front",
  14340. image: {
  14341. source: "./media/characters/saudade/front.svg",
  14342. extra: 1172 / 1139,
  14343. bottom: 0.035
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Micro",
  14350. height: math.unit(3, "inches")
  14351. },
  14352. {
  14353. name: "Normal",
  14354. height: math.unit(6, "feet"),
  14355. default: true
  14356. },
  14357. {
  14358. name: "Macro",
  14359. height: math.unit(50, "feet")
  14360. },
  14361. {
  14362. name: "Megamacro",
  14363. height: math.unit(2800, "feet")
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14369. {
  14370. front: {
  14371. height: math.unit(5 + 4 / 12, "feet"),
  14372. weight: math.unit(100, "lb"),
  14373. name: "Front",
  14374. image: {
  14375. source: "./media/characters/keireer/front.svg",
  14376. extra: 716 / 666,
  14377. bottom: 0.05
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(5 + 4 / 12, "feet"),
  14385. default: true
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(6, "feet"),
  14394. weight: math.unit(90, "kg"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/mirja/front.svg",
  14398. extra: 1789 / 1683,
  14399. bottom: 0.05
  14400. }
  14401. },
  14402. frontDressed: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(90, "lb"),
  14405. name: "Front (Dressed)",
  14406. image: {
  14407. source: "./media/characters/mirja/front-dressed.svg",
  14408. extra: 1789 / 1683,
  14409. bottom: 0.05
  14410. }
  14411. },
  14412. back: {
  14413. height: math.unit(6, "feet"),
  14414. weight: math.unit(90, "lb"),
  14415. name: "Back",
  14416. image: {
  14417. source: "./media/characters/mirja/back.svg",
  14418. extra: 953 / 917,
  14419. bottom: 0.017
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "\"Incognito\"",
  14426. height: math.unit(3, "meters")
  14427. },
  14428. {
  14429. name: "Strolling Size",
  14430. height: math.unit(15, "km")
  14431. },
  14432. {
  14433. name: "Larger Strolling Size",
  14434. height: math.unit(400, "km")
  14435. },
  14436. {
  14437. name: "Preferred Size",
  14438. height: math.unit(5000, "km")
  14439. },
  14440. {
  14441. name: "True Size",
  14442. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14449. {
  14450. front: {
  14451. height: math.unit(15, "feet"),
  14452. weight: math.unit(880, "kg"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/nightraver/front.svg",
  14456. extra: 2444 / 2160,
  14457. bottom: 0.027
  14458. }
  14459. },
  14460. back: {
  14461. height: math.unit(15, "feet"),
  14462. weight: math.unit(880, "kg"),
  14463. name: "Back",
  14464. image: {
  14465. source: "./media/characters/nightraver/back.svg",
  14466. extra: 2309 / 2180,
  14467. bottom: 0.005
  14468. }
  14469. },
  14470. sole: {
  14471. height: math.unit(2.878, "feet"),
  14472. name: "Sole",
  14473. image: {
  14474. source: "./media/characters/nightraver/sole.svg"
  14475. }
  14476. },
  14477. foot: {
  14478. height: math.unit(2.285, "feet"),
  14479. name: "Foot",
  14480. image: {
  14481. source: "./media/characters/nightraver/foot.svg"
  14482. }
  14483. },
  14484. maw: {
  14485. height: math.unit(2.67, "feet"),
  14486. name: "Maw",
  14487. image: {
  14488. source: "./media/characters/nightraver/maw.svg"
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Micro",
  14495. height: math.unit(1, "cm")
  14496. },
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(15, "feet"),
  14500. default: true
  14501. },
  14502. {
  14503. name: "Macro",
  14504. height: math.unit(300, "feet")
  14505. },
  14506. {
  14507. name: "Megamacro",
  14508. height: math.unit(300, "miles")
  14509. },
  14510. {
  14511. name: "Gigamacro",
  14512. height: math.unit(10000, "miles")
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14518. {
  14519. side: {
  14520. height: math.unit(2, "inches"),
  14521. weight: math.unit(5, "grams"),
  14522. name: "Side",
  14523. image: {
  14524. source: "./media/characters/arc/side.svg"
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Micro",
  14531. height: math.unit(2, "inches"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(1.1938, "meters"),
  14541. weight: math.unit(54, "kg"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/nebula-shahar/front.svg",
  14545. extra: 1642 / 1436,
  14546. bottom: 0.06
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Megamicro",
  14553. height: math.unit(0.3, "mm")
  14554. },
  14555. {
  14556. name: "Micro",
  14557. height: math.unit(3, "cm")
  14558. },
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(138, "cm"),
  14562. default: true
  14563. },
  14564. {
  14565. name: "Macro",
  14566. height: math.unit(30, "m")
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(5.24, "feet"),
  14575. weight: math.unit(150, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/shayla/front.svg",
  14579. extra: 1512 / 1414,
  14580. bottom: 0.01
  14581. }
  14582. },
  14583. back: {
  14584. height: math.unit(5.24, "feet"),
  14585. weight: math.unit(150, "lb"),
  14586. name: "Back",
  14587. image: {
  14588. source: "./media/characters/shayla/back.svg",
  14589. extra: 1512 / 1414
  14590. }
  14591. },
  14592. hand: {
  14593. height: math.unit(0.7781496062992126, "feet"),
  14594. name: "Hand",
  14595. image: {
  14596. source: "./media/characters/shayla/hand.svg"
  14597. }
  14598. },
  14599. foot: {
  14600. height: math.unit(1.4206036745406823, "feet"),
  14601. name: "Foot",
  14602. image: {
  14603. source: "./media/characters/shayla/foot.svg"
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Micro",
  14610. height: math.unit(0.32, "feet")
  14611. },
  14612. {
  14613. name: "Normal",
  14614. height: math.unit(5.24, "feet"),
  14615. default: true
  14616. },
  14617. {
  14618. name: "Macro",
  14619. height: math.unit(492.12, "feet")
  14620. },
  14621. {
  14622. name: "Megamacro",
  14623. height: math.unit(186.41, "miles")
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(2.2, "m"),
  14632. weight: math.unit(120, "kg"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/pia-jr/front.svg",
  14636. extra: 1000 / 970,
  14637. bottom: 0.035
  14638. }
  14639. },
  14640. hand: {
  14641. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14642. name: "Hand",
  14643. image: {
  14644. source: "./media/characters/pia-jr/hand.svg"
  14645. }
  14646. },
  14647. paw: {
  14648. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14649. name: "Paw",
  14650. image: {
  14651. source: "./media/characters/pia-jr/paw.svg"
  14652. }
  14653. },
  14654. },
  14655. [
  14656. {
  14657. name: "Micro",
  14658. height: math.unit(1.2, "cm")
  14659. },
  14660. {
  14661. name: "Normal",
  14662. height: math.unit(2.2, "m"),
  14663. default: true
  14664. },
  14665. {
  14666. name: "Macro",
  14667. height: math.unit(180, "m")
  14668. },
  14669. {
  14670. name: "Megamacro",
  14671. height: math.unit(420, "km")
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(2, "m"),
  14680. weight: math.unit(115, "kg"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/pia-sr/front.svg",
  14684. extra: 760 / 730,
  14685. bottom: 0.015
  14686. }
  14687. },
  14688. back: {
  14689. height: math.unit(2, "m"),
  14690. weight: math.unit(115, "kg"),
  14691. name: "Back",
  14692. image: {
  14693. source: "./media/characters/pia-sr/back.svg",
  14694. extra: 760 / 730,
  14695. bottom: 0.01
  14696. }
  14697. },
  14698. hand: {
  14699. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14700. name: "Hand",
  14701. image: {
  14702. source: "./media/characters/pia-sr/hand.svg"
  14703. }
  14704. },
  14705. foot: {
  14706. height: math.unit(1.83, "feet"),
  14707. name: "Foot",
  14708. image: {
  14709. source: "./media/characters/pia-sr/foot.svg"
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Micro",
  14716. height: math.unit(88, "mm")
  14717. },
  14718. {
  14719. name: "Normal",
  14720. height: math.unit(2, "m"),
  14721. default: true
  14722. },
  14723. {
  14724. name: "Macro",
  14725. height: math.unit(200, "m")
  14726. },
  14727. {
  14728. name: "Megamacro",
  14729. height: math.unit(420, "km")
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(8 + 2 / 12, "feet"),
  14738. weight: math.unit(300, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/kibibyte/front.svg",
  14742. extra: 2221 / 2098,
  14743. bottom: 0.04
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(8 + 2 / 12, "feet"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Socialable Macro",
  14755. height: math.unit(50, "feet")
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(300, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(500, "miles")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(6, "feet"),
  14772. weight: math.unit(150, "lb"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/felix/front.svg",
  14776. extra: 762 / 722,
  14777. bottom: 0.02
  14778. }
  14779. },
  14780. frontClothed: {
  14781. height: math.unit(6, "feet"),
  14782. weight: math.unit(150, "lb"),
  14783. name: "Front (Clothed)",
  14784. image: {
  14785. source: "./media/characters/felix/front-clothed.svg",
  14786. extra: 762 / 722,
  14787. bottom: 0.02
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(6 + 8 / 12, "feet"),
  14795. default: true
  14796. },
  14797. {
  14798. name: "Macro",
  14799. height: math.unit(2600, "feet")
  14800. },
  14801. {
  14802. name: "Megamacro",
  14803. height: math.unit(450, "miles")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(6 + 1 / 12, "feet"),
  14812. weight: math.unit(250, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/tobo/front.svg",
  14816. extra: 608 / 586,
  14817. bottom: 0.023
  14818. }
  14819. },
  14820. back: {
  14821. height: math.unit(6 + 1 / 12, "feet"),
  14822. weight: math.unit(250, "lb"),
  14823. name: "Back",
  14824. image: {
  14825. source: "./media/characters/tobo/back.svg",
  14826. extra: 608 / 586
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Nano",
  14833. height: math.unit(2, "nm")
  14834. },
  14835. {
  14836. name: "Megamicro",
  14837. height: math.unit(0.1, "mm")
  14838. },
  14839. {
  14840. name: "Micro",
  14841. height: math.unit(1, "inch"),
  14842. default: true
  14843. },
  14844. {
  14845. name: "Human-sized",
  14846. height: math.unit(6 + 1 / 12, "feet")
  14847. },
  14848. {
  14849. name: "Macro",
  14850. height: math.unit(250, "feet")
  14851. },
  14852. {
  14853. name: "Megamacro",
  14854. height: math.unit(75, "miles")
  14855. },
  14856. {
  14857. name: "Texas-sized",
  14858. height: math.unit(750, "miles")
  14859. },
  14860. {
  14861. name: "Teramacro",
  14862. height: math.unit(50000, "miles")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(269, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/danny-kapowsky/front.svg",
  14875. extra: 766 / 736,
  14876. bottom: 0.044
  14877. }
  14878. },
  14879. back: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(269, "lb"),
  14882. name: "Back",
  14883. image: {
  14884. source: "./media/characters/danny-kapowsky/back.svg",
  14885. extra: 797 / 760,
  14886. bottom: 0.025
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Macro",
  14893. height: math.unit(150, "feet"),
  14894. default: true
  14895. },
  14896. {
  14897. name: "Macro+",
  14898. height: math.unit(200, "feet")
  14899. },
  14900. {
  14901. name: "Macro++",
  14902. height: math.unit(300, "feet")
  14903. },
  14904. {
  14905. name: "Macro+++",
  14906. height: math.unit(400, "feet")
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14912. {
  14913. side: {
  14914. height: math.unit(6, "feet"),
  14915. weight: math.unit(170, "lb"),
  14916. name: "Side",
  14917. image: {
  14918. source: "./media/characters/finn/side.svg",
  14919. extra: 1953 / 1807,
  14920. bottom: 0.057
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Megamacro",
  14927. height: math.unit(14445, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(5 + 6 / 12, "feet"),
  14937. weight: math.unit(125, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/roy/front.svg",
  14941. extra: 1,
  14942. bottom: 0.11
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Micro",
  14949. height: math.unit(3, "inches"),
  14950. default: true
  14951. },
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(5 + 6 / 12, "feet")
  14955. },
  14956. {
  14957. name: "Lesser Macro",
  14958. height: math.unit(60, "feet")
  14959. },
  14960. {
  14961. name: "Greater Macro",
  14962. height: math.unit(120, "feet")
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(6, "feet"),
  14971. weight: math.unit(100, "lb"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/aevsivs/front.svg",
  14975. extra: 1,
  14976. bottom: 0.03
  14977. }
  14978. },
  14979. back: {
  14980. height: math.unit(6, "feet"),
  14981. weight: math.unit(100, "lb"),
  14982. name: "Back",
  14983. image: {
  14984. source: "./media/characters/aevsivs/back.svg"
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Micro",
  14991. height: math.unit(2, "inches"),
  14992. default: true
  14993. },
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(5, "feet")
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(5 + 7 / 12, "feet"),
  15005. weight: math.unit(159, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/hildegard/front.svg",
  15009. extra: 289 / 269,
  15010. bottom: 7.63 / 297.8
  15011. }
  15012. },
  15013. back: {
  15014. height: math.unit(5 + 7 / 12, "feet"),
  15015. weight: math.unit(159, "lb"),
  15016. name: "Back",
  15017. image: {
  15018. source: "./media/characters/hildegard/back.svg",
  15019. extra: 280 / 260,
  15020. bottom: 2.3 / 282
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(5 + 7 / 12, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15034. {
  15035. bernard: {
  15036. height: math.unit(2 + 7 / 12, "feet"),
  15037. weight: math.unit(66, "lb"),
  15038. name: "Bernard",
  15039. rename: true,
  15040. image: {
  15041. source: "./media/characters/bernard-wilder/bernard.svg",
  15042. extra: 192 / 128,
  15043. bottom: 0.05
  15044. }
  15045. },
  15046. wilder: {
  15047. height: math.unit(5 + 8 / 12, "feet"),
  15048. weight: math.unit(143, "lb"),
  15049. name: "Wilder",
  15050. rename: true,
  15051. image: {
  15052. source: "./media/characters/bernard-wilder/wilder.svg",
  15053. extra: 361 / 312,
  15054. bottom: 0.02
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(2 + 7 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15068. {
  15069. anthro: {
  15070. height: math.unit(6 + 1 / 12, "feet"),
  15071. weight: math.unit(155, "lb"),
  15072. name: "Anthro",
  15073. image: {
  15074. source: "./media/characters/hearth/anthro.svg",
  15075. extra: 1178/1136,
  15076. bottom: 28/1206
  15077. }
  15078. },
  15079. feral: {
  15080. height: math.unit(3.78, "feet"),
  15081. weight: math.unit(35, "kg"),
  15082. name: "Feral",
  15083. image: {
  15084. source: "./media/characters/hearth/feral.svg",
  15085. extra: 153 / 135,
  15086. bottom: 0.03
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Normal",
  15093. height: math.unit(6 + 1 / 12, "feet"),
  15094. default: true
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15100. {
  15101. front: {
  15102. height: math.unit(6, "feet"),
  15103. weight: math.unit(182, "lb"),
  15104. name: "Front",
  15105. image: {
  15106. source: "./media/characters/ingrid/front.svg",
  15107. extra: 294 / 268,
  15108. bottom: 0.027
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(6, "feet"),
  15116. default: true
  15117. },
  15118. ]
  15119. ))
  15120. characterMakers.push(() => makeCharacter(
  15121. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15122. {
  15123. eevee: {
  15124. height: math.unit(2 + 10 / 12, "feet"),
  15125. weight: math.unit(86, "lb"),
  15126. name: "Malgam",
  15127. image: {
  15128. source: "./media/characters/malgam/eevee.svg",
  15129. extra: 952/784,
  15130. bottom: 38/990
  15131. }
  15132. },
  15133. sylveon: {
  15134. height: math.unit(4, "feet"),
  15135. weight: math.unit(101, "lb"),
  15136. name: "Future Malgam",
  15137. rename: true,
  15138. image: {
  15139. source: "./media/characters/malgam/sylveon.svg",
  15140. extra: 371 / 325,
  15141. bottom: 0.015
  15142. }
  15143. },
  15144. gigantamax: {
  15145. height: math.unit(50, "feet"),
  15146. name: "Gigantamax Malgam",
  15147. rename: true,
  15148. image: {
  15149. source: "./media/characters/malgam/gigantamax.svg"
  15150. }
  15151. },
  15152. },
  15153. [
  15154. {
  15155. name: "Normal",
  15156. height: math.unit(2 + 10 / 12, "feet"),
  15157. default: true
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15163. {
  15164. front: {
  15165. height: math.unit(5 + 11 / 12, "feet"),
  15166. weight: math.unit(188, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/fleur/front.svg",
  15170. extra: 309 / 283,
  15171. bottom: 0.007
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Normal",
  15178. height: math.unit(5 + 11 / 12, "feet"),
  15179. default: true
  15180. },
  15181. ]
  15182. ))
  15183. characterMakers.push(() => makeCharacter(
  15184. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15185. {
  15186. front: {
  15187. height: math.unit(5 + 4 / 12, "feet"),
  15188. weight: math.unit(122, "lb"),
  15189. name: "Front",
  15190. image: {
  15191. source: "./media/characters/jude/front.svg",
  15192. extra: 288 / 273,
  15193. bottom: 0.03
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Normal",
  15200. height: math.unit(5 + 4 / 12, "feet"),
  15201. default: true
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15207. {
  15208. front: {
  15209. height: math.unit(5 + 11 / 12, "feet"),
  15210. weight: math.unit(190, "lb"),
  15211. name: "Front",
  15212. image: {
  15213. source: "./media/characters/seara/front.svg",
  15214. extra: 1,
  15215. bottom: 0.05
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Normal",
  15222. height: math.unit(5 + 11 / 12, "feet"),
  15223. default: true
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15229. {
  15230. front: {
  15231. height: math.unit(16 + 5 / 12, "feet"),
  15232. weight: math.unit(524, "lb"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/caspian/front.svg",
  15236. extra: 1,
  15237. bottom: 0.04
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Normal",
  15244. height: math.unit(16 + 5 / 12, "feet"),
  15245. default: true
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(5 + 7 / 12, "feet"),
  15254. weight: math.unit(170, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/mika/front.svg",
  15258. extra: 1,
  15259. bottom: 0.016
  15260. }
  15261. },
  15262. },
  15263. [
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(5 + 7 / 12, "feet"),
  15267. default: true
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(6 + 2 / 12, "feet"),
  15276. weight: math.unit(268, "lb"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/sol/front.svg",
  15280. extra: 247 / 231,
  15281. bottom: 0.05
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(6 + 2 / 12, "feet"),
  15289. default: true
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15295. {
  15296. buizel: {
  15297. height: math.unit(2 + 5 / 12, "feet"),
  15298. weight: math.unit(87, "lb"),
  15299. name: "Buizel",
  15300. image: {
  15301. source: "./media/characters/umiko/buizel.svg",
  15302. extra: 172 / 157,
  15303. bottom: 0.01
  15304. }
  15305. },
  15306. floatzel: {
  15307. height: math.unit(5 + 9 / 12, "feet"),
  15308. weight: math.unit(250, "lb"),
  15309. name: "Floatzel",
  15310. image: {
  15311. source: "./media/characters/umiko/floatzel.svg",
  15312. extra: 262 / 248
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(2 + 5 / 12, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(6 + 2 / 12, "feet"),
  15329. weight: math.unit(146, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/iliac/front.svg",
  15333. extra: 389 / 365,
  15334. bottom: 0.035
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(6 + 2 / 12, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15348. {
  15349. front: {
  15350. height: math.unit(6, "feet"),
  15351. weight: math.unit(170, "lb"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/topaz/front.svg",
  15355. extra: 317 / 303,
  15356. bottom: 0.055
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(6, "feet"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(5 + 11 / 12, "feet"),
  15373. weight: math.unit(144, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/gabriel/front.svg",
  15377. extra: 285 / 262,
  15378. bottom: 0.004
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(5 + 11 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15392. {
  15393. side: {
  15394. height: math.unit(6 + 5 / 12, "feet"),
  15395. weight: math.unit(300, "lb"),
  15396. name: "Side",
  15397. image: {
  15398. source: "./media/characters/tempest-suicune/side.svg",
  15399. extra: 195 / 154,
  15400. bottom: 0.04
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(6 + 5 / 12, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(7 + 2 / 12, "feet"),
  15417. weight: math.unit(322, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/vulcan/front.svg",
  15421. extra: 154 / 147,
  15422. bottom: 0.04
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(7 + 2 / 12, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(5 + 10 / 12, "feet"),
  15439. weight: math.unit(264, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/gault/front.svg",
  15443. extra: 161 / 140,
  15444. bottom: 0.028
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(5 + 10 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6, "feet"),
  15461. weight: math.unit(150, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/shard/front.svg",
  15465. extra: 273 / 238,
  15466. bottom: 0.02
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(3 + 6 / 12, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(5 + 11 / 12, "feet"),
  15483. weight: math.unit(146, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/ashe/front.svg",
  15487. extra: 400 / 373,
  15488. bottom: 0.01
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(5 + 11 / 12, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(5 + 5 / 12, "feet"),
  15505. weight: math.unit(135, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/beatrix/front.svg",
  15509. extra: 392 / 379,
  15510. bottom: 0.01
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(6, "feet"),
  15518. default: true
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(6 + 2/12, "feet"),
  15527. weight: math.unit(135, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/ignatius/front.svg",
  15531. extra: 1380/1259,
  15532. bottom: 27/1407
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(6 + 2/12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(6 + 2 / 12, "feet"),
  15549. weight: math.unit(138, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/mei-li/front.svg",
  15553. extra: 237 / 229,
  15554. bottom: 0.03
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(6 + 2 / 12, "feet"),
  15562. default: true
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(2 + 4 / 12, "feet"),
  15571. weight: math.unit(62, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/puru/front.svg",
  15575. extra: 206 / 149,
  15576. bottom: 0.06
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(2 + 4 / 12, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15590. {
  15591. anthro: {
  15592. height: math.unit(5 + 8/12, "feet"),
  15593. weight: math.unit(200, "lb"),
  15594. energyNeed: math.unit(2000, "kcal"),
  15595. name: "Anthro",
  15596. image: {
  15597. source: "./media/characters/kee/anthro.svg",
  15598. extra: 3251/3184,
  15599. bottom: 250/3501
  15600. }
  15601. },
  15602. taur: {
  15603. height: math.unit(11, "feet"),
  15604. weight: math.unit(500, "lb"),
  15605. energyNeed: math.unit(5000, "kcal"),
  15606. name: "Taur",
  15607. image: {
  15608. source: "./media/characters/kee/taur.svg",
  15609. extra: 1362/1320,
  15610. bottom: 83/1445
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(5 + 8/12, "feet"),
  15618. default: true
  15619. },
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(35, "feet")
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15628. {
  15629. anthro: {
  15630. height: math.unit(7, "feet"),
  15631. weight: math.unit(190, "lb"),
  15632. name: "Anthro",
  15633. image: {
  15634. source: "./media/characters/cobalt-dracha/anthro.svg",
  15635. extra: 231 / 225,
  15636. bottom: 0.04
  15637. }
  15638. },
  15639. feral: {
  15640. height: math.unit(9 + 7 / 12, "feet"),
  15641. weight: math.unit(294, "lb"),
  15642. name: "Feral",
  15643. image: {
  15644. source: "./media/characters/cobalt-dracha/feral.svg",
  15645. extra: 692 / 633,
  15646. bottom: 0.05
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(7, "feet"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15660. {
  15661. fallen: {
  15662. height: math.unit(11 + 8 / 12, "feet"),
  15663. weight: math.unit(485, "lb"),
  15664. name: "Java (Fallen)",
  15665. rename: true,
  15666. image: {
  15667. source: "./media/characters/java/fallen.svg",
  15668. extra: 226 / 208,
  15669. bottom: 0.005
  15670. }
  15671. },
  15672. godkin: {
  15673. height: math.unit(10 + 6 / 12, "feet"),
  15674. weight: math.unit(328, "lb"),
  15675. name: "Java (Godkin)",
  15676. rename: true,
  15677. image: {
  15678. source: "./media/characters/java/godkin.svg",
  15679. extra: 1104/1068,
  15680. bottom: 36/1140
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Normal",
  15687. height: math.unit(11 + 8 / 12, "feet"),
  15688. default: true
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(5 + 9 / 12, "feet"),
  15697. weight: math.unit(170, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/purna/front.svg",
  15701. extra: 239 / 229,
  15702. bottom: 0.01
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(5 + 9 / 12, "feet"),
  15710. default: true
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15716. {
  15717. front: {
  15718. height: math.unit(5 + 9 / 12, "feet"),
  15719. weight: math.unit(142, "lb"),
  15720. name: "Front",
  15721. image: {
  15722. source: "./media/characters/kuva/front.svg",
  15723. extra: 281 / 271,
  15724. bottom: 0.006
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(5 + 9 / 12, "feet"),
  15732. default: true
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15738. {
  15739. anthro: {
  15740. height: math.unit(9 + 2 / 12, "feet"),
  15741. weight: math.unit(270, "lb"),
  15742. name: "Anthro",
  15743. image: {
  15744. source: "./media/characters/embra/anthro.svg",
  15745. extra: 200 / 187,
  15746. bottom: 0.02
  15747. }
  15748. },
  15749. feral: {
  15750. height: math.unit(18 + 8 / 12, "feet"),
  15751. weight: math.unit(576, "lb"),
  15752. name: "Feral",
  15753. image: {
  15754. source: "./media/characters/embra/feral.svg",
  15755. extra: 152 / 137,
  15756. bottom: 0.037
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(9 + 2 / 12, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15770. {
  15771. anthro: {
  15772. height: math.unit(10 + 9 / 12, "feet"),
  15773. weight: math.unit(224, "lb"),
  15774. name: "Anthro",
  15775. image: {
  15776. source: "./media/characters/grottos/anthro.svg",
  15777. extra: 350 / 332,
  15778. bottom: 0.045
  15779. }
  15780. },
  15781. feral: {
  15782. height: math.unit(20 + 7 / 12, "feet"),
  15783. weight: math.unit(629, "lb"),
  15784. name: "Feral",
  15785. image: {
  15786. source: "./media/characters/grottos/feral.svg",
  15787. extra: 207 / 190,
  15788. bottom: 0.05
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(10 + 9 / 12, "feet"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15802. {
  15803. anthro: {
  15804. height: math.unit(9 + 6 / 12, "feet"),
  15805. weight: math.unit(298, "lb"),
  15806. name: "Anthro",
  15807. image: {
  15808. source: "./media/characters/frifna/anthro.svg",
  15809. extra: 282 / 269,
  15810. bottom: 0.015
  15811. }
  15812. },
  15813. feral: {
  15814. height: math.unit(16 + 2 / 12, "feet"),
  15815. weight: math.unit(624, "lb"),
  15816. name: "Feral",
  15817. image: {
  15818. source: "./media/characters/frifna/feral.svg"
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Normal",
  15825. height: math.unit(9 + 6 / 12, "feet"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(6 + 2 / 12, "feet"),
  15835. weight: math.unit(168, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/elise/front.svg",
  15839. extra: 276 / 271
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(6 + 2 / 12, "feet"),
  15847. default: true
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(5 + 10 / 12, "feet"),
  15856. weight: math.unit(210, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/glade/front.svg",
  15860. extra: 258 / 247,
  15861. bottom: 0.008
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(5 + 10 / 12, "feet"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15875. {
  15876. front: {
  15877. height: math.unit(5 + 10 / 12, "feet"),
  15878. weight: math.unit(129, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/rina/front.svg",
  15882. extra: 266 / 255,
  15883. bottom: 0.005
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(5 + 10 / 12, "feet"),
  15891. default: true
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(6 + 1 / 12, "feet"),
  15900. weight: math.unit(192, "lb"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/veronica/front.svg",
  15904. extra: 319 / 309,
  15905. bottom: 0.005
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(6 + 1 / 12, "feet"),
  15913. default: true
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15919. {
  15920. front: {
  15921. height: math.unit(9 + 3 / 12, "feet"),
  15922. weight: math.unit(1100, "lb"),
  15923. name: "Front",
  15924. image: {
  15925. source: "./media/characters/braxton/front.svg",
  15926. extra: 1057 / 984,
  15927. bottom: 0.05
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(9 + 3 / 12, "feet")
  15935. },
  15936. {
  15937. name: "Giant",
  15938. height: math.unit(300, "feet"),
  15939. default: true
  15940. },
  15941. {
  15942. name: "Macro",
  15943. height: math.unit(700, "feet")
  15944. },
  15945. {
  15946. name: "Megamacro",
  15947. height: math.unit(6000, "feet")
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(6 + 7 / 12, "feet"),
  15956. weight: math.unit(150, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/blue-feyonics/front.svg",
  15960. extra: 1403 / 1306,
  15961. bottom: 0.047
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(6 + 7 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(1.8, "meters"),
  15978. weight: math.unit(60, "kg"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/maxwell/front.svg",
  15982. extra: 2060 / 1873
  15983. }
  15984. },
  15985. },
  15986. [
  15987. {
  15988. name: "Micro",
  15989. height: math.unit(1, "mm")
  15990. },
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(1.8, "meter"),
  15994. default: true
  15995. },
  15996. {
  15997. name: "Macro",
  15998. height: math.unit(30, "meters")
  15999. },
  16000. {
  16001. name: "Megamacro",
  16002. height: math.unit(10, "km")
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16008. {
  16009. front: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(150, "lb"),
  16012. name: "Front",
  16013. image: {
  16014. source: "./media/characters/jack/front.svg",
  16015. extra: 1754 / 1640,
  16016. bottom: 0.01
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(80000, "feet"),
  16024. default: true
  16025. },
  16026. {
  16027. name: "Max size",
  16028. height: math.unit(10, "lightyears")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16034. {
  16035. urban: {
  16036. height: math.unit(5, "feet"),
  16037. weight: math.unit(240, "lb"),
  16038. name: "Urban",
  16039. image: {
  16040. source: "./media/characters/cafat/urban.svg",
  16041. extra: 1223/1126,
  16042. bottom: 205/1428
  16043. }
  16044. },
  16045. summer: {
  16046. height: math.unit(5, "feet"),
  16047. weight: math.unit(240, "lb"),
  16048. name: "Summer",
  16049. image: {
  16050. source: "./media/characters/cafat/summer.svg",
  16051. extra: 1223/1126,
  16052. bottom: 205/1428
  16053. }
  16054. },
  16055. winter: {
  16056. height: math.unit(5, "feet"),
  16057. weight: math.unit(240, "lb"),
  16058. name: "Winter",
  16059. image: {
  16060. source: "./media/characters/cafat/winter.svg",
  16061. extra: 1223/1126,
  16062. bottom: 205/1428
  16063. }
  16064. },
  16065. lingerie: {
  16066. height: math.unit(5, "feet"),
  16067. weight: math.unit(240, "lb"),
  16068. name: "Lingerie",
  16069. image: {
  16070. source: "./media/characters/cafat/lingerie.svg",
  16071. extra: 1223/1126,
  16072. bottom: 205/1428
  16073. }
  16074. },
  16075. upright: {
  16076. height: math.unit(6.3, "feet"),
  16077. weight: math.unit(240, "lb"),
  16078. name: "Upright",
  16079. image: {
  16080. source: "./media/characters/cafat/upright.svg",
  16081. bottom: 0.01
  16082. }
  16083. },
  16084. uprightFull: {
  16085. height: math.unit(6.3, "feet"),
  16086. weight: math.unit(240, "lb"),
  16087. name: "Upright (Full)",
  16088. image: {
  16089. source: "./media/characters/cafat/upright-full.svg",
  16090. bottom: 0.01
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Small",
  16097. height: math.unit(5, "feet"),
  16098. default: true
  16099. },
  16100. {
  16101. name: "Large",
  16102. height: math.unit(13, "feet")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/verin-raharra/front.svg",
  16115. extra: 5019 / 4835,
  16116. bottom: 0.023
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(7 + 5 / 12, "feet"),
  16124. default: true
  16125. },
  16126. {
  16127. name: "Upsized",
  16128. height: math.unit(20, "feet")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(7, "feet"),
  16137. weight: math.unit(230, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/nakata/front.svg",
  16141. extra: 1.005,
  16142. bottom: 0.01
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(7, "feet"),
  16150. default: true
  16151. },
  16152. {
  16153. name: "Big",
  16154. height: math.unit(14, "feet")
  16155. },
  16156. {
  16157. name: "Macro",
  16158. height: math.unit(400, "feet")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(4.91, "feet"),
  16167. weight: math.unit(100, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/lily/front.svg",
  16171. extra: 1585 / 1415,
  16172. bottom: 0.02
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(4.91, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16186. {
  16187. laying: {
  16188. height: math.unit(4 + 4 / 12, "feet"),
  16189. weight: math.unit(600, "lb"),
  16190. name: "Laying",
  16191. image: {
  16192. source: "./media/characters/sheila/laying.svg",
  16193. extra: 1333 / 1265,
  16194. bottom: 0.16
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(4 + 4 / 12, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(190, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/sax/front.svg",
  16215. extra: 1187 / 973,
  16216. bottom: 0.042
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Micro",
  16223. height: math.unit(4, "inches"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(6, "feet"),
  16233. weight: math.unit(150, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/pandora/front.svg",
  16237. extra: 2720 / 2556,
  16238. bottom: 0.015
  16239. }
  16240. },
  16241. back: {
  16242. height: math.unit(6, "feet"),
  16243. weight: math.unit(150, "lb"),
  16244. name: "Back",
  16245. image: {
  16246. source: "./media/characters/pandora/back.svg",
  16247. extra: 2720 / 2556,
  16248. bottom: 0.01
  16249. }
  16250. },
  16251. beans: {
  16252. height: math.unit(6 / 8, "feet"),
  16253. name: "Beans",
  16254. image: {
  16255. source: "./media/characters/pandora/beans.svg"
  16256. }
  16257. },
  16258. collar: {
  16259. height: math.unit(0.31, "feet"),
  16260. name: "Collar",
  16261. image: {
  16262. source: "./media/characters/pandora/collar.svg"
  16263. }
  16264. },
  16265. skirt: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Skirt",
  16269. image: {
  16270. source: "./media/characters/pandora/skirt.svg",
  16271. extra: 1622 / 1525,
  16272. bottom: 0.015
  16273. }
  16274. },
  16275. hoodie: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Hoodie",
  16279. image: {
  16280. source: "./media/characters/pandora/hoodie.svg",
  16281. extra: 1622 / 1525,
  16282. bottom: 0.015
  16283. }
  16284. },
  16285. casual: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Casual",
  16289. image: {
  16290. source: "./media/characters/pandora/casual.svg",
  16291. extra: 1622 / 1525,
  16292. bottom: 0.015
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(6, "feet")
  16300. },
  16301. {
  16302. name: "Big Steppy",
  16303. height: math.unit(1, "km"),
  16304. default: true
  16305. },
  16306. {
  16307. name: "Galactic Steppy",
  16308. height: math.unit(2, "gigameters")
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16314. {
  16315. side: {
  16316. height: math.unit(10, "feet"),
  16317. weight: math.unit(800, "kg"),
  16318. name: "Side",
  16319. image: {
  16320. source: "./media/characters/venio-darcony/side.svg",
  16321. extra: 1373 / 1003,
  16322. bottom: 0.037
  16323. }
  16324. },
  16325. front: {
  16326. height: math.unit(19, "feet"),
  16327. weight: math.unit(800, "kg"),
  16328. name: "Front",
  16329. image: {
  16330. source: "./media/characters/venio-darcony/front.svg"
  16331. }
  16332. },
  16333. back: {
  16334. height: math.unit(19, "feet"),
  16335. weight: math.unit(800, "kg"),
  16336. name: "Back",
  16337. image: {
  16338. source: "./media/characters/venio-darcony/back.svg"
  16339. }
  16340. },
  16341. sideNsfw: {
  16342. height: math.unit(10, "feet"),
  16343. weight: math.unit(800, "kg"),
  16344. name: "Side (NSFW)",
  16345. image: {
  16346. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16347. extra: 1373 / 1003,
  16348. bottom: 0.037
  16349. }
  16350. },
  16351. frontNsfw: {
  16352. height: math.unit(19, "feet"),
  16353. weight: math.unit(800, "kg"),
  16354. name: "Front (NSFW)",
  16355. image: {
  16356. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16357. }
  16358. },
  16359. backNsfw: {
  16360. height: math.unit(19, "feet"),
  16361. weight: math.unit(800, "kg"),
  16362. name: "Back (NSFW)",
  16363. image: {
  16364. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16365. }
  16366. },
  16367. sideArmored: {
  16368. height: math.unit(10, "feet"),
  16369. weight: math.unit(800, "kg"),
  16370. name: "Side (Armored)",
  16371. image: {
  16372. source: "./media/characters/venio-darcony/side-armored.svg",
  16373. extra: 1373 / 1003,
  16374. bottom: 0.037
  16375. }
  16376. },
  16377. frontArmored: {
  16378. height: math.unit(19, "feet"),
  16379. weight: math.unit(900, "kg"),
  16380. name: "Front (Armored)",
  16381. image: {
  16382. source: "./media/characters/venio-darcony/front-armored.svg"
  16383. }
  16384. },
  16385. backArmored: {
  16386. height: math.unit(19, "feet"),
  16387. weight: math.unit(900, "kg"),
  16388. name: "Back (Armored)",
  16389. image: {
  16390. source: "./media/characters/venio-darcony/back-armored.svg"
  16391. }
  16392. },
  16393. sword: {
  16394. height: math.unit(10, "feet"),
  16395. weight: math.unit(50, "lb"),
  16396. name: "Sword",
  16397. image: {
  16398. source: "./media/characters/venio-darcony/sword.svg"
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(10, "feet")
  16406. },
  16407. {
  16408. name: "Macro",
  16409. height: math.unit(130, "feet"),
  16410. default: true
  16411. },
  16412. {
  16413. name: "Macro+",
  16414. height: math.unit(240, "feet")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6, "feet"),
  16423. weight: math.unit(150, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/veski/front.svg",
  16427. extra: 1299 / 1225,
  16428. bottom: 0.04
  16429. }
  16430. },
  16431. back: {
  16432. height: math.unit(6, "feet"),
  16433. weight: math.unit(150, "lb"),
  16434. name: "Back",
  16435. image: {
  16436. source: "./media/characters/veski/back.svg",
  16437. extra: 1299 / 1225,
  16438. bottom: 0.008
  16439. }
  16440. },
  16441. maw: {
  16442. height: math.unit(1.5 * 1.21, "feet"),
  16443. name: "Maw",
  16444. image: {
  16445. source: "./media/characters/veski/maw.svg"
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Macro",
  16452. height: math.unit(2, "km"),
  16453. default: true
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(5 + 7 / 12, "feet"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/isabelle/front.svg",
  16465. extra: 2130 / 1976,
  16466. bottom: 0.05
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Supermicro",
  16473. height: math.unit(10, "micrometers")
  16474. },
  16475. {
  16476. name: "Micro",
  16477. height: math.unit(1, "inch")
  16478. },
  16479. {
  16480. name: "Tiny",
  16481. height: math.unit(5, "inches")
  16482. },
  16483. {
  16484. name: "Standard",
  16485. height: math.unit(5 + 7 / 12, "inches")
  16486. },
  16487. {
  16488. name: "Macro",
  16489. height: math.unit(80, "meters"),
  16490. default: true
  16491. },
  16492. {
  16493. name: "Megamacro",
  16494. height: math.unit(250, "meters")
  16495. },
  16496. {
  16497. name: "Gigamacro",
  16498. height: math.unit(5, "km")
  16499. },
  16500. {
  16501. name: "Cosmic",
  16502. height: math.unit(2.5e6, "miles")
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(6, "feet"),
  16511. weight: math.unit(150, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/hanzo/front.svg",
  16515. extra: 374 / 344,
  16516. bottom: 0.02
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(8, "feet"),
  16524. default: true
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(7, "feet"),
  16533. weight: math.unit(130, "lb"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/anna/front.svg",
  16537. extra: 169 / 145,
  16538. bottom: 0.06
  16539. }
  16540. },
  16541. full: {
  16542. height: math.unit(4.96, "feet"),
  16543. weight: math.unit(220, "lb"),
  16544. name: "Full",
  16545. image: {
  16546. source: "./media/characters/anna/full.svg",
  16547. extra: 138 / 114,
  16548. bottom: 0.15
  16549. }
  16550. },
  16551. tongue: {
  16552. height: math.unit(2.53, "feet"),
  16553. name: "Tongue",
  16554. image: {
  16555. source: "./media/characters/anna/tongue.svg"
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(7, "feet"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(7, "feet"),
  16572. weight: math.unit(150, "lb"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/ian-corvid/front.svg",
  16576. extra: 150 / 142,
  16577. bottom: 0.02
  16578. }
  16579. },
  16580. back: {
  16581. height: math.unit(7, "feet"),
  16582. weight: math.unit(150, "lb"),
  16583. name: "Back",
  16584. image: {
  16585. source: "./media/characters/ian-corvid/back.svg",
  16586. extra: 150 / 143,
  16587. bottom: 0.01
  16588. }
  16589. },
  16590. stomping: {
  16591. height: math.unit(7, "feet"),
  16592. weight: math.unit(150, "lb"),
  16593. name: "Stomping",
  16594. image: {
  16595. source: "./media/characters/ian-corvid/stomping.svg",
  16596. extra: 76 / 72
  16597. }
  16598. },
  16599. sitting: {
  16600. height: math.unit(7 / 1.8, "feet"),
  16601. weight: math.unit(150, "lb"),
  16602. name: "Sitting",
  16603. image: {
  16604. source: "./media/characters/ian-corvid/sitting.svg",
  16605. extra: 1400 / 1269,
  16606. bottom: 0.15
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Tiny Microw",
  16613. height: math.unit(1, "inch")
  16614. },
  16615. {
  16616. name: "Microw",
  16617. height: math.unit(6, "inches")
  16618. },
  16619. {
  16620. name: "Crow",
  16621. height: math.unit(7 + 1 / 12, "feet"),
  16622. default: true
  16623. },
  16624. {
  16625. name: "Macrow",
  16626. height: math.unit(176, "feet")
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(5 + 7 / 12, "feet"),
  16635. weight: math.unit(147, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/natalie-kellon/front.svg",
  16639. extra: 1214 / 1141,
  16640. bottom: 0.02
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Micro",
  16647. height: math.unit(1 / 16, "inch")
  16648. },
  16649. {
  16650. name: "Tiny",
  16651. height: math.unit(4, "inches")
  16652. },
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(5 + 7 / 12, "feet"),
  16656. default: true
  16657. },
  16658. {
  16659. name: "Amazon",
  16660. height: math.unit(12, "feet")
  16661. },
  16662. {
  16663. name: "Giantess",
  16664. height: math.unit(160, "meters")
  16665. },
  16666. {
  16667. name: "Titaness",
  16668. height: math.unit(800, "meters")
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16674. {
  16675. front: {
  16676. height: math.unit(6, "feet"),
  16677. weight: math.unit(150, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/alluria/front.svg",
  16681. extra: 806 / 738,
  16682. bottom: 0.01
  16683. }
  16684. },
  16685. side: {
  16686. height: math.unit(6, "feet"),
  16687. weight: math.unit(150, "lb"),
  16688. name: "Side",
  16689. image: {
  16690. source: "./media/characters/alluria/side.svg",
  16691. extra: 800 / 750,
  16692. }
  16693. },
  16694. back: {
  16695. height: math.unit(6, "feet"),
  16696. weight: math.unit(150, "lb"),
  16697. name: "Back",
  16698. image: {
  16699. source: "./media/characters/alluria/back.svg",
  16700. extra: 806 / 738,
  16701. }
  16702. },
  16703. frontMaid: {
  16704. height: math.unit(6, "feet"),
  16705. weight: math.unit(150, "lb"),
  16706. name: "Front (Maid)",
  16707. image: {
  16708. source: "./media/characters/alluria/front-maid.svg",
  16709. extra: 806 / 738,
  16710. bottom: 0.01
  16711. }
  16712. },
  16713. sideMaid: {
  16714. height: math.unit(6, "feet"),
  16715. weight: math.unit(150, "lb"),
  16716. name: "Side (Maid)",
  16717. image: {
  16718. source: "./media/characters/alluria/side-maid.svg",
  16719. extra: 800 / 750,
  16720. bottom: 0.005
  16721. }
  16722. },
  16723. backMaid: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(150, "lb"),
  16726. name: "Back (Maid)",
  16727. image: {
  16728. source: "./media/characters/alluria/back-maid.svg",
  16729. extra: 806 / 738,
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Micro",
  16736. height: math.unit(6, "inches"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(6, "feet"),
  16746. weight: math.unit(150, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/kyle/front.svg",
  16750. extra: 1069 / 962,
  16751. bottom: 77.228 / 1727.45
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Macro",
  16758. height: math.unit(150, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(6, "feet"),
  16768. weight: math.unit(300, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/duncan/front.svg",
  16772. extra: 1650 / 1482,
  16773. bottom: 0.05
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Macro",
  16780. height: math.unit(100, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(5 + 4 / 12, "feet"),
  16790. weight: math.unit(220, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/memory/front.svg",
  16794. extra: 3641 / 3545,
  16795. bottom: 0.03
  16796. }
  16797. },
  16798. back: {
  16799. height: math.unit(5 + 4 / 12, "feet"),
  16800. weight: math.unit(220, "lb"),
  16801. name: "Back",
  16802. image: {
  16803. source: "./media/characters/memory/back.svg",
  16804. extra: 3641 / 3545,
  16805. bottom: 0.025
  16806. }
  16807. },
  16808. frontSkirt: {
  16809. height: math.unit(5 + 4 / 12, "feet"),
  16810. weight: math.unit(220, "lb"),
  16811. name: "Front (Skirt)",
  16812. image: {
  16813. source: "./media/characters/memory/front-skirt.svg",
  16814. extra: 3641 / 3545,
  16815. bottom: 0.03
  16816. }
  16817. },
  16818. frontDress: {
  16819. height: math.unit(5 + 4 / 12, "feet"),
  16820. weight: math.unit(220, "lb"),
  16821. name: "Front (Dress)",
  16822. image: {
  16823. source: "./media/characters/memory/front-dress.svg",
  16824. extra: 3641 / 3545,
  16825. bottom: 0.03
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Micro",
  16832. height: math.unit(6, "inches"),
  16833. default: true
  16834. },
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(5 + 4 / 12, "feet")
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(4 + 11 / 12, "feet"),
  16846. weight: math.unit(100, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/luno/front.svg",
  16850. extra: 1535 / 1487,
  16851. bottom: 0.03
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Micro",
  16858. height: math.unit(3, "inches")
  16859. },
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(4 + 11 / 12, "feet"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Macro",
  16867. height: math.unit(300, "feet")
  16868. },
  16869. {
  16870. name: "Megamacro",
  16871. height: math.unit(700, "miles")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(6 + 2 / 12, "feet"),
  16880. weight: math.unit(170, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/jamesy/front.svg",
  16884. extra: 440 / 382,
  16885. bottom: 0.005
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Micro",
  16892. height: math.unit(3, "inches")
  16893. },
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(6 + 2 / 12, "feet"),
  16897. default: true
  16898. },
  16899. {
  16900. name: "Macro",
  16901. height: math.unit(300, "feet")
  16902. },
  16903. {
  16904. name: "Megamacro",
  16905. height: math.unit(700, "miles")
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16911. {
  16912. front: {
  16913. height: math.unit(6, "feet"),
  16914. weight: math.unit(160, "lb"),
  16915. name: "Front",
  16916. image: {
  16917. source: "./media/characters/mark/front.svg",
  16918. extra: 3300 / 3100,
  16919. bottom: 136.42 / 3440.47
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Macro",
  16926. height: math.unit(120, "meters")
  16927. },
  16928. {
  16929. name: "Bigger Macro",
  16930. height: math.unit(350, "meters")
  16931. },
  16932. {
  16933. name: "Megamacro",
  16934. height: math.unit(8, "km"),
  16935. default: true
  16936. },
  16937. {
  16938. name: "Continental",
  16939. height: math.unit(4550, "km")
  16940. },
  16941. {
  16942. name: "Planetary",
  16943. height: math.unit(65000, "km")
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16949. {
  16950. front: {
  16951. height: math.unit(6, "feet"),
  16952. weight: math.unit(400, "lb"),
  16953. name: "Front",
  16954. image: {
  16955. source: "./media/characters/mac/front.svg",
  16956. extra: 1048 / 987.7,
  16957. bottom: 60 / 1107.6,
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Macro",
  16964. height: math.unit(500, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(5 + 2 / 12, "feet"),
  16974. weight: math.unit(190, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/bari/front.svg",
  16978. extra: 3156 / 2880,
  16979. bottom: 0.03
  16980. }
  16981. },
  16982. back: {
  16983. height: math.unit(5 + 2 / 12, "feet"),
  16984. weight: math.unit(190, "lb"),
  16985. name: "Back",
  16986. image: {
  16987. source: "./media/characters/bari/back.svg",
  16988. extra: 3260 / 2834,
  16989. bottom: 0.025
  16990. }
  16991. },
  16992. frontPlush: {
  16993. height: math.unit(5 + 2 / 12, "feet"),
  16994. weight: math.unit(190, "lb"),
  16995. name: "Front (Plush)",
  16996. image: {
  16997. source: "./media/characters/bari/front-plush.svg",
  16998. extra: 1112 / 1061,
  16999. bottom: 0.002
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Micro",
  17006. height: math.unit(3, "inches")
  17007. },
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(5 + 2 / 12, "feet"),
  17011. default: true
  17012. },
  17013. {
  17014. name: "Macro",
  17015. height: math.unit(20, "feet")
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17021. {
  17022. front: {
  17023. height: math.unit(6 + 1 / 12, "feet"),
  17024. weight: math.unit(275, "lb"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/hunter-misha-raven/front.svg"
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Mortal",
  17034. height: math.unit(6 + 1 / 12, "feet")
  17035. },
  17036. {
  17037. name: "Divine",
  17038. height: math.unit(1.12134e34, "parsecs"),
  17039. default: true
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(6 + 3 / 12, "feet"),
  17048. weight: math.unit(220, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/max-calore/front.svg",
  17052. extra: 1700 / 1648,
  17053. bottom: 0.01
  17054. }
  17055. },
  17056. back: {
  17057. height: math.unit(6 + 3 / 12, "feet"),
  17058. weight: math.unit(220, "lb"),
  17059. name: "Back",
  17060. image: {
  17061. source: "./media/characters/max-calore/back.svg",
  17062. extra: 1700 / 1648,
  17063. bottom: 0.01
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(6 + 3 / 12, "feet"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17077. {
  17078. side: {
  17079. height: math.unit(2 + 8 / 12, "feet"),
  17080. weight: math.unit(99, "lb"),
  17081. name: "Side",
  17082. image: {
  17083. source: "./media/characters/aspen/side.svg",
  17084. extra: 152 / 138,
  17085. bottom: 0.032
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(2 + 8 / 12, "feet"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17099. {
  17100. side: {
  17101. height: math.unit(3 + 2 / 12, "feet"),
  17102. weight: math.unit(224, "lb"),
  17103. name: "Side",
  17104. image: {
  17105. source: "./media/characters/sheila-feral-wolf/side.svg",
  17106. extra: 179 / 166,
  17107. bottom: 0.03
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(3 + 2 / 12, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17121. {
  17122. side: {
  17123. height: math.unit(1 + 9 / 12, "feet"),
  17124. weight: math.unit(38, "lb"),
  17125. name: "Side",
  17126. image: {
  17127. source: "./media/characters/michelle/side.svg",
  17128. extra: 147 / 136.7,
  17129. bottom: 0.03
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(1 + 9 / 12, "feet"),
  17137. default: true
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17143. {
  17144. front: {
  17145. height: math.unit(1 + 1 / 12, "feet"),
  17146. weight: math.unit(18, "lb"),
  17147. name: "Front",
  17148. image: {
  17149. source: "./media/characters/nino/front.svg"
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(1 + 1 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(1, "feet"),
  17166. weight: math.unit(16, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/viola/front.svg"
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(1, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(6 + 5 / 12, "feet"),
  17186. weight: math.unit(580, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/atlas/front.svg",
  17190. extra: 298.5 / 290,
  17191. bottom: 0.015
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(6 + 5 / 12, "feet"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17205. {
  17206. side: {
  17207. height: math.unit(1 + 10 / 12, "feet"),
  17208. weight: math.unit(25, "lb"),
  17209. name: "Side",
  17210. image: {
  17211. source: "./media/characters/davy/side.svg",
  17212. extra: 200 / 170,
  17213. bottom: 0.01
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(1 + 10 / 12, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17227. {
  17228. side: {
  17229. height: math.unit(4 + 8 / 12, "feet"),
  17230. weight: math.unit(166, "lb"),
  17231. name: "Side",
  17232. image: {
  17233. source: "./media/characters/fiona/side.svg",
  17234. extra: 232 / 220,
  17235. bottom: 0.03
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(4 + 8 / 12, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17249. {
  17250. front: {
  17251. height: math.unit(3, "feet"),
  17252. weight: math.unit(100, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/lyla/front.svg",
  17256. bottom: 0.1
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(3, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17270. {
  17271. side: {
  17272. height: math.unit(1.8, "feet"),
  17273. weight: math.unit(44, "lb"),
  17274. name: "Side",
  17275. image: {
  17276. source: "./media/characters/perseus/side.svg",
  17277. bottom: 0.21
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Normal",
  17284. height: math.unit(1.8, "feet"),
  17285. default: true
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17291. {
  17292. side: {
  17293. height: math.unit(4 + 2 / 12, "feet"),
  17294. weight: math.unit(20, "lb"),
  17295. name: "Side",
  17296. image: {
  17297. source: "./media/characters/remus/side.svg"
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Normal",
  17304. height: math.unit(4 + 2 / 12, "feet"),
  17305. default: true
  17306. },
  17307. ]
  17308. ))
  17309. characterMakers.push(() => makeCharacter(
  17310. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17311. {
  17312. front: {
  17313. height: math.unit(4 + 11 / 12, "feet"),
  17314. weight: math.unit(114, "lb"),
  17315. name: "Front",
  17316. image: {
  17317. source: "./media/characters/raf/front.svg",
  17318. extra: 1504/1339,
  17319. bottom: 26/1530
  17320. }
  17321. },
  17322. side: {
  17323. height: math.unit(4 + 11 / 12, "feet"),
  17324. weight: math.unit(114, "lb"),
  17325. name: "Side",
  17326. image: {
  17327. source: "./media/characters/raf/side.svg",
  17328. extra: 1466/1316,
  17329. bottom: 29/1495
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Micro",
  17336. height: math.unit(2, "inches")
  17337. },
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(4 + 11 / 12, "feet"),
  17341. default: true
  17342. },
  17343. {
  17344. name: "Macro",
  17345. height: math.unit(70, "feet")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(1.5, "meters"),
  17354. weight: math.unit(68, "kg"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/liam-einarr/front.svg",
  17358. extra: 2822 / 2666
  17359. }
  17360. },
  17361. back: {
  17362. height: math.unit(1.5, "meters"),
  17363. weight: math.unit(68, "kg"),
  17364. name: "Back",
  17365. image: {
  17366. source: "./media/characters/liam-einarr/back.svg",
  17367. extra: 2822 / 2666,
  17368. bottom: 0.015
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(1.5, "meters"),
  17376. default: true
  17377. },
  17378. {
  17379. name: "Macro",
  17380. height: math.unit(150, "meters")
  17381. },
  17382. {
  17383. name: "Megamacro",
  17384. height: math.unit(35, "km")
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(6, "feet"),
  17393. weight: math.unit(75, "kg"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/linda/front.svg",
  17397. extra: 930 / 874,
  17398. bottom: 0.004
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(6, "feet"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17412. {
  17413. front: {
  17414. height: math.unit(6 + 8 / 12, "feet"),
  17415. weight: math.unit(220, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/caylex/front.svg",
  17419. extra: 821 / 772,
  17420. bottom: 0.07
  17421. }
  17422. },
  17423. back: {
  17424. height: math.unit(6 + 8 / 12, "feet"),
  17425. weight: math.unit(220, "lb"),
  17426. name: "Back",
  17427. image: {
  17428. source: "./media/characters/caylex/back.svg",
  17429. extra: 821 / 772,
  17430. bottom: 0.022
  17431. }
  17432. },
  17433. hand: {
  17434. height: math.unit(1.25, "feet"),
  17435. name: "Hand",
  17436. image: {
  17437. source: "./media/characters/caylex/hand.svg"
  17438. }
  17439. },
  17440. foot: {
  17441. height: math.unit(1.6, "feet"),
  17442. name: "Foot",
  17443. image: {
  17444. source: "./media/characters/caylex/foot.svg"
  17445. }
  17446. },
  17447. armored: {
  17448. height: math.unit(6 + 8 / 12, "feet"),
  17449. weight: math.unit(250, "lb"),
  17450. name: "Armored",
  17451. image: {
  17452. source: "./media/characters/caylex/armored.svg",
  17453. extra: 1420 / 1310,
  17454. bottom: 0.045
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(6 + 8 / 12, "feet"),
  17462. default: true
  17463. },
  17464. {
  17465. name: "Normal+",
  17466. height: math.unit(12, "feet")
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(7 + 6 / 12, "feet"),
  17475. weight: math.unit(288, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/alana/front.svg",
  17479. extra: 679 / 653,
  17480. bottom: 22.5 / 701
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(7 + 6 / 12, "feet")
  17488. },
  17489. {
  17490. name: "Large",
  17491. height: math.unit(50, "feet")
  17492. },
  17493. {
  17494. name: "Macro",
  17495. height: math.unit(100, "feet"),
  17496. default: true
  17497. },
  17498. {
  17499. name: "Macro+",
  17500. height: math.unit(200, "feet")
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17506. {
  17507. front: {
  17508. height: math.unit(6 + 1 / 12, "feet"),
  17509. weight: math.unit(210, "lb"),
  17510. name: "Front",
  17511. image: {
  17512. source: "./media/characters/hasani/front.svg",
  17513. extra: 244 / 232,
  17514. bottom: 0.01
  17515. }
  17516. },
  17517. back: {
  17518. height: math.unit(6 + 1 / 12, "feet"),
  17519. weight: math.unit(210, "lb"),
  17520. name: "Back",
  17521. image: {
  17522. source: "./media/characters/hasani/back.svg",
  17523. extra: 244 / 232,
  17524. bottom: 0.01
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(6 + 1 / 12, "feet")
  17532. },
  17533. {
  17534. name: "Macro",
  17535. height: math.unit(175, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17542. {
  17543. front: {
  17544. height: math.unit(1.82, "meters"),
  17545. weight: math.unit(140, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/nita/front.svg",
  17549. extra: 2473 / 2363,
  17550. bottom: 0.01
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(1.82, "m")
  17558. },
  17559. {
  17560. name: "Macro",
  17561. height: math.unit(300, "m")
  17562. },
  17563. {
  17564. name: "Mistake Canon",
  17565. height: math.unit(0.5, "miles"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Big Mistake",
  17570. height: math.unit(13, "miles")
  17571. },
  17572. {
  17573. name: "Playing God",
  17574. height: math.unit(2450, "miles")
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17580. {
  17581. front: {
  17582. height: math.unit(4, "feet"),
  17583. weight: math.unit(120, "lb"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/shiriko/front.svg",
  17587. extra: 970/934,
  17588. bottom: 5/975
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(4, "feet"),
  17596. default: true
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17602. {
  17603. front: {
  17604. height: math.unit(6, "feet"),
  17605. name: "front",
  17606. image: {
  17607. source: "./media/characters/deja/front.svg",
  17608. extra: 926 / 840,
  17609. bottom: 0.07
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Planck Length",
  17616. height: math.unit(1.6e-35, "meters")
  17617. },
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(30.48, "meters"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Universal",
  17625. height: math.unit(8.8e26, "meters")
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17631. {
  17632. side: {
  17633. height: math.unit(8, "feet"),
  17634. weight: math.unit(6300, "lb"),
  17635. name: "Side",
  17636. image: {
  17637. source: "./media/characters/anima/side.svg",
  17638. bottom: 0.035
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(8, "feet"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(8, "feet"),
  17655. weight: math.unit(350, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/bianca/front.svg",
  17659. extra: 234 / 225,
  17660. bottom: 0.03
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(8, "feet"),
  17668. default: true
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17674. {
  17675. front: {
  17676. height: math.unit(6, "feet"),
  17677. weight: math.unit(150, "lb"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/adinia/front.svg",
  17681. extra: 1845 / 1672,
  17682. bottom: 0.02
  17683. }
  17684. },
  17685. back: {
  17686. height: math.unit(6, "feet"),
  17687. weight: math.unit(150, "lb"),
  17688. name: "Back",
  17689. image: {
  17690. source: "./media/characters/adinia/back.svg",
  17691. extra: 1845 / 1672,
  17692. bottom: 0.002
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(11 + 5 / 12, "feet"),
  17700. default: true
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17706. {
  17707. front: {
  17708. height: math.unit(3, "meters"),
  17709. weight: math.unit(200, "kg"),
  17710. name: "Front",
  17711. image: {
  17712. source: "./media/characters/lykasa/front.svg",
  17713. extra: 1076 / 976,
  17714. bottom: 0.06
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(3, "meters")
  17722. },
  17723. {
  17724. name: "Kaiju",
  17725. height: math.unit(120, "meters"),
  17726. default: true
  17727. },
  17728. {
  17729. name: "Mega Kaiju",
  17730. height: math.unit(240, "km")
  17731. },
  17732. {
  17733. name: "Giga Kaiju",
  17734. height: math.unit(400, "megameters")
  17735. },
  17736. {
  17737. name: "Tera Kaiju",
  17738. height: math.unit(800, "gigameters")
  17739. },
  17740. {
  17741. name: "Kaiju Dragon Goddess",
  17742. height: math.unit(26, "zettaparsecs")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17748. {
  17749. side: {
  17750. height: math.unit(283 / 124 * 6, "feet"),
  17751. weight: math.unit(35000, "lb"),
  17752. name: "Side",
  17753. image: {
  17754. source: "./media/characters/malfaren/side.svg",
  17755. extra: 2500 / 1010,
  17756. bottom: 0.01
  17757. }
  17758. },
  17759. front: {
  17760. height: math.unit(22.36, "feet"),
  17761. weight: math.unit(35000, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/malfaren/front.svg",
  17765. extra: 1631 / 1476,
  17766. bottom: 0.01
  17767. }
  17768. },
  17769. maw: {
  17770. height: math.unit(6.9, "feet"),
  17771. name: "Maw",
  17772. image: {
  17773. source: "./media/characters/malfaren/maw.svg"
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Big",
  17780. height: math.unit(283 / 162 * 6, "feet"),
  17781. },
  17782. {
  17783. name: "Bigger",
  17784. height: math.unit(283 / 124 * 6, "feet")
  17785. },
  17786. {
  17787. name: "Massive",
  17788. height: math.unit(283 / 92 * 6, "feet"),
  17789. default: true
  17790. },
  17791. {
  17792. name: "👀💦",
  17793. height: math.unit(283 / 73 * 6, "feet"),
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(1.7, "m"),
  17802. weight: math.unit(70, "kg"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/kernel/front.svg",
  17806. extra: 222 / 210,
  17807. bottom: 0.007
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Nano",
  17814. height: math.unit(17, "micrometers")
  17815. },
  17816. {
  17817. name: "Micro",
  17818. height: math.unit(1.7, "mm")
  17819. },
  17820. {
  17821. name: "Small",
  17822. height: math.unit(1.7, "cm")
  17823. },
  17824. {
  17825. name: "Normal",
  17826. height: math.unit(1.7, "m"),
  17827. default: true
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(1.75, "meters"),
  17836. weight: math.unit(65, "kg"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/jayne-folest/front.svg",
  17840. extra: 2115 / 2007,
  17841. bottom: 0.02
  17842. }
  17843. },
  17844. back: {
  17845. height: math.unit(1.75, "meters"),
  17846. weight: math.unit(65, "kg"),
  17847. name: "Back",
  17848. image: {
  17849. source: "./media/characters/jayne-folest/back.svg",
  17850. extra: 2115 / 2007,
  17851. bottom: 0.005
  17852. }
  17853. },
  17854. frontClothed: {
  17855. height: math.unit(1.75, "meters"),
  17856. weight: math.unit(65, "kg"),
  17857. name: "Front (Clothed)",
  17858. image: {
  17859. source: "./media/characters/jayne-folest/front-clothed.svg",
  17860. extra: 2115 / 2007,
  17861. bottom: 0.035
  17862. }
  17863. },
  17864. hand: {
  17865. height: math.unit(1 / 1.260, "feet"),
  17866. name: "Hand",
  17867. image: {
  17868. source: "./media/characters/jayne-folest/hand.svg"
  17869. }
  17870. },
  17871. foot: {
  17872. height: math.unit(1 / 0.918, "feet"),
  17873. name: "Foot",
  17874. image: {
  17875. source: "./media/characters/jayne-folest/foot.svg"
  17876. }
  17877. },
  17878. },
  17879. [
  17880. {
  17881. name: "Micro",
  17882. height: math.unit(4, "cm")
  17883. },
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(1.75, "meters")
  17887. },
  17888. {
  17889. name: "Macro",
  17890. height: math.unit(47.5, "meters"),
  17891. default: true
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17897. {
  17898. front: {
  17899. height: math.unit(180, "cm"),
  17900. weight: math.unit(70, "kg"),
  17901. name: "Front",
  17902. image: {
  17903. source: "./media/characters/algier/front.svg",
  17904. extra: 596 / 572,
  17905. bottom: 0.04
  17906. }
  17907. },
  17908. back: {
  17909. height: math.unit(180, "cm"),
  17910. weight: math.unit(70, "kg"),
  17911. name: "Back",
  17912. image: {
  17913. source: "./media/characters/algier/back.svg",
  17914. extra: 596 / 572,
  17915. bottom: 0.025
  17916. }
  17917. },
  17918. frontdressed: {
  17919. height: math.unit(180, "cm"),
  17920. weight: math.unit(150, "kg"),
  17921. name: "Front-dressed",
  17922. image: {
  17923. source: "./media/characters/algier/front-dressed.svg",
  17924. extra: 596 / 572,
  17925. bottom: 0.038
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Micro",
  17932. height: math.unit(5, "cm")
  17933. },
  17934. {
  17935. name: "Normal",
  17936. height: math.unit(180, "cm"),
  17937. default: true
  17938. },
  17939. {
  17940. name: "Macro",
  17941. height: math.unit(64, "m")
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17947. {
  17948. upright: {
  17949. height: math.unit(7, "feet"),
  17950. weight: math.unit(300, "lb"),
  17951. name: "Upright",
  17952. image: {
  17953. source: "./media/characters/pretzel/upright.svg",
  17954. extra: 534 / 522,
  17955. bottom: 0.065
  17956. }
  17957. },
  17958. sprawling: {
  17959. height: math.unit(3.75, "feet"),
  17960. weight: math.unit(300, "lb"),
  17961. name: "Sprawling",
  17962. image: {
  17963. source: "./media/characters/pretzel/sprawling.svg",
  17964. extra: 314 / 281,
  17965. bottom: 0.1
  17966. }
  17967. },
  17968. tongue: {
  17969. height: math.unit(2, "feet"),
  17970. name: "Tongue",
  17971. image: {
  17972. source: "./media/characters/pretzel/tongue.svg"
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(7, "feet"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Oversized",
  17984. height: math.unit(15, "feet")
  17985. },
  17986. {
  17987. name: "Huge",
  17988. height: math.unit(30, "feet")
  17989. },
  17990. {
  17991. name: "Macro",
  17992. height: math.unit(250, "feet")
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17998. {
  17999. sideFront: {
  18000. height: math.unit(5 + 2 / 12, "feet"),
  18001. weight: math.unit(120, "lb"),
  18002. name: "Front Side",
  18003. image: {
  18004. source: "./media/characters/roxi/side-front.svg",
  18005. extra: 2924 / 2717,
  18006. bottom: 0.08
  18007. }
  18008. },
  18009. sideBack: {
  18010. height: math.unit(5 + 2 / 12, "feet"),
  18011. weight: math.unit(120, "lb"),
  18012. name: "Back Side",
  18013. image: {
  18014. source: "./media/characters/roxi/side-back.svg",
  18015. extra: 2904 / 2693,
  18016. bottom: 0.06
  18017. }
  18018. },
  18019. front: {
  18020. height: math.unit(5 + 2 / 12, "feet"),
  18021. weight: math.unit(120, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/roxi/front.svg",
  18025. extra: 2028 / 1907,
  18026. bottom: 0.01
  18027. }
  18028. },
  18029. frontAlt: {
  18030. height: math.unit(5 + 2 / 12, "feet"),
  18031. weight: math.unit(120, "lb"),
  18032. name: "Front (Alt)",
  18033. image: {
  18034. source: "./media/characters/roxi/front-alt.svg",
  18035. extra: 1828 / 1798,
  18036. bottom: 0.01
  18037. }
  18038. },
  18039. sitting: {
  18040. height: math.unit(2.8, "feet"),
  18041. weight: math.unit(120, "lb"),
  18042. name: "Sitting",
  18043. image: {
  18044. source: "./media/characters/roxi/sitting.svg",
  18045. extra: 2660 / 2462,
  18046. bottom: 0.1
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Normal",
  18053. height: math.unit(5 + 2 / 12, "feet"),
  18054. default: true
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18060. {
  18061. side: {
  18062. height: math.unit(55, "feet"),
  18063. weight: math.unit(153, "tons"),
  18064. name: "Side",
  18065. image: {
  18066. source: "./media/characters/shadow/side.svg",
  18067. extra: 701 / 628,
  18068. bottom: 0.02
  18069. }
  18070. },
  18071. flying: {
  18072. height: math.unit(145, "feet"),
  18073. weight: math.unit(153, "tons"),
  18074. name: "Flying",
  18075. image: {
  18076. source: "./media/characters/shadow/flying.svg"
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(55, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(6, "feet"),
  18093. weight: math.unit(200, "lb"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/marcie/front.svg",
  18097. extra: 960 / 876,
  18098. bottom: 58 / 1017.87
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Macro",
  18105. height: math.unit(1, "mile"),
  18106. default: true
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(7, "feet"),
  18115. weight: math.unit(200, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/kachina/front.svg",
  18119. extra: 1290.68 / 1119,
  18120. bottom: 36.5 / 1327.18
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(7, "feet"),
  18128. default: true
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18134. {
  18135. looking: {
  18136. height: math.unit(2, "meters"),
  18137. weight: math.unit(300, "kg"),
  18138. name: "Looking",
  18139. image: {
  18140. source: "./media/characters/kash/looking.svg",
  18141. extra: 474 / 344,
  18142. bottom: 0.03
  18143. }
  18144. },
  18145. side: {
  18146. height: math.unit(2, "meters"),
  18147. weight: math.unit(300, "kg"),
  18148. name: "Side",
  18149. image: {
  18150. source: "./media/characters/kash/side.svg",
  18151. extra: 302 / 251,
  18152. bottom: 0.03
  18153. }
  18154. },
  18155. front: {
  18156. height: math.unit(2, "meters"),
  18157. weight: math.unit(300, "kg"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/kash/front.svg",
  18161. extra: 495 / 360,
  18162. bottom: 0.015
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Normal",
  18169. height: math.unit(2, "meters"),
  18170. default: true
  18171. },
  18172. {
  18173. name: "Big",
  18174. height: math.unit(3, "meters")
  18175. },
  18176. {
  18177. name: "Large",
  18178. height: math.unit(5, "meters")
  18179. },
  18180. ]
  18181. ))
  18182. characterMakers.push(() => makeCharacter(
  18183. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18184. {
  18185. feeding: {
  18186. height: math.unit(6.7, "feet"),
  18187. weight: math.unit(350, "lb"),
  18188. name: "Feeding",
  18189. image: {
  18190. source: "./media/characters/lalim/feeding.svg",
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(6.7, "feet"),
  18198. default: true
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(9.5, "feet"),
  18207. weight: math.unit(600, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/de'vout/front.svg",
  18211. extra: 1443 / 1328,
  18212. bottom: 0.025
  18213. }
  18214. },
  18215. back: {
  18216. height: math.unit(9.5, "feet"),
  18217. weight: math.unit(600, "lb"),
  18218. name: "Back",
  18219. image: {
  18220. source: "./media/characters/de'vout/back.svg",
  18221. extra: 1443 / 1328
  18222. }
  18223. },
  18224. frontDressed: {
  18225. height: math.unit(9.5, "feet"),
  18226. weight: math.unit(600, "lb"),
  18227. name: "Front (Dressed",
  18228. image: {
  18229. source: "./media/characters/de'vout/front-dressed.svg",
  18230. extra: 1443 / 1328,
  18231. bottom: 0.025
  18232. }
  18233. },
  18234. backDressed: {
  18235. height: math.unit(9.5, "feet"),
  18236. weight: math.unit(600, "lb"),
  18237. name: "Back (Dressed",
  18238. image: {
  18239. source: "./media/characters/de'vout/back-dressed.svg",
  18240. extra: 1443 / 1328
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(9.5, "feet"),
  18248. default: true
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18254. {
  18255. front: {
  18256. height: math.unit(8, "feet"),
  18257. weight: math.unit(225, "lb"),
  18258. name: "Front",
  18259. image: {
  18260. source: "./media/characters/talana/front.svg",
  18261. extra: 1410 / 1300,
  18262. bottom: 0.015
  18263. }
  18264. },
  18265. frontDressed: {
  18266. height: math.unit(8, "feet"),
  18267. weight: math.unit(225, "lb"),
  18268. name: "Front (Dressed",
  18269. image: {
  18270. source: "./media/characters/talana/front-dressed.svg",
  18271. extra: 1410 / 1300,
  18272. bottom: 0.015
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(8, "feet"),
  18280. default: true
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18286. {
  18287. side: {
  18288. height: math.unit(7.2, "feet"),
  18289. weight: math.unit(150, "lb"),
  18290. name: "Side",
  18291. image: {
  18292. source: "./media/characters/xeauvok/side.svg",
  18293. extra: 1975 / 1523,
  18294. bottom: 0.07
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Normal",
  18301. height: math.unit(7.2, "feet"),
  18302. default: true
  18303. },
  18304. ]
  18305. ))
  18306. characterMakers.push(() => makeCharacter(
  18307. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18308. {
  18309. side: {
  18310. height: math.unit(10, "feet"),
  18311. weight: math.unit(900, "kg"),
  18312. name: "Side",
  18313. image: {
  18314. source: "./media/characters/zara/side.svg",
  18315. extra: 504 / 498
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(10, "feet"),
  18323. default: true
  18324. },
  18325. ]
  18326. ))
  18327. characterMakers.push(() => makeCharacter(
  18328. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18329. {
  18330. side: {
  18331. height: math.unit(6, "feet"),
  18332. weight: math.unit(150, "lb"),
  18333. name: "Side",
  18334. image: {
  18335. source: "./media/characters/richard-dragon/side.svg",
  18336. extra: 845 / 340,
  18337. bottom: 0.017
  18338. }
  18339. },
  18340. maw: {
  18341. height: math.unit(2.97, "feet"),
  18342. name: "Maw",
  18343. image: {
  18344. source: "./media/characters/richard-dragon/maw.svg"
  18345. }
  18346. },
  18347. },
  18348. [
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(4, "feet"),
  18356. weight: math.unit(100, "lb"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/richard-smeargle/front.svg",
  18360. extra: 2952 / 2820,
  18361. bottom: 0.028
  18362. }
  18363. },
  18364. },
  18365. [
  18366. {
  18367. name: "Normal",
  18368. height: math.unit(4, "feet"),
  18369. default: true
  18370. },
  18371. {
  18372. name: "Dynamax",
  18373. height: math.unit(20, "meters")
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18379. {
  18380. front: {
  18381. height: math.unit(6, "feet"),
  18382. weight: math.unit(110, "lb"),
  18383. name: "Front",
  18384. image: {
  18385. source: "./media/characters/klay/front.svg",
  18386. extra: 962 / 883,
  18387. bottom: 0.04
  18388. }
  18389. },
  18390. back: {
  18391. height: math.unit(6, "feet"),
  18392. weight: math.unit(110, "lb"),
  18393. name: "Back",
  18394. image: {
  18395. source: "./media/characters/klay/back.svg",
  18396. extra: 962 / 883
  18397. }
  18398. },
  18399. beans: {
  18400. height: math.unit(1.15, "feet"),
  18401. name: "Beans",
  18402. image: {
  18403. source: "./media/characters/klay/beans.svg"
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Micro",
  18410. height: math.unit(6, "inches")
  18411. },
  18412. {
  18413. name: "Mini",
  18414. height: math.unit(3, "feet")
  18415. },
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(6, "feet"),
  18419. default: true
  18420. },
  18421. {
  18422. name: "Big",
  18423. height: math.unit(25, "feet")
  18424. },
  18425. {
  18426. name: "Macro",
  18427. height: math.unit(100, "feet")
  18428. },
  18429. {
  18430. name: "Megamacro",
  18431. height: math.unit(400, "feet")
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(6, "feet"),
  18440. weight: math.unit(160, "lb"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/marcus/front.svg",
  18444. extra: 734 / 676,
  18445. bottom: 0.03
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Little",
  18452. height: math.unit(6, "feet")
  18453. },
  18454. {
  18455. name: "Normal",
  18456. height: math.unit(110, "feet"),
  18457. default: true
  18458. },
  18459. {
  18460. name: "Macro",
  18461. height: math.unit(250, "feet")
  18462. },
  18463. {
  18464. name: "Megamacro",
  18465. height: math.unit(1000, "feet")
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18471. {
  18472. front: {
  18473. height: math.unit(7, "feet"),
  18474. weight: math.unit(275, "lb"),
  18475. name: "Front",
  18476. image: {
  18477. source: "./media/characters/claude-delroute/front.svg",
  18478. extra: 902/827,
  18479. bottom: 26/928
  18480. }
  18481. },
  18482. side: {
  18483. height: math.unit(7, "feet"),
  18484. weight: math.unit(275, "lb"),
  18485. name: "Side",
  18486. image: {
  18487. source: "./media/characters/claude-delroute/side.svg",
  18488. extra: 908/853,
  18489. bottom: 16/924
  18490. }
  18491. },
  18492. back: {
  18493. height: math.unit(7, "feet"),
  18494. weight: math.unit(275, "lb"),
  18495. name: "Back",
  18496. image: {
  18497. source: "./media/characters/claude-delroute/back.svg",
  18498. extra: 911/829,
  18499. bottom: 18/929
  18500. }
  18501. },
  18502. maw: {
  18503. height: math.unit(0.6407, "meters"),
  18504. name: "Maw",
  18505. image: {
  18506. source: "./media/characters/claude-delroute/maw.svg"
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(7, "feet"),
  18514. default: true
  18515. },
  18516. {
  18517. name: "Lorge",
  18518. height: math.unit(20, "feet")
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(8 + 4 / 12, "feet"),
  18527. weight: math.unit(600, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/dragonien/front.svg",
  18531. extra: 100 / 94,
  18532. bottom: 3.3 / 103.3445
  18533. }
  18534. },
  18535. back: {
  18536. height: math.unit(8 + 4 / 12, "feet"),
  18537. weight: math.unit(600, "lb"),
  18538. name: "Back",
  18539. image: {
  18540. source: "./media/characters/dragonien/back.svg",
  18541. extra: 776 / 746,
  18542. bottom: 6.4 / 782.0616
  18543. }
  18544. },
  18545. foot: {
  18546. height: math.unit(1.54, "feet"),
  18547. name: "Foot",
  18548. image: {
  18549. source: "./media/characters/dragonien/foot.svg",
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(8 + 4 / 12, "feet"),
  18557. default: true
  18558. },
  18559. {
  18560. name: "Macro",
  18561. height: math.unit(200, "feet")
  18562. },
  18563. {
  18564. name: "Megamacro",
  18565. height: math.unit(1, "mile")
  18566. },
  18567. {
  18568. name: "Gigamacro",
  18569. height: math.unit(1000, "miles")
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(5 + 2 / 12, "feet"),
  18578. weight: math.unit(110, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/desta/front.svg",
  18582. extra: 767 / 726,
  18583. bottom: 11.7 / 779
  18584. }
  18585. },
  18586. back: {
  18587. height: math.unit(5 + 2 / 12, "feet"),
  18588. weight: math.unit(110, "lb"),
  18589. name: "Back",
  18590. image: {
  18591. source: "./media/characters/desta/back.svg",
  18592. extra: 777 / 728,
  18593. bottom: 6 / 784
  18594. }
  18595. },
  18596. frontAlt: {
  18597. height: math.unit(5 + 2 / 12, "feet"),
  18598. weight: math.unit(110, "lb"),
  18599. name: "Front",
  18600. image: {
  18601. source: "./media/characters/desta/front-alt.svg",
  18602. extra: 1482 / 1417
  18603. }
  18604. },
  18605. side: {
  18606. height: math.unit(5 + 2 / 12, "feet"),
  18607. weight: math.unit(110, "lb"),
  18608. name: "Side",
  18609. image: {
  18610. source: "./media/characters/desta/side.svg",
  18611. extra: 2579 / 2491,
  18612. bottom: 0.053
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Micro",
  18619. height: math.unit(6, "inches")
  18620. },
  18621. {
  18622. name: "Normal",
  18623. height: math.unit(5 + 2 / 12, "feet"),
  18624. default: true
  18625. },
  18626. {
  18627. name: "Macro",
  18628. height: math.unit(62, "feet")
  18629. },
  18630. {
  18631. name: "Megamacro",
  18632. height: math.unit(1800, "feet")
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18638. {
  18639. front: {
  18640. height: math.unit(10, "feet"),
  18641. weight: math.unit(700, "lb"),
  18642. name: "Front",
  18643. image: {
  18644. source: "./media/characters/storm-alystar/front.svg",
  18645. extra: 2112 / 1898,
  18646. bottom: 0.034
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Micro",
  18653. height: math.unit(3.5, "inches")
  18654. },
  18655. {
  18656. name: "Normal",
  18657. height: math.unit(10, "feet"),
  18658. default: true
  18659. },
  18660. {
  18661. name: "Macro",
  18662. height: math.unit(400, "feet")
  18663. },
  18664. {
  18665. name: "Deific",
  18666. height: math.unit(60, "miles")
  18667. },
  18668. ]
  18669. ))
  18670. characterMakers.push(() => makeCharacter(
  18671. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18672. {
  18673. front: {
  18674. height: math.unit(2.35, "meters"),
  18675. weight: math.unit(119, "kg"),
  18676. name: "Front",
  18677. image: {
  18678. source: "./media/characters/ilia/front.svg",
  18679. extra: 1285 / 1255,
  18680. bottom: 0.06
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(2.35, "meters")
  18688. },
  18689. {
  18690. name: "Macro",
  18691. height: math.unit(140, "meters"),
  18692. default: true
  18693. },
  18694. {
  18695. name: "Megamacro",
  18696. height: math.unit(100, "miles")
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18702. {
  18703. front: {
  18704. height: math.unit(6 + 5 / 12, "feet"),
  18705. weight: math.unit(190, "lb"),
  18706. name: "Front",
  18707. image: {
  18708. source: "./media/characters/kingdead/front.svg",
  18709. extra: 1228 / 1177
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Micro",
  18716. height: math.unit(7, "inches")
  18717. },
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(6 + 5 / 12, "feet")
  18721. },
  18722. {
  18723. name: "Macro",
  18724. height: math.unit(150, "feet"),
  18725. default: true
  18726. },
  18727. {
  18728. name: "Megamacro",
  18729. height: math.unit(200, "miles")
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(8, "feet"),
  18738. weight: math.unit(600, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/kyrehx/front.svg",
  18742. extra: 1195 / 1095,
  18743. bottom: 0.034
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Micro",
  18750. height: math.unit(2, "inches")
  18751. },
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(8, "feet"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Macro",
  18759. height: math.unit(255, "feet")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18768. weight: math.unit(184, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/xang/front.svg",
  18772. extra: 845 / 755
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "Macro",
  18784. height: math.unit(0.935 * 146, "feet")
  18785. },
  18786. {
  18787. name: "Megamacro",
  18788. height: math.unit(0.935 * 3, "miles")
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18794. {
  18795. frontDressed: {
  18796. height: math.unit(5 + 7 / 12, "feet"),
  18797. weight: math.unit(140, "lb"),
  18798. name: "Front (Dressed)",
  18799. image: {
  18800. source: "./media/characters/doc-weardno/front-dressed.svg",
  18801. extra: 263 / 234
  18802. }
  18803. },
  18804. backDressed: {
  18805. height: math.unit(5 + 7 / 12, "feet"),
  18806. weight: math.unit(140, "lb"),
  18807. name: "Back (Dressed)",
  18808. image: {
  18809. source: "./media/characters/doc-weardno/back-dressed.svg",
  18810. extra: 266 / 238
  18811. }
  18812. },
  18813. front: {
  18814. height: math.unit(5 + 7 / 12, "feet"),
  18815. weight: math.unit(140, "lb"),
  18816. name: "Front",
  18817. image: {
  18818. source: "./media/characters/doc-weardno/front.svg",
  18819. extra: 254 / 233
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Micro",
  18826. height: math.unit(3, "inches")
  18827. },
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(5 + 7 / 12, "feet"),
  18831. default: true
  18832. },
  18833. {
  18834. name: "Macro",
  18835. height: math.unit(25, "feet")
  18836. },
  18837. {
  18838. name: "Megamacro",
  18839. height: math.unit(2, "miles")
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18845. {
  18846. front: {
  18847. height: math.unit(6 + 2 / 12, "feet"),
  18848. weight: math.unit(153, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/seth-whilst/front.svg",
  18852. bottom: 0.07
  18853. }
  18854. },
  18855. },
  18856. [
  18857. {
  18858. name: "Micro",
  18859. height: math.unit(5, "inches")
  18860. },
  18861. {
  18862. name: "Normal",
  18863. height: math.unit(6 + 2 / 12, "feet"),
  18864. default: true
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18870. {
  18871. front: {
  18872. height: math.unit(3, "inches"),
  18873. weight: math.unit(8, "grams"),
  18874. name: "Front",
  18875. image: {
  18876. source: "./media/characters/pocket-jabari/front.svg",
  18877. extra: 1024 / 974,
  18878. bottom: 0.039
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Minimicro",
  18885. height: math.unit(8, "mm")
  18886. },
  18887. {
  18888. name: "Micro",
  18889. height: math.unit(3, "inches"),
  18890. default: true
  18891. },
  18892. {
  18893. name: "Normal",
  18894. height: math.unit(3, "feet")
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(15, "feet"),
  18903. weight: math.unit(3280, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/sapphy/front.svg",
  18907. extra: 671 / 577,
  18908. bottom: 0.085
  18909. }
  18910. },
  18911. back: {
  18912. height: math.unit(15, "feet"),
  18913. weight: math.unit(3280, "lb"),
  18914. name: "Back",
  18915. image: {
  18916. source: "./media/characters/sapphy/back.svg",
  18917. extra: 631 / 607,
  18918. bottom: 0.045
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(15, "feet")
  18926. },
  18927. {
  18928. name: "Casual Macro",
  18929. height: math.unit(120, "feet")
  18930. },
  18931. {
  18932. name: "Macro",
  18933. height: math.unit(2150, "feet"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Megamacro",
  18938. height: math.unit(8, "miles")
  18939. },
  18940. {
  18941. name: "Galaxy Mom",
  18942. height: math.unit(6, "megalightyears")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(6, "feet"),
  18951. weight: math.unit(170, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/kiro/front.svg",
  18955. extra: 1064 / 1012,
  18956. bottom: 0.052
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Micro",
  18963. height: math.unit(6, "inches")
  18964. },
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(6, "feet"),
  18968. default: true
  18969. },
  18970. {
  18971. name: "Macro",
  18972. height: math.unit(72, "feet")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(5 + 9 / 12, "feet"),
  18981. weight: math.unit(175, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/irishfox/front.svg",
  18985. extra: 1912 / 1680,
  18986. bottom: 0.02
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Nano",
  18993. height: math.unit(1, "mm")
  18994. },
  18995. {
  18996. name: "Micro",
  18997. height: math.unit(2, "inches")
  18998. },
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(5 + 9 / 12, "feet"),
  19002. default: true
  19003. },
  19004. {
  19005. name: "Macro",
  19006. height: math.unit(45, "feet")
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(6 + 1 / 12, "feet"),
  19015. weight: math.unit(75, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/aronai-sieyes/front.svg",
  19019. extra: 1532/1450,
  19020. bottom: 42/1574
  19021. }
  19022. },
  19023. side: {
  19024. height: math.unit(6 + 1 / 12, "feet"),
  19025. weight: math.unit(75, "lb"),
  19026. name: "Side",
  19027. image: {
  19028. source: "./media/characters/aronai-sieyes/side.svg",
  19029. extra: 1422/1365,
  19030. bottom: 148/1570
  19031. }
  19032. },
  19033. back: {
  19034. height: math.unit(6 + 1 / 12, "feet"),
  19035. weight: math.unit(75, "lb"),
  19036. name: "Back",
  19037. image: {
  19038. source: "./media/characters/aronai-sieyes/back.svg",
  19039. extra: 1526/1464,
  19040. bottom: 51/1577
  19041. }
  19042. },
  19043. dressed: {
  19044. height: math.unit(6 + 1 / 12, "feet"),
  19045. weight: math.unit(75, "lb"),
  19046. name: "Dressed",
  19047. image: {
  19048. source: "./media/characters/aronai-sieyes/dressed.svg",
  19049. extra: 1559/1483,
  19050. bottom: 39/1598
  19051. }
  19052. },
  19053. slit: {
  19054. height: math.unit(1.3, "feet"),
  19055. name: "Slit",
  19056. image: {
  19057. source: "./media/characters/aronai-sieyes/slit.svg"
  19058. }
  19059. },
  19060. slitSpread: {
  19061. height: math.unit(0.9, "feet"),
  19062. name: "Slit (Spread)",
  19063. image: {
  19064. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19065. }
  19066. },
  19067. rump: {
  19068. height: math.unit(1.3, "feet"),
  19069. name: "Rump",
  19070. image: {
  19071. source: "./media/characters/aronai-sieyes/rump.svg"
  19072. }
  19073. },
  19074. maw: {
  19075. height: math.unit(1.25, "feet"),
  19076. name: "Maw",
  19077. image: {
  19078. source: "./media/characters/aronai-sieyes/maw.svg"
  19079. }
  19080. },
  19081. feral: {
  19082. height: math.unit(18, "feet"),
  19083. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19084. name: "Feral",
  19085. image: {
  19086. source: "./media/characters/aronai-sieyes/feral.svg",
  19087. extra: 1530 / 1240,
  19088. bottom: 0.035
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Micro",
  19095. height: math.unit(2, "inches")
  19096. },
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(6 + 1 / 12, "feet"),
  19100. default: true
  19101. }
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(12, "feet"),
  19109. weight: math.unit(410, "kg"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/xuna/front.svg",
  19113. extra: 2184 / 1980
  19114. }
  19115. },
  19116. side: {
  19117. height: math.unit(12, "feet"),
  19118. weight: math.unit(410, "kg"),
  19119. name: "Side",
  19120. image: {
  19121. source: "./media/characters/xuna/side.svg",
  19122. extra: 2184 / 1980
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(12, "feet"),
  19127. weight: math.unit(410, "kg"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/xuna/back.svg",
  19131. extra: 2184 / 1980
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Nano glow",
  19138. height: math.unit(10, "nm")
  19139. },
  19140. {
  19141. name: "Micro floof",
  19142. height: math.unit(0.3, "m")
  19143. },
  19144. {
  19145. name: "Huggable softy boi",
  19146. height: math.unit(3.6576, "m"),
  19147. default: true
  19148. },
  19149. {
  19150. name: "Admirable floof",
  19151. height: math.unit(80, "meters")
  19152. },
  19153. {
  19154. name: "Gentle macro",
  19155. height: math.unit(300, "meters")
  19156. },
  19157. {
  19158. name: "Very careful floof",
  19159. height: math.unit(3200, "meters")
  19160. },
  19161. {
  19162. name: "The mega floof",
  19163. height: math.unit(36000, "meters")
  19164. },
  19165. {
  19166. name: "Giga-fur-Wicker",
  19167. height: math.unit(4800000, "meters")
  19168. },
  19169. {
  19170. name: "Licky world",
  19171. height: math.unit(20000000, "meters")
  19172. },
  19173. {
  19174. name: "Floofy cyan sun",
  19175. height: math.unit(1500000000, "meters")
  19176. },
  19177. {
  19178. name: "Milky Wicker",
  19179. height: math.unit(1000000000000000000000, "meters")
  19180. },
  19181. {
  19182. name: "The observing Wicker",
  19183. height: math.unit(999999999999999999999999999, "meters")
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19189. {
  19190. front: {
  19191. height: math.unit(5 + 9 / 12, "feet"),
  19192. weight: math.unit(150, "lb"),
  19193. name: "Front",
  19194. image: {
  19195. source: "./media/characters/arokha-sieyes/front.svg",
  19196. extra: 1425 / 1284,
  19197. bottom: 0.05
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(5 + 9 / 12, "feet")
  19205. },
  19206. {
  19207. name: "Macro",
  19208. height: math.unit(30, "meters"),
  19209. default: true
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19215. {
  19216. front: {
  19217. height: math.unit(6, "feet"),
  19218. weight: math.unit(180, "lb"),
  19219. name: "Front",
  19220. image: {
  19221. source: "./media/characters/arokh-sieyes/front.svg",
  19222. extra: 1830 / 1769,
  19223. bottom: 0.01
  19224. }
  19225. },
  19226. },
  19227. [
  19228. {
  19229. name: "Normal",
  19230. height: math.unit(6, "feet")
  19231. },
  19232. {
  19233. name: "Macro",
  19234. height: math.unit(30, "meters"),
  19235. default: true
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19241. {
  19242. side: {
  19243. height: math.unit(13 + 1 / 12, "feet"),
  19244. weight: math.unit(8.5, "tonnes"),
  19245. name: "Side",
  19246. image: {
  19247. source: "./media/characters/goldeneye/side.svg",
  19248. extra: 1182 / 778,
  19249. bottom: 0.067
  19250. }
  19251. },
  19252. paw: {
  19253. height: math.unit(3.4, "feet"),
  19254. name: "Paw",
  19255. image: {
  19256. source: "./media/characters/goldeneye/paw.svg"
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Normal",
  19263. height: math.unit(13 + 1 / 12, "feet"),
  19264. default: true
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19270. {
  19271. front: {
  19272. height: math.unit(6 + 1 / 12, "feet"),
  19273. weight: math.unit(210, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/leonardo-lycheborne/front.svg",
  19277. extra: 776/723,
  19278. bottom: 34/810
  19279. }
  19280. },
  19281. side: {
  19282. height: math.unit(6 + 1 / 12, "feet"),
  19283. weight: math.unit(210, "lb"),
  19284. name: "Side",
  19285. image: {
  19286. source: "./media/characters/leonardo-lycheborne/side.svg",
  19287. extra: 780/728,
  19288. bottom: 12/792
  19289. }
  19290. },
  19291. back: {
  19292. height: math.unit(6 + 1 / 12, "feet"),
  19293. weight: math.unit(210, "lb"),
  19294. name: "Back",
  19295. image: {
  19296. source: "./media/characters/leonardo-lycheborne/back.svg",
  19297. extra: 775/721,
  19298. bottom: 17/792
  19299. }
  19300. },
  19301. hand: {
  19302. height: math.unit(1.08, "feet"),
  19303. name: "Hand",
  19304. image: {
  19305. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19306. }
  19307. },
  19308. foot: {
  19309. height: math.unit(1.32, "feet"),
  19310. name: "Foot",
  19311. image: {
  19312. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19313. }
  19314. },
  19315. maw: {
  19316. height: math.unit(1, "feet"),
  19317. name: "Maw",
  19318. image: {
  19319. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19320. }
  19321. },
  19322. were: {
  19323. height: math.unit(20, "feet"),
  19324. weight: math.unit(7800, "lb"),
  19325. name: "Were",
  19326. image: {
  19327. source: "./media/characters/leonardo-lycheborne/were.svg",
  19328. extra: 1224/1165,
  19329. bottom: 72/1296
  19330. }
  19331. },
  19332. feral: {
  19333. height: math.unit(7.5, "feet"),
  19334. weight: math.unit(600, "lb"),
  19335. name: "Feral",
  19336. image: {
  19337. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19338. extra: 797/702,
  19339. bottom: 139/936
  19340. }
  19341. },
  19342. taur: {
  19343. height: math.unit(11, "feet"),
  19344. weight: math.unit(3300, "lb"),
  19345. name: "Taur",
  19346. image: {
  19347. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19348. extra: 1271/1197,
  19349. bottom: 47/1318
  19350. }
  19351. },
  19352. barghest: {
  19353. height: math.unit(11, "feet"),
  19354. weight: math.unit(1300, "lb"),
  19355. name: "Barghest",
  19356. image: {
  19357. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19358. extra: 1291/1204,
  19359. bottom: 37/1328
  19360. }
  19361. },
  19362. dick: {
  19363. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19364. name: "Dick",
  19365. image: {
  19366. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19367. }
  19368. },
  19369. dickWere: {
  19370. height: math.unit((20) / 3.8, "feet"),
  19371. name: "Dick (Were)",
  19372. image: {
  19373. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19374. }
  19375. },
  19376. },
  19377. [
  19378. {
  19379. name: "Normal",
  19380. height: math.unit(6 + 1 / 12, "feet"),
  19381. default: true
  19382. },
  19383. ]
  19384. ))
  19385. characterMakers.push(() => makeCharacter(
  19386. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19387. {
  19388. front: {
  19389. height: math.unit(10, "feet"),
  19390. weight: math.unit(350, "lb"),
  19391. name: "Front",
  19392. image: {
  19393. source: "./media/characters/jet/front.svg",
  19394. extra: 2050 / 1980,
  19395. bottom: 0.013
  19396. }
  19397. },
  19398. back: {
  19399. height: math.unit(10, "feet"),
  19400. weight: math.unit(350, "lb"),
  19401. name: "Back",
  19402. image: {
  19403. source: "./media/characters/jet/back.svg",
  19404. extra: 2050 / 1980,
  19405. bottom: 0.013
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Micro",
  19412. height: math.unit(6, "inches")
  19413. },
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(10, "feet"),
  19417. default: true
  19418. },
  19419. {
  19420. name: "Macro",
  19421. height: math.unit(100, "feet")
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19427. {
  19428. front: {
  19429. height: math.unit(15, "feet"),
  19430. weight: math.unit(2800, "lb"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/tanarath/front.svg",
  19434. extra: 2392 / 2220,
  19435. bottom: 0.03
  19436. }
  19437. },
  19438. back: {
  19439. height: math.unit(15, "feet"),
  19440. weight: math.unit(2800, "lb"),
  19441. name: "Back",
  19442. image: {
  19443. source: "./media/characters/tanarath/back.svg",
  19444. extra: 2392 / 2220,
  19445. bottom: 0.03
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(15, "feet"),
  19453. default: true
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(7 + 1 / 12, "feet"),
  19462. weight: math.unit(175, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/patty-cattybatty/front.svg",
  19466. extra: 908 / 874,
  19467. bottom: 0.025
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Micro",
  19474. height: math.unit(1, "inch")
  19475. },
  19476. {
  19477. name: "Normal",
  19478. height: math.unit(7 + 1 / 12, "feet")
  19479. },
  19480. {
  19481. name: "Mini Macro",
  19482. height: math.unit(155, "feet")
  19483. },
  19484. {
  19485. name: "Macro",
  19486. height: math.unit(1077, "feet")
  19487. },
  19488. {
  19489. name: "Mega Macro",
  19490. height: math.unit(47650, "feet"),
  19491. default: true
  19492. },
  19493. {
  19494. name: "Giga Macro",
  19495. height: math.unit(440, "miles")
  19496. },
  19497. {
  19498. name: "Tera Macro",
  19499. height: math.unit(8700, "miles")
  19500. },
  19501. {
  19502. name: "Planetary Macro",
  19503. height: math.unit(32700, "miles")
  19504. },
  19505. {
  19506. name: "Solar Macro",
  19507. height: math.unit(550000, "miles")
  19508. },
  19509. {
  19510. name: "Celestial Macro",
  19511. height: math.unit(2.5, "AU")
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19517. {
  19518. front: {
  19519. height: math.unit(4 + 5 / 12, "feet"),
  19520. weight: math.unit(90, "lb"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/cappu/front.svg",
  19524. extra: 1247 / 1152,
  19525. bottom: 0.012
  19526. }
  19527. },
  19528. },
  19529. [
  19530. {
  19531. name: "Normal",
  19532. height: math.unit(4 + 5 / 12, "feet"),
  19533. default: true
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19539. {
  19540. frontDressed: {
  19541. height: math.unit(70, "cm"),
  19542. weight: math.unit(6, "kg"),
  19543. name: "Front (Dressed)",
  19544. image: {
  19545. source: "./media/characters/sebi/front-dressed.svg",
  19546. extra: 713.5 / 686.5,
  19547. bottom: 0.003
  19548. }
  19549. },
  19550. front: {
  19551. height: math.unit(70, "cm"),
  19552. weight: math.unit(5, "kg"),
  19553. name: "Front",
  19554. image: {
  19555. source: "./media/characters/sebi/front.svg",
  19556. extra: 713.5 / 686.5,
  19557. bottom: 0.003
  19558. }
  19559. }
  19560. },
  19561. [
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(70, "cm"),
  19565. default: true
  19566. },
  19567. {
  19568. name: "Macro",
  19569. height: math.unit(8, "meters")
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19575. {
  19576. front: {
  19577. height: math.unit(6, "feet"),
  19578. weight: math.unit(150, "lb"),
  19579. name: "Front",
  19580. image: {
  19581. source: "./media/characters/typhek/front.svg",
  19582. extra: 1948 / 1929,
  19583. bottom: 0.025
  19584. }
  19585. },
  19586. side: {
  19587. height: math.unit(6, "feet"),
  19588. weight: math.unit(150, "lb"),
  19589. name: "Side",
  19590. image: {
  19591. source: "./media/characters/typhek/side.svg",
  19592. extra: 2034 / 2010,
  19593. bottom: 0.003
  19594. }
  19595. },
  19596. back: {
  19597. height: math.unit(6, "feet"),
  19598. weight: math.unit(150, "lb"),
  19599. name: "Back",
  19600. image: {
  19601. source: "./media/characters/typhek/back.svg",
  19602. extra: 2005 / 1978,
  19603. bottom: 0.004
  19604. }
  19605. },
  19606. palm: {
  19607. height: math.unit(1.2, "feet"),
  19608. name: "Palm",
  19609. image: {
  19610. source: "./media/characters/typhek/palm.svg"
  19611. }
  19612. },
  19613. fist: {
  19614. height: math.unit(1.1, "feet"),
  19615. name: "Fist",
  19616. image: {
  19617. source: "./media/characters/typhek/fist.svg"
  19618. }
  19619. },
  19620. foot: {
  19621. height: math.unit(1.57, "feet"),
  19622. name: "Foot",
  19623. image: {
  19624. source: "./media/characters/typhek/foot.svg"
  19625. }
  19626. },
  19627. sole: {
  19628. height: math.unit(2.05, "feet"),
  19629. name: "Sole",
  19630. image: {
  19631. source: "./media/characters/typhek/sole.svg"
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Macro",
  19638. height: math.unit(40, "stories"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Megamacro",
  19643. height: math.unit(1, "mile")
  19644. },
  19645. {
  19646. name: "Gigamacro",
  19647. height: math.unit(4000, "solarradii")
  19648. },
  19649. {
  19650. name: "Universal",
  19651. height: math.unit(1.1, "universes")
  19652. }
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19657. {
  19658. side: {
  19659. height: math.unit(5 + 7 / 12, "feet"),
  19660. weight: math.unit(150, "lb"),
  19661. name: "Side",
  19662. image: {
  19663. source: "./media/characters/kassy/side.svg",
  19664. extra: 1280 / 1225,
  19665. bottom: 0.002
  19666. }
  19667. },
  19668. front: {
  19669. height: math.unit(5 + 7 / 12, "feet"),
  19670. weight: math.unit(150, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/kassy/front.svg",
  19674. extra: 1280 / 1225,
  19675. bottom: 0.025
  19676. }
  19677. },
  19678. back: {
  19679. height: math.unit(5 + 7 / 12, "feet"),
  19680. weight: math.unit(150, "lb"),
  19681. name: "Back",
  19682. image: {
  19683. source: "./media/characters/kassy/back.svg",
  19684. extra: 1280 / 1225,
  19685. bottom: 0.002
  19686. }
  19687. },
  19688. foot: {
  19689. height: math.unit(1.266, "feet"),
  19690. name: "Foot",
  19691. image: {
  19692. source: "./media/characters/kassy/foot.svg"
  19693. }
  19694. },
  19695. },
  19696. [
  19697. {
  19698. name: "Normal",
  19699. height: math.unit(5 + 7 / 12, "feet")
  19700. },
  19701. {
  19702. name: "Macro",
  19703. height: math.unit(137, "feet"),
  19704. default: true
  19705. },
  19706. {
  19707. name: "Megamacro",
  19708. height: math.unit(1, "mile")
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19714. {
  19715. front: {
  19716. height: math.unit(6 + 1 / 12, "feet"),
  19717. weight: math.unit(200, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/neil/front.svg",
  19721. extra: 1326 / 1250,
  19722. bottom: 0.023
  19723. }
  19724. },
  19725. },
  19726. [
  19727. {
  19728. name: "Normal",
  19729. height: math.unit(6 + 1 / 12, "feet"),
  19730. default: true
  19731. },
  19732. {
  19733. name: "Macro",
  19734. height: math.unit(200, "feet")
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19740. {
  19741. front: {
  19742. height: math.unit(5 + 9 / 12, "feet"),
  19743. weight: math.unit(190, "lb"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/atticus/front.svg",
  19747. extra: 2934 / 2785,
  19748. bottom: 0.025
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(5 + 9 / 12, "feet"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(180, "feet")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19766. {
  19767. side: {
  19768. height: math.unit(9, "feet"),
  19769. weight: math.unit(650, "lb"),
  19770. name: "Side",
  19771. image: {
  19772. source: "./media/characters/milo/side.svg",
  19773. extra: 2644 / 2310,
  19774. bottom: 0.032
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(9, "feet"),
  19782. default: true
  19783. },
  19784. {
  19785. name: "Macro",
  19786. height: math.unit(300, "feet")
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19792. {
  19793. side: {
  19794. height: math.unit(8, "meters"),
  19795. weight: math.unit(90000, "kg"),
  19796. name: "Side",
  19797. image: {
  19798. source: "./media/characters/ijzer/side.svg",
  19799. extra: 2756 / 1600,
  19800. bottom: 0.01
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Small",
  19807. height: math.unit(3, "meters")
  19808. },
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(8, "meters"),
  19812. default: true
  19813. },
  19814. {
  19815. name: "Normal+",
  19816. height: math.unit(10, "meters")
  19817. },
  19818. {
  19819. name: "Bigger",
  19820. height: math.unit(24, "meters")
  19821. },
  19822. {
  19823. name: "Huge",
  19824. height: math.unit(80, "meters")
  19825. },
  19826. ]
  19827. ))
  19828. characterMakers.push(() => makeCharacter(
  19829. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19830. {
  19831. front: {
  19832. height: math.unit(6 + 2 / 12, "feet"),
  19833. weight: math.unit(153, "lb"),
  19834. name: "Front",
  19835. image: {
  19836. source: "./media/characters/luca-cervicum/front.svg",
  19837. extra: 370 / 327,
  19838. bottom: 0.015
  19839. }
  19840. },
  19841. back: {
  19842. height: math.unit(6 + 2 / 12, "feet"),
  19843. weight: math.unit(153, "lb"),
  19844. name: "Back",
  19845. image: {
  19846. source: "./media/characters/luca-cervicum/back.svg",
  19847. extra: 367 / 333,
  19848. bottom: 0.005
  19849. }
  19850. },
  19851. frontGear: {
  19852. height: math.unit(6 + 2 / 12, "feet"),
  19853. weight: math.unit(173, "lb"),
  19854. name: "Front (Gear)",
  19855. image: {
  19856. source: "./media/characters/luca-cervicum/front-gear.svg",
  19857. extra: 377 / 333,
  19858. bottom: 0.006
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(6 + 2 / 12, "feet"),
  19866. default: true
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19872. {
  19873. front: {
  19874. height: math.unit(6 + 1 / 12, "feet"),
  19875. weight: math.unit(304, "lb"),
  19876. name: "Front",
  19877. image: {
  19878. source: "./media/characters/oliver/front.svg",
  19879. extra: 157 / 143,
  19880. bottom: 0.08
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Normal",
  19887. height: math.unit(6 + 1 / 12, "feet"),
  19888. default: true
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19894. {
  19895. front: {
  19896. height: math.unit(5 + 7 / 12, "feet"),
  19897. weight: math.unit(140, "lb"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/shane/front.svg",
  19901. extra: 304 / 289,
  19902. bottom: 0.005
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(5 + 7 / 12, "feet"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19916. {
  19917. front: {
  19918. height: math.unit(5 + 9 / 12, "feet"),
  19919. weight: math.unit(178, "lb"),
  19920. name: "Front",
  19921. image: {
  19922. source: "./media/characters/shin/front.svg",
  19923. extra: 159 / 151,
  19924. bottom: 0.015
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(5 + 9 / 12, "feet"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19938. {
  19939. front: {
  19940. height: math.unit(5 + 10 / 12, "feet"),
  19941. weight: math.unit(168, "lb"),
  19942. name: "Front",
  19943. image: {
  19944. source: "./media/characters/xerxes/front.svg",
  19945. extra: 282 / 260,
  19946. bottom: 0.045
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(5 + 10 / 12, "feet"),
  19954. default: true
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(6 + 7 / 12, "feet"),
  19963. weight: math.unit(208, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/chaska/front.svg",
  19967. extra: 332 / 319,
  19968. bottom: 0.015
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(6 + 7 / 12, "feet"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(5 + 8 / 12, "feet"),
  19985. weight: math.unit(208, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/enuk/front.svg",
  19989. extra: 437 / 406,
  19990. bottom: 0.02
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(5 + 8 / 12, "feet"),
  19998. default: true
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(5 + 10 / 12, "feet"),
  20007. weight: math.unit(252, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/bruun/front.svg",
  20011. extra: 197 / 187,
  20012. bottom: 0.012
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(5 + 10 / 12, "feet"),
  20020. default: true
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(6 + 10 / 12, "feet"),
  20029. weight: math.unit(255, "lb"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/alexeev/front.svg",
  20033. extra: 213 / 200,
  20034. bottom: 0.05
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(6 + 10 / 12, "feet"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(2 + 8 / 12, "feet"),
  20051. weight: math.unit(22, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/evelyn/front.svg",
  20055. extra: 208 / 180
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(2 + 8 / 12, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(5 + 9 / 12, "feet"),
  20072. weight: math.unit(139, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/inca/front.svg",
  20076. extra: 294 / 291,
  20077. bottom: 0.03
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(5 + 9 / 12, "feet"),
  20085. default: true
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20091. {
  20092. front: {
  20093. height: math.unit(6 + 3 / 12, "feet"),
  20094. weight: math.unit(185, "lb"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/mera/front.svg",
  20098. extra: 291 / 277,
  20099. bottom: 0.03
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(6 + 3 / 12, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(6 + 7 / 12, "feet"),
  20116. weight: math.unit(160, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/ceres/front.svg",
  20120. extra: 1023 / 950,
  20121. bottom: 0.027
  20122. }
  20123. },
  20124. back: {
  20125. height: math.unit(6 + 7 / 12, "feet"),
  20126. weight: math.unit(160, "lb"),
  20127. name: "Back",
  20128. image: {
  20129. source: "./media/characters/ceres/back.svg",
  20130. extra: 1023 / 950
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(6 + 7 / 12, "feet"),
  20138. default: true
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(5 + 10 / 12, "feet"),
  20147. weight: math.unit(150, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/kris/front.svg",
  20151. extra: 885 / 803,
  20152. bottom: 0.03
  20153. }
  20154. },
  20155. },
  20156. [
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(5 + 10 / 12, "feet"),
  20160. default: true
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(7, "feet"),
  20169. weight: math.unit(120, "kg"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/taluthus/front.svg",
  20173. extra: 903 / 833,
  20174. bottom: 0.015
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(7, "feet"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Macro",
  20186. height: math.unit(300, "feet")
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20192. {
  20193. front: {
  20194. height: math.unit(5 + 9 / 12, "feet"),
  20195. weight: math.unit(145, "lb"),
  20196. name: "Front",
  20197. image: {
  20198. source: "./media/characters/dawn/front.svg",
  20199. extra: 2094 / 2016,
  20200. bottom: 0.025
  20201. }
  20202. },
  20203. back: {
  20204. height: math.unit(5 + 9 / 12, "feet"),
  20205. weight: math.unit(160, "lb"),
  20206. name: "Back",
  20207. image: {
  20208. source: "./media/characters/dawn/back.svg",
  20209. extra: 2112 / 2080,
  20210. bottom: 0.005
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(6 + 7 / 12, "feet"),
  20218. default: true
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20224. {
  20225. anthro: {
  20226. height: math.unit(8 + 3 / 12, "feet"),
  20227. weight: math.unit(450, "lb"),
  20228. name: "Anthro",
  20229. image: {
  20230. source: "./media/characters/arador/anthro.svg",
  20231. extra: 1835 / 1718,
  20232. bottom: 0.025
  20233. }
  20234. },
  20235. feral: {
  20236. height: math.unit(4, "feet"),
  20237. weight: math.unit(200, "lb"),
  20238. name: "Feral",
  20239. image: {
  20240. source: "./media/characters/arador/feral.svg",
  20241. extra: 1683 / 1514,
  20242. bottom: 0.07
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(8 + 3 / 12, "feet")
  20250. },
  20251. {
  20252. name: "Macro",
  20253. height: math.unit(82.5, "feet"),
  20254. default: true
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20260. {
  20261. front: {
  20262. height: math.unit(5 + 10 / 12, "feet"),
  20263. weight: math.unit(125, "lb"),
  20264. name: "Front",
  20265. image: {
  20266. source: "./media/characters/dharsi/front.svg",
  20267. extra: 716 / 630,
  20268. bottom: 0.035
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Nano",
  20275. height: math.unit(100, "nm")
  20276. },
  20277. {
  20278. name: "Micro",
  20279. height: math.unit(2, "inches")
  20280. },
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(5 + 10 / 12, "feet"),
  20284. default: true
  20285. },
  20286. {
  20287. name: "Macro",
  20288. height: math.unit(1000, "feet")
  20289. },
  20290. {
  20291. name: "Megamacro",
  20292. height: math.unit(10, "miles")
  20293. },
  20294. {
  20295. name: "Gigamacro",
  20296. height: math.unit(3000, "miles")
  20297. },
  20298. {
  20299. name: "Teramacro",
  20300. height: math.unit(500000, "miles")
  20301. },
  20302. {
  20303. name: "Teramacro+",
  20304. height: math.unit(30, "galaxies")
  20305. },
  20306. ]
  20307. ))
  20308. characterMakers.push(() => makeCharacter(
  20309. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20310. {
  20311. front: {
  20312. height: math.unit(6, "feet"),
  20313. weight: math.unit(150, "lb"),
  20314. name: "Front",
  20315. image: {
  20316. source: "./media/characters/deathy/front.svg",
  20317. extra: 1552 / 1463,
  20318. bottom: 0.025
  20319. }
  20320. },
  20321. side: {
  20322. height: math.unit(6, "feet"),
  20323. weight: math.unit(150, "lb"),
  20324. name: "Side",
  20325. image: {
  20326. source: "./media/characters/deathy/side.svg",
  20327. extra: 1604 / 1455,
  20328. bottom: 0.025
  20329. }
  20330. },
  20331. back: {
  20332. height: math.unit(6, "feet"),
  20333. weight: math.unit(150, "lb"),
  20334. name: "Back",
  20335. image: {
  20336. source: "./media/characters/deathy/back.svg",
  20337. extra: 1580 / 1463,
  20338. bottom: 0.005
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Micro",
  20345. height: math.unit(5, "millimeters")
  20346. },
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(6 + 5 / 12, "feet"),
  20350. default: true
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20356. {
  20357. front: {
  20358. height: math.unit(16, "feet"),
  20359. weight: math.unit(4000, "lb"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/juniper/front.svg",
  20363. bottom: 0.04
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(16, "feet"),
  20371. default: true
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20377. {
  20378. front: {
  20379. height: math.unit(6, "feet"),
  20380. weight: math.unit(150, "lb"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/hipster/front.svg",
  20384. extra: 1312 / 1209,
  20385. bottom: 0.025
  20386. }
  20387. },
  20388. back: {
  20389. height: math.unit(6, "feet"),
  20390. weight: math.unit(150, "lb"),
  20391. name: "Back",
  20392. image: {
  20393. source: "./media/characters/hipster/back.svg",
  20394. extra: 1281 / 1196,
  20395. bottom: 0.01
  20396. }
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Micro",
  20402. height: math.unit(1, "mm")
  20403. },
  20404. {
  20405. name: "Normal",
  20406. height: math.unit(4, "inches"),
  20407. default: true
  20408. },
  20409. {
  20410. name: "Macro",
  20411. height: math.unit(500, "feet")
  20412. },
  20413. {
  20414. name: "Megamacro",
  20415. height: math.unit(1000, "miles")
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20421. {
  20422. front: {
  20423. height: math.unit(6, "feet"),
  20424. weight: math.unit(150, "lb"),
  20425. name: "Front",
  20426. image: {
  20427. source: "./media/characters/tendirmuldr/front.svg",
  20428. extra: 1878 / 1772,
  20429. bottom: 0.015
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "Megamacro",
  20436. height: math.unit(1500, "miles"),
  20437. default: true
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20443. {
  20444. front: {
  20445. height: math.unit(14, "feet"),
  20446. weight: math.unit(12000, "lb"),
  20447. name: "Front",
  20448. image: {
  20449. source: "./media/characters/mort/front.svg",
  20450. extra: 365 / 318,
  20451. bottom: 0.01
  20452. }
  20453. },
  20454. side: {
  20455. height: math.unit(14, "feet"),
  20456. weight: math.unit(12000, "lb"),
  20457. name: "Side",
  20458. image: {
  20459. source: "./media/characters/mort/side.svg",
  20460. extra: 365 / 318,
  20461. bottom: 0.052
  20462. },
  20463. default: true
  20464. },
  20465. back: {
  20466. height: math.unit(14, "feet"),
  20467. weight: math.unit(12000, "lb"),
  20468. name: "Back",
  20469. image: {
  20470. source: "./media/characters/mort/back.svg",
  20471. extra: 371 / 332,
  20472. bottom: 0.18
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(14, "feet"),
  20480. default: true
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20486. {
  20487. front: {
  20488. height: math.unit(8, "feet"),
  20489. weight: math.unit(1, "ton"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/lycoa/front.svg",
  20493. extra: 1875 / 1789,
  20494. bottom: 0.022
  20495. }
  20496. },
  20497. back: {
  20498. height: math.unit(8, "feet"),
  20499. weight: math.unit(1, "ton"),
  20500. name: "Back",
  20501. image: {
  20502. source: "./media/characters/lycoa/back.svg",
  20503. extra: 1835 / 1781,
  20504. bottom: 0.03
  20505. }
  20506. },
  20507. head: {
  20508. height: math.unit(2.1, "feet"),
  20509. name: "Head",
  20510. image: {
  20511. source: "./media/characters/lycoa/head.svg"
  20512. }
  20513. },
  20514. tailmaw: {
  20515. height: math.unit(1.9, "feet"),
  20516. name: "Tailmaw",
  20517. image: {
  20518. source: "./media/characters/lycoa/tailmaw.svg"
  20519. }
  20520. },
  20521. tentacles: {
  20522. height: math.unit(2.1, "feet"),
  20523. name: "Tentacles",
  20524. image: {
  20525. source: "./media/characters/lycoa/tentacles.svg"
  20526. }
  20527. },
  20528. dick: {
  20529. height: math.unit(1.73, "feet"),
  20530. name: "Dick",
  20531. image: {
  20532. source: "./media/characters/lycoa/dick.svg"
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(8, "feet"),
  20540. default: true
  20541. },
  20542. {
  20543. name: "Macro",
  20544. height: math.unit(30, "feet")
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20550. {
  20551. front: {
  20552. height: math.unit(4 + 2 / 12, "feet"),
  20553. weight: math.unit(70, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/naldara/front.svg",
  20557. extra: 841 / 720,
  20558. bottom: 0.04
  20559. }
  20560. },
  20561. naga: {
  20562. height: math.unit(23, "feet"),
  20563. weight: math.unit(15000, "kg"),
  20564. name: "Naga",
  20565. image: {
  20566. source: "./media/characters/naldara/naga.svg",
  20567. extra: 3290 / 2959,
  20568. bottom: 124 / 3432
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "Normal",
  20575. height: math.unit(4 + 2 / 12, "feet"),
  20576. default: true
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20582. {
  20583. front: {
  20584. height: math.unit(13 + 7 / 12, "feet"),
  20585. weight: math.unit(1500, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/briar/front.svg",
  20589. extra: 626 / 596,
  20590. bottom: 0.08
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(13 + 7 / 12, "feet"),
  20598. default: true
  20599. },
  20600. ]
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20604. {
  20605. side: {
  20606. height: math.unit(10, "feet"),
  20607. weight: math.unit(500, "lb"),
  20608. name: "Side",
  20609. image: {
  20610. source: "./media/characters/vanguard/side.svg",
  20611. extra: 502 / 425,
  20612. bottom: 0.087
  20613. }
  20614. },
  20615. },
  20616. [
  20617. {
  20618. name: "Normal",
  20619. height: math.unit(10, "feet"),
  20620. default: true
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20626. {
  20627. front: {
  20628. height: math.unit(7.5, "feet"),
  20629. weight: math.unit(2, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/artemis/front.svg",
  20633. extra: 1192 / 1075,
  20634. bottom: 0.07
  20635. }
  20636. },
  20637. frontNsfw: {
  20638. height: math.unit(7.5, "feet"),
  20639. weight: math.unit(2, "lb"),
  20640. name: "Front (NSFW)",
  20641. image: {
  20642. source: "./media/characters/artemis/front-nsfw.svg",
  20643. extra: 1192 / 1075,
  20644. bottom: 0.07
  20645. }
  20646. },
  20647. frontNsfwer: {
  20648. height: math.unit(7.5, "feet"),
  20649. weight: math.unit(2, "lb"),
  20650. name: "Front (NSFW-er)",
  20651. image: {
  20652. source: "./media/characters/artemis/front-nsfwer.svg",
  20653. extra: 1192 / 1075,
  20654. bottom: 0.07
  20655. }
  20656. },
  20657. side: {
  20658. height: math.unit(7.5, "feet"),
  20659. weight: math.unit(2, "lb"),
  20660. name: "Side",
  20661. image: {
  20662. source: "./media/characters/artemis/side.svg",
  20663. extra: 1192 / 1075,
  20664. bottom: 0.07
  20665. }
  20666. },
  20667. sideNsfw: {
  20668. height: math.unit(7.5, "feet"),
  20669. weight: math.unit(2, "lb"),
  20670. name: "Side (NSFW)",
  20671. image: {
  20672. source: "./media/characters/artemis/side-nsfw.svg",
  20673. extra: 1192 / 1075,
  20674. bottom: 0.07
  20675. }
  20676. },
  20677. sideNsfwer: {
  20678. height: math.unit(7.5, "feet"),
  20679. weight: math.unit(2, "lb"),
  20680. name: "Side (NSFW-er)",
  20681. image: {
  20682. source: "./media/characters/artemis/side-nsfwer.svg",
  20683. extra: 1192 / 1075,
  20684. bottom: 0.07
  20685. }
  20686. },
  20687. maw: {
  20688. height: math.unit(1.1, "feet"),
  20689. name: "Maw",
  20690. image: {
  20691. source: "./media/characters/artemis/maw.svg"
  20692. }
  20693. },
  20694. stomach: {
  20695. height: math.unit(0.95, "feet"),
  20696. name: "Stomach",
  20697. image: {
  20698. source: "./media/characters/artemis/stomach.svg"
  20699. }
  20700. },
  20701. dickCanine: {
  20702. height: math.unit(1, "feet"),
  20703. name: "Dick (Canine)",
  20704. image: {
  20705. source: "./media/characters/artemis/dick-canine.svg"
  20706. }
  20707. },
  20708. dickEquine: {
  20709. height: math.unit(0.85, "feet"),
  20710. name: "Dick (Equine)",
  20711. image: {
  20712. source: "./media/characters/artemis/dick-equine.svg"
  20713. }
  20714. },
  20715. dickExotic: {
  20716. height: math.unit(0.85, "feet"),
  20717. name: "Dick (Exotic)",
  20718. image: {
  20719. source: "./media/characters/artemis/dick-exotic.svg"
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(7.5, "feet"),
  20727. default: true
  20728. },
  20729. {
  20730. name: "Enlarged",
  20731. height: math.unit(12, "feet")
  20732. },
  20733. ]
  20734. ))
  20735. characterMakers.push(() => makeCharacter(
  20736. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20737. {
  20738. front: {
  20739. height: math.unit(5 + 3 / 12, "feet"),
  20740. weight: math.unit(160, "lb"),
  20741. name: "Front",
  20742. image: {
  20743. source: "./media/characters/kira/front.svg",
  20744. extra: 906 / 786,
  20745. bottom: 0.01
  20746. }
  20747. },
  20748. back: {
  20749. height: math.unit(5 + 3 / 12, "feet"),
  20750. weight: math.unit(160, "lb"),
  20751. name: "Back",
  20752. image: {
  20753. source: "./media/characters/kira/back.svg",
  20754. extra: 882 / 757,
  20755. bottom: 0.005
  20756. }
  20757. },
  20758. frontDressed: {
  20759. height: math.unit(5 + 3 / 12, "feet"),
  20760. weight: math.unit(160, "lb"),
  20761. name: "Front (Dressed)",
  20762. image: {
  20763. source: "./media/characters/kira/front-dressed.svg",
  20764. extra: 906 / 786,
  20765. bottom: 0.01
  20766. }
  20767. },
  20768. beans: {
  20769. height: math.unit(0.92, "feet"),
  20770. name: "Beans",
  20771. image: {
  20772. source: "./media/characters/kira/beans.svg"
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Normal",
  20779. height: math.unit(5 + 3 / 12, "feet"),
  20780. default: true
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20786. {
  20787. front: {
  20788. height: math.unit(5 + 4 / 12, "feet"),
  20789. weight: math.unit(145, "lb"),
  20790. name: "Front",
  20791. image: {
  20792. source: "./media/characters/scramble/front.svg",
  20793. extra: 763 / 727,
  20794. bottom: 0.05
  20795. }
  20796. },
  20797. back: {
  20798. height: math.unit(5 + 4 / 12, "feet"),
  20799. weight: math.unit(145, "lb"),
  20800. name: "Back",
  20801. image: {
  20802. source: "./media/characters/scramble/back.svg",
  20803. extra: 826 / 737,
  20804. bottom: 0.002
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Normal",
  20811. height: math.unit(5 + 4 / 12, "feet"),
  20812. default: true
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20818. {
  20819. side: {
  20820. height: math.unit(6 + 2 / 12, "feet"),
  20821. weight: math.unit(190, "lb"),
  20822. name: "Side",
  20823. image: {
  20824. source: "./media/characters/biscuit/side.svg",
  20825. extra: 858 / 791,
  20826. bottom: 0.044
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(6 + 2 / 12, "feet"),
  20834. default: true
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20840. {
  20841. front: {
  20842. height: math.unit(5 + 2 / 12, "feet"),
  20843. weight: math.unit(120, "lb"),
  20844. name: "Front",
  20845. image: {
  20846. source: "./media/characters/poffin/front.svg",
  20847. extra: 786 / 680,
  20848. bottom: 0.005
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(5 + 2 / 12, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(6 + 3 / 12, "feet"),
  20865. weight: math.unit(519, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/dhari/front.svg",
  20869. extra: 1048 / 946,
  20870. bottom: 0.015
  20871. }
  20872. },
  20873. back: {
  20874. height: math.unit(6 + 3 / 12, "feet"),
  20875. weight: math.unit(519, "lb"),
  20876. name: "Back",
  20877. image: {
  20878. source: "./media/characters/dhari/back.svg",
  20879. extra: 1048 / 931,
  20880. bottom: 0.005
  20881. }
  20882. },
  20883. frontDressed: {
  20884. height: math.unit(6 + 3 / 12, "feet"),
  20885. weight: math.unit(519, "lb"),
  20886. name: "Front (Dressed)",
  20887. image: {
  20888. source: "./media/characters/dhari/front-dressed.svg",
  20889. extra: 1713 / 1546,
  20890. bottom: 0.02
  20891. }
  20892. },
  20893. backDressed: {
  20894. height: math.unit(6 + 3 / 12, "feet"),
  20895. weight: math.unit(519, "lb"),
  20896. name: "Back (Dressed)",
  20897. image: {
  20898. source: "./media/characters/dhari/back-dressed.svg",
  20899. extra: 1699 / 1537,
  20900. bottom: 0.01
  20901. }
  20902. },
  20903. maw: {
  20904. height: math.unit(0.95, "feet"),
  20905. name: "Maw",
  20906. image: {
  20907. source: "./media/characters/dhari/maw.svg"
  20908. }
  20909. },
  20910. wereFront: {
  20911. height: math.unit(12 + 8 / 12, "feet"),
  20912. weight: math.unit(4000, "lb"),
  20913. name: "Front (Were)",
  20914. image: {
  20915. source: "./media/characters/dhari/were-front.svg",
  20916. extra: 1065 / 969,
  20917. bottom: 0.015
  20918. }
  20919. },
  20920. wereBack: {
  20921. height: math.unit(12 + 8 / 12, "feet"),
  20922. weight: math.unit(4000, "lb"),
  20923. name: "Back (Were)",
  20924. image: {
  20925. source: "./media/characters/dhari/were-back.svg",
  20926. extra: 1065 / 969,
  20927. bottom: 0.012
  20928. }
  20929. },
  20930. wereMaw: {
  20931. height: math.unit(0.625, "meters"),
  20932. name: "Maw (Were)",
  20933. image: {
  20934. source: "./media/characters/dhari/were-maw.svg"
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(6 + 3 / 12, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20948. {
  20949. anthro: {
  20950. height: math.unit(5 + 7 / 12, "feet"),
  20951. weight: math.unit(175, "lb"),
  20952. name: "Anthro",
  20953. image: {
  20954. source: "./media/characters/rena-dyne/anthro.svg",
  20955. extra: 1849 / 1785,
  20956. bottom: 0.005
  20957. }
  20958. },
  20959. taur: {
  20960. height: math.unit(15 + 6 / 12, "feet"),
  20961. weight: math.unit(8000, "lb"),
  20962. name: "Taur",
  20963. image: {
  20964. source: "./media/characters/rena-dyne/taur.svg",
  20965. extra: 2315 / 2234,
  20966. bottom: 0.033
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(5 + 7 / 12, "feet"),
  20974. default: true
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20980. {
  20981. front: {
  20982. height: math.unit(8, "feet"),
  20983. weight: math.unit(600, "lb"),
  20984. name: "Front",
  20985. image: {
  20986. source: "./media/characters/weremeep/front.svg",
  20987. extra: 967 / 862,
  20988. bottom: 0.01
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(8, "feet"),
  20996. default: true
  20997. },
  20998. {
  20999. name: "Lorg",
  21000. height: math.unit(12, "feet")
  21001. },
  21002. {
  21003. name: "Oh Lawd She Comin'",
  21004. height: math.unit(20, "feet")
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21010. {
  21011. front: {
  21012. height: math.unit(4, "feet"),
  21013. weight: math.unit(90, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/reza/front.svg",
  21017. extra: 1183 / 1111,
  21018. bottom: 0.017
  21019. }
  21020. },
  21021. back: {
  21022. height: math.unit(4, "feet"),
  21023. weight: math.unit(90, "lb"),
  21024. name: "Back",
  21025. image: {
  21026. source: "./media/characters/reza/back.svg",
  21027. extra: 1183 / 1111,
  21028. bottom: 0.01
  21029. }
  21030. },
  21031. drake: {
  21032. height: math.unit(30, "feet"),
  21033. weight: math.unit(246960, "lb"),
  21034. name: "Drake",
  21035. image: {
  21036. source: "./media/characters/reza/drake.svg",
  21037. extra: 2350 / 2024,
  21038. bottom: 60.7 / 2403
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(4, "feet"),
  21046. default: true
  21047. },
  21048. ]
  21049. ))
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21052. {
  21053. side: {
  21054. height: math.unit(15, "feet"),
  21055. weight: math.unit(14, "tons"),
  21056. name: "Side",
  21057. image: {
  21058. source: "./media/characters/athea/side.svg",
  21059. extra: 960 / 540,
  21060. bottom: 0.003
  21061. }
  21062. },
  21063. sitting: {
  21064. height: math.unit(6 * 2.85, "feet"),
  21065. weight: math.unit(14, "tons"),
  21066. name: "Sitting",
  21067. image: {
  21068. source: "./media/characters/athea/sitting.svg",
  21069. extra: 621 / 581,
  21070. bottom: 0.075
  21071. }
  21072. },
  21073. maw: {
  21074. height: math.unit(7.59498031496063, "feet"),
  21075. name: "Maw",
  21076. image: {
  21077. source: "./media/characters/athea/maw.svg"
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Lap Cat",
  21084. height: math.unit(2.5, "feet")
  21085. },
  21086. {
  21087. name: "Minimacro",
  21088. height: math.unit(15, "feet"),
  21089. default: true
  21090. },
  21091. {
  21092. name: "Macro",
  21093. height: math.unit(120, "feet")
  21094. },
  21095. {
  21096. name: "Macro+",
  21097. height: math.unit(640, "feet")
  21098. },
  21099. {
  21100. name: "Colossus",
  21101. height: math.unit(2.2, "miles")
  21102. },
  21103. ]
  21104. ))
  21105. characterMakers.push(() => makeCharacter(
  21106. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21107. {
  21108. front: {
  21109. height: math.unit(8 + 8 / 12, "feet"),
  21110. weight: math.unit(130, "kg"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/seroko/front.svg",
  21114. extra: 1385 / 1280,
  21115. bottom: 0.025
  21116. }
  21117. },
  21118. back: {
  21119. height: math.unit(8 + 8 / 12, "feet"),
  21120. weight: math.unit(130, "kg"),
  21121. name: "Back",
  21122. image: {
  21123. source: "./media/characters/seroko/back.svg",
  21124. extra: 1369 / 1238,
  21125. bottom: 0.018
  21126. }
  21127. },
  21128. frontDressed: {
  21129. height: math.unit(8 + 8 / 12, "feet"),
  21130. weight: math.unit(130, "kg"),
  21131. name: "Front (Dressed)",
  21132. image: {
  21133. source: "./media/characters/seroko/front-dressed.svg",
  21134. extra: 1366 / 1275,
  21135. bottom: 0.03
  21136. }
  21137. },
  21138. },
  21139. [
  21140. {
  21141. name: "Normal",
  21142. height: math.unit(8 + 8 / 12, "feet"),
  21143. default: true
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21149. {
  21150. front: {
  21151. height: math.unit(5.5, "feet"),
  21152. weight: math.unit(160, "lb"),
  21153. name: "Front",
  21154. image: {
  21155. source: "./media/characters/quatzi/front.svg",
  21156. extra: 2346 / 2242,
  21157. bottom: 0.015
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(5.5, "feet"),
  21165. default: true
  21166. },
  21167. {
  21168. name: "Big",
  21169. height: math.unit(7.7, "feet")
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21175. {
  21176. front: {
  21177. height: math.unit(5 + 11 / 12, "feet"),
  21178. weight: math.unit(180, "lb"),
  21179. name: "Front",
  21180. image: {
  21181. source: "./media/characters/sen/front.svg",
  21182. extra: 1321 / 1254,
  21183. bottom: 0.015
  21184. }
  21185. },
  21186. side: {
  21187. height: math.unit(5 + 11 / 12, "feet"),
  21188. weight: math.unit(180, "lb"),
  21189. name: "Side",
  21190. image: {
  21191. source: "./media/characters/sen/side.svg",
  21192. extra: 1321 / 1254,
  21193. bottom: 0.007
  21194. }
  21195. },
  21196. back: {
  21197. height: math.unit(5 + 11 / 12, "feet"),
  21198. weight: math.unit(180, "lb"),
  21199. name: "Back",
  21200. image: {
  21201. source: "./media/characters/sen/back.svg",
  21202. extra: 1321 / 1254
  21203. }
  21204. },
  21205. },
  21206. [
  21207. {
  21208. name: "Normal",
  21209. height: math.unit(5 + 11 / 12, "feet"),
  21210. default: true
  21211. },
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21216. {
  21217. front: {
  21218. height: math.unit(166.6, "cm"),
  21219. weight: math.unit(66.6, "kg"),
  21220. name: "Front",
  21221. image: {
  21222. source: "./media/characters/fruity/front.svg",
  21223. extra: 1510 / 1386,
  21224. bottom: 0.04
  21225. }
  21226. },
  21227. back: {
  21228. height: math.unit(166.6, "cm"),
  21229. weight: math.unit(66.6, "lb"),
  21230. name: "Back",
  21231. image: {
  21232. source: "./media/characters/fruity/back.svg",
  21233. extra: 1563 / 1435,
  21234. bottom: 0.005
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(166.6, "cm"),
  21242. default: true
  21243. },
  21244. {
  21245. name: "Demonic",
  21246. height: math.unit(166.6, "feet")
  21247. },
  21248. ]
  21249. ))
  21250. characterMakers.push(() => makeCharacter(
  21251. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21252. {
  21253. side: {
  21254. height: math.unit(10, "feet"),
  21255. weight: math.unit(500, "lb"),
  21256. name: "Side",
  21257. image: {
  21258. source: "./media/characters/zost/side.svg",
  21259. extra: 966 / 880,
  21260. bottom: 0.075
  21261. }
  21262. },
  21263. mawFront: {
  21264. height: math.unit(1.08, "meters"),
  21265. name: "Maw (Front)",
  21266. image: {
  21267. source: "./media/characters/zost/maw-front.svg"
  21268. }
  21269. },
  21270. mawSide: {
  21271. height: math.unit(2.66, "feet"),
  21272. name: "Maw (Side)",
  21273. image: {
  21274. source: "./media/characters/zost/maw-side.svg"
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(10, "feet"),
  21282. default: true
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21288. {
  21289. front: {
  21290. height: math.unit(5 + 4 / 12, "feet"),
  21291. weight: math.unit(120, "lb"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/luci/front.svg",
  21295. extra: 1985 / 1884,
  21296. bottom: 0.04
  21297. }
  21298. },
  21299. back: {
  21300. height: math.unit(5 + 4 / 12, "feet"),
  21301. weight: math.unit(120, "lb"),
  21302. name: "Back",
  21303. image: {
  21304. source: "./media/characters/luci/back.svg",
  21305. extra: 1892 / 1791,
  21306. bottom: 0.002
  21307. }
  21308. },
  21309. },
  21310. [
  21311. {
  21312. name: "Normal",
  21313. height: math.unit(5 + 4 / 12, "feet"),
  21314. default: true
  21315. },
  21316. ]
  21317. ))
  21318. characterMakers.push(() => makeCharacter(
  21319. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21320. {
  21321. front: {
  21322. height: math.unit(1500, "feet"),
  21323. weight: math.unit(3.8e6, "tons"),
  21324. name: "Front",
  21325. image: {
  21326. source: "./media/characters/2th/front.svg",
  21327. extra: 3489 / 3350,
  21328. bottom: 0.1
  21329. }
  21330. },
  21331. foot: {
  21332. height: math.unit(461, "feet"),
  21333. name: "Foot",
  21334. image: {
  21335. source: "./media/characters/2th/foot.svg"
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "\"Micro\"",
  21342. height: math.unit(15 + 7 / 12, "feet")
  21343. },
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(1500, "feet"),
  21347. default: true
  21348. },
  21349. {
  21350. name: "Macro",
  21351. height: math.unit(5000, "feet")
  21352. },
  21353. {
  21354. name: "Megamacro",
  21355. height: math.unit(15, "miles")
  21356. },
  21357. {
  21358. name: "Gigamacro",
  21359. height: math.unit(4000, "miles")
  21360. },
  21361. {
  21362. name: "Galactic",
  21363. height: math.unit(50, "AU")
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21369. {
  21370. front: {
  21371. height: math.unit(5 + 6 / 12, "feet"),
  21372. weight: math.unit(220, "lb"),
  21373. name: "Front",
  21374. image: {
  21375. source: "./media/characters/amethyst/front.svg",
  21376. extra: 2078 / 2040,
  21377. bottom: 0.045
  21378. }
  21379. },
  21380. back: {
  21381. height: math.unit(5 + 6 / 12, "feet"),
  21382. weight: math.unit(220, "lb"),
  21383. name: "Back",
  21384. image: {
  21385. source: "./media/characters/amethyst/back.svg",
  21386. extra: 2021 / 1989,
  21387. bottom: 0.02
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(5 + 6 / 12, "feet"),
  21395. default: true
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(4 + 11 / 12, "feet"),
  21404. weight: math.unit(120, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/yumi-akiyama/front.svg",
  21408. extra: 1327 / 1235,
  21409. bottom: 0.02
  21410. }
  21411. },
  21412. back: {
  21413. height: math.unit(4 + 11 / 12, "feet"),
  21414. weight: math.unit(120, "lb"),
  21415. name: "Back",
  21416. image: {
  21417. source: "./media/characters/yumi-akiyama/back.svg",
  21418. extra: 1287 / 1245,
  21419. bottom: 0.002
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Galactic",
  21426. height: math.unit(50, "galaxies"),
  21427. default: true
  21428. },
  21429. {
  21430. name: "Universal",
  21431. height: math.unit(100, "universes")
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(8, "feet"),
  21440. weight: math.unit(500, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/rifter-yrmori/front.svg",
  21444. extra: 1180 / 1125,
  21445. bottom: 0.02
  21446. }
  21447. },
  21448. back: {
  21449. height: math.unit(8, "feet"),
  21450. weight: math.unit(500, "lb"),
  21451. name: "Back",
  21452. image: {
  21453. source: "./media/characters/rifter-yrmori/back.svg",
  21454. extra: 1190 / 1145,
  21455. bottom: 0.001
  21456. }
  21457. },
  21458. wings: {
  21459. height: math.unit(7.75, "feet"),
  21460. weight: math.unit(500, "lb"),
  21461. name: "Wings",
  21462. image: {
  21463. source: "./media/characters/rifter-yrmori/wings.svg",
  21464. extra: 1357 / 1285
  21465. }
  21466. },
  21467. maw: {
  21468. height: math.unit(0.8, "feet"),
  21469. name: "Maw",
  21470. image: {
  21471. source: "./media/characters/rifter-yrmori/maw.svg"
  21472. }
  21473. },
  21474. mawfront: {
  21475. height: math.unit(1.45, "feet"),
  21476. name: "Maw (Front)",
  21477. image: {
  21478. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Normal",
  21485. height: math.unit(8, "feet"),
  21486. default: true
  21487. },
  21488. {
  21489. name: "Macro",
  21490. height: math.unit(42, "meters")
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21496. {
  21497. were: {
  21498. height: math.unit(25 + 6 / 12, "feet"),
  21499. weight: math.unit(10000, "lb"),
  21500. name: "Were",
  21501. image: {
  21502. source: "./media/characters/tahajin/were.svg",
  21503. extra: 801 / 770,
  21504. bottom: 0.042
  21505. }
  21506. },
  21507. aquatic: {
  21508. height: math.unit(6 + 4 / 12, "feet"),
  21509. weight: math.unit(160, "lb"),
  21510. name: "Aquatic",
  21511. image: {
  21512. source: "./media/characters/tahajin/aquatic.svg",
  21513. extra: 572 / 542,
  21514. bottom: 0.04
  21515. }
  21516. },
  21517. chow: {
  21518. height: math.unit(8 + 11 / 12, "feet"),
  21519. weight: math.unit(450, "lb"),
  21520. name: "Chow",
  21521. image: {
  21522. source: "./media/characters/tahajin/chow.svg",
  21523. extra: 660 / 640,
  21524. bottom: 0.015
  21525. }
  21526. },
  21527. demiNaga: {
  21528. height: math.unit(6 + 8 / 12, "feet"),
  21529. weight: math.unit(300, "lb"),
  21530. name: "Demi Naga",
  21531. image: {
  21532. source: "./media/characters/tahajin/demi-naga.svg",
  21533. extra: 643 / 615,
  21534. bottom: 0.1
  21535. }
  21536. },
  21537. data: {
  21538. height: math.unit(5, "inches"),
  21539. weight: math.unit(0.1, "lb"),
  21540. name: "Data",
  21541. image: {
  21542. source: "./media/characters/tahajin/data.svg"
  21543. }
  21544. },
  21545. fluu: {
  21546. height: math.unit(5 + 7 / 12, "feet"),
  21547. weight: math.unit(140, "lb"),
  21548. name: "Fluu",
  21549. image: {
  21550. source: "./media/characters/tahajin/fluu.svg",
  21551. extra: 628 / 592,
  21552. bottom: 0.02
  21553. }
  21554. },
  21555. starWarrior: {
  21556. height: math.unit(4 + 5 / 12, "feet"),
  21557. weight: math.unit(50, "lb"),
  21558. name: "Star Warrior",
  21559. image: {
  21560. source: "./media/characters/tahajin/star-warrior.svg"
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(25 + 6 / 12, "feet"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(8, "feet"),
  21577. weight: math.unit(350, "lb"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/gabira/front.svg",
  21581. extra: 608 / 580,
  21582. bottom: 0.03
  21583. }
  21584. },
  21585. back: {
  21586. height: math.unit(8, "feet"),
  21587. weight: math.unit(350, "lb"),
  21588. name: "Back",
  21589. image: {
  21590. source: "./media/characters/gabira/back.svg",
  21591. extra: 608 / 580,
  21592. bottom: 0.03
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(8, "feet"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21606. {
  21607. front: {
  21608. height: math.unit(5 + 3 / 12, "feet"),
  21609. weight: math.unit(137, "lb"),
  21610. name: "Front",
  21611. image: {
  21612. source: "./media/characters/sasha-katraine/front.svg",
  21613. bottom: 0.045
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Micro",
  21620. height: math.unit(5, "inches")
  21621. },
  21622. {
  21623. name: "Normal",
  21624. height: math.unit(5 + 3 / 12, "feet"),
  21625. default: true
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21631. {
  21632. side: {
  21633. height: math.unit(4, "inches"),
  21634. weight: math.unit(200, "grams"),
  21635. name: "Side",
  21636. image: {
  21637. source: "./media/characters/der/side.svg",
  21638. extra: 719 / 400,
  21639. bottom: 30.6 / 749.9187
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Micro",
  21646. height: math.unit(4, "inches"),
  21647. default: true
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21653. {
  21654. side: {
  21655. height: math.unit(30, "meters"),
  21656. weight: math.unit(700, "tonnes"),
  21657. name: "Side",
  21658. image: {
  21659. source: "./media/characters/fixerdragon/side.svg",
  21660. extra: (1293.0514 - 116.03) / 1106.86,
  21661. bottom: 116.03 / 1293.0514
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Planck",
  21668. height: math.unit(1.6e-35, "meters")
  21669. },
  21670. {
  21671. name: "Micro",
  21672. height: math.unit(0.4, "meters")
  21673. },
  21674. {
  21675. name: "Normal",
  21676. height: math.unit(30, "meters"),
  21677. default: true
  21678. },
  21679. {
  21680. name: "Megamacro",
  21681. height: math.unit(1.2, "megameters")
  21682. },
  21683. {
  21684. name: "Teramacro",
  21685. height: math.unit(130, "terameters")
  21686. },
  21687. {
  21688. name: "Yottamacro",
  21689. height: math.unit(6200, "yottameters")
  21690. },
  21691. ]
  21692. ));
  21693. characterMakers.push(() => makeCharacter(
  21694. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21695. {
  21696. front: {
  21697. height: math.unit(8, "feet"),
  21698. weight: math.unit(250, "lb"),
  21699. name: "Front",
  21700. image: {
  21701. source: "./media/characters/kite/front.svg",
  21702. extra: 2796 / 2659,
  21703. bottom: 0.002
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Normal",
  21710. height: math.unit(8, "feet"),
  21711. default: true
  21712. },
  21713. {
  21714. name: "Macro",
  21715. height: math.unit(360, "feet")
  21716. },
  21717. {
  21718. name: "Megamacro",
  21719. height: math.unit(1500, "feet")
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(5 + 11/12, "feet"),
  21728. weight: math.unit(170, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/poojawa-vynar/front.svg",
  21732. extra: 1735/1585,
  21733. bottom: 96/1831
  21734. }
  21735. },
  21736. back: {
  21737. height: math.unit(5 + 11/12, "feet"),
  21738. weight: math.unit(170, "lb"),
  21739. name: "Back",
  21740. image: {
  21741. source: "./media/characters/poojawa-vynar/back.svg",
  21742. extra: 1749/1607,
  21743. bottom: 28/1777
  21744. }
  21745. },
  21746. male: {
  21747. height: math.unit(5 + 11/12, "feet"),
  21748. weight: math.unit(170, "lb"),
  21749. name: "Male",
  21750. image: {
  21751. source: "./media/characters/poojawa-vynar/male.svg",
  21752. extra: 1855/1713,
  21753. bottom: 63/1918
  21754. }
  21755. },
  21756. taur: {
  21757. height: math.unit(5 + 11/12, "feet"),
  21758. weight: math.unit(170, "lb"),
  21759. name: "Taur",
  21760. image: {
  21761. source: "./media/characters/poojawa-vynar/taur.svg",
  21762. extra: 1151/1059,
  21763. bottom: 356/1507
  21764. }
  21765. },
  21766. frontDressed: {
  21767. height: math.unit(5 + 11/12, "feet"),
  21768. weight: math.unit(170, "lb"),
  21769. name: "Front (Dressed)",
  21770. image: {
  21771. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21772. extra: 1735/1585,
  21773. bottom: 96/1831
  21774. }
  21775. },
  21776. backDressed: {
  21777. height: math.unit(5 + 11/12, "feet"),
  21778. weight: math.unit(170, "lb"),
  21779. name: "Back (Dressed)",
  21780. image: {
  21781. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21782. extra: 1749/1607,
  21783. bottom: 28/1777
  21784. }
  21785. },
  21786. maleDressed: {
  21787. height: math.unit(5 + 11/12, "feet"),
  21788. weight: math.unit(170, "lb"),
  21789. name: "Male (Dressed)",
  21790. image: {
  21791. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21792. extra: 1855/1713,
  21793. bottom: 63/1918
  21794. }
  21795. },
  21796. taurDressed: {
  21797. height: math.unit(5 + 11/12, "feet"),
  21798. weight: math.unit(170, "lb"),
  21799. name: "Taur (Dressed)",
  21800. image: {
  21801. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21802. extra: 1151/1059,
  21803. bottom: 356/1507
  21804. }
  21805. },
  21806. maw: {
  21807. height: math.unit(1.46, "feet"),
  21808. name: "Maw",
  21809. image: {
  21810. source: "./media/characters/poojawa-vynar/maw.svg"
  21811. }
  21812. },
  21813. head: {
  21814. height: math.unit(2.34, "feet"),
  21815. name: "Head",
  21816. image: {
  21817. source: "./media/characters/poojawa-vynar/head.svg"
  21818. }
  21819. },
  21820. paw: {
  21821. height: math.unit(1.61, "feet"),
  21822. name: "Paw",
  21823. image: {
  21824. source: "./media/characters/poojawa-vynar/paw.svg"
  21825. }
  21826. },
  21827. pawToering: {
  21828. height: math.unit(1.72, "feet"),
  21829. name: "Paw (Toering)",
  21830. image: {
  21831. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21832. }
  21833. },
  21834. toering: {
  21835. height: math.unit(2.9, "inches"),
  21836. name: "Toering",
  21837. image: {
  21838. source: "./media/characters/poojawa-vynar/toering.svg"
  21839. }
  21840. },
  21841. shaft: {
  21842. height: math.unit(0.625, "feet"),
  21843. name: "Shaft",
  21844. image: {
  21845. source: "./media/characters/poojawa-vynar/shaft.svg"
  21846. }
  21847. },
  21848. spade: {
  21849. height: math.unit(0.42, "feet"),
  21850. name: "Spade",
  21851. image: {
  21852. source: "./media/characters/poojawa-vynar/spade.svg"
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Shortstack",
  21859. height: math.unit(4, "feet")
  21860. },
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(5 + 11 / 12, "feet"),
  21864. default: true
  21865. },
  21866. {
  21867. name: "Tauric",
  21868. height: math.unit(4, "meters")
  21869. },
  21870. ]
  21871. ))
  21872. characterMakers.push(() => makeCharacter(
  21873. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21874. {
  21875. front: {
  21876. height: math.unit(293, "meters"),
  21877. weight: math.unit(70400, "tons"),
  21878. name: "Front",
  21879. image: {
  21880. source: "./media/characters/violette/front.svg",
  21881. extra: 1227 / 1180,
  21882. bottom: 0.005
  21883. }
  21884. },
  21885. back: {
  21886. height: math.unit(293, "meters"),
  21887. weight: math.unit(70400, "tons"),
  21888. name: "Back",
  21889. image: {
  21890. source: "./media/characters/violette/back.svg",
  21891. extra: 1227 / 1180,
  21892. bottom: 0.005
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Macro",
  21899. height: math.unit(293, "meters"),
  21900. default: true
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21906. {
  21907. front: {
  21908. height: math.unit(1050, "feet"),
  21909. weight: math.unit(200000, "tons"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/alessandra/front.svg",
  21913. extra: 960 / 912,
  21914. bottom: 0.06
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Macro",
  21921. height: math.unit(1050, "feet")
  21922. },
  21923. {
  21924. name: "Macro+",
  21925. height: math.unit(900, "meters"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21932. {
  21933. front: {
  21934. height: math.unit(5, "feet"),
  21935. weight: math.unit(187, "lb"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/person/front.svg",
  21939. extra: 3087 / 2945,
  21940. bottom: 91 / 3181
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Micro",
  21947. height: math.unit(3, "inches")
  21948. },
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(5, "feet"),
  21952. default: true
  21953. },
  21954. {
  21955. name: "Macro",
  21956. height: math.unit(90, "feet")
  21957. },
  21958. {
  21959. name: "Max Size",
  21960. height: math.unit(280, "feet")
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21966. {
  21967. front: {
  21968. height: math.unit(4.5, "meters"),
  21969. weight: math.unit(3200, "lb"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/ty/front.svg",
  21973. extra: 1038 / 960,
  21974. bottom: 31.156 / 1068
  21975. }
  21976. },
  21977. back: {
  21978. height: math.unit(4.5, "meters"),
  21979. weight: math.unit(3200, "lb"),
  21980. name: "Back",
  21981. image: {
  21982. source: "./media/characters/ty/back.svg",
  21983. extra: 1044 / 966,
  21984. bottom: 7.48 / 1049
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(4.5, "meters"),
  21992. default: true
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(5 + 4 / 12, "feet"),
  22001. weight: math.unit(115, "lb"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/rocky/front.svg",
  22005. extra: 1012 / 975,
  22006. bottom: 54 / 1066
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(5 + 4 / 12, "feet"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22020. {
  22021. upright: {
  22022. height: math.unit(6, "meters"),
  22023. weight: math.unit(4000, "kg"),
  22024. name: "Upright",
  22025. image: {
  22026. source: "./media/characters/ruin/upright.svg",
  22027. extra: 668 / 661,
  22028. bottom: 42 / 799.8396
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(6, "meters"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(5, "feet"),
  22045. weight: math.unit(106, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/robin/front.svg",
  22049. extra: 862 / 799,
  22050. bottom: 42.4 / 914.8856
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(5, "feet"),
  22058. default: true
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22064. {
  22065. side: {
  22066. height: math.unit(3, "feet"),
  22067. weight: math.unit(225, "lb"),
  22068. name: "Side",
  22069. image: {
  22070. source: "./media/characters/saian/side.svg",
  22071. extra: 566 / 356,
  22072. bottom: 79.7 / 643
  22073. }
  22074. },
  22075. maw: {
  22076. height: math.unit(2.85, "feet"),
  22077. name: "Maw",
  22078. image: {
  22079. source: "./media/characters/saian/maw.svg"
  22080. }
  22081. },
  22082. },
  22083. [
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(3, "feet"),
  22087. default: true
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22093. {
  22094. side: {
  22095. height: math.unit(8, "feet"),
  22096. weight: math.unit(300, "lb"),
  22097. name: "Side",
  22098. image: {
  22099. source: "./media/characters/equus-silvermane/side.svg",
  22100. extra: 2176 / 2050,
  22101. bottom: 65.7 / 2245
  22102. }
  22103. },
  22104. front: {
  22105. height: math.unit(8, "feet"),
  22106. weight: math.unit(300, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/equus-silvermane/front.svg",
  22110. extra: 4633 / 4400,
  22111. bottom: 71.3 / 4706.915
  22112. }
  22113. },
  22114. sideStepping: {
  22115. height: math.unit(8, "feet"),
  22116. weight: math.unit(300, "lb"),
  22117. name: "Side (Stepping)",
  22118. image: {
  22119. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22120. extra: 1968 / 1860,
  22121. bottom: 16.4 / 1989
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(8, "feet")
  22129. },
  22130. {
  22131. name: "Minimacro",
  22132. height: math.unit(75, "feet"),
  22133. default: true
  22134. },
  22135. {
  22136. name: "Macro",
  22137. height: math.unit(150, "feet")
  22138. },
  22139. {
  22140. name: "Macro+",
  22141. height: math.unit(1000, "feet")
  22142. },
  22143. {
  22144. name: "Megamacro",
  22145. height: math.unit(1, "mile")
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22151. {
  22152. side: {
  22153. height: math.unit(20, "feet"),
  22154. weight: math.unit(30000, "kg"),
  22155. name: "Side",
  22156. image: {
  22157. source: "./media/characters/windar/side.svg",
  22158. extra: 1491 / 1248,
  22159. bottom: 82.56 / 1568
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(20, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22173. {
  22174. side: {
  22175. height: math.unit(15.66, "feet"),
  22176. weight: math.unit(150, "lb"),
  22177. name: "Side",
  22178. image: {
  22179. source: "./media/characters/melody/side.svg",
  22180. extra: 1097 / 944,
  22181. bottom: 11.8 / 1109
  22182. }
  22183. },
  22184. sideOutfit: {
  22185. height: math.unit(15.66, "feet"),
  22186. weight: math.unit(150, "lb"),
  22187. name: "Side (Outfit)",
  22188. image: {
  22189. source: "./media/characters/melody/side-outfit.svg",
  22190. extra: 1097 / 944,
  22191. bottom: 11.8 / 1109
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(15.66, "feet"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22205. {
  22206. front: {
  22207. height: math.unit(8, "feet"),
  22208. weight: math.unit(325, "lb"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/windera/front.svg",
  22212. extra: 3180 / 2845,
  22213. bottom: 178 / 3365
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Normal",
  22220. height: math.unit(8, "feet"),
  22221. default: true
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22227. {
  22228. front: {
  22229. height: math.unit(28.75, "feet"),
  22230. weight: math.unit(2000, "kg"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/sonear/front.svg",
  22234. extra: 1041.1 / 964.9,
  22235. bottom: 53.7 / 1096.6
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Normal",
  22242. height: math.unit(28.75, "feet"),
  22243. default: true
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22249. {
  22250. side: {
  22251. height: math.unit(25.5, "feet"),
  22252. weight: math.unit(23000, "kg"),
  22253. name: "Side",
  22254. image: {
  22255. source: "./media/characters/kanara/side.svg"
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(25.5, "feet"),
  22263. default: true
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22269. {
  22270. side: {
  22271. height: math.unit(10, "feet"),
  22272. weight: math.unit(1000, "kg"),
  22273. name: "Side",
  22274. image: {
  22275. source: "./media/characters/ereus/side.svg",
  22276. extra: 1157 / 959,
  22277. bottom: 153 / 1312.5
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(10, "feet"),
  22285. default: true
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22291. {
  22292. side: {
  22293. height: math.unit(4.5, "feet"),
  22294. weight: math.unit(500, "lb"),
  22295. name: "Side",
  22296. image: {
  22297. source: "./media/characters/e-ter/side.svg",
  22298. extra: 1550 / 1248,
  22299. bottom: 146 / 1694
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Normal",
  22306. height: math.unit(4.5, "feet"),
  22307. default: true
  22308. },
  22309. ]
  22310. ))
  22311. characterMakers.push(() => makeCharacter(
  22312. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22313. {
  22314. side: {
  22315. height: math.unit(9.7, "feet"),
  22316. weight: math.unit(4000, "kg"),
  22317. name: "Side",
  22318. image: {
  22319. source: "./media/characters/yamie/side.svg"
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(9.7, "feet"),
  22327. default: true
  22328. },
  22329. ]
  22330. ))
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22333. {
  22334. front: {
  22335. height: math.unit(50, "feet"),
  22336. weight: math.unit(50000, "kg"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/anders/front.svg",
  22340. extra: 570 / 539,
  22341. bottom: 14.7 / 586.7
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Large",
  22348. height: math.unit(50, "feet")
  22349. },
  22350. {
  22351. name: "Macro",
  22352. height: math.unit(2000, "feet"),
  22353. default: true
  22354. },
  22355. {
  22356. name: "Megamacro",
  22357. height: math.unit(12, "miles")
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(7 + 2 / 12, "feet"),
  22366. weight: math.unit(300, "lb"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/reban/front.svg",
  22370. extra: 516 / 487,
  22371. bottom: 42.82 / 558.356
  22372. }
  22373. },
  22374. dick: {
  22375. height: math.unit(7 / 5, "feet"),
  22376. name: "Dick",
  22377. image: {
  22378. source: "./media/characters/reban/dick.svg"
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Natural Height",
  22385. height: math.unit(7 + 2 / 12, "feet")
  22386. },
  22387. {
  22388. name: "Macro",
  22389. height: math.unit(500, "feet"),
  22390. default: true
  22391. },
  22392. {
  22393. name: "Canon Height",
  22394. height: math.unit(50, "AU")
  22395. },
  22396. ]
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22400. {
  22401. front: {
  22402. height: math.unit(6, "feet"),
  22403. weight: math.unit(150, "lb"),
  22404. name: "Front",
  22405. image: {
  22406. source: "./media/characters/terrance-keayes/front.svg",
  22407. extra: 1.005,
  22408. bottom: 151 / 1615
  22409. }
  22410. },
  22411. side: {
  22412. height: math.unit(6, "feet"),
  22413. weight: math.unit(150, "lb"),
  22414. name: "Side",
  22415. image: {
  22416. source: "./media/characters/terrance-keayes/side.svg",
  22417. extra: 1.005,
  22418. bottom: 129.4 / 1544
  22419. }
  22420. },
  22421. back: {
  22422. height: math.unit(6, "feet"),
  22423. weight: math.unit(150, "lb"),
  22424. name: "Back",
  22425. image: {
  22426. source: "./media/characters/terrance-keayes/back.svg",
  22427. extra: 1.005,
  22428. bottom: 58.4 / 1557.3
  22429. }
  22430. },
  22431. dick: {
  22432. height: math.unit(6 * 0.208, "feet"),
  22433. name: "Dick",
  22434. image: {
  22435. source: "./media/characters/terrance-keayes/dick.svg"
  22436. }
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Canon Height",
  22442. height: math.unit(35, "miles"),
  22443. default: true
  22444. },
  22445. ]
  22446. ))
  22447. characterMakers.push(() => makeCharacter(
  22448. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22449. {
  22450. front: {
  22451. height: math.unit(6, "feet"),
  22452. weight: math.unit(150, "lb"),
  22453. name: "Front",
  22454. image: {
  22455. source: "./media/characters/ofelia/front.svg",
  22456. extra: 546 / 541,
  22457. bottom: 39 / 583
  22458. }
  22459. },
  22460. back: {
  22461. height: math.unit(6, "feet"),
  22462. weight: math.unit(150, "lb"),
  22463. name: "Back",
  22464. image: {
  22465. source: "./media/characters/ofelia/back.svg",
  22466. extra: 564 / 559.5,
  22467. bottom: 8.69 / 573.02
  22468. }
  22469. },
  22470. maw: {
  22471. height: math.unit(1, "feet"),
  22472. name: "Maw",
  22473. image: {
  22474. source: "./media/characters/ofelia/maw.svg"
  22475. }
  22476. },
  22477. foot: {
  22478. height: math.unit(1.949, "feet"),
  22479. name: "Foot",
  22480. image: {
  22481. source: "./media/characters/ofelia/foot.svg"
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Canon Height",
  22488. height: math.unit(2000, "miles"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(6, "feet"),
  22498. weight: math.unit(150, "lb"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/samuel/front.svg",
  22502. extra: 265 / 258,
  22503. bottom: 2 / 266.1566
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Macro",
  22510. height: math.unit(100, "feet"),
  22511. default: true
  22512. },
  22513. {
  22514. name: "Full Size",
  22515. height: math.unit(1000, "miles")
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22521. {
  22522. front: {
  22523. height: math.unit(6, "feet"),
  22524. weight: math.unit(300, "lb"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/beishir-kiel/front.svg",
  22528. extra: 569 / 547,
  22529. bottom: 41.9 / 609
  22530. }
  22531. },
  22532. maw: {
  22533. height: math.unit(6 * 0.202, "feet"),
  22534. name: "Maw",
  22535. image: {
  22536. source: "./media/characters/beishir-kiel/maw.svg"
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Macro",
  22543. height: math.unit(300, "feet"),
  22544. default: true
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(5 + 7/12, "feet"),
  22553. weight: math.unit(120, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/logan-grey/front.svg",
  22557. extra: 1836/1738,
  22558. bottom: 108/1944
  22559. }
  22560. },
  22561. back: {
  22562. height: math.unit(5 + 7/12, "feet"),
  22563. weight: math.unit(120, "lb"),
  22564. name: "Back",
  22565. image: {
  22566. source: "./media/characters/logan-grey/back.svg",
  22567. extra: 1880/1794,
  22568. bottom: 24/1904
  22569. }
  22570. },
  22571. frontSfw: {
  22572. height: math.unit(5 + 7/12, "feet"),
  22573. weight: math.unit(120, "lb"),
  22574. name: "Front (SFW)",
  22575. image: {
  22576. source: "./media/characters/logan-grey/front-sfw.svg",
  22577. extra: 1836/1738,
  22578. bottom: 108/1944
  22579. }
  22580. },
  22581. backSfw: {
  22582. height: math.unit(5 + 7/12, "feet"),
  22583. weight: math.unit(120, "lb"),
  22584. name: "Back (SFW)",
  22585. image: {
  22586. source: "./media/characters/logan-grey/back-sfw.svg",
  22587. extra: 1880/1794,
  22588. bottom: 24/1904
  22589. }
  22590. },
  22591. hands: {
  22592. height: math.unit(0.84, "feet"),
  22593. name: "Hands",
  22594. image: {
  22595. source: "./media/characters/logan-grey/hands.svg"
  22596. }
  22597. },
  22598. paws: {
  22599. height: math.unit(0.72, "feet"),
  22600. name: "Paws",
  22601. image: {
  22602. source: "./media/characters/logan-grey/paws.svg"
  22603. }
  22604. },
  22605. cock: {
  22606. height: math.unit(1.45, "feet"),
  22607. name: "Cock",
  22608. image: {
  22609. source: "./media/characters/logan-grey/cock.svg"
  22610. }
  22611. },
  22612. cockAlt: {
  22613. height: math.unit(1.437, "feet"),
  22614. name: "Cock (alt)",
  22615. image: {
  22616. source: "./media/characters/logan-grey/cock-alt.svg"
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Normal",
  22623. height: math.unit(5 + 8 / 12, "feet")
  22624. },
  22625. {
  22626. name: "The 500 Foot Femboy",
  22627. height: math.unit(500, "feet"),
  22628. default: true
  22629. },
  22630. {
  22631. name: "Megmacro",
  22632. height: math.unit(20, "miles")
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22638. {
  22639. front: {
  22640. height: math.unit(8 + 2 / 12, "feet"),
  22641. weight: math.unit(275, "lb"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/draganta/front.svg",
  22645. extra: 1177 / 1135,
  22646. bottom: 33.46 / 1212.1
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Normal",
  22653. height: math.unit(8 + 6 / 12, "feet"),
  22654. default: true
  22655. },
  22656. {
  22657. name: "Macro",
  22658. height: math.unit(150, "feet")
  22659. },
  22660. {
  22661. name: "Megamacro",
  22662. height: math.unit(1000, "miles")
  22663. },
  22664. ]
  22665. ))
  22666. characterMakers.push(() => makeCharacter(
  22667. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22668. {
  22669. front: {
  22670. height: math.unit(1.72, "m"),
  22671. weight: math.unit(80, "lb"),
  22672. name: "Front",
  22673. image: {
  22674. source: "./media/characters/voski/front.svg",
  22675. extra: 2076.22 / 2022.4,
  22676. bottom: 102.7 / 2177.3866
  22677. }
  22678. },
  22679. frontNsfw: {
  22680. height: math.unit(1.72, "m"),
  22681. weight: math.unit(80, "lb"),
  22682. name: "Front (NSFW)",
  22683. image: {
  22684. source: "./media/characters/voski/front-nsfw.svg",
  22685. extra: 2076.22 / 2022.4,
  22686. bottom: 102.7 / 2177.3866
  22687. }
  22688. },
  22689. back: {
  22690. height: math.unit(1.72, "m"),
  22691. weight: math.unit(80, "lb"),
  22692. name: "Back",
  22693. image: {
  22694. source: "./media/characters/voski/back.svg",
  22695. extra: 2104 / 2051,
  22696. bottom: 10.45 / 2113.63
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Normal",
  22703. height: math.unit(1.72, "m")
  22704. },
  22705. {
  22706. name: "Macro",
  22707. height: math.unit(55, "m"),
  22708. default: true
  22709. },
  22710. {
  22711. name: "Macro+",
  22712. height: math.unit(300, "m")
  22713. },
  22714. {
  22715. name: "Macro++",
  22716. height: math.unit(700, "m")
  22717. },
  22718. {
  22719. name: "Macro+++",
  22720. height: math.unit(4500, "m")
  22721. },
  22722. {
  22723. name: "Macro++++",
  22724. height: math.unit(45, "km")
  22725. },
  22726. {
  22727. name: "Macro+++++",
  22728. height: math.unit(1220, "km")
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(2.3, "m"),
  22737. weight: math.unit(304, "kg"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/icowom-lee/front.svg",
  22741. extra: 985 / 955,
  22742. bottom: 25.4 / 1012
  22743. }
  22744. },
  22745. fronttentacles: {
  22746. height: math.unit(2.3, "m"),
  22747. weight: math.unit(304, "kg"),
  22748. name: "Front-tentacles",
  22749. image: {
  22750. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22751. extra: 985 / 955,
  22752. bottom: 25.4 / 1012
  22753. }
  22754. },
  22755. back: {
  22756. height: math.unit(2.3, "m"),
  22757. weight: math.unit(304, "kg"),
  22758. name: "Back",
  22759. image: {
  22760. source: "./media/characters/icowom-lee/back.svg",
  22761. extra: 975 / 954,
  22762. bottom: 9.5 / 985
  22763. }
  22764. },
  22765. backtentacles: {
  22766. height: math.unit(2.3, "m"),
  22767. weight: math.unit(304, "kg"),
  22768. name: "Back-tentacles",
  22769. image: {
  22770. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22771. extra: 975 / 954,
  22772. bottom: 9.5 / 985
  22773. }
  22774. },
  22775. frontDressed: {
  22776. height: math.unit(2.3, "m"),
  22777. weight: math.unit(304, "kg"),
  22778. name: "Front (Dressed)",
  22779. image: {
  22780. source: "./media/characters/icowom-lee/front-dressed.svg",
  22781. extra: 3076 / 2933,
  22782. bottom: 51.4 / 3125.1889
  22783. }
  22784. },
  22785. rump: {
  22786. height: math.unit(0.776, "meters"),
  22787. name: "Rump",
  22788. image: {
  22789. source: "./media/characters/icowom-lee/rump.svg"
  22790. }
  22791. },
  22792. genitals: {
  22793. height: math.unit(0.78, "meters"),
  22794. name: "Genitals",
  22795. image: {
  22796. source: "./media/characters/icowom-lee/genitals.svg"
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(2.3, "meters"),
  22804. default: true
  22805. },
  22806. {
  22807. name: "Macro",
  22808. height: math.unit(94, "meters"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(22, "meters"),
  22818. weight: math.unit(21000, "kg"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/shock-diamond/front.svg",
  22822. extra: 2204 / 2053,
  22823. bottom: 65 / 2239.47
  22824. }
  22825. },
  22826. frontNude: {
  22827. height: math.unit(22, "meters"),
  22828. weight: math.unit(21000, "kg"),
  22829. name: "Front (Nude)",
  22830. image: {
  22831. source: "./media/characters/shock-diamond/front-nude.svg",
  22832. extra: 2514 / 2285,
  22833. bottom: 13 / 2527.56
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(3, "meters")
  22841. },
  22842. {
  22843. name: "Macro",
  22844. height: math.unit(22, "meters"),
  22845. default: true
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(5 + 4 / 12, "feet"),
  22854. weight: math.unit(120, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/rory/front.svg",
  22858. extra: 1318/1241,
  22859. bottom: 42/1360
  22860. }
  22861. },
  22862. back: {
  22863. height: math.unit(5 + 4 / 12, "feet"),
  22864. weight: math.unit(120, "lb"),
  22865. name: "Back",
  22866. image: {
  22867. source: "./media/characters/rory/back.svg",
  22868. extra: 1318/1241,
  22869. bottom: 42/1360
  22870. }
  22871. },
  22872. butt: {
  22873. height: math.unit(1.74, "feet"),
  22874. name: "Butt",
  22875. image: {
  22876. source: "./media/characters/rory/butt.svg"
  22877. }
  22878. },
  22879. dick: {
  22880. height: math.unit(1.02, "feet"),
  22881. name: "Dick",
  22882. image: {
  22883. source: "./media/characters/rory/dick.svg"
  22884. }
  22885. },
  22886. paws: {
  22887. height: math.unit(1, "feet"),
  22888. name: "Paws",
  22889. image: {
  22890. source: "./media/characters/rory/paws.svg"
  22891. }
  22892. },
  22893. frontAlt: {
  22894. height: math.unit(5 + 4 / 12, "feet"),
  22895. weight: math.unit(120, "lb"),
  22896. name: "Front (Alt)",
  22897. image: {
  22898. source: "./media/characters/rory/front-alt.svg",
  22899. extra: 589 / 556,
  22900. bottom: 45.7 / 635.76
  22901. }
  22902. },
  22903. frontAltNude: {
  22904. height: math.unit(5 + 4 / 12, "feet"),
  22905. weight: math.unit(120, "lb"),
  22906. name: "Front (Alt, Nude)",
  22907. image: {
  22908. source: "./media/characters/rory/front-alt-nude.svg",
  22909. extra: 589 / 556,
  22910. bottom: 45.7 / 635.76
  22911. }
  22912. },
  22913. side: {
  22914. height: math.unit(5 + 4 / 12, "feet"),
  22915. weight: math.unit(120, "lb"),
  22916. name: "Side",
  22917. image: {
  22918. source: "./media/characters/rory/side.svg",
  22919. extra: 597 / 564,
  22920. bottom: 55 / 653
  22921. }
  22922. },
  22923. backAlt: {
  22924. height: math.unit(5 + 4 / 12, "feet"),
  22925. weight: math.unit(120, "lb"),
  22926. name: "Back (Alt)",
  22927. image: {
  22928. source: "./media/characters/rory/back-alt.svg",
  22929. extra: 620 / 585,
  22930. bottom: 8.86 / 630.43
  22931. }
  22932. },
  22933. dickAlt: {
  22934. height: math.unit(0.86, "feet"),
  22935. name: "Dick (Alt)",
  22936. image: {
  22937. source: "./media/characters/rory/dick-alt.svg"
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(5 + 4 / 12, "feet"),
  22945. default: true
  22946. },
  22947. {
  22948. name: "Macro",
  22949. height: math.unit(100, "feet")
  22950. },
  22951. {
  22952. name: "Macro+",
  22953. height: math.unit(140, "feet")
  22954. },
  22955. {
  22956. name: "Macro++",
  22957. height: math.unit(300, "feet")
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22963. {
  22964. front: {
  22965. height: math.unit(5 + 9 / 12, "feet"),
  22966. weight: math.unit(190, "lb"),
  22967. name: "Front",
  22968. image: {
  22969. source: "./media/characters/sprisk/front.svg",
  22970. extra: 1225 / 1180,
  22971. bottom: 42.7 / 1266.4
  22972. }
  22973. },
  22974. frontNsfw: {
  22975. height: math.unit(5 + 9 / 12, "feet"),
  22976. weight: math.unit(190, "lb"),
  22977. name: "Front (NSFW)",
  22978. image: {
  22979. source: "./media/characters/sprisk/front-nsfw.svg",
  22980. extra: 1225 / 1180,
  22981. bottom: 42.7 / 1266.4
  22982. }
  22983. },
  22984. back: {
  22985. height: math.unit(5 + 9 / 12, "feet"),
  22986. weight: math.unit(190, "lb"),
  22987. name: "Back",
  22988. image: {
  22989. source: "./media/characters/sprisk/back.svg",
  22990. extra: 1247 / 1200,
  22991. bottom: 5.6 / 1253.04
  22992. }
  22993. },
  22994. },
  22995. [
  22996. {
  22997. name: "Tiny",
  22998. height: math.unit(2, "inches")
  22999. },
  23000. {
  23001. name: "Normal",
  23002. height: math.unit(5 + 9 / 12, "feet"),
  23003. default: true
  23004. },
  23005. {
  23006. name: "Mini Macro",
  23007. height: math.unit(18, "feet")
  23008. },
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(100, "feet")
  23012. },
  23013. {
  23014. name: "MACRO",
  23015. height: math.unit(50, "miles")
  23016. },
  23017. {
  23018. name: "M A C R O",
  23019. height: math.unit(300, "miles")
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23025. {
  23026. side: {
  23027. height: math.unit(15.6, "meters"),
  23028. weight: math.unit(700000, "kg"),
  23029. name: "Side",
  23030. image: {
  23031. source: "./media/characters/bunsen/side.svg",
  23032. extra: 1644 / 358
  23033. }
  23034. },
  23035. foot: {
  23036. height: math.unit(1.611 * 1644 / 358, "meter"),
  23037. name: "Foot",
  23038. image: {
  23039. source: "./media/characters/bunsen/foot.svg"
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Small",
  23046. height: math.unit(10, "feet")
  23047. },
  23048. {
  23049. name: "Normal",
  23050. height: math.unit(15.6, "meters"),
  23051. default: true
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23057. {
  23058. front: {
  23059. height: math.unit(4 + 11 / 12, "feet"),
  23060. weight: math.unit(140, "lb"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/sesh/front.svg",
  23064. extra: 3420 / 3231,
  23065. bottom: 72 / 3949.5
  23066. }
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Normal",
  23072. height: math.unit(4 + 11 / 12, "feet")
  23073. },
  23074. {
  23075. name: "Grown",
  23076. height: math.unit(15, "feet"),
  23077. default: true
  23078. },
  23079. {
  23080. name: "Macro",
  23081. height: math.unit(1500, "feet")
  23082. },
  23083. {
  23084. name: "Megamacro",
  23085. height: math.unit(30, "miles")
  23086. },
  23087. {
  23088. name: "Continental",
  23089. height: math.unit(3000, "miles")
  23090. },
  23091. {
  23092. name: "Gravity Mass",
  23093. height: math.unit(300000, "miles")
  23094. },
  23095. {
  23096. name: "Planet Buster",
  23097. height: math.unit(30000000, "miles")
  23098. },
  23099. {
  23100. name: "Big",
  23101. height: math.unit(3000000000, "miles")
  23102. },
  23103. ]
  23104. ))
  23105. characterMakers.push(() => makeCharacter(
  23106. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23107. {
  23108. front: {
  23109. height: math.unit(9, "feet"),
  23110. weight: math.unit(350, "lb"),
  23111. name: "Front",
  23112. image: {
  23113. source: "./media/characters/pepper/front.svg",
  23114. extra: 1448 / 1312,
  23115. bottom: 9.4 / 1457.88
  23116. }
  23117. },
  23118. back: {
  23119. height: math.unit(9, "feet"),
  23120. weight: math.unit(350, "lb"),
  23121. name: "Back",
  23122. image: {
  23123. source: "./media/characters/pepper/back.svg",
  23124. extra: 1423 / 1300,
  23125. bottom: 4.6 / 1429
  23126. }
  23127. },
  23128. maw: {
  23129. height: math.unit(0.932, "feet"),
  23130. name: "Maw",
  23131. image: {
  23132. source: "./media/characters/pepper/maw.svg"
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(9, "feet"),
  23140. default: true
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(6, "feet"),
  23149. weight: math.unit(150, "lb"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/maelstrom/front.svg",
  23153. extra: 2100 / 1883,
  23154. bottom: 94 / 2196.7
  23155. }
  23156. },
  23157. },
  23158. [
  23159. {
  23160. name: "Less Kaiju",
  23161. height: math.unit(200, "feet")
  23162. },
  23163. {
  23164. name: "Kaiju",
  23165. height: math.unit(400, "feet"),
  23166. default: true
  23167. },
  23168. {
  23169. name: "Kaiju-er",
  23170. height: math.unit(600, "feet")
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(6 + 5 / 12, "feet"),
  23179. weight: math.unit(180, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/lexir/front.svg",
  23183. extra: 180 / 172,
  23184. bottom: 12 / 192
  23185. }
  23186. },
  23187. back: {
  23188. height: math.unit(6 + 5 / 12, "feet"),
  23189. weight: math.unit(180, "lb"),
  23190. name: "Back",
  23191. image: {
  23192. source: "./media/characters/lexir/back.svg",
  23193. extra: 183.84 / 175.5,
  23194. bottom: 3.1 / 187
  23195. }
  23196. },
  23197. },
  23198. [
  23199. {
  23200. name: "Very Smal",
  23201. height: math.unit(1, "nm")
  23202. },
  23203. {
  23204. name: "Normal",
  23205. height: math.unit(6 + 5 / 12, "feet"),
  23206. default: true
  23207. },
  23208. {
  23209. name: "Macro",
  23210. height: math.unit(1, "mile")
  23211. },
  23212. {
  23213. name: "Megamacro",
  23214. height: math.unit(50, "miles")
  23215. },
  23216. ]
  23217. ))
  23218. characterMakers.push(() => makeCharacter(
  23219. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23220. {
  23221. front: {
  23222. height: math.unit(1.5, "meters"),
  23223. weight: math.unit(100, "lb"),
  23224. name: "Front",
  23225. image: {
  23226. source: "./media/characters/maksio/front.svg",
  23227. extra: 1549 / 1531,
  23228. bottom: 123.7 / 1674.5429
  23229. }
  23230. },
  23231. back: {
  23232. height: math.unit(1.5, "meters"),
  23233. weight: math.unit(100, "lb"),
  23234. name: "Back",
  23235. image: {
  23236. source: "./media/characters/maksio/back.svg",
  23237. extra: 1541 / 1509,
  23238. bottom: 97 / 1639
  23239. }
  23240. },
  23241. hand: {
  23242. height: math.unit(0.621, "feet"),
  23243. name: "Hand",
  23244. image: {
  23245. source: "./media/characters/maksio/hand.svg"
  23246. }
  23247. },
  23248. foot: {
  23249. height: math.unit(1.611, "feet"),
  23250. name: "Foot",
  23251. image: {
  23252. source: "./media/characters/maksio/foot.svg"
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Shrunken",
  23259. height: math.unit(10, "cm")
  23260. },
  23261. {
  23262. name: "Normal",
  23263. height: math.unit(150, "cm"),
  23264. default: true
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23270. {
  23271. front: {
  23272. height: math.unit(100, "feet"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/erza-bear/front.svg",
  23276. extra: 2449 / 2390,
  23277. bottom: 46 / 2494
  23278. }
  23279. },
  23280. back: {
  23281. height: math.unit(100, "feet"),
  23282. name: "Back",
  23283. image: {
  23284. source: "./media/characters/erza-bear/back.svg",
  23285. extra: 2489 / 2430,
  23286. bottom: 85.4 / 2480
  23287. }
  23288. },
  23289. tail: {
  23290. height: math.unit(42, "feet"),
  23291. name: "Tail",
  23292. image: {
  23293. source: "./media/characters/erza-bear/tail.svg"
  23294. }
  23295. },
  23296. tongue: {
  23297. height: math.unit(8, "feet"),
  23298. name: "Tongue",
  23299. image: {
  23300. source: "./media/characters/erza-bear/tongue.svg"
  23301. }
  23302. },
  23303. dick: {
  23304. height: math.unit(10.5, "feet"),
  23305. name: "Dick",
  23306. image: {
  23307. source: "./media/characters/erza-bear/dick.svg"
  23308. }
  23309. },
  23310. dickVertical: {
  23311. height: math.unit(16.9, "feet"),
  23312. name: "Dick (Vertical)",
  23313. image: {
  23314. source: "./media/characters/erza-bear/dick-vertical.svg"
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Macro",
  23321. height: math.unit(100, "feet"),
  23322. default: true
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(172, "cm"),
  23331. weight: math.unit(73, "kg"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/violet-flor/front.svg",
  23335. extra: 1530 / 1442,
  23336. bottom: 61.9 / 1588.8
  23337. }
  23338. },
  23339. back: {
  23340. height: math.unit(180, "cm"),
  23341. weight: math.unit(73, "kg"),
  23342. name: "Back",
  23343. image: {
  23344. source: "./media/characters/violet-flor/back.svg",
  23345. extra: 1692 / 1630,
  23346. bottom: 20 / 1712
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(172, "cm"),
  23354. default: true
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23360. {
  23361. front: {
  23362. height: math.unit(6, "feet"),
  23363. weight: math.unit(220, "lb"),
  23364. name: "Front",
  23365. image: {
  23366. source: "./media/characters/lynn-rhea/front.svg",
  23367. extra: 310 / 273
  23368. }
  23369. },
  23370. back: {
  23371. height: math.unit(6, "feet"),
  23372. weight: math.unit(220, "lb"),
  23373. name: "Back",
  23374. image: {
  23375. source: "./media/characters/lynn-rhea/back.svg",
  23376. extra: 310 / 273
  23377. }
  23378. },
  23379. dicks: {
  23380. height: math.unit(0.9, "feet"),
  23381. name: "Dicks",
  23382. image: {
  23383. source: "./media/characters/lynn-rhea/dicks.svg"
  23384. }
  23385. },
  23386. slit: {
  23387. height: math.unit(0.4, "feet"),
  23388. name: "Slit",
  23389. image: {
  23390. source: "./media/characters/lynn-rhea/slit.svg"
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Micro",
  23397. height: math.unit(1, "inch")
  23398. },
  23399. {
  23400. name: "Macro",
  23401. height: math.unit(60, "feet"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Megamacro",
  23406. height: math.unit(2, "miles")
  23407. },
  23408. {
  23409. name: "Gigamacro",
  23410. height: math.unit(3, "earths")
  23411. },
  23412. {
  23413. name: "Galactic",
  23414. height: math.unit(0.8, "galaxies")
  23415. },
  23416. ]
  23417. ))
  23418. characterMakers.push(() => makeCharacter(
  23419. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23420. {
  23421. front: {
  23422. height: math.unit(1600, "feet"),
  23423. weight: math.unit(85758785169, "kg"),
  23424. name: "Front",
  23425. image: {
  23426. source: "./media/characters/valathos/front.svg",
  23427. extra: 1451 / 1339
  23428. }
  23429. },
  23430. },
  23431. [
  23432. {
  23433. name: "Macro",
  23434. height: math.unit(1600, "feet"),
  23435. default: true
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23441. {
  23442. front: {
  23443. height: math.unit(7 + 5 / 12, "feet"),
  23444. weight: math.unit(300, "lb"),
  23445. name: "Front",
  23446. image: {
  23447. source: "./media/characters/azula/front.svg",
  23448. extra: 3208 / 2880,
  23449. bottom: 80.2 / 3277
  23450. }
  23451. },
  23452. back: {
  23453. height: math.unit(7 + 5 / 12, "feet"),
  23454. weight: math.unit(300, "lb"),
  23455. name: "Back",
  23456. image: {
  23457. source: "./media/characters/azula/back.svg",
  23458. extra: 3169 / 2822,
  23459. bottom: 150.6 / 3321
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Normal",
  23466. height: math.unit(7 + 5 / 12, "feet"),
  23467. default: true
  23468. },
  23469. {
  23470. name: "Big",
  23471. height: math.unit(20, "feet")
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23477. {
  23478. front: {
  23479. height: math.unit(5 + 1 / 12, "feet"),
  23480. weight: math.unit(110, "lb"),
  23481. name: "Front",
  23482. image: {
  23483. source: "./media/characters/rupert/front.svg",
  23484. extra: 1549 / 1495,
  23485. bottom: 54.2 / 1604.4
  23486. }
  23487. },
  23488. },
  23489. [
  23490. {
  23491. name: "Normal",
  23492. height: math.unit(5 + 1 / 12, "feet"),
  23493. default: true
  23494. },
  23495. ]
  23496. ))
  23497. characterMakers.push(() => makeCharacter(
  23498. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23499. {
  23500. front: {
  23501. height: math.unit(8 + 4 / 12, "feet"),
  23502. weight: math.unit(350, "lb"),
  23503. name: "Front",
  23504. image: {
  23505. source: "./media/characters/sheera-castellar/front.svg",
  23506. extra: 1957 / 1894,
  23507. bottom: 26.97 / 1975.017
  23508. }
  23509. },
  23510. side: {
  23511. height: math.unit(8 + 4 / 12, "feet"),
  23512. weight: math.unit(350, "lb"),
  23513. name: "Side",
  23514. image: {
  23515. source: "./media/characters/sheera-castellar/side.svg",
  23516. extra: 1957 / 1894
  23517. }
  23518. },
  23519. back: {
  23520. height: math.unit(8 + 4 / 12, "feet"),
  23521. weight: math.unit(350, "lb"),
  23522. name: "Back",
  23523. image: {
  23524. source: "./media/characters/sheera-castellar/back.svg",
  23525. extra: 1957 / 1894
  23526. }
  23527. },
  23528. angled: {
  23529. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23530. weight: math.unit(350, "lb"),
  23531. name: "Angled",
  23532. image: {
  23533. source: "./media/characters/sheera-castellar/angled.svg",
  23534. extra: 1807 / 1707,
  23535. bottom: 68 / 1875
  23536. }
  23537. },
  23538. genitals: {
  23539. height: math.unit(2.2, "feet"),
  23540. name: "Genitals",
  23541. image: {
  23542. source: "./media/characters/sheera-castellar/genitals.svg"
  23543. }
  23544. },
  23545. taur: {
  23546. height: math.unit(10 + 6/12, "feet"),
  23547. name: "Taur",
  23548. image: {
  23549. source: "./media/characters/sheera-castellar/taur.svg",
  23550. extra: 2017/1909,
  23551. bottom: 185/2202
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Normal",
  23558. height: math.unit(8 + 4 / 12, "feet")
  23559. },
  23560. {
  23561. name: "Macro",
  23562. height: math.unit(150, "feet"),
  23563. default: true
  23564. },
  23565. {
  23566. name: "Macro+",
  23567. height: math.unit(800, "feet")
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(6, "feet"),
  23576. weight: math.unit(150, "lb"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/jaipur/front.svg",
  23580. extra: 3860 / 3731,
  23581. bottom: 287 / 4140
  23582. }
  23583. },
  23584. back: {
  23585. height: math.unit(6, "feet"),
  23586. weight: math.unit(150, "lb"),
  23587. name: "Back",
  23588. image: {
  23589. source: "./media/characters/jaipur/back.svg",
  23590. extra: 4060 / 3930,
  23591. bottom: 151 / 4200
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(1.85, "meters"),
  23599. default: true
  23600. },
  23601. {
  23602. name: "Macro",
  23603. height: math.unit(150, "meters")
  23604. },
  23605. {
  23606. name: "Macro+",
  23607. height: math.unit(0.5, "miles")
  23608. },
  23609. {
  23610. name: "Macro++",
  23611. height: math.unit(2.5, "miles")
  23612. },
  23613. {
  23614. name: "Macro+++",
  23615. height: math.unit(12, "miles")
  23616. },
  23617. {
  23618. name: "Macro++++",
  23619. height: math.unit(120, "miles")
  23620. },
  23621. {
  23622. name: "Macro+++++",
  23623. height: math.unit(1200, "miles")
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(6, "feet"),
  23632. weight: math.unit(150, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/sheila-wolf/front.svg",
  23636. extra: 1931 / 1808,
  23637. bottom: 29.5 / 1960
  23638. }
  23639. },
  23640. dick: {
  23641. height: math.unit(1.464, "feet"),
  23642. name: "Dick",
  23643. image: {
  23644. source: "./media/characters/sheila-wolf/dick.svg"
  23645. }
  23646. },
  23647. muzzle: {
  23648. height: math.unit(0.513, "feet"),
  23649. name: "Muzzle",
  23650. image: {
  23651. source: "./media/characters/sheila-wolf/muzzle.svg"
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Macro",
  23658. height: math.unit(70, "feet"),
  23659. default: true
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(32, "meters"),
  23668. weight: math.unit(300000, "kg"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/almor/front.svg",
  23672. extra: 1408 / 1322,
  23673. bottom: 94.6 / 1506.5
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(32, "meters"),
  23681. default: true
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23687. {
  23688. front: {
  23689. height: math.unit(7, "feet"),
  23690. weight: math.unit(200, "lb"),
  23691. name: "Front",
  23692. image: {
  23693. source: "./media/characters/silver/front.svg",
  23694. extra: 472.1 / 450.5,
  23695. bottom: 26.5 / 499.424
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(7, "feet"),
  23703. default: true
  23704. },
  23705. {
  23706. name: "Macro",
  23707. height: math.unit(800, "feet")
  23708. },
  23709. {
  23710. name: "Megamacro",
  23711. height: math.unit(250, "miles")
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(6, "feet"),
  23720. weight: math.unit(150, "lb"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/pliskin/front.svg",
  23724. extra: 1469 / 1359,
  23725. bottom: 70 / 1540
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Micro",
  23732. height: math.unit(3, "inches")
  23733. },
  23734. {
  23735. name: "Normal",
  23736. height: math.unit(5 + 11 / 12, "feet"),
  23737. default: true
  23738. },
  23739. {
  23740. name: "Macro",
  23741. height: math.unit(120, "feet")
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23747. {
  23748. front: {
  23749. height: math.unit(6, "feet"),
  23750. weight: math.unit(150, "lb"),
  23751. name: "Front",
  23752. image: {
  23753. source: "./media/characters/sammy/front.svg",
  23754. extra: 1193 / 1089,
  23755. bottom: 30.5 / 1226
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "Macro",
  23762. height: math.unit(1700, "feet"),
  23763. default: true
  23764. },
  23765. {
  23766. name: "Examacro",
  23767. height: math.unit(2.5e9, "lightyears")
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(21, "meters"),
  23776. weight: math.unit(12, "tonnes"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/kuru/front.svg",
  23780. extra: 4301 / 3785,
  23781. bottom: 371.3 / 4691
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Macro",
  23788. height: math.unit(21, "meters"),
  23789. default: true
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23795. {
  23796. front: {
  23797. height: math.unit(23, "meters"),
  23798. weight: math.unit(12.2, "tonnes"),
  23799. name: "Front",
  23800. image: {
  23801. source: "./media/characters/rakka/front.svg",
  23802. extra: 4670 / 4169,
  23803. bottom: 301 / 4968.7
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Macro",
  23810. height: math.unit(23, "meters"),
  23811. default: true
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23817. {
  23818. front: {
  23819. height: math.unit(6, "feet"),
  23820. weight: math.unit(150, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/rhys-feline/front.svg",
  23824. extra: 2488 / 2308,
  23825. bottom: 35.67 / 2519.19
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Really Small",
  23832. height: math.unit(1, "nm")
  23833. },
  23834. {
  23835. name: "Micro",
  23836. height: math.unit(4, "inches")
  23837. },
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(4 + 10 / 12, "feet"),
  23841. default: true
  23842. },
  23843. {
  23844. name: "Macro",
  23845. height: math.unit(100, "feet")
  23846. },
  23847. {
  23848. name: "Megamacto",
  23849. height: math.unit(50, "miles")
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23855. {
  23856. side: {
  23857. height: math.unit(30, "feet"),
  23858. weight: math.unit(35000, "kg"),
  23859. name: "Side",
  23860. image: {
  23861. source: "./media/characters/alydar/side.svg",
  23862. extra: 234 / 222,
  23863. bottom: 6.5 / 241
  23864. }
  23865. },
  23866. front: {
  23867. height: math.unit(30, "feet"),
  23868. weight: math.unit(35000, "kg"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/alydar/front.svg",
  23872. extra: 223.37 / 210.2,
  23873. bottom: 22.3 / 246.76
  23874. }
  23875. },
  23876. top: {
  23877. height: math.unit(64.54, "feet"),
  23878. weight: math.unit(35000, "kg"),
  23879. name: "Top",
  23880. image: {
  23881. source: "./media/characters/alydar/top.svg"
  23882. }
  23883. },
  23884. anthro: {
  23885. height: math.unit(30, "feet"),
  23886. weight: math.unit(9000, "kg"),
  23887. name: "Anthro",
  23888. image: {
  23889. source: "./media/characters/alydar/anthro.svg",
  23890. extra: 432 / 421,
  23891. bottom: 7.18 / 440
  23892. }
  23893. },
  23894. maw: {
  23895. height: math.unit(11.693, "feet"),
  23896. name: "Maw",
  23897. image: {
  23898. source: "./media/characters/alydar/maw.svg"
  23899. }
  23900. },
  23901. head: {
  23902. height: math.unit(11.693, "feet"),
  23903. name: "Head",
  23904. image: {
  23905. source: "./media/characters/alydar/head.svg"
  23906. }
  23907. },
  23908. headAlt: {
  23909. height: math.unit(12.861, "feet"),
  23910. name: "Head (Alt)",
  23911. image: {
  23912. source: "./media/characters/alydar/head-alt.svg"
  23913. }
  23914. },
  23915. wing: {
  23916. height: math.unit(20.712, "feet"),
  23917. name: "Wing",
  23918. image: {
  23919. source: "./media/characters/alydar/wing.svg"
  23920. }
  23921. },
  23922. wingFeather: {
  23923. height: math.unit(9.662, "feet"),
  23924. name: "Wing Feather",
  23925. image: {
  23926. source: "./media/characters/alydar/wing-feather.svg"
  23927. }
  23928. },
  23929. countourFeather: {
  23930. height: math.unit(4.154, "feet"),
  23931. name: "Contour Feather",
  23932. image: {
  23933. source: "./media/characters/alydar/contour-feather.svg"
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Diplomatic",
  23940. height: math.unit(13, "feet"),
  23941. default: true
  23942. },
  23943. {
  23944. name: "Small",
  23945. height: math.unit(30, "feet")
  23946. },
  23947. {
  23948. name: "Normal",
  23949. height: math.unit(95, "feet"),
  23950. default: true
  23951. },
  23952. {
  23953. name: "Large",
  23954. height: math.unit(285, "feet")
  23955. },
  23956. {
  23957. name: "Incomprehensible",
  23958. height: math.unit(450, "megameters")
  23959. },
  23960. ]
  23961. ))
  23962. characterMakers.push(() => makeCharacter(
  23963. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23964. {
  23965. side: {
  23966. height: math.unit(11, "feet"),
  23967. weight: math.unit(1750, "kg"),
  23968. name: "Side",
  23969. image: {
  23970. source: "./media/characters/selicia/side.svg",
  23971. extra: 440 / 396,
  23972. bottom: 24.8 / 465.979
  23973. }
  23974. },
  23975. maw: {
  23976. height: math.unit(4.665, "feet"),
  23977. name: "Maw",
  23978. image: {
  23979. source: "./media/characters/selicia/maw.svg"
  23980. }
  23981. },
  23982. },
  23983. [
  23984. {
  23985. name: "Normal",
  23986. height: math.unit(11, "feet"),
  23987. default: true
  23988. },
  23989. ]
  23990. ))
  23991. characterMakers.push(() => makeCharacter(
  23992. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23993. {
  23994. side: {
  23995. height: math.unit(2 + 6 / 12, "feet"),
  23996. weight: math.unit(30, "lb"),
  23997. name: "Side",
  23998. image: {
  23999. source: "./media/characters/layla/side.svg",
  24000. extra: 244 / 188,
  24001. bottom: 18.2 / 262.1
  24002. }
  24003. },
  24004. back: {
  24005. height: math.unit(2 + 6 / 12, "feet"),
  24006. weight: math.unit(30, "lb"),
  24007. name: "Back",
  24008. image: {
  24009. source: "./media/characters/layla/back.svg",
  24010. extra: 308 / 241.5,
  24011. bottom: 8.9 / 316.8
  24012. }
  24013. },
  24014. cumming: {
  24015. height: math.unit(2 + 6 / 12, "feet"),
  24016. weight: math.unit(30, "lb"),
  24017. name: "Cumming",
  24018. image: {
  24019. source: "./media/characters/layla/cumming.svg",
  24020. extra: 342 / 279,
  24021. bottom: 595 / 938
  24022. }
  24023. },
  24024. dickFlaccid: {
  24025. height: math.unit(2.595, "feet"),
  24026. name: "Flaccid Genitals",
  24027. image: {
  24028. source: "./media/characters/layla/dick-flaccid.svg"
  24029. }
  24030. },
  24031. dickErect: {
  24032. height: math.unit(2.359, "feet"),
  24033. name: "Erect Genitals",
  24034. image: {
  24035. source: "./media/characters/layla/dick-erect.svg"
  24036. }
  24037. },
  24038. dragon: {
  24039. height: math.unit(40, "feet"),
  24040. name: "Dragon",
  24041. image: {
  24042. source: "./media/characters/layla/dragon.svg",
  24043. extra: 610/535,
  24044. bottom: 367/977
  24045. }
  24046. },
  24047. taur: {
  24048. height: math.unit(30, "feet"),
  24049. name: "Taur",
  24050. image: {
  24051. source: "./media/characters/layla/taur.svg",
  24052. extra: 1268/1199,
  24053. bottom: 112/1380
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Micro",
  24060. height: math.unit(1, "inch")
  24061. },
  24062. {
  24063. name: "Small",
  24064. height: math.unit(1, "foot")
  24065. },
  24066. {
  24067. name: "Normal",
  24068. height: math.unit(2 + 6 / 12, "feet"),
  24069. default: true
  24070. },
  24071. {
  24072. name: "Macro",
  24073. height: math.unit(200, "feet")
  24074. },
  24075. {
  24076. name: "Megamacro",
  24077. height: math.unit(1000, "miles")
  24078. },
  24079. {
  24080. name: "Planetary",
  24081. height: math.unit(8000, "miles")
  24082. },
  24083. {
  24084. name: "True Layla",
  24085. height: math.unit(200000 * 7, "multiverses")
  24086. },
  24087. ]
  24088. ))
  24089. characterMakers.push(() => makeCharacter(
  24090. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24091. {
  24092. back: {
  24093. height: math.unit(10.5, "feet"),
  24094. weight: math.unit(800, "lb"),
  24095. name: "Back",
  24096. image: {
  24097. source: "./media/characters/knox/back.svg",
  24098. extra: 1486 / 1089,
  24099. bottom: 107 / 1601.4
  24100. }
  24101. },
  24102. side: {
  24103. height: math.unit(10.5, "feet"),
  24104. weight: math.unit(800, "lb"),
  24105. name: "Side",
  24106. image: {
  24107. source: "./media/characters/knox/side.svg",
  24108. extra: 244 / 218,
  24109. bottom: 14 / 260
  24110. }
  24111. },
  24112. },
  24113. [
  24114. {
  24115. name: "Compact",
  24116. height: math.unit(10.5, "feet"),
  24117. default: true
  24118. },
  24119. {
  24120. name: "Dynamax",
  24121. height: math.unit(210, "feet")
  24122. },
  24123. {
  24124. name: "Full Macro",
  24125. height: math.unit(850, "feet")
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24131. {
  24132. front: {
  24133. height: math.unit(28, "feet"),
  24134. weight: math.unit(10500, "lb"),
  24135. name: "Front",
  24136. image: {
  24137. source: "./media/characters/kayda/front.svg",
  24138. extra: 1536 / 1428,
  24139. bottom: 68.7 / 1603
  24140. }
  24141. },
  24142. back: {
  24143. height: math.unit(28, "feet"),
  24144. weight: math.unit(10500, "lb"),
  24145. name: "Back",
  24146. image: {
  24147. source: "./media/characters/kayda/back.svg",
  24148. extra: 1557 / 1464,
  24149. bottom: 39.5 / 1597.49
  24150. }
  24151. },
  24152. dick: {
  24153. height: math.unit(3.858, "feet"),
  24154. name: "Dick",
  24155. image: {
  24156. source: "./media/characters/kayda/dick.svg"
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Macro",
  24163. height: math.unit(28, "feet"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(10 + 11 / 12, "feet"),
  24173. weight: math.unit(1400, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/brian/front.svg",
  24177. extra: 737 / 692,
  24178. bottom: 55.4 / 785
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Normal",
  24185. height: math.unit(10 + 11 / 12, "feet"),
  24186. default: true
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(5 + 8 / 12, "feet"),
  24195. weight: math.unit(140, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/khemri/front.svg",
  24199. extra: 4780 / 4059,
  24200. bottom: 80.1 / 4859.25
  24201. }
  24202. },
  24203. },
  24204. [
  24205. {
  24206. name: "Micro",
  24207. height: math.unit(6, "inches")
  24208. },
  24209. {
  24210. name: "Normal",
  24211. height: math.unit(5 + 8 / 12, "feet"),
  24212. default: true
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24218. {
  24219. front: {
  24220. height: math.unit(13, "feet"),
  24221. weight: math.unit(1700, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/felix-braveheart/front.svg",
  24225. extra: 1222 / 1157,
  24226. bottom: 53.2 / 1280
  24227. }
  24228. },
  24229. back: {
  24230. height: math.unit(13, "feet"),
  24231. weight: math.unit(1700, "lb"),
  24232. name: "Back",
  24233. image: {
  24234. source: "./media/characters/felix-braveheart/back.svg",
  24235. extra: 1277 / 1203,
  24236. bottom: 50.2 / 1327
  24237. }
  24238. },
  24239. feral: {
  24240. height: math.unit(6, "feet"),
  24241. weight: math.unit(400, "lb"),
  24242. name: "Feral",
  24243. image: {
  24244. source: "./media/characters/felix-braveheart/feral.svg",
  24245. extra: 682 / 625,
  24246. bottom: 6.9 / 688
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Normal",
  24253. height: math.unit(13, "feet"),
  24254. default: true
  24255. },
  24256. ]
  24257. ))
  24258. characterMakers.push(() => makeCharacter(
  24259. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24260. {
  24261. side: {
  24262. height: math.unit(5 + 11 / 12, "feet"),
  24263. weight: math.unit(1400, "lb"),
  24264. name: "Side",
  24265. image: {
  24266. source: "./media/characters/shadow-blade/side.svg",
  24267. extra: 1726 / 1267,
  24268. bottom: 58.4 / 1785
  24269. }
  24270. },
  24271. },
  24272. [
  24273. {
  24274. name: "Normal",
  24275. height: math.unit(5 + 11 / 12, "feet"),
  24276. default: true
  24277. },
  24278. ]
  24279. ))
  24280. characterMakers.push(() => makeCharacter(
  24281. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24282. {
  24283. front: {
  24284. height: math.unit(1 + 6 / 12, "feet"),
  24285. weight: math.unit(25, "lb"),
  24286. name: "Front",
  24287. image: {
  24288. source: "./media/characters/karla-halldor/front.svg",
  24289. extra: 1459 / 1383,
  24290. bottom: 12 / 1472
  24291. }
  24292. },
  24293. },
  24294. [
  24295. {
  24296. name: "Normal",
  24297. height: math.unit(1 + 6 / 12, "feet"),
  24298. default: true
  24299. },
  24300. ]
  24301. ))
  24302. characterMakers.push(() => makeCharacter(
  24303. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24304. {
  24305. front: {
  24306. height: math.unit(6 + 2 / 12, "feet"),
  24307. weight: math.unit(160, "lb"),
  24308. name: "Front",
  24309. image: {
  24310. source: "./media/characters/ariam/front.svg",
  24311. extra: 1073/976,
  24312. bottom: 52/1125
  24313. }
  24314. },
  24315. back: {
  24316. height: math.unit(6 + 2/12, "feet"),
  24317. weight: math.unit(160, "lb"),
  24318. name: "Back",
  24319. image: {
  24320. source: "./media/characters/ariam/back.svg",
  24321. extra: 1103/1023,
  24322. bottom: 9/1112
  24323. }
  24324. },
  24325. dressed: {
  24326. height: math.unit(6 + 2/12, "feet"),
  24327. weight: math.unit(160, "lb"),
  24328. name: "Dressed",
  24329. image: {
  24330. source: "./media/characters/ariam/dressed.svg",
  24331. extra: 1099/1009,
  24332. bottom: 25/1124
  24333. }
  24334. },
  24335. squatting: {
  24336. height: math.unit(4.1, "feet"),
  24337. weight: math.unit(160, "lb"),
  24338. name: "Squatting",
  24339. image: {
  24340. source: "./media/characters/ariam/squatting.svg",
  24341. extra: 2617 / 2112,
  24342. bottom: 61.2 / 2681,
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Normal",
  24349. height: math.unit(6 + 2 / 12, "feet"),
  24350. default: true
  24351. },
  24352. {
  24353. name: "Normal+",
  24354. height: math.unit(4, "meters")
  24355. },
  24356. {
  24357. name: "Macro",
  24358. height: math.unit(50, "meters")
  24359. },
  24360. {
  24361. name: "Macro+",
  24362. height: math.unit(100, "meters")
  24363. },
  24364. {
  24365. name: "Megamacro",
  24366. height: math.unit(20, "km")
  24367. },
  24368. {
  24369. name: "Caretaker",
  24370. height: math.unit(444, "megameters")
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24376. {
  24377. front: {
  24378. height: math.unit(1.67, "meters"),
  24379. weight: math.unit(140, "lb"),
  24380. name: "Front",
  24381. image: {
  24382. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24383. extra: 438 / 410,
  24384. bottom: 0.75 / 439
  24385. }
  24386. },
  24387. },
  24388. [
  24389. {
  24390. name: "Shrunken",
  24391. height: math.unit(7.6, "cm")
  24392. },
  24393. {
  24394. name: "Human Scale",
  24395. height: math.unit(1.67, "meters")
  24396. },
  24397. {
  24398. name: "Wolxi Scale",
  24399. height: math.unit(36.7, "meters"),
  24400. default: true
  24401. },
  24402. ]
  24403. ))
  24404. characterMakers.push(() => makeCharacter(
  24405. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24406. {
  24407. front: {
  24408. height: math.unit(1.73, "meters"),
  24409. weight: math.unit(240, "lb"),
  24410. name: "Front",
  24411. image: {
  24412. source: "./media/characters/izue-two-mothers/front.svg",
  24413. extra: 469 / 437,
  24414. bottom: 1.24 / 470.6
  24415. }
  24416. },
  24417. },
  24418. [
  24419. {
  24420. name: "Shrunken",
  24421. height: math.unit(7.86, "cm")
  24422. },
  24423. {
  24424. name: "Human Scale",
  24425. height: math.unit(1.73, "meters")
  24426. },
  24427. {
  24428. name: "Wolxi Scale",
  24429. height: math.unit(38, "meters"),
  24430. default: true
  24431. },
  24432. ]
  24433. ))
  24434. characterMakers.push(() => makeCharacter(
  24435. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24436. {
  24437. front: {
  24438. height: math.unit(1.55, "meters"),
  24439. weight: math.unit(120, "lb"),
  24440. name: "Front",
  24441. image: {
  24442. source: "./media/characters/teeku-love-shack/front.svg",
  24443. extra: 387 / 362,
  24444. bottom: 1.51 / 388
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Shrunken",
  24451. height: math.unit(7, "cm")
  24452. },
  24453. {
  24454. name: "Human Scale",
  24455. height: math.unit(1.55, "meters")
  24456. },
  24457. {
  24458. name: "Wolxi Scale",
  24459. height: math.unit(34.1, "meters"),
  24460. default: true
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(1.83, "meters"),
  24469. weight: math.unit(135, "lb"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/dejma-the-red/front.svg",
  24473. extra: 480 / 458,
  24474. bottom: 1.8 / 482
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Shrunken",
  24481. height: math.unit(8.3, "cm")
  24482. },
  24483. {
  24484. name: "Human Scale",
  24485. height: math.unit(1.83, "meters")
  24486. },
  24487. {
  24488. name: "Wolxi Scale",
  24489. height: math.unit(40, "meters"),
  24490. default: true
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(1.78, "meters"),
  24499. weight: math.unit(65, "kg"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/aki/front.svg",
  24503. extra: 452 / 415
  24504. }
  24505. },
  24506. frontNsfw: {
  24507. height: math.unit(1.78, "meters"),
  24508. weight: math.unit(65, "kg"),
  24509. name: "Front (NSFW)",
  24510. image: {
  24511. source: "./media/characters/aki/front-nsfw.svg",
  24512. extra: 452 / 415
  24513. }
  24514. },
  24515. back: {
  24516. height: math.unit(1.78, "meters"),
  24517. weight: math.unit(65, "kg"),
  24518. name: "Back",
  24519. image: {
  24520. source: "./media/characters/aki/back.svg",
  24521. extra: 452 / 415
  24522. }
  24523. },
  24524. rump: {
  24525. height: math.unit(2.05, "feet"),
  24526. name: "Rump",
  24527. image: {
  24528. source: "./media/characters/aki/rump.svg"
  24529. }
  24530. },
  24531. dick: {
  24532. height: math.unit(0.95, "feet"),
  24533. name: "Dick",
  24534. image: {
  24535. source: "./media/characters/aki/dick.svg"
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Micro",
  24542. height: math.unit(15, "cm")
  24543. },
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(178, "cm"),
  24547. default: true
  24548. },
  24549. {
  24550. name: "Macro",
  24551. height: math.unit(214, "m")
  24552. },
  24553. {
  24554. name: "Macro+",
  24555. height: math.unit(534, "m")
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(5 + 5 / 12, "feet"),
  24564. weight: math.unit(120, "lb"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/ari/front.svg",
  24568. extra: 714.5 / 682,
  24569. bottom: 8 / 722.5
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(5 + 5 / 12, "feet")
  24577. },
  24578. {
  24579. name: "Macro",
  24580. height: math.unit(100, "feet"),
  24581. default: true
  24582. },
  24583. {
  24584. name: "Megamacro",
  24585. height: math.unit(100, "miles")
  24586. },
  24587. {
  24588. name: "Gigamacro",
  24589. height: math.unit(80000, "miles")
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24595. {
  24596. side: {
  24597. height: math.unit(9, "feet"),
  24598. weight: math.unit(400, "kg"),
  24599. name: "Side",
  24600. image: {
  24601. source: "./media/characters/bolt/side.svg",
  24602. extra: 1126 / 896,
  24603. bottom: 60 / 1187.3,
  24604. }
  24605. },
  24606. },
  24607. [
  24608. {
  24609. name: "Micro",
  24610. height: math.unit(5, "inches")
  24611. },
  24612. {
  24613. name: "Normal",
  24614. height: math.unit(9, "feet"),
  24615. default: true
  24616. },
  24617. {
  24618. name: "Macro",
  24619. height: math.unit(700, "feet")
  24620. },
  24621. {
  24622. name: "Max Size",
  24623. height: math.unit(1.52e22, "yottameters")
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(4.53, "meters"),
  24632. weight: math.unit(3, "tons"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/draekon-sylviar/front.svg",
  24636. extra: 1228 / 1068,
  24637. bottom: 41 / 1270
  24638. }
  24639. },
  24640. tail: {
  24641. height: math.unit(1.772, "meter"),
  24642. name: "Tail",
  24643. image: {
  24644. source: "./media/characters/draekon-sylviar/tail.svg"
  24645. }
  24646. },
  24647. head: {
  24648. height: math.unit(1.331, "meter"),
  24649. name: "Head",
  24650. image: {
  24651. source: "./media/characters/draekon-sylviar/head.svg"
  24652. }
  24653. },
  24654. hand: {
  24655. height: math.unit(0.564, "meter"),
  24656. name: "Hand",
  24657. image: {
  24658. source: "./media/characters/draekon-sylviar/hand.svg"
  24659. }
  24660. },
  24661. foot: {
  24662. height: math.unit(0.621, "meter"),
  24663. name: "Foot",
  24664. image: {
  24665. source: "./media/characters/draekon-sylviar/foot.svg",
  24666. bottom: 32 / 324
  24667. }
  24668. },
  24669. dick: {
  24670. height: math.unit(61, "cm"),
  24671. name: "Dick",
  24672. image: {
  24673. source: "./media/characters/draekon-sylviar/dick.svg"
  24674. }
  24675. },
  24676. dickseparated: {
  24677. height: math.unit(61, "cm"),
  24678. name: "Dick-separated",
  24679. image: {
  24680. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Small",
  24687. height: math.unit(4.53 / 2, "meters"),
  24688. default: true
  24689. },
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(4.53, "meters"),
  24693. default: true
  24694. },
  24695. {
  24696. name: "Large",
  24697. height: math.unit(4.53 * 2, "meters"),
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24703. {
  24704. front: {
  24705. height: math.unit(6 + 2 / 12, "feet"),
  24706. weight: math.unit(180, "lb"),
  24707. name: "Front",
  24708. image: {
  24709. source: "./media/characters/brawler/front.svg",
  24710. extra: 3301 / 3027,
  24711. bottom: 138 / 3439
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Normal",
  24718. height: math.unit(6 + 2 / 12, "feet"),
  24719. default: true
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24725. {
  24726. front: {
  24727. height: math.unit(11, "feet"),
  24728. weight: math.unit(1000, "lb"),
  24729. name: "Front",
  24730. image: {
  24731. source: "./media/characters/alex/front.svg",
  24732. bottom: 44.5 / 620
  24733. }
  24734. },
  24735. },
  24736. [
  24737. {
  24738. name: "Micro",
  24739. height: math.unit(5, "inches")
  24740. },
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(11, "feet"),
  24744. default: true
  24745. },
  24746. {
  24747. name: "Macro",
  24748. height: math.unit(9.5e9, "feet")
  24749. },
  24750. {
  24751. name: "Max Size",
  24752. height: math.unit(1.4e283, "yottameters")
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24758. {
  24759. female: {
  24760. height: math.unit(29.9, "m"),
  24761. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24762. name: "Female",
  24763. image: {
  24764. source: "./media/characters/zenari/female.svg",
  24765. extra: 3281.6 / 3217,
  24766. bottom: 72.2 / 3353
  24767. }
  24768. },
  24769. male: {
  24770. height: math.unit(27.7, "m"),
  24771. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24772. name: "Male",
  24773. image: {
  24774. source: "./media/characters/zenari/male.svg",
  24775. extra: 3008 / 2991,
  24776. bottom: 54.6 / 3069
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Macro",
  24783. height: math.unit(29.7, "meters"),
  24784. default: true
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24790. {
  24791. female: {
  24792. height: math.unit(23.8, "m"),
  24793. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24794. name: "Female",
  24795. image: {
  24796. source: "./media/characters/mactarian/female.svg",
  24797. extra: 2662 / 2569,
  24798. bottom: 73 / 2736
  24799. }
  24800. },
  24801. male: {
  24802. height: math.unit(23.8, "m"),
  24803. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24804. name: "Male",
  24805. image: {
  24806. source: "./media/characters/mactarian/male.svg",
  24807. extra: 2673 / 2600,
  24808. bottom: 76 / 2750
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Macro",
  24815. height: math.unit(23.8, "meters"),
  24816. default: true
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24822. {
  24823. female: {
  24824. height: math.unit(19.3, "m"),
  24825. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24826. name: "Female",
  24827. image: {
  24828. source: "./media/characters/umok/female.svg",
  24829. extra: 2186 / 2078,
  24830. bottom: 87 / 2277
  24831. }
  24832. },
  24833. male: {
  24834. height: math.unit(19.5, "m"),
  24835. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24836. name: "Male",
  24837. image: {
  24838. source: "./media/characters/umok/male.svg",
  24839. extra: 2233 / 2140,
  24840. bottom: 24.4 / 2258
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Macro",
  24847. height: math.unit(19.3, "meters"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24854. {
  24855. female: {
  24856. height: math.unit(26.15, "m"),
  24857. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24858. name: "Female",
  24859. image: {
  24860. source: "./media/characters/joraxian/female.svg",
  24861. extra: 2912 / 2824,
  24862. bottom: 36 / 2956
  24863. }
  24864. },
  24865. male: {
  24866. height: math.unit(25.4, "m"),
  24867. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24868. name: "Male",
  24869. image: {
  24870. source: "./media/characters/joraxian/male.svg",
  24871. extra: 2877 / 2721,
  24872. bottom: 82 / 2967
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Macro",
  24879. height: math.unit(26.15, "meters"),
  24880. default: true
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24886. {
  24887. female: {
  24888. height: math.unit(21.6, "m"),
  24889. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24890. name: "Female",
  24891. image: {
  24892. source: "./media/characters/sthara/female.svg",
  24893. extra: 2516 / 2347,
  24894. bottom: 21.5 / 2537
  24895. }
  24896. },
  24897. male: {
  24898. height: math.unit(24, "m"),
  24899. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24900. name: "Male",
  24901. image: {
  24902. source: "./media/characters/sthara/male.svg",
  24903. extra: 2732 / 2607,
  24904. bottom: 23 / 2732
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Macro",
  24911. height: math.unit(21.6, "meters"),
  24912. default: true
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(6 + 4 / 12, "feet"),
  24921. weight: math.unit(175, "lb"),
  24922. name: "Front",
  24923. image: {
  24924. source: "./media/characters/luka-bryzant/front.svg",
  24925. extra: 311 / 289,
  24926. bottom: 4 / 315
  24927. }
  24928. },
  24929. back: {
  24930. height: math.unit(6 + 4 / 12, "feet"),
  24931. weight: math.unit(175, "lb"),
  24932. name: "Back",
  24933. image: {
  24934. source: "./media/characters/luka-bryzant/back.svg",
  24935. extra: 311 / 289,
  24936. bottom: 3.8 / 313.7
  24937. }
  24938. },
  24939. },
  24940. [
  24941. {
  24942. name: "Micro",
  24943. height: math.unit(10, "inches")
  24944. },
  24945. {
  24946. name: "Normal",
  24947. height: math.unit(6 + 4 / 12, "feet"),
  24948. default: true
  24949. },
  24950. {
  24951. name: "Large",
  24952. height: math.unit(12, "feet")
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24958. {
  24959. front: {
  24960. height: math.unit(5 + 7 / 12, "feet"),
  24961. weight: math.unit(185, "lb"),
  24962. name: "Front",
  24963. image: {
  24964. source: "./media/characters/aman-aquila/front.svg",
  24965. extra: 1013 / 976,
  24966. bottom: 45.6 / 1057
  24967. }
  24968. },
  24969. side: {
  24970. height: math.unit(5 + 7 / 12, "feet"),
  24971. weight: math.unit(185, "lb"),
  24972. name: "Side",
  24973. image: {
  24974. source: "./media/characters/aman-aquila/side.svg",
  24975. extra: 1054 / 1011,
  24976. bottom: 15 / 1070
  24977. }
  24978. },
  24979. back: {
  24980. height: math.unit(5 + 7 / 12, "feet"),
  24981. weight: math.unit(185, "lb"),
  24982. name: "Back",
  24983. image: {
  24984. source: "./media/characters/aman-aquila/back.svg",
  24985. extra: 1026 / 970,
  24986. bottom: 12 / 1039
  24987. }
  24988. },
  24989. head: {
  24990. height: math.unit(1.211, "feet"),
  24991. name: "Head",
  24992. image: {
  24993. source: "./media/characters/aman-aquila/head.svg",
  24994. }
  24995. },
  24996. },
  24997. [
  24998. {
  24999. name: "Minimicro",
  25000. height: math.unit(0.057, "inches")
  25001. },
  25002. {
  25003. name: "Micro",
  25004. height: math.unit(7, "inches")
  25005. },
  25006. {
  25007. name: "Mini",
  25008. height: math.unit(3 + 7 / 12, "feet")
  25009. },
  25010. {
  25011. name: "Normal",
  25012. height: math.unit(5 + 7 / 12, "feet"),
  25013. default: true
  25014. },
  25015. {
  25016. name: "Macro",
  25017. height: math.unit(157 + 7 / 12, "feet")
  25018. },
  25019. {
  25020. name: "Megamacro",
  25021. height: math.unit(1557 + 7 / 12, "feet")
  25022. },
  25023. {
  25024. name: "Gigamacro",
  25025. height: math.unit(15557 + 7 / 12, "feet")
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(3 + 2 / 12, "inches"),
  25034. weight: math.unit(0.3, "ounces"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/hiphae/front.svg",
  25038. extra: 1931 / 1683,
  25039. bottom: 24 / 1955
  25040. }
  25041. },
  25042. },
  25043. [
  25044. {
  25045. name: "Normal",
  25046. height: math.unit(3 + 1 / 2, "inches"),
  25047. default: true
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25053. {
  25054. front: {
  25055. height: math.unit(5 + 10 / 12, "feet"),
  25056. weight: math.unit(165, "lb"),
  25057. name: "Front",
  25058. image: {
  25059. source: "./media/characters/nicky/front.svg",
  25060. extra: 3144 / 2886,
  25061. bottom: 45.6 / 3192
  25062. }
  25063. },
  25064. back: {
  25065. height: math.unit(5 + 10 / 12, "feet"),
  25066. weight: math.unit(165, "lb"),
  25067. name: "Back",
  25068. image: {
  25069. source: "./media/characters/nicky/back.svg",
  25070. extra: 3055 / 2804,
  25071. bottom: 28.4 / 3087
  25072. }
  25073. },
  25074. frontclothed: {
  25075. height: math.unit(5 + 10 / 12, "feet"),
  25076. weight: math.unit(165, "lb"),
  25077. name: "Front-clothed",
  25078. image: {
  25079. source: "./media/characters/nicky/front-clothed.svg",
  25080. extra: 3184.9 / 2926.9,
  25081. bottom: 86.5 / 3239.9
  25082. }
  25083. },
  25084. foot: {
  25085. height: math.unit(1.16, "feet"),
  25086. name: "Foot",
  25087. image: {
  25088. source: "./media/characters/nicky/foot.svg"
  25089. }
  25090. },
  25091. feet: {
  25092. height: math.unit(1.34, "feet"),
  25093. name: "Feet",
  25094. image: {
  25095. source: "./media/characters/nicky/feet.svg"
  25096. }
  25097. },
  25098. maw: {
  25099. height: math.unit(0.9, "feet"),
  25100. name: "Maw",
  25101. image: {
  25102. source: "./media/characters/nicky/maw.svg"
  25103. }
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Normal",
  25109. height: math.unit(5 + 10 / 12, "feet"),
  25110. default: true
  25111. },
  25112. {
  25113. name: "Macro",
  25114. height: math.unit(60, "feet")
  25115. },
  25116. {
  25117. name: "Megamacro",
  25118. height: math.unit(1, "mile")
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25124. {
  25125. side: {
  25126. height: math.unit(10, "feet"),
  25127. weight: math.unit(600, "lb"),
  25128. name: "Side",
  25129. image: {
  25130. source: "./media/characters/blair/side.svg",
  25131. bottom: 16.6 / 475,
  25132. extra: 458 / 431
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Micro",
  25139. height: math.unit(8, "inches")
  25140. },
  25141. {
  25142. name: "Normal",
  25143. height: math.unit(10, "feet"),
  25144. default: true
  25145. },
  25146. {
  25147. name: "Macro",
  25148. height: math.unit(180, "feet")
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(5 + 4 / 12, "feet"),
  25157. weight: math.unit(125, "lb"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/fisher/front.svg",
  25161. extra: 444 / 390,
  25162. bottom: 2 / 444.8
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Micro",
  25169. height: math.unit(4, "inches")
  25170. },
  25171. {
  25172. name: "Normal",
  25173. height: math.unit(5 + 4 / 12, "feet"),
  25174. default: true
  25175. },
  25176. {
  25177. name: "Macro",
  25178. height: math.unit(100, "feet")
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25184. {
  25185. front: {
  25186. height: math.unit(6.71, "feet"),
  25187. weight: math.unit(200, "lb"),
  25188. capacity: math.unit(1000000, "people"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/gliss/front.svg",
  25192. extra: 2347 / 2231,
  25193. bottom: 113 / 2462
  25194. }
  25195. },
  25196. hammerspaceSize: {
  25197. height: math.unit(6.71 * 717, "feet"),
  25198. weight: math.unit(200, "lb"),
  25199. capacity: math.unit(1000000, "people"),
  25200. name: "Hammerspace Size",
  25201. image: {
  25202. source: "./media/characters/gliss/front.svg",
  25203. extra: 2347 / 2231,
  25204. bottom: 113 / 2462
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(6.71, "feet"),
  25212. default: true
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25218. {
  25219. side: {
  25220. height: math.unit(1.44, "m"),
  25221. weight: math.unit(80, "kg"),
  25222. name: "Side",
  25223. image: {
  25224. source: "./media/characters/dune-anderson/side.svg",
  25225. bottom: 49 / 1426
  25226. }
  25227. },
  25228. },
  25229. [
  25230. {
  25231. name: "Wolf-sized",
  25232. height: math.unit(1.44, "meters")
  25233. },
  25234. {
  25235. name: "Normal",
  25236. height: math.unit(5.05, "meters"),
  25237. default: true
  25238. },
  25239. {
  25240. name: "Big",
  25241. height: math.unit(14.4, "meters")
  25242. },
  25243. {
  25244. name: "Huge",
  25245. height: math.unit(144, "meters")
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25251. {
  25252. front: {
  25253. height: math.unit(7, "feet"),
  25254. weight: math.unit(425, "lb"),
  25255. name: "Front",
  25256. image: {
  25257. source: "./media/characters/hind/front.svg",
  25258. extra: 2091 / 1860,
  25259. bottom: 129 / 2220
  25260. }
  25261. },
  25262. back: {
  25263. height: math.unit(7, "feet"),
  25264. weight: math.unit(425, "lb"),
  25265. name: "Back",
  25266. image: {
  25267. source: "./media/characters/hind/back.svg",
  25268. extra: 2091 / 1860,
  25269. bottom: 24.6 / 2309
  25270. }
  25271. },
  25272. tail: {
  25273. height: math.unit(2.8, "feet"),
  25274. name: "Tail",
  25275. image: {
  25276. source: "./media/characters/hind/tail.svg"
  25277. }
  25278. },
  25279. head: {
  25280. height: math.unit(2.55, "feet"),
  25281. name: "Head",
  25282. image: {
  25283. source: "./media/characters/hind/head.svg"
  25284. }
  25285. },
  25286. },
  25287. [
  25288. {
  25289. name: "XS",
  25290. height: math.unit(0.7, "feet")
  25291. },
  25292. {
  25293. name: "Normal",
  25294. height: math.unit(7, "feet"),
  25295. default: true
  25296. },
  25297. {
  25298. name: "XL",
  25299. height: math.unit(70, "feet")
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25305. {
  25306. front: {
  25307. height: math.unit(2.1, "meters"),
  25308. weight: math.unit(150, "lb"),
  25309. name: "Front",
  25310. image: {
  25311. source: "./media/characters/tharquench-sizestealer/front.svg",
  25312. extra: 1605/1470,
  25313. bottom: 36/1641
  25314. }
  25315. },
  25316. frontAlt: {
  25317. height: math.unit(2.1, "meters"),
  25318. weight: math.unit(150, "lb"),
  25319. name: "Front (Alt)",
  25320. image: {
  25321. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25322. extra: 2318 / 2063,
  25323. bottom: 93.4 / 2410
  25324. }
  25325. },
  25326. },
  25327. [
  25328. {
  25329. name: "Nano",
  25330. height: math.unit(1, "mm")
  25331. },
  25332. {
  25333. name: "Micro",
  25334. height: math.unit(1, "cm")
  25335. },
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(2.1, "meters"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(7 + 5 / 12, "feet"),
  25348. weight: math.unit(357, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/solex-draconov/front.svg",
  25352. extra: 1993 / 1865,
  25353. bottom: 117 / 2111
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Natural Height",
  25360. height: math.unit(7 + 5 / 12, "feet"),
  25361. default: true
  25362. },
  25363. {
  25364. name: "Macro",
  25365. height: math.unit(350, "feet")
  25366. },
  25367. {
  25368. name: "Macro+",
  25369. height: math.unit(1000, "feet")
  25370. },
  25371. {
  25372. name: "Megamacro",
  25373. height: math.unit(20, "km")
  25374. },
  25375. {
  25376. name: "Megamacro+",
  25377. height: math.unit(1000, "km")
  25378. },
  25379. {
  25380. name: "Gigamacro",
  25381. height: math.unit(2.5, "Gm")
  25382. },
  25383. {
  25384. name: "Teramacro",
  25385. height: math.unit(15, "Tm")
  25386. },
  25387. {
  25388. name: "Galactic",
  25389. height: math.unit(30, "Zm")
  25390. },
  25391. {
  25392. name: "Universal",
  25393. height: math.unit(21000, "Ym")
  25394. },
  25395. {
  25396. name: "Omniversal",
  25397. height: math.unit(9.861e50, "Ym")
  25398. },
  25399. {
  25400. name: "Existential",
  25401. height: math.unit(1e300, "meters")
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25407. {
  25408. side: {
  25409. height: math.unit(25, "feet"),
  25410. weight: math.unit(90000, "lb"),
  25411. name: "Side",
  25412. image: {
  25413. source: "./media/characters/mandarax/side.svg",
  25414. extra: 614 / 332,
  25415. bottom: 55 / 630
  25416. }
  25417. },
  25418. head: {
  25419. height: math.unit(11.4, "feet"),
  25420. name: "Head",
  25421. image: {
  25422. source: "./media/characters/mandarax/head.svg"
  25423. }
  25424. },
  25425. belly: {
  25426. height: math.unit(33, "feet"),
  25427. name: "Belly",
  25428. capacity: math.unit(500, "people"),
  25429. image: {
  25430. source: "./media/characters/mandarax/belly.svg"
  25431. }
  25432. },
  25433. dick: {
  25434. height: math.unit(8.46, "feet"),
  25435. name: "Dick",
  25436. image: {
  25437. source: "./media/characters/mandarax/dick.svg"
  25438. }
  25439. },
  25440. top: {
  25441. height: math.unit(28, "meters"),
  25442. name: "Top",
  25443. image: {
  25444. source: "./media/characters/mandarax/top.svg"
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(25, "feet"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(5, "feet"),
  25461. weight: math.unit(90, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/pixil/front.svg",
  25465. extra: 2000 / 1618,
  25466. bottom: 12.3 / 2011
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(5, "feet"),
  25474. default: true
  25475. },
  25476. {
  25477. name: "Megamacro",
  25478. height: math.unit(10, "miles"),
  25479. },
  25480. ]
  25481. ))
  25482. characterMakers.push(() => makeCharacter(
  25483. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25484. {
  25485. front: {
  25486. height: math.unit(7 + 2 / 12, "feet"),
  25487. weight: math.unit(200, "lb"),
  25488. name: "Front",
  25489. image: {
  25490. source: "./media/characters/angel/front.svg",
  25491. extra: 1830 / 1737,
  25492. bottom: 22.6 / 1854,
  25493. }
  25494. },
  25495. },
  25496. [
  25497. {
  25498. name: "Normal",
  25499. height: math.unit(7 + 2 / 12, "feet"),
  25500. default: true
  25501. },
  25502. {
  25503. name: "Macro",
  25504. height: math.unit(1000, "feet")
  25505. },
  25506. {
  25507. name: "Megamacro",
  25508. height: math.unit(2, "miles")
  25509. },
  25510. {
  25511. name: "Gigamacro",
  25512. height: math.unit(20, "earths")
  25513. },
  25514. ]
  25515. ))
  25516. characterMakers.push(() => makeCharacter(
  25517. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25518. {
  25519. front: {
  25520. height: math.unit(5, "feet"),
  25521. weight: math.unit(180, "lb"),
  25522. name: "Front",
  25523. image: {
  25524. source: "./media/characters/mekana/front.svg",
  25525. extra: 1671 / 1605,
  25526. bottom: 3.5 / 1691
  25527. }
  25528. },
  25529. side: {
  25530. height: math.unit(5, "feet"),
  25531. weight: math.unit(180, "lb"),
  25532. name: "Side",
  25533. image: {
  25534. source: "./media/characters/mekana/side.svg",
  25535. extra: 1671 / 1605,
  25536. bottom: 3.5 / 1691
  25537. }
  25538. },
  25539. back: {
  25540. height: math.unit(5, "feet"),
  25541. weight: math.unit(180, "lb"),
  25542. name: "Back",
  25543. image: {
  25544. source: "./media/characters/mekana/back.svg",
  25545. extra: 1671 / 1605,
  25546. bottom: 3.5 / 1691
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Normal",
  25553. height: math.unit(5, "feet"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25560. {
  25561. front: {
  25562. height: math.unit(4 + 6 / 12, "feet"),
  25563. weight: math.unit(80, "lb"),
  25564. name: "Front",
  25565. image: {
  25566. source: "./media/characters/pixie/front.svg",
  25567. extra: 1924 / 1825,
  25568. bottom: 22.4 / 1946
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Normal",
  25575. height: math.unit(4 + 6 / 12, "feet"),
  25576. default: true
  25577. },
  25578. {
  25579. name: "Macro",
  25580. height: math.unit(40, "feet")
  25581. },
  25582. ]
  25583. ))
  25584. characterMakers.push(() => makeCharacter(
  25585. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25586. {
  25587. front: {
  25588. height: math.unit(2.1, "meters"),
  25589. weight: math.unit(200, "lb"),
  25590. name: "Front",
  25591. image: {
  25592. source: "./media/characters/the-lascivious/front.svg",
  25593. extra: 1 / 0.893,
  25594. bottom: 3.5 / 573.7
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Human Scale",
  25601. height: math.unit(2.1, "meters")
  25602. },
  25603. {
  25604. name: "Wolxi Scale",
  25605. height: math.unit(46.2, "m"),
  25606. default: true
  25607. },
  25608. {
  25609. name: "Boinker of Buildings",
  25610. height: math.unit(10, "km")
  25611. },
  25612. {
  25613. name: "Shagger of Skyscrapers",
  25614. height: math.unit(40, "km")
  25615. },
  25616. {
  25617. name: "Banger of Boroughs",
  25618. height: math.unit(4000, "km")
  25619. },
  25620. {
  25621. name: "Screwer of States",
  25622. height: math.unit(100000, "km")
  25623. },
  25624. {
  25625. name: "Pounder of Planets",
  25626. height: math.unit(2000000, "km")
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(6, "feet"),
  25635. weight: math.unit(150, "lb"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/aj/front.svg",
  25639. extra: 2039 / 1562,
  25640. bottom: 40 / 2079
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Normal",
  25647. height: math.unit(11 + 6 / 12, "feet"),
  25648. default: true
  25649. },
  25650. {
  25651. name: "Megamacro",
  25652. height: math.unit(60, "megameters")
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25658. {
  25659. side: {
  25660. height: math.unit(31 + 8 / 12, "feet"),
  25661. weight: math.unit(75000, "kg"),
  25662. name: "Side",
  25663. image: {
  25664. source: "./media/characters/koros/side.svg",
  25665. extra: 1442 / 1297,
  25666. bottom: 122.7 / 1562
  25667. }
  25668. },
  25669. dicksKingsCrown: {
  25670. height: math.unit(6, "feet"),
  25671. name: "Dicks (King's Crown)",
  25672. image: {
  25673. source: "./media/characters/koros/dicks-kings-crown.svg"
  25674. }
  25675. },
  25676. dicksTailSet: {
  25677. height: math.unit(3, "feet"),
  25678. name: "Dicks (Tail Set)",
  25679. image: {
  25680. source: "./media/characters/koros/dicks-tail-set.svg"
  25681. }
  25682. },
  25683. dickCumming: {
  25684. height: math.unit(7.98, "feet"),
  25685. name: "Dick (Cumming)",
  25686. image: {
  25687. source: "./media/characters/koros/dick-cumming.svg"
  25688. }
  25689. },
  25690. dicksBack: {
  25691. height: math.unit(5.9, "feet"),
  25692. name: "Dicks (Back)",
  25693. image: {
  25694. source: "./media/characters/koros/dicks-back.svg"
  25695. }
  25696. },
  25697. dicksFront: {
  25698. height: math.unit(3.72, "feet"),
  25699. name: "Dicks (Front)",
  25700. image: {
  25701. source: "./media/characters/koros/dicks-front.svg"
  25702. }
  25703. },
  25704. dicksPeeking: {
  25705. height: math.unit(3.0, "feet"),
  25706. name: "Dicks (Peeking)",
  25707. image: {
  25708. source: "./media/characters/koros/dicks-peeking.svg"
  25709. }
  25710. },
  25711. eye: {
  25712. height: math.unit(1.7, "feet"),
  25713. name: "Eye",
  25714. image: {
  25715. source: "./media/characters/koros/eye.svg"
  25716. }
  25717. },
  25718. headFront: {
  25719. height: math.unit(11.69, "feet"),
  25720. name: "Head (Front)",
  25721. image: {
  25722. source: "./media/characters/koros/head-front.svg"
  25723. }
  25724. },
  25725. headSide: {
  25726. height: math.unit(14, "feet"),
  25727. name: "Head (Side)",
  25728. image: {
  25729. source: "./media/characters/koros/head-side.svg"
  25730. }
  25731. },
  25732. leg: {
  25733. height: math.unit(17, "feet"),
  25734. name: "Leg",
  25735. image: {
  25736. source: "./media/characters/koros/leg.svg"
  25737. }
  25738. },
  25739. mawSide: {
  25740. height: math.unit(12.8, "feet"),
  25741. name: "Maw (Side)",
  25742. image: {
  25743. source: "./media/characters/koros/maw-side.svg"
  25744. }
  25745. },
  25746. mawSpitting: {
  25747. height: math.unit(17, "feet"),
  25748. name: "Maw (Spitting)",
  25749. image: {
  25750. source: "./media/characters/koros/maw-spitting.svg"
  25751. }
  25752. },
  25753. slit: {
  25754. height: math.unit(2.8, "feet"),
  25755. name: "Slit",
  25756. image: {
  25757. source: "./media/characters/koros/slit.svg"
  25758. }
  25759. },
  25760. stomach: {
  25761. height: math.unit(6.8, "feet"),
  25762. capacity: math.unit(20, "people"),
  25763. name: "Stomach",
  25764. image: {
  25765. source: "./media/characters/koros/stomach.svg"
  25766. }
  25767. },
  25768. wingspanBottom: {
  25769. height: math.unit(114, "feet"),
  25770. name: "Wingspan (Bottom)",
  25771. image: {
  25772. source: "./media/characters/koros/wingspan-bottom.svg"
  25773. }
  25774. },
  25775. wingspanTop: {
  25776. height: math.unit(104, "feet"),
  25777. name: "Wingspan (Top)",
  25778. image: {
  25779. source: "./media/characters/koros/wingspan-top.svg"
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Normal",
  25786. height: math.unit(31 + 8 / 12, "feet"),
  25787. default: true
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(18 + 5 / 12, "feet"),
  25796. weight: math.unit(3750, "kg"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/vexx/front.svg",
  25800. extra: 426 / 396,
  25801. bottom: 31.5 / 458
  25802. }
  25803. },
  25804. maw: {
  25805. height: math.unit(6, "feet"),
  25806. name: "Maw",
  25807. image: {
  25808. source: "./media/characters/vexx/maw.svg"
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Normal",
  25815. height: math.unit(18 + 5 / 12, "feet"),
  25816. default: true
  25817. },
  25818. ]
  25819. ))
  25820. characterMakers.push(() => makeCharacter(
  25821. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25822. {
  25823. front: {
  25824. height: math.unit(17 + 6 / 12, "feet"),
  25825. weight: math.unit(150, "lb"),
  25826. name: "Front",
  25827. image: {
  25828. source: "./media/characters/baadra/front.svg",
  25829. extra: 3137 / 2890,
  25830. bottom: 168.4 / 3305
  25831. }
  25832. },
  25833. back: {
  25834. height: math.unit(17 + 6 / 12, "feet"),
  25835. weight: math.unit(150, "lb"),
  25836. name: "Back",
  25837. image: {
  25838. source: "./media/characters/baadra/back.svg",
  25839. extra: 3142 / 2890,
  25840. bottom: 220 / 3371
  25841. }
  25842. },
  25843. head: {
  25844. height: math.unit(5.45, "feet"),
  25845. name: "Head",
  25846. image: {
  25847. source: "./media/characters/baadra/head.svg"
  25848. }
  25849. },
  25850. headAngry: {
  25851. height: math.unit(4.95, "feet"),
  25852. name: "Head (Angry)",
  25853. image: {
  25854. source: "./media/characters/baadra/head-angry.svg"
  25855. }
  25856. },
  25857. headOpen: {
  25858. height: math.unit(6, "feet"),
  25859. name: "Head (Open)",
  25860. image: {
  25861. source: "./media/characters/baadra/head-open.svg"
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(17 + 6 / 12, "feet"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(7 + 3 / 12, "feet"),
  25878. weight: math.unit(180, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/juri/front.svg",
  25882. extra: 1401 / 1237,
  25883. bottom: 18.5 / 1418
  25884. }
  25885. },
  25886. side: {
  25887. height: math.unit(7 + 3 / 12, "feet"),
  25888. weight: math.unit(180, "lb"),
  25889. name: "Side",
  25890. image: {
  25891. source: "./media/characters/juri/side.svg",
  25892. extra: 1424 / 1242,
  25893. bottom: 18.5 / 1447
  25894. }
  25895. },
  25896. sitting: {
  25897. height: math.unit(6, "feet"),
  25898. weight: math.unit(180, "lb"),
  25899. name: "Sitting",
  25900. image: {
  25901. source: "./media/characters/juri/sitting.svg",
  25902. extra: 1270 / 1143,
  25903. bottom: 100 / 1343
  25904. }
  25905. },
  25906. back: {
  25907. height: math.unit(7 + 3 / 12, "feet"),
  25908. weight: math.unit(180, "lb"),
  25909. name: "Back",
  25910. image: {
  25911. source: "./media/characters/juri/back.svg",
  25912. extra: 1377 / 1240,
  25913. bottom: 23.7 / 1405
  25914. }
  25915. },
  25916. maw: {
  25917. height: math.unit(2.8, "feet"),
  25918. name: "Maw",
  25919. image: {
  25920. source: "./media/characters/juri/maw.svg"
  25921. }
  25922. },
  25923. stomach: {
  25924. height: math.unit(0.89, "feet"),
  25925. capacity: math.unit(4, "liters"),
  25926. name: "Stomach",
  25927. image: {
  25928. source: "./media/characters/juri/stomach.svg"
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(7 + 3 / 12, "feet"),
  25936. default: true
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25942. {
  25943. fox: {
  25944. height: math.unit(5 + 6 / 12, "feet"),
  25945. weight: math.unit(140, "lb"),
  25946. name: "Fox",
  25947. image: {
  25948. source: "./media/characters/maxene-sita/fox.svg",
  25949. extra: 146 / 138,
  25950. bottom: 2.1 / 148.19
  25951. }
  25952. },
  25953. foxLaying: {
  25954. height: math.unit(1.70, "feet"),
  25955. weight: math.unit(140, "lb"),
  25956. name: "Fox (Laying)",
  25957. image: {
  25958. source: "./media/characters/maxene-sita/fox-laying.svg",
  25959. extra: 910 / 572,
  25960. bottom: 71 / 981
  25961. }
  25962. },
  25963. kitsune: {
  25964. height: math.unit(10, "feet"),
  25965. weight: math.unit(800, "lb"),
  25966. name: "Kitsune",
  25967. image: {
  25968. source: "./media/characters/maxene-sita/kitsune.svg",
  25969. extra: 185 / 176,
  25970. bottom: 4.7 / 189.9
  25971. }
  25972. },
  25973. hellhound: {
  25974. height: math.unit(10, "feet"),
  25975. weight: math.unit(700, "lb"),
  25976. name: "Hellhound",
  25977. image: {
  25978. source: "./media/characters/maxene-sita/hellhound.svg",
  25979. extra: 1600 / 1545,
  25980. bottom: 81 / 1681
  25981. }
  25982. },
  25983. },
  25984. [
  25985. {
  25986. name: "Normal",
  25987. height: math.unit(5 + 6 / 12, "feet"),
  25988. default: true
  25989. },
  25990. ]
  25991. ))
  25992. characterMakers.push(() => makeCharacter(
  25993. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25994. {
  25995. front: {
  25996. height: math.unit(3 + 4 / 12, "feet"),
  25997. weight: math.unit(70, "lb"),
  25998. name: "Front",
  25999. image: {
  26000. source: "./media/characters/maia/front.svg",
  26001. extra: 227 / 219.5,
  26002. bottom: 40 / 267
  26003. }
  26004. },
  26005. back: {
  26006. height: math.unit(3 + 4 / 12, "feet"),
  26007. weight: math.unit(70, "lb"),
  26008. name: "Back",
  26009. image: {
  26010. source: "./media/characters/maia/back.svg",
  26011. extra: 237 / 225
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(3 + 4 / 12, "feet"),
  26019. default: true
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(5 + 10 / 12, "feet"),
  26028. weight: math.unit(197, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/jabaro/front.svg",
  26032. extra: 225 / 216,
  26033. bottom: 5.06 / 230
  26034. }
  26035. },
  26036. back: {
  26037. height: math.unit(5 + 10 / 12, "feet"),
  26038. weight: math.unit(197, "lb"),
  26039. name: "Back",
  26040. image: {
  26041. source: "./media/characters/jabaro/back.svg",
  26042. extra: 225 / 219,
  26043. bottom: 1.9 / 227
  26044. }
  26045. },
  26046. },
  26047. [
  26048. {
  26049. name: "Normal",
  26050. height: math.unit(5 + 10 / 12, "feet"),
  26051. default: true
  26052. },
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(5 + 8 / 12, "feet"),
  26060. weight: math.unit(139, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/risa/front.svg",
  26064. extra: 270 / 260,
  26065. bottom: 11.2 / 282
  26066. }
  26067. },
  26068. back: {
  26069. height: math.unit(5 + 8 / 12, "feet"),
  26070. weight: math.unit(139, "lb"),
  26071. name: "Back",
  26072. image: {
  26073. source: "./media/characters/risa/back.svg",
  26074. extra: 264 / 255,
  26075. bottom: 4 / 268
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Normal",
  26082. height: math.unit(5 + 8 / 12, "feet"),
  26083. default: true
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(2 + 11 / 12, "feet"),
  26092. weight: math.unit(30, "lb"),
  26093. name: "Front",
  26094. image: {
  26095. source: "./media/characters/weatley/front.svg",
  26096. bottom: 10.7 / 414,
  26097. extra: 403.5 / 362
  26098. }
  26099. },
  26100. back: {
  26101. height: math.unit(2 + 11 / 12, "feet"),
  26102. weight: math.unit(30, "lb"),
  26103. name: "Back",
  26104. image: {
  26105. source: "./media/characters/weatley/back.svg",
  26106. bottom: 10.7 / 414,
  26107. extra: 403.5 / 362
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(2 + 11 / 12, "feet"),
  26115. default: true
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26121. {
  26122. front: {
  26123. height: math.unit(5 + 2 / 12, "feet"),
  26124. weight: math.unit(50, "kg"),
  26125. name: "Front",
  26126. image: {
  26127. source: "./media/characters/mercury-crescent/front.svg",
  26128. extra: 1088 / 1033,
  26129. bottom: 18.9 / 1109
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Normal",
  26136. height: math.unit(5 + 2 / 12, "feet"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26143. {
  26144. front: {
  26145. height: math.unit(2, "feet"),
  26146. weight: math.unit(15, "kg"),
  26147. name: "Front",
  26148. image: {
  26149. source: "./media/characters/diamond-jones/front.svg",
  26150. extra: 727/723,
  26151. bottom: 46/773
  26152. }
  26153. },
  26154. },
  26155. [
  26156. {
  26157. name: "Normal",
  26158. height: math.unit(2, "feet"),
  26159. default: true
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26165. {
  26166. front: {
  26167. height: math.unit(3, "feet"),
  26168. weight: math.unit(30, "kg"),
  26169. name: "Front",
  26170. image: {
  26171. source: "./media/characters/sweet-bit/front.svg",
  26172. extra: 675 / 567,
  26173. bottom: 27.7 / 703
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(3, "feet"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26187. {
  26188. side: {
  26189. height: math.unit(9.178, "feet"),
  26190. weight: math.unit(500, "lb"),
  26191. name: "Side",
  26192. image: {
  26193. source: "./media/characters/umbrazen/side.svg",
  26194. extra: 1730 / 1473,
  26195. bottom: 34.6 / 1765
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(9.178, "feet"),
  26203. default: true
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(10, "feet"),
  26212. weight: math.unit(750, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/arlist/front.svg",
  26216. extra: 961 / 778,
  26217. bottom: 6.2 / 986
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(10, "feet"),
  26225. default: true
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26231. {
  26232. front: {
  26233. height: math.unit(5 + 1 / 12, "feet"),
  26234. weight: math.unit(110, "lb"),
  26235. name: "Front",
  26236. image: {
  26237. source: "./media/characters/aradel/front.svg",
  26238. extra: 324 / 303,
  26239. bottom: 3.6 / 329.4
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(5 + 1 / 12, "feet"),
  26247. default: true
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26253. {
  26254. front: {
  26255. height: math.unit(3 + 8 / 12, "feet"),
  26256. weight: math.unit(50, "lb"),
  26257. name: "Front",
  26258. image: {
  26259. source: "./media/characters/serryn/front.svg",
  26260. extra: 1792 / 1656,
  26261. bottom: 43.5 / 1840
  26262. }
  26263. },
  26264. },
  26265. [
  26266. {
  26267. name: "Normal",
  26268. height: math.unit(3 + 8 / 12, "feet"),
  26269. default: true
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26275. {
  26276. front: {
  26277. height: math.unit(7 + 10 / 12, "feet"),
  26278. weight: math.unit(255, "lb"),
  26279. name: "Front",
  26280. image: {
  26281. source: "./media/characters/xavier-thyme/front.svg",
  26282. extra: 3733 / 3642,
  26283. bottom: 131 / 3869
  26284. }
  26285. },
  26286. frontRaven: {
  26287. height: math.unit(7 + 10 / 12, "feet"),
  26288. weight: math.unit(255, "lb"),
  26289. name: "Front (Raven)",
  26290. image: {
  26291. source: "./media/characters/xavier-thyme/front-raven.svg",
  26292. extra: 4385 / 3642,
  26293. bottom: 131 / 4517
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(7 + 10 / 12, "feet"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26307. {
  26308. front: {
  26309. height: math.unit(1.6, "m"),
  26310. weight: math.unit(50, "kg"),
  26311. name: "Front",
  26312. image: {
  26313. source: "./media/characters/kiki/front.svg",
  26314. extra: 4682 / 3610,
  26315. bottom: 115 / 4777
  26316. }
  26317. },
  26318. },
  26319. [
  26320. {
  26321. name: "Normal",
  26322. height: math.unit(1.6, "meters"),
  26323. default: true
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(50, "m"),
  26332. weight: math.unit(500, "tonnes"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/ryoko/front.svg",
  26336. extra: 4632 / 3926,
  26337. bottom: 193 / 4823
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(50, "meters"),
  26345. default: true
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(30, "m"),
  26354. weight: math.unit(22, "tonnes"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/elio/front.svg",
  26358. extra: 4582 / 3720,
  26359. bottom: 236 / 4828
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(30, "meters"),
  26367. default: true
  26368. },
  26369. ]
  26370. ))
  26371. characterMakers.push(() => makeCharacter(
  26372. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26373. {
  26374. front: {
  26375. height: math.unit(6 + 3 / 12, "feet"),
  26376. weight: math.unit(120, "lb"),
  26377. name: "Front",
  26378. image: {
  26379. source: "./media/characters/azura/front.svg",
  26380. extra: 1149 / 1135,
  26381. bottom: 45 / 1194
  26382. }
  26383. },
  26384. frontClothed: {
  26385. height: math.unit(6 + 3 / 12, "feet"),
  26386. weight: math.unit(120, "lb"),
  26387. name: "Front (Clothed)",
  26388. image: {
  26389. source: "./media/characters/azura/front-clothed.svg",
  26390. extra: 1149 / 1135,
  26391. bottom: 45 / 1194
  26392. }
  26393. },
  26394. },
  26395. [
  26396. {
  26397. name: "Normal",
  26398. height: math.unit(6 + 3 / 12, "feet"),
  26399. default: true
  26400. },
  26401. {
  26402. name: "Macro",
  26403. height: math.unit(20 + 6 / 12, "feet")
  26404. },
  26405. {
  26406. name: "Megamacro",
  26407. height: math.unit(12, "miles")
  26408. },
  26409. {
  26410. name: "Gigamacro",
  26411. height: math.unit(10000, "miles")
  26412. },
  26413. {
  26414. name: "Teramacro",
  26415. height: math.unit(900000, "miles")
  26416. },
  26417. ]
  26418. ))
  26419. characterMakers.push(() => makeCharacter(
  26420. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26421. {
  26422. front: {
  26423. height: math.unit(12, "feet"),
  26424. weight: math.unit(1, "ton"),
  26425. capacity: math.unit(660000, "gallons"),
  26426. name: "Front",
  26427. image: {
  26428. source: "./media/characters/zeus/front.svg",
  26429. extra: 5005 / 4717,
  26430. bottom: 363 / 5388
  26431. }
  26432. },
  26433. },
  26434. [
  26435. {
  26436. name: "Normal",
  26437. height: math.unit(12, "feet")
  26438. },
  26439. {
  26440. name: "Preferred Size",
  26441. height: math.unit(0.5, "miles"),
  26442. default: true
  26443. },
  26444. {
  26445. name: "Giga Horse",
  26446. height: math.unit(300, "miles")
  26447. },
  26448. {
  26449. name: "Riding Planets",
  26450. height: math.unit(30, "megameters")
  26451. },
  26452. {
  26453. name: "Cosmic Giant",
  26454. height: math.unit(3, "zettameters")
  26455. },
  26456. {
  26457. name: "Breeding God",
  26458. height: math.unit(9.92e22, "yottameters")
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26464. {
  26465. side: {
  26466. height: math.unit(9, "feet"),
  26467. weight: math.unit(1500, "kg"),
  26468. name: "Side",
  26469. image: {
  26470. source: "./media/characters/fang/side.svg",
  26471. extra: 924 / 866,
  26472. bottom: 47.5 / 972.3
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Normal",
  26479. height: math.unit(9, "feet"),
  26480. default: true
  26481. },
  26482. {
  26483. name: "Macro",
  26484. height: math.unit(75 + 6 / 12, "feet")
  26485. },
  26486. {
  26487. name: "Teramacro",
  26488. height: math.unit(50000, "miles")
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26494. {
  26495. front: {
  26496. height: math.unit(10, "feet"),
  26497. weight: math.unit(2, "tons"),
  26498. name: "Front",
  26499. image: {
  26500. source: "./media/characters/rekhit/front.svg",
  26501. extra: 2796 / 2590,
  26502. bottom: 225 / 3022
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(10, "feet"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "Macro",
  26514. height: math.unit(500, "feet")
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(7 + 6.451 / 12, "feet"),
  26523. weight: math.unit(310, "lb"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/dahlia-verrick/front.svg",
  26527. extra: 1488 / 1365,
  26528. bottom: 6.2 / 1495
  26529. }
  26530. },
  26531. back: {
  26532. height: math.unit(7 + 6.451 / 12, "feet"),
  26533. weight: math.unit(310, "lb"),
  26534. name: "Back",
  26535. image: {
  26536. source: "./media/characters/dahlia-verrick/back.svg",
  26537. extra: 1472 / 1351,
  26538. bottom: 5.28 / 1477
  26539. }
  26540. },
  26541. frontBusiness: {
  26542. height: math.unit(7 + 6.451 / 12, "feet"),
  26543. weight: math.unit(200, "lb"),
  26544. name: "Front (Business)",
  26545. image: {
  26546. source: "./media/characters/dahlia-verrick/front-business.svg",
  26547. extra: 1478 / 1381,
  26548. bottom: 5.5 / 1484
  26549. }
  26550. },
  26551. frontCasual: {
  26552. height: math.unit(7 + 6.451 / 12, "feet"),
  26553. weight: math.unit(200, "lb"),
  26554. name: "Front (Casual)",
  26555. image: {
  26556. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26557. extra: 1478 / 1381,
  26558. bottom: 5.5 / 1484
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Travel-Sized",
  26565. height: math.unit(7.45, "inches")
  26566. },
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(7 + 6.451 / 12, "feet"),
  26570. default: true
  26571. },
  26572. {
  26573. name: "Hitting the Town",
  26574. height: math.unit(37 + 8 / 12, "feet")
  26575. },
  26576. {
  26577. name: "Stomp in the Suburbs",
  26578. height: math.unit(964 + 9.728 / 12, "feet")
  26579. },
  26580. {
  26581. name: "Sit on the City",
  26582. height: math.unit(61747 + 10.592 / 12, "feet")
  26583. },
  26584. {
  26585. name: "Glomp the Globe",
  26586. height: math.unit(252919327 + 4.832 / 12, "feet")
  26587. },
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26592. {
  26593. front: {
  26594. height: math.unit(6 + 4 / 12, "feet"),
  26595. weight: math.unit(320, "lb"),
  26596. name: "Front",
  26597. image: {
  26598. source: "./media/characters/balina-mahigan/front.svg",
  26599. extra: 447 / 428,
  26600. bottom: 18 / 466
  26601. }
  26602. },
  26603. back: {
  26604. height: math.unit(6 + 4 / 12, "feet"),
  26605. weight: math.unit(320, "lb"),
  26606. name: "Back",
  26607. image: {
  26608. source: "./media/characters/balina-mahigan/back.svg",
  26609. extra: 445 / 428,
  26610. bottom: 4.07 / 448
  26611. }
  26612. },
  26613. arm: {
  26614. height: math.unit(1.88, "feet"),
  26615. name: "Arm",
  26616. image: {
  26617. source: "./media/characters/balina-mahigan/arm.svg"
  26618. }
  26619. },
  26620. backPort: {
  26621. height: math.unit(0.685, "feet"),
  26622. name: "Back Port",
  26623. image: {
  26624. source: "./media/characters/balina-mahigan/back-port.svg"
  26625. }
  26626. },
  26627. hoofpaw: {
  26628. height: math.unit(1.41, "feet"),
  26629. name: "Hoofpaw",
  26630. image: {
  26631. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26632. }
  26633. },
  26634. leftHandBack: {
  26635. height: math.unit(0.938, "feet"),
  26636. name: "Left Hand (Back)",
  26637. image: {
  26638. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26639. }
  26640. },
  26641. leftHandFront: {
  26642. height: math.unit(0.938, "feet"),
  26643. name: "Left Hand (Front)",
  26644. image: {
  26645. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26646. }
  26647. },
  26648. rightHandBack: {
  26649. height: math.unit(0.95, "feet"),
  26650. name: "Right Hand (Back)",
  26651. image: {
  26652. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26653. }
  26654. },
  26655. rightHandFront: {
  26656. height: math.unit(0.95, "feet"),
  26657. name: "Right Hand (Front)",
  26658. image: {
  26659. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Normal",
  26666. height: math.unit(6 + 4 / 12, "feet"),
  26667. default: true
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(6, "feet"),
  26676. weight: math.unit(320, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/balina-mejeri/front.svg",
  26680. extra: 517 / 488,
  26681. bottom: 44.2 / 561
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Normal",
  26688. height: math.unit(6 + 4 / 12, "feet")
  26689. },
  26690. {
  26691. name: "Business",
  26692. height: math.unit(155, "feet"),
  26693. default: true
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26699. {
  26700. kneeling: {
  26701. height: math.unit(6 + 4 / 12, "feet"),
  26702. weight: math.unit(300 * 20, "lb"),
  26703. name: "Kneeling",
  26704. image: {
  26705. source: "./media/characters/balbarian/kneeling.svg",
  26706. extra: 922 / 862,
  26707. bottom: 42.4 / 965
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Normal",
  26714. height: math.unit(6 + 4 / 12, "feet")
  26715. },
  26716. {
  26717. name: "Treasured",
  26718. height: math.unit(18 + 9 / 12, "feet"),
  26719. default: true
  26720. },
  26721. {
  26722. name: "Macro",
  26723. height: math.unit(900, "feet")
  26724. },
  26725. ]
  26726. ))
  26727. characterMakers.push(() => makeCharacter(
  26728. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26729. {
  26730. front: {
  26731. height: math.unit(6 + 4 / 12, "feet"),
  26732. weight: math.unit(325, "lb"),
  26733. name: "Front",
  26734. image: {
  26735. source: "./media/characters/balina-amarini/front.svg",
  26736. extra: 415 / 403,
  26737. bottom: 19 / 433.4
  26738. }
  26739. },
  26740. back: {
  26741. height: math.unit(6 + 4 / 12, "feet"),
  26742. weight: math.unit(325, "lb"),
  26743. name: "Back",
  26744. image: {
  26745. source: "./media/characters/balina-amarini/back.svg",
  26746. extra: 415 / 403,
  26747. bottom: 13.5 / 432
  26748. }
  26749. },
  26750. overdrive: {
  26751. height: math.unit(6 + 4 / 12, "feet"),
  26752. weight: math.unit(400, "lb"),
  26753. name: "Overdrive",
  26754. image: {
  26755. source: "./media/characters/balina-amarini/overdrive.svg",
  26756. extra: 269 / 259,
  26757. bottom: 12 / 282
  26758. }
  26759. },
  26760. },
  26761. [
  26762. {
  26763. name: "Boom",
  26764. height: math.unit(9 + 10 / 12, "feet"),
  26765. default: true
  26766. },
  26767. {
  26768. name: "Macro",
  26769. height: math.unit(280, "feet")
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26775. {
  26776. goddess: {
  26777. height: math.unit(600, "feet"),
  26778. weight: math.unit(2000000, "tons"),
  26779. name: "Goddess",
  26780. image: {
  26781. source: "./media/characters/lady-kubwa/goddess.svg",
  26782. extra: 1240.5 / 1223,
  26783. bottom: 22 / 1263
  26784. }
  26785. },
  26786. goddesser: {
  26787. height: math.unit(900, "feet"),
  26788. weight: math.unit(20000000, "lb"),
  26789. name: "Goddess-er",
  26790. image: {
  26791. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26792. extra: 899 / 888,
  26793. bottom: 12.6 / 912
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Macro",
  26800. height: math.unit(600, "feet"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Megamacro",
  26805. height: math.unit(250, "miles")
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26811. {
  26812. front: {
  26813. height: math.unit(7 + 7 / 12, "feet"),
  26814. weight: math.unit(250, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/tala-grovehorn/front.svg",
  26818. extra: 2636 / 2525,
  26819. bottom: 147 / 2781
  26820. }
  26821. },
  26822. back: {
  26823. height: math.unit(7 + 7 / 12, "feet"),
  26824. weight: math.unit(250, "lb"),
  26825. name: "Back",
  26826. image: {
  26827. source: "./media/characters/tala-grovehorn/back.svg",
  26828. extra: 2635 / 2539,
  26829. bottom: 100 / 2732.8
  26830. }
  26831. },
  26832. mouth: {
  26833. height: math.unit(1.15, "feet"),
  26834. name: "Mouth",
  26835. image: {
  26836. source: "./media/characters/tala-grovehorn/mouth.svg"
  26837. }
  26838. },
  26839. dick: {
  26840. height: math.unit(2.36, "feet"),
  26841. name: "Dick",
  26842. image: {
  26843. source: "./media/characters/tala-grovehorn/dick.svg"
  26844. }
  26845. },
  26846. slit: {
  26847. height: math.unit(0.61, "feet"),
  26848. name: "Slit",
  26849. image: {
  26850. source: "./media/characters/tala-grovehorn/slit.svg"
  26851. }
  26852. },
  26853. },
  26854. [
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(7 + 7 / 12, "feet"),
  26862. weight: math.unit(225, "lb"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/epona/front.svg",
  26866. extra: 2445 / 2290,
  26867. bottom: 251 / 2696
  26868. }
  26869. },
  26870. back: {
  26871. height: math.unit(7 + 7 / 12, "feet"),
  26872. weight: math.unit(225, "lb"),
  26873. name: "Back",
  26874. image: {
  26875. source: "./media/characters/epona/back.svg",
  26876. extra: 2546 / 2408,
  26877. bottom: 44 / 2589
  26878. }
  26879. },
  26880. genitals: {
  26881. height: math.unit(1.5, "feet"),
  26882. name: "Genitals",
  26883. image: {
  26884. source: "./media/characters/epona/genitals.svg"
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(7 + 7 / 12, "feet"),
  26892. default: true
  26893. },
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26898. {
  26899. front: {
  26900. height: math.unit(7, "feet"),
  26901. weight: math.unit(518, "lb"),
  26902. name: "Front",
  26903. image: {
  26904. source: "./media/characters/avia-bloodbourn/front.svg",
  26905. extra: 1466 / 1350,
  26906. bottom: 65 / 1527
  26907. }
  26908. },
  26909. },
  26910. [
  26911. ]
  26912. ))
  26913. characterMakers.push(() => makeCharacter(
  26914. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26915. {
  26916. front: {
  26917. height: math.unit(9.35, "feet"),
  26918. weight: math.unit(600, "lb"),
  26919. name: "Front",
  26920. image: {
  26921. source: "./media/characters/amera/front.svg",
  26922. extra: 891 / 818,
  26923. bottom: 30 / 922.7
  26924. }
  26925. },
  26926. back: {
  26927. height: math.unit(9.35, "feet"),
  26928. weight: math.unit(600, "lb"),
  26929. name: "Back",
  26930. image: {
  26931. source: "./media/characters/amera/back.svg",
  26932. extra: 876 / 824,
  26933. bottom: 6.8 / 884
  26934. }
  26935. },
  26936. dick: {
  26937. height: math.unit(2.14, "feet"),
  26938. name: "Dick",
  26939. image: {
  26940. source: "./media/characters/amera/dick.svg"
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(9.35, "feet"),
  26948. default: true
  26949. },
  26950. ]
  26951. ))
  26952. characterMakers.push(() => makeCharacter(
  26953. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26954. {
  26955. kneeling: {
  26956. height: math.unit(3 + 4 / 12, "feet"),
  26957. weight: math.unit(90, "lb"),
  26958. name: "Kneeling",
  26959. image: {
  26960. source: "./media/characters/rosewen/kneeling.svg",
  26961. extra: 1835 / 1571,
  26962. bottom: 27.7 / 1862
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(3 + 4 / 12, "feet"),
  26970. default: true
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(5 + 10 / 12, "feet"),
  26979. weight: math.unit(200, "lb"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/sabah/front.svg",
  26983. extra: 849 / 763,
  26984. bottom: 33.9 / 881
  26985. }
  26986. },
  26987. },
  26988. [
  26989. {
  26990. name: "Normal",
  26991. height: math.unit(5 + 10 / 12, "feet"),
  26992. default: true
  26993. },
  26994. ]
  26995. ))
  26996. characterMakers.push(() => makeCharacter(
  26997. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26998. {
  26999. front: {
  27000. height: math.unit(3 + 5 / 12, "feet"),
  27001. weight: math.unit(40, "kg"),
  27002. name: "Front",
  27003. image: {
  27004. source: "./media/characters/purple-flame/front.svg",
  27005. extra: 1577 / 1412,
  27006. bottom: 97 / 1694
  27007. }
  27008. },
  27009. frontDressed: {
  27010. height: math.unit(3 + 5 / 12, "feet"),
  27011. weight: math.unit(40, "kg"),
  27012. name: "Front (Dressed)",
  27013. image: {
  27014. source: "./media/characters/purple-flame/front-dressed.svg",
  27015. extra: 1577 / 1412,
  27016. bottom: 97 / 1694
  27017. }
  27018. },
  27019. headphones: {
  27020. height: math.unit(0.85, "feet"),
  27021. name: "Headphones",
  27022. image: {
  27023. source: "./media/characters/purple-flame/headphones.svg"
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Really Small",
  27030. height: math.unit(5, "cm")
  27031. },
  27032. {
  27033. name: "Micro",
  27034. height: math.unit(1 + 5 / 12, "feet")
  27035. },
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(3 + 5 / 12, "feet"),
  27039. default: true
  27040. },
  27041. {
  27042. name: "Minimacro",
  27043. height: math.unit(125, "feet")
  27044. },
  27045. {
  27046. name: "Macro",
  27047. height: math.unit(0.5, "miles")
  27048. },
  27049. {
  27050. name: "Megamacro",
  27051. height: math.unit(50, "miles")
  27052. },
  27053. {
  27054. name: "Gigantic",
  27055. height: math.unit(750, "miles")
  27056. },
  27057. {
  27058. name: "Planetary",
  27059. height: math.unit(15000, "miles")
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27065. {
  27066. front: {
  27067. height: math.unit(14, "feet"),
  27068. weight: math.unit(959, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/arsenal/front.svg",
  27072. extra: 2357 / 2157,
  27073. bottom: 93 / 2458
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(14, "feet"),
  27081. default: true
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27087. {
  27088. front: {
  27089. height: math.unit(6, "feet"),
  27090. weight: math.unit(150, "lb"),
  27091. name: "Front",
  27092. image: {
  27093. source: "./media/characters/adira/front.svg",
  27094. extra: 1078 / 1029,
  27095. bottom: 87 / 1166
  27096. }
  27097. },
  27098. },
  27099. [
  27100. {
  27101. name: "Micro",
  27102. height: math.unit(4, "inches"),
  27103. default: true
  27104. },
  27105. {
  27106. name: "Macro",
  27107. height: math.unit(50, "feet")
  27108. },
  27109. ]
  27110. ))
  27111. characterMakers.push(() => makeCharacter(
  27112. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27113. {
  27114. front: {
  27115. height: math.unit(16, "feet"),
  27116. weight: math.unit(1000, "lb"),
  27117. name: "Front",
  27118. image: {
  27119. source: "./media/characters/grim/front.svg",
  27120. extra: 622 / 614,
  27121. bottom: 18.1 / 642
  27122. }
  27123. },
  27124. back: {
  27125. height: math.unit(16, "feet"),
  27126. weight: math.unit(1000, "lb"),
  27127. name: "Back",
  27128. image: {
  27129. source: "./media/characters/grim/back.svg",
  27130. extra: 610.6 / 602,
  27131. bottom: 40.8 / 652
  27132. }
  27133. },
  27134. hunched: {
  27135. height: math.unit(9.75, "feet"),
  27136. weight: math.unit(1000, "lb"),
  27137. name: "Hunched",
  27138. image: {
  27139. source: "./media/characters/grim/hunched.svg",
  27140. extra: 304 / 297,
  27141. bottom: 35.4 / 394
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(16, "feet"),
  27149. default: true
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(2.3, "meters"),
  27158. weight: math.unit(300, "lb"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/sinja/front-sfw.svg",
  27162. extra: 1393 / 1294,
  27163. bottom: 70 / 1463
  27164. }
  27165. },
  27166. frontNsfw: {
  27167. height: math.unit(2.3, "meters"),
  27168. weight: math.unit(300, "lb"),
  27169. name: "Front (NSFW)",
  27170. image: {
  27171. source: "./media/characters/sinja/front-nsfw.svg",
  27172. extra: 1393 / 1294,
  27173. bottom: 70 / 1463
  27174. }
  27175. },
  27176. back: {
  27177. height: math.unit(2.3, "meters"),
  27178. weight: math.unit(300, "lb"),
  27179. name: "Back",
  27180. image: {
  27181. source: "./media/characters/sinja/back.svg",
  27182. extra: 1393 / 1294,
  27183. bottom: 70 / 1463
  27184. }
  27185. },
  27186. head: {
  27187. height: math.unit(1.771, "feet"),
  27188. name: "Head",
  27189. image: {
  27190. source: "./media/characters/sinja/head.svg"
  27191. }
  27192. },
  27193. slit: {
  27194. height: math.unit(0.8, "feet"),
  27195. name: "Slit",
  27196. image: {
  27197. source: "./media/characters/sinja/slit.svg"
  27198. }
  27199. },
  27200. },
  27201. [
  27202. {
  27203. name: "Normal",
  27204. height: math.unit(2.3, "meters")
  27205. },
  27206. {
  27207. name: "Macro",
  27208. height: math.unit(91, "meters"),
  27209. default: true
  27210. },
  27211. {
  27212. name: "Megamacro",
  27213. height: math.unit(91440, "meters")
  27214. },
  27215. {
  27216. name: "Gigamacro",
  27217. height: math.unit(60960000, "meters")
  27218. },
  27219. {
  27220. name: "Teramacro",
  27221. height: math.unit(9144000000, "meters")
  27222. },
  27223. ]
  27224. ))
  27225. characterMakers.push(() => makeCharacter(
  27226. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27227. {
  27228. front: {
  27229. height: math.unit(1.7, "meters"),
  27230. weight: math.unit(130, "lb"),
  27231. name: "Front",
  27232. image: {
  27233. source: "./media/characters/kyu/front.svg",
  27234. extra: 415 / 395,
  27235. bottom: 5 / 420
  27236. }
  27237. },
  27238. head: {
  27239. height: math.unit(1.75, "feet"),
  27240. name: "Head",
  27241. image: {
  27242. source: "./media/characters/kyu/head.svg"
  27243. }
  27244. },
  27245. foot: {
  27246. height: math.unit(0.81, "feet"),
  27247. name: "Foot",
  27248. image: {
  27249. source: "./media/characters/kyu/foot.svg"
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(1.7, "meters")
  27257. },
  27258. {
  27259. name: "Macro",
  27260. height: math.unit(131, "feet"),
  27261. default: true
  27262. },
  27263. {
  27264. name: "Megamacro",
  27265. height: math.unit(91440, "meters")
  27266. },
  27267. {
  27268. name: "Gigamacro",
  27269. height: math.unit(60960000, "meters")
  27270. },
  27271. {
  27272. name: "Teramacro",
  27273. height: math.unit(9144000000, "meters")
  27274. },
  27275. ]
  27276. ))
  27277. characterMakers.push(() => makeCharacter(
  27278. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27279. {
  27280. front: {
  27281. height: math.unit(7 + 1 / 12, "feet"),
  27282. weight: math.unit(250, "lb"),
  27283. name: "Front",
  27284. image: {
  27285. source: "./media/characters/joey/front.svg",
  27286. extra: 1791 / 1537,
  27287. bottom: 28 / 1816
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Micro",
  27294. height: math.unit(3, "inches")
  27295. },
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(7 + 1 / 12, "feet"),
  27299. default: true
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27305. {
  27306. front: {
  27307. height: math.unit(165, "cm"),
  27308. weight: math.unit(140, "lb"),
  27309. name: "Front",
  27310. image: {
  27311. source: "./media/characters/sam-evans/front.svg",
  27312. extra: 3417 / 3230,
  27313. bottom: 41.3 / 3417
  27314. }
  27315. },
  27316. frontSixTails: {
  27317. height: math.unit(165, "cm"),
  27318. weight: math.unit(140, "lb"),
  27319. name: "Front-six-tails",
  27320. image: {
  27321. source: "./media/characters/sam-evans/front-six-tails.svg",
  27322. extra: 3417 / 3230,
  27323. bottom: 41.3 / 3417
  27324. }
  27325. },
  27326. back: {
  27327. height: math.unit(165, "cm"),
  27328. weight: math.unit(140, "lb"),
  27329. name: "Back",
  27330. image: {
  27331. source: "./media/characters/sam-evans/back.svg",
  27332. extra: 3227 / 3032,
  27333. bottom: 6.8 / 3234
  27334. }
  27335. },
  27336. face: {
  27337. height: math.unit(0.68, "feet"),
  27338. name: "Face",
  27339. image: {
  27340. source: "./media/characters/sam-evans/face.svg"
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(165, "cm"),
  27348. default: true
  27349. },
  27350. {
  27351. name: "Macro",
  27352. height: math.unit(100, "meters")
  27353. },
  27354. {
  27355. name: "Macro+",
  27356. height: math.unit(800, "meters")
  27357. },
  27358. {
  27359. name: "Macro++",
  27360. height: math.unit(3, "km")
  27361. },
  27362. {
  27363. name: "Macro+++",
  27364. height: math.unit(30, "km")
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(10, "feet"),
  27373. weight: math.unit(750, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/juliet-a/front.svg",
  27377. extra: 1766 / 1720,
  27378. bottom: 43 / 1809
  27379. }
  27380. },
  27381. back: {
  27382. height: math.unit(10, "feet"),
  27383. weight: math.unit(750, "lb"),
  27384. name: "Back",
  27385. image: {
  27386. source: "./media/characters/juliet-a/back.svg",
  27387. extra: 1781 / 1734,
  27388. bottom: 35 / 1810,
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(10, "feet"),
  27396. default: true
  27397. },
  27398. {
  27399. name: "Dragon Form",
  27400. height: math.unit(250, "feet")
  27401. },
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(1000, "feet")
  27405. },
  27406. {
  27407. name: "Megamacro",
  27408. height: math.unit(10000, "feet")
  27409. }
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27414. {
  27415. regular: {
  27416. height: math.unit(7 + 3 / 12, "feet"),
  27417. weight: math.unit(260, "lb"),
  27418. name: "Regular",
  27419. image: {
  27420. source: "./media/characters/wild/regular.svg",
  27421. extra: 97.45 / 92,
  27422. bottom: 6.8 / 104.3
  27423. }
  27424. },
  27425. biggums: {
  27426. height: math.unit(8 + 6 / 12, "feet"),
  27427. weight: math.unit(425, "lb"),
  27428. name: "Biggums",
  27429. image: {
  27430. source: "./media/characters/wild/biggums.svg",
  27431. extra: 97.45 / 92,
  27432. bottom: 7.5 / 132.34
  27433. }
  27434. },
  27435. mawRegular: {
  27436. height: math.unit(1.24, "feet"),
  27437. name: "Maw (Regular)",
  27438. image: {
  27439. source: "./media/characters/wild/maw.svg"
  27440. }
  27441. },
  27442. mawBiggums: {
  27443. height: math.unit(1.47, "feet"),
  27444. name: "Maw (Biggums)",
  27445. image: {
  27446. source: "./media/characters/wild/maw.svg"
  27447. }
  27448. },
  27449. },
  27450. [
  27451. {
  27452. name: "Normal",
  27453. height: math.unit(7 + 3 / 12, "feet"),
  27454. default: true
  27455. },
  27456. ]
  27457. ))
  27458. characterMakers.push(() => makeCharacter(
  27459. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27460. {
  27461. front: {
  27462. height: math.unit(2.5, "meters"),
  27463. weight: math.unit(200, "kg"),
  27464. name: "Front",
  27465. image: {
  27466. source: "./media/characters/vidar/front.svg",
  27467. extra: 2994 / 2795,
  27468. bottom: 56 / 3061
  27469. }
  27470. },
  27471. back: {
  27472. height: math.unit(2.5, "meters"),
  27473. weight: math.unit(200, "kg"),
  27474. name: "Back",
  27475. image: {
  27476. source: "./media/characters/vidar/back.svg",
  27477. extra: 3131 / 2928,
  27478. bottom: 13.5 / 3141.5
  27479. }
  27480. },
  27481. feral: {
  27482. height: math.unit(2.5, "meters"),
  27483. weight: math.unit(2000, "kg"),
  27484. name: "Feral",
  27485. image: {
  27486. source: "./media/characters/vidar/feral.svg",
  27487. extra: 2790 / 1765,
  27488. bottom: 6 / 2796
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Normal",
  27495. height: math.unit(2.5, "meters"),
  27496. default: true
  27497. },
  27498. {
  27499. name: "Macro",
  27500. height: math.unit(100, "meters")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27506. {
  27507. front: {
  27508. height: math.unit(5 + 9 / 12, "feet"),
  27509. weight: math.unit(120, "lb"),
  27510. name: "Front",
  27511. image: {
  27512. source: "./media/characters/ash/front.svg",
  27513. extra: 2189 / 1961,
  27514. bottom: 5.2 / 2194
  27515. }
  27516. },
  27517. },
  27518. [
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(5 + 9 / 12, "feet"),
  27522. default: true
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27528. {
  27529. front: {
  27530. height: math.unit(9, "feet"),
  27531. weight: math.unit(10000, "lb"),
  27532. name: "Front",
  27533. image: {
  27534. source: "./media/characters/gygabite/front.svg",
  27535. bottom: 31.7 / 537.8,
  27536. extra: 505 / 370
  27537. }
  27538. },
  27539. },
  27540. [
  27541. {
  27542. name: "Normal",
  27543. height: math.unit(9, "feet"),
  27544. default: true
  27545. },
  27546. ]
  27547. ))
  27548. characterMakers.push(() => makeCharacter(
  27549. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27550. {
  27551. front: {
  27552. height: math.unit(12, "feet"),
  27553. weight: math.unit(35000, "lb"),
  27554. name: "Front",
  27555. image: {
  27556. source: "./media/characters/p0tat0/front.svg",
  27557. extra: 1065 / 921,
  27558. bottom: 55.7 / 1121.25
  27559. }
  27560. },
  27561. },
  27562. [
  27563. {
  27564. name: "Normal",
  27565. height: math.unit(12, "feet"),
  27566. default: true
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27572. {
  27573. side: {
  27574. height: math.unit(6.5, "feet"),
  27575. weight: math.unit(800, "lb"),
  27576. name: "Side",
  27577. image: {
  27578. source: "./media/characters/dusk/side.svg",
  27579. extra: 615 / 373,
  27580. bottom: 53 / 664
  27581. }
  27582. },
  27583. sitting: {
  27584. height: math.unit(7, "feet"),
  27585. weight: math.unit(800, "lb"),
  27586. name: "Sitting",
  27587. image: {
  27588. source: "./media/characters/dusk/sitting.svg",
  27589. extra: 753 / 425,
  27590. bottom: 33 / 774
  27591. }
  27592. },
  27593. head: {
  27594. height: math.unit(6.1, "feet"),
  27595. name: "Head",
  27596. image: {
  27597. source: "./media/characters/dusk/head.svg"
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Normal",
  27604. height: math.unit(7, "feet"),
  27605. default: true
  27606. },
  27607. ]
  27608. ))
  27609. characterMakers.push(() => makeCharacter(
  27610. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27611. {
  27612. front: {
  27613. height: math.unit(15, "feet"),
  27614. weight: math.unit(7000, "lb"),
  27615. name: "Front",
  27616. image: {
  27617. source: "./media/characters/jay-direwolf/front.svg",
  27618. extra: 1810 / 1732,
  27619. bottom: 66 / 1892
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(15, "feet"),
  27627. default: true
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(4 + 9 / 12, "feet"),
  27636. weight: math.unit(130, "lb"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/anchovie/front.svg",
  27640. extra: 382 / 350,
  27641. bottom: 25 / 409
  27642. }
  27643. },
  27644. back: {
  27645. height: math.unit(4 + 9 / 12, "feet"),
  27646. weight: math.unit(130, "lb"),
  27647. name: "Back",
  27648. image: {
  27649. source: "./media/characters/anchovie/back.svg",
  27650. extra: 385 / 352,
  27651. bottom: 16.6 / 402
  27652. }
  27653. },
  27654. frontDressed: {
  27655. height: math.unit(4 + 9 / 12, "feet"),
  27656. weight: math.unit(130, "lb"),
  27657. name: "Front (Dressed)",
  27658. image: {
  27659. source: "./media/characters/anchovie/front-dressed.svg",
  27660. extra: 382 / 350,
  27661. bottom: 25 / 409
  27662. }
  27663. },
  27664. backDressed: {
  27665. height: math.unit(4 + 9 / 12, "feet"),
  27666. weight: math.unit(130, "lb"),
  27667. name: "Back (Dressed)",
  27668. image: {
  27669. source: "./media/characters/anchovie/back-dressed.svg",
  27670. extra: 385 / 352,
  27671. bottom: 16.6 / 402
  27672. }
  27673. },
  27674. },
  27675. [
  27676. {
  27677. name: "Micro",
  27678. height: math.unit(6.4, "inches")
  27679. },
  27680. {
  27681. name: "Normal",
  27682. height: math.unit(4 + 9 / 12, "feet"),
  27683. default: true
  27684. },
  27685. ]
  27686. ))
  27687. characterMakers.push(() => makeCharacter(
  27688. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27689. {
  27690. front: {
  27691. height: math.unit(2, "meters"),
  27692. weight: math.unit(180, "lb"),
  27693. name: "Front",
  27694. image: {
  27695. source: "./media/characters/acidrenamon/front.svg",
  27696. extra: 987 / 890,
  27697. bottom: 22.8 / 1009
  27698. }
  27699. },
  27700. back: {
  27701. height: math.unit(2, "meters"),
  27702. weight: math.unit(180, "lb"),
  27703. name: "Back",
  27704. image: {
  27705. source: "./media/characters/acidrenamon/back.svg",
  27706. extra: 983 / 891,
  27707. bottom: 8.4 / 992
  27708. }
  27709. },
  27710. head: {
  27711. height: math.unit(1.92, "feet"),
  27712. name: "Head",
  27713. image: {
  27714. source: "./media/characters/acidrenamon/head.svg"
  27715. }
  27716. },
  27717. rump: {
  27718. height: math.unit(1.72, "feet"),
  27719. name: "Rump",
  27720. image: {
  27721. source: "./media/characters/acidrenamon/rump.svg"
  27722. }
  27723. },
  27724. tail: {
  27725. height: math.unit(4.2, "feet"),
  27726. name: "Tail",
  27727. image: {
  27728. source: "./media/characters/acidrenamon/tail.svg"
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(2, "meters"),
  27736. default: true
  27737. },
  27738. {
  27739. name: "Minimacro",
  27740. height: math.unit(7, "meters")
  27741. },
  27742. {
  27743. name: "Macro",
  27744. height: math.unit(200, "meters")
  27745. },
  27746. {
  27747. name: "Gigamacro",
  27748. height: math.unit(0.2, "earths")
  27749. },
  27750. ]
  27751. ))
  27752. characterMakers.push(() => makeCharacter(
  27753. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27754. {
  27755. front: {
  27756. height: math.unit(152, "feet"),
  27757. name: "Front",
  27758. image: {
  27759. source: "./media/characters/kenzie-lee/front.svg",
  27760. extra: 1869/1774,
  27761. bottom: 128/1997
  27762. }
  27763. },
  27764. side: {
  27765. height: math.unit(86, "feet"),
  27766. name: "Side",
  27767. image: {
  27768. source: "./media/characters/kenzie-lee/side.svg",
  27769. extra: 930/815,
  27770. bottom: 177/1107
  27771. }
  27772. },
  27773. paw: {
  27774. height: math.unit(15, "feet"),
  27775. name: "Paw",
  27776. image: {
  27777. source: "./media/characters/kenzie-lee/paw.svg"
  27778. }
  27779. },
  27780. },
  27781. [
  27782. {
  27783. name: "Micro",
  27784. height: math.unit(1.5, "inches")
  27785. },
  27786. {
  27787. name: "Normal",
  27788. height: math.unit(152, "feet"),
  27789. default: true
  27790. },
  27791. {
  27792. name: "Megamacro",
  27793. height: math.unit(7, "miles")
  27794. },
  27795. {
  27796. name: "Gigamacro",
  27797. height: math.unit(8000, "miles")
  27798. },
  27799. ]
  27800. ))
  27801. characterMakers.push(() => makeCharacter(
  27802. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27803. {
  27804. side: {
  27805. height: math.unit(6, "feet"),
  27806. weight: math.unit(150, "lb"),
  27807. name: "Side",
  27808. image: {
  27809. source: "./media/characters/withers/side.svg",
  27810. extra: 1830 / 1728,
  27811. bottom: 96 / 1927
  27812. }
  27813. },
  27814. front: {
  27815. height: math.unit(6, "feet"),
  27816. weight: math.unit(150, "lb"),
  27817. name: "Front",
  27818. image: {
  27819. source: "./media/characters/withers/front.svg",
  27820. extra: 1514 / 1438,
  27821. bottom: 118 / 1632
  27822. }
  27823. },
  27824. },
  27825. [
  27826. {
  27827. name: "Macro",
  27828. height: math.unit(168, "feet"),
  27829. default: true
  27830. },
  27831. {
  27832. name: "Megamacro",
  27833. height: math.unit(15, "miles")
  27834. }
  27835. ]
  27836. ))
  27837. characterMakers.push(() => makeCharacter(
  27838. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27839. {
  27840. front: {
  27841. height: math.unit(6 + 7 / 12, "feet"),
  27842. weight: math.unit(250, "lb"),
  27843. name: "Front",
  27844. image: {
  27845. source: "./media/characters/nemoskii/front.svg",
  27846. extra: 2270 / 1734,
  27847. bottom: 86 / 2354
  27848. }
  27849. },
  27850. back: {
  27851. height: math.unit(6 + 7 / 12, "feet"),
  27852. weight: math.unit(250, "lb"),
  27853. name: "Back",
  27854. image: {
  27855. source: "./media/characters/nemoskii/back.svg",
  27856. extra: 1845 / 1788,
  27857. bottom: 10.5 / 1852
  27858. }
  27859. },
  27860. head: {
  27861. height: math.unit(1.31, "feet"),
  27862. name: "Head",
  27863. image: {
  27864. source: "./media/characters/nemoskii/head.svg"
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Micro",
  27871. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27872. },
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(6 + 7 / 12, "feet"),
  27876. default: true
  27877. },
  27878. {
  27879. name: "Macro",
  27880. height: math.unit((6 + 7 / 12) * 150, "feet")
  27881. },
  27882. {
  27883. name: "Macro+",
  27884. height: math.unit((6 + 7 / 12) * 500, "feet")
  27885. },
  27886. {
  27887. name: "Megamacro",
  27888. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27894. {
  27895. front: {
  27896. height: math.unit(1, "mile"),
  27897. weight: math.unit(265261.9, "lb"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/shui/front.svg",
  27901. extra: 1633 / 1564,
  27902. bottom: 91.5 / 1726
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Macro",
  27909. height: math.unit(1, "mile"),
  27910. default: true
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(12 + 6 / 12, "feet"),
  27919. weight: math.unit(1342, "lb"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/arokh-takakura/front.svg",
  27923. extra: 1089 / 1043,
  27924. bottom: 77.4 / 1176.7
  27925. }
  27926. },
  27927. back: {
  27928. height: math.unit(12 + 6 / 12, "feet"),
  27929. weight: math.unit(1342, "lb"),
  27930. name: "Back",
  27931. image: {
  27932. source: "./media/characters/arokh-takakura/back.svg",
  27933. extra: 1046 / 1019,
  27934. bottom: 102 / 1150
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Big",
  27941. height: math.unit(12 + 6 / 12, "feet"),
  27942. default: true
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(5 + 6 / 12, "feet"),
  27951. weight: math.unit(150, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/theo/front.svg",
  27955. extra: 1184 / 1131,
  27956. bottom: 7.4 / 1191
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Micro",
  27963. height: math.unit(5, "inches")
  27964. },
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(5 + 6 / 12, "feet"),
  27968. default: true
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(5 + 9 / 12, "feet"),
  27977. weight: math.unit(130, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/cecelia-swift/front.svg",
  27981. extra: 502 / 484,
  27982. bottom: 23 / 523
  27983. }
  27984. },
  27985. back: {
  27986. height: math.unit(5 + 9 / 12, "feet"),
  27987. weight: math.unit(130, "lb"),
  27988. name: "Back",
  27989. image: {
  27990. source: "./media/characters/cecelia-swift/back.svg",
  27991. extra: 499 / 485,
  27992. bottom: 12 / 511
  27993. }
  27994. },
  27995. head: {
  27996. height: math.unit(0.90, "feet"),
  27997. name: "Head",
  27998. image: {
  27999. source: "./media/characters/cecelia-swift/head.svg"
  28000. }
  28001. },
  28002. rump: {
  28003. height: math.unit(1.75, "feet"),
  28004. name: "Rump",
  28005. image: {
  28006. source: "./media/characters/cecelia-swift/rump.svg"
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(5 + 9 / 12, "feet"),
  28014. default: true
  28015. },
  28016. {
  28017. name: "Big",
  28018. height: math.unit(50, "feet")
  28019. },
  28020. {
  28021. name: "Macro",
  28022. height: math.unit(100, "feet")
  28023. },
  28024. {
  28025. name: "Macro+",
  28026. height: math.unit(500, "feet")
  28027. },
  28028. {
  28029. name: "Macro++",
  28030. height: math.unit(1000, "feet")
  28031. },
  28032. ]
  28033. ))
  28034. characterMakers.push(() => makeCharacter(
  28035. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28036. {
  28037. front: {
  28038. height: math.unit(6, "feet"),
  28039. weight: math.unit(150, "lb"),
  28040. name: "Front",
  28041. image: {
  28042. source: "./media/characters/kaunan/front.svg",
  28043. extra: 2890 / 2523,
  28044. bottom: 49 / 2939
  28045. }
  28046. },
  28047. },
  28048. [
  28049. {
  28050. name: "Macro",
  28051. height: math.unit(150, "feet"),
  28052. default: true
  28053. },
  28054. ]
  28055. ))
  28056. characterMakers.push(() => makeCharacter(
  28057. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28058. {
  28059. front: {
  28060. height: math.unit(175, "cm"),
  28061. weight: math.unit(60, "kg"),
  28062. name: "Front",
  28063. image: {
  28064. source: "./media/characters/fei/front.svg",
  28065. extra: 1873/1723,
  28066. bottom: 53/1926
  28067. }
  28068. },
  28069. },
  28070. [
  28071. {
  28072. name: "Mortal",
  28073. height: math.unit(175, "cm")
  28074. },
  28075. {
  28076. name: "Normal",
  28077. height: math.unit(3500, "m"),
  28078. default: true
  28079. },
  28080. {
  28081. name: "Stroll",
  28082. height: math.unit(17.5, "km")
  28083. },
  28084. {
  28085. name: "Showoff",
  28086. height: math.unit(175, "km")
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(7, "feet"),
  28095. weight: math.unit(1000, "kg"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/edrax/front.svg",
  28099. extra: 2838 / 2550,
  28100. bottom: 130 / 2968
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Small",
  28107. height: math.unit(7, "feet")
  28108. },
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(1500, "meters")
  28112. },
  28113. {
  28114. name: "Mega",
  28115. height: math.unit(12000000, "km"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Megamacro",
  28120. height: math.unit(10600000, "lightyears")
  28121. },
  28122. {
  28123. name: "Hypermacro",
  28124. height: math.unit(256, "yottameters")
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(10, "feet"),
  28133. weight: math.unit(750, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/clove/front.svg",
  28137. extra: 1918/1751,
  28138. bottom: 52/1970
  28139. }
  28140. },
  28141. back: {
  28142. height: math.unit(10, "feet"),
  28143. weight: math.unit(750, "lb"),
  28144. name: "Back",
  28145. image: {
  28146. source: "./media/characters/clove/back.svg",
  28147. extra: 1912/1747,
  28148. bottom: 50/1962
  28149. }
  28150. },
  28151. },
  28152. [
  28153. {
  28154. name: "Normal",
  28155. height: math.unit(10, "feet"),
  28156. default: true
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28162. {
  28163. front: {
  28164. height: math.unit(4, "feet"),
  28165. weight: math.unit(50, "lb"),
  28166. name: "Front",
  28167. image: {
  28168. source: "./media/characters/alex-rabbit/front.svg",
  28169. extra: 507 / 458,
  28170. bottom: 18.5 / 527
  28171. }
  28172. },
  28173. back: {
  28174. height: math.unit(4, "feet"),
  28175. weight: math.unit(50, "lb"),
  28176. name: "Back",
  28177. image: {
  28178. source: "./media/characters/alex-rabbit/back.svg",
  28179. extra: 502 / 460,
  28180. bottom: 18.9 / 521
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(4, "feet"),
  28188. default: true
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28194. {
  28195. front: {
  28196. height: math.unit(1 + 3 / 12, "feet"),
  28197. weight: math.unit(80, "lb"),
  28198. name: "Front",
  28199. image: {
  28200. source: "./media/characters/zander-rose/front.svg",
  28201. extra: 916 / 797,
  28202. bottom: 17 / 933
  28203. }
  28204. },
  28205. back: {
  28206. height: math.unit(1 + 3 / 12, "feet"),
  28207. weight: math.unit(80, "lb"),
  28208. name: "Back",
  28209. image: {
  28210. source: "./media/characters/zander-rose/back.svg",
  28211. extra: 903 / 779,
  28212. bottom: 31 / 934
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(1 + 3 / 12, "feet"),
  28220. default: true
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28226. {
  28227. anthro: {
  28228. height: math.unit(6, "feet"),
  28229. weight: math.unit(150, "lb"),
  28230. name: "Anthro",
  28231. image: {
  28232. source: "./media/characters/razz/anthro.svg",
  28233. extra: 1437 / 1343,
  28234. bottom: 48 / 1485
  28235. }
  28236. },
  28237. feral: {
  28238. height: math.unit(6, "feet"),
  28239. weight: math.unit(150, "lb"),
  28240. name: "Feral",
  28241. image: {
  28242. source: "./media/characters/razz/feral.svg",
  28243. extra: 2569 / 1385,
  28244. bottom: 95 / 2664
  28245. }
  28246. },
  28247. },
  28248. [
  28249. {
  28250. name: "Normal",
  28251. height: math.unit(6, "feet"),
  28252. default: true
  28253. },
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28258. {
  28259. front: {
  28260. height: math.unit(9 + 4 / 12, "feet"),
  28261. weight: math.unit(500, "lb"),
  28262. name: "Front",
  28263. image: {
  28264. source: "./media/characters/morrigan/front.svg",
  28265. extra: 2707 / 2579,
  28266. bottom: 156 / 2863
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(9 + 4 / 12, "feet"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(5, "stories"),
  28283. weight: math.unit(4000, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/jenene/front.svg",
  28287. extra: 1780 / 1710,
  28288. bottom: 57 / 1837
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Normal",
  28295. height: math.unit(5, "stories"),
  28296. default: true
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28302. {
  28303. taurSfw: {
  28304. height: math.unit(10, "meters"),
  28305. weight: math.unit(17500, "kg"),
  28306. name: "Taur",
  28307. image: {
  28308. source: "./media/characters/faey/taur-sfw.svg",
  28309. extra: 1200 / 968,
  28310. bottom: 41 / 1241
  28311. }
  28312. },
  28313. chestmaw: {
  28314. height: math.unit(2.01, "meters"),
  28315. name: "Chestmaw",
  28316. image: {
  28317. source: "./media/characters/faey/chestmaw.svg"
  28318. }
  28319. },
  28320. foot: {
  28321. height: math.unit(2.43, "meters"),
  28322. name: "Foot",
  28323. image: {
  28324. source: "./media/characters/faey/foot.svg"
  28325. }
  28326. },
  28327. jaws: {
  28328. height: math.unit(1.66, "meters"),
  28329. name: "Jaws",
  28330. image: {
  28331. source: "./media/characters/faey/jaws.svg"
  28332. }
  28333. },
  28334. tongues: {
  28335. height: math.unit(2.01, "meters"),
  28336. name: "Tongues",
  28337. image: {
  28338. source: "./media/characters/faey/tongues.svg"
  28339. }
  28340. },
  28341. },
  28342. [
  28343. {
  28344. name: "Small",
  28345. height: math.unit(10, "meters"),
  28346. default: true
  28347. },
  28348. {
  28349. name: "Big",
  28350. height: math.unit(500000, "km")
  28351. },
  28352. ]
  28353. ))
  28354. characterMakers.push(() => makeCharacter(
  28355. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28356. {
  28357. front: {
  28358. height: math.unit(7, "feet"),
  28359. weight: math.unit(275, "lb"),
  28360. name: "Front",
  28361. image: {
  28362. source: "./media/characters/roku/front.svg",
  28363. extra: 903 / 878,
  28364. bottom: 37 / 940
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(7, "feet"),
  28372. default: true
  28373. },
  28374. {
  28375. name: "Macro",
  28376. height: math.unit(500, "feet")
  28377. },
  28378. {
  28379. name: "Megamacro",
  28380. height: math.unit(200, "miles")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(6 + 2 / 12, "feet"),
  28389. weight: math.unit(150, "lb"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/lira/front.svg",
  28393. extra: 1727 / 1605,
  28394. bottom: 26 / 1753
  28395. }
  28396. },
  28397. back: {
  28398. height: math.unit(6 + 2 / 12, "feet"),
  28399. weight: math.unit(150, "lb"),
  28400. name: "Back",
  28401. image: {
  28402. source: "./media/characters/lira/back.svg",
  28403. extra: 1713/1621,
  28404. bottom: 20/1733
  28405. }
  28406. },
  28407. hand: {
  28408. height: math.unit(0.75, "feet"),
  28409. name: "Hand",
  28410. image: {
  28411. source: "./media/characters/lira/hand.svg"
  28412. }
  28413. },
  28414. maw: {
  28415. height: math.unit(0.65, "feet"),
  28416. name: "Maw",
  28417. image: {
  28418. source: "./media/characters/lira/maw.svg"
  28419. }
  28420. },
  28421. pawDigi: {
  28422. height: math.unit(1.6, "feet"),
  28423. name: "Paw Digi",
  28424. image: {
  28425. source: "./media/characters/lira/paw-digi.svg"
  28426. }
  28427. },
  28428. pawPlanti: {
  28429. height: math.unit(1.4, "feet"),
  28430. name: "Paw Planti",
  28431. image: {
  28432. source: "./media/characters/lira/paw-planti.svg"
  28433. }
  28434. },
  28435. },
  28436. [
  28437. {
  28438. name: "Normal",
  28439. height: math.unit(6 + 2 / 12, "feet"),
  28440. default: true
  28441. },
  28442. {
  28443. name: "Macro",
  28444. height: math.unit(100, "feet")
  28445. },
  28446. {
  28447. name: "Macro²",
  28448. height: math.unit(1600, "feet")
  28449. },
  28450. {
  28451. name: "Planetary",
  28452. height: math.unit(20, "earths")
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(6, "feet"),
  28461. weight: math.unit(150, "lb"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/hadjet/front.svg",
  28465. extra: 1480 / 1346,
  28466. bottom: 26 / 1506
  28467. }
  28468. },
  28469. frontNsfw: {
  28470. height: math.unit(6, "feet"),
  28471. weight: math.unit(150, "lb"),
  28472. name: "Front (NSFW)",
  28473. image: {
  28474. source: "./media/characters/hadjet/front-nsfw.svg",
  28475. extra: 1440 / 1358,
  28476. bottom: 52 / 1492
  28477. }
  28478. },
  28479. },
  28480. [
  28481. {
  28482. name: "Macro",
  28483. height: math.unit(10, "stories"),
  28484. default: true
  28485. },
  28486. {
  28487. name: "Megamacro",
  28488. height: math.unit(1.5, "miles")
  28489. },
  28490. {
  28491. name: "Megamacro+",
  28492. height: math.unit(5, "miles")
  28493. },
  28494. ]
  28495. ))
  28496. characterMakers.push(() => makeCharacter(
  28497. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28498. {
  28499. side: {
  28500. height: math.unit(106, "feet"),
  28501. weight: math.unit(500, "tonnes"),
  28502. name: "Side",
  28503. image: {
  28504. source: "./media/characters/kodran/side.svg",
  28505. extra: 553 / 480,
  28506. bottom: 33 / 586
  28507. }
  28508. },
  28509. front: {
  28510. height: math.unit(132, "feet"),
  28511. weight: math.unit(500, "tonnes"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/kodran/front.svg",
  28515. extra: 667 / 643,
  28516. bottom: 42 / 709
  28517. }
  28518. },
  28519. flying: {
  28520. height: math.unit(350, "feet"),
  28521. weight: math.unit(500, "tonnes"),
  28522. name: "Flying",
  28523. image: {
  28524. source: "./media/characters/kodran/flying.svg"
  28525. }
  28526. },
  28527. foot: {
  28528. height: math.unit(33, "feet"),
  28529. name: "Foot",
  28530. image: {
  28531. source: "./media/characters/kodran/foot.svg"
  28532. }
  28533. },
  28534. footFront: {
  28535. height: math.unit(19, "feet"),
  28536. name: "Foot (Front)",
  28537. image: {
  28538. source: "./media/characters/kodran/foot-front.svg",
  28539. extra: 261 / 261,
  28540. bottom: 91 / 352
  28541. }
  28542. },
  28543. headFront: {
  28544. height: math.unit(53, "feet"),
  28545. name: "Head (Front)",
  28546. image: {
  28547. source: "./media/characters/kodran/head-front.svg"
  28548. }
  28549. },
  28550. headSide: {
  28551. height: math.unit(65, "feet"),
  28552. name: "Head (Side)",
  28553. image: {
  28554. source: "./media/characters/kodran/head-side.svg"
  28555. }
  28556. },
  28557. throat: {
  28558. height: math.unit(79, "feet"),
  28559. name: "Throat",
  28560. image: {
  28561. source: "./media/characters/kodran/throat.svg"
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Large",
  28568. height: math.unit(106, "feet"),
  28569. default: true
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28575. {
  28576. side: {
  28577. height: math.unit(11, "feet"),
  28578. weight: math.unit(150, "lb"),
  28579. name: "Side",
  28580. image: {
  28581. source: "./media/characters/pyxaron/side.svg",
  28582. extra: 305 / 195,
  28583. bottom: 17 / 322
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Normal",
  28590. height: math.unit(11, "feet"),
  28591. default: true
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28597. {
  28598. front: {
  28599. height: math.unit(6, "feet"),
  28600. weight: math.unit(150, "lb"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/meep/front.svg",
  28604. extra: 88 / 80,
  28605. bottom: 6 / 94
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Fun Sized",
  28612. height: math.unit(2, "inches"),
  28613. default: true
  28614. },
  28615. {
  28616. name: "Friend Sized",
  28617. height: math.unit(8, "inches")
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(15, "feet"),
  28626. weight: math.unit(2500, "lb"),
  28627. name: "Front",
  28628. image: {
  28629. source: "./media/characters/holly-rabbit/front.svg",
  28630. extra: 1433 / 1233,
  28631. bottom: 125 / 1558
  28632. }
  28633. },
  28634. dick: {
  28635. height: math.unit(4.6, "feet"),
  28636. name: "Dick",
  28637. image: {
  28638. source: "./media/characters/holly-rabbit/dick.svg"
  28639. }
  28640. },
  28641. },
  28642. [
  28643. {
  28644. name: "Normal",
  28645. height: math.unit(15, "feet"),
  28646. default: true
  28647. },
  28648. {
  28649. name: "Macro",
  28650. height: math.unit(250, "feet")
  28651. },
  28652. {
  28653. name: "Macro+",
  28654. height: math.unit(2500, "feet")
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(3.02, "meters"),
  28663. weight: math.unit(500, "kg"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/drena/front.svg",
  28667. extra: 282 / 243,
  28668. bottom: 8 / 290
  28669. }
  28670. },
  28671. side: {
  28672. height: math.unit(3.02, "meters"),
  28673. weight: math.unit(500, "kg"),
  28674. name: "Side",
  28675. image: {
  28676. source: "./media/characters/drena/side.svg",
  28677. extra: 280 / 245,
  28678. bottom: 10 / 290
  28679. }
  28680. },
  28681. back: {
  28682. height: math.unit(3.02, "meters"),
  28683. weight: math.unit(500, "kg"),
  28684. name: "Back",
  28685. image: {
  28686. source: "./media/characters/drena/back.svg",
  28687. extra: 278 / 243,
  28688. bottom: 2 / 280
  28689. }
  28690. },
  28691. foot: {
  28692. height: math.unit(0.75, "meters"),
  28693. name: "Foot",
  28694. image: {
  28695. source: "./media/characters/drena/foot.svg"
  28696. }
  28697. },
  28698. maw: {
  28699. height: math.unit(0.82, "meters"),
  28700. name: "Maw",
  28701. image: {
  28702. source: "./media/characters/drena/maw.svg"
  28703. }
  28704. },
  28705. rump: {
  28706. height: math.unit(0.93, "meters"),
  28707. name: "Rump",
  28708. image: {
  28709. source: "./media/characters/drena/rump.svg"
  28710. }
  28711. },
  28712. },
  28713. [
  28714. {
  28715. name: "Normal",
  28716. height: math.unit(3.02, "meters"),
  28717. default: true
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(6 + 4 / 12, "feet"),
  28726. weight: math.unit(250, "lb"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/remmyzilla/front.svg",
  28730. extra: 4033 / 3588,
  28731. bottom: 123 / 4156
  28732. }
  28733. },
  28734. back: {
  28735. height: math.unit(6 + 4 / 12, "feet"),
  28736. weight: math.unit(250, "lb"),
  28737. name: "Back",
  28738. image: {
  28739. source: "./media/characters/remmyzilla/back.svg",
  28740. extra: 2687 / 2555,
  28741. bottom: 48 / 2735
  28742. }
  28743. },
  28744. paw: {
  28745. height: math.unit(1.73, "feet"),
  28746. name: "Paw",
  28747. image: {
  28748. source: "./media/characters/remmyzilla/paw.svg"
  28749. }
  28750. },
  28751. maw: {
  28752. height: math.unit(1.73, "feet"),
  28753. name: "Maw",
  28754. image: {
  28755. source: "./media/characters/remmyzilla/maw.svg"
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Normal",
  28762. height: math.unit(6 + 4 / 12, "feet")
  28763. },
  28764. {
  28765. name: "Minimacro",
  28766. height: math.unit(12 + 8 / 12, "feet")
  28767. },
  28768. {
  28769. name: "Normal",
  28770. height: math.unit(640, "feet"),
  28771. default: true
  28772. },
  28773. {
  28774. name: "Megamacro",
  28775. height: math.unit(6400, "feet")
  28776. },
  28777. {
  28778. name: "Gigamacro",
  28779. height: math.unit(64000, "miles")
  28780. },
  28781. ]
  28782. ))
  28783. characterMakers.push(() => makeCharacter(
  28784. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28785. {
  28786. front: {
  28787. height: math.unit(2.5, "meters"),
  28788. weight: math.unit(300, "lb"),
  28789. name: "Front",
  28790. image: {
  28791. source: "./media/characters/lawrence/front.svg",
  28792. extra: 357 / 335,
  28793. bottom: 30 / 387
  28794. }
  28795. },
  28796. back: {
  28797. height: math.unit(2.5, "meters"),
  28798. weight: math.unit(300, "lb"),
  28799. name: "Back",
  28800. image: {
  28801. source: "./media/characters/lawrence/back.svg",
  28802. extra: 357 / 338,
  28803. bottom: 16 / 373
  28804. }
  28805. },
  28806. head: {
  28807. height: math.unit(0.9, "meter"),
  28808. name: "Head",
  28809. image: {
  28810. source: "./media/characters/lawrence/head.svg"
  28811. }
  28812. },
  28813. maw: {
  28814. height: math.unit(0.7, "meter"),
  28815. name: "Maw",
  28816. image: {
  28817. source: "./media/characters/lawrence/maw.svg"
  28818. }
  28819. },
  28820. footBottom: {
  28821. height: math.unit(0.5, "meter"),
  28822. name: "Foot (Bottom)",
  28823. image: {
  28824. source: "./media/characters/lawrence/foot-bottom.svg"
  28825. }
  28826. },
  28827. footTop: {
  28828. height: math.unit(0.5, "meter"),
  28829. name: "Foot (Top)",
  28830. image: {
  28831. source: "./media/characters/lawrence/foot-top.svg"
  28832. }
  28833. },
  28834. },
  28835. [
  28836. {
  28837. name: "Normal",
  28838. height: math.unit(2.5, "meters"),
  28839. default: true
  28840. },
  28841. {
  28842. name: "Macro",
  28843. height: math.unit(95, "meters")
  28844. },
  28845. {
  28846. name: "Megamacro",
  28847. height: math.unit(150, "km")
  28848. },
  28849. ]
  28850. ))
  28851. characterMakers.push(() => makeCharacter(
  28852. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28853. {
  28854. front: {
  28855. height: math.unit(4.2, "meters"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/sydney/front.svg",
  28859. extra: 1323 / 1277,
  28860. bottom: 111 / 1434
  28861. }
  28862. },
  28863. },
  28864. [
  28865. {
  28866. name: "Normal",
  28867. height: math.unit(4.2, "meters"),
  28868. default: true
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28874. {
  28875. back: {
  28876. height: math.unit(201, "feet"),
  28877. name: "Back",
  28878. image: {
  28879. source: "./media/characters/jessica/back.svg",
  28880. extra: 273 / 259,
  28881. bottom: 7 / 280
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Normal",
  28888. height: math.unit(201, "feet"),
  28889. default: true
  28890. },
  28891. {
  28892. name: "Megamacro",
  28893. height: math.unit(8, "miles")
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28899. {
  28900. side: {
  28901. height: math.unit(320, "cm"),
  28902. name: "Side",
  28903. image: {
  28904. source: "./media/characters/victoria/side.svg",
  28905. extra: 778 / 346,
  28906. bottom: 56 / 834
  28907. }
  28908. },
  28909. maw: {
  28910. height: math.unit(5.9, "feet"),
  28911. name: "Maw",
  28912. image: {
  28913. source: "./media/characters/victoria/maw.svg"
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(320, "cm"),
  28921. default: true
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28927. {
  28928. front: {
  28929. height: math.unit(5 + 6 / 12, "feet"),
  28930. name: "Front",
  28931. image: {
  28932. source: "./media/characters/cat/front.svg",
  28933. extra: 1449/1295,
  28934. bottom: 34/1483
  28935. }
  28936. },
  28937. back: {
  28938. height: math.unit(5 + 6 / 12, "feet"),
  28939. name: "Back",
  28940. image: {
  28941. source: "./media/characters/cat/back.svg",
  28942. extra: 1466/1301,
  28943. bottom: 19/1485
  28944. }
  28945. },
  28946. taur: {
  28947. height: math.unit(7, "feet"),
  28948. name: "Taur",
  28949. image: {
  28950. source: "./media/characters/cat/taur.svg",
  28951. extra: 1389/1233,
  28952. bottom: 83/1472
  28953. }
  28954. },
  28955. lucarioFront: {
  28956. height: math.unit(4, "feet"),
  28957. name: "Lucario (Front)",
  28958. image: {
  28959. source: "./media/characters/cat/lucario-front.svg",
  28960. extra: 1149/1019,
  28961. bottom: 84/1233
  28962. }
  28963. },
  28964. lucarioBack: {
  28965. height: math.unit(4, "feet"),
  28966. name: "Lucario (Back)",
  28967. image: {
  28968. source: "./media/characters/cat/lucario-back.svg",
  28969. extra: 1190/1059,
  28970. bottom: 33/1223
  28971. }
  28972. },
  28973. megaLucario: {
  28974. height: math.unit(4, "feet"),
  28975. name: "Mega Lucario",
  28976. image: {
  28977. source: "./media/characters/cat/mega-lucario.svg",
  28978. extra: 1515 / 1319,
  28979. bottom: 63 / 1578
  28980. }
  28981. },
  28982. nickit: {
  28983. height: math.unit(2, "feet"),
  28984. name: "Nickit",
  28985. image: {
  28986. source: "./media/characters/cat/nickit.svg",
  28987. extra: 1980 / 1585,
  28988. bottom: 102 / 2082
  28989. }
  28990. },
  28991. lopunnyFront: {
  28992. height: math.unit(5, "feet"),
  28993. name: "Lopunny (Front)",
  28994. image: {
  28995. source: "./media/characters/cat/lopunny-front.svg",
  28996. extra: 1782 / 1469,
  28997. bottom: 38 / 1820
  28998. }
  28999. },
  29000. lopunnyBack: {
  29001. height: math.unit(5, "feet"),
  29002. name: "Lopunny (Back)",
  29003. image: {
  29004. source: "./media/characters/cat/lopunny-back.svg",
  29005. extra: 1660 / 1490,
  29006. bottom: 25 / 1685
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Really small",
  29013. height: math.unit(1, "nm")
  29014. },
  29015. {
  29016. name: "Micro",
  29017. height: math.unit(5, "inches")
  29018. },
  29019. {
  29020. name: "Normal",
  29021. height: math.unit(5 + 6 / 12, "feet"),
  29022. default: true
  29023. },
  29024. {
  29025. name: "Macro",
  29026. height: math.unit(50, "feet")
  29027. },
  29028. {
  29029. name: "Macro+",
  29030. height: math.unit(150, "feet")
  29031. },
  29032. {
  29033. name: "Megamacro",
  29034. height: math.unit(100, "miles")
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(63.4, "meters"),
  29043. weight: math.unit(3.28349e+6, "kilograms"),
  29044. name: "Front",
  29045. image: {
  29046. source: "./media/characters/kirina-violet/front.svg",
  29047. extra: 2812 / 2725,
  29048. bottom: 0 / 2812
  29049. }
  29050. },
  29051. back: {
  29052. height: math.unit(63.4, "meters"),
  29053. weight: math.unit(3.28349e+6, "kilograms"),
  29054. name: "Back",
  29055. image: {
  29056. source: "./media/characters/kirina-violet/back.svg",
  29057. extra: 2812 / 2725,
  29058. bottom: 0 / 2812
  29059. }
  29060. },
  29061. mouth: {
  29062. height: math.unit(4.35, "meters"),
  29063. name: "Mouth",
  29064. image: {
  29065. source: "./media/characters/kirina-violet/mouth.svg"
  29066. }
  29067. },
  29068. paw: {
  29069. height: math.unit(5.6, "meters"),
  29070. name: "Paw",
  29071. image: {
  29072. source: "./media/characters/kirina-violet/paw.svg"
  29073. }
  29074. },
  29075. tail: {
  29076. height: math.unit(18, "meters"),
  29077. name: "Tail",
  29078. image: {
  29079. source: "./media/characters/kirina-violet/tail.svg"
  29080. }
  29081. },
  29082. },
  29083. [
  29084. {
  29085. name: "Macro",
  29086. height: math.unit(63.4, "meters"),
  29087. default: true
  29088. },
  29089. ]
  29090. ))
  29091. characterMakers.push(() => makeCharacter(
  29092. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29093. {
  29094. front: {
  29095. height: math.unit(75, "feet"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/cat-gigachu/front.svg",
  29099. extra: 1239/1027,
  29100. bottom: 32/1271
  29101. }
  29102. },
  29103. back: {
  29104. height: math.unit(75, "feet"),
  29105. name: "Back",
  29106. image: {
  29107. source: "./media/characters/cat-gigachu/back.svg",
  29108. extra: 1229/1030,
  29109. bottom: 9/1238
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Dynamax",
  29116. height: math.unit(75, "feet"),
  29117. default: true
  29118. },
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29123. {
  29124. front: {
  29125. height: math.unit(6, "feet"),
  29126. weight: math.unit(150, "lb"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/sfaiyan/front.svg",
  29130. extra: 999 / 978,
  29131. bottom: 5 / 1004
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(1.82, "meters")
  29139. },
  29140. {
  29141. name: "Giant",
  29142. height: math.unit(2.27, "km"),
  29143. default: true
  29144. },
  29145. ]
  29146. ))
  29147. characterMakers.push(() => makeCharacter(
  29148. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29149. {
  29150. front: {
  29151. height: math.unit(179, "cm"),
  29152. weight: math.unit(100, "kg"),
  29153. name: "Front",
  29154. image: {
  29155. source: "./media/characters/raunehkeli/front.svg",
  29156. extra: 1934 / 1926,
  29157. bottom: 0 / 1934
  29158. }
  29159. },
  29160. },
  29161. [
  29162. {
  29163. name: "Normal",
  29164. height: math.unit(179, "cm")
  29165. },
  29166. {
  29167. name: "Maximum",
  29168. height: math.unit(575, "meters"),
  29169. default: true
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(6, "feet"),
  29178. weight: math.unit(150, "lb"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29182. extra: 2625 / 2518,
  29183. bottom: 60 / 2685
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "Normal",
  29190. height: math.unit(6 + 2 / 12, "feet")
  29191. },
  29192. {
  29193. name: "Macro",
  29194. height: math.unit(1180, "feet"),
  29195. default: true
  29196. },
  29197. ]
  29198. ))
  29199. characterMakers.push(() => makeCharacter(
  29200. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29201. {
  29202. front: {
  29203. height: math.unit(5 + 6 / 12, "feet"),
  29204. weight: math.unit(108, "lb"),
  29205. name: "Front",
  29206. image: {
  29207. source: "./media/characters/lilith-zott/front.svg",
  29208. extra: 2510 / 2238,
  29209. bottom: 100 / 2610
  29210. }
  29211. },
  29212. frontDressed: {
  29213. height: math.unit(5 + 6 / 12, "feet"),
  29214. weight: math.unit(108, "lb"),
  29215. name: "Front (Dressed)",
  29216. image: {
  29217. source: "./media/characters/lilith-zott/front-dressed.svg",
  29218. extra: 2510 / 2238,
  29219. bottom: 100 / 2610
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Normal",
  29226. height: math.unit(5 + 6 / 12, "feet")
  29227. },
  29228. {
  29229. name: "Macro",
  29230. height: math.unit(1030, "feet"),
  29231. default: true
  29232. },
  29233. ]
  29234. ))
  29235. characterMakers.push(() => makeCharacter(
  29236. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29237. {
  29238. front: {
  29239. height: math.unit(6, "feet"),
  29240. weight: math.unit(150, "lb"),
  29241. name: "Front",
  29242. image: {
  29243. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29244. extra: 2567 / 2435,
  29245. bottom: 39 / 2606
  29246. }
  29247. },
  29248. frontSuper: {
  29249. height: math.unit(6, "feet"),
  29250. name: "Front (Super)",
  29251. image: {
  29252. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29253. extra: 2567 / 2435,
  29254. bottom: 39 / 2606
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(5 + 10 / 12, "feet")
  29262. },
  29263. {
  29264. name: "Macro",
  29265. height: math.unit(1100, "feet"),
  29266. default: true
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(100, "miles"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/sona/front.svg",
  29278. extra: 2433 / 2201,
  29279. bottom: 53 / 2486
  29280. }
  29281. },
  29282. foot: {
  29283. height: math.unit(16.1, "miles"),
  29284. name: "Foot",
  29285. image: {
  29286. source: "./media/characters/sona/foot.svg"
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Macro",
  29293. height: math.unit(100, "miles"),
  29294. default: true
  29295. },
  29296. ]
  29297. ))
  29298. characterMakers.push(() => makeCharacter(
  29299. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29300. {
  29301. front: {
  29302. height: math.unit(6, "feet"),
  29303. weight: math.unit(150, "lb"),
  29304. name: "Front",
  29305. image: {
  29306. source: "./media/characters/bailey/front.svg",
  29307. extra: 1778 / 1724,
  29308. bottom: 30 / 1808
  29309. }
  29310. },
  29311. },
  29312. [
  29313. {
  29314. name: "Micro",
  29315. height: math.unit(4, "inches")
  29316. },
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(5 + 5 / 12, "feet"),
  29320. default: true
  29321. },
  29322. {
  29323. name: "Macro",
  29324. height: math.unit(250, "feet")
  29325. },
  29326. {
  29327. name: "Megamacro",
  29328. height: math.unit(100, "miles")
  29329. },
  29330. ]
  29331. ))
  29332. characterMakers.push(() => makeCharacter(
  29333. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29334. {
  29335. front: {
  29336. height: math.unit(5 + 2 / 12, "feet"),
  29337. weight: math.unit(120, "lb"),
  29338. name: "Front",
  29339. image: {
  29340. source: "./media/characters/snaps/front.svg",
  29341. extra: 2370 / 2177,
  29342. bottom: 48 / 2418
  29343. }
  29344. },
  29345. back: {
  29346. height: math.unit(5 + 2 / 12, "feet"),
  29347. weight: math.unit(120, "lb"),
  29348. name: "Back",
  29349. image: {
  29350. source: "./media/characters/snaps/back.svg",
  29351. extra: 2408 / 2258,
  29352. bottom: 15 / 2423
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Micro",
  29359. height: math.unit(9, "inches")
  29360. },
  29361. {
  29362. name: "Normal",
  29363. height: math.unit(5 + 2 / 12, "feet"),
  29364. default: true
  29365. },
  29366. {
  29367. name: "Mini Macro",
  29368. height: math.unit(10, "feet")
  29369. },
  29370. ]
  29371. ))
  29372. characterMakers.push(() => makeCharacter(
  29373. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29374. {
  29375. front: {
  29376. height: math.unit(1.8, "meters"),
  29377. weight: math.unit(85, "kg"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/azteck/front.svg",
  29381. extra: 2815 / 2625,
  29382. bottom: 89 / 2904
  29383. }
  29384. },
  29385. back: {
  29386. height: math.unit(1.8, "meters"),
  29387. weight: math.unit(85, "kg"),
  29388. name: "Back",
  29389. image: {
  29390. source: "./media/characters/azteck/back.svg",
  29391. extra: 2856 / 2648,
  29392. bottom: 85 / 2941
  29393. }
  29394. },
  29395. frontDressed: {
  29396. height: math.unit(1.8, "meters"),
  29397. weight: math.unit(85, "kg"),
  29398. name: "Front (Dressed)",
  29399. image: {
  29400. source: "./media/characters/azteck/front-dressed.svg",
  29401. extra: 2147 / 2003,
  29402. bottom: 68 / 2215
  29403. }
  29404. },
  29405. head: {
  29406. height: math.unit(0.47, "meters"),
  29407. weight: math.unit(85, "kg"),
  29408. name: "Head",
  29409. image: {
  29410. source: "./media/characters/azteck/head.svg"
  29411. }
  29412. },
  29413. },
  29414. [
  29415. {
  29416. name: "Bite sized",
  29417. height: math.unit(16, "cm")
  29418. },
  29419. {
  29420. name: "Normal",
  29421. height: math.unit(1.8, "meters"),
  29422. default: true
  29423. },
  29424. ]
  29425. ))
  29426. characterMakers.push(() => makeCharacter(
  29427. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29428. {
  29429. front: {
  29430. height: math.unit(6, "feet"),
  29431. weight: math.unit(150, "lb"),
  29432. name: "Front",
  29433. image: {
  29434. source: "./media/characters/pidge/front.svg",
  29435. extra: 620 / 588,
  29436. bottom: 9 / 629
  29437. }
  29438. },
  29439. back: {
  29440. height: math.unit(6, "feet"),
  29441. weight: math.unit(150, "lb"),
  29442. name: "Back",
  29443. image: {
  29444. source: "./media/characters/pidge/back.svg",
  29445. extra: 620 / 588,
  29446. bottom: 9 / 629
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Macro",
  29453. height: math.unit(1, "mile"),
  29454. default: true
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(6, "feet"),
  29463. weight: math.unit(150, "lb"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/en/front.svg",
  29467. extra: 1697 / 1563,
  29468. bottom: 103 / 1800
  29469. }
  29470. },
  29471. back: {
  29472. height: math.unit(6, "feet"),
  29473. weight: math.unit(150, "lb"),
  29474. name: "Back",
  29475. image: {
  29476. source: "./media/characters/en/back.svg",
  29477. extra: 1700 / 1570,
  29478. bottom: 51 / 1751
  29479. }
  29480. },
  29481. frontDressed: {
  29482. height: math.unit(6, "feet"),
  29483. weight: math.unit(150, "lb"),
  29484. name: "Front (Dressed)",
  29485. image: {
  29486. source: "./media/characters/en/front-dressed.svg",
  29487. extra: 1697 / 1563,
  29488. bottom: 103 / 1800
  29489. }
  29490. },
  29491. backDressed: {
  29492. height: math.unit(6, "feet"),
  29493. weight: math.unit(150, "lb"),
  29494. name: "Back (Dressed)",
  29495. image: {
  29496. source: "./media/characters/en/back-dressed.svg",
  29497. extra: 1700 / 1570,
  29498. bottom: 51 / 1751
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Macro",
  29505. height: math.unit(210, "feet"),
  29506. default: true
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(6, "feet"),
  29515. weight: math.unit(150, "lb"),
  29516. name: "Front",
  29517. image: {
  29518. source: "./media/characters/haze-orris/front.svg",
  29519. extra: 3975 / 3525,
  29520. bottom: 137 / 4112
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Micro",
  29527. height: math.unit(150, "mm"),
  29528. default: true
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(6, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/casselene-yaro/front.svg",
  29541. extra: 4721 / 4541,
  29542. bottom: 82 / 4803
  29543. }
  29544. },
  29545. back: {
  29546. height: math.unit(6, "feet"),
  29547. weight: math.unit(150, "lb"),
  29548. name: "Back",
  29549. image: {
  29550. source: "./media/characters/casselene-yaro/back.svg",
  29551. extra: 4569 / 4377,
  29552. bottom: 69 / 4638
  29553. }
  29554. },
  29555. frontDressed: {
  29556. height: math.unit(6, "feet"),
  29557. weight: math.unit(150, "lb"),
  29558. name: "Front-dressed",
  29559. image: {
  29560. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29561. extra: 4721 / 4541,
  29562. bottom: 82 / 4803
  29563. }
  29564. },
  29565. },
  29566. [
  29567. {
  29568. name: "Macro",
  29569. height: math.unit(190, "feet"),
  29570. default: true
  29571. },
  29572. ]
  29573. ))
  29574. characterMakers.push(() => makeCharacter(
  29575. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29576. {
  29577. front: {
  29578. height: math.unit(6, "feet"),
  29579. weight: math.unit(150, "lb"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/myra-rue-delore/front.svg",
  29583. extra: 1340 / 1308,
  29584. bottom: 67 / 1407
  29585. }
  29586. },
  29587. back: {
  29588. height: math.unit(6, "feet"),
  29589. weight: math.unit(150, "lb"),
  29590. name: "Back",
  29591. image: {
  29592. source: "./media/characters/myra-rue-delore/back.svg",
  29593. extra: 1341 / 1310,
  29594. bottom: 40 / 1381
  29595. }
  29596. },
  29597. frontDressed: {
  29598. height: math.unit(6, "feet"),
  29599. weight: math.unit(150, "lb"),
  29600. name: "Front (Dressed)",
  29601. image: {
  29602. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29603. extra: 1340 / 1308,
  29604. bottom: 67 / 1407
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Macro",
  29611. height: math.unit(150, "feet"),
  29612. default: true
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(10, "feet"),
  29621. weight: math.unit(15015, "lb"),
  29622. name: "Front",
  29623. image: {
  29624. source: "./media/characters/fem!plat/front.svg",
  29625. extra: 2799 / 2604,
  29626. bottom: 149 / 2948
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Normal",
  29633. height: math.unit(10, "feet"),
  29634. default: true
  29635. },
  29636. {
  29637. name: "Macro",
  29638. height: math.unit(100, "feet")
  29639. },
  29640. {
  29641. name: "Megamacro",
  29642. height: math.unit(1000, "feet")
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(15 + 5 / 12, "feet"),
  29651. weight: math.unit(4600, "lb"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/neapolitan-ananassa/front.svg",
  29655. extra: 2903 / 2736,
  29656. bottom: 0 / 2903
  29657. }
  29658. },
  29659. side: {
  29660. height: math.unit(15 + 5 / 12, "feet"),
  29661. weight: math.unit(4600, "lb"),
  29662. name: "Side",
  29663. image: {
  29664. source: "./media/characters/neapolitan-ananassa/side.svg",
  29665. extra: 2925 / 2719,
  29666. bottom: 0 / 2925
  29667. }
  29668. },
  29669. back: {
  29670. height: math.unit(15 + 5 / 12, "feet"),
  29671. weight: math.unit(4600, "lb"),
  29672. name: "Back",
  29673. image: {
  29674. source: "./media/characters/neapolitan-ananassa/back.svg",
  29675. extra: 2903 / 2736,
  29676. bottom: 0 / 2903
  29677. }
  29678. },
  29679. },
  29680. [
  29681. {
  29682. name: "Normal",
  29683. height: math.unit(15 + 5 / 12, "feet"),
  29684. default: true
  29685. },
  29686. {
  29687. name: "Post-Millenium",
  29688. height: math.unit(35 + 5 / 12, "feet")
  29689. },
  29690. {
  29691. name: "Post-Era",
  29692. height: math.unit(450 + 5 / 12, "feet")
  29693. },
  29694. ]
  29695. ))
  29696. characterMakers.push(() => makeCharacter(
  29697. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29698. {
  29699. front: {
  29700. height: math.unit(300, "meters"),
  29701. weight: math.unit(125000, "tonnes"),
  29702. name: "Front",
  29703. image: {
  29704. source: "./media/characters/pazuzu/front.svg",
  29705. extra: 877 / 794,
  29706. bottom: 47 / 924
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Macro",
  29713. height: math.unit(300, "meters"),
  29714. default: true
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29720. {
  29721. side: {
  29722. height: math.unit(10 + 7 / 12, "feet"),
  29723. weight: math.unit(2.5, "tons"),
  29724. name: "Side",
  29725. image: {
  29726. source: "./media/characters/aasha/side.svg",
  29727. extra: 1345 / 1245,
  29728. bottom: 111 / 1456
  29729. }
  29730. },
  29731. back: {
  29732. height: math.unit(10 + 7 / 12, "feet"),
  29733. weight: math.unit(2.5, "tons"),
  29734. name: "Back",
  29735. image: {
  29736. source: "./media/characters/aasha/back.svg",
  29737. extra: 1133 / 1057,
  29738. bottom: 257 / 1390
  29739. }
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Normal",
  29745. height: math.unit(10 + 7 / 12, "feet"),
  29746. default: true
  29747. },
  29748. ]
  29749. ))
  29750. characterMakers.push(() => makeCharacter(
  29751. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29752. {
  29753. front: {
  29754. height: math.unit(6 + 3 / 12, "feet"),
  29755. name: "Front",
  29756. image: {
  29757. source: "./media/characters/nevan/front.svg",
  29758. extra: 704 / 704,
  29759. bottom: 28 / 732
  29760. }
  29761. },
  29762. back: {
  29763. height: math.unit(6 + 3 / 12, "feet"),
  29764. name: "Back",
  29765. image: {
  29766. source: "./media/characters/nevan/back.svg",
  29767. extra: 714 / 714,
  29768. bottom: 21 / 735
  29769. }
  29770. },
  29771. frontFlaccid: {
  29772. height: math.unit(6 + 3 / 12, "feet"),
  29773. name: "Front (Flaccid)",
  29774. image: {
  29775. source: "./media/characters/nevan/front-flaccid.svg",
  29776. extra: 704 / 704,
  29777. bottom: 28 / 732
  29778. }
  29779. },
  29780. frontErect: {
  29781. height: math.unit(6 + 3 / 12, "feet"),
  29782. name: "Front (Erect)",
  29783. image: {
  29784. source: "./media/characters/nevan/front-erect.svg",
  29785. extra: 704 / 704,
  29786. bottom: 28 / 732
  29787. }
  29788. },
  29789. backFlaccid: {
  29790. height: math.unit(6 + 3 / 12, "feet"),
  29791. name: "Back (Flaccid)",
  29792. image: {
  29793. source: "./media/characters/nevan/back-flaccid.svg",
  29794. extra: 714 / 714,
  29795. bottom: 21 / 735
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Normal",
  29802. height: math.unit(6 + 3 / 12, "feet"),
  29803. default: true
  29804. },
  29805. ]
  29806. ))
  29807. characterMakers.push(() => makeCharacter(
  29808. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29809. {
  29810. front: {
  29811. height: math.unit(4, "feet"),
  29812. name: "Front",
  29813. image: {
  29814. source: "./media/characters/arhan/front.svg",
  29815. extra: 3368 / 3133,
  29816. bottom: 0 / 3368
  29817. }
  29818. },
  29819. side: {
  29820. height: math.unit(4, "feet"),
  29821. name: "Side",
  29822. image: {
  29823. source: "./media/characters/arhan/side.svg",
  29824. extra: 3347 / 3105,
  29825. bottom: 0 / 3347
  29826. }
  29827. },
  29828. tongue: {
  29829. height: math.unit(1.42, "feet"),
  29830. name: "Tongue",
  29831. image: {
  29832. source: "./media/characters/arhan/tongue.svg"
  29833. }
  29834. },
  29835. head: {
  29836. height: math.unit(0.85, "feet"),
  29837. name: "Head",
  29838. image: {
  29839. source: "./media/characters/arhan/head.svg"
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(4, "feet"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29853. {
  29854. front: {
  29855. height: math.unit(5 + 7.5 / 12, "feet"),
  29856. weight: math.unit(120, "lb"),
  29857. name: "Front",
  29858. image: {
  29859. source: "./media/characters/digi-duncan/front.svg",
  29860. extra: 330 / 326,
  29861. bottom: 16 / 346
  29862. }
  29863. },
  29864. side: {
  29865. height: math.unit(5 + 7.5 / 12, "feet"),
  29866. weight: math.unit(120, "lb"),
  29867. name: "Side",
  29868. image: {
  29869. source: "./media/characters/digi-duncan/side.svg",
  29870. extra: 341 / 337,
  29871. bottom: 1 / 342
  29872. }
  29873. },
  29874. back: {
  29875. height: math.unit(5 + 7.5 / 12, "feet"),
  29876. weight: math.unit(120, "lb"),
  29877. name: "Back",
  29878. image: {
  29879. source: "./media/characters/digi-duncan/back.svg",
  29880. extra: 330 / 326,
  29881. bottom: 12 / 342
  29882. }
  29883. },
  29884. },
  29885. [
  29886. {
  29887. name: "Speck",
  29888. height: math.unit(0.25, "mm")
  29889. },
  29890. {
  29891. name: "Micro",
  29892. height: math.unit(5, "mm")
  29893. },
  29894. {
  29895. name: "Tiny",
  29896. height: math.unit(0.5, "inches"),
  29897. default: true
  29898. },
  29899. {
  29900. name: "Human",
  29901. height: math.unit(5 + 7.5 / 12, "feet")
  29902. },
  29903. {
  29904. name: "Minigiant",
  29905. height: math.unit(8 + 5.25, "feet")
  29906. },
  29907. {
  29908. name: "Giant",
  29909. height: math.unit(2000, "feet")
  29910. },
  29911. {
  29912. name: "Mega",
  29913. height: math.unit(371.1, "miles")
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(2, "meters"),
  29922. weight: math.unit(350, "kg"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29926. extra: 898 / 838,
  29927. bottom: 9 / 907
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "Micro",
  29934. height: math.unit(8, "meters")
  29935. },
  29936. {
  29937. name: "Normal",
  29938. height: math.unit(50, "meters"),
  29939. default: true
  29940. },
  29941. {
  29942. name: "Macro",
  29943. height: math.unit(500, "meters")
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(6 + 6 / 12, "feet"),
  29952. name: "Front",
  29953. image: {
  29954. source: "./media/characters/khardesh/front.svg",
  29955. extra: 1788/1596,
  29956. bottom: 66/1854
  29957. }
  29958. },
  29959. back: {
  29960. height: math.unit(6 + 6 / 12, "feet"),
  29961. name: "Back",
  29962. image: {
  29963. source: "./media/characters/khardesh/back.svg",
  29964. extra: 1781/1584,
  29965. bottom: 68/1849
  29966. }
  29967. },
  29968. },
  29969. [
  29970. {
  29971. name: "Normal",
  29972. height: math.unit(6 + 6 / 12, "feet"),
  29973. default: true
  29974. },
  29975. {
  29976. name: "Normal+",
  29977. height: math.unit(4, "meters")
  29978. },
  29979. {
  29980. name: "Macro",
  29981. height: math.unit(50, "meters")
  29982. },
  29983. {
  29984. name: "Macro+",
  29985. height: math.unit(100, "meters")
  29986. },
  29987. {
  29988. name: "Megamacro",
  29989. height: math.unit(20, "km")
  29990. },
  29991. ]
  29992. ))
  29993. characterMakers.push(() => makeCharacter(
  29994. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29995. {
  29996. front: {
  29997. height: math.unit(6, "feet"),
  29998. weight: math.unit(150, "lb"),
  29999. name: "Front",
  30000. image: {
  30001. source: "./media/characters/kosho/front.svg",
  30002. extra: 1847 / 1847,
  30003. bottom: 86 / 1933
  30004. }
  30005. },
  30006. },
  30007. [
  30008. {
  30009. name: "Second-stage micro",
  30010. height: math.unit(0.5, "inches")
  30011. },
  30012. {
  30013. name: "First-stage micro",
  30014. height: math.unit(6, "inches")
  30015. },
  30016. {
  30017. name: "Normal",
  30018. height: math.unit(6, "feet"),
  30019. default: true
  30020. },
  30021. {
  30022. name: "First-stage macro",
  30023. height: math.unit(72, "feet")
  30024. },
  30025. {
  30026. name: "Second-stage macro",
  30027. height: math.unit(864, "feet")
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30033. {
  30034. normal: {
  30035. height: math.unit(4 + 6 / 12, "feet"),
  30036. name: "Normal",
  30037. image: {
  30038. source: "./media/characters/hydra/normal.svg",
  30039. extra: 2833 / 2634,
  30040. bottom: 68 / 2901
  30041. }
  30042. },
  30043. smol: {
  30044. height: math.unit(0.705, "inches"),
  30045. name: "Smol",
  30046. image: {
  30047. source: "./media/characters/hydra/smol.svg",
  30048. extra: 2715 / 2540,
  30049. bottom: 0 / 2715
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Normal",
  30056. height: math.unit(4 + 6 / 12, "feet"),
  30057. default: true
  30058. }
  30059. ]
  30060. ))
  30061. characterMakers.push(() => makeCharacter(
  30062. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30063. {
  30064. front: {
  30065. height: math.unit(0.6, "cm"),
  30066. name: "Front",
  30067. image: {
  30068. source: "./media/characters/daz/front.svg",
  30069. extra: 1682 / 1164,
  30070. bottom: 42 / 1724
  30071. }
  30072. },
  30073. },
  30074. [
  30075. {
  30076. name: "Normal",
  30077. height: math.unit(0.6, "cm"),
  30078. default: true
  30079. },
  30080. ]
  30081. ))
  30082. characterMakers.push(() => makeCharacter(
  30083. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30084. {
  30085. front: {
  30086. height: math.unit(6, "feet"),
  30087. weight: math.unit(235, "lb"),
  30088. name: "Front",
  30089. image: {
  30090. source: "./media/characters/theo-pangolin/front.svg",
  30091. extra: 1996 / 1969,
  30092. bottom: 115 / 2111
  30093. }
  30094. },
  30095. back: {
  30096. height: math.unit(6, "feet"),
  30097. weight: math.unit(235, "lb"),
  30098. name: "Back",
  30099. image: {
  30100. source: "./media/characters/theo-pangolin/back.svg",
  30101. extra: 1979 / 1979,
  30102. bottom: 40 / 2019
  30103. }
  30104. },
  30105. feral: {
  30106. height: math.unit(2, "feet"),
  30107. weight: math.unit(30, "lb"),
  30108. name: "Feral",
  30109. image: {
  30110. source: "./media/characters/theo-pangolin/feral.svg",
  30111. extra: 803 / 791,
  30112. bottom: 181 / 984
  30113. }
  30114. },
  30115. footFive: {
  30116. height: math.unit(1.43, "feet"),
  30117. name: "Foot (Five Toes)",
  30118. image: {
  30119. source: "./media/characters/theo-pangolin/foot-five.svg"
  30120. }
  30121. },
  30122. footFour: {
  30123. height: math.unit(1.43, "feet"),
  30124. name: "Foot (Four Toes)",
  30125. image: {
  30126. source: "./media/characters/theo-pangolin/foot-four.svg"
  30127. }
  30128. },
  30129. handFour: {
  30130. height: math.unit(0.81, "feet"),
  30131. name: "Hand (Four Fingers)",
  30132. image: {
  30133. source: "./media/characters/theo-pangolin/hand-four.svg"
  30134. }
  30135. },
  30136. handThree: {
  30137. height: math.unit(0.81, "feet"),
  30138. name: "Hand (Three Fingers)",
  30139. image: {
  30140. source: "./media/characters/theo-pangolin/hand-three.svg"
  30141. }
  30142. },
  30143. headFront: {
  30144. height: math.unit(1.37, "feet"),
  30145. name: "Head (Front)",
  30146. image: {
  30147. source: "./media/characters/theo-pangolin/head-front.svg"
  30148. }
  30149. },
  30150. headSide: {
  30151. height: math.unit(1.43, "feet"),
  30152. name: "Head (Side)",
  30153. image: {
  30154. source: "./media/characters/theo-pangolin/head-side.svg"
  30155. }
  30156. },
  30157. tongue: {
  30158. height: math.unit(2.29, "feet"),
  30159. name: "Tongue",
  30160. image: {
  30161. source: "./media/characters/theo-pangolin/tongue.svg"
  30162. }
  30163. },
  30164. },
  30165. [
  30166. {
  30167. name: "Normal",
  30168. height: math.unit(6, "feet")
  30169. },
  30170. {
  30171. name: "Macro",
  30172. height: math.unit(400, "feet"),
  30173. default: true
  30174. },
  30175. ]
  30176. ))
  30177. characterMakers.push(() => makeCharacter(
  30178. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30179. {
  30180. front: {
  30181. height: math.unit(6, "inches"),
  30182. weight: math.unit(0.036, "kg"),
  30183. name: "Front",
  30184. image: {
  30185. source: "./media/characters/renée/front.svg",
  30186. extra: 900 / 886,
  30187. bottom: 8 / 908
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Nano",
  30194. height: math.unit(1, "nm")
  30195. },
  30196. {
  30197. name: "Micro",
  30198. height: math.unit(1, "mm")
  30199. },
  30200. {
  30201. name: "Normal",
  30202. height: math.unit(6, "inches")
  30203. },
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(2000, "feet"),
  30207. default: true
  30208. },
  30209. {
  30210. name: "Megamacro",
  30211. height: math.unit(2, "km")
  30212. },
  30213. {
  30214. name: "Gigamacro",
  30215. height: math.unit(2000, "km")
  30216. },
  30217. {
  30218. name: "Teramacro",
  30219. height: math.unit(250000, "km")
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30225. {
  30226. front: {
  30227. height: math.unit(4, "meters"),
  30228. weight: math.unit(150, "kg"),
  30229. name: "Front",
  30230. image: {
  30231. source: "./media/characters/caledvwlch/front.svg",
  30232. extra: 1760 / 1551,
  30233. bottom: 28 / 1788
  30234. }
  30235. },
  30236. side: {
  30237. height: math.unit(4, "meters"),
  30238. weight: math.unit(150, "kg"),
  30239. name: "Side",
  30240. image: {
  30241. source: "./media/characters/caledvwlch/side.svg",
  30242. extra: 1605 / 1536,
  30243. bottom: 31 / 1636
  30244. }
  30245. },
  30246. back: {
  30247. height: math.unit(4, "meters"),
  30248. weight: math.unit(150, "kg"),
  30249. name: "Back",
  30250. image: {
  30251. source: "./media/characters/caledvwlch/back.svg",
  30252. extra: 1635 / 1565,
  30253. bottom: 27 / 1662
  30254. }
  30255. },
  30256. },
  30257. [
  30258. {
  30259. name: "\"Incognito\"",
  30260. height: math.unit(4, "meters")
  30261. },
  30262. {
  30263. name: "Small rampage",
  30264. height: math.unit(600, "meters")
  30265. },
  30266. {
  30267. name: "Mega",
  30268. height: math.unit(30, "km")
  30269. },
  30270. {
  30271. name: "Home-size",
  30272. height: math.unit(50, "km"),
  30273. default: true
  30274. },
  30275. {
  30276. name: "Giga",
  30277. height: math.unit(300, "km")
  30278. },
  30279. {
  30280. name: "Lounging",
  30281. height: math.unit(11000, "km")
  30282. },
  30283. {
  30284. name: "Planet snacking",
  30285. height: math.unit(2000000, "km")
  30286. },
  30287. ]
  30288. ))
  30289. characterMakers.push(() => makeCharacter(
  30290. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30291. {
  30292. front: {
  30293. height: math.unit(6, "feet"),
  30294. weight: math.unit(215, "lb"),
  30295. name: "Front",
  30296. image: {
  30297. source: "./media/characters/sapphire-svell/front.svg",
  30298. extra: 495 / 455,
  30299. bottom: 20 / 515
  30300. }
  30301. },
  30302. back: {
  30303. height: math.unit(6, "feet"),
  30304. weight: math.unit(216, "lb"),
  30305. name: "Back",
  30306. image: {
  30307. source: "./media/characters/sapphire-svell/back.svg",
  30308. extra: 497 / 477,
  30309. bottom: 7 / 504
  30310. }
  30311. },
  30312. maw: {
  30313. height: math.unit(1.57, "feet"),
  30314. name: "Maw",
  30315. image: {
  30316. source: "./media/characters/sapphire-svell/maw.svg"
  30317. }
  30318. },
  30319. foot: {
  30320. height: math.unit(1.07, "feet"),
  30321. name: "Foot",
  30322. image: {
  30323. source: "./media/characters/sapphire-svell/foot.svg"
  30324. }
  30325. },
  30326. toering: {
  30327. height: math.unit(1.7, "inch"),
  30328. name: "Toering",
  30329. image: {
  30330. source: "./media/characters/sapphire-svell/toering.svg"
  30331. }
  30332. },
  30333. },
  30334. [
  30335. {
  30336. name: "Normal",
  30337. height: math.unit(300, "feet"),
  30338. default: true
  30339. },
  30340. {
  30341. name: "Augmented",
  30342. height: math.unit(1250, "feet")
  30343. },
  30344. {
  30345. name: "Unleashed",
  30346. height: math.unit(3000, "feet")
  30347. },
  30348. ]
  30349. ))
  30350. characterMakers.push(() => makeCharacter(
  30351. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30352. {
  30353. side: {
  30354. height: math.unit(2 + 3 / 12, "feet"),
  30355. weight: math.unit(110, "lb"),
  30356. name: "Side",
  30357. image: {
  30358. source: "./media/characters/glitch-flux/side.svg",
  30359. extra: 997 / 805,
  30360. bottom: 20 / 1017
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Normal",
  30367. height: math.unit(2 + 3 / 12, "feet"),
  30368. default: true
  30369. },
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(4, "meters"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/mid/front.svg",
  30380. extra: 507 / 476,
  30381. bottom: 17 / 524
  30382. }
  30383. },
  30384. back: {
  30385. height: math.unit(4, "meters"),
  30386. name: "Back",
  30387. image: {
  30388. source: "./media/characters/mid/back.svg",
  30389. extra: 519 / 487,
  30390. bottom: 7 / 526
  30391. }
  30392. },
  30393. stuck: {
  30394. height: math.unit(2.2, "meters"),
  30395. name: "Stuck",
  30396. image: {
  30397. source: "./media/characters/mid/stuck.svg",
  30398. extra: 1951 / 1869,
  30399. bottom: 88 / 2039
  30400. }
  30401. }
  30402. },
  30403. [
  30404. {
  30405. name: "Normal",
  30406. height: math.unit(4, "meters"),
  30407. default: true
  30408. },
  30409. {
  30410. name: "Big",
  30411. height: math.unit(10, "meters")
  30412. },
  30413. {
  30414. name: "Macro",
  30415. height: math.unit(800, "meters")
  30416. },
  30417. {
  30418. name: "Megamacro",
  30419. height: math.unit(100, "km")
  30420. },
  30421. {
  30422. name: "Overgrown",
  30423. height: math.unit(1, "parsec")
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30429. {
  30430. front: {
  30431. height: math.unit(2.5, "meters"),
  30432. weight: math.unit(225, "kg"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/iris/front.svg",
  30436. extra: 3348 / 3251,
  30437. bottom: 205 / 3553
  30438. }
  30439. },
  30440. maw: {
  30441. height: math.unit(0.56, "meter"),
  30442. name: "Maw",
  30443. image: {
  30444. source: "./media/characters/iris/maw.svg"
  30445. }
  30446. },
  30447. },
  30448. [
  30449. {
  30450. name: "Mewter cat",
  30451. height: math.unit(1.2, "meters")
  30452. },
  30453. {
  30454. name: "Minimacro",
  30455. height: math.unit(2.5, "meters"),
  30456. default: true
  30457. },
  30458. {
  30459. name: "Macro",
  30460. height: math.unit(180, "meters")
  30461. },
  30462. {
  30463. name: "Megamacro",
  30464. height: math.unit(2746, "meters")
  30465. },
  30466. ]
  30467. ))
  30468. characterMakers.push(() => makeCharacter(
  30469. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30470. {
  30471. front: {
  30472. height: math.unit(6, "feet"),
  30473. weight: math.unit(135, "lb"),
  30474. name: "Front",
  30475. image: {
  30476. source: "./media/characters/axel/front.svg",
  30477. extra: 908 / 908,
  30478. bottom: 58 / 966
  30479. }
  30480. },
  30481. side: {
  30482. height: math.unit(6, "feet"),
  30483. weight: math.unit(135, "lb"),
  30484. name: "Side",
  30485. image: {
  30486. source: "./media/characters/axel/side.svg",
  30487. extra: 958 / 958,
  30488. bottom: 11 / 969
  30489. }
  30490. },
  30491. back: {
  30492. height: math.unit(6, "feet"),
  30493. weight: math.unit(135, "lb"),
  30494. name: "Back",
  30495. image: {
  30496. source: "./media/characters/axel/back.svg",
  30497. extra: 887 / 887,
  30498. bottom: 34 / 921
  30499. }
  30500. },
  30501. head: {
  30502. height: math.unit(1.07, "feet"),
  30503. name: "Head",
  30504. image: {
  30505. source: "./media/characters/axel/head.svg"
  30506. }
  30507. },
  30508. beak: {
  30509. height: math.unit(1.4, "feet"),
  30510. name: "Beak",
  30511. image: {
  30512. source: "./media/characters/axel/beak.svg"
  30513. }
  30514. },
  30515. beakSide: {
  30516. height: math.unit(1.4, "feet"),
  30517. name: "Beak Side",
  30518. image: {
  30519. source: "./media/characters/axel/beak-side.svg"
  30520. }
  30521. },
  30522. sheath: {
  30523. height: math.unit(0.5, "feet"),
  30524. name: "Sheath",
  30525. image: {
  30526. source: "./media/characters/axel/sheath.svg"
  30527. }
  30528. },
  30529. dick: {
  30530. height: math.unit(0.98, "feet"),
  30531. name: "Dick",
  30532. image: {
  30533. source: "./media/characters/axel/dick.svg"
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Macro",
  30540. height: math.unit(68, "meters"),
  30541. default: true
  30542. },
  30543. ]
  30544. ))
  30545. characterMakers.push(() => makeCharacter(
  30546. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30547. {
  30548. front: {
  30549. height: math.unit(3.5, "meters"),
  30550. weight: math.unit(1200, "kg"),
  30551. name: "Front",
  30552. image: {
  30553. source: "./media/characters/joanna/front.svg",
  30554. extra: 1596 / 1488,
  30555. bottom: 29 / 1625
  30556. }
  30557. },
  30558. back: {
  30559. height: math.unit(3.5, "meters"),
  30560. weight: math.unit(1200, "kg"),
  30561. name: "Back",
  30562. image: {
  30563. source: "./media/characters/joanna/back.svg",
  30564. extra: 1594 / 1495,
  30565. bottom: 26 / 1620
  30566. }
  30567. },
  30568. frontShorts: {
  30569. height: math.unit(3.5, "meters"),
  30570. weight: math.unit(1200, "kg"),
  30571. name: "Front (Shorts)",
  30572. image: {
  30573. source: "./media/characters/joanna/front-shorts.svg",
  30574. extra: 1596 / 1488,
  30575. bottom: 29 / 1625
  30576. }
  30577. },
  30578. frontBiker: {
  30579. height: math.unit(3.5, "meters"),
  30580. weight: math.unit(1200, "kg"),
  30581. name: "Front (Biker)",
  30582. image: {
  30583. source: "./media/characters/joanna/front-biker.svg",
  30584. extra: 1596 / 1488,
  30585. bottom: 29 / 1625
  30586. }
  30587. },
  30588. backBiker: {
  30589. height: math.unit(3.5, "meters"),
  30590. weight: math.unit(1200, "kg"),
  30591. name: "Back (Biker)",
  30592. image: {
  30593. source: "./media/characters/joanna/back-biker.svg",
  30594. extra: 1594 / 1495,
  30595. bottom: 88 / 1682
  30596. }
  30597. },
  30598. bikeLeft: {
  30599. height: math.unit(2.4, "meters"),
  30600. weight: math.unit(1600, "kg"),
  30601. name: "Bike (Left)",
  30602. image: {
  30603. source: "./media/characters/joanna/bike-left.svg",
  30604. extra: 720 / 720,
  30605. bottom: 8 / 728
  30606. }
  30607. },
  30608. bikeRight: {
  30609. height: math.unit(2.4, "meters"),
  30610. weight: math.unit(1600, "kg"),
  30611. name: "Bike (Right)",
  30612. image: {
  30613. source: "./media/characters/joanna/bike-right.svg",
  30614. extra: 720 / 720,
  30615. bottom: 8 / 728
  30616. }
  30617. },
  30618. },
  30619. [
  30620. {
  30621. name: "Incognito",
  30622. height: math.unit(3.5, "meters")
  30623. },
  30624. {
  30625. name: "Casual Big",
  30626. height: math.unit(200, "meters")
  30627. },
  30628. {
  30629. name: "Macro",
  30630. height: math.unit(600, "meters")
  30631. },
  30632. {
  30633. name: "Original",
  30634. height: math.unit(20, "km"),
  30635. default: true
  30636. },
  30637. {
  30638. name: "Giga",
  30639. height: math.unit(400, "km")
  30640. },
  30641. {
  30642. name: "Lounging",
  30643. height: math.unit(1500, "km")
  30644. },
  30645. {
  30646. name: "Planetary",
  30647. height: math.unit(200000, "km")
  30648. },
  30649. ]
  30650. ))
  30651. characterMakers.push(() => makeCharacter(
  30652. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30653. {
  30654. front: {
  30655. height: math.unit(6, "feet"),
  30656. weight: math.unit(150, "lb"),
  30657. name: "Front",
  30658. image: {
  30659. source: "./media/characters/hugo-sigil/front.svg",
  30660. extra: 522 / 500,
  30661. bottom: 2 / 524
  30662. }
  30663. },
  30664. back: {
  30665. height: math.unit(6, "feet"),
  30666. weight: math.unit(150, "lb"),
  30667. name: "Back",
  30668. image: {
  30669. source: "./media/characters/hugo-sigil/back.svg",
  30670. extra: 519 / 495,
  30671. bottom: 5 / 524
  30672. }
  30673. },
  30674. maw: {
  30675. height: math.unit(1.4, "feet"),
  30676. weight: math.unit(150, "lb"),
  30677. name: "Maw",
  30678. image: {
  30679. source: "./media/characters/hugo-sigil/maw.svg"
  30680. }
  30681. },
  30682. feet: {
  30683. height: math.unit(1.56, "feet"),
  30684. weight: math.unit(150, "lb"),
  30685. name: "Feet",
  30686. image: {
  30687. source: "./media/characters/hugo-sigil/feet.svg",
  30688. extra: 177 / 177,
  30689. bottom: 12 / 189
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Normal",
  30696. height: math.unit(6, "feet")
  30697. },
  30698. {
  30699. name: "Macro",
  30700. height: math.unit(200, "feet"),
  30701. default: true
  30702. },
  30703. ]
  30704. ))
  30705. characterMakers.push(() => makeCharacter(
  30706. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30707. {
  30708. front: {
  30709. height: math.unit(6, "feet"),
  30710. weight: math.unit(150, "lb"),
  30711. name: "Front",
  30712. image: {
  30713. source: "./media/characters/peri/front.svg",
  30714. extra: 2354 / 2233,
  30715. bottom: 49 / 2403
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Really Small",
  30722. height: math.unit(1, "nm")
  30723. },
  30724. {
  30725. name: "Micro",
  30726. height: math.unit(4, "inches")
  30727. },
  30728. {
  30729. name: "Normal",
  30730. height: math.unit(7, "inches"),
  30731. default: true
  30732. },
  30733. {
  30734. name: "Macro",
  30735. height: math.unit(400, "feet")
  30736. },
  30737. {
  30738. name: "Megamacro",
  30739. height: math.unit(100, "miles")
  30740. },
  30741. ]
  30742. ))
  30743. characterMakers.push(() => makeCharacter(
  30744. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30745. {
  30746. frontSlim: {
  30747. height: math.unit(7, "feet"),
  30748. name: "Front (Slim)",
  30749. image: {
  30750. source: "./media/characters/issilora/front-slim.svg",
  30751. extra: 529 / 449,
  30752. bottom: 53 / 582
  30753. }
  30754. },
  30755. sideSlim: {
  30756. height: math.unit(7, "feet"),
  30757. name: "Side (Slim)",
  30758. image: {
  30759. source: "./media/characters/issilora/side-slim.svg",
  30760. extra: 570 / 480,
  30761. bottom: 30 / 600
  30762. }
  30763. },
  30764. backSlim: {
  30765. height: math.unit(7, "feet"),
  30766. name: "Back (Slim)",
  30767. image: {
  30768. source: "./media/characters/issilora/back-slim.svg",
  30769. extra: 537 / 455,
  30770. bottom: 46 / 583
  30771. }
  30772. },
  30773. frontBuff: {
  30774. height: math.unit(7, "feet"),
  30775. name: "Front (Buff)",
  30776. image: {
  30777. source: "./media/characters/issilora/front-buff.svg",
  30778. extra: 2310 / 2035,
  30779. bottom: 335 / 2645
  30780. }
  30781. },
  30782. head: {
  30783. height: math.unit(1.94, "feet"),
  30784. name: "Head",
  30785. image: {
  30786. source: "./media/characters/issilora/head.svg"
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Minimum",
  30793. height: math.unit(7, "feet")
  30794. },
  30795. {
  30796. name: "Comfortable",
  30797. height: math.unit(17, "feet")
  30798. },
  30799. {
  30800. name: "Fun Size",
  30801. height: math.unit(47, "feet")
  30802. },
  30803. {
  30804. name: "Natural Macro",
  30805. height: math.unit(137, "feet"),
  30806. default: true
  30807. },
  30808. {
  30809. name: "Maximum Kaiju",
  30810. height: math.unit(397, "feet")
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30816. {
  30817. front: {
  30818. height: math.unit(50 + 9/12, "feet"),
  30819. weight: math.unit(32.8, "tons"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/irb'iiritaahn/front.svg",
  30823. extra: 1878/1826,
  30824. bottom: 326/2204
  30825. }
  30826. },
  30827. back: {
  30828. height: math.unit(50 + 9/12, "feet"),
  30829. weight: math.unit(32.8, "tons"),
  30830. name: "Back",
  30831. image: {
  30832. source: "./media/characters/irb'iiritaahn/back.svg",
  30833. extra: 2052/2018,
  30834. bottom: 152/2204
  30835. }
  30836. },
  30837. head: {
  30838. height: math.unit(12.86, "feet"),
  30839. name: "Head",
  30840. image: {
  30841. source: "./media/characters/irb'iiritaahn/head.svg"
  30842. }
  30843. },
  30844. maw: {
  30845. height: math.unit(9.66, "feet"),
  30846. name: "Maw",
  30847. image: {
  30848. source: "./media/characters/irb'iiritaahn/maw.svg"
  30849. }
  30850. },
  30851. frontDick: {
  30852. height: math.unit(8.78461, "feet"),
  30853. name: "Front Dick",
  30854. image: {
  30855. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30856. }
  30857. },
  30858. rearDick: {
  30859. height: math.unit(8.78461, "feet"),
  30860. name: "Rear Dick",
  30861. image: {
  30862. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30863. }
  30864. },
  30865. rearDickUnfolded: {
  30866. height: math.unit(8.78, "feet"),
  30867. name: "Rear Dick (Unfolded)",
  30868. image: {
  30869. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30870. }
  30871. },
  30872. wings: {
  30873. height: math.unit(43, "feet"),
  30874. name: "Wings",
  30875. image: {
  30876. source: "./media/characters/irb'iiritaahn/wings.svg"
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Macro",
  30883. height: math.unit(50 + 9/12, "feet"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30890. {
  30891. front: {
  30892. height: math.unit(205, "cm"),
  30893. weight: math.unit(102, "kg"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/irbisgreif/front.svg",
  30897. extra: 785/706,
  30898. bottom: 13/798
  30899. }
  30900. },
  30901. back: {
  30902. height: math.unit(205, "cm"),
  30903. weight: math.unit(102, "kg"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/irbisgreif/back.svg",
  30907. extra: 713/701,
  30908. bottom: 26/739
  30909. }
  30910. },
  30911. frontDressed: {
  30912. height: math.unit(216, "cm"),
  30913. weight: math.unit(102, "kg"),
  30914. name: "Front-dressed",
  30915. image: {
  30916. source: "./media/characters/irbisgreif/front-dressed.svg",
  30917. extra: 902/776,
  30918. bottom: 14/916
  30919. }
  30920. },
  30921. sideDressed: {
  30922. height: math.unit(195, "cm"),
  30923. weight: math.unit(102, "kg"),
  30924. name: "Side-dressed",
  30925. image: {
  30926. source: "./media/characters/irbisgreif/side-dressed.svg",
  30927. extra: 788/688,
  30928. bottom: 21/809
  30929. }
  30930. },
  30931. backDressed: {
  30932. height: math.unit(216, "cm"),
  30933. weight: math.unit(102, "kg"),
  30934. name: "Back-dressed",
  30935. image: {
  30936. source: "./media/characters/irbisgreif/back-dressed.svg",
  30937. extra: 901/783,
  30938. bottom: 10/911
  30939. }
  30940. },
  30941. dick: {
  30942. height: math.unit(0.49, "feet"),
  30943. name: "Dick",
  30944. image: {
  30945. source: "./media/characters/irbisgreif/dick.svg"
  30946. }
  30947. },
  30948. wingTop: {
  30949. height: math.unit(1.93 , "feet"),
  30950. name: "Wing-top",
  30951. image: {
  30952. source: "./media/characters/irbisgreif/wing-top.svg"
  30953. }
  30954. },
  30955. wingBottom: {
  30956. height: math.unit(1.93 , "feet"),
  30957. name: "Wing-bottom",
  30958. image: {
  30959. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(216, "cm"),
  30967. default: true
  30968. },
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30973. {
  30974. front: {
  30975. height: math.unit(6, "feet"),
  30976. weight: math.unit(150, "lb"),
  30977. name: "Front",
  30978. image: {
  30979. source: "./media/characters/pride/front.svg",
  30980. extra: 1299/1230,
  30981. bottom: 18/1317
  30982. }
  30983. },
  30984. },
  30985. [
  30986. {
  30987. name: "Normal",
  30988. height: math.unit(7, "feet")
  30989. },
  30990. {
  30991. name: "Mini-macro",
  30992. height: math.unit(11, "feet")
  30993. },
  30994. {
  30995. name: "Macro",
  30996. height: math.unit(15, "meters"),
  30997. default: true
  30998. },
  30999. {
  31000. name: "Macro+",
  31001. height: math.unit(40, "meters")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31007. {
  31008. front: {
  31009. height: math.unit(4 + 2 / 12, "feet"),
  31010. weight: math.unit(95, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/vaelophis-nyx/front.svg",
  31014. extra: 2532/2330,
  31015. bottom: 0/2532
  31016. }
  31017. },
  31018. back: {
  31019. height: math.unit(4 + 2 / 12, "feet"),
  31020. weight: math.unit(95, "lb"),
  31021. name: "Back",
  31022. image: {
  31023. source: "./media/characters/vaelophis-nyx/back.svg",
  31024. extra: 2484/2361,
  31025. bottom: 0/2484
  31026. }
  31027. },
  31028. feralSide: {
  31029. height: math.unit(2 + 1/12, "feet"),
  31030. weight: math.unit(20, "lb"),
  31031. name: "Feral (Side)",
  31032. image: {
  31033. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31034. extra: 1721/1581,
  31035. bottom: 70/1791
  31036. }
  31037. },
  31038. feralLazing: {
  31039. height: math.unit(1.08, "feet"),
  31040. weight: math.unit(20, "lb"),
  31041. name: "Feral (Lazing)",
  31042. image: {
  31043. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31044. extra: 822/822,
  31045. bottom: 248/1070
  31046. }
  31047. },
  31048. ear: {
  31049. height: math.unit(0.416, "feet"),
  31050. name: "Ear",
  31051. image: {
  31052. source: "./media/characters/vaelophis-nyx/ear.svg"
  31053. }
  31054. },
  31055. eye: {
  31056. height: math.unit(0.0748, "feet"),
  31057. name: "Eye",
  31058. image: {
  31059. source: "./media/characters/vaelophis-nyx/eye.svg"
  31060. }
  31061. },
  31062. mouth: {
  31063. height: math.unit(0.378, "feet"),
  31064. name: "Mouth",
  31065. image: {
  31066. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31067. }
  31068. },
  31069. spade: {
  31070. height: math.unit(0.55, "feet"),
  31071. name: "Spade",
  31072. image: {
  31073. source: "./media/characters/vaelophis-nyx/spade.svg"
  31074. }
  31075. },
  31076. },
  31077. [
  31078. {
  31079. name: "Normal",
  31080. height: math.unit(4 + 2/12, "feet"),
  31081. default: true
  31082. },
  31083. ]
  31084. ))
  31085. characterMakers.push(() => makeCharacter(
  31086. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31087. {
  31088. front: {
  31089. height: math.unit(7, "feet"),
  31090. weight: math.unit(231, "lb"),
  31091. name: "Front",
  31092. image: {
  31093. source: "./media/characters/flux/front.svg",
  31094. extra: 919/871,
  31095. bottom: 0/919
  31096. }
  31097. },
  31098. back: {
  31099. height: math.unit(7, "feet"),
  31100. weight: math.unit(231, "lb"),
  31101. name: "Back",
  31102. image: {
  31103. source: "./media/characters/flux/back.svg",
  31104. extra: 1040/992,
  31105. bottom: 0/1040
  31106. }
  31107. },
  31108. frontDressed: {
  31109. height: math.unit(7, "feet"),
  31110. weight: math.unit(231, "lb"),
  31111. name: "Front (Dressed)",
  31112. image: {
  31113. source: "./media/characters/flux/front-dressed.svg",
  31114. extra: 919/871,
  31115. bottom: 0/919
  31116. }
  31117. },
  31118. feralSide: {
  31119. height: math.unit(5, "feet"),
  31120. weight: math.unit(150, "lb"),
  31121. name: "Feral (Side)",
  31122. image: {
  31123. source: "./media/characters/flux/feral-side.svg",
  31124. extra: 598/528,
  31125. bottom: 28/626
  31126. }
  31127. },
  31128. head: {
  31129. height: math.unit(1.585, "feet"),
  31130. name: "Head",
  31131. image: {
  31132. source: "./media/characters/flux/head.svg"
  31133. }
  31134. },
  31135. headSide: {
  31136. height: math.unit(1.74, "feet"),
  31137. name: "Head (Side)",
  31138. image: {
  31139. source: "./media/characters/flux/head-side.svg"
  31140. }
  31141. },
  31142. headSideFire: {
  31143. height: math.unit(1.76, "feet"),
  31144. name: "Head (Side, Fire)",
  31145. image: {
  31146. source: "./media/characters/flux/head-side-fire.svg"
  31147. }
  31148. },
  31149. },
  31150. [
  31151. {
  31152. name: "Normal",
  31153. height: math.unit(7, "feet"),
  31154. default: true
  31155. },
  31156. ]
  31157. ))
  31158. characterMakers.push(() => makeCharacter(
  31159. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31160. {
  31161. front: {
  31162. height: math.unit(9, "feet"),
  31163. weight: math.unit(1012, "lb"),
  31164. name: "Front",
  31165. image: {
  31166. source: "./media/characters/ulfra-lupae/front.svg",
  31167. extra: 1083/1011,
  31168. bottom: 67/1150
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "Micro",
  31175. height: math.unit(6, "inches")
  31176. },
  31177. {
  31178. name: "Socializing",
  31179. height: math.unit(6 + 5/12, "feet")
  31180. },
  31181. {
  31182. name: "Normal",
  31183. height: math.unit(9, "feet"),
  31184. default: true
  31185. },
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(150, "feet")
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(5 + 2/12, "feet"),
  31197. weight: math.unit(120, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/timber/front.svg",
  31201. extra: 2814/2705,
  31202. bottom: 181/2995
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(5 + 2/12, "feet"),
  31210. default: true
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31216. {
  31217. front: {
  31218. height: math.unit(5 + 7/12, "feet"),
  31219. weight: math.unit(220, "lb"),
  31220. name: "Front",
  31221. image: {
  31222. source: "./media/characters/nicki/front.svg",
  31223. extra: 453/419,
  31224. bottom: 7/460
  31225. }
  31226. },
  31227. frontAlt: {
  31228. height: math.unit(5 + 7/12, "feet"),
  31229. weight: math.unit(220, "lb"),
  31230. name: "Front-alt",
  31231. image: {
  31232. source: "./media/characters/nicki/front-alt.svg",
  31233. extra: 435/411,
  31234. bottom: 12/447
  31235. }
  31236. },
  31237. back: {
  31238. height: math.unit(5 + 7/12, "feet"),
  31239. weight: math.unit(220, "lb"),
  31240. name: "Back",
  31241. image: {
  31242. source: "./media/characters/nicki/back.svg",
  31243. extra: 440/413,
  31244. bottom: 19/459
  31245. }
  31246. },
  31247. taur: {
  31248. height: math.unit(7 + 6/12, "feet"),
  31249. weight: math.unit(700, "lb"),
  31250. name: "Taur",
  31251. image: {
  31252. source: "./media/characters/nicki/taur.svg",
  31253. extra: 975/773,
  31254. bottom: 0/975
  31255. }
  31256. },
  31257. frontNsfw: {
  31258. height: math.unit(5 + 7/12, "feet"),
  31259. weight: math.unit(220, "lb"),
  31260. name: "Front (NSFW)",
  31261. image: {
  31262. source: "./media/characters/nicki/front-nsfw.svg",
  31263. extra: 453/419,
  31264. bottom: 7/460
  31265. }
  31266. },
  31267. frontNsfwAlt: {
  31268. height: math.unit(5 + 7/12, "feet"),
  31269. weight: math.unit(220, "lb"),
  31270. name: "Front (Alt, NSFW)",
  31271. image: {
  31272. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31273. extra: 435/411,
  31274. bottom: 12/447
  31275. }
  31276. },
  31277. backNsfw: {
  31278. height: math.unit(5 + 7/12, "feet"),
  31279. weight: math.unit(220, "lb"),
  31280. name: "Back (NSFW)",
  31281. image: {
  31282. source: "./media/characters/nicki/back-nsfw.svg",
  31283. extra: 440/413,
  31284. bottom: 19/459
  31285. }
  31286. },
  31287. head: {
  31288. height: math.unit(2.1, "feet"),
  31289. name: "Head",
  31290. image: {
  31291. source: "./media/characters/nicki/head.svg"
  31292. }
  31293. },
  31294. paw: {
  31295. height: math.unit(1.88, "feet"),
  31296. name: "Paw",
  31297. image: {
  31298. source: "./media/characters/nicki/paw.svg"
  31299. }
  31300. },
  31301. },
  31302. [
  31303. {
  31304. name: "Normal",
  31305. height: math.unit(5 + 7/12, "feet"),
  31306. default: true
  31307. },
  31308. ]
  31309. ))
  31310. characterMakers.push(() => makeCharacter(
  31311. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31312. {
  31313. front: {
  31314. height: math.unit(7 + 10/12, "feet"),
  31315. weight: math.unit(3.5, "tons"),
  31316. name: "Front",
  31317. image: {
  31318. source: "./media/characters/lee/front.svg",
  31319. extra: 1773/1615,
  31320. bottom: 86/1859
  31321. }
  31322. },
  31323. hand: {
  31324. height: math.unit(1.78, "feet"),
  31325. name: "Hand",
  31326. image: {
  31327. source: "./media/characters/lee/hand.svg"
  31328. }
  31329. },
  31330. maw: {
  31331. height: math.unit(1.18, "feet"),
  31332. name: "Maw",
  31333. image: {
  31334. source: "./media/characters/lee/maw.svg"
  31335. }
  31336. },
  31337. },
  31338. [
  31339. {
  31340. name: "Normal",
  31341. height: math.unit(7 + 10/12, "feet"),
  31342. default: true
  31343. },
  31344. ]
  31345. ))
  31346. characterMakers.push(() => makeCharacter(
  31347. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31348. {
  31349. front: {
  31350. height: math.unit(9, "feet"),
  31351. name: "Front",
  31352. image: {
  31353. source: "./media/characters/guti/front.svg",
  31354. extra: 4551/4355,
  31355. bottom: 123/4674
  31356. }
  31357. },
  31358. tongue: {
  31359. height: math.unit(1, "feet"),
  31360. name: "Tongue",
  31361. image: {
  31362. source: "./media/characters/guti/tongue.svg"
  31363. }
  31364. },
  31365. paw: {
  31366. height: math.unit(1.18, "feet"),
  31367. name: "Paw",
  31368. image: {
  31369. source: "./media/characters/guti/paw.svg"
  31370. }
  31371. },
  31372. },
  31373. [
  31374. {
  31375. name: "Normal",
  31376. height: math.unit(9, "feet"),
  31377. default: true
  31378. },
  31379. ]
  31380. ))
  31381. characterMakers.push(() => makeCharacter(
  31382. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31383. {
  31384. side: {
  31385. height: math.unit(5, "meters"),
  31386. name: "Side",
  31387. image: {
  31388. source: "./media/characters/vesper/side.svg",
  31389. extra: 1605/1518,
  31390. bottom: 0/1605
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Small",
  31397. height: math.unit(5, "meters")
  31398. },
  31399. {
  31400. name: "Sage",
  31401. height: math.unit(100, "meters"),
  31402. default: true
  31403. },
  31404. {
  31405. name: "Fun Size",
  31406. height: math.unit(600, "meters")
  31407. },
  31408. {
  31409. name: "Goddess",
  31410. height: math.unit(20000, "km")
  31411. },
  31412. {
  31413. name: "Maximum",
  31414. height: math.unit(5, "galaxies")
  31415. },
  31416. ]
  31417. ))
  31418. characterMakers.push(() => makeCharacter(
  31419. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31420. {
  31421. front: {
  31422. height: math.unit(6 + 3/12, "feet"),
  31423. weight: math.unit(190, "lb"),
  31424. name: "Front",
  31425. image: {
  31426. source: "./media/characters/gawain/front.svg",
  31427. extra: 2222/2139,
  31428. bottom: 90/2312
  31429. }
  31430. },
  31431. back: {
  31432. height: math.unit(6 + 3/12, "feet"),
  31433. weight: math.unit(190, "lb"),
  31434. name: "Back",
  31435. image: {
  31436. source: "./media/characters/gawain/back.svg",
  31437. extra: 2199/2111,
  31438. bottom: 73/2272
  31439. }
  31440. },
  31441. },
  31442. [
  31443. {
  31444. name: "Normal",
  31445. height: math.unit(6 + 3/12, "feet"),
  31446. default: true
  31447. },
  31448. ]
  31449. ))
  31450. characterMakers.push(() => makeCharacter(
  31451. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31452. {
  31453. side: {
  31454. height: math.unit(3.5, "meters"),
  31455. weight: math.unit(16000, "lb"),
  31456. name: "Side",
  31457. image: {
  31458. source: "./media/characters/dascalti/side.svg",
  31459. extra: 392/273,
  31460. bottom: 47/439
  31461. }
  31462. },
  31463. breath: {
  31464. height: math.unit(7.4, "feet"),
  31465. name: "Breath",
  31466. image: {
  31467. source: "./media/characters/dascalti/breath.svg"
  31468. }
  31469. },
  31470. fed: {
  31471. height: math.unit(3.6, "meters"),
  31472. weight: math.unit(16000, "lb"),
  31473. name: "Fed",
  31474. image: {
  31475. source: "./media/characters/dascalti/fed.svg",
  31476. extra: 1419/820,
  31477. bottom: 95/1514
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "Normal",
  31484. height: math.unit(3.5, "meters"),
  31485. default: true
  31486. },
  31487. ]
  31488. ))
  31489. characterMakers.push(() => makeCharacter(
  31490. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31491. {
  31492. front: {
  31493. height: math.unit(3 + 5/12, "feet"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/mauve/front.svg",
  31497. extra: 1126/1033,
  31498. bottom: 65/1191
  31499. }
  31500. },
  31501. side: {
  31502. height: math.unit(3 + 5/12, "feet"),
  31503. name: "Side",
  31504. image: {
  31505. source: "./media/characters/mauve/side.svg",
  31506. extra: 1089/1001,
  31507. bottom: 29/1118
  31508. }
  31509. },
  31510. back: {
  31511. height: math.unit(3 + 5/12, "feet"),
  31512. name: "Back",
  31513. image: {
  31514. source: "./media/characters/mauve/back.svg",
  31515. extra: 1173/1053,
  31516. bottom: 109/1282
  31517. }
  31518. },
  31519. },
  31520. [
  31521. {
  31522. name: "Normal",
  31523. height: math.unit(3 + 5/12, "feet"),
  31524. default: true
  31525. },
  31526. ]
  31527. ))
  31528. characterMakers.push(() => makeCharacter(
  31529. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31530. {
  31531. front: {
  31532. height: math.unit(6 + 3/12, "feet"),
  31533. weight: math.unit(430, "lb"),
  31534. name: "Front",
  31535. image: {
  31536. source: "./media/characters/carlos/front.svg",
  31537. extra: 1964/1913,
  31538. bottom: 70/2034
  31539. }
  31540. },
  31541. },
  31542. [
  31543. {
  31544. name: "Normal",
  31545. height: math.unit(6 + 3/12, "feet"),
  31546. default: true
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31552. {
  31553. back: {
  31554. height: math.unit(5 + 10/12, "feet"),
  31555. weight: math.unit(200, "lb"),
  31556. name: "Back",
  31557. image: {
  31558. source: "./media/characters/jax/back.svg",
  31559. extra: 764/739,
  31560. bottom: 25/789
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Normal",
  31567. height: math.unit(5 + 10/12, "feet"),
  31568. default: true
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31574. {
  31575. front: {
  31576. height: math.unit(8, "feet"),
  31577. weight: math.unit(250, "lb"),
  31578. name: "Front",
  31579. image: {
  31580. source: "./media/characters/eikthynir/front.svg",
  31581. extra: 1332/1166,
  31582. bottom: 82/1414
  31583. }
  31584. },
  31585. back: {
  31586. height: math.unit(8, "feet"),
  31587. weight: math.unit(250, "lb"),
  31588. name: "Back",
  31589. image: {
  31590. source: "./media/characters/eikthynir/back.svg",
  31591. extra: 1342/1190,
  31592. bottom: 19/1361
  31593. }
  31594. },
  31595. dick: {
  31596. height: math.unit(2.35, "feet"),
  31597. name: "Dick",
  31598. image: {
  31599. source: "./media/characters/eikthynir/dick.svg"
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Normal",
  31606. height: math.unit(8, "feet"),
  31607. default: true
  31608. },
  31609. ]
  31610. ))
  31611. characterMakers.push(() => makeCharacter(
  31612. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31613. {
  31614. front: {
  31615. height: math.unit(99, "meters"),
  31616. weight: math.unit(13000, "tons"),
  31617. name: "Front",
  31618. image: {
  31619. source: "./media/characters/zlmos/front.svg",
  31620. extra: 2202/1992,
  31621. bottom: 315/2517
  31622. }
  31623. },
  31624. },
  31625. [
  31626. {
  31627. name: "Macro",
  31628. height: math.unit(99, "meters"),
  31629. default: true
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31635. {
  31636. front: {
  31637. height: math.unit(6 + 5/12, "feet"),
  31638. name: "Front",
  31639. image: {
  31640. source: "./media/characters/purri/front.svg",
  31641. extra: 1698/1610,
  31642. bottom: 32/1730
  31643. }
  31644. },
  31645. frontAlt: {
  31646. height: math.unit(6 + 5/12, "feet"),
  31647. name: "Front (Alt)",
  31648. image: {
  31649. source: "./media/characters/purri/front-alt.svg",
  31650. extra: 450/420,
  31651. bottom: 26/476
  31652. }
  31653. },
  31654. boots: {
  31655. height: math.unit(5.5, "feet"),
  31656. name: "Boots",
  31657. image: {
  31658. source: "./media/characters/purri/boots.svg",
  31659. extra: 905/853,
  31660. bottom: 18/923
  31661. }
  31662. },
  31663. lying: {
  31664. height: math.unit(2, "feet"),
  31665. name: "Lying",
  31666. image: {
  31667. source: "./media/characters/purri/lying.svg",
  31668. extra: 940/843,
  31669. bottom: 146/1086
  31670. }
  31671. },
  31672. devious: {
  31673. height: math.unit(1.77, "feet"),
  31674. name: "Devious",
  31675. image: {
  31676. source: "./media/characters/purri/devious.svg",
  31677. extra: 1440/1155,
  31678. bottom: 147/1587
  31679. }
  31680. },
  31681. bean: {
  31682. height: math.unit(1.94, "feet"),
  31683. name: "Bean",
  31684. image: {
  31685. source: "./media/characters/purri/bean.svg"
  31686. }
  31687. },
  31688. },
  31689. [
  31690. {
  31691. name: "Micro",
  31692. height: math.unit(1, "mm")
  31693. },
  31694. {
  31695. name: "Normal",
  31696. height: math.unit(6 + 5/12, "feet"),
  31697. default: true
  31698. },
  31699. {
  31700. name: "Macro :3c",
  31701. height: math.unit(2, "miles")
  31702. },
  31703. ]
  31704. ))
  31705. characterMakers.push(() => makeCharacter(
  31706. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31707. {
  31708. front: {
  31709. height: math.unit(6 + 2/12, "feet"),
  31710. weight: math.unit(250, "lb"),
  31711. name: "Front",
  31712. image: {
  31713. source: "./media/characters/moonlight/front.svg",
  31714. extra: 1044/908,
  31715. bottom: 56/1100
  31716. }
  31717. },
  31718. feral: {
  31719. height: math.unit(3 + 1/12, "feet"),
  31720. weight: math.unit(50, "kg"),
  31721. name: "Feral",
  31722. image: {
  31723. source: "./media/characters/moonlight/feral.svg",
  31724. extra: 3705/2791,
  31725. bottom: 145/3850
  31726. }
  31727. },
  31728. paw: {
  31729. height: math.unit(1, "feet"),
  31730. name: "Paw",
  31731. image: {
  31732. source: "./media/characters/moonlight/paw.svg"
  31733. }
  31734. },
  31735. paws: {
  31736. height: math.unit(0.98, "feet"),
  31737. name: "Paws",
  31738. image: {
  31739. source: "./media/characters/moonlight/paws.svg",
  31740. extra: 939/939,
  31741. bottom: 50/989
  31742. }
  31743. },
  31744. mouth: {
  31745. height: math.unit(0.48, "feet"),
  31746. name: "Mouth",
  31747. image: {
  31748. source: "./media/characters/moonlight/mouth.svg"
  31749. }
  31750. },
  31751. dick: {
  31752. height: math.unit(1.46, "feet"),
  31753. name: "Dick",
  31754. image: {
  31755. source: "./media/characters/moonlight/dick.svg"
  31756. }
  31757. },
  31758. },
  31759. [
  31760. {
  31761. name: "Normal",
  31762. height: math.unit(6 + 2/12, "feet"),
  31763. default: true
  31764. },
  31765. {
  31766. name: "Macro",
  31767. height: math.unit(300, "feet")
  31768. },
  31769. {
  31770. name: "Macro+",
  31771. height: math.unit(1, "mile")
  31772. },
  31773. {
  31774. name: "Mt. Moon",
  31775. height: math.unit(5, "miles")
  31776. },
  31777. {
  31778. name: "Megamacro",
  31779. height: math.unit(15, "miles")
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31785. {
  31786. back: {
  31787. height: math.unit(6, "feet"),
  31788. weight: math.unit(150, "lb"),
  31789. name: "Back",
  31790. image: {
  31791. source: "./media/characters/sylen/back.svg",
  31792. extra: 1335/1273,
  31793. bottom: 107/1442
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Normal",
  31800. height: math.unit(5 + 5/12, "feet")
  31801. },
  31802. {
  31803. name: "Megamacro",
  31804. height: math.unit(3, "miles"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31811. {
  31812. front: {
  31813. height: math.unit(6, "feet"),
  31814. weight: math.unit(190, "lb"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/huttser/front.svg",
  31818. extra: 1152/1058,
  31819. bottom: 23/1175
  31820. }
  31821. },
  31822. side: {
  31823. height: math.unit(6, "feet"),
  31824. weight: math.unit(190, "lb"),
  31825. name: "Side",
  31826. image: {
  31827. source: "./media/characters/huttser/side.svg",
  31828. extra: 1174/1065,
  31829. bottom: 18/1192
  31830. }
  31831. },
  31832. back: {
  31833. height: math.unit(6, "feet"),
  31834. weight: math.unit(190, "lb"),
  31835. name: "Back",
  31836. image: {
  31837. source: "./media/characters/huttser/back.svg",
  31838. extra: 1158/1056,
  31839. bottom: 12/1170
  31840. }
  31841. },
  31842. },
  31843. [
  31844. ]
  31845. ))
  31846. characterMakers.push(() => makeCharacter(
  31847. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31848. {
  31849. side: {
  31850. height: math.unit(12 + 9/12, "feet"),
  31851. weight: math.unit(15000, "lb"),
  31852. name: "Side",
  31853. image: {
  31854. source: "./media/characters/faan/side.svg",
  31855. extra: 2747/2697,
  31856. bottom: 0/2747
  31857. }
  31858. },
  31859. front: {
  31860. height: math.unit(12 + 9/12, "feet"),
  31861. weight: math.unit(15000, "lb"),
  31862. name: "Front",
  31863. image: {
  31864. source: "./media/characters/faan/front.svg",
  31865. extra: 607/571,
  31866. bottom: 24/631
  31867. }
  31868. },
  31869. head: {
  31870. height: math.unit(2.85, "feet"),
  31871. name: "Head",
  31872. image: {
  31873. source: "./media/characters/faan/head.svg"
  31874. }
  31875. },
  31876. headAlt: {
  31877. height: math.unit(3.13, "feet"),
  31878. name: "Head-alt",
  31879. image: {
  31880. source: "./media/characters/faan/head-alt.svg"
  31881. }
  31882. },
  31883. },
  31884. [
  31885. {
  31886. name: "Normal",
  31887. height: math.unit(12 + 9/12, "feet"),
  31888. default: true
  31889. },
  31890. ]
  31891. ))
  31892. characterMakers.push(() => makeCharacter(
  31893. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31894. {
  31895. front: {
  31896. height: math.unit(6, "feet"),
  31897. weight: math.unit(300, "lb"),
  31898. name: "Front",
  31899. image: {
  31900. source: "./media/characters/tanio/front.svg",
  31901. extra: 711/673,
  31902. bottom: 25/736
  31903. }
  31904. },
  31905. },
  31906. [
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(6, "feet"),
  31910. default: true
  31911. },
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31916. {
  31917. front: {
  31918. height: math.unit(3, "inches"),
  31919. name: "Front",
  31920. image: {
  31921. source: "./media/characters/noboru/front.svg",
  31922. extra: 1039/932,
  31923. bottom: 18/1057
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Micro",
  31930. height: math.unit(3, "inches"),
  31931. default: true
  31932. },
  31933. ]
  31934. ))
  31935. characterMakers.push(() => makeCharacter(
  31936. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31937. {
  31938. front: {
  31939. height: math.unit(1.85, "meters"),
  31940. weight: math.unit(80, "kg"),
  31941. name: "Front",
  31942. image: {
  31943. source: "./media/characters/daniel-barrett/front.svg",
  31944. extra: 355/337,
  31945. bottom: 9/364
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Pico",
  31952. height: math.unit(0.0433, "mm")
  31953. },
  31954. {
  31955. name: "Nano",
  31956. height: math.unit(1.5, "mm")
  31957. },
  31958. {
  31959. name: "Micro",
  31960. height: math.unit(5.3, "cm"),
  31961. default: true
  31962. },
  31963. {
  31964. name: "Normal",
  31965. height: math.unit(1.85, "meters")
  31966. },
  31967. {
  31968. name: "Macro",
  31969. height: math.unit(64.7, "meters")
  31970. },
  31971. {
  31972. name: "Megamacro",
  31973. height: math.unit(2.26, "km")
  31974. },
  31975. {
  31976. name: "Gigamacro",
  31977. height: math.unit(79, "km")
  31978. },
  31979. {
  31980. name: "Teramacro",
  31981. height: math.unit(2765, "km")
  31982. },
  31983. {
  31984. name: "Petamacro",
  31985. height: math.unit(96678, "km")
  31986. },
  31987. ]
  31988. ))
  31989. characterMakers.push(() => makeCharacter(
  31990. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31991. {
  31992. front: {
  31993. height: math.unit(30, "meters"),
  31994. weight: math.unit(400, "tons"),
  31995. name: "Front",
  31996. image: {
  31997. source: "./media/characters/zeel/front.svg",
  31998. extra: 2599/2599,
  31999. bottom: 226/2825
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Macro",
  32006. height: math.unit(30, "meters"),
  32007. default: true
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32013. {
  32014. front: {
  32015. height: math.unit(6 + 7/12, "feet"),
  32016. weight: math.unit(210, "lb"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/tarn/front.svg",
  32020. extra: 3517/3220,
  32021. bottom: 91/3608
  32022. }
  32023. },
  32024. back: {
  32025. height: math.unit(6 + 7/12, "feet"),
  32026. weight: math.unit(210, "lb"),
  32027. name: "Back",
  32028. image: {
  32029. source: "./media/characters/tarn/back.svg",
  32030. extra: 3566/3241,
  32031. bottom: 34/3600
  32032. }
  32033. },
  32034. dick: {
  32035. height: math.unit(1.65, "feet"),
  32036. name: "Dick",
  32037. image: {
  32038. source: "./media/characters/tarn/dick.svg"
  32039. }
  32040. },
  32041. paw: {
  32042. height: math.unit(1.80, "feet"),
  32043. name: "Paw",
  32044. image: {
  32045. source: "./media/characters/tarn/paw.svg"
  32046. }
  32047. },
  32048. tongue: {
  32049. height: math.unit(0.97, "feet"),
  32050. name: "Tongue",
  32051. image: {
  32052. source: "./media/characters/tarn/tongue.svg"
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Micro",
  32059. height: math.unit(4, "inches")
  32060. },
  32061. {
  32062. name: "Normal",
  32063. height: math.unit(6 + 7/12, "feet"),
  32064. default: true
  32065. },
  32066. {
  32067. name: "Macro",
  32068. height: math.unit(300, "feet")
  32069. },
  32070. ]
  32071. ))
  32072. characterMakers.push(() => makeCharacter(
  32073. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32074. {
  32075. front: {
  32076. height: math.unit(5 + 7/12, "feet"),
  32077. weight: math.unit(80, "kg"),
  32078. name: "Front",
  32079. image: {
  32080. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32081. extra: 3023/2865,
  32082. bottom: 33/3056
  32083. }
  32084. },
  32085. back: {
  32086. height: math.unit(5 + 7/12, "feet"),
  32087. weight: math.unit(80, "kg"),
  32088. name: "Back",
  32089. image: {
  32090. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32091. extra: 3020/2886,
  32092. bottom: 30/3050
  32093. }
  32094. },
  32095. dick: {
  32096. height: math.unit(0.98, "feet"),
  32097. name: "Dick",
  32098. image: {
  32099. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32100. }
  32101. },
  32102. anatomy: {
  32103. height: math.unit(2.86, "feet"),
  32104. name: "Anatomy",
  32105. image: {
  32106. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32107. }
  32108. },
  32109. },
  32110. [
  32111. {
  32112. name: "Really Small",
  32113. height: math.unit(2, "inches")
  32114. },
  32115. {
  32116. name: "Micro",
  32117. height: math.unit(5.583, "inches")
  32118. },
  32119. {
  32120. name: "Normal",
  32121. height: math.unit(5 + 7/12, "feet"),
  32122. default: true
  32123. },
  32124. {
  32125. name: "Macro",
  32126. height: math.unit(67, "feet")
  32127. },
  32128. {
  32129. name: "Megamacro",
  32130. height: math.unit(134, "feet")
  32131. },
  32132. ]
  32133. ))
  32134. characterMakers.push(() => makeCharacter(
  32135. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32136. {
  32137. front: {
  32138. height: math.unit(9, "feet"),
  32139. weight: math.unit(120, "lb"),
  32140. name: "Front",
  32141. image: {
  32142. source: "./media/characters/sally/front.svg",
  32143. extra: 1506/1349,
  32144. bottom: 66/1572
  32145. }
  32146. },
  32147. },
  32148. [
  32149. {
  32150. name: "Normal",
  32151. height: math.unit(9, "feet"),
  32152. default: true
  32153. },
  32154. ]
  32155. ))
  32156. characterMakers.push(() => makeCharacter(
  32157. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32158. {
  32159. front: {
  32160. height: math.unit(8, "feet"),
  32161. weight: math.unit(900, "lb"),
  32162. name: "Front",
  32163. image: {
  32164. source: "./media/characters/owen/front.svg",
  32165. extra: 1761/1657,
  32166. bottom: 74/1835
  32167. }
  32168. },
  32169. side: {
  32170. height: math.unit(8, "feet"),
  32171. weight: math.unit(900, "lb"),
  32172. name: "Side",
  32173. image: {
  32174. source: "./media/characters/owen/side.svg",
  32175. extra: 1797/1734,
  32176. bottom: 30/1827
  32177. }
  32178. },
  32179. back: {
  32180. height: math.unit(8, "feet"),
  32181. weight: math.unit(900, "lb"),
  32182. name: "Back",
  32183. image: {
  32184. source: "./media/characters/owen/back.svg",
  32185. extra: 1796/1706,
  32186. bottom: 59/1855
  32187. }
  32188. },
  32189. maw: {
  32190. height: math.unit(1.76, "feet"),
  32191. name: "Maw",
  32192. image: {
  32193. source: "./media/characters/owen/maw.svg"
  32194. }
  32195. },
  32196. },
  32197. [
  32198. {
  32199. name: "Normal",
  32200. height: math.unit(8, "feet"),
  32201. default: true
  32202. },
  32203. ]
  32204. ))
  32205. characterMakers.push(() => makeCharacter(
  32206. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32207. {
  32208. front: {
  32209. height: math.unit(4, "feet"),
  32210. weight: math.unit(400, "lb"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/ryth/front.svg",
  32214. extra: 1920/1748,
  32215. bottom: 42/1962
  32216. }
  32217. },
  32218. back: {
  32219. height: math.unit(4, "feet"),
  32220. weight: math.unit(400, "lb"),
  32221. name: "Back",
  32222. image: {
  32223. source: "./media/characters/ryth/back.svg",
  32224. extra: 1897/1690,
  32225. bottom: 89/1986
  32226. }
  32227. },
  32228. mouth: {
  32229. height: math.unit(1.39, "feet"),
  32230. name: "Mouth",
  32231. image: {
  32232. source: "./media/characters/ryth/mouth.svg"
  32233. }
  32234. },
  32235. tailmaw: {
  32236. height: math.unit(1.23, "feet"),
  32237. name: "Tailmaw",
  32238. image: {
  32239. source: "./media/characters/ryth/tailmaw.svg"
  32240. }
  32241. },
  32242. goia: {
  32243. height: math.unit(4, "meters"),
  32244. weight: math.unit(10800, "lb"),
  32245. name: "Goia",
  32246. image: {
  32247. source: "./media/characters/ryth/goia.svg",
  32248. extra: 745/640,
  32249. bottom: 107/852
  32250. }
  32251. },
  32252. goiaFront: {
  32253. height: math.unit(4, "meters"),
  32254. weight: math.unit(10800, "lb"),
  32255. name: "Goia (Front)",
  32256. image: {
  32257. source: "./media/characters/ryth/goia-front.svg",
  32258. extra: 750/586,
  32259. bottom: 114/864
  32260. }
  32261. },
  32262. goiaMaw: {
  32263. height: math.unit(5.55, "feet"),
  32264. name: "Goia Maw",
  32265. image: {
  32266. source: "./media/characters/ryth/goia-maw.svg"
  32267. }
  32268. },
  32269. goiaForepaw: {
  32270. height: math.unit(3.5, "feet"),
  32271. name: "Goia Forepaw",
  32272. image: {
  32273. source: "./media/characters/ryth/goia-forepaw.svg"
  32274. }
  32275. },
  32276. goiaHindpaw: {
  32277. height: math.unit(5.55, "feet"),
  32278. name: "Goia Hindpaw",
  32279. image: {
  32280. source: "./media/characters/ryth/goia-hindpaw.svg"
  32281. }
  32282. },
  32283. },
  32284. [
  32285. {
  32286. name: "Normal",
  32287. height: math.unit(4, "feet"),
  32288. default: true
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32294. {
  32295. front: {
  32296. height: math.unit(7, "feet"),
  32297. weight: math.unit(180, "lb"),
  32298. name: "Front",
  32299. image: {
  32300. source: "./media/characters/necrolance/front.svg",
  32301. extra: 1062/947,
  32302. bottom: 41/1103
  32303. }
  32304. },
  32305. back: {
  32306. height: math.unit(7, "feet"),
  32307. weight: math.unit(180, "lb"),
  32308. name: "Back",
  32309. image: {
  32310. source: "./media/characters/necrolance/back.svg",
  32311. extra: 1045/984,
  32312. bottom: 14/1059
  32313. }
  32314. },
  32315. wing: {
  32316. height: math.unit(2.67, "feet"),
  32317. name: "Wing",
  32318. image: {
  32319. source: "./media/characters/necrolance/wing.svg"
  32320. }
  32321. },
  32322. },
  32323. [
  32324. {
  32325. name: "Normal",
  32326. height: math.unit(7, "feet"),
  32327. default: true
  32328. },
  32329. ]
  32330. ))
  32331. characterMakers.push(() => makeCharacter(
  32332. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32333. {
  32334. front: {
  32335. height: math.unit(76, "meters"),
  32336. weight: math.unit(30000, "tons"),
  32337. name: "Front",
  32338. image: {
  32339. source: "./media/characters/tyler/front.svg",
  32340. extra: 1640/1640,
  32341. bottom: 114/1754
  32342. }
  32343. },
  32344. },
  32345. [
  32346. {
  32347. name: "Macro",
  32348. height: math.unit(76, "meters"),
  32349. default: true
  32350. },
  32351. ]
  32352. ))
  32353. characterMakers.push(() => makeCharacter(
  32354. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32355. {
  32356. front: {
  32357. height: math.unit(4 + 11/12, "feet"),
  32358. weight: math.unit(132, "lb"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/icey/front.svg",
  32362. extra: 2750/2550,
  32363. bottom: 33/2783
  32364. }
  32365. },
  32366. back: {
  32367. height: math.unit(4 + 11/12, "feet"),
  32368. weight: math.unit(132, "lb"),
  32369. name: "Back",
  32370. image: {
  32371. source: "./media/characters/icey/back.svg",
  32372. extra: 2624/2481,
  32373. bottom: 35/2659
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(4 + 11/12, "feet"),
  32381. default: true
  32382. },
  32383. ]
  32384. ))
  32385. characterMakers.push(() => makeCharacter(
  32386. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32387. {
  32388. front: {
  32389. height: math.unit(100, "feet"),
  32390. weight: math.unit(0, "lb"),
  32391. name: "Front",
  32392. image: {
  32393. source: "./media/characters/smile/front.svg",
  32394. extra: 2983/2912,
  32395. bottom: 162/3145
  32396. }
  32397. },
  32398. back: {
  32399. height: math.unit(100, "feet"),
  32400. weight: math.unit(0, "lb"),
  32401. name: "Back",
  32402. image: {
  32403. source: "./media/characters/smile/back.svg",
  32404. extra: 3143/3031,
  32405. bottom: 91/3234
  32406. }
  32407. },
  32408. head: {
  32409. height: math.unit(26.3, "feet"),
  32410. weight: math.unit(0, "lb"),
  32411. name: "Head",
  32412. image: {
  32413. source: "./media/characters/smile/head.svg"
  32414. }
  32415. },
  32416. collar: {
  32417. height: math.unit(5.3, "feet"),
  32418. weight: math.unit(0, "lb"),
  32419. name: "Collar",
  32420. image: {
  32421. source: "./media/characters/smile/collar.svg"
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Macro",
  32428. height: math.unit(100, "feet"),
  32429. default: true
  32430. },
  32431. ]
  32432. ))
  32433. characterMakers.push(() => makeCharacter(
  32434. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32435. {
  32436. dragon: {
  32437. height: math.unit(26, "feet"),
  32438. weight: math.unit(36, "tons"),
  32439. name: "Dragon",
  32440. image: {
  32441. source: "./media/characters/arimphae/dragon.svg",
  32442. extra: 1574/983,
  32443. bottom: 357/1931
  32444. }
  32445. },
  32446. drake: {
  32447. height: math.unit(9, "feet"),
  32448. weight: math.unit(1.5, "tons"),
  32449. name: "Drake",
  32450. image: {
  32451. source: "./media/characters/arimphae/drake.svg",
  32452. extra: 1120/925,
  32453. bottom: 435/1555
  32454. }
  32455. },
  32456. },
  32457. [
  32458. {
  32459. name: "Small",
  32460. height: math.unit(26*5/9, "feet")
  32461. },
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(26, "feet"),
  32465. default: true
  32466. },
  32467. ]
  32468. ))
  32469. characterMakers.push(() => makeCharacter(
  32470. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32471. {
  32472. front: {
  32473. height: math.unit(8 + 9/12, "feet"),
  32474. name: "Front",
  32475. image: {
  32476. source: "./media/characters/xander/front.svg",
  32477. extra: 1237/974,
  32478. bottom: 94/1331
  32479. }
  32480. },
  32481. },
  32482. [
  32483. {
  32484. name: "Normal",
  32485. height: math.unit(8 + 9/12, "feet"),
  32486. default: true
  32487. },
  32488. {
  32489. name: "Gaze Grabber",
  32490. height: math.unit(13 + 8/12, "feet")
  32491. },
  32492. {
  32493. name: "Jaw Dropper",
  32494. height: math.unit(27, "feet")
  32495. },
  32496. {
  32497. name: "Show Stopper",
  32498. height: math.unit(136, "feet")
  32499. },
  32500. {
  32501. name: "Superstar",
  32502. height: math.unit(1.9e6, "miles")
  32503. },
  32504. ]
  32505. ))
  32506. characterMakers.push(() => makeCharacter(
  32507. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32508. {
  32509. side: {
  32510. height: math.unit(2100, "feet"),
  32511. name: "Side",
  32512. image: {
  32513. source: "./media/characters/osiris/side.svg",
  32514. extra: 1105/939,
  32515. bottom: 167/1272
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Macro",
  32522. height: math.unit(2100, "feet"),
  32523. default: true
  32524. },
  32525. ]
  32526. ))
  32527. characterMakers.push(() => makeCharacter(
  32528. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32529. {
  32530. front: {
  32531. height: math.unit(6 + 8/12, "feet"),
  32532. weight: math.unit(225, "lb"),
  32533. name: "Front",
  32534. image: {
  32535. source: "./media/characters/rhys-londe/front.svg",
  32536. extra: 2258/2141,
  32537. bottom: 188/2446
  32538. }
  32539. },
  32540. back: {
  32541. height: math.unit(6 + 8/12, "feet"),
  32542. weight: math.unit(225, "lb"),
  32543. name: "Back",
  32544. image: {
  32545. source: "./media/characters/rhys-londe/back.svg",
  32546. extra: 2237/2137,
  32547. bottom: 63/2300
  32548. }
  32549. },
  32550. frontNsfw: {
  32551. height: math.unit(6 + 8/12, "feet"),
  32552. weight: math.unit(225, "lb"),
  32553. name: "Front (NSFW)",
  32554. image: {
  32555. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32556. extra: 2258/2141,
  32557. bottom: 188/2446
  32558. }
  32559. },
  32560. backNsfw: {
  32561. height: math.unit(6 + 8/12, "feet"),
  32562. weight: math.unit(225, "lb"),
  32563. name: "Back (NSFW)",
  32564. image: {
  32565. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32566. extra: 2237/2137,
  32567. bottom: 63/2300
  32568. }
  32569. },
  32570. dick: {
  32571. height: math.unit(30, "inches"),
  32572. name: "Dick",
  32573. image: {
  32574. source: "./media/characters/rhys-londe/dick.svg"
  32575. }
  32576. },
  32577. maw: {
  32578. height: math.unit(1.6, "feet"),
  32579. name: "Maw",
  32580. image: {
  32581. source: "./media/characters/rhys-londe/maw.svg"
  32582. }
  32583. },
  32584. },
  32585. [
  32586. {
  32587. name: "Normal",
  32588. height: math.unit(6 + 8/12, "feet"),
  32589. default: true
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32595. {
  32596. front: {
  32597. height: math.unit(3 + 10/12, "feet"),
  32598. weight: math.unit(90, "lb"),
  32599. name: "Front",
  32600. image: {
  32601. source: "./media/characters/taivas-ensim/front.svg",
  32602. extra: 1327/1216,
  32603. bottom: 96/1423
  32604. }
  32605. },
  32606. back: {
  32607. height: math.unit(3 + 10/12, "feet"),
  32608. weight: math.unit(90, "lb"),
  32609. name: "Back",
  32610. image: {
  32611. source: "./media/characters/taivas-ensim/back.svg",
  32612. extra: 1355/1247,
  32613. bottom: 11/1366
  32614. }
  32615. },
  32616. frontNsfw: {
  32617. height: math.unit(3 + 10/12, "feet"),
  32618. weight: math.unit(90, "lb"),
  32619. name: "Front (NSFW)",
  32620. image: {
  32621. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32622. extra: 1327/1216,
  32623. bottom: 96/1423
  32624. }
  32625. },
  32626. backNsfw: {
  32627. height: math.unit(3 + 10/12, "feet"),
  32628. weight: math.unit(90, "lb"),
  32629. name: "Back (NSFW)",
  32630. image: {
  32631. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32632. extra: 1355/1247,
  32633. bottom: 11/1366
  32634. }
  32635. },
  32636. },
  32637. [
  32638. {
  32639. name: "Normal",
  32640. height: math.unit(3 + 10/12, "feet"),
  32641. default: true
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32647. {
  32648. front: {
  32649. height: math.unit(9 + 6/12, "feet"),
  32650. weight: math.unit(940, "lb"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/byliss/front.svg",
  32654. extra: 1327/1290,
  32655. bottom: 82/1409
  32656. }
  32657. },
  32658. back: {
  32659. height: math.unit(9 + 6/12, "feet"),
  32660. weight: math.unit(940, "lb"),
  32661. name: "Back",
  32662. image: {
  32663. source: "./media/characters/byliss/back.svg",
  32664. extra: 1376/1349,
  32665. bottom: 9/1385
  32666. }
  32667. },
  32668. frontNsfw: {
  32669. height: math.unit(9 + 6/12, "feet"),
  32670. weight: math.unit(940, "lb"),
  32671. name: "Front (NSFW)",
  32672. image: {
  32673. source: "./media/characters/byliss/front-nsfw.svg",
  32674. extra: 1327/1290,
  32675. bottom: 82/1409
  32676. }
  32677. },
  32678. backNsfw: {
  32679. height: math.unit(9 + 6/12, "feet"),
  32680. weight: math.unit(940, "lb"),
  32681. name: "Back (NSFW)",
  32682. image: {
  32683. source: "./media/characters/byliss/back-nsfw.svg",
  32684. extra: 1376/1349,
  32685. bottom: 9/1385
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(9 + 6/12, "feet"),
  32693. default: true
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(5 + 2/12, "feet"),
  32702. weight: math.unit(200, "lb"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/noraly/front.svg",
  32706. extra: 4985/4773,
  32707. bottom: 150/5135
  32708. }
  32709. },
  32710. full: {
  32711. height: math.unit(5 + 2/12, "feet"),
  32712. weight: math.unit(164, "lb"),
  32713. name: "Full",
  32714. image: {
  32715. source: "./media/characters/noraly/full.svg",
  32716. extra: 1114/1059,
  32717. bottom: 35/1149
  32718. }
  32719. },
  32720. fuller: {
  32721. height: math.unit(5 + 2/12, "feet"),
  32722. weight: math.unit(230, "lb"),
  32723. name: "Fuller",
  32724. image: {
  32725. source: "./media/characters/noraly/fuller.svg",
  32726. extra: 1114/1059,
  32727. bottom: 35/1149
  32728. }
  32729. },
  32730. fullest: {
  32731. height: math.unit(5 + 2/12, "feet"),
  32732. weight: math.unit(300, "lb"),
  32733. name: "Fullest",
  32734. image: {
  32735. source: "./media/characters/noraly/fullest.svg",
  32736. extra: 1114/1059,
  32737. bottom: 35/1149
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Normal",
  32744. height: math.unit(5 + 2/12, "feet"),
  32745. default: true
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32751. {
  32752. front: {
  32753. height: math.unit(5 + 2/12, "feet"),
  32754. weight: math.unit(210, "lb"),
  32755. name: "Front",
  32756. image: {
  32757. source: "./media/characters/pera/front.svg",
  32758. extra: 1560/1531,
  32759. bottom: 165/1725
  32760. }
  32761. },
  32762. back: {
  32763. height: math.unit(5 + 2/12, "feet"),
  32764. weight: math.unit(210, "lb"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/pera/back.svg",
  32768. extra: 1523/1493,
  32769. bottom: 152/1675
  32770. }
  32771. },
  32772. dick: {
  32773. height: math.unit(2.4, "feet"),
  32774. name: "Dick",
  32775. image: {
  32776. source: "./media/characters/pera/dick.svg"
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Normal",
  32783. height: math.unit(5 + 2/12, "feet"),
  32784. default: true
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(12, "feet"),
  32793. weight: math.unit(3200, "lb"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/julian/front.svg",
  32797. extra: 2962/2701,
  32798. bottom: 184/3146
  32799. }
  32800. },
  32801. maw: {
  32802. height: math.unit(5.35, "feet"),
  32803. name: "Maw",
  32804. image: {
  32805. source: "./media/characters/julian/maw.svg"
  32806. }
  32807. },
  32808. paw: {
  32809. height: math.unit(3.07, "feet"),
  32810. name: "Paw",
  32811. image: {
  32812. source: "./media/characters/julian/paw.svg"
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Default",
  32819. height: math.unit(12, "feet"),
  32820. default: true
  32821. },
  32822. {
  32823. name: "Big",
  32824. height: math.unit(50, "feet")
  32825. },
  32826. {
  32827. name: "Really Big",
  32828. height: math.unit(1, "mile")
  32829. },
  32830. {
  32831. name: "Extremely Big",
  32832. height: math.unit(100, "miles")
  32833. },
  32834. {
  32835. name: "Planet Hugger",
  32836. height: math.unit(200, "megameters")
  32837. },
  32838. {
  32839. name: "Unreasonably Big",
  32840. height: math.unit(1e300, "meters")
  32841. },
  32842. ]
  32843. ))
  32844. characterMakers.push(() => makeCharacter(
  32845. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32846. {
  32847. solgooleo: {
  32848. height: math.unit(4, "meters"),
  32849. weight: math.unit(6000*1.5, "kg"),
  32850. volume: math.unit(6000, "liters"),
  32851. name: "Solgooleo",
  32852. image: {
  32853. source: "./media/characters/pi/solgooleo.svg",
  32854. extra: 388/331,
  32855. bottom: 29/417
  32856. }
  32857. },
  32858. },
  32859. [
  32860. {
  32861. name: "Normal",
  32862. height: math.unit(4, "meters"),
  32863. default: true
  32864. },
  32865. ]
  32866. ))
  32867. characterMakers.push(() => makeCharacter(
  32868. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32869. {
  32870. front: {
  32871. height: math.unit(8, "feet"),
  32872. weight: math.unit(4, "tons"),
  32873. name: "Front",
  32874. image: {
  32875. source: "./media/characters/shaun/front.svg",
  32876. extra: 503/495,
  32877. bottom: 20/523
  32878. }
  32879. },
  32880. back: {
  32881. height: math.unit(8, "feet"),
  32882. weight: math.unit(4, "tons"),
  32883. name: "Back",
  32884. image: {
  32885. source: "./media/characters/shaun/back.svg",
  32886. extra: 487/480,
  32887. bottom: 20/507
  32888. }
  32889. },
  32890. },
  32891. [
  32892. {
  32893. name: "Lorg",
  32894. height: math.unit(8, "feet"),
  32895. default: true
  32896. },
  32897. ]
  32898. ))
  32899. characterMakers.push(() => makeCharacter(
  32900. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32901. {
  32902. front: {
  32903. height: math.unit(7, "feet"),
  32904. name: "Front",
  32905. image: {
  32906. source: "./media/characters/sini/front.svg",
  32907. extra: 726/678,
  32908. bottom: 35/761
  32909. }
  32910. },
  32911. back: {
  32912. height: math.unit(7, "feet"),
  32913. name: "Back",
  32914. image: {
  32915. source: "./media/characters/sini/back.svg",
  32916. extra: 743/701,
  32917. bottom: 12/755
  32918. }
  32919. },
  32920. mawAnthro: {
  32921. height: math.unit(2.14, "feet"),
  32922. name: "Maw (Anthro)",
  32923. image: {
  32924. source: "./media/characters/sini/maw-anthro.svg"
  32925. }
  32926. },
  32927. dick: {
  32928. height: math.unit(1.45, "feet"),
  32929. name: "Dick (Anthro)",
  32930. image: {
  32931. source: "./media/characters/sini/dick-anthro.svg"
  32932. }
  32933. },
  32934. feral: {
  32935. height: math.unit(16, "feet"),
  32936. name: "Feral",
  32937. image: {
  32938. source: "./media/characters/sini/feral.svg",
  32939. extra: 814/605,
  32940. bottom: 11/825
  32941. }
  32942. },
  32943. mawFeral: {
  32944. height: math.unit(5.66, "feet"),
  32945. name: "Maw-feral",
  32946. image: {
  32947. source: "./media/characters/sini/maw-feral.svg"
  32948. }
  32949. },
  32950. footFeral: {
  32951. height: math.unit(5.17, "feet"),
  32952. name: "Foot-feral",
  32953. image: {
  32954. source: "./media/characters/sini/foot-feral.svg"
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Normal",
  32961. height: math.unit(7, "feet"),
  32962. default: true
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32968. {
  32969. side: {
  32970. height: math.unit(13, "meters"),
  32971. weight: math.unit(9072, "kg"),
  32972. name: "Side",
  32973. image: {
  32974. source: "./media/characters/raylldo/side.svg",
  32975. extra: 403/344,
  32976. bottom: 42/445
  32977. }
  32978. },
  32979. leaping: {
  32980. height: math.unit(12.3, "meters"),
  32981. weight: math.unit(9072, "kg"),
  32982. name: "Leaping",
  32983. image: {
  32984. source: "./media/characters/raylldo/leaping.svg",
  32985. extra: 470/249,
  32986. bottom: 13/483
  32987. }
  32988. },
  32989. flying: {
  32990. height: math.unit(18, "meters"),
  32991. weight: math.unit(9072, "kg"),
  32992. name: "Flying",
  32993. image: {
  32994. source: "./media/characters/raylldo/flying.svg"
  32995. }
  32996. },
  32997. head: {
  32998. height: math.unit(5.85, "meters"),
  32999. name: "Head",
  33000. image: {
  33001. source: "./media/characters/raylldo/head.svg"
  33002. }
  33003. },
  33004. maw: {
  33005. height: math.unit(5.32, "meters"),
  33006. name: "Maw",
  33007. image: {
  33008. source: "./media/characters/raylldo/maw.svg"
  33009. }
  33010. },
  33011. eye: {
  33012. height: math.unit(0.54, "meters"),
  33013. name: "Eye",
  33014. image: {
  33015. source: "./media/characters/raylldo/eye.svg"
  33016. }
  33017. },
  33018. },
  33019. [
  33020. {
  33021. name: "Normal",
  33022. height: math.unit(13, "meters"),
  33023. default: true
  33024. },
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33029. {
  33030. anthroFront: {
  33031. height: math.unit(9, "feet"),
  33032. weight: math.unit(600, "lb"),
  33033. name: "Anthro (Front)",
  33034. image: {
  33035. source: "./media/characters/glint/anthro-front.svg",
  33036. extra: 1097/1018,
  33037. bottom: 28/1125
  33038. }
  33039. },
  33040. anthroBack: {
  33041. height: math.unit(9, "feet"),
  33042. weight: math.unit(600, "lb"),
  33043. name: "Anthro (Back)",
  33044. image: {
  33045. source: "./media/characters/glint/anthro-back.svg",
  33046. extra: 1154/997,
  33047. bottom: 36/1190
  33048. }
  33049. },
  33050. feral: {
  33051. height: math.unit(11, "feet"),
  33052. weight: math.unit(50000, "lb"),
  33053. name: "Feral",
  33054. image: {
  33055. source: "./media/characters/glint/feral.svg",
  33056. extra: 3035/1585,
  33057. bottom: 1169/4204
  33058. }
  33059. },
  33060. dickAnthro: {
  33061. height: math.unit(0.7, "meters"),
  33062. name: "Dick (Anthro)",
  33063. image: {
  33064. source: "./media/characters/glint/dick-anthro.svg"
  33065. }
  33066. },
  33067. dickFeral: {
  33068. height: math.unit(2.65, "meters"),
  33069. name: "Dick (Feral)",
  33070. image: {
  33071. source: "./media/characters/glint/dick-feral.svg"
  33072. }
  33073. },
  33074. slitHidden: {
  33075. height: math.unit(5.85, "meters"),
  33076. name: "Slit (Hidden)",
  33077. image: {
  33078. source: "./media/characters/glint/slit-hidden.svg"
  33079. }
  33080. },
  33081. slitErect: {
  33082. height: math.unit(5.85, "meters"),
  33083. name: "Slit (Erect)",
  33084. image: {
  33085. source: "./media/characters/glint/slit-erect.svg"
  33086. }
  33087. },
  33088. mawAnthro: {
  33089. height: math.unit(0.63, "meters"),
  33090. name: "Maw (Anthro)",
  33091. image: {
  33092. source: "./media/characters/glint/maw.svg"
  33093. }
  33094. },
  33095. mawFeral: {
  33096. height: math.unit(2.89, "meters"),
  33097. name: "Maw (Feral)",
  33098. image: {
  33099. source: "./media/characters/glint/maw.svg"
  33100. }
  33101. },
  33102. },
  33103. [
  33104. {
  33105. name: "Normal",
  33106. height: math.unit(9, "feet"),
  33107. default: true
  33108. },
  33109. ]
  33110. ))
  33111. characterMakers.push(() => makeCharacter(
  33112. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33113. {
  33114. side: {
  33115. height: math.unit(15, "feet"),
  33116. weight: math.unit(5000, "kg"),
  33117. name: "Side",
  33118. image: {
  33119. source: "./media/characters/kairne/side.svg",
  33120. extra: 979/811,
  33121. bottom: 13/992
  33122. }
  33123. },
  33124. front: {
  33125. height: math.unit(15, "feet"),
  33126. weight: math.unit(5000, "kg"),
  33127. name: "Front",
  33128. image: {
  33129. source: "./media/characters/kairne/front.svg",
  33130. extra: 908/814,
  33131. bottom: 26/934
  33132. }
  33133. },
  33134. sideNsfw: {
  33135. height: math.unit(15, "feet"),
  33136. weight: math.unit(5000, "kg"),
  33137. name: "Side (NSFW)",
  33138. image: {
  33139. source: "./media/characters/kairne/side-nsfw.svg",
  33140. extra: 979/811,
  33141. bottom: 13/992
  33142. }
  33143. },
  33144. frontNsfw: {
  33145. height: math.unit(15, "feet"),
  33146. weight: math.unit(5000, "kg"),
  33147. name: "Front (NSFW)",
  33148. image: {
  33149. source: "./media/characters/kairne/front-nsfw.svg",
  33150. extra: 908/814,
  33151. bottom: 26/934
  33152. }
  33153. },
  33154. dickCaged: {
  33155. height: math.unit(0.65, "meters"),
  33156. name: "Dick-caged",
  33157. image: {
  33158. source: "./media/characters/kairne/dick-caged.svg"
  33159. }
  33160. },
  33161. dick: {
  33162. height: math.unit(0.79, "meters"),
  33163. name: "Dick",
  33164. image: {
  33165. source: "./media/characters/kairne/dick.svg"
  33166. }
  33167. },
  33168. genitals: {
  33169. height: math.unit(1.29, "meters"),
  33170. name: "Genitals",
  33171. image: {
  33172. source: "./media/characters/kairne/genitals.svg"
  33173. }
  33174. },
  33175. maw: {
  33176. height: math.unit(1.73, "meters"),
  33177. name: "Maw",
  33178. image: {
  33179. source: "./media/characters/kairne/maw.svg"
  33180. }
  33181. },
  33182. },
  33183. [
  33184. {
  33185. name: "Normal",
  33186. height: math.unit(15, "feet"),
  33187. default: true
  33188. },
  33189. ]
  33190. ))
  33191. characterMakers.push(() => makeCharacter(
  33192. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33193. {
  33194. front: {
  33195. height: math.unit(5 + 8/12, "feet"),
  33196. weight: math.unit(139, "lb"),
  33197. name: "Front",
  33198. image: {
  33199. source: "./media/characters/biscuit-jackal/front.svg",
  33200. extra: 2106/1961,
  33201. bottom: 58/2164
  33202. }
  33203. },
  33204. back: {
  33205. height: math.unit(5 + 8/12, "feet"),
  33206. weight: math.unit(139, "lb"),
  33207. name: "Back",
  33208. image: {
  33209. source: "./media/characters/biscuit-jackal/back.svg",
  33210. extra: 2132/1976,
  33211. bottom: 57/2189
  33212. }
  33213. },
  33214. werejackal: {
  33215. height: math.unit(6 + 3/12, "feet"),
  33216. weight: math.unit(188, "lb"),
  33217. name: "Werejackal",
  33218. image: {
  33219. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33220. extra: 2373/2178,
  33221. bottom: 53/2426
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Normal",
  33228. height: math.unit(5 + 8/12, "feet"),
  33229. default: true
  33230. },
  33231. ]
  33232. ))
  33233. characterMakers.push(() => makeCharacter(
  33234. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33235. {
  33236. front: {
  33237. height: math.unit(140, "cm"),
  33238. weight: math.unit(45, "kg"),
  33239. name: "Front",
  33240. image: {
  33241. source: "./media/characters/tayra-white/front.svg",
  33242. extra: 2229/2192,
  33243. bottom: 75/2304
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Normal",
  33250. height: math.unit(140, "cm"),
  33251. default: true
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33257. {
  33258. front: {
  33259. height: math.unit(4 + 5/12, "feet"),
  33260. name: "Front",
  33261. image: {
  33262. source: "./media/characters/scoop/front.svg",
  33263. extra: 1257/1136,
  33264. bottom: 69/1326
  33265. }
  33266. },
  33267. back: {
  33268. height: math.unit(4 + 5/12, "feet"),
  33269. name: "Back",
  33270. image: {
  33271. source: "./media/characters/scoop/back.svg",
  33272. extra: 1321/1152,
  33273. bottom: 32/1353
  33274. }
  33275. },
  33276. maw: {
  33277. height: math.unit(0.68, "feet"),
  33278. name: "Maw",
  33279. image: {
  33280. source: "./media/characters/scoop/maw.svg"
  33281. }
  33282. },
  33283. },
  33284. [
  33285. {
  33286. name: "Really Small",
  33287. height: math.unit(1, "mm")
  33288. },
  33289. {
  33290. name: "Micro",
  33291. height: math.unit(1, "inch")
  33292. },
  33293. {
  33294. name: "Normal",
  33295. height: math.unit(4 + 5/12, "feet"),
  33296. default: true
  33297. },
  33298. {
  33299. name: "Macro",
  33300. height: math.unit(200, "feet")
  33301. },
  33302. {
  33303. name: "Megamacro",
  33304. height: math.unit(3240, "feet")
  33305. },
  33306. {
  33307. name: "Teramacro",
  33308. height: math.unit(2500, "miles")
  33309. },
  33310. ]
  33311. ))
  33312. characterMakers.push(() => makeCharacter(
  33313. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33314. {
  33315. front: {
  33316. height: math.unit(15 + 7/12, "feet"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/saphinara/front.svg",
  33320. extra: 604/546,
  33321. bottom: 19/623
  33322. }
  33323. },
  33324. side: {
  33325. height: math.unit(15 + 7/12, "feet"),
  33326. name: "Side",
  33327. image: {
  33328. source: "./media/characters/saphinara/side.svg",
  33329. extra: 605/547,
  33330. bottom: 6/611
  33331. }
  33332. },
  33333. back: {
  33334. height: math.unit(15 + 7/12, "feet"),
  33335. name: "Back",
  33336. image: {
  33337. source: "./media/characters/saphinara/back.svg",
  33338. extra: 591/531,
  33339. bottom: 13/604
  33340. }
  33341. },
  33342. frontTail: {
  33343. height: math.unit(15 + 7/12, "feet"),
  33344. name: "Front (Full Tail)",
  33345. image: {
  33346. source: "./media/characters/saphinara/front-tail.svg",
  33347. extra: 748/547,
  33348. bottom: 66/814
  33349. }
  33350. },
  33351. },
  33352. [
  33353. {
  33354. name: "Normal",
  33355. height: math.unit(15 + 7/12, "feet"),
  33356. default: true
  33357. },
  33358. {
  33359. name: "Angry",
  33360. height: math.unit(30 + 6/12, "feet")
  33361. },
  33362. {
  33363. name: "Enraged",
  33364. height: math.unit(102 + 1/12, "feet")
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33370. {
  33371. front: {
  33372. height: math.unit(6 + 8/12, "feet"),
  33373. weight: math.unit(300, "lb"),
  33374. name: "Front",
  33375. image: {
  33376. source: "./media/characters/jrain/front.svg",
  33377. extra: 3039/2865,
  33378. bottom: 399/3438
  33379. }
  33380. },
  33381. back: {
  33382. height: math.unit(6 + 8/12, "feet"),
  33383. weight: math.unit(300, "lb"),
  33384. name: "Back",
  33385. image: {
  33386. source: "./media/characters/jrain/back.svg",
  33387. extra: 3089/2938,
  33388. bottom: 172/3261
  33389. }
  33390. },
  33391. head: {
  33392. height: math.unit(2.14, "feet"),
  33393. name: "Head",
  33394. image: {
  33395. source: "./media/characters/jrain/head.svg"
  33396. }
  33397. },
  33398. maw: {
  33399. height: math.unit(1.77, "feet"),
  33400. name: "Maw",
  33401. image: {
  33402. source: "./media/characters/jrain/maw.svg"
  33403. }
  33404. },
  33405. leftHand: {
  33406. height: math.unit(1.1, "feet"),
  33407. name: "Left Hand",
  33408. image: {
  33409. source: "./media/characters/jrain/left-hand.svg"
  33410. }
  33411. },
  33412. rightHand: {
  33413. height: math.unit(1.1, "feet"),
  33414. name: "Right Hand",
  33415. image: {
  33416. source: "./media/characters/jrain/right-hand.svg"
  33417. }
  33418. },
  33419. eye: {
  33420. height: math.unit(0.35, "feet"),
  33421. name: "Eye",
  33422. image: {
  33423. source: "./media/characters/jrain/eye.svg"
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(6 + 8/12, "feet"),
  33431. default: true
  33432. },
  33433. {
  33434. name: "Casually Large",
  33435. height: math.unit(25, "feet")
  33436. },
  33437. {
  33438. name: "Giant",
  33439. height: math.unit(100, "feet")
  33440. },
  33441. {
  33442. name: "Kaiju",
  33443. height: math.unit(300, "feet")
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33449. {
  33450. dragon: {
  33451. height: math.unit(5, "meters"),
  33452. name: "Dragon",
  33453. image: {
  33454. source: "./media/characters/sabrina/dragon.svg",
  33455. extra: 3670 / 2365,
  33456. bottom: 333 / 4003
  33457. }
  33458. },
  33459. gryphon: {
  33460. height: math.unit(3, "meters"),
  33461. name: "Gryphon",
  33462. image: {
  33463. source: "./media/characters/sabrina/gryphon.svg",
  33464. extra: 1576 / 945,
  33465. bottom: 71 / 1647
  33466. }
  33467. },
  33468. snake: {
  33469. height: math.unit(12, "meters"),
  33470. name: "Snake",
  33471. image: {
  33472. source: "./media/characters/sabrina/snake.svg",
  33473. extra: 1758 / 1320,
  33474. bottom: 186 / 1944
  33475. }
  33476. },
  33477. collar: {
  33478. height: math.unit(1.86, "meters"),
  33479. name: "Collar",
  33480. image: {
  33481. source: "./media/characters/sabrina/collar.svg"
  33482. }
  33483. },
  33484. eye: {
  33485. height: math.unit(0.53, "meters"),
  33486. name: "Eye",
  33487. image: {
  33488. source: "./media/characters/sabrina/eye.svg"
  33489. }
  33490. },
  33491. foot: {
  33492. height: math.unit(1.86, "meters"),
  33493. name: "Foot",
  33494. image: {
  33495. source: "./media/characters/sabrina/foot.svg"
  33496. }
  33497. },
  33498. hand: {
  33499. height: math.unit(1.32, "meters"),
  33500. name: "Hand",
  33501. image: {
  33502. source: "./media/characters/sabrina/hand.svg"
  33503. }
  33504. },
  33505. head: {
  33506. height: math.unit(2.44, "meters"),
  33507. name: "Head",
  33508. image: {
  33509. source: "./media/characters/sabrina/head.svg"
  33510. }
  33511. },
  33512. headAngry: {
  33513. height: math.unit(2.44, "meters"),
  33514. name: "Head (Angry))",
  33515. image: {
  33516. source: "./media/characters/sabrina/head-angry.svg"
  33517. }
  33518. },
  33519. maw: {
  33520. height: math.unit(1.65, "meters"),
  33521. name: "Maw",
  33522. image: {
  33523. source: "./media/characters/sabrina/maw.svg"
  33524. }
  33525. },
  33526. spikes: {
  33527. height: math.unit(1.69, "meters"),
  33528. name: "Spikes",
  33529. image: {
  33530. source: "./media/characters/sabrina/spikes.svg"
  33531. }
  33532. },
  33533. stomach: {
  33534. height: math.unit(1.15, "meters"),
  33535. name: "Stomach",
  33536. image: {
  33537. source: "./media/characters/sabrina/stomach.svg"
  33538. }
  33539. },
  33540. tongue: {
  33541. height: math.unit(1.27, "meters"),
  33542. name: "Tongue",
  33543. image: {
  33544. source: "./media/characters/sabrina/tongue.svg"
  33545. }
  33546. },
  33547. wingDorsal: {
  33548. height: math.unit(4.85, "meters"),
  33549. name: "Wing (Dorsal)",
  33550. image: {
  33551. source: "./media/characters/sabrina/wing-dorsal.svg"
  33552. }
  33553. },
  33554. wingVentral: {
  33555. height: math.unit(4.85, "meters"),
  33556. name: "Wing (Ventral)",
  33557. image: {
  33558. source: "./media/characters/sabrina/wing-ventral.svg"
  33559. }
  33560. },
  33561. },
  33562. [
  33563. {
  33564. name: "Normal",
  33565. height: math.unit(5, "meters"),
  33566. default: true
  33567. },
  33568. ]
  33569. ))
  33570. characterMakers.push(() => makeCharacter(
  33571. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33572. {
  33573. frontMaid: {
  33574. height: math.unit(5 + 5/12, "feet"),
  33575. weight: math.unit(130, "lb"),
  33576. name: "Front (Maid)",
  33577. image: {
  33578. source: "./media/characters/midnight-tales/front-maid.svg",
  33579. extra: 489/454,
  33580. bottom: 61/550
  33581. }
  33582. },
  33583. frontFormal: {
  33584. height: math.unit(5 + 5/12, "feet"),
  33585. weight: math.unit(130, "lb"),
  33586. name: "Front (Formal)",
  33587. image: {
  33588. source: "./media/characters/midnight-tales/front-formal.svg",
  33589. extra: 489/454,
  33590. bottom: 61/550
  33591. }
  33592. },
  33593. back: {
  33594. height: math.unit(5 + 5/12, "feet"),
  33595. weight: math.unit(130, "lb"),
  33596. name: "Back",
  33597. image: {
  33598. source: "./media/characters/midnight-tales/back.svg",
  33599. extra: 498/456,
  33600. bottom: 33/531
  33601. }
  33602. },
  33603. frontBeast: {
  33604. height: math.unit(40, "feet"),
  33605. weight: math.unit(64000, "lb"),
  33606. name: "Front (Beast)",
  33607. image: {
  33608. source: "./media/characters/midnight-tales/front-beast.svg",
  33609. extra: 927/860,
  33610. bottom: 53/980
  33611. }
  33612. },
  33613. backBeast: {
  33614. height: math.unit(40, "feet"),
  33615. weight: math.unit(64000, "lb"),
  33616. name: "Back (Beast)",
  33617. image: {
  33618. source: "./media/characters/midnight-tales/back-beast.svg",
  33619. extra: 929/855,
  33620. bottom: 16/945
  33621. }
  33622. },
  33623. footBeast: {
  33624. height: math.unit(6.7, "feet"),
  33625. name: "Foot (Beast)",
  33626. image: {
  33627. source: "./media/characters/midnight-tales/foot-beast.svg"
  33628. }
  33629. },
  33630. headBeast: {
  33631. height: math.unit(8, "feet"),
  33632. name: "Head (Beast)",
  33633. image: {
  33634. source: "./media/characters/midnight-tales/head-beast.svg"
  33635. }
  33636. },
  33637. },
  33638. [
  33639. {
  33640. name: "Normal",
  33641. height: math.unit(5 + 5 / 12, "feet"),
  33642. default: true
  33643. },
  33644. {
  33645. name: "Macro",
  33646. height: math.unit(25, "feet")
  33647. },
  33648. ]
  33649. ))
  33650. characterMakers.push(() => makeCharacter(
  33651. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33652. {
  33653. front: {
  33654. height: math.unit(5 + 10/12, "feet"),
  33655. name: "Front",
  33656. image: {
  33657. source: "./media/characters/argon/front.svg",
  33658. extra: 2009/1935,
  33659. bottom: 118/2127
  33660. }
  33661. },
  33662. back: {
  33663. height: math.unit(5 + 10/12, "feet"),
  33664. name: "Back",
  33665. image: {
  33666. source: "./media/characters/argon/back.svg",
  33667. extra: 2047/1992,
  33668. bottom: 20/2067
  33669. }
  33670. },
  33671. frontDressed: {
  33672. height: math.unit(5 + 10/12, "feet"),
  33673. name: "Front (Dressed)",
  33674. image: {
  33675. source: "./media/characters/argon/front-dressed.svg",
  33676. extra: 2009/1935,
  33677. bottom: 118/2127
  33678. }
  33679. },
  33680. },
  33681. [
  33682. {
  33683. name: "Normal",
  33684. height: math.unit(5 + 10/12, "feet"),
  33685. default: true
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(8 + 6/12, "feet"),
  33694. weight: math.unit(1150, "lb"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/kichi/front.svg",
  33698. extra: 1267/1164,
  33699. bottom: 61/1328
  33700. }
  33701. },
  33702. back: {
  33703. height: math.unit(8 + 6/12, "feet"),
  33704. weight: math.unit(1150, "lb"),
  33705. name: "Back",
  33706. image: {
  33707. source: "./media/characters/kichi/back.svg",
  33708. extra: 1273/1166,
  33709. bottom: 33/1306
  33710. }
  33711. },
  33712. },
  33713. [
  33714. {
  33715. name: "Normal",
  33716. height: math.unit(8 + 6/12, "feet"),
  33717. default: true
  33718. },
  33719. ]
  33720. ))
  33721. characterMakers.push(() => makeCharacter(
  33722. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33723. {
  33724. front: {
  33725. height: math.unit(6, "feet"),
  33726. weight: math.unit(210, "lb"),
  33727. name: "Front",
  33728. image: {
  33729. source: "./media/characters/manetel-greyscale/front.svg",
  33730. extra: 350/312,
  33731. bottom: 8/358
  33732. }
  33733. },
  33734. },
  33735. [
  33736. {
  33737. name: "Micro",
  33738. height: math.unit(2, "inches")
  33739. },
  33740. {
  33741. name: "Normal",
  33742. height: math.unit(6, "feet"),
  33743. default: true
  33744. },
  33745. {
  33746. name: "Minimacro",
  33747. height: math.unit(17, "feet")
  33748. },
  33749. {
  33750. name: "Macro",
  33751. height: math.unit(117, "feet")
  33752. },
  33753. ]
  33754. ))
  33755. characterMakers.push(() => makeCharacter(
  33756. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33757. {
  33758. side: {
  33759. height: math.unit(5 + 1/12, "feet"),
  33760. weight: math.unit(418, "lb"),
  33761. name: "Side",
  33762. image: {
  33763. source: "./media/characters/softpurr/side.svg",
  33764. extra: 1993/1945,
  33765. bottom: 134/2127
  33766. }
  33767. },
  33768. front: {
  33769. height: math.unit(5 + 1/12, "feet"),
  33770. weight: math.unit(418, "lb"),
  33771. name: "Front",
  33772. image: {
  33773. source: "./media/characters/softpurr/front.svg",
  33774. extra: 1950/1856,
  33775. bottom: 174/2124
  33776. }
  33777. },
  33778. paw: {
  33779. height: math.unit(1, "feet"),
  33780. name: "Paw",
  33781. image: {
  33782. source: "./media/characters/softpurr/paw.svg"
  33783. }
  33784. },
  33785. },
  33786. [
  33787. {
  33788. name: "Normal",
  33789. height: math.unit(5 + 1/12, "feet"),
  33790. default: true
  33791. },
  33792. ]
  33793. ))
  33794. characterMakers.push(() => makeCharacter(
  33795. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33796. {
  33797. front: {
  33798. height: math.unit(260, "meters"),
  33799. name: "Front",
  33800. image: {
  33801. source: "./media/characters/anahita/front.svg",
  33802. extra: 665/635,
  33803. bottom: 89/754
  33804. }
  33805. },
  33806. },
  33807. [
  33808. {
  33809. name: "Macro",
  33810. height: math.unit(260, "meters"),
  33811. default: true
  33812. },
  33813. ]
  33814. ))
  33815. characterMakers.push(() => makeCharacter(
  33816. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33817. {
  33818. front: {
  33819. height: math.unit(4 + 10/12, "feet"),
  33820. weight: math.unit(160, "lb"),
  33821. name: "Front",
  33822. image: {
  33823. source: "./media/characters/chip-mouse/front.svg",
  33824. extra: 3528/3408,
  33825. bottom: 0/3528
  33826. }
  33827. },
  33828. frontNsfw: {
  33829. height: math.unit(4 + 10/12, "feet"),
  33830. weight: math.unit(160, "lb"),
  33831. name: "Front (NSFW)",
  33832. image: {
  33833. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33834. extra: 3528/3408,
  33835. bottom: 0/3528
  33836. }
  33837. },
  33838. },
  33839. [
  33840. {
  33841. name: "Normal",
  33842. height: math.unit(4 + 10/12, "feet"),
  33843. default: true
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33849. {
  33850. side: {
  33851. height: math.unit(10, "feet"),
  33852. weight: math.unit(14000, "lb"),
  33853. name: "Side",
  33854. image: {
  33855. source: "./media/characters/kremm/side.svg",
  33856. extra: 1390/1053,
  33857. bottom: 90/1480
  33858. }
  33859. },
  33860. gut: {
  33861. height: math.unit(5.8, "feet"),
  33862. name: "Gut",
  33863. image: {
  33864. source: "./media/characters/kremm/gut.svg"
  33865. }
  33866. },
  33867. ass: {
  33868. height: math.unit(6.1, "feet"),
  33869. name: "Ass",
  33870. image: {
  33871. source: "./media/characters/kremm/ass.svg"
  33872. }
  33873. },
  33874. jaws: {
  33875. height: math.unit(2.2, "feet"),
  33876. name: "Jaws",
  33877. image: {
  33878. source: "./media/characters/kremm/jaws.svg"
  33879. }
  33880. },
  33881. dick: {
  33882. height: math.unit(4.26, "feet"),
  33883. name: "Dick",
  33884. image: {
  33885. source: "./media/characters/kremm/dick.svg"
  33886. }
  33887. },
  33888. },
  33889. [
  33890. {
  33891. name: "Normal",
  33892. height: math.unit(10, "feet"),
  33893. default: true
  33894. },
  33895. ]
  33896. ))
  33897. characterMakers.push(() => makeCharacter(
  33898. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33899. {
  33900. front: {
  33901. height: math.unit(30, "stories"),
  33902. name: "Front",
  33903. image: {
  33904. source: "./media/characters/kai/front.svg",
  33905. extra: 1892/1718,
  33906. bottom: 162/2054
  33907. }
  33908. },
  33909. },
  33910. [
  33911. {
  33912. name: "Macro",
  33913. height: math.unit(30, "stories"),
  33914. default: true
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33920. {
  33921. front: {
  33922. height: math.unit(6 + 4/12, "feet"),
  33923. weight: math.unit(145, "lb"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/sykes/front.svg",
  33927. extra: 1321 / 1187,
  33928. bottom: 66 / 1387
  33929. }
  33930. },
  33931. back: {
  33932. height: math.unit(6 + 4/12, "feet"),
  33933. weight: math.unit(145, "lb"),
  33934. name: "Back",
  33935. image: {
  33936. source: "./media/characters/sykes/back.svg",
  33937. extra: 1326/1181,
  33938. bottom: 31/1357
  33939. }
  33940. },
  33941. handBack: {
  33942. height: math.unit(0.9, "feet"),
  33943. name: "Hand (Back)",
  33944. image: {
  33945. source: "./media/characters/sykes/hand-back.svg"
  33946. }
  33947. },
  33948. handFront: {
  33949. height: math.unit(0.839, "feet"),
  33950. name: "Hand (Front)",
  33951. image: {
  33952. source: "./media/characters/sykes/hand-front.svg"
  33953. }
  33954. },
  33955. leftFoot: {
  33956. height: math.unit(1.2, "feet"),
  33957. name: "Foot (Left)",
  33958. image: {
  33959. source: "./media/characters/sykes/foot-left.svg"
  33960. }
  33961. },
  33962. rightFoot: {
  33963. height: math.unit(1.2, "feet"),
  33964. name: "Foot (Right)",
  33965. image: {
  33966. source: "./media/characters/sykes/foot-right.svg"
  33967. }
  33968. },
  33969. maw: {
  33970. height: math.unit(1.93, "feet"),
  33971. name: "Maw",
  33972. image: {
  33973. source: "./media/characters/sykes/maw.svg"
  33974. }
  33975. },
  33976. teeth: {
  33977. height: math.unit(0.51, "feet"),
  33978. name: "Teeth",
  33979. image: {
  33980. source: "./media/characters/sykes/teeth.svg"
  33981. }
  33982. },
  33983. tongue: {
  33984. height: math.unit(2.13, "feet"),
  33985. name: "Tongue",
  33986. image: {
  33987. source: "./media/characters/sykes/tongue.svg"
  33988. }
  33989. },
  33990. uvula: {
  33991. height: math.unit(0.16, "feet"),
  33992. name: "Uvula",
  33993. image: {
  33994. source: "./media/characters/sykes/uvula.svg"
  33995. }
  33996. },
  33997. collar: {
  33998. height: math.unit(0.287, "feet"),
  33999. name: "Collar",
  34000. image: {
  34001. source: "./media/characters/sykes/collar.svg"
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Shrunken",
  34008. height: math.unit(5, "inches")
  34009. },
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(6 + 4 / 12, "feet"),
  34013. default: true
  34014. },
  34015. {
  34016. name: "Big",
  34017. height: math.unit(15, "feet")
  34018. },
  34019. ]
  34020. ))
  34021. characterMakers.push(() => makeCharacter(
  34022. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34023. {
  34024. front: {
  34025. height: math.unit(5 + 8/12, "feet"),
  34026. weight: math.unit(190, "lb"),
  34027. name: "Front",
  34028. image: {
  34029. source: "./media/characters/oven-otter/front.svg",
  34030. extra: 1809/1740,
  34031. bottom: 181/1990
  34032. }
  34033. },
  34034. back: {
  34035. height: math.unit(5 + 8/12, "feet"),
  34036. weight: math.unit(190, "lb"),
  34037. name: "Back",
  34038. image: {
  34039. source: "./media/characters/oven-otter/back.svg",
  34040. extra: 1709/1635,
  34041. bottom: 118/1827
  34042. }
  34043. },
  34044. hand: {
  34045. height: math.unit(1.07, "feet"),
  34046. name: "Hand",
  34047. image: {
  34048. source: "./media/characters/oven-otter/hand.svg"
  34049. }
  34050. },
  34051. beans: {
  34052. height: math.unit(1.74, "feet"),
  34053. name: "Beans",
  34054. image: {
  34055. source: "./media/characters/oven-otter/beans.svg"
  34056. }
  34057. },
  34058. },
  34059. [
  34060. {
  34061. name: "Micro",
  34062. height: math.unit(0.5, "inches")
  34063. },
  34064. {
  34065. name: "Normal",
  34066. height: math.unit(5 + 8/12, "feet"),
  34067. default: true
  34068. },
  34069. {
  34070. name: "Macro",
  34071. height: math.unit(250, "feet")
  34072. },
  34073. {
  34074. name: "Really High",
  34075. height: math.unit(420, "feet")
  34076. },
  34077. ]
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34081. {
  34082. front: {
  34083. height: math.unit(5, "meters"),
  34084. weight: math.unit(292000000000000, "kg"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/devourer/front.svg",
  34088. extra: 1800/1733,
  34089. bottom: 211/2011
  34090. }
  34091. },
  34092. maw: {
  34093. height: math.unit(1.1, "meter"),
  34094. name: "Maw",
  34095. image: {
  34096. source: "./media/characters/devourer/maw.svg"
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Small",
  34103. height: math.unit(3, "meters")
  34104. },
  34105. {
  34106. name: "Large",
  34107. height: math.unit(5, "meters"),
  34108. default: true
  34109. },
  34110. ]
  34111. ))
  34112. characterMakers.push(() => makeCharacter(
  34113. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34114. {
  34115. front: {
  34116. height: math.unit(6, "feet"),
  34117. weight: math.unit(400, "lb"),
  34118. name: "Front",
  34119. image: {
  34120. source: "./media/characters/ellarby/front.svg",
  34121. extra: 1909/1763,
  34122. bottom: 80/1989
  34123. }
  34124. },
  34125. back: {
  34126. height: math.unit(6, "feet"),
  34127. weight: math.unit(400, "lb"),
  34128. name: "Back",
  34129. image: {
  34130. source: "./media/characters/ellarby/back.svg",
  34131. extra: 1914/1784,
  34132. bottom: 172/2086
  34133. }
  34134. },
  34135. },
  34136. [
  34137. {
  34138. name: "Mischief",
  34139. height: math.unit(18, "inches")
  34140. },
  34141. {
  34142. name: "Trouble",
  34143. height: math.unit(12, "feet")
  34144. },
  34145. {
  34146. name: "Havoc",
  34147. height: math.unit(200, "feet"),
  34148. default: true
  34149. },
  34150. {
  34151. name: "Pandemonium",
  34152. height: math.unit(1, "mile")
  34153. },
  34154. {
  34155. name: "Catastrophe",
  34156. height: math.unit(100, "miles")
  34157. },
  34158. ]
  34159. ))
  34160. characterMakers.push(() => makeCharacter(
  34161. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34162. {
  34163. front: {
  34164. height: math.unit(4.7, "meters"),
  34165. weight: math.unit(6500, "kg"),
  34166. name: "Front",
  34167. image: {
  34168. source: "./media/characters/vex/front.svg",
  34169. extra: 1288/1140,
  34170. bottom: 100/1388
  34171. }
  34172. },
  34173. },
  34174. [
  34175. {
  34176. name: "Normal",
  34177. height: math.unit(4.7, "meters"),
  34178. default: true
  34179. },
  34180. ]
  34181. ))
  34182. characterMakers.push(() => makeCharacter(
  34183. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34184. {
  34185. normal: {
  34186. height: math.unit(6, "feet"),
  34187. weight: math.unit(350, "lb"),
  34188. name: "Normal",
  34189. image: {
  34190. source: "./media/characters/teshy/normal.svg",
  34191. extra: 1795/1735,
  34192. bottom: 16/1811
  34193. }
  34194. },
  34195. monsterFront: {
  34196. height: math.unit(12, "feet"),
  34197. weight: math.unit(4700, "lb"),
  34198. name: "Monster (Front)",
  34199. image: {
  34200. source: "./media/characters/teshy/monster-front.svg",
  34201. extra: 2042/2034,
  34202. bottom: 128/2170
  34203. }
  34204. },
  34205. monsterSide: {
  34206. height: math.unit(12, "feet"),
  34207. weight: math.unit(4700, "lb"),
  34208. name: "Monster (Side)",
  34209. image: {
  34210. source: "./media/characters/teshy/monster-side.svg",
  34211. extra: 2067/2056,
  34212. bottom: 70/2137
  34213. }
  34214. },
  34215. monsterBack: {
  34216. height: math.unit(12, "feet"),
  34217. weight: math.unit(4700, "lb"),
  34218. name: "Monster (Back)",
  34219. image: {
  34220. source: "./media/characters/teshy/monster-back.svg",
  34221. extra: 1921/1914,
  34222. bottom: 171/2092
  34223. }
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(6, "feet"),
  34230. default: true
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34236. {
  34237. front: {
  34238. height: math.unit(6, "feet"),
  34239. name: "Front",
  34240. image: {
  34241. source: "./media/characters/ramey/front.svg",
  34242. extra: 790/787,
  34243. bottom: 27/817
  34244. }
  34245. },
  34246. },
  34247. [
  34248. {
  34249. name: "Normal",
  34250. height: math.unit(6, "feet"),
  34251. default: true
  34252. },
  34253. ]
  34254. ))
  34255. characterMakers.push(() => makeCharacter(
  34256. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34257. {
  34258. front: {
  34259. height: math.unit(5 + 5/12, "feet"),
  34260. weight: math.unit(120, "lb"),
  34261. name: "Front",
  34262. image: {
  34263. source: "./media/characters/phirae/front.svg",
  34264. extra: 2491/2436,
  34265. bottom: 38/2529
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Normal",
  34272. height: math.unit(5 + 5/12, "feet"),
  34273. default: true
  34274. },
  34275. ]
  34276. ))
  34277. characterMakers.push(() => makeCharacter(
  34278. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34279. {
  34280. front: {
  34281. height: math.unit(5 + 3/12, "feet"),
  34282. name: "Front",
  34283. image: {
  34284. source: "./media/characters/stagglas/front.svg",
  34285. extra: 962/882,
  34286. bottom: 53/1015
  34287. }
  34288. },
  34289. feral: {
  34290. height: math.unit(335, "cm"),
  34291. name: "Feral",
  34292. image: {
  34293. source: "./media/characters/stagglas/feral.svg",
  34294. extra: 1732/1090,
  34295. bottom: 48/1780
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(5 + 3/12, "feet"),
  34303. default: true
  34304. },
  34305. ]
  34306. ))
  34307. characterMakers.push(() => makeCharacter(
  34308. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34309. {
  34310. front: {
  34311. height: math.unit(5 + 4/12, "feet"),
  34312. weight: math.unit(145, "lb"),
  34313. name: "Front",
  34314. image: {
  34315. source: "./media/characters/starra/front.svg",
  34316. extra: 1790/1691,
  34317. bottom: 91/1881
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Normal",
  34324. height: math.unit(5 + 4/12, "feet"),
  34325. default: true
  34326. },
  34327. ]
  34328. ))
  34329. characterMakers.push(() => makeCharacter(
  34330. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34331. {
  34332. front: {
  34333. height: math.unit(2.2, "meters"),
  34334. name: "Front",
  34335. image: {
  34336. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34337. extra: 1194/1005,
  34338. bottom: 25/1219
  34339. }
  34340. },
  34341. },
  34342. [
  34343. {
  34344. name: "Normal",
  34345. height: math.unit(2.2, "meters"),
  34346. default: true
  34347. },
  34348. ]
  34349. ))
  34350. characterMakers.push(() => makeCharacter(
  34351. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34352. {
  34353. side: {
  34354. height: math.unit(8 + 2/12, "feet"),
  34355. weight: math.unit(1240, "lb"),
  34356. name: "Side",
  34357. image: {
  34358. source: "./media/characters/mika-valentine/side.svg",
  34359. extra: 2670/2501,
  34360. bottom: 250/2920
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Normal",
  34367. height: math.unit(8 + 2/12, "feet"),
  34368. default: true
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34374. {
  34375. front: {
  34376. height: math.unit(7 + 2/12, "feet"),
  34377. name: "Front",
  34378. image: {
  34379. source: "./media/characters/xoltol/front.svg",
  34380. extra: 2212/2124,
  34381. bottom: 84/2296
  34382. }
  34383. },
  34384. side: {
  34385. height: math.unit(7 + 2/12, "feet"),
  34386. name: "Side",
  34387. image: {
  34388. source: "./media/characters/xoltol/side.svg",
  34389. extra: 2273/2197,
  34390. bottom: 26/2299
  34391. }
  34392. },
  34393. hand: {
  34394. height: math.unit(2.5, "feet"),
  34395. name: "Hand",
  34396. image: {
  34397. source: "./media/characters/xoltol/hand.svg"
  34398. }
  34399. },
  34400. },
  34401. [
  34402. {
  34403. name: "Small-ish",
  34404. height: math.unit(5 + 11/12, "feet")
  34405. },
  34406. {
  34407. name: "Normal",
  34408. height: math.unit(7 + 2/12, "feet")
  34409. },
  34410. {
  34411. name: "\"Macro\"",
  34412. height: math.unit(14 + 9/12, "feet"),
  34413. default: true
  34414. },
  34415. {
  34416. name: "Alternate Height",
  34417. height: math.unit(20, "feet")
  34418. },
  34419. {
  34420. name: "Actually Macro",
  34421. height: math.unit(100, "feet")
  34422. },
  34423. ]
  34424. ))
  34425. characterMakers.push(() => makeCharacter(
  34426. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34427. {
  34428. front: {
  34429. height: math.unit(5 + 2/12, "feet"),
  34430. name: "Front",
  34431. image: {
  34432. source: "./media/characters/kotetsu-redwood/front.svg",
  34433. extra: 1053/942,
  34434. bottom: 60/1113
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(5 + 2/12, "feet"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34448. {
  34449. front: {
  34450. height: math.unit(2.4, "meters"),
  34451. weight: math.unit(125, "kg"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/lilith/front.svg",
  34455. extra: 1590/1513,
  34456. bottom: 203/1793
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Humanoid",
  34463. height: math.unit(2.4, "meters")
  34464. },
  34465. {
  34466. name: "Normal",
  34467. height: math.unit(6, "meters"),
  34468. default: true
  34469. },
  34470. {
  34471. name: "Largest",
  34472. height: math.unit(55, "meters")
  34473. },
  34474. ]
  34475. ))
  34476. characterMakers.push(() => makeCharacter(
  34477. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34478. {
  34479. front: {
  34480. height: math.unit(8 + 4/12, "feet"),
  34481. weight: math.unit(535, "lb"),
  34482. name: "Front",
  34483. image: {
  34484. source: "./media/characters/beh'kah-bolger/front.svg",
  34485. extra: 1660/1603,
  34486. bottom: 37/1697
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Normal",
  34493. height: math.unit(8 + 4/12, "feet"),
  34494. default: true
  34495. },
  34496. {
  34497. name: "Kaiju",
  34498. height: math.unit(250, "feet")
  34499. },
  34500. {
  34501. name: "Still Growing",
  34502. height: math.unit(10, "miles")
  34503. },
  34504. {
  34505. name: "Continental",
  34506. height: math.unit(5000, "miles")
  34507. },
  34508. {
  34509. name: "Final Form",
  34510. height: math.unit(2500000, "miles")
  34511. },
  34512. ]
  34513. ))
  34514. characterMakers.push(() => makeCharacter(
  34515. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34516. {
  34517. front: {
  34518. height: math.unit(7 + 2/12, "feet"),
  34519. weight: math.unit(230, "kg"),
  34520. name: "Front",
  34521. image: {
  34522. source: "./media/characters/tatyana-milewska/front.svg",
  34523. extra: 1199/1150,
  34524. bottom: 86/1285
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(7 + 2/12, "feet"),
  34532. default: true
  34533. },
  34534. {
  34535. name: "Big",
  34536. height: math.unit(12, "feet")
  34537. },
  34538. {
  34539. name: "Minimacro",
  34540. height: math.unit(20, "feet")
  34541. },
  34542. {
  34543. name: "Macro",
  34544. height: math.unit(120, "feet")
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(7 + 8/12, "feet"),
  34553. weight: math.unit(152, "kg"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/helen-arri/front.svg",
  34557. extra: 440/423,
  34558. bottom: 14/454
  34559. }
  34560. },
  34561. back: {
  34562. height: math.unit(7 + 8/12, "feet"),
  34563. weight: math.unit(152, "kg"),
  34564. name: "Back",
  34565. image: {
  34566. source: "./media/characters/helen-arri/back.svg",
  34567. extra: 443/426,
  34568. bottom: 8/451
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Normal",
  34575. height: math.unit(7 + 8/12, "feet"),
  34576. default: true
  34577. },
  34578. {
  34579. name: "Big",
  34580. height: math.unit(14, "feet")
  34581. },
  34582. {
  34583. name: "Minimacro",
  34584. height: math.unit(24, "feet")
  34585. },
  34586. {
  34587. name: "Macro",
  34588. height: math.unit(140, "feet")
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34594. {
  34595. front: {
  34596. height: math.unit(6, "meters"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/ehanu-rehu/front.svg",
  34600. extra: 1800/1800,
  34601. bottom: 59/1859
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Normal",
  34608. height: math.unit(6, "meters"),
  34609. default: true
  34610. },
  34611. ]
  34612. ))
  34613. characterMakers.push(() => makeCharacter(
  34614. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34615. {
  34616. front: {
  34617. height: math.unit(7 + 3/12, "feet"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/renholder/front.svg",
  34621. extra: 3096/2960,
  34622. bottom: 250/3346
  34623. }
  34624. },
  34625. },
  34626. [
  34627. {
  34628. name: "Normal Bat",
  34629. height: math.unit(7 + 3/12, "feet"),
  34630. default: true
  34631. },
  34632. {
  34633. name: "Slightly Tall Bat",
  34634. height: math.unit(100, "feet")
  34635. },
  34636. {
  34637. name: "Big Bat",
  34638. height: math.unit(1000, "feet")
  34639. },
  34640. {
  34641. name: "City-Sized Bat",
  34642. height: math.unit(200000, "feet")
  34643. },
  34644. {
  34645. name: "Bigger Bat",
  34646. height: math.unit(10000, "miles")
  34647. },
  34648. {
  34649. name: "Solar Sized Bat",
  34650. height: math.unit(100, "AU")
  34651. },
  34652. {
  34653. name: "Galactic Bat",
  34654. height: math.unit(200000, "lightyears")
  34655. },
  34656. {
  34657. name: "Universally Known Bat",
  34658. height: math.unit(1, "universe")
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(6 + 11/12, "feet"),
  34667. weight: math.unit(250, "lb"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/cookiecat/front.svg",
  34671. extra: 893/827,
  34672. bottom: 14/907
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Micro",
  34679. height: math.unit(3, "inches")
  34680. },
  34681. {
  34682. name: "Normal",
  34683. height: math.unit(6 + 11/12, "feet"),
  34684. default: true
  34685. },
  34686. {
  34687. name: "Macro",
  34688. height: math.unit(100, "feet")
  34689. },
  34690. {
  34691. name: "Macro+",
  34692. height: math.unit(404, "feet")
  34693. },
  34694. {
  34695. name: "Megamacro",
  34696. height: math.unit(165, "miles")
  34697. },
  34698. {
  34699. name: "Planetary",
  34700. height: math.unit(4600, "miles")
  34701. },
  34702. ]
  34703. ))
  34704. characterMakers.push(() => makeCharacter(
  34705. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34706. {
  34707. front: {
  34708. height: math.unit(10 + 3/12, "feet"),
  34709. weight: math.unit(1500, "lb"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/tux-kusanagi/front.svg",
  34713. extra: 944/840,
  34714. bottom: 39/983
  34715. }
  34716. },
  34717. back: {
  34718. height: math.unit(10 + 3/12, "feet"),
  34719. weight: math.unit(1500, "lb"),
  34720. name: "Back",
  34721. image: {
  34722. source: "./media/characters/tux-kusanagi/back.svg",
  34723. extra: 941/842,
  34724. bottom: 28/969
  34725. }
  34726. },
  34727. rump: {
  34728. height: math.unit(5.25, "feet"),
  34729. name: "Rump",
  34730. image: {
  34731. source: "./media/characters/tux-kusanagi/rump.svg"
  34732. }
  34733. },
  34734. beak: {
  34735. height: math.unit(1.54, "feet"),
  34736. name: "Beak",
  34737. image: {
  34738. source: "./media/characters/tux-kusanagi/beak.svg"
  34739. }
  34740. },
  34741. },
  34742. [
  34743. {
  34744. name: "Normal",
  34745. height: math.unit(10 + 3/12, "feet"),
  34746. default: true
  34747. },
  34748. ]
  34749. ))
  34750. characterMakers.push(() => makeCharacter(
  34751. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34752. {
  34753. front: {
  34754. height: math.unit(58, "feet"),
  34755. weight: math.unit(200, "tons"),
  34756. name: "Front",
  34757. image: {
  34758. source: "./media/characters/uzarmazari/front.svg",
  34759. extra: 1575/1455,
  34760. bottom: 152/1727
  34761. }
  34762. },
  34763. back: {
  34764. height: math.unit(58, "feet"),
  34765. weight: math.unit(200, "tons"),
  34766. name: "Back",
  34767. image: {
  34768. source: "./media/characters/uzarmazari/back.svg",
  34769. extra: 1585/1510,
  34770. bottom: 157/1742
  34771. }
  34772. },
  34773. head: {
  34774. height: math.unit(26, "feet"),
  34775. name: "Head",
  34776. image: {
  34777. source: "./media/characters/uzarmazari/head.svg"
  34778. }
  34779. },
  34780. },
  34781. [
  34782. {
  34783. name: "Normal",
  34784. height: math.unit(58, "feet"),
  34785. default: true
  34786. },
  34787. ]
  34788. ))
  34789. characterMakers.push(() => makeCharacter(
  34790. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34791. {
  34792. side: {
  34793. height: math.unit(15, "feet"),
  34794. name: "Side",
  34795. image: {
  34796. source: "./media/characters/akitu/side.svg",
  34797. extra: 1421/1321,
  34798. bottom: 157/1578
  34799. }
  34800. },
  34801. front: {
  34802. height: math.unit(15, "feet"),
  34803. name: "Front",
  34804. image: {
  34805. source: "./media/characters/akitu/front.svg",
  34806. extra: 1435/1326,
  34807. bottom: 232/1667
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(15, "feet"),
  34815. default: true
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34821. {
  34822. front: {
  34823. height: math.unit(10 + 8/12, "feet"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/azalie-croixland/front.svg",
  34827. extra: 1972/1856,
  34828. bottom: 31/2003
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Original Height",
  34835. height: math.unit(5 + 4/12, "feet")
  34836. },
  34837. {
  34838. name: "Normal Height",
  34839. height: math.unit(10 + 8/12, "feet"),
  34840. default: true
  34841. },
  34842. ]
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34846. {
  34847. side: {
  34848. height: math.unit(7 + 1/12, "feet"),
  34849. weight: math.unit(245, "lb"),
  34850. name: "Side",
  34851. image: {
  34852. source: "./media/characters/kavus-kazian/side.svg",
  34853. extra: 349/342,
  34854. bottom: 15/364
  34855. }
  34856. },
  34857. },
  34858. [
  34859. {
  34860. name: "Normal",
  34861. height: math.unit(7 + 1/12, "feet"),
  34862. default: true
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34868. {
  34869. normal: {
  34870. height: math.unit(5 + 11/12, "feet"),
  34871. name: "Normal",
  34872. image: {
  34873. source: "./media/characters/moonlight-rose/normal.svg",
  34874. extra: 1979/1835,
  34875. bottom: 14/1993
  34876. }
  34877. },
  34878. demon: {
  34879. height: math.unit(5, "km"),
  34880. name: "Demon",
  34881. image: {
  34882. source: "./media/characters/moonlight-rose/demon.svg",
  34883. extra: 986/916,
  34884. bottom: 28/1014
  34885. }
  34886. },
  34887. },
  34888. [
  34889. {
  34890. name: "\"Natural\" height",
  34891. height: math.unit(5 + 11/12, "feet")
  34892. },
  34893. {
  34894. name: "Comfortable Size",
  34895. height: math.unit(40, "meters")
  34896. },
  34897. {
  34898. name: "Common Size",
  34899. height: math.unit(50, "km"),
  34900. default: true
  34901. },
  34902. {
  34903. name: "Demonic",
  34904. height: math.unit(1.24415e+21, "meters")
  34905. },
  34906. ]
  34907. ))
  34908. characterMakers.push(() => makeCharacter(
  34909. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34910. {
  34911. front: {
  34912. height: math.unit(16, "feet"),
  34913. weight: math.unit(610, "kg"),
  34914. name: "Front",
  34915. image: {
  34916. source: "./media/characters/huckle/front.svg",
  34917. extra: 1731/1625,
  34918. bottom: 33/1764
  34919. }
  34920. },
  34921. back: {
  34922. height: math.unit(16, "feet"),
  34923. weight: math.unit(610, "kg"),
  34924. name: "Back",
  34925. image: {
  34926. source: "./media/characters/huckle/back.svg",
  34927. extra: 1738/1651,
  34928. bottom: 37/1775
  34929. }
  34930. },
  34931. laughing: {
  34932. height: math.unit(3.75, "feet"),
  34933. name: "Laughing",
  34934. image: {
  34935. source: "./media/characters/huckle/laughing.svg"
  34936. }
  34937. },
  34938. angry: {
  34939. height: math.unit(4.15, "feet"),
  34940. name: "Angry",
  34941. image: {
  34942. source: "./media/characters/huckle/angry.svg"
  34943. }
  34944. },
  34945. },
  34946. [
  34947. {
  34948. name: "Normal",
  34949. height: math.unit(16, "feet"),
  34950. default: true
  34951. },
  34952. {
  34953. name: "Mini Macro",
  34954. height: math.unit(463, "feet")
  34955. },
  34956. {
  34957. name: "Macro",
  34958. height: math.unit(1680, "meters")
  34959. },
  34960. {
  34961. name: "Mega Macro",
  34962. height: math.unit(175, "km")
  34963. },
  34964. {
  34965. name: "Terra Macro",
  34966. height: math.unit(32, "gigameters")
  34967. },
  34968. {
  34969. name: "Multiverse+",
  34970. height: math.unit(2.56e23, "yottameters")
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(6 + 9/12, "feet"),
  34979. weight: math.unit(280, "lb"),
  34980. name: "Front",
  34981. image: {
  34982. source: "./media/characters/candy/front.svg",
  34983. extra: 234/217,
  34984. bottom: 11/245
  34985. }
  34986. },
  34987. },
  34988. [
  34989. {
  34990. name: "Really Small",
  34991. height: math.unit(0.1, "nm")
  34992. },
  34993. {
  34994. name: "Micro",
  34995. height: math.unit(2, "inches")
  34996. },
  34997. {
  34998. name: "Normal",
  34999. height: math.unit(6 + 9/12, "feet"),
  35000. default: true
  35001. },
  35002. {
  35003. name: "Small Macro",
  35004. height: math.unit(69, "feet")
  35005. },
  35006. {
  35007. name: "Macro",
  35008. height: math.unit(160, "feet")
  35009. },
  35010. {
  35011. name: "Megamacro",
  35012. height: math.unit(22000, "miles")
  35013. },
  35014. {
  35015. name: "Gigamacro",
  35016. height: math.unit(50000, "miles")
  35017. },
  35018. ]
  35019. ))
  35020. characterMakers.push(() => makeCharacter(
  35021. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35022. {
  35023. front: {
  35024. height: math.unit(4, "feet"),
  35025. weight: math.unit(90, "lb"),
  35026. name: "Front",
  35027. image: {
  35028. source: "./media/characters/joey-mcdonald/front.svg",
  35029. extra: 1059/852,
  35030. bottom: 33/1092
  35031. }
  35032. },
  35033. back: {
  35034. height: math.unit(4, "feet"),
  35035. weight: math.unit(90, "lb"),
  35036. name: "Back",
  35037. image: {
  35038. source: "./media/characters/joey-mcdonald/back.svg",
  35039. extra: 1077/879,
  35040. bottom: 5/1082
  35041. }
  35042. },
  35043. frontKobold: {
  35044. height: math.unit(4, "feet"),
  35045. weight: math.unit(100, "lb"),
  35046. name: "Front-kobold",
  35047. image: {
  35048. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35049. extra: 1480/1367,
  35050. bottom: 0/1480
  35051. }
  35052. },
  35053. backKobold: {
  35054. height: math.unit(4, "feet"),
  35055. weight: math.unit(100, "lb"),
  35056. name: "Back-kobold",
  35057. image: {
  35058. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35059. extra: 1449/1361,
  35060. bottom: 0/1449
  35061. }
  35062. },
  35063. },
  35064. [
  35065. {
  35066. name: "Normal",
  35067. height: math.unit(4, "feet"),
  35068. default: true
  35069. },
  35070. ]
  35071. ))
  35072. characterMakers.push(() => makeCharacter(
  35073. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35074. {
  35075. front: {
  35076. height: math.unit(12 + 6/12, "feet"),
  35077. name: "Front",
  35078. image: {
  35079. source: "./media/characters/kass-lockheed/front.svg",
  35080. extra: 354/343,
  35081. bottom: 9/363
  35082. }
  35083. },
  35084. back: {
  35085. height: math.unit(12 + 6/12, "feet"),
  35086. name: "Back",
  35087. image: {
  35088. source: "./media/characters/kass-lockheed/back.svg",
  35089. extra: 364/352,
  35090. bottom: 3/367
  35091. }
  35092. },
  35093. dick: {
  35094. height: math.unit(3.12, "feet"),
  35095. name: "Dick",
  35096. image: {
  35097. source: "./media/characters/kass-lockheed/dick.svg"
  35098. }
  35099. },
  35100. head: {
  35101. height: math.unit(2.6, "feet"),
  35102. name: "Head",
  35103. image: {
  35104. source: "./media/characters/kass-lockheed/head.svg"
  35105. }
  35106. },
  35107. bleh: {
  35108. height: math.unit(2.85, "feet"),
  35109. name: "Bleh",
  35110. image: {
  35111. source: "./media/characters/kass-lockheed/bleh.svg"
  35112. }
  35113. },
  35114. smug: {
  35115. height: math.unit(2.85, "feet"),
  35116. name: "Smug",
  35117. image: {
  35118. source: "./media/characters/kass-lockheed/smug.svg"
  35119. }
  35120. },
  35121. },
  35122. [
  35123. {
  35124. name: "Normal",
  35125. height: math.unit(12 + 6/12, "feet"),
  35126. default: true
  35127. },
  35128. ]
  35129. ))
  35130. characterMakers.push(() => makeCharacter(
  35131. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35132. {
  35133. front: {
  35134. height: math.unit(6 + 2/12, "feet"),
  35135. name: "Front",
  35136. image: {
  35137. source: "./media/characters/taylor/front.svg",
  35138. extra: 639/495,
  35139. bottom: 12/651
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(6 + 2/12, "feet"),
  35147. default: true
  35148. },
  35149. {
  35150. name: "Big",
  35151. height: math.unit(15, "feet")
  35152. },
  35153. {
  35154. name: "Lorg",
  35155. height: math.unit(80, "feet")
  35156. },
  35157. {
  35158. name: "Too Lorg",
  35159. height: math.unit(120, "feet")
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(15, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/kaizer/front.svg",
  35171. extra: 1612/1436,
  35172. bottom: 43/1655
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(15, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(2, "feet"),
  35189. weight: math.unit(30, "lb"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/sandy/front.svg",
  35193. extra: 1439/1307,
  35194. bottom: 194/1633
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(2, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(3, "feet"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/mellvi/front.svg",
  35214. extra: 1831/1630,
  35215. bottom: 58/1889
  35216. }
  35217. },
  35218. },
  35219. [
  35220. {
  35221. name: "Normal",
  35222. height: math.unit(3, "feet"),
  35223. default: true
  35224. },
  35225. ]
  35226. ))
  35227. characterMakers.push(() => makeCharacter(
  35228. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35229. {
  35230. front: {
  35231. height: math.unit(5 + 11/12, "feet"),
  35232. weight: math.unit(200, "lb"),
  35233. name: "Front",
  35234. image: {
  35235. source: "./media/characters/shirou/front.svg",
  35236. extra: 2491/2383,
  35237. bottom: 189/2680
  35238. }
  35239. },
  35240. back: {
  35241. height: math.unit(5 + 11/12, "feet"),
  35242. weight: math.unit(200, "lb"),
  35243. name: "Back",
  35244. image: {
  35245. source: "./media/characters/shirou/back.svg",
  35246. extra: 2554/2450,
  35247. bottom: 76/2630
  35248. }
  35249. },
  35250. },
  35251. [
  35252. {
  35253. name: "Normal",
  35254. height: math.unit(5 + 11/12, "feet"),
  35255. default: true
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35261. {
  35262. front: {
  35263. height: math.unit(6 + 3/12, "feet"),
  35264. weight: math.unit(177, "lb"),
  35265. name: "Front",
  35266. image: {
  35267. source: "./media/characters/noryu/front.svg",
  35268. extra: 973/885,
  35269. bottom: 10/983
  35270. }
  35271. },
  35272. },
  35273. [
  35274. {
  35275. name: "Normal",
  35276. height: math.unit(6 + 3/12, "feet"),
  35277. default: true
  35278. },
  35279. ]
  35280. ))
  35281. characterMakers.push(() => makeCharacter(
  35282. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35283. {
  35284. front: {
  35285. height: math.unit(5 + 6/12, "feet"),
  35286. weight: math.unit(170, "lb"),
  35287. name: "Front",
  35288. image: {
  35289. source: "./media/characters/mevolas-rubenido/front.svg",
  35290. extra: 2109/1901,
  35291. bottom: 96/2205
  35292. }
  35293. },
  35294. },
  35295. [
  35296. {
  35297. name: "Normal",
  35298. height: math.unit(5 + 6/12, "feet"),
  35299. default: true
  35300. },
  35301. ]
  35302. ))
  35303. characterMakers.push(() => makeCharacter(
  35304. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35305. {
  35306. front: {
  35307. height: math.unit(100, "feet"),
  35308. name: "Front",
  35309. image: {
  35310. source: "./media/characters/dee/front.svg",
  35311. extra: 2153/2036,
  35312. bottom: 59/2212
  35313. }
  35314. },
  35315. back: {
  35316. height: math.unit(100, "feet"),
  35317. name: "Back",
  35318. image: {
  35319. source: "./media/characters/dee/back.svg",
  35320. extra: 2183/2058,
  35321. bottom: 75/2258
  35322. }
  35323. },
  35324. foot: {
  35325. height: math.unit(19.43, "feet"),
  35326. name: "Foot",
  35327. image: {
  35328. source: "./media/characters/dee/foot.svg"
  35329. }
  35330. },
  35331. hoof: {
  35332. height: math.unit(20.6, "feet"),
  35333. name: "Hoof",
  35334. image: {
  35335. source: "./media/characters/dee/hoof.svg"
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Macro",
  35342. height: math.unit(100, "feet"),
  35343. default: true
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35349. {
  35350. front: {
  35351. height: math.unit(5 + 6/12, "feet"),
  35352. name: "Front",
  35353. image: {
  35354. source: "./media/characters/teh/front.svg",
  35355. extra: 1002/847,
  35356. bottom: 62/1064
  35357. }
  35358. },
  35359. },
  35360. [
  35361. {
  35362. name: "Normal",
  35363. height: math.unit(5 + 6/12, "feet"),
  35364. default: true
  35365. },
  35366. ]
  35367. ))
  35368. characterMakers.push(() => makeCharacter(
  35369. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35370. {
  35371. side: {
  35372. height: math.unit(6 + 1/12, "feet"),
  35373. weight: math.unit(204, "lb"),
  35374. name: "Side",
  35375. image: {
  35376. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35377. extra: 974/775,
  35378. bottom: 169/1143
  35379. }
  35380. },
  35381. sitting: {
  35382. height: math.unit(6 + 2/12, "feet"),
  35383. weight: math.unit(204, "lb"),
  35384. name: "Sitting",
  35385. image: {
  35386. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35387. extra: 1175/964,
  35388. bottom: 378/1553
  35389. }
  35390. },
  35391. },
  35392. [
  35393. {
  35394. name: "Normal",
  35395. height: math.unit(6 + 1/12, "feet"),
  35396. default: true
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35402. {
  35403. front: {
  35404. height: math.unit(6, "inches"),
  35405. name: "Front",
  35406. image: {
  35407. source: "./media/characters/tululi/front.svg",
  35408. extra: 1997/1876,
  35409. bottom: 20/2017
  35410. }
  35411. },
  35412. },
  35413. [
  35414. {
  35415. name: "Normal",
  35416. height: math.unit(6, "inches"),
  35417. default: true
  35418. },
  35419. ]
  35420. ))
  35421. characterMakers.push(() => makeCharacter(
  35422. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35423. {
  35424. front: {
  35425. height: math.unit(4 + 1/12, "feet"),
  35426. name: "Front",
  35427. image: {
  35428. source: "./media/characters/star/front.svg",
  35429. extra: 1493/1189,
  35430. bottom: 48/1541
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(4 + 1/12, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(6 + 3/12, "feet"),
  35447. name: "Front",
  35448. image: {
  35449. source: "./media/characters/comet/front.svg",
  35450. extra: 1681/1462,
  35451. bottom: 26/1707
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(6 + 3/12, "feet"),
  35459. default: true
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35465. {
  35466. front: {
  35467. height: math.unit(950, "feet"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/vortex/front.svg",
  35471. extra: 1497/1434,
  35472. bottom: 56/1553
  35473. }
  35474. },
  35475. maw: {
  35476. height: math.unit(285, "feet"),
  35477. name: "Maw",
  35478. image: {
  35479. source: "./media/characters/vortex/maw.svg"
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Macro",
  35486. height: math.unit(950, "feet"),
  35487. default: true
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(600, "feet"),
  35496. weight: math.unit(0.02, "grams"),
  35497. name: "Front",
  35498. image: {
  35499. source: "./media/characters/doodle/front.svg",
  35500. extra: 1578/1413,
  35501. bottom: 37/1615
  35502. }
  35503. },
  35504. },
  35505. [
  35506. {
  35507. name: "Macro",
  35508. height: math.unit(600, "feet"),
  35509. default: true
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(6 + 6/12, "feet"),
  35518. name: "Front",
  35519. image: {
  35520. source: "./media/characters/jai/front.svg",
  35521. extra: 1645/1534,
  35522. bottom: 115/1760
  35523. }
  35524. },
  35525. },
  35526. [
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(6 + 6/12, "feet"),
  35530. default: true
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35536. {
  35537. front: {
  35538. height: math.unit(6 + 8/12, "feet"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/pixel/front.svg",
  35542. extra: 1900/1735,
  35543. bottom: 63/1963
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(6 + 8/12, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35557. {
  35558. back: {
  35559. height: math.unit(4 + 1/12, "feet"),
  35560. weight: math.unit(75, "lb"),
  35561. name: "Back",
  35562. image: {
  35563. source: "./media/characters/rhett/back.svg",
  35564. extra: 930/878,
  35565. bottom: 25/955
  35566. }
  35567. },
  35568. front: {
  35569. height: math.unit(4 + 1/12, "feet"),
  35570. weight: math.unit(75, "lb"),
  35571. name: "Front",
  35572. image: {
  35573. source: "./media/characters/rhett/front.svg",
  35574. extra: 1682/1586,
  35575. bottom: 92/1774
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Micro",
  35582. height: math.unit(8, "inches")
  35583. },
  35584. {
  35585. name: "Tiny",
  35586. height: math.unit(2, "feet")
  35587. },
  35588. {
  35589. name: "Normal",
  35590. height: math.unit(4 + 1/12, "feet"),
  35591. default: true
  35592. },
  35593. ]
  35594. ))
  35595. characterMakers.push(() => makeCharacter(
  35596. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35597. {
  35598. front: {
  35599. height: math.unit(3 + 3/12, "feet"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/penny/front.svg",
  35603. extra: 1406/1311,
  35604. bottom: 26/1432
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(3 + 3/12, "feet"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(4 + 11/12, "feet"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/monty/front.svg",
  35624. extra: 1479/1209,
  35625. bottom: 0/1479
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(4 + 11/12, "feet"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(8 + 4/12, "feet"),
  35642. name: "Front",
  35643. image: {
  35644. source: "./media/characters/sterling/front.svg",
  35645. extra: 1420/1236,
  35646. bottom: 27/1447
  35647. }
  35648. },
  35649. },
  35650. [
  35651. {
  35652. name: "Normal",
  35653. height: math.unit(8 + 4/12, "feet"),
  35654. default: true
  35655. },
  35656. ]
  35657. ))
  35658. characterMakers.push(() => makeCharacter(
  35659. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35660. {
  35661. front: {
  35662. height: math.unit(15, "feet"),
  35663. name: "Front",
  35664. image: {
  35665. source: "./media/characters/marble/front.svg",
  35666. extra: 973/937,
  35667. bottom: 32/1005
  35668. }
  35669. },
  35670. },
  35671. [
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(15, "feet"),
  35675. default: true
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35681. {
  35682. front: {
  35683. height: math.unit(3, "inches"),
  35684. name: "Front",
  35685. image: {
  35686. source: "./media/characters/powder/front.svg",
  35687. extra: 1504/1334,
  35688. bottom: 518/2022
  35689. }
  35690. },
  35691. },
  35692. [
  35693. {
  35694. name: "Normal",
  35695. height: math.unit(3, "inches"),
  35696. default: true
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35702. {
  35703. front: {
  35704. height: math.unit(4 + 5/12, "feet"),
  35705. name: "Front",
  35706. image: {
  35707. source: "./media/characters/joey-raccoon/front.svg",
  35708. extra: 1273/1197,
  35709. bottom: 0/1273
  35710. }
  35711. },
  35712. },
  35713. [
  35714. {
  35715. name: "Normal",
  35716. height: math.unit(4 + 5/12, "feet"),
  35717. default: true
  35718. },
  35719. ]
  35720. ))
  35721. characterMakers.push(() => makeCharacter(
  35722. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35723. {
  35724. front: {
  35725. height: math.unit(8 + 4/12, "feet"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/vick/front.svg",
  35729. extra: 2187/2118,
  35730. bottom: 47/2234
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Normal",
  35737. height: math.unit(8 + 4/12, "feet"),
  35738. default: true
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35744. {
  35745. front: {
  35746. height: math.unit(5 + 5/12, "feet"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/mitsy/front.svg",
  35750. extra: 1842/1695,
  35751. bottom: 0/1842
  35752. }
  35753. },
  35754. },
  35755. [
  35756. {
  35757. name: "Normal",
  35758. height: math.unit(5 + 5/12, "feet"),
  35759. default: true
  35760. },
  35761. ]
  35762. ))
  35763. characterMakers.push(() => makeCharacter(
  35764. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35765. {
  35766. front: {
  35767. height: math.unit(6 + 3/12, "feet"),
  35768. name: "Front",
  35769. image: {
  35770. source: "./media/characters/silvy/front.svg",
  35771. extra: 1995/1836,
  35772. bottom: 225/2220
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(6 + 3/12, "feet"),
  35780. default: true
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35786. {
  35787. front: {
  35788. height: math.unit(3 + 8/12, "feet"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/rodney/front.svg",
  35792. extra: 1956/1747,
  35793. bottom: 31/1987
  35794. }
  35795. },
  35796. frontDressed: {
  35797. height: math.unit(2.9, "feet"),
  35798. name: "Front (Dressed)",
  35799. image: {
  35800. source: "./media/characters/rodney/front-dressed.svg",
  35801. extra: 1382/1241,
  35802. bottom: 385/1767
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(3 + 8/12, "feet"),
  35810. default: true
  35811. },
  35812. ]
  35813. ))
  35814. characterMakers.push(() => makeCharacter(
  35815. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35816. {
  35817. front: {
  35818. height: math.unit(5 + 9/12, "feet"),
  35819. weight: math.unit(194, "lbs"),
  35820. name: "Front",
  35821. image: {
  35822. source: "./media/characters/zakail-sudekai/front.svg",
  35823. extra: 2696/2533,
  35824. bottom: 248/2944
  35825. }
  35826. },
  35827. maw: {
  35828. height: math.unit(1.35, "feet"),
  35829. name: "Maw",
  35830. image: {
  35831. source: "./media/characters/zakail-sudekai/maw.svg"
  35832. }
  35833. },
  35834. },
  35835. [
  35836. {
  35837. name: "Normal",
  35838. height: math.unit(5 + 9/12, "feet"),
  35839. default: true
  35840. },
  35841. ]
  35842. ))
  35843. characterMakers.push(() => makeCharacter(
  35844. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35845. {
  35846. front: {
  35847. height: math.unit(8 + 4/12, "feet"),
  35848. weight: math.unit(1200, "lb"),
  35849. name: "Front",
  35850. image: {
  35851. source: "./media/characters/eleanor/front.svg",
  35852. extra: 1226/1192,
  35853. bottom: 52/1278
  35854. }
  35855. },
  35856. back: {
  35857. height: math.unit(8 + 4/12, "feet"),
  35858. weight: math.unit(1200, "lb"),
  35859. name: "Back",
  35860. image: {
  35861. source: "./media/characters/eleanor/back.svg",
  35862. extra: 1242/1184,
  35863. bottom: 60/1302
  35864. }
  35865. },
  35866. head: {
  35867. height: math.unit(2.62, "feet"),
  35868. name: "Head",
  35869. image: {
  35870. source: "./media/characters/eleanor/head.svg"
  35871. }
  35872. },
  35873. },
  35874. [
  35875. {
  35876. name: "Normal",
  35877. height: math.unit(8 + 4/12, "feet"),
  35878. default: true
  35879. },
  35880. ]
  35881. ))
  35882. characterMakers.push(() => makeCharacter(
  35883. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35884. {
  35885. front: {
  35886. height: math.unit(8 + 4/12, "feet"),
  35887. weight: math.unit(750, "lb"),
  35888. name: "Front",
  35889. image: {
  35890. source: "./media/characters/tanya/front.svg",
  35891. extra: 1749/1615,
  35892. bottom: 33/1782
  35893. }
  35894. },
  35895. },
  35896. [
  35897. {
  35898. name: "Normal",
  35899. height: math.unit(8 + 4/12, "feet"),
  35900. default: true
  35901. },
  35902. ]
  35903. ))
  35904. characterMakers.push(() => makeCharacter(
  35905. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35906. {
  35907. front: {
  35908. height: math.unit(5, "feet"),
  35909. weight: math.unit(225, "lb"),
  35910. name: "Front",
  35911. image: {
  35912. source: "./media/characters/cindy/front.svg",
  35913. extra: 1320/1250,
  35914. bottom: 42/1362
  35915. }
  35916. },
  35917. frontDressed: {
  35918. height: math.unit(5, "feet"),
  35919. weight: math.unit(225, "lb"),
  35920. name: "Front (Dressed)",
  35921. image: {
  35922. source: "./media/characters/cindy/front-dressed.svg",
  35923. extra: 1320/1250,
  35924. bottom: 42/1362
  35925. }
  35926. },
  35927. back: {
  35928. height: math.unit(5, "feet"),
  35929. weight: math.unit(225, "lb"),
  35930. name: "Back",
  35931. image: {
  35932. source: "./media/characters/cindy/back.svg",
  35933. extra: 1384/1346,
  35934. bottom: 14/1398
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(5, "feet"),
  35942. default: true
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(6 + 9/12, "feet"),
  35951. weight: math.unit(440, "lb"),
  35952. name: "Front",
  35953. image: {
  35954. source: "./media/characters/wilbur-owen/front.svg",
  35955. extra: 1575/1448,
  35956. bottom: 72/1647
  35957. }
  35958. },
  35959. back: {
  35960. height: math.unit(6 + 9/12, "feet"),
  35961. weight: math.unit(440, "lb"),
  35962. name: "Back",
  35963. image: {
  35964. source: "./media/characters/wilbur-owen/back.svg",
  35965. extra: 1578/1445,
  35966. bottom: 36/1614
  35967. }
  35968. },
  35969. },
  35970. [
  35971. {
  35972. name: "Normal",
  35973. height: math.unit(6 + 9/12, "feet"),
  35974. default: true
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35980. {
  35981. front: {
  35982. height: math.unit(6 + 5/12, "feet"),
  35983. weight: math.unit(650, "lb"),
  35984. name: "Front",
  35985. image: {
  35986. source: "./media/characters/keegan/front.svg",
  35987. extra: 2387/2198,
  35988. bottom: 33/2420
  35989. }
  35990. },
  35991. side: {
  35992. height: math.unit(6 + 5/12, "feet"),
  35993. weight: math.unit(650, "lb"),
  35994. name: "Side",
  35995. image: {
  35996. source: "./media/characters/keegan/side.svg",
  35997. extra: 2390/2202,
  35998. bottom: 47/2437
  35999. }
  36000. },
  36001. back: {
  36002. height: math.unit(6 + 5/12, "feet"),
  36003. weight: math.unit(650, "lb"),
  36004. name: "Back",
  36005. image: {
  36006. source: "./media/characters/keegan/back.svg",
  36007. extra: 2418/2268,
  36008. bottom: 15/2433
  36009. }
  36010. },
  36011. frontSfw: {
  36012. height: math.unit(6 + 5/12, "feet"),
  36013. weight: math.unit(650, "lb"),
  36014. name: "Front (SFW)",
  36015. image: {
  36016. source: "./media/characters/keegan/front-sfw.svg",
  36017. extra: 2387/2198,
  36018. bottom: 33/2420
  36019. }
  36020. },
  36021. beans: {
  36022. height: math.unit(1.85, "feet"),
  36023. name: "Beans",
  36024. image: {
  36025. source: "./media/characters/keegan/beans.svg"
  36026. }
  36027. },
  36028. },
  36029. [
  36030. {
  36031. name: "Normal",
  36032. height: math.unit(6 + 5/12, "feet"),
  36033. default: true
  36034. },
  36035. ]
  36036. ))
  36037. characterMakers.push(() => makeCharacter(
  36038. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36039. {
  36040. front: {
  36041. height: math.unit(9, "feet"),
  36042. name: "Front",
  36043. image: {
  36044. source: "./media/characters/colton/front.svg",
  36045. extra: 1589/1326,
  36046. bottom: 139/1728
  36047. }
  36048. },
  36049. },
  36050. [
  36051. {
  36052. name: "Normal",
  36053. height: math.unit(9, "feet"),
  36054. default: true
  36055. },
  36056. ]
  36057. ))
  36058. characterMakers.push(() => makeCharacter(
  36059. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36060. {
  36061. front: {
  36062. height: math.unit(2 + 9/12, "feet"),
  36063. name: "Front",
  36064. image: {
  36065. source: "./media/characters/bora/front.svg",
  36066. extra: 1265/1250,
  36067. bottom: 24/1289
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(2 + 9/12, "feet"),
  36075. default: true
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36081. {
  36082. front: {
  36083. height: math.unit(8, "feet"),
  36084. name: "Front",
  36085. image: {
  36086. source: "./media/characters/myu-myu/front.svg",
  36087. extra: 1949/1857,
  36088. bottom: 90/2039
  36089. }
  36090. },
  36091. },
  36092. [
  36093. {
  36094. name: "Normal",
  36095. height: math.unit(8, "feet"),
  36096. default: true
  36097. },
  36098. {
  36099. name: "Big",
  36100. height: math.unit(15, "feet")
  36101. },
  36102. {
  36103. name: "BIG",
  36104. height: math.unit(25, "feet")
  36105. },
  36106. ]
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36110. {
  36111. side: {
  36112. height: math.unit(7 + 5/12, "feet"),
  36113. weight: math.unit(2800, "lb"),
  36114. name: "Side",
  36115. image: {
  36116. source: "./media/characters/haloren/side.svg",
  36117. extra: 1793/409,
  36118. bottom: 59/1852
  36119. }
  36120. },
  36121. frontPaw: {
  36122. height: math.unit(2.36, "feet"),
  36123. name: "Front paw",
  36124. image: {
  36125. source: "./media/characters/haloren/front-paw.svg"
  36126. }
  36127. },
  36128. hindPaw: {
  36129. height: math.unit(3.18, "feet"),
  36130. name: "Hind paw",
  36131. image: {
  36132. source: "./media/characters/haloren/hind-paw.svg"
  36133. }
  36134. },
  36135. maw: {
  36136. height: math.unit(5.05, "feet"),
  36137. name: "Maw",
  36138. image: {
  36139. source: "./media/characters/haloren/maw.svg"
  36140. }
  36141. },
  36142. dick: {
  36143. height: math.unit(2.90, "feet"),
  36144. name: "Dick",
  36145. image: {
  36146. source: "./media/characters/haloren/dick.svg"
  36147. }
  36148. },
  36149. },
  36150. [
  36151. {
  36152. name: "Normal",
  36153. height: math.unit(7 + 5/12, "feet"),
  36154. default: true
  36155. },
  36156. {
  36157. name: "Enhanced",
  36158. height: math.unit(14 + 3/12, "feet")
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36164. {
  36165. front: {
  36166. height: math.unit(171, "cm"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/kimmy/front.svg",
  36170. extra: 1491/1435,
  36171. bottom: 53/1544
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Small",
  36178. height: math.unit(9, "cm")
  36179. },
  36180. {
  36181. name: "Normal",
  36182. height: math.unit(171, "cm"),
  36183. default: true
  36184. },
  36185. ]
  36186. ))
  36187. characterMakers.push(() => makeCharacter(
  36188. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36189. {
  36190. front: {
  36191. height: math.unit(8, "feet"),
  36192. weight: math.unit(300, "lb"),
  36193. name: "Front",
  36194. image: {
  36195. source: "./media/characters/galeboomer/front.svg",
  36196. extra: 4651/4415,
  36197. bottom: 162/4813
  36198. }
  36199. },
  36200. back: {
  36201. height: math.unit(8, "feet"),
  36202. weight: math.unit(300, "lb"),
  36203. name: "Back",
  36204. image: {
  36205. source: "./media/characters/galeboomer/back.svg",
  36206. extra: 4544/4314,
  36207. bottom: 16/4560
  36208. }
  36209. },
  36210. frontAlt: {
  36211. height: math.unit(8, "feet"),
  36212. weight: math.unit(300, "lb"),
  36213. name: "Front (Alt)",
  36214. image: {
  36215. source: "./media/characters/galeboomer/front-alt.svg",
  36216. extra: 4458/4228,
  36217. bottom: 68/4526
  36218. }
  36219. },
  36220. maw: {
  36221. height: math.unit(1.2, "feet"),
  36222. name: "Maw",
  36223. image: {
  36224. source: "./media/characters/galeboomer/maw.svg"
  36225. }
  36226. },
  36227. },
  36228. [
  36229. {
  36230. name: "Normal",
  36231. height: math.unit(8, "feet"),
  36232. default: true
  36233. },
  36234. ]
  36235. ))
  36236. characterMakers.push(() => makeCharacter(
  36237. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36238. {
  36239. front: {
  36240. height: math.unit(5 + 9/12, "feet"),
  36241. weight: math.unit(120, "lb"),
  36242. name: "Front",
  36243. image: {
  36244. source: "./media/characters/chyr/front.svg",
  36245. extra: 1323/1254,
  36246. bottom: 63/1386
  36247. }
  36248. },
  36249. back: {
  36250. height: math.unit(5 + 9/12, "feet"),
  36251. weight: math.unit(120, "lb"),
  36252. name: "Back",
  36253. image: {
  36254. source: "./media/characters/chyr/back.svg",
  36255. extra: 1323/1252,
  36256. bottom: 48/1371
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Normal",
  36263. height: math.unit(5 + 9/12, "feet"),
  36264. default: true
  36265. },
  36266. ]
  36267. ))
  36268. characterMakers.push(() => makeCharacter(
  36269. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36270. {
  36271. front: {
  36272. height: math.unit(7, "feet"),
  36273. weight: math.unit(310, "lb"),
  36274. name: "Front",
  36275. image: {
  36276. source: "./media/characters/solarus/front.svg",
  36277. extra: 2415/2021,
  36278. bottom: 103/2518
  36279. }
  36280. },
  36281. back: {
  36282. height: math.unit(7, "feet"),
  36283. weight: math.unit(310, "lb"),
  36284. name: "Back",
  36285. image: {
  36286. source: "./media/characters/solarus/back.svg",
  36287. extra: 2463/2089,
  36288. bottom: 79/2542
  36289. }
  36290. },
  36291. },
  36292. [
  36293. {
  36294. name: "Normal",
  36295. height: math.unit(7, "feet"),
  36296. default: true
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36302. {
  36303. front: {
  36304. height: math.unit(16, "feet"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36308. extra: 1844/1780,
  36309. bottom: 58/1902
  36310. }
  36311. },
  36312. winterCoat: {
  36313. height: math.unit(16, "feet"),
  36314. name: "Winter Coat",
  36315. image: {
  36316. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36317. extra: 1807/1775,
  36318. bottom: 69/1876
  36319. }
  36320. },
  36321. },
  36322. [
  36323. {
  36324. name: "Normal",
  36325. height: math.unit(16, "feet"),
  36326. default: true
  36327. },
  36328. {
  36329. name: "Chicago Size",
  36330. height: math.unit(560, "feet")
  36331. },
  36332. ]
  36333. ))
  36334. characterMakers.push(() => makeCharacter(
  36335. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36336. {
  36337. front: {
  36338. height: math.unit(11 + 6/12, "feet"),
  36339. weight: math.unit(1366, "lb"),
  36340. name: "Front",
  36341. image: {
  36342. source: "./media/characters/lexor/front.svg",
  36343. extra: 1560/1481,
  36344. bottom: 211/1771
  36345. }
  36346. },
  36347. back: {
  36348. height: math.unit(11 + 6/12, "feet"),
  36349. weight: math.unit(1366, "lb"),
  36350. name: "Back",
  36351. image: {
  36352. source: "./media/characters/lexor/back.svg",
  36353. extra: 1614/1533,
  36354. bottom: 76/1690
  36355. }
  36356. },
  36357. maw: {
  36358. height: math.unit(3, "feet"),
  36359. name: "Maw",
  36360. image: {
  36361. source: "./media/characters/lexor/maw.svg"
  36362. }
  36363. },
  36364. dick: {
  36365. height: math.unit(2.59, "feet"),
  36366. name: "Dick",
  36367. image: {
  36368. source: "./media/characters/lexor/dick.svg"
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(11 + 6/12, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(5 + 8/12, "feet"),
  36385. name: "Front",
  36386. image: {
  36387. source: "./media/characters/magnum/front.svg",
  36388. extra: 942/855,
  36389. bottom: 26/968
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(5 + 8/12, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(18 + 4/12, "feet"),
  36406. weight: math.unit(1500, "kg"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/solas-sharpsman/front.svg",
  36410. extra: 1698/1589,
  36411. bottom: 0/1698
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(18 + 4/12, "feet"),
  36419. default: true
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36425. {
  36426. front: {
  36427. height: math.unit(5 + 5/12, "feet"),
  36428. weight: math.unit(180, "lb"),
  36429. name: "Front",
  36430. image: {
  36431. source: "./media/characters/october/front.svg",
  36432. extra: 1800/1650,
  36433. bottom: 0/1800
  36434. }
  36435. },
  36436. frontNsfw: {
  36437. height: math.unit(5 + 5/12, "feet"),
  36438. weight: math.unit(180, "lb"),
  36439. name: "Front (NSFW)",
  36440. image: {
  36441. source: "./media/characters/october/front-nsfw.svg",
  36442. extra: 1392/1307,
  36443. bottom: 42/1434
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(5 + 5/12, "feet"),
  36451. default: true
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36457. {
  36458. front: {
  36459. height: math.unit(8 + 6/12, "feet"),
  36460. name: "Front",
  36461. image: {
  36462. source: "./media/characters/essynkardi/front.svg",
  36463. extra: 1914/1846,
  36464. bottom: 22/1936
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(8 + 6/12, "feet"),
  36472. default: true
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(6 + 6/12, "feet"),
  36481. weight: math.unit(7, "lb"),
  36482. name: "Front",
  36483. image: {
  36484. source: "./media/characters/icky/front.svg",
  36485. extra: 813/782,
  36486. bottom: 66/879
  36487. }
  36488. },
  36489. back: {
  36490. height: math.unit(6 + 6/12, "feet"),
  36491. weight: math.unit(7, "lb"),
  36492. name: "Back",
  36493. image: {
  36494. source: "./media/characters/icky/back.svg",
  36495. extra: 754/735,
  36496. bottom: 56/810
  36497. }
  36498. },
  36499. },
  36500. [
  36501. {
  36502. name: "Normal",
  36503. height: math.unit(6 + 6/12, "feet"),
  36504. default: true
  36505. },
  36506. ]
  36507. ))
  36508. characterMakers.push(() => makeCharacter(
  36509. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36510. {
  36511. front: {
  36512. height: math.unit(15, "feet"),
  36513. name: "Front",
  36514. image: {
  36515. source: "./media/characters/rojas/front.svg",
  36516. extra: 1462/1408,
  36517. bottom: 95/1557
  36518. }
  36519. },
  36520. back: {
  36521. height: math.unit(15, "feet"),
  36522. name: "Back",
  36523. image: {
  36524. source: "./media/characters/rojas/back.svg",
  36525. extra: 1023/954,
  36526. bottom: 28/1051
  36527. }
  36528. },
  36529. },
  36530. [
  36531. {
  36532. name: "Normal",
  36533. height: math.unit(15, "feet"),
  36534. default: true
  36535. },
  36536. ]
  36537. ))
  36538. characterMakers.push(() => makeCharacter(
  36539. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36540. {
  36541. frontHuman: {
  36542. height: math.unit(5 + 7/12, "feet"),
  36543. name: "Front (Human)",
  36544. image: {
  36545. source: "./media/characters/alek-dryagan/front-human.svg",
  36546. extra: 1687/1667,
  36547. bottom: 69/1756
  36548. }
  36549. },
  36550. backHuman: {
  36551. height: math.unit(5 + 7/12, "feet"),
  36552. name: "Back (Human)",
  36553. image: {
  36554. source: "./media/characters/alek-dryagan/back-human.svg",
  36555. extra: 1670/1649,
  36556. bottom: 65/1735
  36557. }
  36558. },
  36559. frontDemi: {
  36560. height: math.unit(65, "feet"),
  36561. name: "Front (Demi)",
  36562. image: {
  36563. source: "./media/characters/alek-dryagan/front-demi.svg",
  36564. extra: 1669/1642,
  36565. bottom: 49/1718
  36566. }
  36567. },
  36568. backDemi: {
  36569. height: math.unit(65, "feet"),
  36570. name: "Back (Demi)",
  36571. image: {
  36572. source: "./media/characters/alek-dryagan/back-demi.svg",
  36573. extra: 1658/1637,
  36574. bottom: 40/1698
  36575. }
  36576. },
  36577. mawHuman: {
  36578. height: math.unit(0.3, "feet"),
  36579. name: "Maw (Human)",
  36580. image: {
  36581. source: "./media/characters/alek-dryagan/maw-human.svg"
  36582. }
  36583. },
  36584. mawDemi: {
  36585. height: math.unit(3.8, "feet"),
  36586. name: "Maw (Demi)",
  36587. image: {
  36588. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(5 + 7/12, "feet"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36602. {
  36603. frontHuman: {
  36604. height: math.unit(5 + 2/12, "feet"),
  36605. name: "Front (Human)",
  36606. image: {
  36607. source: "./media/characters/gen/front-human.svg",
  36608. extra: 1627/1538,
  36609. bottom: 71/1698
  36610. }
  36611. },
  36612. backHuman: {
  36613. height: math.unit(5 + 2/12, "feet"),
  36614. name: "Back (Human)",
  36615. image: {
  36616. source: "./media/characters/gen/back-human.svg",
  36617. extra: 1638/1548,
  36618. bottom: 69/1707
  36619. }
  36620. },
  36621. frontDemi: {
  36622. height: math.unit(5 + 2/12, "feet"),
  36623. name: "Front (Demi)",
  36624. image: {
  36625. source: "./media/characters/gen/front-demi.svg",
  36626. extra: 1627/1538,
  36627. bottom: 71/1698
  36628. }
  36629. },
  36630. backDemi: {
  36631. height: math.unit(5 + 2/12, "feet"),
  36632. name: "Back (Demi)",
  36633. image: {
  36634. source: "./media/characters/gen/back-demi.svg",
  36635. extra: 1638/1548,
  36636. bottom: 69/1707
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Normal",
  36643. height: math.unit(5 + 2/12, "feet"),
  36644. default: true
  36645. },
  36646. ]
  36647. ))
  36648. characterMakers.push(() => makeCharacter(
  36649. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36650. {
  36651. frontImp: {
  36652. height: math.unit(1 + 11/12, "feet"),
  36653. name: "Front (Imp)",
  36654. image: {
  36655. source: "./media/characters/max-kobold/front-imp.svg",
  36656. extra: 1238/1134,
  36657. bottom: 81/1319
  36658. }
  36659. },
  36660. backImp: {
  36661. height: math.unit(1 + 11/12, "feet"),
  36662. name: "Back (Imp)",
  36663. image: {
  36664. source: "./media/characters/max-kobold/back-imp.svg",
  36665. extra: 1334/1175,
  36666. bottom: 34/1368
  36667. }
  36668. },
  36669. frontDemi: {
  36670. height: math.unit(5 + 9/12, "feet"),
  36671. name: "Front (Demi)",
  36672. image: {
  36673. source: "./media/characters/max-kobold/front-demi.svg",
  36674. extra: 1715/1685,
  36675. bottom: 54/1769
  36676. }
  36677. },
  36678. backDemi: {
  36679. height: math.unit(5 + 9/12, "feet"),
  36680. name: "Back (Demi)",
  36681. image: {
  36682. source: "./media/characters/max-kobold/back-demi.svg",
  36683. extra: 1752/1729,
  36684. bottom: 41/1793
  36685. }
  36686. },
  36687. handImp: {
  36688. height: math.unit(0.45, "feet"),
  36689. name: "Hand (Imp)",
  36690. image: {
  36691. source: "./media/characters/max-kobold/hand.svg"
  36692. }
  36693. },
  36694. pawImp: {
  36695. height: math.unit(0.46, "feet"),
  36696. name: "Paw (Imp)",
  36697. image: {
  36698. source: "./media/characters/max-kobold/paw.svg"
  36699. }
  36700. },
  36701. handDemi: {
  36702. height: math.unit(0.80, "feet"),
  36703. name: "Hand (Demi)",
  36704. image: {
  36705. source: "./media/characters/max-kobold/hand.svg"
  36706. }
  36707. },
  36708. pawDemi: {
  36709. height: math.unit(1.1, "feet"),
  36710. name: "Paw (Demi)",
  36711. image: {
  36712. source: "./media/characters/max-kobold/paw.svg"
  36713. }
  36714. },
  36715. headImp: {
  36716. height: math.unit(1.33, "feet"),
  36717. name: "Head (Imp)",
  36718. image: {
  36719. source: "./media/characters/max-kobold/head-imp.svg"
  36720. }
  36721. },
  36722. mawImp: {
  36723. height: math.unit(0.75, "feet"),
  36724. name: "Maw (Imp)",
  36725. image: {
  36726. source: "./media/characters/max-kobold/maw-imp.svg"
  36727. }
  36728. },
  36729. mawDemi: {
  36730. height: math.unit(0.42, "feet"),
  36731. name: "Maw (Demi)",
  36732. image: {
  36733. source: "./media/characters/max-kobold/maw-demi.svg"
  36734. }
  36735. },
  36736. },
  36737. [
  36738. {
  36739. name: "Normal",
  36740. height: math.unit(1 + 11/12, "feet"),
  36741. default: true
  36742. },
  36743. ]
  36744. ))
  36745. characterMakers.push(() => makeCharacter(
  36746. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36747. {
  36748. front: {
  36749. height: math.unit(7 + 5/12, "feet"),
  36750. name: "Front",
  36751. image: {
  36752. source: "./media/characters/carbon/front.svg",
  36753. extra: 1754/1689,
  36754. bottom: 65/1819
  36755. }
  36756. },
  36757. back: {
  36758. height: math.unit(7 + 5/12, "feet"),
  36759. name: "Back",
  36760. image: {
  36761. source: "./media/characters/carbon/back.svg",
  36762. extra: 1762/1695,
  36763. bottom: 24/1786
  36764. }
  36765. },
  36766. frontGigantamax: {
  36767. height: math.unit(150, "feet"),
  36768. name: "Front (Gigantamax)",
  36769. image: {
  36770. source: "./media/characters/carbon/front-gigantamax.svg",
  36771. extra: 1826/1669,
  36772. bottom: 59/1885
  36773. }
  36774. },
  36775. backGigantamax: {
  36776. height: math.unit(150, "feet"),
  36777. name: "Back (Gigantamax)",
  36778. image: {
  36779. source: "./media/characters/carbon/back-gigantamax.svg",
  36780. extra: 1796/1653,
  36781. bottom: 53/1849
  36782. }
  36783. },
  36784. maw: {
  36785. height: math.unit(0.48, "feet"),
  36786. name: "Maw",
  36787. image: {
  36788. source: "./media/characters/carbon/maw.svg"
  36789. }
  36790. },
  36791. mawGigantamax: {
  36792. height: math.unit(7.5, "feet"),
  36793. name: "Maw (Gigantamax)",
  36794. image: {
  36795. source: "./media/characters/carbon/maw-gigantamax.svg"
  36796. }
  36797. },
  36798. },
  36799. [
  36800. {
  36801. name: "Normal",
  36802. height: math.unit(7 + 5/12, "feet"),
  36803. default: true
  36804. },
  36805. ]
  36806. ))
  36807. characterMakers.push(() => makeCharacter(
  36808. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36809. {
  36810. front: {
  36811. height: math.unit(6, "feet"),
  36812. name: "Front",
  36813. image: {
  36814. source: "./media/characters/maverick/front.svg",
  36815. extra: 1672/1661,
  36816. bottom: 85/1757
  36817. }
  36818. },
  36819. back: {
  36820. height: math.unit(6, "feet"),
  36821. name: "Back",
  36822. image: {
  36823. source: "./media/characters/maverick/back.svg",
  36824. extra: 1642/1631,
  36825. bottom: 38/1680
  36826. }
  36827. },
  36828. },
  36829. [
  36830. {
  36831. name: "Normal",
  36832. height: math.unit(6, "feet"),
  36833. default: true
  36834. },
  36835. ]
  36836. ))
  36837. characterMakers.push(() => makeCharacter(
  36838. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36839. {
  36840. front: {
  36841. height: math.unit(15, "feet"),
  36842. weight: math.unit(615, "lb"),
  36843. name: "Front",
  36844. image: {
  36845. source: "./media/characters/grockle/front.svg",
  36846. extra: 1535/1427,
  36847. bottom: 56/1591
  36848. }
  36849. },
  36850. },
  36851. [
  36852. {
  36853. name: "Normal",
  36854. height: math.unit(15, "feet"),
  36855. default: true
  36856. },
  36857. {
  36858. name: "Large",
  36859. height: math.unit(150, "feet")
  36860. },
  36861. {
  36862. name: "Macro",
  36863. height: math.unit(1876, "feet")
  36864. },
  36865. {
  36866. name: "Mega Macro",
  36867. height: math.unit(121940, "feet")
  36868. },
  36869. {
  36870. name: "Giga Macro",
  36871. height: math.unit(750, "km")
  36872. },
  36873. {
  36874. name: "Tera Macro",
  36875. height: math.unit(750000, "km")
  36876. },
  36877. {
  36878. name: "Galactic",
  36879. height: math.unit(1.4e5, "km")
  36880. },
  36881. {
  36882. name: "Godlike",
  36883. height: math.unit(9.8e280, "galaxies")
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36889. {
  36890. front: {
  36891. height: math.unit(11, "meters"),
  36892. weight: math.unit(20, "tonnes"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/alistair/front.svg",
  36896. extra: 1265/1009,
  36897. bottom: 93/1358
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(11, "meters"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(5 + 8/12, "feet"),
  36914. name: "Front",
  36915. image: {
  36916. source: "./media/characters/haruka/front.svg",
  36917. extra: 2012/1952,
  36918. bottom: 0/2012
  36919. }
  36920. },
  36921. },
  36922. [
  36923. {
  36924. name: "Normal",
  36925. height: math.unit(5 + 8/12, "feet"),
  36926. default: true
  36927. },
  36928. ]
  36929. ))
  36930. characterMakers.push(() => makeCharacter(
  36931. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36932. {
  36933. back: {
  36934. height: math.unit(9, "feet"),
  36935. name: "Back",
  36936. image: {
  36937. source: "./media/characters/vivian-sylveon/back.svg",
  36938. extra: 1853/1714,
  36939. bottom: 0/1853
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(9, "feet"),
  36947. default: true
  36948. },
  36949. {
  36950. name: "Macro",
  36951. height: math.unit(500, "feet")
  36952. },
  36953. {
  36954. name: "Megamacro",
  36955. height: math.unit(600, "miles")
  36956. },
  36957. {
  36958. name: "Gigamacro",
  36959. height: math.unit(30000, "miles")
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36965. {
  36966. anthro: {
  36967. height: math.unit(5 + 10/12, "feet"),
  36968. weight: math.unit(100, "lb"),
  36969. name: "Anthro",
  36970. image: {
  36971. source: "./media/characters/daiki/anthro.svg",
  36972. extra: 1115/1027,
  36973. bottom: 69/1184
  36974. }
  36975. },
  36976. feral: {
  36977. height: math.unit(200, "feet"),
  36978. name: "Feral",
  36979. image: {
  36980. source: "./media/characters/daiki/feral.svg",
  36981. extra: 1256/313,
  36982. bottom: 39/1295
  36983. }
  36984. },
  36985. feralHead: {
  36986. height: math.unit(171, "feet"),
  36987. name: "Feral Head",
  36988. image: {
  36989. source: "./media/characters/daiki/feral-head.svg"
  36990. }
  36991. },
  36992. manaDragon: {
  36993. height: math.unit(170, "meters"),
  36994. name: "Mana-dragon",
  36995. image: {
  36996. source: "./media/characters/daiki/mana-dragon.svg",
  36997. extra: 763/420,
  36998. bottom: 97/860
  36999. }
  37000. },
  37001. },
  37002. [
  37003. {
  37004. name: "Normal",
  37005. height: math.unit(5 + 10/12, "feet"),
  37006. default: true
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37012. {
  37013. fullyEquippedFront: {
  37014. height: math.unit(3 + 1/12, "feet"),
  37015. weight: math.unit(24, "lb"),
  37016. name: "Fully Equipped (Front)",
  37017. image: {
  37018. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37019. extra: 687/605,
  37020. bottom: 18/705
  37021. }
  37022. },
  37023. fullyEquippedBack: {
  37024. height: math.unit(3 + 1/12, "feet"),
  37025. weight: math.unit(24, "lb"),
  37026. name: "Fully Equipped (Back)",
  37027. image: {
  37028. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37029. extra: 689/590,
  37030. bottom: 18/707
  37031. }
  37032. },
  37033. dailyWear: {
  37034. height: math.unit(3 + 1/12, "feet"),
  37035. weight: math.unit(24, "lb"),
  37036. name: "Daily Wear",
  37037. image: {
  37038. source: "./media/characters/tea-spot/daily-wear.svg",
  37039. extra: 701/620,
  37040. bottom: 21/722
  37041. }
  37042. },
  37043. maidWork: {
  37044. height: math.unit(3 + 1/12, "feet"),
  37045. weight: math.unit(24, "lb"),
  37046. name: "Maid Work",
  37047. image: {
  37048. source: "./media/characters/tea-spot/maid-work.svg",
  37049. extra: 693/609,
  37050. bottom: 15/708
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(3 + 1/12, "feet"),
  37058. default: true
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37064. {
  37065. front: {
  37066. height: math.unit(175, "cm"),
  37067. weight: math.unit(75, "kg"),
  37068. name: "Front",
  37069. image: {
  37070. source: "./media/characters/chee/front.svg",
  37071. extra: 1796/1740,
  37072. bottom: 40/1836
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Micro-Micro",
  37079. height: math.unit(1, "nm")
  37080. },
  37081. {
  37082. name: "Micro-erst",
  37083. height: math.unit(1, "micrometer")
  37084. },
  37085. {
  37086. name: "Micro-er",
  37087. height: math.unit(1, "cm")
  37088. },
  37089. {
  37090. name: "Normal",
  37091. height: math.unit(175, "cm"),
  37092. default: true
  37093. },
  37094. {
  37095. name: "Macro",
  37096. height: math.unit(100, "m")
  37097. },
  37098. {
  37099. name: "Macro-er",
  37100. height: math.unit(1, "km")
  37101. },
  37102. {
  37103. name: "Macro-erst",
  37104. height: math.unit(10, "km")
  37105. },
  37106. {
  37107. name: "Macro-Macro",
  37108. height: math.unit(100, "km")
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(11 + 9/12, "feet"),
  37117. weight: math.unit(935, "lb"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/kingsley/front.svg",
  37121. extra: 1803/1674,
  37122. bottom: 127/1930
  37123. }
  37124. },
  37125. frontNude: {
  37126. height: math.unit(11 + 9/12, "feet"),
  37127. weight: math.unit(935, "lb"),
  37128. name: "Front (Nude)",
  37129. image: {
  37130. source: "./media/characters/kingsley/front-nude.svg",
  37131. extra: 1803/1674,
  37132. bottom: 127/1930
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(11 + 9/12, "feet"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37146. {
  37147. side: {
  37148. height: math.unit(9, "feet"),
  37149. name: "Side",
  37150. image: {
  37151. source: "./media/characters/rymel/side.svg",
  37152. extra: 792/469,
  37153. bottom: 121/913
  37154. }
  37155. },
  37156. maw: {
  37157. height: math.unit(2.4, "meters"),
  37158. name: "Maw",
  37159. image: {
  37160. source: "./media/characters/rymel/maw.svg"
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "House Drake",
  37167. height: math.unit(2, "feet")
  37168. },
  37169. {
  37170. name: "Reduced",
  37171. height: math.unit(4.5, "feet")
  37172. },
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(9, "feet"),
  37176. default: true
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(1.74, "meters"),
  37185. weight: math.unit(55, "kg"),
  37186. name: "Front",
  37187. image: {
  37188. source: "./media/characters/rubus/front.svg",
  37189. extra: 1894/1742,
  37190. bottom: 44/1938
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(1.74, "meters"),
  37198. default: true
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37204. {
  37205. front: {
  37206. height: math.unit(5 + 2/12, "feet"),
  37207. weight: math.unit(112, "lb"),
  37208. name: "Front",
  37209. image: {
  37210. source: "./media/characters/cassie-kingston/front.svg",
  37211. extra: 1438/1390,
  37212. bottom: 47/1485
  37213. }
  37214. },
  37215. },
  37216. [
  37217. {
  37218. name: "Normal",
  37219. height: math.unit(5 + 2/12, "feet"),
  37220. default: true
  37221. },
  37222. {
  37223. name: "Macro",
  37224. height: math.unit(128, "feet")
  37225. },
  37226. {
  37227. name: "Megamacro",
  37228. height: math.unit(2.56, "miles")
  37229. },
  37230. ]
  37231. ))
  37232. characterMakers.push(() => makeCharacter(
  37233. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37234. {
  37235. front: {
  37236. height: math.unit(7, "feet"),
  37237. name: "Front",
  37238. image: {
  37239. source: "./media/characters/fox/front.svg",
  37240. extra: 1798/1703,
  37241. bottom: 55/1853
  37242. }
  37243. },
  37244. back: {
  37245. height: math.unit(7, "feet"),
  37246. name: "Back",
  37247. image: {
  37248. source: "./media/characters/fox/back.svg",
  37249. extra: 1748/1649,
  37250. bottom: 32/1780
  37251. }
  37252. },
  37253. head: {
  37254. height: math.unit(1.95, "feet"),
  37255. name: "Head",
  37256. image: {
  37257. source: "./media/characters/fox/head.svg"
  37258. }
  37259. },
  37260. dick: {
  37261. height: math.unit(1.33, "feet"),
  37262. name: "Dick",
  37263. image: {
  37264. source: "./media/characters/fox/dick.svg"
  37265. }
  37266. },
  37267. foot: {
  37268. height: math.unit(1, "feet"),
  37269. name: "Foot",
  37270. image: {
  37271. source: "./media/characters/fox/foot.svg"
  37272. }
  37273. },
  37274. paw: {
  37275. height: math.unit(0.92, "feet"),
  37276. name: "Paw",
  37277. image: {
  37278. source: "./media/characters/fox/paw.svg"
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Small",
  37285. height: math.unit(3, "inches")
  37286. },
  37287. {
  37288. name: "\"Realistic\"",
  37289. height: math.unit(7, "feet")
  37290. },
  37291. {
  37292. name: "Normal",
  37293. height: math.unit(150, "feet"),
  37294. default: true
  37295. },
  37296. {
  37297. name: "BIG",
  37298. height: math.unit(1200, "feet")
  37299. },
  37300. {
  37301. name: "👀",
  37302. height: math.unit(5, "miles")
  37303. },
  37304. {
  37305. name: "👀👀👀",
  37306. height: math.unit(64, "miles")
  37307. },
  37308. ]
  37309. ))
  37310. characterMakers.push(() => makeCharacter(
  37311. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37312. {
  37313. front: {
  37314. height: math.unit(625, "feet"),
  37315. name: "Front",
  37316. image: {
  37317. source: "./media/characters/asonja-rossa/front.svg",
  37318. extra: 1833/1686,
  37319. bottom: 24/1857
  37320. }
  37321. },
  37322. back: {
  37323. height: math.unit(625, "feet"),
  37324. name: "Back",
  37325. image: {
  37326. source: "./media/characters/asonja-rossa/back.svg",
  37327. extra: 1852/1753,
  37328. bottom: 26/1878
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Macro",
  37335. height: math.unit(625, "feet"),
  37336. default: true
  37337. },
  37338. ]
  37339. ))
  37340. characterMakers.push(() => makeCharacter(
  37341. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37342. {
  37343. side: {
  37344. height: math.unit(8, "feet"),
  37345. name: "Side",
  37346. image: {
  37347. source: "./media/characters/rezukii/side.svg",
  37348. extra: 979/542,
  37349. bottom: 87/1066
  37350. }
  37351. },
  37352. sitting: {
  37353. height: math.unit(14.6, "feet"),
  37354. name: "Sitting",
  37355. image: {
  37356. source: "./media/characters/rezukii/sitting.svg",
  37357. extra: 1023/813,
  37358. bottom: 45/1068
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Tiny",
  37365. height: math.unit(2, "feet")
  37366. },
  37367. {
  37368. name: "Smol",
  37369. height: math.unit(4, "feet")
  37370. },
  37371. {
  37372. name: "Normal",
  37373. height: math.unit(8, "feet"),
  37374. default: true
  37375. },
  37376. {
  37377. name: "Big",
  37378. height: math.unit(12, "feet")
  37379. },
  37380. {
  37381. name: "Macro",
  37382. height: math.unit(30, "feet")
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37388. {
  37389. front: {
  37390. height: math.unit(14, "feet"),
  37391. weight: math.unit(9.5, "tonnes"),
  37392. name: "Front",
  37393. image: {
  37394. source: "./media/characters/dawnheart/front.svg",
  37395. extra: 2792/2675,
  37396. bottom: 64/2856
  37397. }
  37398. },
  37399. },
  37400. [
  37401. {
  37402. name: "Normal",
  37403. height: math.unit(14, "feet"),
  37404. default: true
  37405. },
  37406. ]
  37407. ))
  37408. characterMakers.push(() => makeCharacter(
  37409. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37410. {
  37411. front: {
  37412. height: math.unit(1.7, "m"),
  37413. name: "Front",
  37414. image: {
  37415. source: "./media/characters/gladi/front.svg",
  37416. extra: 1460/1362,
  37417. bottom: 19/1479
  37418. }
  37419. },
  37420. back: {
  37421. height: math.unit(1.7, "m"),
  37422. name: "Back",
  37423. image: {
  37424. source: "./media/characters/gladi/back.svg",
  37425. extra: 1459/1357,
  37426. bottom: 12/1471
  37427. }
  37428. },
  37429. feral: {
  37430. height: math.unit(2.05, "m"),
  37431. name: "Feral",
  37432. image: {
  37433. source: "./media/characters/gladi/feral.svg",
  37434. extra: 821/557,
  37435. bottom: 91/912
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Shortest",
  37442. height: math.unit(70, "cm")
  37443. },
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(1.7, "m")
  37447. },
  37448. {
  37449. name: "Macro",
  37450. height: math.unit(10, "m"),
  37451. default: true
  37452. },
  37453. {
  37454. name: "Tallest",
  37455. height: math.unit(200, "m")
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(5 + 7/12, "feet"),
  37464. weight: math.unit(2, "tons"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/erdno/front.svg",
  37468. extra: 1234/1129,
  37469. bottom: 35/1269
  37470. }
  37471. },
  37472. angled: {
  37473. height: math.unit(5 + 7/12, "feet"),
  37474. weight: math.unit(2, "tons"),
  37475. name: "Angled",
  37476. image: {
  37477. source: "./media/characters/erdno/angled.svg",
  37478. extra: 1185/1139,
  37479. bottom: 36/1221
  37480. }
  37481. },
  37482. side: {
  37483. height: math.unit(5 + 7/12, "feet"),
  37484. weight: math.unit(2, "tons"),
  37485. name: "Side",
  37486. image: {
  37487. source: "./media/characters/erdno/side.svg",
  37488. extra: 1191/1144,
  37489. bottom: 40/1231
  37490. }
  37491. },
  37492. back: {
  37493. height: math.unit(5 + 7/12, "feet"),
  37494. weight: math.unit(2, "tons"),
  37495. name: "Back",
  37496. image: {
  37497. source: "./media/characters/erdno/back.svg",
  37498. extra: 1202/1146,
  37499. bottom: 17/1219
  37500. }
  37501. },
  37502. frontNsfw: {
  37503. height: math.unit(5 + 7/12, "feet"),
  37504. weight: math.unit(2, "tons"),
  37505. name: "Front (NSFW)",
  37506. image: {
  37507. source: "./media/characters/erdno/front-nsfw.svg",
  37508. extra: 1234/1129,
  37509. bottom: 35/1269
  37510. }
  37511. },
  37512. angledNsfw: {
  37513. height: math.unit(5 + 7/12, "feet"),
  37514. weight: math.unit(2, "tons"),
  37515. name: "Angled (NSFW)",
  37516. image: {
  37517. source: "./media/characters/erdno/angled-nsfw.svg",
  37518. extra: 1185/1139,
  37519. bottom: 36/1221
  37520. }
  37521. },
  37522. sideNsfw: {
  37523. height: math.unit(5 + 7/12, "feet"),
  37524. weight: math.unit(2, "tons"),
  37525. name: "Side (NSFW)",
  37526. image: {
  37527. source: "./media/characters/erdno/side-nsfw.svg",
  37528. extra: 1191/1144,
  37529. bottom: 40/1231
  37530. }
  37531. },
  37532. backNsfw: {
  37533. height: math.unit(5 + 7/12, "feet"),
  37534. weight: math.unit(2, "tons"),
  37535. name: "Back (NSFW)",
  37536. image: {
  37537. source: "./media/characters/erdno/back-nsfw.svg",
  37538. extra: 1202/1146,
  37539. bottom: 17/1219
  37540. }
  37541. },
  37542. frontHyper: {
  37543. height: math.unit(5 + 7/12, "feet"),
  37544. weight: math.unit(2, "tons"),
  37545. name: "Front (Hyper)",
  37546. image: {
  37547. source: "./media/characters/erdno/front-hyper.svg",
  37548. extra: 1298/1136,
  37549. bottom: 35/1333
  37550. }
  37551. },
  37552. },
  37553. [
  37554. {
  37555. name: "Normal",
  37556. height: math.unit(5 + 7/12, "feet"),
  37557. default: true
  37558. },
  37559. {
  37560. name: "Big",
  37561. height: math.unit(5.7, "meters")
  37562. },
  37563. {
  37564. name: "Macro",
  37565. height: math.unit(5.7, "kilometers")
  37566. },
  37567. {
  37568. name: "Megamacro",
  37569. height: math.unit(5.7, "earths")
  37570. },
  37571. ]
  37572. ))
  37573. characterMakers.push(() => makeCharacter(
  37574. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37575. {
  37576. front: {
  37577. height: math.unit(5 + 10/12, "feet"),
  37578. weight: math.unit(150, "lb"),
  37579. name: "Front",
  37580. image: {
  37581. source: "./media/characters/jamie/front.svg",
  37582. extra: 1908/1768,
  37583. bottom: 19/1927
  37584. }
  37585. },
  37586. },
  37587. [
  37588. {
  37589. name: "Minimum",
  37590. height: math.unit(2, "cm")
  37591. },
  37592. {
  37593. name: "Micro",
  37594. height: math.unit(3, "inches")
  37595. },
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(5 + 10/12, "feet"),
  37599. default: true
  37600. },
  37601. {
  37602. name: "Macro",
  37603. height: math.unit(150, "feet")
  37604. },
  37605. {
  37606. name: "Megamacro",
  37607. height: math.unit(10000, "m")
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(2, "meters"),
  37616. weight: math.unit(100, "kg"),
  37617. name: "Front",
  37618. image: {
  37619. source: "./media/characters/shiron/front.svg",
  37620. extra: 2103/1985,
  37621. bottom: 98/2201
  37622. }
  37623. },
  37624. back: {
  37625. height: math.unit(2, "meters"),
  37626. weight: math.unit(100, "kg"),
  37627. name: "Back",
  37628. image: {
  37629. source: "./media/characters/shiron/back.svg",
  37630. extra: 2110/2015,
  37631. bottom: 89/2199
  37632. }
  37633. },
  37634. hand: {
  37635. height: math.unit(0.96, "feet"),
  37636. name: "Hand",
  37637. image: {
  37638. source: "./media/characters/shiron/hand.svg"
  37639. }
  37640. },
  37641. foot: {
  37642. height: math.unit(1.464, "feet"),
  37643. name: "Foot",
  37644. image: {
  37645. source: "./media/characters/shiron/foot.svg"
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Normal",
  37652. height: math.unit(2, "meters")
  37653. },
  37654. {
  37655. name: "Macro",
  37656. height: math.unit(500, "meters"),
  37657. default: true
  37658. },
  37659. {
  37660. name: "Megamacro",
  37661. height: math.unit(20, "km")
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(6, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/sam/front.svg",
  37673. extra: 849/826,
  37674. bottom: 19/868
  37675. }
  37676. },
  37677. },
  37678. [
  37679. {
  37680. name: "Normal",
  37681. height: math.unit(6, "feet"),
  37682. default: true
  37683. },
  37684. ]
  37685. ))
  37686. characterMakers.push(() => makeCharacter(
  37687. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37688. {
  37689. front: {
  37690. height: math.unit(8 + 4/12, "feet"),
  37691. weight: math.unit(122, "kg"),
  37692. name: "Front",
  37693. image: {
  37694. source: "./media/characters/namori-kurogawa/front.svg",
  37695. extra: 1894/1576,
  37696. bottom: 34/1928
  37697. }
  37698. },
  37699. },
  37700. [
  37701. {
  37702. name: "Normal",
  37703. height: math.unit(8 + 4/12, "feet"),
  37704. default: true
  37705. },
  37706. ]
  37707. ))
  37708. characterMakers.push(() => makeCharacter(
  37709. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37710. {
  37711. front: {
  37712. height: math.unit(9, "feet"),
  37713. weight: math.unit(621, "lb"),
  37714. name: "Front",
  37715. image: {
  37716. source: "./media/characters/unmru/front.svg",
  37717. extra: 1853/1747,
  37718. bottom: 73/1926
  37719. }
  37720. },
  37721. side: {
  37722. height: math.unit(9, "feet"),
  37723. weight: math.unit(621, "lb"),
  37724. name: "Side",
  37725. image: {
  37726. source: "./media/characters/unmru/side.svg",
  37727. extra: 1781/1671,
  37728. bottom: 127/1908
  37729. }
  37730. },
  37731. back: {
  37732. height: math.unit(9, "feet"),
  37733. weight: math.unit(621, "lb"),
  37734. name: "Back",
  37735. image: {
  37736. source: "./media/characters/unmru/back.svg",
  37737. extra: 1894/1765,
  37738. bottom: 75/1969
  37739. }
  37740. },
  37741. dick: {
  37742. height: math.unit(3, "feet"),
  37743. weight: math.unit(35, "lb"),
  37744. name: "Dick",
  37745. image: {
  37746. source: "./media/characters/unmru/dick.svg"
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Normal",
  37753. height: math.unit(9, "feet")
  37754. },
  37755. {
  37756. name: "Natural",
  37757. height: math.unit(27, "feet"),
  37758. default: true
  37759. },
  37760. {
  37761. name: "Giant",
  37762. height: math.unit(90, "feet")
  37763. },
  37764. {
  37765. name: "Kaiju",
  37766. height: math.unit(270, "feet")
  37767. },
  37768. {
  37769. name: "Macro",
  37770. height: math.unit(900, "feet")
  37771. },
  37772. {
  37773. name: "Macro+",
  37774. height: math.unit(2700, "feet")
  37775. },
  37776. {
  37777. name: "Megamacro",
  37778. height: math.unit(9000, "feet")
  37779. },
  37780. {
  37781. name: "City-Crushing",
  37782. height: math.unit(27000, "feet")
  37783. },
  37784. {
  37785. name: "Mountain-Mashing",
  37786. height: math.unit(90000, "feet")
  37787. },
  37788. {
  37789. name: "Earth-Eclipsing",
  37790. height: math.unit(2.7e8, "feet")
  37791. },
  37792. {
  37793. name: "Sol-Swallowing",
  37794. height: math.unit(9e10, "feet")
  37795. },
  37796. {
  37797. name: "Majoris-Munching",
  37798. height: math.unit(2.7e13, "feet")
  37799. },
  37800. ]
  37801. ))
  37802. characterMakers.push(() => makeCharacter(
  37803. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37804. {
  37805. front: {
  37806. height: math.unit(1, "inch"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/squeaks-mouse/front.svg",
  37810. extra: 352/308,
  37811. bottom: 25/377
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Micro",
  37818. height: math.unit(1, "inch"),
  37819. default: true
  37820. },
  37821. ]
  37822. ))
  37823. characterMakers.push(() => makeCharacter(
  37824. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37825. {
  37826. side: {
  37827. height: math.unit(35, "feet"),
  37828. name: "Side",
  37829. image: {
  37830. source: "./media/characters/sayko/side.svg",
  37831. extra: 1697/1021,
  37832. bottom: 82/1779
  37833. }
  37834. },
  37835. head: {
  37836. height: math.unit(16, "feet"),
  37837. name: "Head",
  37838. image: {
  37839. source: "./media/characters/sayko/head.svg"
  37840. }
  37841. },
  37842. forepaw: {
  37843. height: math.unit(7.85, "feet"),
  37844. name: "Forepaw",
  37845. image: {
  37846. source: "./media/characters/sayko/forepaw.svg"
  37847. }
  37848. },
  37849. hindpaw: {
  37850. height: math.unit(8.8, "feet"),
  37851. name: "Hindpaw",
  37852. image: {
  37853. source: "./media/characters/sayko/hindpaw.svg"
  37854. }
  37855. },
  37856. },
  37857. [
  37858. {
  37859. name: "Normal",
  37860. height: math.unit(35, "feet"),
  37861. default: true
  37862. },
  37863. {
  37864. name: "Colossus",
  37865. height: math.unit(100, "meters")
  37866. },
  37867. {
  37868. name: "\"Small\" Deity",
  37869. height: math.unit(1, "km")
  37870. },
  37871. {
  37872. name: "\"Large\" Deity",
  37873. height: math.unit(15, "km")
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(6, "feet"),
  37882. weight: math.unit(250, "lb"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/mukiro/front.svg",
  37886. extra: 1368/1310,
  37887. bottom: 34/1402
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(6, "feet"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(12 + 4/12, "feet"),
  37904. name: "Front",
  37905. image: {
  37906. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37907. extra: 1346/1311,
  37908. bottom: 65/1411
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Base",
  37915. height: math.unit(12 + 4/12, "feet"),
  37916. default: true
  37917. },
  37918. {
  37919. name: "Macro",
  37920. height: math.unit(150, "feet")
  37921. },
  37922. {
  37923. name: "Mega",
  37924. height: math.unit(2, "miles")
  37925. },
  37926. {
  37927. name: "Demi God",
  37928. height: math.unit(4, "AU")
  37929. },
  37930. {
  37931. name: "God Size",
  37932. height: math.unit(1, "universe")
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(3 + 3/12, "feet"),
  37941. weight: math.unit(88, "lb"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/trey/front.svg",
  37945. extra: 1815/1509,
  37946. bottom: 60/1875
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(3 + 3/12, "feet"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37960. {
  37961. front: {
  37962. height: math.unit(4, "meters"),
  37963. name: "Front",
  37964. image: {
  37965. source: "./media/characters/adelonda/front.svg",
  37966. extra: 1077/982,
  37967. bottom: 39/1116
  37968. }
  37969. },
  37970. back: {
  37971. height: math.unit(4, "meters"),
  37972. name: "Back",
  37973. image: {
  37974. source: "./media/characters/adelonda/back.svg",
  37975. extra: 1105/1003,
  37976. bottom: 25/1130
  37977. }
  37978. },
  37979. feral: {
  37980. height: math.unit(40/1.5, "meters"),
  37981. name: "Feral",
  37982. image: {
  37983. source: "./media/characters/adelonda/feral.svg",
  37984. extra: 597/271,
  37985. bottom: 387/984
  37986. }
  37987. },
  37988. },
  37989. [
  37990. {
  37991. name: "Normal",
  37992. height: math.unit(4, "meters"),
  37993. default: true
  37994. },
  37995. ]
  37996. ))
  37997. characterMakers.push(() => makeCharacter(
  37998. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37999. {
  38000. front: {
  38001. height: math.unit(8 + 4/12, "feet"),
  38002. weight: math.unit(670, "lb"),
  38003. name: "Front",
  38004. image: {
  38005. source: "./media/characters/acadiel/front.svg",
  38006. extra: 1901/1595,
  38007. bottom: 142/2043
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(8 + 4/12, "feet"),
  38015. default: true
  38016. },
  38017. {
  38018. name: "Macro",
  38019. height: math.unit(200, "feet")
  38020. },
  38021. ]
  38022. ))
  38023. characterMakers.push(() => makeCharacter(
  38024. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38025. {
  38026. front: {
  38027. height: math.unit(6 + 2/12, "feet"),
  38028. weight: math.unit(185, "lb"),
  38029. name: "Front",
  38030. image: {
  38031. source: "./media/characters/kayne-ein/front.svg",
  38032. extra: 1780/1560,
  38033. bottom: 81/1861
  38034. }
  38035. },
  38036. },
  38037. [
  38038. {
  38039. name: "Normal",
  38040. height: math.unit(6 + 2/12, "feet"),
  38041. default: true
  38042. },
  38043. {
  38044. name: "Transformation Stage",
  38045. height: math.unit(15, "feet")
  38046. },
  38047. {
  38048. name: "Macro",
  38049. height: math.unit(150, "feet")
  38050. },
  38051. {
  38052. name: "Earth's Shadow",
  38053. height: math.unit(6200, "miles")
  38054. },
  38055. {
  38056. name: "Universal Demon",
  38057. height: math.unit(28e9, "parsecs")
  38058. },
  38059. {
  38060. name: "Multiverse God",
  38061. height: math.unit(3, "multiverses")
  38062. },
  38063. ]
  38064. ))
  38065. characterMakers.push(() => makeCharacter(
  38066. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38067. {
  38068. front: {
  38069. height: math.unit(5 + 5/12, "feet"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/fawn/front.svg",
  38073. extra: 1873/1731,
  38074. bottom: 95/1968
  38075. }
  38076. },
  38077. back: {
  38078. height: math.unit(5 + 5/12, "feet"),
  38079. name: "Back",
  38080. image: {
  38081. source: "./media/characters/fawn/back.svg",
  38082. extra: 1813/1700,
  38083. bottom: 14/1827
  38084. }
  38085. },
  38086. hoof: {
  38087. height: math.unit(1.45, "feet"),
  38088. name: "Hoof",
  38089. image: {
  38090. source: "./media/characters/fawn/hoof.svg"
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Normal",
  38097. height: math.unit(5 + 5/12, "feet"),
  38098. default: true
  38099. },
  38100. ]
  38101. ))
  38102. characterMakers.push(() => makeCharacter(
  38103. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38104. {
  38105. front: {
  38106. height: math.unit(2 + 5/12, "feet"),
  38107. name: "Front",
  38108. image: {
  38109. source: "./media/characters/orion/front.svg",
  38110. extra: 1366/1304,
  38111. bottom: 43/1409
  38112. }
  38113. },
  38114. paw: {
  38115. height: math.unit(0.52, "feet"),
  38116. name: "Paw",
  38117. image: {
  38118. source: "./media/characters/orion/paw.svg"
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Normal",
  38125. height: math.unit(2 + 5/12, "feet"),
  38126. default: true
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(5 + 10/12, "feet"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/vera/front.svg",
  38138. extra: 1680/1575,
  38139. bottom: 49/1729
  38140. }
  38141. },
  38142. back: {
  38143. height: math.unit(5 + 10/12, "feet"),
  38144. name: "Back",
  38145. image: {
  38146. source: "./media/characters/vera/back.svg",
  38147. extra: 1700/1588,
  38148. bottom: 18/1718
  38149. }
  38150. },
  38151. arcanine: {
  38152. height: math.unit(6 + 8/12, "feet"),
  38153. name: "Arcanine",
  38154. image: {
  38155. source: "./media/characters/vera/arcanine.svg",
  38156. extra: 1590/1511,
  38157. bottom: 71/1661
  38158. }
  38159. },
  38160. maw: {
  38161. height: math.unit(0.82, "feet"),
  38162. name: "Maw",
  38163. image: {
  38164. source: "./media/characters/vera/maw.svg"
  38165. }
  38166. },
  38167. mawArcanine: {
  38168. height: math.unit(0.97, "feet"),
  38169. name: "Maw (Arcanine)",
  38170. image: {
  38171. source: "./media/characters/vera/maw-arcanine.svg"
  38172. }
  38173. },
  38174. paw: {
  38175. height: math.unit(0.75, "feet"),
  38176. name: "Paw",
  38177. image: {
  38178. source: "./media/characters/vera/paw.svg"
  38179. }
  38180. },
  38181. pawprint: {
  38182. height: math.unit(0.52, "feet"),
  38183. name: "Pawprint",
  38184. image: {
  38185. source: "./media/characters/vera/pawprint.svg"
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(5 + 10/12, "feet"),
  38193. default: true
  38194. },
  38195. {
  38196. name: "Macro",
  38197. height: math.unit(75, "feet")
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38203. {
  38204. front: {
  38205. height: math.unit(4, "feet"),
  38206. weight: math.unit(40, "lb"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/orvan-rabbit/front.svg",
  38210. extra: 1896/1642,
  38211. bottom: 29/1925
  38212. }
  38213. },
  38214. },
  38215. [
  38216. {
  38217. name: "Normal",
  38218. height: math.unit(4, "feet"),
  38219. default: true
  38220. },
  38221. ]
  38222. ))
  38223. characterMakers.push(() => makeCharacter(
  38224. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38225. {
  38226. front: {
  38227. height: math.unit(6, "feet"),
  38228. weight: math.unit(168, "lb"),
  38229. name: "Front",
  38230. image: {
  38231. source: "./media/characters/lisa/front.svg",
  38232. extra: 2065/1867,
  38233. bottom: 46/2111
  38234. }
  38235. },
  38236. back: {
  38237. height: math.unit(6, "feet"),
  38238. weight: math.unit(168, "lb"),
  38239. name: "Back",
  38240. image: {
  38241. source: "./media/characters/lisa/back.svg",
  38242. extra: 1982/1838,
  38243. bottom: 29/2011
  38244. }
  38245. },
  38246. maw: {
  38247. height: math.unit(0.81, "feet"),
  38248. name: "Maw",
  38249. image: {
  38250. source: "./media/characters/lisa/maw.svg"
  38251. }
  38252. },
  38253. paw: {
  38254. height: math.unit(0.9, "feet"),
  38255. name: "Paw",
  38256. image: {
  38257. source: "./media/characters/lisa/paw.svg"
  38258. }
  38259. },
  38260. caribousune: {
  38261. height: math.unit(7 + 2/12, "feet"),
  38262. weight: math.unit(268, "lb"),
  38263. name: "Caribousune",
  38264. image: {
  38265. source: "./media/characters/lisa/caribousune.svg",
  38266. extra: 1843/1633,
  38267. bottom: 29/1872
  38268. }
  38269. },
  38270. frontCaribousune: {
  38271. height: math.unit(7 + 2/12, "feet"),
  38272. weight: math.unit(268, "lb"),
  38273. name: "Front (Caribousune)",
  38274. image: {
  38275. source: "./media/characters/lisa/front-caribousune.svg",
  38276. extra: 1818/1638,
  38277. bottom: 52/1870
  38278. }
  38279. },
  38280. sideCaribousune: {
  38281. height: math.unit(7 + 2/12, "feet"),
  38282. weight: math.unit(268, "lb"),
  38283. name: "Side (Caribousune)",
  38284. image: {
  38285. source: "./media/characters/lisa/side-caribousune.svg",
  38286. extra: 1851/1635,
  38287. bottom: 16/1867
  38288. }
  38289. },
  38290. backCaribousune: {
  38291. height: math.unit(7 + 2/12, "feet"),
  38292. weight: math.unit(268, "lb"),
  38293. name: "Back (Caribousune)",
  38294. image: {
  38295. source: "./media/characters/lisa/back-caribousune.svg",
  38296. extra: 1801/1604,
  38297. bottom: 44/1845
  38298. }
  38299. },
  38300. caribou: {
  38301. height: math.unit(7 + 2/12, "feet"),
  38302. weight: math.unit(268, "lb"),
  38303. name: "Caribou",
  38304. image: {
  38305. source: "./media/characters/lisa/caribou.svg",
  38306. extra: 1843/1633,
  38307. bottom: 29/1872
  38308. }
  38309. },
  38310. frontCaribou: {
  38311. height: math.unit(7 + 2/12, "feet"),
  38312. weight: math.unit(268, "lb"),
  38313. name: "Front (Caribou)",
  38314. image: {
  38315. source: "./media/characters/lisa/front-caribou.svg",
  38316. extra: 1818/1638,
  38317. bottom: 52/1870
  38318. }
  38319. },
  38320. sideCaribou: {
  38321. height: math.unit(7 + 2/12, "feet"),
  38322. weight: math.unit(268, "lb"),
  38323. name: "Side (Caribou)",
  38324. image: {
  38325. source: "./media/characters/lisa/side-caribou.svg",
  38326. extra: 1851/1635,
  38327. bottom: 16/1867
  38328. }
  38329. },
  38330. backCaribou: {
  38331. height: math.unit(7 + 2/12, "feet"),
  38332. weight: math.unit(268, "lb"),
  38333. name: "Back (Caribou)",
  38334. image: {
  38335. source: "./media/characters/lisa/back-caribou.svg",
  38336. extra: 1801/1604,
  38337. bottom: 44/1845
  38338. }
  38339. },
  38340. mawCaribou: {
  38341. height: math.unit(1.45, "feet"),
  38342. name: "Maw (Caribou)",
  38343. image: {
  38344. source: "./media/characters/lisa/maw-caribou.svg"
  38345. }
  38346. },
  38347. mawCaribousune: {
  38348. height: math.unit(1.45, "feet"),
  38349. name: "Maw (Caribousune)",
  38350. image: {
  38351. source: "./media/characters/lisa/maw-caribousune.svg"
  38352. }
  38353. },
  38354. pawCaribousune: {
  38355. height: math.unit(1.61, "feet"),
  38356. name: "Paw (Caribou)",
  38357. image: {
  38358. source: "./media/characters/lisa/paw-caribousune.svg"
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(6, "feet")
  38366. },
  38367. {
  38368. name: "God Size",
  38369. height: math.unit(72, "feet"),
  38370. default: true
  38371. },
  38372. {
  38373. name: "Towering",
  38374. height: math.unit(288, "feet")
  38375. },
  38376. {
  38377. name: "City Size",
  38378. height: math.unit(48384, "feet")
  38379. },
  38380. {
  38381. name: "Continental",
  38382. height: math.unit(4200, "miles")
  38383. },
  38384. {
  38385. name: "Planet Eater",
  38386. height: math.unit(42, "earths")
  38387. },
  38388. {
  38389. name: "Star Swallower",
  38390. height: math.unit(42, "solarradii")
  38391. },
  38392. {
  38393. name: "System Swallower",
  38394. height: math.unit(84000, "AU")
  38395. },
  38396. {
  38397. name: "Galaxy Gobbler",
  38398. height: math.unit(42, "galaxies")
  38399. },
  38400. {
  38401. name: "Universe Devourer",
  38402. height: math.unit(42, "universes")
  38403. },
  38404. {
  38405. name: "Multiverse Muncher",
  38406. height: math.unit(42, "multiverses")
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38412. {
  38413. front: {
  38414. height: math.unit(36, "feet"),
  38415. name: "Front",
  38416. image: {
  38417. source: "./media/characters/shadow-rat/front.svg",
  38418. extra: 1845/1758,
  38419. bottom: 83/1928
  38420. }
  38421. },
  38422. },
  38423. [
  38424. {
  38425. name: "Macro",
  38426. height: math.unit(36, "feet"),
  38427. default: true
  38428. },
  38429. ]
  38430. ))
  38431. characterMakers.push(() => makeCharacter(
  38432. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38433. {
  38434. side: {
  38435. height: math.unit(8, "feet"),
  38436. weight: math.unit(2630, "lb"),
  38437. name: "Side",
  38438. image: {
  38439. source: "./media/characters/torallia/side.svg",
  38440. extra: 2164/2021,
  38441. bottom: 371/2535
  38442. }
  38443. },
  38444. },
  38445. [
  38446. {
  38447. name: "Mortal Interaction",
  38448. height: math.unit(8, "feet")
  38449. },
  38450. {
  38451. name: "Natural",
  38452. height: math.unit(24, "feet"),
  38453. default: true
  38454. },
  38455. {
  38456. name: "Giant",
  38457. height: math.unit(80, "feet")
  38458. },
  38459. {
  38460. name: "Kaiju",
  38461. height: math.unit(240, "feet")
  38462. },
  38463. {
  38464. name: "Macro",
  38465. height: math.unit(800, "feet")
  38466. },
  38467. {
  38468. name: "Macro+",
  38469. height: math.unit(2400, "feet")
  38470. },
  38471. {
  38472. name: "Macro++",
  38473. height: math.unit(8000, "feet")
  38474. },
  38475. {
  38476. name: "City-Crushing",
  38477. height: math.unit(24000, "feet")
  38478. },
  38479. {
  38480. name: "Mountain-Mashing",
  38481. height: math.unit(80000, "feet")
  38482. },
  38483. {
  38484. name: "District Demolisher",
  38485. height: math.unit(240000, "feet")
  38486. },
  38487. {
  38488. name: "Tri-County Terror",
  38489. height: math.unit(800000, "feet")
  38490. },
  38491. {
  38492. name: "State Smasher",
  38493. height: math.unit(2.4e6, "feet")
  38494. },
  38495. {
  38496. name: "Nation Nemesis",
  38497. height: math.unit(8e6, "feet")
  38498. },
  38499. {
  38500. name: "Continent Cracker",
  38501. height: math.unit(2.4e7, "feet")
  38502. },
  38503. {
  38504. name: "Planet-Pillaging",
  38505. height: math.unit(8e7, "feet")
  38506. },
  38507. {
  38508. name: "Earth-Eclipsing",
  38509. height: math.unit(2.4e8, "feet")
  38510. },
  38511. {
  38512. name: "Jovian-Jostling",
  38513. height: math.unit(8e8, "feet")
  38514. },
  38515. {
  38516. name: "Gas Giant Gulper",
  38517. height: math.unit(2.4e9, "feet")
  38518. },
  38519. {
  38520. name: "Astral Annihilator",
  38521. height: math.unit(8e9, "feet")
  38522. },
  38523. {
  38524. name: "Celestial Conqueror",
  38525. height: math.unit(2.4e10, "feet")
  38526. },
  38527. {
  38528. name: "Sol-Swallowing",
  38529. height: math.unit(8e10, "feet")
  38530. },
  38531. {
  38532. name: "Hunter of the Heavens",
  38533. height: math.unit(2.4e13, "feet")
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(6 + 8/12, "feet"),
  38542. name: "Front",
  38543. image: {
  38544. source: "./media/characters/rebecca-pawlson/front.svg",
  38545. extra: 1737/1596,
  38546. bottom: 107/1844
  38547. }
  38548. },
  38549. back: {
  38550. height: math.unit(6 + 8/12, "feet"),
  38551. name: "Back",
  38552. image: {
  38553. source: "./media/characters/rebecca-pawlson/back.svg",
  38554. extra: 1702/1523,
  38555. bottom: 86/1788
  38556. }
  38557. },
  38558. },
  38559. [
  38560. {
  38561. name: "Normal",
  38562. height: math.unit(6 + 8/12, "feet")
  38563. },
  38564. {
  38565. name: "Mini Macro",
  38566. height: math.unit(10, "feet"),
  38567. default: true
  38568. },
  38569. {
  38570. name: "Macro",
  38571. height: math.unit(100, "feet")
  38572. },
  38573. {
  38574. name: "Mega Macro",
  38575. height: math.unit(2500, "feet")
  38576. },
  38577. {
  38578. name: "Giga Macro",
  38579. height: math.unit(50, "miles")
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38585. {
  38586. front: {
  38587. height: math.unit(7 + 6/12, "feet"),
  38588. weight: math.unit(600, "lb"),
  38589. name: "Front",
  38590. image: {
  38591. source: "./media/characters/moxie-nova/front.svg",
  38592. extra: 1734/1652,
  38593. bottom: 41/1775
  38594. }
  38595. },
  38596. },
  38597. [
  38598. {
  38599. name: "Normal",
  38600. height: math.unit(7 + 6/12, "feet"),
  38601. default: true
  38602. },
  38603. ]
  38604. ))
  38605. characterMakers.push(() => makeCharacter(
  38606. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38607. {
  38608. goat: {
  38609. height: math.unit(4, "feet"),
  38610. weight: math.unit(180, "lb"),
  38611. name: "Goat",
  38612. image: {
  38613. source: "./media/characters/tiffany/goat.svg",
  38614. extra: 1845/1595,
  38615. bottom: 106/1951
  38616. }
  38617. },
  38618. front: {
  38619. height: math.unit(5, "feet"),
  38620. weight: math.unit(150, "lb"),
  38621. name: "Foxcoon",
  38622. image: {
  38623. source: "./media/characters/tiffany/foxcoon.svg",
  38624. extra: 1941/1845,
  38625. bottom: 58/1999
  38626. }
  38627. },
  38628. },
  38629. [
  38630. {
  38631. name: "Normal",
  38632. height: math.unit(5, "feet"),
  38633. default: true
  38634. },
  38635. ]
  38636. ))
  38637. characterMakers.push(() => makeCharacter(
  38638. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38639. {
  38640. front: {
  38641. height: math.unit(8, "feet"),
  38642. weight: math.unit(300, "lb"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/raxinath/front.svg",
  38646. extra: 1407/1309,
  38647. bottom: 39/1446
  38648. }
  38649. },
  38650. back: {
  38651. height: math.unit(8, "feet"),
  38652. weight: math.unit(300, "lb"),
  38653. name: "Back",
  38654. image: {
  38655. source: "./media/characters/raxinath/back.svg",
  38656. extra: 1405/1315,
  38657. bottom: 9/1414
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Speck",
  38664. height: math.unit(0.5, "nm")
  38665. },
  38666. {
  38667. name: "Micro",
  38668. height: math.unit(3, "inches")
  38669. },
  38670. {
  38671. name: "Kobold",
  38672. height: math.unit(3, "feet")
  38673. },
  38674. {
  38675. name: "Normal",
  38676. height: math.unit(8, "feet"),
  38677. default: true
  38678. },
  38679. {
  38680. name: "Giant",
  38681. height: math.unit(50, "feet")
  38682. },
  38683. {
  38684. name: "Macro",
  38685. height: math.unit(1000, "feet")
  38686. },
  38687. {
  38688. name: "Megamacro",
  38689. height: math.unit(1, "mile")
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(10, "feet"),
  38698. weight: math.unit(1442, "lb"),
  38699. name: "Front",
  38700. image: {
  38701. source: "./media/characters/mal-dragon/front.svg",
  38702. extra: 1515/1444,
  38703. bottom: 113/1628
  38704. }
  38705. },
  38706. back: {
  38707. height: math.unit(10, "feet"),
  38708. weight: math.unit(1442, "lb"),
  38709. name: "Back",
  38710. image: {
  38711. source: "./media/characters/mal-dragon/back.svg",
  38712. extra: 1527/1434,
  38713. bottom: 25/1552
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Mortal Interaction",
  38720. height: math.unit(10, "feet"),
  38721. default: true
  38722. },
  38723. {
  38724. name: "Large",
  38725. height: math.unit(30, "feet")
  38726. },
  38727. {
  38728. name: "Kaiju",
  38729. height: math.unit(300, "feet")
  38730. },
  38731. {
  38732. name: "Megamacro",
  38733. height: math.unit(10000, "feet")
  38734. },
  38735. {
  38736. name: "Continent Cracker",
  38737. height: math.unit(30000000, "feet")
  38738. },
  38739. {
  38740. name: "Sol-Swallowing",
  38741. height: math.unit(1e11, "feet")
  38742. },
  38743. {
  38744. name: "Light Universal",
  38745. height: math.unit(5, "universes")
  38746. },
  38747. {
  38748. name: "Universe Atoms",
  38749. height: math.unit(1.829e9, "universes")
  38750. },
  38751. {
  38752. name: "Light Multiversal",
  38753. height: math.unit(5, "multiverses")
  38754. },
  38755. {
  38756. name: "Multiverse Atoms",
  38757. height: math.unit(1.829e9, "multiverses")
  38758. },
  38759. {
  38760. name: "Fabric of Time",
  38761. height: math.unit(1e262, "multiverses")
  38762. },
  38763. ]
  38764. ))
  38765. characterMakers.push(() => makeCharacter(
  38766. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38767. {
  38768. front: {
  38769. height: math.unit(9, "feet"),
  38770. weight: math.unit(1050, "lb"),
  38771. name: "Front",
  38772. image: {
  38773. source: "./media/characters/tabitha/front.svg",
  38774. extra: 2083/1994,
  38775. bottom: 68/2151
  38776. }
  38777. },
  38778. },
  38779. [
  38780. {
  38781. name: "Baseline",
  38782. height: math.unit(9, "feet"),
  38783. default: true
  38784. },
  38785. {
  38786. name: "Giant",
  38787. height: math.unit(90, "feet")
  38788. },
  38789. {
  38790. name: "Macro",
  38791. height: math.unit(900, "feet")
  38792. },
  38793. {
  38794. name: "Megamacro",
  38795. height: math.unit(9000, "feet")
  38796. },
  38797. {
  38798. name: "City-Crushing",
  38799. height: math.unit(27000, "feet")
  38800. },
  38801. {
  38802. name: "Mountain-Mashing",
  38803. height: math.unit(90000, "feet")
  38804. },
  38805. {
  38806. name: "Nation Nemesis",
  38807. height: math.unit(9e6, "feet")
  38808. },
  38809. {
  38810. name: "Continent Cracker",
  38811. height: math.unit(27e6, "feet")
  38812. },
  38813. {
  38814. name: "Earth-Eclipsing",
  38815. height: math.unit(2.7e8, "feet")
  38816. },
  38817. {
  38818. name: "Gas Giant Gulper",
  38819. height: math.unit(2.7e9, "feet")
  38820. },
  38821. {
  38822. name: "Sol-Swallowing",
  38823. height: math.unit(9e10, "feet")
  38824. },
  38825. {
  38826. name: "Galaxy Gulper",
  38827. height: math.unit(9, "galaxies")
  38828. },
  38829. {
  38830. name: "Cosmos Churner",
  38831. height: math.unit(9, "universes")
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(160, "cm"),
  38840. weight: math.unit(55, "kg"),
  38841. name: "Front",
  38842. image: {
  38843. source: "./media/characters/tow/front.svg",
  38844. extra: 1751/1722,
  38845. bottom: 74/1825
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Norm",
  38852. height: math.unit(160, "cm")
  38853. },
  38854. {
  38855. name: "Casual",
  38856. height: math.unit(3200, "m"),
  38857. default: true
  38858. },
  38859. {
  38860. name: "Show-Off",
  38861. height: math.unit(160, "km")
  38862. },
  38863. ]
  38864. ))
  38865. characterMakers.push(() => makeCharacter(
  38866. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38867. {
  38868. front: {
  38869. height: math.unit(7 + 11/12, "feet"),
  38870. weight: math.unit(342.8, "lb"),
  38871. name: "Front",
  38872. image: {
  38873. source: "./media/characters/vivian-orca-dragon/front.svg",
  38874. extra: 1890/1865,
  38875. bottom: 28/1918
  38876. }
  38877. },
  38878. },
  38879. [
  38880. {
  38881. name: "Micro",
  38882. height: math.unit(5, "inches")
  38883. },
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(7 + 11/12, "feet"),
  38887. default: true
  38888. },
  38889. {
  38890. name: "Macro",
  38891. height: math.unit(395 + 7/12, "feet")
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38897. {
  38898. side: {
  38899. height: math.unit(10, "feet"),
  38900. weight: math.unit(1442, "lb"),
  38901. name: "Side",
  38902. image: {
  38903. source: "./media/characters/lotherakon/side.svg",
  38904. extra: 1604/1497,
  38905. bottom: 89/1693
  38906. }
  38907. },
  38908. },
  38909. [
  38910. {
  38911. name: "Mortal Interaction",
  38912. height: math.unit(10, "feet")
  38913. },
  38914. {
  38915. name: "Large",
  38916. height: math.unit(30, "feet"),
  38917. default: true
  38918. },
  38919. {
  38920. name: "Giant",
  38921. height: math.unit(100, "feet")
  38922. },
  38923. {
  38924. name: "Kaiju",
  38925. height: math.unit(300, "feet")
  38926. },
  38927. {
  38928. name: "Macro",
  38929. height: math.unit(1000, "feet")
  38930. },
  38931. {
  38932. name: "Macro+",
  38933. height: math.unit(3000, "feet")
  38934. },
  38935. {
  38936. name: "Megamacro",
  38937. height: math.unit(10000, "feet")
  38938. },
  38939. {
  38940. name: "City-Crushing",
  38941. height: math.unit(30000, "feet")
  38942. },
  38943. {
  38944. name: "Continent Cracker",
  38945. height: math.unit(30e6, "feet")
  38946. },
  38947. {
  38948. name: "Earth Eclipsing",
  38949. height: math.unit(3e8, "feet")
  38950. },
  38951. {
  38952. name: "Gas Giant Gulper",
  38953. height: math.unit(3e9, "feet")
  38954. },
  38955. {
  38956. name: "Sol-Swallowing",
  38957. height: math.unit(1e11, "feet")
  38958. },
  38959. {
  38960. name: "System Swallower",
  38961. height: math.unit(3e14, "feet")
  38962. },
  38963. {
  38964. name: "Galaxy Gulper",
  38965. height: math.unit(10, "galaxies")
  38966. },
  38967. {
  38968. name: "Light Universal",
  38969. height: math.unit(5, "universes")
  38970. },
  38971. {
  38972. name: "Universe Palm",
  38973. height: math.unit(20, "universes")
  38974. },
  38975. {
  38976. name: "Light Multiversal",
  38977. height: math.unit(5, "multiverses")
  38978. },
  38979. {
  38980. name: "Multiverse Palm",
  38981. height: math.unit(20, "multiverses")
  38982. },
  38983. {
  38984. name: "Inferno Incarnate",
  38985. height: math.unit(1e7, "multiverses")
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(8, "feet"),
  38994. weight: math.unit(1200, "lb"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/malithee/front.svg",
  38998. extra: 1675/1640,
  38999. bottom: 162/1837
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Mortal Interaction",
  39006. height: math.unit(8, "feet"),
  39007. default: true
  39008. },
  39009. {
  39010. name: "Large",
  39011. height: math.unit(24, "feet")
  39012. },
  39013. {
  39014. name: "Kaiju",
  39015. height: math.unit(240, "feet")
  39016. },
  39017. {
  39018. name: "Megamacro",
  39019. height: math.unit(8000, "feet")
  39020. },
  39021. {
  39022. name: "Continent Cracker",
  39023. height: math.unit(24e6, "feet")
  39024. },
  39025. {
  39026. name: "Earth-Eclipsing",
  39027. height: math.unit(2.4e8, "feet")
  39028. },
  39029. {
  39030. name: "Sol-Swallowing",
  39031. height: math.unit(8e10, "feet")
  39032. },
  39033. {
  39034. name: "Galaxy Gulper",
  39035. height: math.unit(8, "galaxies")
  39036. },
  39037. {
  39038. name: "Light Universal",
  39039. height: math.unit(4, "universes")
  39040. },
  39041. {
  39042. name: "Universe Atoms",
  39043. height: math.unit(1.829e9, "universes")
  39044. },
  39045. {
  39046. name: "Light Multiversal",
  39047. height: math.unit(4, "multiverses")
  39048. },
  39049. {
  39050. name: "Multiverse Atoms",
  39051. height: math.unit(1.829e9, "multiverses")
  39052. },
  39053. {
  39054. name: "Nigh-Omnipresence",
  39055. height: math.unit(8e261, "multiverses")
  39056. },
  39057. ]
  39058. ))
  39059. characterMakers.push(() => makeCharacter(
  39060. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39061. {
  39062. front: {
  39063. height: math.unit(10, "feet"),
  39064. weight: math.unit(1500, "lb"),
  39065. name: "Front",
  39066. image: {
  39067. source: "./media/characters/miles-thestia/front.svg",
  39068. extra: 1812/1727,
  39069. bottom: 86/1898
  39070. }
  39071. },
  39072. back: {
  39073. height: math.unit(10, "feet"),
  39074. weight: math.unit(1500, "lb"),
  39075. name: "Back",
  39076. image: {
  39077. source: "./media/characters/miles-thestia/back.svg",
  39078. extra: 1799/1690,
  39079. bottom: 47/1846
  39080. }
  39081. },
  39082. frontNsfw: {
  39083. height: math.unit(10, "feet"),
  39084. weight: math.unit(1500, "lb"),
  39085. name: "Front (NSFW)",
  39086. image: {
  39087. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39088. extra: 1812/1727,
  39089. bottom: 86/1898
  39090. }
  39091. },
  39092. },
  39093. [
  39094. {
  39095. name: "Mini-Macro",
  39096. height: math.unit(10, "feet"),
  39097. default: true
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(25, "feet"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/titan-s-wulf/front.svg",
  39109. extra: 1560/1484,
  39110. bottom: 76/1636
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Smallest",
  39117. height: math.unit(25, "feet"),
  39118. default: true
  39119. },
  39120. {
  39121. name: "Normal",
  39122. height: math.unit(200, "feet")
  39123. },
  39124. {
  39125. name: "Macro",
  39126. height: math.unit(200000, "feet")
  39127. },
  39128. {
  39129. name: "Multiversal Original",
  39130. height: math.unit(10000, "multiverses")
  39131. },
  39132. ]
  39133. ))
  39134. characterMakers.push(() => makeCharacter(
  39135. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39136. {
  39137. front: {
  39138. height: math.unit(8, "feet"),
  39139. weight: math.unit(553, "lb"),
  39140. name: "Front",
  39141. image: {
  39142. source: "./media/characters/tawendeh/front.svg",
  39143. extra: 2365/2268,
  39144. bottom: 83/2448
  39145. }
  39146. },
  39147. frontClothed: {
  39148. height: math.unit(8, "feet"),
  39149. weight: math.unit(553, "lb"),
  39150. name: "Front (Clothed)",
  39151. image: {
  39152. source: "./media/characters/tawendeh/front-clothed.svg",
  39153. extra: 2365/2268,
  39154. bottom: 83/2448
  39155. }
  39156. },
  39157. back: {
  39158. height: math.unit(8, "feet"),
  39159. weight: math.unit(553, "lb"),
  39160. name: "Back",
  39161. image: {
  39162. source: "./media/characters/tawendeh/back.svg",
  39163. extra: 2397/2294,
  39164. bottom: 42/2439
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Mortal Interaction",
  39171. height: math.unit(8, "feet"),
  39172. default: true
  39173. },
  39174. {
  39175. name: "Giant",
  39176. height: math.unit(80, "feet")
  39177. },
  39178. {
  39179. name: "Macro",
  39180. height: math.unit(800, "feet")
  39181. },
  39182. {
  39183. name: "Megamacro",
  39184. height: math.unit(8000, "feet")
  39185. },
  39186. {
  39187. name: "City-Crushing",
  39188. height: math.unit(24000, "feet")
  39189. },
  39190. {
  39191. name: "Mountain-Mashing",
  39192. height: math.unit(80000, "feet")
  39193. },
  39194. {
  39195. name: "Nation Nemesis",
  39196. height: math.unit(8e6, "feet")
  39197. },
  39198. {
  39199. name: "Continent Cracker",
  39200. height: math.unit(24e6, "feet")
  39201. },
  39202. {
  39203. name: "Earth-Eclipsing",
  39204. height: math.unit(2.4e8, "feet")
  39205. },
  39206. {
  39207. name: "Gas Giant Gulper",
  39208. height: math.unit(2.4e9, "feet")
  39209. },
  39210. {
  39211. name: "Sol-Swallowing",
  39212. height: math.unit(8e10, "feet")
  39213. },
  39214. {
  39215. name: "Galaxy Gulper",
  39216. height: math.unit(8, "galaxies")
  39217. },
  39218. {
  39219. name: "Cosmos Churner",
  39220. height: math.unit(8, "universes")
  39221. },
  39222. {
  39223. name: "Omnipotent Otter",
  39224. height: math.unit(80, "universes")
  39225. },
  39226. ]
  39227. ))
  39228. characterMakers.push(() => makeCharacter(
  39229. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39230. {
  39231. front: {
  39232. height: math.unit(2.6, "meters"),
  39233. weight: math.unit(900, "kg"),
  39234. name: "Front",
  39235. image: {
  39236. source: "./media/characters/neesha/front.svg",
  39237. extra: 1803/1653,
  39238. bottom: 128/1931
  39239. }
  39240. },
  39241. },
  39242. [
  39243. {
  39244. name: "Normal",
  39245. height: math.unit(2.6, "meters"),
  39246. default: true
  39247. },
  39248. {
  39249. name: "Macro",
  39250. height: math.unit(50, "meters")
  39251. },
  39252. ]
  39253. ))
  39254. characterMakers.push(() => makeCharacter(
  39255. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39256. {
  39257. front: {
  39258. height: math.unit(5, "feet"),
  39259. weight: math.unit(185, "lb"),
  39260. name: "Front",
  39261. image: {
  39262. source: "./media/characters/kyera/front.svg",
  39263. extra: 1875/1790,
  39264. bottom: 96/1971
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Normal",
  39271. height: math.unit(5, "feet"),
  39272. default: true
  39273. },
  39274. ]
  39275. ))
  39276. characterMakers.push(() => makeCharacter(
  39277. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39278. {
  39279. front: {
  39280. height: math.unit(7 + 6/12, "feet"),
  39281. weight: math.unit(540, "lb"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/yuko/front.svg",
  39285. extra: 1282/1222,
  39286. bottom: 101/1383
  39287. }
  39288. },
  39289. frontClothed: {
  39290. height: math.unit(7 + 6/12, "feet"),
  39291. weight: math.unit(540, "lb"),
  39292. name: "Front (Clothed)",
  39293. image: {
  39294. source: "./media/characters/yuko/front-clothed.svg",
  39295. extra: 1282/1222,
  39296. bottom: 101/1383
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(7 + 6/12, "feet"),
  39304. default: true
  39305. },
  39306. {
  39307. name: "Macro",
  39308. height: math.unit(26 + 9/12, "feet")
  39309. },
  39310. {
  39311. name: "Megamacro",
  39312. height: math.unit(300, "feet")
  39313. },
  39314. {
  39315. name: "Gigamacro",
  39316. height: math.unit(5000, "feet")
  39317. },
  39318. {
  39319. name: "Planetary",
  39320. height: math.unit(10000, "miles")
  39321. },
  39322. ]
  39323. ))
  39324. characterMakers.push(() => makeCharacter(
  39325. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39326. {
  39327. front: {
  39328. height: math.unit(8 + 2/12, "feet"),
  39329. weight: math.unit(600, "lb"),
  39330. name: "Front",
  39331. image: {
  39332. source: "./media/characters/deam-nitrel/front.svg",
  39333. extra: 1308/1234,
  39334. bottom: 125/1433
  39335. }
  39336. },
  39337. },
  39338. [
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(8 + 2/12, "feet"),
  39342. default: true
  39343. },
  39344. ]
  39345. ))
  39346. characterMakers.push(() => makeCharacter(
  39347. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39348. {
  39349. front: {
  39350. height: math.unit(6.1, "feet"),
  39351. weight: math.unit(180, "lb"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/skyress/front.svg",
  39355. extra: 1045/915,
  39356. bottom: 28/1073
  39357. }
  39358. },
  39359. maw: {
  39360. height: math.unit(1, "feet"),
  39361. name: "Maw",
  39362. image: {
  39363. source: "./media/characters/skyress/maw.svg"
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(6.1, "feet"),
  39371. default: true
  39372. },
  39373. {
  39374. name: "Macro",
  39375. height: math.unit(200, "feet")
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39381. {
  39382. front: {
  39383. height: math.unit(4 + 2/12, "feet"),
  39384. weight: math.unit(40, "kg"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/amethyst-jones/front.svg",
  39388. extra: 1220/1150,
  39389. bottom: 101/1321
  39390. }
  39391. },
  39392. },
  39393. [
  39394. {
  39395. name: "Normal",
  39396. height: math.unit(4 + 2/12, "feet"),
  39397. default: true
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39403. {
  39404. front: {
  39405. height: math.unit(1.7, "m"),
  39406. weight: math.unit(135, "lb"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/jade/front.svg",
  39410. extra: 1818/1767,
  39411. bottom: 32/1850
  39412. }
  39413. },
  39414. back: {
  39415. height: math.unit(1.7, "m"),
  39416. weight: math.unit(135, "lb"),
  39417. name: "Back",
  39418. image: {
  39419. source: "./media/characters/jade/back.svg",
  39420. extra: 1869/1809,
  39421. bottom: 35/1904
  39422. }
  39423. },
  39424. hand: {
  39425. height: math.unit(0.24, "m"),
  39426. name: "Hand",
  39427. image: {
  39428. source: "./media/characters/jade/hand.svg"
  39429. }
  39430. },
  39431. foot: {
  39432. height: math.unit(0.263, "m"),
  39433. name: "Foot",
  39434. image: {
  39435. source: "./media/characters/jade/foot.svg"
  39436. }
  39437. },
  39438. dick: {
  39439. height: math.unit(0.47, "m"),
  39440. name: "Dick",
  39441. image: {
  39442. source: "./media/characters/jade/dick.svg"
  39443. }
  39444. },
  39445. },
  39446. [
  39447. {
  39448. name: "Micro",
  39449. height: math.unit(22, "cm")
  39450. },
  39451. {
  39452. name: "Normal",
  39453. height: math.unit(1.7, "m"),
  39454. default: true
  39455. },
  39456. {
  39457. name: "Macro",
  39458. height: math.unit(152, "m")
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39464. {
  39465. front: {
  39466. height: math.unit(100, "miles"),
  39467. weight: math.unit(20000, "tons"),
  39468. name: "Front",
  39469. image: {
  39470. source: "./media/characters/cookie/front.svg",
  39471. extra: 1125/1070,
  39472. bottom: 30/1155
  39473. }
  39474. },
  39475. },
  39476. [
  39477. {
  39478. name: "Big",
  39479. height: math.unit(50, "feet")
  39480. },
  39481. {
  39482. name: "Macro",
  39483. height: math.unit(100, "miles"),
  39484. default: true
  39485. },
  39486. {
  39487. name: "Megamacro",
  39488. height: math.unit(90000, "miles")
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39494. {
  39495. front: {
  39496. height: math.unit(6, "feet"),
  39497. weight: math.unit(145, "lb"),
  39498. name: "Front",
  39499. image: {
  39500. source: "./media/characters/farzian/front.svg",
  39501. extra: 1902/1693,
  39502. bottom: 108/2010
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Macro",
  39509. height: math.unit(500, "feet"),
  39510. default: true
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39516. {
  39517. front: {
  39518. height: math.unit(3 + 6/12, "feet"),
  39519. weight: math.unit(50, "lb"),
  39520. name: "Front",
  39521. image: {
  39522. source: "./media/characters/kimberly-tilson/front.svg",
  39523. extra: 1400/1322,
  39524. bottom: 36/1436
  39525. }
  39526. },
  39527. back: {
  39528. height: math.unit(3 + 6/12, "feet"),
  39529. weight: math.unit(50, "lb"),
  39530. name: "Back",
  39531. image: {
  39532. source: "./media/characters/kimberly-tilson/back.svg",
  39533. extra: 1370/1307,
  39534. bottom: 20/1390
  39535. }
  39536. },
  39537. },
  39538. [
  39539. {
  39540. name: "Normal",
  39541. height: math.unit(3 + 6/12, "feet"),
  39542. default: true
  39543. },
  39544. ]
  39545. ))
  39546. characterMakers.push(() => makeCharacter(
  39547. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39548. {
  39549. front: {
  39550. height: math.unit(1148, "feet"),
  39551. weight: math.unit(34057, "lb"),
  39552. name: "Front",
  39553. image: {
  39554. source: "./media/characters/harthos/front.svg",
  39555. extra: 1391/1339,
  39556. bottom: 13/1404
  39557. }
  39558. },
  39559. },
  39560. [
  39561. {
  39562. name: "Macro",
  39563. height: math.unit(1148, "feet"),
  39564. default: true
  39565. },
  39566. ]
  39567. ))
  39568. characterMakers.push(() => makeCharacter(
  39569. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39570. {
  39571. front: {
  39572. height: math.unit(15, "feet"),
  39573. name: "Front",
  39574. image: {
  39575. source: "./media/characters/hypatia/front.svg",
  39576. extra: 1653/1591,
  39577. bottom: 79/1732
  39578. }
  39579. },
  39580. },
  39581. [
  39582. {
  39583. name: "Normal",
  39584. height: math.unit(15, "feet")
  39585. },
  39586. {
  39587. name: "Small",
  39588. height: math.unit(300, "feet")
  39589. },
  39590. {
  39591. name: "Macro",
  39592. height: math.unit(2500, "feet"),
  39593. default: true
  39594. },
  39595. {
  39596. name: "Mega Macro",
  39597. height: math.unit(1500, "miles")
  39598. },
  39599. {
  39600. name: "Giga Macro",
  39601. height: math.unit(1.5e6, "miles")
  39602. },
  39603. ]
  39604. ))
  39605. characterMakers.push(() => makeCharacter(
  39606. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39607. {
  39608. front: {
  39609. height: math.unit(6, "feet"),
  39610. weight: math.unit(200, "lb"),
  39611. name: "Front",
  39612. image: {
  39613. source: "./media/characters/wulver/front.svg",
  39614. extra: 1724/1632,
  39615. bottom: 130/1854
  39616. }
  39617. },
  39618. frontNsfw: {
  39619. height: math.unit(6, "feet"),
  39620. weight: math.unit(200, "lb"),
  39621. name: "Front (NSFW)",
  39622. image: {
  39623. source: "./media/characters/wulver/front-nsfw.svg",
  39624. extra: 1724/1632,
  39625. bottom: 130/1854
  39626. }
  39627. },
  39628. },
  39629. [
  39630. {
  39631. name: "Human-Sized",
  39632. height: math.unit(6, "feet")
  39633. },
  39634. {
  39635. name: "Normal",
  39636. height: math.unit(4, "meters"),
  39637. default: true
  39638. },
  39639. {
  39640. name: "Large",
  39641. height: math.unit(6, "m")
  39642. },
  39643. ]
  39644. ))
  39645. characterMakers.push(() => makeCharacter(
  39646. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39647. {
  39648. front: {
  39649. height: math.unit(7, "feet"),
  39650. name: "Front",
  39651. image: {
  39652. source: "./media/characters/maru/front.svg",
  39653. extra: 1595/1570,
  39654. bottom: 0/1595
  39655. }
  39656. },
  39657. },
  39658. [
  39659. {
  39660. name: "Normal",
  39661. height: math.unit(7, "feet"),
  39662. default: true
  39663. },
  39664. {
  39665. name: "Macro",
  39666. height: math.unit(700, "feet")
  39667. },
  39668. {
  39669. name: "Mega Macro",
  39670. height: math.unit(25, "miles")
  39671. },
  39672. ]
  39673. ))
  39674. characterMakers.push(() => makeCharacter(
  39675. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39676. {
  39677. front: {
  39678. height: math.unit(6, "feet"),
  39679. weight: math.unit(170, "lb"),
  39680. name: "Front",
  39681. image: {
  39682. source: "./media/characters/xenon/front.svg",
  39683. extra: 1376/1305,
  39684. bottom: 56/1432
  39685. }
  39686. },
  39687. back: {
  39688. height: math.unit(6, "feet"),
  39689. weight: math.unit(170, "lb"),
  39690. name: "Back",
  39691. image: {
  39692. source: "./media/characters/xenon/back.svg",
  39693. extra: 1328/1259,
  39694. bottom: 95/1423
  39695. }
  39696. },
  39697. maw: {
  39698. height: math.unit(0.52, "feet"),
  39699. name: "Maw",
  39700. image: {
  39701. source: "./media/characters/xenon/maw.svg"
  39702. }
  39703. },
  39704. hand: {
  39705. height: math.unit(0.82, "feet"),
  39706. name: "Hand",
  39707. image: {
  39708. source: "./media/characters/xenon/hand.svg"
  39709. }
  39710. },
  39711. foot: {
  39712. height: math.unit(1.13, "feet"),
  39713. name: "Foot",
  39714. image: {
  39715. source: "./media/characters/xenon/foot.svg"
  39716. }
  39717. },
  39718. },
  39719. [
  39720. {
  39721. name: "Micro",
  39722. height: math.unit(0.8, "inches")
  39723. },
  39724. {
  39725. name: "Normal",
  39726. height: math.unit(6, "feet")
  39727. },
  39728. {
  39729. name: "Macro",
  39730. height: math.unit(50, "feet"),
  39731. default: true
  39732. },
  39733. {
  39734. name: "Macro+",
  39735. height: math.unit(250, "feet")
  39736. },
  39737. {
  39738. name: "Megamacro",
  39739. height: math.unit(1500, "feet")
  39740. },
  39741. ]
  39742. ))
  39743. characterMakers.push(() => makeCharacter(
  39744. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39745. {
  39746. front: {
  39747. height: math.unit(7 + 5/12, "feet"),
  39748. name: "Front",
  39749. image: {
  39750. source: "./media/characters/zane/front.svg",
  39751. extra: 1260/1203,
  39752. bottom: 94/1354
  39753. }
  39754. },
  39755. back: {
  39756. height: math.unit(5.05, "feet"),
  39757. name: "Back",
  39758. image: {
  39759. source: "./media/characters/zane/back.svg",
  39760. extra: 893/829,
  39761. bottom: 30/923
  39762. }
  39763. },
  39764. werewolf: {
  39765. height: math.unit(11, "feet"),
  39766. name: "Werewolf",
  39767. image: {
  39768. source: "./media/characters/zane/werewolf.svg",
  39769. extra: 1383/1323,
  39770. bottom: 89/1472
  39771. }
  39772. },
  39773. foot: {
  39774. height: math.unit(1.46, "feet"),
  39775. name: "Foot",
  39776. image: {
  39777. source: "./media/characters/zane/foot.svg"
  39778. }
  39779. },
  39780. footFront: {
  39781. height: math.unit(0.784, "feet"),
  39782. name: "Foot (Front)",
  39783. image: {
  39784. source: "./media/characters/zane/foot-front.svg"
  39785. }
  39786. },
  39787. dick: {
  39788. height: math.unit(1.95, "feet"),
  39789. name: "Dick",
  39790. image: {
  39791. source: "./media/characters/zane/dick.svg"
  39792. }
  39793. },
  39794. dickWerewolf: {
  39795. height: math.unit(3.77, "feet"),
  39796. name: "Dick (Werewolf)",
  39797. image: {
  39798. source: "./media/characters/zane/dick.svg"
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(7 + 5/12, "feet"),
  39806. default: true
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(6 + 2/12, "feet"),
  39815. weight: math.unit(284, "lb"),
  39816. name: "Front",
  39817. image: {
  39818. source: "./media/characters/benni-desparque/front.svg",
  39819. extra: 1353/1126,
  39820. bottom: 69/1422
  39821. }
  39822. },
  39823. },
  39824. [
  39825. {
  39826. name: "Civilian",
  39827. height: math.unit(6 + 2/12, "feet")
  39828. },
  39829. {
  39830. name: "Normal",
  39831. height: math.unit(98, "feet"),
  39832. default: true
  39833. },
  39834. {
  39835. name: "Kaiju Fighter",
  39836. height: math.unit(268, "feet")
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39842. {
  39843. front: {
  39844. height: math.unit(5, "feet"),
  39845. weight: math.unit(105, "lb"),
  39846. name: "Front",
  39847. image: {
  39848. source: "./media/characters/maxine/front.svg",
  39849. extra: 1386/1250,
  39850. bottom: 71/1457
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(5, "feet"),
  39858. default: true
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39864. {
  39865. front: {
  39866. height: math.unit(11 + 7/12, "feet"),
  39867. weight: math.unit(9576, "lb"),
  39868. name: "Front",
  39869. image: {
  39870. source: "./media/characters/scaly/front.svg",
  39871. extra: 888/867,
  39872. bottom: 36/924
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(11 + 7/12, "feet"),
  39880. default: true
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(9, "inches"),
  39889. name: "Front",
  39890. image: {
  39891. source: "./media/characters/saelria/front.svg",
  39892. extra: 662/621,
  39893. bottom: 12/674
  39894. }
  39895. },
  39896. },
  39897. [
  39898. {
  39899. name: "Tiny",
  39900. height: math.unit(9, "inches"),
  39901. default: true
  39902. },
  39903. ]
  39904. ))
  39905. characterMakers.push(() => makeCharacter(
  39906. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39907. {
  39908. front: {
  39909. height: math.unit(80, "meters"),
  39910. weight: math.unit(7000, "tonnes"),
  39911. name: "Front",
  39912. image: {
  39913. source: "./media/characters/tef/front.svg",
  39914. extra: 2036/1991,
  39915. bottom: 54/2090
  39916. }
  39917. },
  39918. back: {
  39919. height: math.unit(80, "meters"),
  39920. weight: math.unit(7000, "tonnes"),
  39921. name: "Back",
  39922. image: {
  39923. source: "./media/characters/tef/back.svg",
  39924. extra: 2036/1991,
  39925. bottom: 54/2090
  39926. }
  39927. },
  39928. },
  39929. [
  39930. {
  39931. name: "Macro",
  39932. height: math.unit(80, "meters"),
  39933. default: true
  39934. },
  39935. ]
  39936. ))
  39937. characterMakers.push(() => makeCharacter(
  39938. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39939. {
  39940. front: {
  39941. height: math.unit(13, "feet"),
  39942. weight: math.unit(6, "tons"),
  39943. name: "Front",
  39944. image: {
  39945. source: "./media/characters/rover/front.svg",
  39946. extra: 1233/1156,
  39947. bottom: 50/1283
  39948. }
  39949. },
  39950. back: {
  39951. height: math.unit(13, "feet"),
  39952. weight: math.unit(6, "tons"),
  39953. name: "Back",
  39954. image: {
  39955. source: "./media/characters/rover/back.svg",
  39956. extra: 1327/1258,
  39957. bottom: 39/1366
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(13, "feet"),
  39965. default: true
  39966. },
  39967. {
  39968. name: "Macro",
  39969. height: math.unit(1300, "feet")
  39970. },
  39971. {
  39972. name: "Megamacro",
  39973. height: math.unit(1300, "miles")
  39974. },
  39975. {
  39976. name: "Gigamacro",
  39977. height: math.unit(1300000, "miles")
  39978. },
  39979. ]
  39980. ))
  39981. characterMakers.push(() => makeCharacter(
  39982. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39983. {
  39984. front: {
  39985. height: math.unit(6, "feet"),
  39986. weight: math.unit(150, "lb"),
  39987. name: "Front",
  39988. image: {
  39989. source: "./media/characters/ariz/front.svg",
  39990. extra: 1401/1346,
  39991. bottom: 5/1406
  39992. }
  39993. },
  39994. },
  39995. [
  39996. {
  39997. name: "Normal",
  39998. height: math.unit(10, "feet"),
  39999. default: true
  40000. },
  40001. ]
  40002. ))
  40003. characterMakers.push(() => makeCharacter(
  40004. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40005. {
  40006. front: {
  40007. height: math.unit(6, "feet"),
  40008. weight: math.unit(140, "lb"),
  40009. name: "Front",
  40010. image: {
  40011. source: "./media/characters/sigrun/front.svg",
  40012. extra: 1418/1359,
  40013. bottom: 27/1445
  40014. }
  40015. },
  40016. },
  40017. [
  40018. {
  40019. name: "Macro",
  40020. height: math.unit(35, "feet"),
  40021. default: true
  40022. },
  40023. ]
  40024. ))
  40025. characterMakers.push(() => makeCharacter(
  40026. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40027. {
  40028. front: {
  40029. height: math.unit(6, "feet"),
  40030. weight: math.unit(150, "lb"),
  40031. name: "Front",
  40032. image: {
  40033. source: "./media/characters/numin/front.svg",
  40034. extra: 1433/1388,
  40035. bottom: 12/1445
  40036. }
  40037. },
  40038. },
  40039. [
  40040. {
  40041. name: "Macro",
  40042. height: math.unit(21.5, "km"),
  40043. default: true
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40049. {
  40050. front: {
  40051. height: math.unit(6, "feet"),
  40052. weight: math.unit(463, "lb"),
  40053. name: "Front",
  40054. image: {
  40055. source: "./media/characters/melwa/front.svg",
  40056. extra: 1307/1248,
  40057. bottom: 93/1400
  40058. }
  40059. },
  40060. },
  40061. [
  40062. {
  40063. name: "Macro",
  40064. height: math.unit(50, "meters"),
  40065. default: true
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40071. {
  40072. front: {
  40073. height: math.unit(325, "feet"),
  40074. name: "Front",
  40075. image: {
  40076. source: "./media/characters/zorkaiju/front.svg",
  40077. extra: 1955/1814,
  40078. bottom: 40/1995
  40079. }
  40080. },
  40081. frontExtended: {
  40082. height: math.unit(325, "feet"),
  40083. name: "Front (Extended)",
  40084. image: {
  40085. source: "./media/characters/zorkaiju/front-extended.svg",
  40086. extra: 1955/1814,
  40087. bottom: 40/1995
  40088. }
  40089. },
  40090. side: {
  40091. height: math.unit(325, "feet"),
  40092. name: "Side",
  40093. image: {
  40094. source: "./media/characters/zorkaiju/side.svg",
  40095. extra: 1495/1396,
  40096. bottom: 17/1512
  40097. }
  40098. },
  40099. sideExtended: {
  40100. height: math.unit(325, "feet"),
  40101. name: "Side (Extended)",
  40102. image: {
  40103. source: "./media/characters/zorkaiju/side-extended.svg",
  40104. extra: 1495/1396,
  40105. bottom: 17/1512
  40106. }
  40107. },
  40108. back: {
  40109. height: math.unit(325, "feet"),
  40110. name: "Back",
  40111. image: {
  40112. source: "./media/characters/zorkaiju/back.svg",
  40113. extra: 1959/1821,
  40114. bottom: 31/1990
  40115. }
  40116. },
  40117. backExtended: {
  40118. height: math.unit(325, "feet"),
  40119. name: "Back (Extended)",
  40120. image: {
  40121. source: "./media/characters/zorkaiju/back-extended.svg",
  40122. extra: 1959/1821,
  40123. bottom: 31/1990
  40124. }
  40125. },
  40126. hand: {
  40127. height: math.unit(58.4, "feet"),
  40128. name: "Hand",
  40129. image: {
  40130. source: "./media/characters/zorkaiju/hand.svg"
  40131. }
  40132. },
  40133. handExtended: {
  40134. height: math.unit(61.4, "feet"),
  40135. name: "Hand (Extended)",
  40136. image: {
  40137. source: "./media/characters/zorkaiju/hand-extended.svg"
  40138. }
  40139. },
  40140. foot: {
  40141. height: math.unit(95, "feet"),
  40142. name: "Foot",
  40143. image: {
  40144. source: "./media/characters/zorkaiju/foot.svg"
  40145. }
  40146. },
  40147. leftArm: {
  40148. height: math.unit(59, "feet"),
  40149. name: "Left Arm",
  40150. image: {
  40151. source: "./media/characters/zorkaiju/left-arm.svg"
  40152. }
  40153. },
  40154. rightArm: {
  40155. height: math.unit(59, "feet"),
  40156. name: "Right Arm",
  40157. image: {
  40158. source: "./media/characters/zorkaiju/right-arm.svg"
  40159. }
  40160. },
  40161. tail: {
  40162. height: math.unit(104, "feet"),
  40163. name: "Tail",
  40164. image: {
  40165. source: "./media/characters/zorkaiju/tail.svg"
  40166. }
  40167. },
  40168. tailExtended: {
  40169. height: math.unit(104, "feet"),
  40170. name: "Tail (Extended)",
  40171. image: {
  40172. source: "./media/characters/zorkaiju/tail-extended.svg"
  40173. }
  40174. },
  40175. tailBottom: {
  40176. height: math.unit(104, "feet"),
  40177. name: "Tail Bottom",
  40178. image: {
  40179. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40180. }
  40181. },
  40182. crystal: {
  40183. height: math.unit(27.54, "feet"),
  40184. name: "Crystal",
  40185. image: {
  40186. source: "./media/characters/zorkaiju/crystal.svg"
  40187. }
  40188. },
  40189. },
  40190. [
  40191. {
  40192. name: "Kaiju",
  40193. height: math.unit(325, "feet"),
  40194. default: true
  40195. },
  40196. ]
  40197. ))
  40198. characterMakers.push(() => makeCharacter(
  40199. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40200. {
  40201. front: {
  40202. height: math.unit(6 + 1/12, "feet"),
  40203. weight: math.unit(115, "lb"),
  40204. name: "Front",
  40205. image: {
  40206. source: "./media/characters/bailey-belfry/front.svg",
  40207. extra: 1240/1121,
  40208. bottom: 101/1341
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Normal",
  40215. height: math.unit(6 + 1/12, "feet"),
  40216. default: true
  40217. },
  40218. ]
  40219. ))
  40220. characterMakers.push(() => makeCharacter(
  40221. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40222. {
  40223. side: {
  40224. height: math.unit(4, "meters"),
  40225. weight: math.unit(250, "kg"),
  40226. name: "Side",
  40227. image: {
  40228. source: "./media/characters/blacky/side.svg",
  40229. extra: 1027/919,
  40230. bottom: 43/1070
  40231. }
  40232. },
  40233. maw: {
  40234. height: math.unit(1, "meters"),
  40235. name: "Maw",
  40236. image: {
  40237. source: "./media/characters/blacky/maw.svg"
  40238. }
  40239. },
  40240. paw: {
  40241. height: math.unit(1, "meters"),
  40242. name: "Paw",
  40243. image: {
  40244. source: "./media/characters/blacky/paw.svg"
  40245. }
  40246. },
  40247. },
  40248. [
  40249. {
  40250. name: "Normal",
  40251. height: math.unit(4, "meters"),
  40252. default: true
  40253. },
  40254. ]
  40255. ))
  40256. characterMakers.push(() => makeCharacter(
  40257. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40258. {
  40259. front: {
  40260. height: math.unit(170, "cm"),
  40261. weight: math.unit(66, "kg"),
  40262. name: "Front",
  40263. image: {
  40264. source: "./media/characters/thux-ei/front.svg",
  40265. extra: 1109/1011,
  40266. bottom: 8/1117
  40267. }
  40268. },
  40269. },
  40270. [
  40271. {
  40272. name: "Normal",
  40273. height: math.unit(170, "cm"),
  40274. default: true
  40275. },
  40276. ]
  40277. ))
  40278. characterMakers.push(() => makeCharacter(
  40279. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40280. {
  40281. front: {
  40282. height: math.unit(5, "feet"),
  40283. weight: math.unit(120, "lb"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/roxanne-voltaire/front.svg",
  40287. extra: 1901/1779,
  40288. bottom: 53/1954
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Normal",
  40295. height: math.unit(5, "feet"),
  40296. default: true
  40297. },
  40298. {
  40299. name: "Giant",
  40300. height: math.unit(50, "feet")
  40301. },
  40302. {
  40303. name: "Titan",
  40304. height: math.unit(500, "feet")
  40305. },
  40306. {
  40307. name: "Macro",
  40308. height: math.unit(5000, "feet")
  40309. },
  40310. {
  40311. name: "Megamacro",
  40312. height: math.unit(50000, "feet")
  40313. },
  40314. {
  40315. name: "Gigamacro",
  40316. height: math.unit(500000, "feet")
  40317. },
  40318. {
  40319. name: "Teramacro",
  40320. height: math.unit(5e6, "feet")
  40321. },
  40322. ]
  40323. ))
  40324. characterMakers.push(() => makeCharacter(
  40325. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40326. {
  40327. front: {
  40328. height: math.unit(6 + 2/12, "feet"),
  40329. name: "Front",
  40330. image: {
  40331. source: "./media/characters/squeaks/front.svg",
  40332. extra: 1823/1768,
  40333. bottom: 138/1961
  40334. }
  40335. },
  40336. },
  40337. [
  40338. {
  40339. name: "Micro",
  40340. height: math.unit(0.5, "inches")
  40341. },
  40342. {
  40343. name: "Normal",
  40344. height: math.unit(6 + 2/12, "feet"),
  40345. default: true
  40346. },
  40347. {
  40348. name: "Macro",
  40349. height: math.unit(600, "feet")
  40350. },
  40351. ]
  40352. ))
  40353. characterMakers.push(() => makeCharacter(
  40354. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40355. {
  40356. front: {
  40357. height: math.unit(1.72, "meters"),
  40358. name: "Front",
  40359. image: {
  40360. source: "./media/characters/archinger/front.svg",
  40361. extra: 1861/1675,
  40362. bottom: 125/1986
  40363. }
  40364. },
  40365. back: {
  40366. height: math.unit(1.72, "meters"),
  40367. name: "Back",
  40368. image: {
  40369. source: "./media/characters/archinger/back.svg",
  40370. extra: 1844/1701,
  40371. bottom: 104/1948
  40372. }
  40373. },
  40374. cock: {
  40375. height: math.unit(0.59, "feet"),
  40376. name: "Cock",
  40377. image: {
  40378. source: "./media/characters/archinger/cock.svg"
  40379. }
  40380. },
  40381. },
  40382. [
  40383. {
  40384. name: "Normal",
  40385. height: math.unit(1.72, "meters"),
  40386. default: true
  40387. },
  40388. {
  40389. name: "Macro",
  40390. height: math.unit(84, "meters")
  40391. },
  40392. {
  40393. name: "Macro+",
  40394. height: math.unit(112, "meters")
  40395. },
  40396. {
  40397. name: "Macro++",
  40398. height: math.unit(960, "meters")
  40399. },
  40400. {
  40401. name: "Macro+++",
  40402. height: math.unit(4, "km")
  40403. },
  40404. {
  40405. name: "Macro++++",
  40406. height: math.unit(48, "km")
  40407. },
  40408. {
  40409. name: "Macro+++++",
  40410. height: math.unit(4500, "km")
  40411. },
  40412. ]
  40413. ))
  40414. characterMakers.push(() => makeCharacter(
  40415. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40416. {
  40417. front: {
  40418. height: math.unit(5 + 5/12, "feet"),
  40419. name: "Front",
  40420. image: {
  40421. source: "./media/characters/alsnapz/front.svg",
  40422. extra: 1157/1065,
  40423. bottom: 42/1199
  40424. }
  40425. },
  40426. },
  40427. [
  40428. {
  40429. name: "Normal",
  40430. height: math.unit(5 + 5/12, "feet"),
  40431. default: true
  40432. },
  40433. ]
  40434. ))
  40435. characterMakers.push(() => makeCharacter(
  40436. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40437. {
  40438. side: {
  40439. height: math.unit(3.2, "earths"),
  40440. name: "Side",
  40441. image: {
  40442. source: "./media/characters/mag/side.svg",
  40443. extra: 1331/1008,
  40444. bottom: 52/1383
  40445. }
  40446. },
  40447. wing: {
  40448. height: math.unit(1.94, "earths"),
  40449. name: "Wing",
  40450. image: {
  40451. source: "./media/characters/mag/wing.svg"
  40452. }
  40453. },
  40454. dick: {
  40455. height: math.unit(1.8, "earths"),
  40456. name: "Dick",
  40457. image: {
  40458. source: "./media/characters/mag/dick.svg"
  40459. }
  40460. },
  40461. ass: {
  40462. height: math.unit(1.33, "earths"),
  40463. name: "Ass",
  40464. image: {
  40465. source: "./media/characters/mag/ass.svg"
  40466. }
  40467. },
  40468. head: {
  40469. height: math.unit(1.1, "earths"),
  40470. name: "Head",
  40471. image: {
  40472. source: "./media/characters/mag/head.svg"
  40473. }
  40474. },
  40475. maw: {
  40476. height: math.unit(1.62, "earths"),
  40477. name: "Maw",
  40478. image: {
  40479. source: "./media/characters/mag/maw.svg"
  40480. }
  40481. },
  40482. },
  40483. [
  40484. {
  40485. name: "Small",
  40486. height: math.unit(162, "feet")
  40487. },
  40488. {
  40489. name: "Normal",
  40490. height: math.unit(3.2, "earths"),
  40491. default: true
  40492. },
  40493. ]
  40494. ))
  40495. characterMakers.push(() => makeCharacter(
  40496. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40497. {
  40498. front: {
  40499. height: math.unit(512, "feet"),
  40500. weight: math.unit(63509, "tonnes"),
  40501. name: "Front",
  40502. image: {
  40503. source: "./media/characters/vorrel-harroc/front.svg",
  40504. extra: 1075/1063,
  40505. bottom: 62/1137
  40506. }
  40507. },
  40508. },
  40509. [
  40510. {
  40511. name: "Normal",
  40512. height: math.unit(10, "feet")
  40513. },
  40514. {
  40515. name: "Macro",
  40516. height: math.unit(512, "feet"),
  40517. default: true
  40518. },
  40519. {
  40520. name: "Megamacro",
  40521. height: math.unit(256, "miles")
  40522. },
  40523. {
  40524. name: "Gigamacro",
  40525. height: math.unit(4096, "miles")
  40526. },
  40527. ]
  40528. ))
  40529. characterMakers.push(() => makeCharacter(
  40530. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40531. {
  40532. side: {
  40533. height: math.unit(50, "feet"),
  40534. name: "Side",
  40535. image: {
  40536. source: "./media/characters/froimar/side.svg",
  40537. extra: 855/638,
  40538. bottom: 99/954
  40539. }
  40540. },
  40541. },
  40542. [
  40543. {
  40544. name: "Macro",
  40545. height: math.unit(50, "feet"),
  40546. default: true
  40547. },
  40548. ]
  40549. ))
  40550. characterMakers.push(() => makeCharacter(
  40551. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40552. {
  40553. front: {
  40554. height: math.unit(210, "miles"),
  40555. name: "Front",
  40556. image: {
  40557. source: "./media/characters/timothy/front.svg",
  40558. extra: 1007/943,
  40559. bottom: 62/1069
  40560. }
  40561. },
  40562. frontSkirt: {
  40563. height: math.unit(210, "miles"),
  40564. name: "Front (Skirt)",
  40565. image: {
  40566. source: "./media/characters/timothy/front-skirt.svg",
  40567. extra: 1007/943,
  40568. bottom: 62/1069
  40569. }
  40570. },
  40571. frontCoat: {
  40572. height: math.unit(210, "miles"),
  40573. name: "Front (Coat)",
  40574. image: {
  40575. source: "./media/characters/timothy/front-coat.svg",
  40576. extra: 1007/943,
  40577. bottom: 62/1069
  40578. }
  40579. },
  40580. },
  40581. [
  40582. {
  40583. name: "Macro",
  40584. height: math.unit(210, "miles"),
  40585. default: true
  40586. },
  40587. {
  40588. name: "Megamacro",
  40589. height: math.unit(210000, "miles")
  40590. },
  40591. ]
  40592. ))
  40593. characterMakers.push(() => makeCharacter(
  40594. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40595. {
  40596. front: {
  40597. height: math.unit(188, "feet"),
  40598. name: "Front",
  40599. image: {
  40600. source: "./media/characters/pyotr/front.svg",
  40601. extra: 1912/1826,
  40602. bottom: 18/1930
  40603. }
  40604. },
  40605. },
  40606. [
  40607. {
  40608. name: "Macro",
  40609. height: math.unit(188, "feet"),
  40610. default: true
  40611. },
  40612. {
  40613. name: "Megamacro",
  40614. height: math.unit(8, "miles")
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40620. {
  40621. side: {
  40622. height: math.unit(10, "feet"),
  40623. weight: math.unit(4500, "lb"),
  40624. name: "Side",
  40625. image: {
  40626. source: "./media/characters/ackart/side.svg",
  40627. extra: 1776/1668,
  40628. bottom: 116/1892
  40629. }
  40630. },
  40631. },
  40632. [
  40633. {
  40634. name: "Normal",
  40635. height: math.unit(10, "feet"),
  40636. default: true
  40637. },
  40638. ]
  40639. ))
  40640. characterMakers.push(() => makeCharacter(
  40641. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40642. {
  40643. side: {
  40644. height: math.unit(21, "feet"),
  40645. name: "Side",
  40646. image: {
  40647. source: "./media/characters/nolow/side.svg",
  40648. extra: 1484/1434,
  40649. bottom: 85/1569
  40650. }
  40651. },
  40652. sideErect: {
  40653. height: math.unit(21, "feet"),
  40654. name: "Side-erect",
  40655. image: {
  40656. source: "./media/characters/nolow/side-erect.svg",
  40657. extra: 1484/1434,
  40658. bottom: 85/1569
  40659. }
  40660. },
  40661. },
  40662. [
  40663. {
  40664. name: "Regular",
  40665. height: math.unit(12, "feet")
  40666. },
  40667. {
  40668. name: "Big Chee",
  40669. height: math.unit(21, "feet"),
  40670. default: true
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(7, "feet"),
  40679. weight: math.unit(250, "lb"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/nines/front.svg",
  40683. extra: 1741/1607,
  40684. bottom: 41/1782
  40685. }
  40686. },
  40687. side: {
  40688. height: math.unit(7, "feet"),
  40689. weight: math.unit(250, "lb"),
  40690. name: "Side",
  40691. image: {
  40692. source: "./media/characters/nines/side.svg",
  40693. extra: 1854/1735,
  40694. bottom: 93/1947
  40695. }
  40696. },
  40697. back: {
  40698. height: math.unit(7, "feet"),
  40699. weight: math.unit(250, "lb"),
  40700. name: "Back",
  40701. image: {
  40702. source: "./media/characters/nines/back.svg",
  40703. extra: 1748/1615,
  40704. bottom: 20/1768
  40705. }
  40706. },
  40707. },
  40708. [
  40709. {
  40710. name: "Megamacro",
  40711. height: math.unit(99, "km"),
  40712. default: true
  40713. },
  40714. ]
  40715. ))
  40716. characterMakers.push(() => makeCharacter(
  40717. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40718. {
  40719. front: {
  40720. height: math.unit(5 + 10/12, "feet"),
  40721. weight: math.unit(210, "lb"),
  40722. name: "Front",
  40723. image: {
  40724. source: "./media/characters/zenith/front.svg",
  40725. extra: 1531/1452,
  40726. bottom: 198/1729
  40727. }
  40728. },
  40729. back: {
  40730. height: math.unit(5 + 10/12, "feet"),
  40731. weight: math.unit(210, "lb"),
  40732. name: "Back",
  40733. image: {
  40734. source: "./media/characters/zenith/back.svg",
  40735. extra: 1571/1487,
  40736. bottom: 75/1646
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(5 + 10/12, "feet"),
  40744. default: true
  40745. }
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(4, "feet"),
  40753. weight: math.unit(60, "lb"),
  40754. name: "Front",
  40755. image: {
  40756. source: "./media/characters/jasper/front.svg",
  40757. extra: 1450/1379,
  40758. bottom: 19/1469
  40759. }
  40760. },
  40761. },
  40762. [
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(4, "feet"),
  40766. default: true
  40767. },
  40768. ]
  40769. ))
  40770. characterMakers.push(() => makeCharacter(
  40771. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40772. {
  40773. front: {
  40774. height: math.unit(6 + 5/12, "feet"),
  40775. weight: math.unit(290, "lb"),
  40776. name: "Front",
  40777. image: {
  40778. source: "./media/characters/tiberius-thyben/front.svg",
  40779. extra: 757/739,
  40780. bottom: 39/796
  40781. }
  40782. },
  40783. },
  40784. [
  40785. {
  40786. name: "Micro",
  40787. height: math.unit(1.5, "inches")
  40788. },
  40789. {
  40790. name: "Normal",
  40791. height: math.unit(6 + 5/12, "feet"),
  40792. default: true
  40793. },
  40794. {
  40795. name: "Macro",
  40796. height: math.unit(300, "feet")
  40797. },
  40798. ]
  40799. ))
  40800. characterMakers.push(() => makeCharacter(
  40801. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40802. {
  40803. front: {
  40804. height: math.unit(5 + 6/12, "feet"),
  40805. weight: math.unit(60, "kg"),
  40806. name: "Front",
  40807. image: {
  40808. source: "./media/characters/sabre/front.svg",
  40809. extra: 738/671,
  40810. bottom: 27/765
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Teeny",
  40817. height: math.unit(2, "inches")
  40818. },
  40819. {
  40820. name: "Smol",
  40821. height: math.unit(8, "inches")
  40822. },
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(5 + 6/12, "feet"),
  40826. default: true
  40827. },
  40828. {
  40829. name: "Mini-Macro",
  40830. height: math.unit(15, "feet")
  40831. },
  40832. {
  40833. name: "Macro",
  40834. height: math.unit(50, "feet")
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40840. {
  40841. front: {
  40842. height: math.unit(6 + 4/12, "feet"),
  40843. weight: math.unit(170, "lb"),
  40844. name: "Front",
  40845. image: {
  40846. source: "./media/characters/charlie/front.svg",
  40847. extra: 1348/1228,
  40848. bottom: 15/1363
  40849. }
  40850. },
  40851. },
  40852. [
  40853. {
  40854. name: "Macro",
  40855. height: math.unit(1700, "meters"),
  40856. default: true
  40857. },
  40858. {
  40859. name: "MegaMacro",
  40860. height: math.unit(20400, "meters")
  40861. },
  40862. ]
  40863. ))
  40864. characterMakers.push(() => makeCharacter(
  40865. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40866. {
  40867. front: {
  40868. height: math.unit(6 + 3/12, "feet"),
  40869. weight: math.unit(185, "lb"),
  40870. name: "Front",
  40871. image: {
  40872. source: "./media/characters/susan-grant/front.svg",
  40873. extra: 1351/1327,
  40874. bottom: 26/1377
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "Normal",
  40881. height: math.unit(6 + 3/12, "feet"),
  40882. default: true
  40883. },
  40884. {
  40885. name: "Macro",
  40886. height: math.unit(225, "feet")
  40887. },
  40888. {
  40889. name: "Macro+",
  40890. height: math.unit(900, "feet")
  40891. },
  40892. {
  40893. name: "MegaMacro",
  40894. height: math.unit(14400, "feet")
  40895. },
  40896. ]
  40897. ))
  40898. characterMakers.push(() => makeCharacter(
  40899. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40900. {
  40901. front: {
  40902. height: math.unit(5 + 4/12, "feet"),
  40903. weight: math.unit(110, "lb"),
  40904. name: "Front",
  40905. image: {
  40906. source: "./media/characters/axel-isanov/front.svg",
  40907. extra: 1096/1065,
  40908. bottom: 13/1109
  40909. }
  40910. },
  40911. },
  40912. [
  40913. {
  40914. name: "Normal",
  40915. height: math.unit(5 + 4/12, "feet"),
  40916. default: true
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(9, "feet"),
  40925. weight: math.unit(467, "lb"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/necahual/front.svg",
  40929. extra: 920/873,
  40930. bottom: 26/946
  40931. }
  40932. },
  40933. back: {
  40934. height: math.unit(9, "feet"),
  40935. weight: math.unit(467, "lb"),
  40936. name: "Back",
  40937. image: {
  40938. source: "./media/characters/necahual/back.svg",
  40939. extra: 930/884,
  40940. bottom: 16/946
  40941. }
  40942. },
  40943. frontUnderwear: {
  40944. height: math.unit(9, "feet"),
  40945. weight: math.unit(467, "lb"),
  40946. name: "Front (Underwear)",
  40947. image: {
  40948. source: "./media/characters/necahual/front-underwear.svg",
  40949. extra: 920/873,
  40950. bottom: 26/946
  40951. }
  40952. },
  40953. frontDressed: {
  40954. height: math.unit(9, "feet"),
  40955. weight: math.unit(467, "lb"),
  40956. name: "Front (Dressed)",
  40957. image: {
  40958. source: "./media/characters/necahual/front-dressed.svg",
  40959. extra: 920/873,
  40960. bottom: 26/946
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Comprsesed",
  40967. height: math.unit(9, "feet")
  40968. },
  40969. {
  40970. name: "Natural",
  40971. height: math.unit(15, "feet"),
  40972. default: true
  40973. },
  40974. {
  40975. name: "Boosted",
  40976. height: math.unit(50, "feet")
  40977. },
  40978. {
  40979. name: "Boosted+",
  40980. height: math.unit(150, "feet")
  40981. },
  40982. {
  40983. name: "Max",
  40984. height: math.unit(500, "feet")
  40985. },
  40986. ]
  40987. ))
  40988. characterMakers.push(() => makeCharacter(
  40989. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40990. {
  40991. front: {
  40992. height: math.unit(22 + 1/12, "feet"),
  40993. weight: math.unit(3200, "lb"),
  40994. name: "Front",
  40995. image: {
  40996. source: "./media/characters/theo-acacia/front.svg",
  40997. extra: 1796/1741,
  40998. bottom: 83/1879
  40999. }
  41000. },
  41001. frontUnderwear: {
  41002. height: math.unit(22 + 1/12, "feet"),
  41003. weight: math.unit(3200, "lb"),
  41004. name: "Front (Underwear)",
  41005. image: {
  41006. source: "./media/characters/theo-acacia/front-underwear.svg",
  41007. extra: 1796/1741,
  41008. bottom: 83/1879
  41009. }
  41010. },
  41011. frontNude: {
  41012. height: math.unit(22 + 1/12, "feet"),
  41013. weight: math.unit(3200, "lb"),
  41014. name: "Front (Nude)",
  41015. image: {
  41016. source: "./media/characters/theo-acacia/front-nude.svg",
  41017. extra: 1796/1741,
  41018. bottom: 83/1879
  41019. }
  41020. },
  41021. },
  41022. [
  41023. {
  41024. name: "Normal",
  41025. height: math.unit(22 + 1/12, "feet"),
  41026. default: true
  41027. },
  41028. ]
  41029. ))
  41030. characterMakers.push(() => makeCharacter(
  41031. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41032. {
  41033. front: {
  41034. height: math.unit(20, "feet"),
  41035. name: "Front",
  41036. image: {
  41037. source: "./media/characters/astra/front.svg",
  41038. extra: 1850/1714,
  41039. bottom: 106/1956
  41040. }
  41041. },
  41042. frontUndressed: {
  41043. height: math.unit(20, "feet"),
  41044. name: "Front (Undressed)",
  41045. image: {
  41046. source: "./media/characters/astra/front-undressed.svg",
  41047. extra: 1926/1749,
  41048. bottom: 0/1926
  41049. }
  41050. },
  41051. hand: {
  41052. height: math.unit(1.53, "feet"),
  41053. name: "Hand",
  41054. image: {
  41055. source: "./media/characters/astra/hand.svg"
  41056. }
  41057. },
  41058. paw: {
  41059. height: math.unit(1.53, "feet"),
  41060. name: "Paw",
  41061. image: {
  41062. source: "./media/characters/astra/paw.svg"
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Smallest",
  41069. height: math.unit(20, "feet")
  41070. },
  41071. {
  41072. name: "Normal",
  41073. height: math.unit(1e9, "miles"),
  41074. default: true
  41075. },
  41076. {
  41077. name: "Larger",
  41078. height: math.unit(5, "multiverses")
  41079. },
  41080. {
  41081. name: "Largest",
  41082. height: math.unit(1e9, "multiverses")
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41088. {
  41089. front: {
  41090. height: math.unit(8, "feet"),
  41091. name: "Front",
  41092. image: {
  41093. source: "./media/characters/breanna/front.svg",
  41094. extra: 1912/1632,
  41095. bottom: 33/1945
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Smallest",
  41102. height: math.unit(8, "feet")
  41103. },
  41104. {
  41105. name: "Normal",
  41106. height: math.unit(1, "mile"),
  41107. default: true
  41108. },
  41109. {
  41110. name: "Maximum",
  41111. height: math.unit(1500000000000, "lightyears")
  41112. },
  41113. ]
  41114. ))
  41115. characterMakers.push(() => makeCharacter(
  41116. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41117. {
  41118. front: {
  41119. height: math.unit(5 + 11/12, "feet"),
  41120. weight: math.unit(155, "lb"),
  41121. name: "Front",
  41122. image: {
  41123. source: "./media/characters/cai/front.svg",
  41124. extra: 1823/1702,
  41125. bottom: 32/1855
  41126. }
  41127. },
  41128. back: {
  41129. height: math.unit(5 + 11/12, "feet"),
  41130. weight: math.unit(155, "lb"),
  41131. name: "Back",
  41132. image: {
  41133. source: "./media/characters/cai/back.svg",
  41134. extra: 1809/1708,
  41135. bottom: 31/1840
  41136. }
  41137. },
  41138. },
  41139. [
  41140. {
  41141. name: "Normal",
  41142. height: math.unit(5 + 11/12, "feet"),
  41143. default: true
  41144. },
  41145. {
  41146. name: "Big",
  41147. height: math.unit(15, "feet")
  41148. },
  41149. {
  41150. name: "Macro",
  41151. height: math.unit(200, "feet")
  41152. },
  41153. ]
  41154. ))
  41155. characterMakers.push(() => makeCharacter(
  41156. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41157. {
  41158. front: {
  41159. height: math.unit(5 + 6/12, "feet"),
  41160. weight: math.unit(160, "lb"),
  41161. name: "Front",
  41162. image: {
  41163. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41164. extra: 1227/1174,
  41165. bottom: 37/1264
  41166. }
  41167. },
  41168. },
  41169. [
  41170. {
  41171. name: "Macro",
  41172. height: math.unit(444, "meters"),
  41173. default: true
  41174. },
  41175. ]
  41176. ))
  41177. characterMakers.push(() => makeCharacter(
  41178. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41179. {
  41180. front: {
  41181. height: math.unit(18 + 7/12, "feet"),
  41182. name: "Front",
  41183. image: {
  41184. source: "./media/characters/rex/front.svg",
  41185. extra: 1941/1807,
  41186. bottom: 66/2007
  41187. }
  41188. },
  41189. back: {
  41190. height: math.unit(18 + 7/12, "feet"),
  41191. name: "Back",
  41192. image: {
  41193. source: "./media/characters/rex/back.svg",
  41194. extra: 1937/1822,
  41195. bottom: 42/1979
  41196. }
  41197. },
  41198. boot: {
  41199. height: math.unit(3.45, "feet"),
  41200. name: "Boot",
  41201. image: {
  41202. source: "./media/characters/rex/boot.svg"
  41203. }
  41204. },
  41205. paw: {
  41206. height: math.unit(4.17, "feet"),
  41207. name: "Paw",
  41208. image: {
  41209. source: "./media/characters/rex/paw.svg"
  41210. }
  41211. },
  41212. head: {
  41213. height: math.unit(6.728, "feet"),
  41214. name: "Head",
  41215. image: {
  41216. source: "./media/characters/rex/head.svg"
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Nano",
  41223. height: math.unit(18 + 7/12, "feet")
  41224. },
  41225. {
  41226. name: "Micro",
  41227. height: math.unit(1.5, "megameters")
  41228. },
  41229. {
  41230. name: "Normal",
  41231. height: math.unit(440, "megameters"),
  41232. default: true
  41233. },
  41234. {
  41235. name: "Macro",
  41236. height: math.unit(2.5, "gigameters")
  41237. },
  41238. {
  41239. name: "Gigamacro",
  41240. height: math.unit(2, "galaxies")
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41246. {
  41247. side: {
  41248. height: math.unit(32, "feet"),
  41249. weight: math.unit(250000, "lb"),
  41250. name: "Side",
  41251. image: {
  41252. source: "./media/characters/silverwing/side.svg",
  41253. extra: 1100/1019,
  41254. bottom: 204/1304
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Normal",
  41261. height: math.unit(32, "feet"),
  41262. default: true
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(6 + 6/12, "feet"),
  41271. weight: math.unit(350, "lb"),
  41272. name: "Front",
  41273. image: {
  41274. source: "./media/characters/tristan-hawthorne/front.svg",
  41275. extra: 1159/1124,
  41276. bottom: 37/1196
  41277. }
  41278. },
  41279. },
  41280. [
  41281. {
  41282. name: "Normal",
  41283. height: math.unit(6 + 6/12, "feet"),
  41284. default: true
  41285. },
  41286. ]
  41287. ))
  41288. characterMakers.push(() => makeCharacter(
  41289. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41290. {
  41291. front: {
  41292. height: math.unit(5 + 11/12, "feet"),
  41293. weight: math.unit(190, "lb"),
  41294. name: "Front",
  41295. image: {
  41296. source: "./media/characters/mizu/front.svg",
  41297. extra: 1988/1788,
  41298. bottom: 14/2002
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(5 + 11/12, "feet"),
  41306. default: true
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41312. {
  41313. front: {
  41314. height: math.unit(6, "feet"),
  41315. name: "Front",
  41316. image: {
  41317. source: "./media/characters/moonlight-rose-terra/front.svg",
  41318. extra: 1434/1252,
  41319. bottom: 48/1482
  41320. }
  41321. },
  41322. },
  41323. [
  41324. {
  41325. name: "TRAPPIST-1D",
  41326. height: math.unit(4992*2, "km")
  41327. },
  41328. {
  41329. name: "Earth",
  41330. height: math.unit(6367*2, "km"),
  41331. default: true
  41332. },
  41333. {
  41334. name: "Kepler-22b",
  41335. height: math.unit(15282*2, "km")
  41336. },
  41337. ]
  41338. ))
  41339. characterMakers.push(() => makeCharacter(
  41340. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41341. {
  41342. front: {
  41343. height: math.unit(6, "feet"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41347. extra: 1851/1712,
  41348. bottom: 0/1851
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Enceladus",
  41355. height: math.unit(513*2, "km")
  41356. },
  41357. {
  41358. name: "Europe",
  41359. height: math.unit(1560*2, "km")
  41360. },
  41361. {
  41362. name: "Neptune",
  41363. height: math.unit(24622*2, "km"),
  41364. default: true
  41365. },
  41366. {
  41367. name: "CoRoT-9b",
  41368. height: math.unit(75067*2, "km")
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(6, "feet"),
  41377. name: "Front",
  41378. image: {
  41379. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41380. extra: 1367/1286,
  41381. bottom: 55/1422
  41382. }
  41383. },
  41384. },
  41385. [
  41386. {
  41387. name: "Saturn",
  41388. height: math.unit(58232*2, "km")
  41389. },
  41390. {
  41391. name: "Jupiter",
  41392. height: math.unit(69911*2, "km"),
  41393. default: true
  41394. },
  41395. {
  41396. name: "HD 100546 b",
  41397. height: math.unit(482938, "km")
  41398. },
  41399. ]
  41400. ))
  41401. characterMakers.push(() => makeCharacter(
  41402. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41403. {
  41404. front: {
  41405. height: math.unit(1.7, "feet"),
  41406. weight: math.unit(50, "lb"),
  41407. name: "Front",
  41408. image: {
  41409. source: "./media/characters/dechroma/front.svg",
  41410. extra: 1095/859,
  41411. bottom: 64/1159
  41412. }
  41413. },
  41414. },
  41415. [
  41416. {
  41417. name: "Normal",
  41418. height: math.unit(1.7, "feet"),
  41419. default: true
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41425. {
  41426. side: {
  41427. height: math.unit(30, "feet"),
  41428. name: "Side",
  41429. image: {
  41430. source: "./media/characters/veluren-thanazel/side.svg",
  41431. extra: 1611/633,
  41432. bottom: 118/1729
  41433. }
  41434. },
  41435. front: {
  41436. height: math.unit(30, "feet"),
  41437. name: "Front",
  41438. image: {
  41439. source: "./media/characters/veluren-thanazel/front.svg",
  41440. extra: 1486/636,
  41441. bottom: 238/1724
  41442. }
  41443. },
  41444. head: {
  41445. height: math.unit(21.4, "feet"),
  41446. name: "Head",
  41447. image: {
  41448. source: "./media/characters/veluren-thanazel/head.svg"
  41449. }
  41450. },
  41451. genitals: {
  41452. height: math.unit(19.4, "feet"),
  41453. name: "Genitals",
  41454. image: {
  41455. source: "./media/characters/veluren-thanazel/genitals.svg"
  41456. }
  41457. },
  41458. },
  41459. [
  41460. {
  41461. name: "Social",
  41462. height: math.unit(6, "feet")
  41463. },
  41464. {
  41465. name: "Play",
  41466. height: math.unit(12, "feet")
  41467. },
  41468. {
  41469. name: "True",
  41470. height: math.unit(30, "feet"),
  41471. default: true
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41477. {
  41478. front: {
  41479. height: math.unit(7 + 6/12, "feet"),
  41480. weight: math.unit(500, "kg"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/arcturas/front.svg",
  41484. extra: 1700/1500,
  41485. bottom: 145/1845
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Normal",
  41492. height: math.unit(7 + 6/12, "feet"),
  41493. default: true
  41494. },
  41495. ]
  41496. ))
  41497. characterMakers.push(() => makeCharacter(
  41498. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41499. {
  41500. side: {
  41501. height: math.unit(6, "feet"),
  41502. weight: math.unit(2, "tons"),
  41503. name: "Side",
  41504. image: {
  41505. source: "./media/characters/vitaen/side.svg",
  41506. extra: 1157/617,
  41507. bottom: 122/1279
  41508. }
  41509. },
  41510. },
  41511. [
  41512. {
  41513. name: "Normal",
  41514. height: math.unit(6, "feet"),
  41515. default: true
  41516. },
  41517. ]
  41518. ))
  41519. characterMakers.push(() => makeCharacter(
  41520. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41521. {
  41522. front: {
  41523. height: math.unit(19, "feet"),
  41524. name: "Front",
  41525. image: {
  41526. source: "./media/characters/fia-dreamweaver/front.svg",
  41527. extra: 1630/1504,
  41528. bottom: 25/1655
  41529. }
  41530. },
  41531. },
  41532. [
  41533. {
  41534. name: "Normal",
  41535. height: math.unit(19, "feet"),
  41536. default: true
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41542. {
  41543. front: {
  41544. height: math.unit(5 + 4/12, "feet"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/artan/front.svg",
  41548. extra: 1618/1535,
  41549. bottom: 46/1664
  41550. }
  41551. },
  41552. back: {
  41553. height: math.unit(5 + 4/12, "feet"),
  41554. name: "Back",
  41555. image: {
  41556. source: "./media/characters/artan/back.svg",
  41557. extra: 1618/1543,
  41558. bottom: 31/1649
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Normal",
  41565. height: math.unit(5 + 4/12, "feet"),
  41566. default: true
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41572. {
  41573. side: {
  41574. height: math.unit(182, "cm"),
  41575. weight: math.unit(1000, "lb"),
  41576. name: "Side",
  41577. image: {
  41578. source: "./media/characters/silver-dragon/side.svg",
  41579. extra: 710/287,
  41580. bottom: 88/798
  41581. }
  41582. },
  41583. },
  41584. [
  41585. {
  41586. name: "Normal",
  41587. height: math.unit(182, "cm"),
  41588. default: true
  41589. },
  41590. ]
  41591. ))
  41592. characterMakers.push(() => makeCharacter(
  41593. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41594. {
  41595. side: {
  41596. height: math.unit(6 + 6/12, "feet"),
  41597. weight: math.unit(1.5, "tons"),
  41598. name: "Side",
  41599. image: {
  41600. source: "./media/characters/zephyr/side.svg",
  41601. extra: 1433/586,
  41602. bottom: 109/1542
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Normal",
  41609. height: math.unit(6 + 6/12, "feet"),
  41610. default: true
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41616. {
  41617. side: {
  41618. height: math.unit(1, "feet"),
  41619. name: "Side",
  41620. image: {
  41621. source: "./media/characters/vixye/side.svg",
  41622. extra: 632/541,
  41623. bottom: 0/632
  41624. }
  41625. },
  41626. },
  41627. [
  41628. {
  41629. name: "Normal",
  41630. height: math.unit(1, "feet"),
  41631. default: true
  41632. },
  41633. {
  41634. name: "True",
  41635. height: math.unit(1e15, "multiverses")
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(8 + 2/12, "feet"),
  41644. weight: math.unit(650, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41648. extra: 1174/1137,
  41649. bottom: 82/1256
  41650. }
  41651. },
  41652. back: {
  41653. height: math.unit(8 + 2/12, "feet"),
  41654. weight: math.unit(650, "lb"),
  41655. name: "Back",
  41656. image: {
  41657. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41658. extra: 1204/1157,
  41659. bottom: 46/1250
  41660. }
  41661. },
  41662. },
  41663. [
  41664. {
  41665. name: "Wildform",
  41666. height: math.unit(8 + 2/12, "feet"),
  41667. default: true
  41668. },
  41669. ]
  41670. ))
  41671. characterMakers.push(() => makeCharacter(
  41672. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41673. {
  41674. front: {
  41675. height: math.unit(18, "feet"),
  41676. name: "Front",
  41677. image: {
  41678. source: "./media/characters/cyphin/front.svg",
  41679. extra: 970/886,
  41680. bottom: 42/1012
  41681. }
  41682. },
  41683. back: {
  41684. height: math.unit(18, "feet"),
  41685. name: "Back",
  41686. image: {
  41687. source: "./media/characters/cyphin/back.svg",
  41688. extra: 1009/894,
  41689. bottom: 24/1033
  41690. }
  41691. },
  41692. head: {
  41693. height: math.unit(5.05, "feet"),
  41694. name: "Head",
  41695. image: {
  41696. source: "./media/characters/cyphin/head.svg"
  41697. }
  41698. },
  41699. tailbud: {
  41700. height: math.unit(5, "feet"),
  41701. name: "Tailbud",
  41702. image: {
  41703. source: "./media/characters/cyphin/tailbud.svg"
  41704. }
  41705. },
  41706. },
  41707. [
  41708. ]
  41709. ))
  41710. characterMakers.push(() => makeCharacter(
  41711. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41712. {
  41713. side: {
  41714. height: math.unit(10, "feet"),
  41715. weight: math.unit(6, "tons"),
  41716. name: "Side",
  41717. image: {
  41718. source: "./media/characters/raijin/side.svg",
  41719. extra: 1529/613,
  41720. bottom: 337/1866
  41721. }
  41722. },
  41723. },
  41724. [
  41725. {
  41726. name: "Normal",
  41727. height: math.unit(10, "feet"),
  41728. default: true
  41729. },
  41730. ]
  41731. ))
  41732. characterMakers.push(() => makeCharacter(
  41733. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41734. {
  41735. side: {
  41736. height: math.unit(9, "feet"),
  41737. name: "Side",
  41738. image: {
  41739. source: "./media/characters/nilghais/side.svg",
  41740. extra: 1047/744,
  41741. bottom: 91/1138
  41742. }
  41743. },
  41744. head: {
  41745. height: math.unit(3.14, "feet"),
  41746. name: "Head",
  41747. image: {
  41748. source: "./media/characters/nilghais/head.svg"
  41749. }
  41750. },
  41751. mouth: {
  41752. height: math.unit(4.6, "feet"),
  41753. name: "Mouth",
  41754. image: {
  41755. source: "./media/characters/nilghais/mouth.svg"
  41756. }
  41757. },
  41758. wings: {
  41759. height: math.unit(24, "feet"),
  41760. name: "Wings",
  41761. image: {
  41762. source: "./media/characters/nilghais/wings.svg"
  41763. }
  41764. },
  41765. ass: {
  41766. height: math.unit(6.12, "feet"),
  41767. name: "Ass",
  41768. image: {
  41769. source: "./media/characters/nilghais/ass.svg"
  41770. }
  41771. },
  41772. },
  41773. [
  41774. {
  41775. name: "Normal",
  41776. height: math.unit(9, "feet"),
  41777. default: true
  41778. },
  41779. ]
  41780. ))
  41781. characterMakers.push(() => makeCharacter(
  41782. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41783. {
  41784. regular: {
  41785. height: math.unit(16 + 2/12, "feet"),
  41786. weight: math.unit(2300, "lb"),
  41787. name: "Regular",
  41788. image: {
  41789. source: "./media/characters/zolgar/regular.svg",
  41790. extra: 1246/1004,
  41791. bottom: 124/1370
  41792. }
  41793. },
  41794. boxers: {
  41795. height: math.unit(16 + 2/12, "feet"),
  41796. weight: math.unit(2300, "lb"),
  41797. name: "Boxers",
  41798. image: {
  41799. source: "./media/characters/zolgar/boxers.svg",
  41800. extra: 1246/1004,
  41801. bottom: 124/1370
  41802. }
  41803. },
  41804. armored: {
  41805. height: math.unit(16 + 2/12, "feet"),
  41806. weight: math.unit(2300, "lb"),
  41807. name: "Armored",
  41808. image: {
  41809. source: "./media/characters/zolgar/armored.svg",
  41810. extra: 1246/1004,
  41811. bottom: 124/1370
  41812. }
  41813. },
  41814. goth: {
  41815. height: math.unit(16 + 2/12, "feet"),
  41816. weight: math.unit(2300, "lb"),
  41817. name: "Goth",
  41818. image: {
  41819. source: "./media/characters/zolgar/goth.svg",
  41820. extra: 1246/1004,
  41821. bottom: 124/1370
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Shrunken Down",
  41828. height: math.unit(9 + 2/12, "feet")
  41829. },
  41830. {
  41831. name: "Normal",
  41832. height: math.unit(16 + 2/12, "feet"),
  41833. default: true
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41839. {
  41840. front: {
  41841. height: math.unit(6, "feet"),
  41842. weight: math.unit(168, "lb"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/luca/front.svg",
  41846. extra: 841/667,
  41847. bottom: 102/943
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(6, "feet"),
  41855. default: true
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41861. {
  41862. side: {
  41863. height: math.unit(7 + 3/12, "feet"),
  41864. weight: math.unit(312, "lb"),
  41865. name: "Side",
  41866. image: {
  41867. source: "./media/characters/zezo/side.svg",
  41868. extra: 1192/1067,
  41869. bottom: 63/1255
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Normal",
  41876. height: math.unit(7 + 3/12, "feet"),
  41877. default: true
  41878. },
  41879. ]
  41880. ))
  41881. characterMakers.push(() => makeCharacter(
  41882. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41883. {
  41884. front: {
  41885. height: math.unit(5 + 5/12, "feet"),
  41886. weight: math.unit(170, "lb"),
  41887. name: "Front",
  41888. image: {
  41889. source: "./media/characters/mayso/front.svg",
  41890. extra: 1215/1108,
  41891. bottom: 16/1231
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Normal",
  41898. height: math.unit(5 + 5/12, "feet"),
  41899. default: true
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41905. {
  41906. front: {
  41907. height: math.unit(4 + 3/12, "feet"),
  41908. weight: math.unit(80, "lb"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/hess/front.svg",
  41912. extra: 1200/1123,
  41913. bottom: 16/1216
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Normal",
  41920. height: math.unit(4 + 3/12, "feet"),
  41921. default: true
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41927. {
  41928. front: {
  41929. height: math.unit(1.9, "meters"),
  41930. name: "Front",
  41931. image: {
  41932. source: "./media/characters/ashgar/front.svg",
  41933. extra: 1177/1146,
  41934. bottom: 99/1276
  41935. }
  41936. },
  41937. back: {
  41938. height: math.unit(1.9, "meters"),
  41939. name: "Back",
  41940. image: {
  41941. source: "./media/characters/ashgar/back.svg",
  41942. extra: 1201/1183,
  41943. bottom: 53/1254
  41944. }
  41945. },
  41946. feral: {
  41947. height: math.unit(1.4, "meters"),
  41948. name: "Feral",
  41949. image: {
  41950. source: "./media/characters/ashgar/feral.svg",
  41951. extra: 370/345,
  41952. bottom: 45/415
  41953. }
  41954. },
  41955. },
  41956. [
  41957. {
  41958. name: "Normal",
  41959. height: math.unit(1.9, "meters"),
  41960. default: true
  41961. },
  41962. ]
  41963. ))
  41964. characterMakers.push(() => makeCharacter(
  41965. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41966. {
  41967. regular: {
  41968. height: math.unit(6, "feet"),
  41969. weight: math.unit(220, "lb"),
  41970. name: "Regular",
  41971. image: {
  41972. source: "./media/characters/phillip/regular.svg",
  41973. extra: 1373/1277,
  41974. bottom: 75/1448
  41975. }
  41976. },
  41977. dressed: {
  41978. height: math.unit(6, "feet"),
  41979. weight: math.unit(220, "lb"),
  41980. name: "Dressed",
  41981. image: {
  41982. source: "./media/characters/phillip/dressed.svg",
  41983. extra: 1373/1277,
  41984. bottom: 75/1448
  41985. }
  41986. },
  41987. paw: {
  41988. height: math.unit(1.44, "feet"),
  41989. name: "Paw",
  41990. image: {
  41991. source: "./media/characters/phillip/paw.svg"
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(6, "feet"),
  41999. default: true
  42000. },
  42001. ]
  42002. ))
  42003. characterMakers.push(() => makeCharacter(
  42004. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42005. {
  42006. side: {
  42007. height: math.unit(42, "feet"),
  42008. name: "Side",
  42009. image: {
  42010. source: "./media/characters/uvula/side.svg",
  42011. extra: 683/586,
  42012. bottom: 60/743
  42013. }
  42014. },
  42015. front: {
  42016. height: math.unit(42, "feet"),
  42017. name: "Front",
  42018. image: {
  42019. source: "./media/characters/uvula/front.svg",
  42020. extra: 705/613,
  42021. bottom: 54/759
  42022. }
  42023. },
  42024. maw: {
  42025. height: math.unit(23.5, "feet"),
  42026. name: "Maw",
  42027. image: {
  42028. source: "./media/characters/uvula/maw.svg"
  42029. }
  42030. },
  42031. },
  42032. [
  42033. {
  42034. name: "Original Size",
  42035. height: math.unit(14, "inches")
  42036. },
  42037. {
  42038. name: "Human Size",
  42039. height: math.unit(6, "feet")
  42040. },
  42041. {
  42042. name: "Big",
  42043. height: math.unit(42, "feet"),
  42044. default: true
  42045. },
  42046. {
  42047. name: "Bigger",
  42048. height: math.unit(100, "feet")
  42049. },
  42050. ]
  42051. ))
  42052. characterMakers.push(() => makeCharacter(
  42053. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42054. {
  42055. front: {
  42056. height: math.unit(5 + 11/12, "feet"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/lannah/front.svg",
  42060. extra: 1208/1113,
  42061. bottom: 97/1305
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Normal",
  42068. height: math.unit(5 + 11/12, "feet"),
  42069. default: true
  42070. },
  42071. ]
  42072. ))
  42073. characterMakers.push(() => makeCharacter(
  42074. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42075. {
  42076. front: {
  42077. height: math.unit(6 + 3/12, "feet"),
  42078. weight: math.unit(3.5, "tons"),
  42079. name: "Front",
  42080. image: {
  42081. source: "./media/characters/emberflame/front.svg",
  42082. extra: 1198/672,
  42083. bottom: 82/1280
  42084. }
  42085. },
  42086. side: {
  42087. height: math.unit(6 + 3/12, "feet"),
  42088. weight: math.unit(3.5, "tons"),
  42089. name: "Side",
  42090. image: {
  42091. source: "./media/characters/emberflame/side.svg",
  42092. extra: 938/527,
  42093. bottom: 56/994
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Normal",
  42100. height: math.unit(6 + 3/12, "feet"),
  42101. default: true
  42102. },
  42103. ]
  42104. ))
  42105. characterMakers.push(() => makeCharacter(
  42106. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42107. {
  42108. side: {
  42109. height: math.unit(17.5, "feet"),
  42110. weight: math.unit(35, "tons"),
  42111. name: "Side",
  42112. image: {
  42113. source: "./media/characters/sophie-ambrose/side.svg",
  42114. extra: 1573/1242,
  42115. bottom: 71/1644
  42116. }
  42117. },
  42118. maw: {
  42119. height: math.unit(7.4, "feet"),
  42120. name: "Maw",
  42121. image: {
  42122. source: "./media/characters/sophie-ambrose/maw.svg"
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Normal",
  42129. height: math.unit(17.5, "feet"),
  42130. default: true
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(280, "feet"),
  42139. weight: math.unit(550, "tons"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/king-mugi/front.svg",
  42143. extra: 1102/947,
  42144. bottom: 104/1206
  42145. }
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "King Mugi",
  42151. height: math.unit(280, "feet"),
  42152. default: true
  42153. },
  42154. ]
  42155. ))
  42156. characterMakers.push(() => makeCharacter(
  42157. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42158. {
  42159. front: {
  42160. height: math.unit(64, "meters"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/nova-fox/front.svg",
  42164. extra: 1310/1246,
  42165. bottom: 65/1375
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Macro",
  42172. height: math.unit(64, "meters"),
  42173. default: true
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(6 + 3/12, "feet"),
  42182. weight: math.unit(170, "lb"),
  42183. name: "Front",
  42184. image: {
  42185. source: "./media/characters/sam-bat/front.svg",
  42186. extra: 1601/1411,
  42187. bottom: 125/1726
  42188. }
  42189. },
  42190. back: {
  42191. height: math.unit(6 + 3/12, "feet"),
  42192. weight: math.unit(170, "lb"),
  42193. name: "Back",
  42194. image: {
  42195. source: "./media/characters/sam-bat/back.svg",
  42196. extra: 1577/1405,
  42197. bottom: 58/1635
  42198. }
  42199. },
  42200. },
  42201. [
  42202. {
  42203. name: "Normal",
  42204. height: math.unit(6 + 3/12, "feet"),
  42205. default: true
  42206. },
  42207. ]
  42208. ))
  42209. characterMakers.push(() => makeCharacter(
  42210. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42211. {
  42212. front: {
  42213. height: math.unit(59, "feet"),
  42214. weight: math.unit(40000, "lb"),
  42215. name: "Front",
  42216. image: {
  42217. source: "./media/characters/inari/front.svg",
  42218. extra: 1884/1350,
  42219. bottom: 95/1979
  42220. }
  42221. },
  42222. },
  42223. [
  42224. {
  42225. name: "Gigantamax",
  42226. height: math.unit(59, "feet"),
  42227. default: true
  42228. },
  42229. ]
  42230. ))
  42231. characterMakers.push(() => makeCharacter(
  42232. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42233. {
  42234. front: {
  42235. height: math.unit(5 + 8/12, "feet"),
  42236. name: "Front",
  42237. image: {
  42238. source: "./media/characters/elizabeth/front.svg",
  42239. extra: 1395/1298,
  42240. bottom: 54/1449
  42241. }
  42242. },
  42243. mouth: {
  42244. height: math.unit(1.97, "feet"),
  42245. name: "Mouth",
  42246. image: {
  42247. source: "./media/characters/elizabeth/mouth.svg"
  42248. }
  42249. },
  42250. foot: {
  42251. height: math.unit(1.17, "feet"),
  42252. name: "Foot",
  42253. image: {
  42254. source: "./media/characters/elizabeth/foot.svg"
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Normal",
  42261. height: math.unit(5 + 8/12, "feet"),
  42262. default: true
  42263. },
  42264. {
  42265. name: "Minimacro",
  42266. height: math.unit(18, "feet")
  42267. },
  42268. {
  42269. name: "Macro",
  42270. height: math.unit(180, "feet")
  42271. },
  42272. ]
  42273. ))
  42274. characterMakers.push(() => makeCharacter(
  42275. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42276. {
  42277. front: {
  42278. height: math.unit(5 + 2/12, "feet"),
  42279. name: "Front",
  42280. image: {
  42281. source: "./media/characters/october-gossamer/front.svg",
  42282. extra: 505/454,
  42283. bottom: 7/512
  42284. }
  42285. },
  42286. back: {
  42287. height: math.unit(5 + 2/12, "feet"),
  42288. name: "Back",
  42289. image: {
  42290. source: "./media/characters/october-gossamer/back.svg",
  42291. extra: 501/454,
  42292. bottom: 11/512
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Normal",
  42299. height: math.unit(5 + 2/12, "feet"),
  42300. default: true
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42306. {
  42307. front: {
  42308. height: math.unit(5, "feet"),
  42309. name: "Front",
  42310. image: {
  42311. source: "./media/characters/epiglottis/front.svg",
  42312. extra: 923/849,
  42313. bottom: 17/940
  42314. }
  42315. },
  42316. },
  42317. [
  42318. {
  42319. name: "Original Size",
  42320. height: math.unit(10, "inches")
  42321. },
  42322. {
  42323. name: "Human Size",
  42324. height: math.unit(5, "feet"),
  42325. default: true
  42326. },
  42327. {
  42328. name: "Big",
  42329. height: math.unit(25, "feet")
  42330. },
  42331. {
  42332. name: "Bigger",
  42333. height: math.unit(50, "feet")
  42334. },
  42335. {
  42336. name: "oh lawd",
  42337. height: math.unit(75, "feet")
  42338. },
  42339. ]
  42340. ))
  42341. characterMakers.push(() => makeCharacter(
  42342. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42343. {
  42344. front: {
  42345. height: math.unit(2 + 4/12, "feet"),
  42346. weight: math.unit(60, "lb"),
  42347. name: "Front",
  42348. image: {
  42349. source: "./media/characters/lerm/front.svg",
  42350. extra: 796/790,
  42351. bottom: 79/875
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Normal",
  42358. height: math.unit(2 + 4/12, "feet"),
  42359. default: true
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(5.5, "feet"),
  42368. weight: math.unit(130, "lb"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/xena-nebadon/front.svg",
  42372. extra: 1828/1730,
  42373. bottom: 79/1907
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Tiny Puppy",
  42380. height: math.unit(3, "inches")
  42381. },
  42382. {
  42383. name: "Normal",
  42384. height: math.unit(5.5, "feet"),
  42385. default: true
  42386. },
  42387. {
  42388. name: "Lotta Lady",
  42389. height: math.unit(12, "feet")
  42390. },
  42391. {
  42392. name: "Pretty Big",
  42393. height: math.unit(100, "feet")
  42394. },
  42395. {
  42396. name: "Big",
  42397. height: math.unit(500, "feet")
  42398. },
  42399. {
  42400. name: "Skyscraper Toys",
  42401. height: math.unit(2500, "feet")
  42402. },
  42403. {
  42404. name: "Plane Catcher",
  42405. height: math.unit(8, "miles")
  42406. },
  42407. {
  42408. name: "Planet Toys",
  42409. height: math.unit(15, "earths")
  42410. },
  42411. {
  42412. name: "Stardust",
  42413. height: math.unit(0.25, "galaxies")
  42414. },
  42415. {
  42416. name: "Snacks",
  42417. height: math.unit(70, "universes")
  42418. },
  42419. ]
  42420. ))
  42421. characterMakers.push(() => makeCharacter(
  42422. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42423. {
  42424. front: {
  42425. height: math.unit(1.6, "meters"),
  42426. weight: math.unit(60, "kg"),
  42427. name: "Front",
  42428. image: {
  42429. source: "./media/characters/bounty/front.svg",
  42430. extra: 1426/1308,
  42431. bottom: 15/1441
  42432. }
  42433. },
  42434. back: {
  42435. height: math.unit(1.6, "meters"),
  42436. weight: math.unit(60, "kg"),
  42437. name: "Back",
  42438. image: {
  42439. source: "./media/characters/bounty/back.svg",
  42440. extra: 1417/1307,
  42441. bottom: 8/1425
  42442. }
  42443. },
  42444. },
  42445. [
  42446. {
  42447. name: "Normal",
  42448. height: math.unit(1.6, "meters"),
  42449. default: true
  42450. },
  42451. {
  42452. name: "Macro",
  42453. height: math.unit(300, "meters")
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42459. {
  42460. front: {
  42461. height: math.unit(2 + 8/12, "feet"),
  42462. weight: math.unit(15, "lb"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/mochi/front.svg",
  42466. extra: 1022/852,
  42467. bottom: 435/1457
  42468. }
  42469. },
  42470. back: {
  42471. height: math.unit(2 + 8/12, "feet"),
  42472. weight: math.unit(15, "lb"),
  42473. name: "Back",
  42474. image: {
  42475. source: "./media/characters/mochi/back.svg",
  42476. extra: 1335/1119,
  42477. bottom: 39/1374
  42478. }
  42479. },
  42480. bird: {
  42481. height: math.unit(2 + 8/12, "feet"),
  42482. weight: math.unit(15, "lb"),
  42483. name: "Bird",
  42484. image: {
  42485. source: "./media/characters/mochi/bird.svg",
  42486. extra: 1251/1113,
  42487. bottom: 178/1429
  42488. }
  42489. },
  42490. kaiju: {
  42491. height: math.unit(154, "feet"),
  42492. weight: math.unit(1e7, "lb"),
  42493. name: "Kaiju",
  42494. image: {
  42495. source: "./media/characters/mochi/kaiju.svg",
  42496. extra: 460/324,
  42497. bottom: 40/500
  42498. }
  42499. },
  42500. head: {
  42501. height: math.unit(1.21, "feet"),
  42502. name: "Head",
  42503. image: {
  42504. source: "./media/characters/mochi/head.svg"
  42505. }
  42506. },
  42507. alternateTail: {
  42508. height: math.unit(2 + 8/12, "feet"),
  42509. weight: math.unit(45, "lb"),
  42510. name: "Alternate Tail",
  42511. image: {
  42512. source: "./media/characters/mochi/alternate-tail.svg",
  42513. extra: 139/76,
  42514. bottom: 45/184
  42515. }
  42516. },
  42517. },
  42518. [
  42519. {
  42520. name: "Micro",
  42521. height: math.unit(2, "inches")
  42522. },
  42523. {
  42524. name: "Normal",
  42525. height: math.unit(2 + 8/12, "feet"),
  42526. default: true
  42527. },
  42528. {
  42529. name: "Macro",
  42530. height: math.unit(106, "feet")
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(5.67, "feet"),
  42539. weight: math.unit(135, "lb"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/sarel/front.svg",
  42543. extra: 865/788,
  42544. bottom: 97/962
  42545. }
  42546. },
  42547. back: {
  42548. height: math.unit(5.67, "feet"),
  42549. weight: math.unit(135, "lb"),
  42550. name: "Back",
  42551. image: {
  42552. source: "./media/characters/sarel/back.svg",
  42553. extra: 857/777,
  42554. bottom: 32/889
  42555. }
  42556. },
  42557. chozoan: {
  42558. height: math.unit(5.67, "feet"),
  42559. weight: math.unit(135, "lb"),
  42560. name: "Chozoan",
  42561. image: {
  42562. source: "./media/characters/sarel/chozoan.svg",
  42563. extra: 865/788,
  42564. bottom: 97/962
  42565. }
  42566. },
  42567. current: {
  42568. height: math.unit(5.67, "feet"),
  42569. weight: math.unit(135, "lb"),
  42570. name: "Current",
  42571. image: {
  42572. source: "./media/characters/sarel/current.svg",
  42573. extra: 865/788,
  42574. bottom: 97/962
  42575. }
  42576. },
  42577. head: {
  42578. height: math.unit(1.77, "feet"),
  42579. name: "Head",
  42580. image: {
  42581. source: "./media/characters/sarel/head.svg"
  42582. }
  42583. },
  42584. claws: {
  42585. height: math.unit(1.8, "feet"),
  42586. name: "Claws",
  42587. image: {
  42588. source: "./media/characters/sarel/claws.svg"
  42589. }
  42590. },
  42591. clawsAlt: {
  42592. height: math.unit(1.8, "feet"),
  42593. name: "Claws-alt",
  42594. image: {
  42595. source: "./media/characters/sarel/claws-alt.svg"
  42596. }
  42597. },
  42598. },
  42599. [
  42600. {
  42601. name: "Normal",
  42602. height: math.unit(5.67, "feet"),
  42603. default: true
  42604. },
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42609. {
  42610. front: {
  42611. height: math.unit(5500, "feet"),
  42612. name: "Front",
  42613. image: {
  42614. source: "./media/characters/alyonia/front.svg",
  42615. extra: 1200/1135,
  42616. bottom: 29/1229
  42617. }
  42618. },
  42619. back: {
  42620. height: math.unit(5500, "feet"),
  42621. name: "Back",
  42622. image: {
  42623. source: "./media/characters/alyonia/back.svg",
  42624. extra: 1205/1138,
  42625. bottom: 10/1215
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Small",
  42632. height: math.unit(10, "feet")
  42633. },
  42634. {
  42635. name: "Macro",
  42636. height: math.unit(500, "feet")
  42637. },
  42638. {
  42639. name: "Mega Macro",
  42640. height: math.unit(5500, "feet"),
  42641. default: true
  42642. },
  42643. {
  42644. name: "Mega Macro+",
  42645. height: math.unit(500000, "feet")
  42646. },
  42647. {
  42648. name: "Giga Macro",
  42649. height: math.unit(3000, "miles")
  42650. },
  42651. {
  42652. name: "Tera Macro",
  42653. height: math.unit(2.8e6, "miles")
  42654. },
  42655. {
  42656. name: "Galactic",
  42657. height: math.unit(120000, "lightyears")
  42658. },
  42659. ]
  42660. ))
  42661. characterMakers.push(() => makeCharacter(
  42662. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42663. {
  42664. werewolf: {
  42665. height: math.unit(8, "feet"),
  42666. weight: math.unit(425, "lb"),
  42667. name: "Werewolf",
  42668. image: {
  42669. source: "./media/characters/autumn/werewolf.svg",
  42670. extra: 2154/2031,
  42671. bottom: 160/2314
  42672. }
  42673. },
  42674. human: {
  42675. height: math.unit(5 + 8/12, "feet"),
  42676. weight: math.unit(150, "lb"),
  42677. name: "Human",
  42678. image: {
  42679. source: "./media/characters/autumn/human.svg",
  42680. extra: 1200/1149,
  42681. bottom: 30/1230
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Normal",
  42688. height: math.unit(8, "feet"),
  42689. default: true
  42690. },
  42691. ]
  42692. ))
  42693. characterMakers.push(() => makeCharacter(
  42694. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42695. {
  42696. front: {
  42697. height: math.unit(8 + 5/12, "feet"),
  42698. weight: math.unit(825, "lb"),
  42699. name: "Front",
  42700. image: {
  42701. source: "./media/characters/cobalt-charizard/front.svg",
  42702. extra: 1268/1155,
  42703. bottom: 122/1390
  42704. }
  42705. },
  42706. side: {
  42707. height: math.unit(8 + 5/12, "feet"),
  42708. weight: math.unit(825, "lb"),
  42709. name: "Side",
  42710. image: {
  42711. source: "./media/characters/cobalt-charizard/side.svg",
  42712. extra: 1348/1257,
  42713. bottom: 58/1406
  42714. }
  42715. },
  42716. gMax: {
  42717. height: math.unit(134 + 11/12, "feet"),
  42718. name: "G-Max",
  42719. image: {
  42720. source: "./media/characters/cobalt-charizard/g-max.svg",
  42721. extra: 1835/1541,
  42722. bottom: 151/1986
  42723. }
  42724. },
  42725. },
  42726. [
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(8 + 5/12, "feet"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42736. {
  42737. front: {
  42738. height: math.unit(6 + 3/12, "feet"),
  42739. weight: math.unit(210, "lb"),
  42740. name: "Front",
  42741. image: {
  42742. source: "./media/characters/stella/front.svg",
  42743. extra: 3549/3335,
  42744. bottom: 51/3600
  42745. }
  42746. },
  42747. },
  42748. [
  42749. {
  42750. name: "Normal",
  42751. height: math.unit(6 + 3/12, "feet"),
  42752. default: true
  42753. },
  42754. ]
  42755. ))
  42756. characterMakers.push(() => makeCharacter(
  42757. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42758. {
  42759. front: {
  42760. height: math.unit(5, "feet"),
  42761. weight: math.unit(90, "lb"),
  42762. name: "Front",
  42763. image: {
  42764. source: "./media/characters/riley-bishop/front.svg",
  42765. extra: 1450/1428,
  42766. bottom: 152/1602
  42767. }
  42768. },
  42769. },
  42770. [
  42771. {
  42772. name: "Normal",
  42773. height: math.unit(5, "feet"),
  42774. default: true
  42775. },
  42776. ]
  42777. ))
  42778. characterMakers.push(() => makeCharacter(
  42779. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42780. {
  42781. side: {
  42782. height: math.unit(8 + 2/12, "feet"),
  42783. weight: math.unit(500, "kg"),
  42784. name: "Side",
  42785. image: {
  42786. source: "./media/characters/theo-arcanine/side.svg",
  42787. extra: 1342/1074,
  42788. bottom: 111/1453
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Normal",
  42795. height: math.unit(8 + 2/12, "feet"),
  42796. default: true
  42797. },
  42798. ]
  42799. ))
  42800. characterMakers.push(() => makeCharacter(
  42801. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42802. {
  42803. front: {
  42804. height: math.unit(4, "feet"),
  42805. name: "Front",
  42806. image: {
  42807. source: "./media/characters/kali/front.svg",
  42808. extra: 1921/1357,
  42809. bottom: 70/1991
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Normal",
  42816. height: math.unit(4, "feet"),
  42817. default: true
  42818. },
  42819. {
  42820. name: "Macro",
  42821. height: math.unit(32, "meters")
  42822. },
  42823. {
  42824. name: "Macro+",
  42825. height: math.unit(150, "meters")
  42826. },
  42827. {
  42828. name: "Megamacro",
  42829. height: math.unit(7500, "meters")
  42830. },
  42831. {
  42832. name: "Megamacro+",
  42833. height: math.unit(80, "kilometers")
  42834. },
  42835. ]
  42836. ))
  42837. characterMakers.push(() => makeCharacter(
  42838. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42839. {
  42840. side: {
  42841. height: math.unit(5 + 11/12, "feet"),
  42842. weight: math.unit(236, "lb"),
  42843. name: "Side",
  42844. image: {
  42845. source: "./media/characters/gapp/side.svg",
  42846. extra: 775/340,
  42847. bottom: 58/833
  42848. }
  42849. },
  42850. mouth: {
  42851. height: math.unit(2.98, "feet"),
  42852. name: "Mouth",
  42853. image: {
  42854. source: "./media/characters/gapp/mouth.svg"
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Normal",
  42861. height: math.unit(5 + 1/12, "feet"),
  42862. default: true
  42863. },
  42864. ]
  42865. ))
  42866. characterMakers.push(() => makeCharacter(
  42867. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42868. {
  42869. front: {
  42870. height: math.unit(6, "feet"),
  42871. name: "Front",
  42872. image: {
  42873. source: "./media/characters/persephone/front.svg",
  42874. extra: 1895/1717,
  42875. bottom: 96/1991
  42876. }
  42877. },
  42878. back: {
  42879. height: math.unit(6, "feet"),
  42880. name: "Back",
  42881. image: {
  42882. source: "./media/characters/persephone/back.svg",
  42883. extra: 1868/1679,
  42884. bottom: 26/1894
  42885. }
  42886. },
  42887. casual: {
  42888. height: math.unit(6, "feet"),
  42889. name: "Casual",
  42890. image: {
  42891. source: "./media/characters/persephone/casual.svg",
  42892. extra: 1713/1541,
  42893. bottom: 76/1789
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Human Size",
  42900. height: math.unit(6, "feet")
  42901. },
  42902. {
  42903. name: "Big Steppy",
  42904. height: math.unit(600, "meters"),
  42905. default: true
  42906. },
  42907. {
  42908. name: "Galaxy Brain",
  42909. height: math.unit(1, "zettameter")
  42910. },
  42911. ]
  42912. ))
  42913. characterMakers.push(() => makeCharacter(
  42914. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42915. {
  42916. front: {
  42917. height: math.unit(1.85, "meters"),
  42918. name: "Front",
  42919. image: {
  42920. source: "./media/characters/riley-foxthing/front.svg",
  42921. extra: 1495/1354,
  42922. bottom: 122/1617
  42923. }
  42924. },
  42925. frontAlt: {
  42926. height: math.unit(1.85, "meters"),
  42927. name: "Front (Alt)",
  42928. image: {
  42929. source: "./media/characters/riley-foxthing/front-alt.svg",
  42930. extra: 1572/1389,
  42931. bottom: 116/1688
  42932. }
  42933. },
  42934. },
  42935. [
  42936. {
  42937. name: "Normal Sized",
  42938. height: math.unit(1.85, "meters"),
  42939. default: true
  42940. },
  42941. {
  42942. name: "Quite Sizable",
  42943. height: math.unit(5, "meters")
  42944. },
  42945. {
  42946. name: "Rather Large",
  42947. height: math.unit(20, "meters")
  42948. },
  42949. {
  42950. name: "Macro",
  42951. height: math.unit(450, "meters")
  42952. },
  42953. {
  42954. name: "Giga",
  42955. height: math.unit(5, "km")
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42961. {
  42962. front: {
  42963. height: math.unit(6, "feet"),
  42964. weight: math.unit(200, "lb"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/blizzard/front.svg",
  42968. extra: 1136/990,
  42969. bottom: 136/1272
  42970. }
  42971. },
  42972. back: {
  42973. height: math.unit(6, "feet"),
  42974. weight: math.unit(200, "lb"),
  42975. name: "Back",
  42976. image: {
  42977. source: "./media/characters/blizzard/back.svg",
  42978. extra: 1175/1034,
  42979. bottom: 97/1272
  42980. }
  42981. },
  42982. sitting: {
  42983. height: math.unit(3.725, "feet"),
  42984. weight: math.unit(200, "lb"),
  42985. name: "Sitting",
  42986. image: {
  42987. source: "./media/characters/blizzard/sitting.svg",
  42988. extra: 581/485,
  42989. bottom: 90/671
  42990. }
  42991. },
  42992. frontWizard: {
  42993. height: math.unit(7.9, "feet"),
  42994. weight: math.unit(200, "lb"),
  42995. name: "Front (Wizard)",
  42996. image: {
  42997. source: "./media/characters/blizzard/front-wizard.svg"
  42998. }
  42999. },
  43000. backWizard: {
  43001. height: math.unit(7.9, "feet"),
  43002. weight: math.unit(200, "lb"),
  43003. name: "Back (Wizard)",
  43004. image: {
  43005. source: "./media/characters/blizzard/back-wizard.svg"
  43006. }
  43007. },
  43008. frontNsfw: {
  43009. height: math.unit(6, "feet"),
  43010. weight: math.unit(200, "lb"),
  43011. name: "Front (NSFW)",
  43012. image: {
  43013. source: "./media/characters/blizzard/front-nsfw.svg",
  43014. extra: 1136/990,
  43015. bottom: 136/1272
  43016. }
  43017. },
  43018. backNsfw: {
  43019. height: math.unit(6, "feet"),
  43020. weight: math.unit(200, "lb"),
  43021. name: "Back (NSFW)",
  43022. image: {
  43023. source: "./media/characters/blizzard/back-nsfw.svg",
  43024. extra: 1175/1034,
  43025. bottom: 97/1272
  43026. }
  43027. },
  43028. sittingNsfw: {
  43029. height: math.unit(3.725, "feet"),
  43030. weight: math.unit(200, "lb"),
  43031. name: "Sitting (NSFW)",
  43032. image: {
  43033. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43034. extra: 581/485,
  43035. bottom: 90/671
  43036. }
  43037. },
  43038. wizardFrontNsfw: {
  43039. height: math.unit(7.9, "feet"),
  43040. weight: math.unit(200, "lb"),
  43041. name: "Wizard (Front, NSFW)",
  43042. image: {
  43043. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43044. }
  43045. },
  43046. },
  43047. [
  43048. {
  43049. name: "Normal",
  43050. height: math.unit(6, "feet"),
  43051. default: true
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(5 + 2/12, "feet"),
  43060. name: "Front",
  43061. image: {
  43062. source: "./media/characters/lumi/front.svg",
  43063. extra: 1328/1268,
  43064. bottom: 103/1431
  43065. }
  43066. },
  43067. back: {
  43068. height: math.unit(5 + 2/12, "feet"),
  43069. name: "Back",
  43070. image: {
  43071. source: "./media/characters/lumi/back.svg",
  43072. extra: 1381/1327,
  43073. bottom: 43/1424
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Normal",
  43080. height: math.unit(5 + 2/12, "feet"),
  43081. default: true
  43082. },
  43083. ]
  43084. ))
  43085. characterMakers.push(() => makeCharacter(
  43086. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43087. {
  43088. front: {
  43089. height: math.unit(5 + 9/12, "feet"),
  43090. name: "Front",
  43091. image: {
  43092. source: "./media/characters/aliya-cotton/front.svg",
  43093. extra: 577/564,
  43094. bottom: 29/606
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Normal",
  43101. height: math.unit(5 + 9/12, "feet"),
  43102. default: true
  43103. },
  43104. ]
  43105. ))
  43106. characterMakers.push(() => makeCharacter(
  43107. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43108. {
  43109. front: {
  43110. height: math.unit(2.7, "meters"),
  43111. weight: math.unit(25000, "lb"),
  43112. name: "Front",
  43113. image: {
  43114. source: "./media/characters/noah-luxray/front.svg",
  43115. extra: 1644/825,
  43116. bottom: 339/1983
  43117. }
  43118. },
  43119. side: {
  43120. height: math.unit(2.97, "meters"),
  43121. weight: math.unit(25000, "lb"),
  43122. name: "Side",
  43123. image: {
  43124. source: "./media/characters/noah-luxray/side.svg",
  43125. extra: 1319/650,
  43126. bottom: 163/1482
  43127. }
  43128. },
  43129. dick: {
  43130. height: math.unit(7.4, "feet"),
  43131. weight: math.unit(2500, "lb"),
  43132. name: "Dick",
  43133. image: {
  43134. source: "./media/characters/noah-luxray/dick.svg"
  43135. }
  43136. },
  43137. dickAlt: {
  43138. height: math.unit(10.83, "feet"),
  43139. weight: math.unit(2500, "lb"),
  43140. name: "Dick-alt",
  43141. image: {
  43142. source: "./media/characters/noah-luxray/dick-alt.svg"
  43143. }
  43144. },
  43145. },
  43146. [
  43147. {
  43148. name: "BIG",
  43149. height: math.unit(2.7, "meters"),
  43150. default: true
  43151. },
  43152. ]
  43153. ))
  43154. characterMakers.push(() => makeCharacter(
  43155. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43156. {
  43157. standing: {
  43158. height: math.unit(183, "cm"),
  43159. weight: math.unit(68, "kg"),
  43160. name: "Standing",
  43161. image: {
  43162. source: "./media/characters/arion/standing.svg",
  43163. extra: 1869/1807,
  43164. bottom: 93/1962
  43165. }
  43166. },
  43167. reclining: {
  43168. height: math.unit(70.5, "cm"),
  43169. weight: math.unit(68, "lb"),
  43170. name: "Reclining",
  43171. image: {
  43172. source: "./media/characters/arion/reclining.svg",
  43173. extra: 937/870,
  43174. bottom: 63/1000
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Colossus Size, Low",
  43181. height: math.unit(33, "meters"),
  43182. default: true
  43183. },
  43184. {
  43185. name: "Colossus Size, Mid",
  43186. height: math.unit(52, "meters")
  43187. },
  43188. {
  43189. name: "Colossus Size, High",
  43190. height: math.unit(60, "meters")
  43191. },
  43192. {
  43193. name: "Titan Size, Low",
  43194. height: math.unit(91, "meters"),
  43195. },
  43196. {
  43197. name: "Titan Size, Mid",
  43198. height: math.unit(122, "meters")
  43199. },
  43200. {
  43201. name: "Titan Size, High",
  43202. height: math.unit(162, "meters")
  43203. },
  43204. ]
  43205. ))
  43206. characterMakers.push(() => makeCharacter(
  43207. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43208. {
  43209. front: {
  43210. height: math.unit(53, "meters"),
  43211. name: "Front",
  43212. image: {
  43213. source: "./media/characters/stellar-marbey/front.svg",
  43214. extra: 1913/1805,
  43215. bottom: 92/2005
  43216. }
  43217. },
  43218. back: {
  43219. height: math.unit(53, "meters"),
  43220. name: "Back",
  43221. image: {
  43222. source: "./media/characters/stellar-marbey/back.svg",
  43223. extra: 1960/1851,
  43224. bottom: 28/1988
  43225. }
  43226. },
  43227. mouth: {
  43228. height: math.unit(3.5, "meters"),
  43229. name: "Mouth",
  43230. image: {
  43231. source: "./media/characters/stellar-marbey/mouth.svg"
  43232. }
  43233. },
  43234. },
  43235. [
  43236. {
  43237. name: "Macro",
  43238. height: math.unit(53, "meters"),
  43239. default: true
  43240. },
  43241. ]
  43242. ))
  43243. characterMakers.push(() => makeCharacter(
  43244. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43245. {
  43246. front: {
  43247. height: math.unit(8 + 1/12, "feet"),
  43248. weight: math.unit(233, "lb"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/matsu/front.svg",
  43252. extra: 832/772,
  43253. bottom: 40/872
  43254. }
  43255. },
  43256. back: {
  43257. height: math.unit(8 + 1/12, "feet"),
  43258. weight: math.unit(233, "lb"),
  43259. name: "Back",
  43260. image: {
  43261. source: "./media/characters/matsu/back.svg",
  43262. extra: 839/780,
  43263. bottom: 47/886
  43264. }
  43265. },
  43266. },
  43267. [
  43268. {
  43269. name: "Normal",
  43270. height: math.unit(8 + 1/12, "feet"),
  43271. default: true
  43272. },
  43273. ]
  43274. ))
  43275. characterMakers.push(() => makeCharacter(
  43276. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43277. {
  43278. front: {
  43279. height: math.unit(4, "feet"),
  43280. weight: math.unit(148, "lb"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/thiz/front.svg",
  43284. extra: 1913/1748,
  43285. bottom: 62/1975
  43286. }
  43287. },
  43288. },
  43289. [
  43290. {
  43291. name: "Normal",
  43292. height: math.unit(4, "feet"),
  43293. default: true
  43294. },
  43295. ]
  43296. ))
  43297. characterMakers.push(() => makeCharacter(
  43298. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43299. {
  43300. front: {
  43301. height: math.unit(7 + 6/12, "feet"),
  43302. weight: math.unit(267, "lb"),
  43303. name: "Front",
  43304. image: {
  43305. source: "./media/characters/marcel/front.svg",
  43306. extra: 1221/1096,
  43307. bottom: 76/1297
  43308. }
  43309. },
  43310. },
  43311. [
  43312. {
  43313. name: "Normal",
  43314. height: math.unit(7 + 6/12, "feet"),
  43315. default: true
  43316. },
  43317. ]
  43318. ))
  43319. characterMakers.push(() => makeCharacter(
  43320. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43321. {
  43322. side: {
  43323. height: math.unit(42, "meters"),
  43324. name: "Side",
  43325. image: {
  43326. source: "./media/characters/flake/side.svg",
  43327. extra: 1525/1306,
  43328. bottom: 209/1734
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(42, "meters"),
  43336. default: true
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43342. {
  43343. dressed: {
  43344. height: math.unit(6 + 4/12, "feet"),
  43345. weight: math.unit(520, "lb"),
  43346. name: "Dressed",
  43347. image: {
  43348. source: "./media/characters/someonne/dressed.svg",
  43349. extra: 1020/1010,
  43350. bottom: 178/1198
  43351. }
  43352. },
  43353. undressed: {
  43354. height: math.unit(6 + 4/12, "feet"),
  43355. weight: math.unit(520, "lb"),
  43356. name: "Undressed",
  43357. image: {
  43358. source: "./media/characters/someonne/undressed.svg",
  43359. extra: 1019/1014,
  43360. bottom: 169/1188
  43361. }
  43362. },
  43363. },
  43364. [
  43365. {
  43366. name: "Normal",
  43367. height: math.unit(6 + 4/12, "feet"),
  43368. default: true
  43369. },
  43370. ]
  43371. ))
  43372. characterMakers.push(() => makeCharacter(
  43373. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43374. {
  43375. front: {
  43376. height: math.unit(3, "feet"),
  43377. weight: math.unit(30, "lb"),
  43378. name: "Front",
  43379. image: {
  43380. source: "./media/characters/till/front.svg",
  43381. extra: 892/823,
  43382. bottom: 55/947
  43383. }
  43384. },
  43385. },
  43386. [
  43387. {
  43388. name: "Normal",
  43389. height: math.unit(3, "feet"),
  43390. default: true
  43391. },
  43392. ]
  43393. ))
  43394. characterMakers.push(() => makeCharacter(
  43395. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43396. {
  43397. front: {
  43398. height: math.unit(9 + 8/12, "feet"),
  43399. weight: math.unit(800, "lb"),
  43400. name: "Front",
  43401. image: {
  43402. source: "./media/characters/sydney-heki/front.svg",
  43403. extra: 1360/1300,
  43404. bottom: 22/1382
  43405. }
  43406. },
  43407. back: {
  43408. height: math.unit(9 + 8/12, "feet"),
  43409. weight: math.unit(800, "lb"),
  43410. name: "Back",
  43411. image: {
  43412. source: "./media/characters/sydney-heki/back.svg",
  43413. extra: 1356/1293,
  43414. bottom: 12/1368
  43415. }
  43416. },
  43417. frontDressed: {
  43418. height: math.unit(9 + 8/12, "feet"),
  43419. weight: math.unit(800, "lb"),
  43420. name: "Front-dressed",
  43421. image: {
  43422. source: "./media/characters/sydney-heki/front-dressed.svg",
  43423. extra: 1360/1300,
  43424. bottom: 22/1382
  43425. }
  43426. },
  43427. },
  43428. [
  43429. {
  43430. name: "Normal",
  43431. height: math.unit(9 + 8/12, "feet"),
  43432. default: true
  43433. },
  43434. {
  43435. name: "Macro",
  43436. height: math.unit(500, "feet")
  43437. },
  43438. {
  43439. name: "Megamacro",
  43440. height: math.unit(3.6, "miles")
  43441. },
  43442. ]
  43443. ))
  43444. characterMakers.push(() => makeCharacter(
  43445. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43446. {
  43447. front: {
  43448. height: math.unit(200, "cm"),
  43449. weight: math.unit(250, "lb"),
  43450. name: "Front",
  43451. image: {
  43452. source: "./media/characters/fowler-karlsson/front.svg",
  43453. extra: 897/845,
  43454. bottom: 123/1020
  43455. }
  43456. },
  43457. back: {
  43458. height: math.unit(200, "cm"),
  43459. weight: math.unit(250, "lb"),
  43460. name: "Back",
  43461. image: {
  43462. source: "./media/characters/fowler-karlsson/back.svg",
  43463. extra: 999/944,
  43464. bottom: 26/1025
  43465. }
  43466. },
  43467. dick: {
  43468. height: math.unit(1.92, "feet"),
  43469. weight: math.unit(150, "lb"),
  43470. name: "Dick",
  43471. image: {
  43472. source: "./media/characters/fowler-karlsson/dick.svg"
  43473. }
  43474. },
  43475. },
  43476. [
  43477. {
  43478. name: "Normal",
  43479. height: math.unit(200, "cm"),
  43480. default: true
  43481. },
  43482. {
  43483. name: "Smaller Macro",
  43484. height: math.unit(90, "m")
  43485. },
  43486. {
  43487. name: "Macro",
  43488. height: math.unit(150, "m")
  43489. },
  43490. {
  43491. name: "Bigger Macro",
  43492. height: math.unit(300, "m")
  43493. },
  43494. ]
  43495. ))
  43496. characterMakers.push(() => makeCharacter(
  43497. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43498. {
  43499. side: {
  43500. height: math.unit(8 + 2/12, "feet"),
  43501. weight: math.unit(1, "tonne"),
  43502. name: "Side",
  43503. image: {
  43504. source: "./media/characters/rylide/side.svg",
  43505. extra: 1318/1034,
  43506. bottom: 106/1424
  43507. }
  43508. },
  43509. sitting: {
  43510. height: math.unit(303, "cm"),
  43511. weight: math.unit(1, "tonne"),
  43512. name: "Sitting",
  43513. image: {
  43514. source: "./media/characters/rylide/sitting.svg",
  43515. extra: 1303/1103,
  43516. bottom: 36/1339
  43517. }
  43518. },
  43519. },
  43520. [
  43521. {
  43522. name: "Normal",
  43523. height: math.unit(8 + 2/12, "feet"),
  43524. default: true
  43525. },
  43526. ]
  43527. ))
  43528. characterMakers.push(() => makeCharacter(
  43529. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43530. {
  43531. front: {
  43532. height: math.unit(5 + 10/12, "feet"),
  43533. weight: math.unit(160, "lb"),
  43534. name: "Front",
  43535. image: {
  43536. source: "./media/characters/pudask/front.svg",
  43537. extra: 1616/1590,
  43538. bottom: 161/1777
  43539. }
  43540. },
  43541. },
  43542. [
  43543. {
  43544. name: "Ferret Height",
  43545. height: math.unit(2 + 5/12, "feet")
  43546. },
  43547. {
  43548. name: "Canon Height",
  43549. height: math.unit(5 + 10/12, "feet"),
  43550. default: true
  43551. },
  43552. ]
  43553. ))
  43554. characterMakers.push(() => makeCharacter(
  43555. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43556. {
  43557. front: {
  43558. height: math.unit(3 + 6/12, "feet"),
  43559. weight: math.unit(60, "lb"),
  43560. name: "Front",
  43561. image: {
  43562. source: "./media/characters/ramita/front.svg",
  43563. extra: 1402/1232,
  43564. bottom: 62/1464
  43565. }
  43566. },
  43567. dressed: {
  43568. height: math.unit(3 + 6/12, "feet"),
  43569. weight: math.unit(60, "lb"),
  43570. name: "Dressed",
  43571. image: {
  43572. source: "./media/characters/ramita/dressed.svg",
  43573. extra: 1534/1249,
  43574. bottom: 50/1584
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Normal",
  43581. height: math.unit(3 + 6/12, "feet"),
  43582. default: true
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(8, "feet"),
  43591. name: "Front",
  43592. image: {
  43593. source: "./media/characters/ark/front.svg",
  43594. extra: 772/693,
  43595. bottom: 45/817
  43596. }
  43597. },
  43598. },
  43599. [
  43600. {
  43601. name: "Normal",
  43602. height: math.unit(8, "feet"),
  43603. default: true
  43604. },
  43605. ]
  43606. ))
  43607. characterMakers.push(() => makeCharacter(
  43608. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43609. {
  43610. front: {
  43611. height: math.unit(6, "feet"),
  43612. weight: math.unit(250, "lb"),
  43613. volume: math.unit(5/8, "gallons"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/ludwig-horn/front.svg",
  43617. extra: 1782/1635,
  43618. bottom: 96/1878
  43619. }
  43620. },
  43621. back: {
  43622. height: math.unit(6, "feet"),
  43623. weight: math.unit(250, "lb"),
  43624. volume: math.unit(5/8, "gallons"),
  43625. name: "Back",
  43626. image: {
  43627. source: "./media/characters/ludwig-horn/back.svg",
  43628. extra: 1874/1729,
  43629. bottom: 27/1901
  43630. }
  43631. },
  43632. dick: {
  43633. height: math.unit(1.05, "feet"),
  43634. weight: math.unit(15, "lb"),
  43635. volume: math.unit(5/8, "gallons"),
  43636. name: "Dick",
  43637. image: {
  43638. source: "./media/characters/ludwig-horn/dick.svg"
  43639. }
  43640. },
  43641. },
  43642. [
  43643. {
  43644. name: "Small",
  43645. height: math.unit(6, "feet")
  43646. },
  43647. {
  43648. name: "Typical",
  43649. height: math.unit(12, "feet"),
  43650. default: true
  43651. },
  43652. {
  43653. name: "Building",
  43654. height: math.unit(80, "feet")
  43655. },
  43656. {
  43657. name: "Town",
  43658. height: math.unit(800, "feet")
  43659. },
  43660. {
  43661. name: "Kingdom",
  43662. height: math.unit(80000, "feet")
  43663. },
  43664. {
  43665. name: "Planet",
  43666. height: math.unit(8000000, "feet")
  43667. },
  43668. {
  43669. name: "Universe",
  43670. height: math.unit(8000000000, "feet")
  43671. },
  43672. {
  43673. name: "Transcended",
  43674. height: math.unit(8e27, "feet")
  43675. },
  43676. ]
  43677. ))
  43678. characterMakers.push(() => makeCharacter(
  43679. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43680. {
  43681. front: {
  43682. height: math.unit(5, "feet"),
  43683. weight: math.unit(50, "kg"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/biot-avery/front.svg",
  43687. extra: 1295/1232,
  43688. bottom: 86/1381
  43689. }
  43690. },
  43691. },
  43692. [
  43693. {
  43694. name: "Normal",
  43695. height: math.unit(5, "feet"),
  43696. default: true
  43697. },
  43698. ]
  43699. ))
  43700. characterMakers.push(() => makeCharacter(
  43701. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43702. {
  43703. front: {
  43704. height: math.unit(6, "feet"),
  43705. name: "Front",
  43706. image: {
  43707. source: "./media/characters/kitsune-kiro/front.svg",
  43708. extra: 1270/1158,
  43709. bottom: 42/1312
  43710. }
  43711. },
  43712. frontAlt: {
  43713. height: math.unit(6, "feet"),
  43714. name: "Front-alt",
  43715. image: {
  43716. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43717. extra: 1130/1081,
  43718. bottom: 36/1166
  43719. }
  43720. },
  43721. },
  43722. [
  43723. {
  43724. name: "Smol",
  43725. height: math.unit(3, "feet")
  43726. },
  43727. {
  43728. name: "Normal",
  43729. height: math.unit(6, "feet"),
  43730. default: true
  43731. },
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43736. {
  43737. front: {
  43738. height: math.unit(6, "feet"),
  43739. weight: math.unit(125, "lb"),
  43740. name: "Front",
  43741. image: {
  43742. source: "./media/characters/jack-thatcher/front.svg",
  43743. extra: 1474/1370,
  43744. bottom: 26/1500
  43745. }
  43746. },
  43747. back: {
  43748. height: math.unit(6, "feet"),
  43749. weight: math.unit(125, "lb"),
  43750. name: "Back",
  43751. image: {
  43752. source: "./media/characters/jack-thatcher/back.svg",
  43753. extra: 1489/1384,
  43754. bottom: 18/1507
  43755. }
  43756. },
  43757. },
  43758. [
  43759. {
  43760. name: "Normal",
  43761. height: math.unit(6, "feet"),
  43762. default: true
  43763. },
  43764. {
  43765. name: "Macro",
  43766. height: math.unit(75, "feet")
  43767. },
  43768. {
  43769. name: "Macro-er",
  43770. height: math.unit(250, "feet")
  43771. },
  43772. ]
  43773. ))
  43774. characterMakers.push(() => makeCharacter(
  43775. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43776. {
  43777. front: {
  43778. height: math.unit(7, "feet"),
  43779. weight: math.unit(110, "kg"),
  43780. name: "Front",
  43781. image: {
  43782. source: "./media/characters/max-hyper/front.svg",
  43783. extra: 1969/1881,
  43784. bottom: 49/2018
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Normal",
  43791. height: math.unit(7, "feet"),
  43792. default: true
  43793. },
  43794. ]
  43795. ))
  43796. characterMakers.push(() => makeCharacter(
  43797. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43798. {
  43799. front: {
  43800. height: math.unit(5 + 5/12, "feet"),
  43801. weight: math.unit(160, "lb"),
  43802. name: "Front",
  43803. image: {
  43804. source: "./media/characters/spook/front.svg",
  43805. extra: 794/791,
  43806. bottom: 54/848
  43807. }
  43808. },
  43809. back: {
  43810. height: math.unit(5 + 5/12, "feet"),
  43811. weight: math.unit(160, "lb"),
  43812. name: "Back",
  43813. image: {
  43814. source: "./media/characters/spook/back.svg",
  43815. extra: 812/798,
  43816. bottom: 32/844
  43817. }
  43818. },
  43819. },
  43820. [
  43821. {
  43822. name: "Normal",
  43823. height: math.unit(5 + 5/12, "feet"),
  43824. default: true
  43825. },
  43826. ]
  43827. ))
  43828. characterMakers.push(() => makeCharacter(
  43829. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43830. {
  43831. front: {
  43832. height: math.unit(18, "feet"),
  43833. name: "Front",
  43834. image: {
  43835. source: "./media/characters/xeaduulix/front.svg",
  43836. extra: 1380/1166,
  43837. bottom: 110/1490
  43838. }
  43839. },
  43840. back: {
  43841. height: math.unit(18, "feet"),
  43842. name: "Back",
  43843. image: {
  43844. source: "./media/characters/xeaduulix/back.svg",
  43845. extra: 1592/1170,
  43846. bottom: 128/1720
  43847. }
  43848. },
  43849. frontNsfw: {
  43850. height: math.unit(18, "feet"),
  43851. name: "Front (NSFW)",
  43852. image: {
  43853. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43854. extra: 1380/1166,
  43855. bottom: 110/1490
  43856. }
  43857. },
  43858. backNsfw: {
  43859. height: math.unit(18, "feet"),
  43860. name: "Back (NSFW)",
  43861. image: {
  43862. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43863. extra: 1592/1170,
  43864. bottom: 128/1720
  43865. }
  43866. },
  43867. },
  43868. [
  43869. {
  43870. name: "Normal",
  43871. height: math.unit(18, "feet"),
  43872. default: true
  43873. },
  43874. ]
  43875. ))
  43876. characterMakers.push(() => makeCharacter(
  43877. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43878. {
  43879. spreadWings: {
  43880. height: math.unit(20, "feet"),
  43881. name: "Spread Wings",
  43882. image: {
  43883. source: "./media/characters/fledge/spread-wings.svg",
  43884. extra: 693/635,
  43885. bottom: 26/719
  43886. }
  43887. },
  43888. front: {
  43889. height: math.unit(20, "feet"),
  43890. name: "Front",
  43891. image: {
  43892. source: "./media/characters/fledge/front.svg",
  43893. extra: 684/637,
  43894. bottom: 18/702
  43895. }
  43896. },
  43897. frontAlt: {
  43898. height: math.unit(20, "feet"),
  43899. name: "Front (Alt)",
  43900. image: {
  43901. source: "./media/characters/fledge/front-alt.svg",
  43902. extra: 708/664,
  43903. bottom: 13/721
  43904. }
  43905. },
  43906. back: {
  43907. height: math.unit(20, "feet"),
  43908. name: "Back",
  43909. image: {
  43910. source: "./media/characters/fledge/back.svg",
  43911. extra: 718/634,
  43912. bottom: 22/740
  43913. }
  43914. },
  43915. head: {
  43916. height: math.unit(5.55, "feet"),
  43917. name: "Head",
  43918. image: {
  43919. source: "./media/characters/fledge/head.svg"
  43920. }
  43921. },
  43922. headAlt: {
  43923. height: math.unit(5.1, "feet"),
  43924. name: "Head (Alt)",
  43925. image: {
  43926. source: "./media/characters/fledge/head-alt.svg"
  43927. }
  43928. },
  43929. },
  43930. [
  43931. {
  43932. name: "Small",
  43933. height: math.unit(6 + 2/12, "feet")
  43934. },
  43935. {
  43936. name: "Big",
  43937. height: math.unit(20, "feet"),
  43938. default: true
  43939. },
  43940. {
  43941. name: "Giant",
  43942. height: math.unit(100, "feet")
  43943. },
  43944. {
  43945. name: "Macro",
  43946. height: math.unit(200, "feet")
  43947. },
  43948. ]
  43949. ))
  43950. characterMakers.push(() => makeCharacter(
  43951. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43952. {
  43953. front: {
  43954. height: math.unit(1, "meter"),
  43955. name: "Front",
  43956. image: {
  43957. source: "./media/characters/atlas-morenai/front.svg",
  43958. extra: 1275/1043,
  43959. bottom: 19/1294
  43960. }
  43961. },
  43962. back: {
  43963. height: math.unit(1, "meter"),
  43964. name: "Back",
  43965. image: {
  43966. source: "./media/characters/atlas-morenai/back.svg",
  43967. extra: 1141/1001,
  43968. bottom: 25/1166
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(1, "meter"),
  43976. default: true
  43977. },
  43978. {
  43979. name: "Magic-Infused",
  43980. height: math.unit(5, "meters")
  43981. },
  43982. ]
  43983. ))
  43984. characterMakers.push(() => makeCharacter(
  43985. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43986. {
  43987. front: {
  43988. height: math.unit(5, "meters"),
  43989. name: "Front",
  43990. image: {
  43991. source: "./media/characters/cintia/front.svg",
  43992. extra: 1312/1228,
  43993. bottom: 38/1350
  43994. }
  43995. },
  43996. back: {
  43997. height: math.unit(5, "meters"),
  43998. name: "Back",
  43999. image: {
  44000. source: "./media/characters/cintia/back.svg",
  44001. extra: 1260/1166,
  44002. bottom: 98/1358
  44003. }
  44004. },
  44005. frontDick: {
  44006. height: math.unit(5, "meters"),
  44007. name: "Front (Dick)",
  44008. image: {
  44009. source: "./media/characters/cintia/front-dick.svg",
  44010. extra: 1312/1228,
  44011. bottom: 38/1350
  44012. }
  44013. },
  44014. backDick: {
  44015. height: math.unit(5, "meters"),
  44016. name: "Back (Dick)",
  44017. image: {
  44018. source: "./media/characters/cintia/back-dick.svg",
  44019. extra: 1260/1166,
  44020. bottom: 98/1358
  44021. }
  44022. },
  44023. bust: {
  44024. height: math.unit(1.97, "meters"),
  44025. name: "Bust",
  44026. image: {
  44027. source: "./media/characters/cintia/bust.svg",
  44028. extra: 617/565,
  44029. bottom: 0/617
  44030. }
  44031. },
  44032. },
  44033. [
  44034. {
  44035. name: "Normal",
  44036. height: math.unit(5, "meters"),
  44037. default: true
  44038. },
  44039. ]
  44040. ))
  44041. characterMakers.push(() => makeCharacter(
  44042. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44043. {
  44044. side: {
  44045. height: math.unit(100, "feet"),
  44046. name: "Side",
  44047. image: {
  44048. source: "./media/characters/denora/side.svg",
  44049. extra: 875/803,
  44050. bottom: 9/884
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Standard",
  44057. height: math.unit(100, "feet"),
  44058. default: true
  44059. },
  44060. {
  44061. name: "Grand",
  44062. height: math.unit(1000, "feet")
  44063. },
  44064. {
  44065. name: "Conquering",
  44066. height: math.unit(10000, "feet")
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44072. {
  44073. dressed: {
  44074. height: math.unit(8 + 5/12, "feet"),
  44075. weight: math.unit(700, "lb"),
  44076. name: "Dressed",
  44077. image: {
  44078. source: "./media/characters/kiva/dressed.svg",
  44079. extra: 1102/1055,
  44080. bottom: 60/1162
  44081. }
  44082. },
  44083. nude: {
  44084. height: math.unit(8 + 5/12, "feet"),
  44085. weight: math.unit(700, "lb"),
  44086. name: "Nude",
  44087. image: {
  44088. source: "./media/characters/kiva/nude.svg",
  44089. extra: 1102/1055,
  44090. bottom: 60/1162
  44091. }
  44092. },
  44093. },
  44094. [
  44095. {
  44096. name: "Base Height",
  44097. height: math.unit(8 + 5/12, "feet"),
  44098. default: true
  44099. },
  44100. {
  44101. name: "Macro",
  44102. height: math.unit(100, "feet")
  44103. },
  44104. {
  44105. name: "Max",
  44106. height: math.unit(3280, "feet")
  44107. },
  44108. ]
  44109. ))
  44110. characterMakers.push(() => makeCharacter(
  44111. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44112. {
  44113. front: {
  44114. height: math.unit(6 + 8/12, "feet"),
  44115. weight: math.unit(250, "lb"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/ztragon/front.svg",
  44119. extra: 1825/1684,
  44120. bottom: 98/1923
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(6 + 8/12, "feet"),
  44128. default: true
  44129. },
  44130. {
  44131. name: "Macro",
  44132. height: math.unit(80, "feet")
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44138. {
  44139. front: {
  44140. height: math.unit(10.4, "feet"),
  44141. weight: math.unit(2, "tons"),
  44142. name: "Front",
  44143. image: {
  44144. source: "./media/characters/yesenia/front.svg",
  44145. extra: 1479/1474,
  44146. bottom: 233/1712
  44147. }
  44148. },
  44149. },
  44150. [
  44151. {
  44152. name: "Normal",
  44153. height: math.unit(10.4, "feet"),
  44154. default: true
  44155. },
  44156. ]
  44157. ))
  44158. characterMakers.push(() => makeCharacter(
  44159. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44160. {
  44161. normal: {
  44162. height: math.unit(6 + 1/12, "feet"),
  44163. weight: math.unit(180, "lb"),
  44164. name: "Normal",
  44165. image: {
  44166. source: "./media/characters/leanne-lycheborne/normal.svg",
  44167. extra: 1748/1660,
  44168. bottom: 98/1846
  44169. }
  44170. },
  44171. were: {
  44172. height: math.unit(12, "feet"),
  44173. weight: math.unit(1600, "lb"),
  44174. name: "Were",
  44175. image: {
  44176. source: "./media/characters/leanne-lycheborne/were.svg",
  44177. extra: 1485/1432,
  44178. bottom: 66/1551
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(6 + 1/12, "feet"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44192. {
  44193. side: {
  44194. height: math.unit(13, "feet"),
  44195. name: "Side",
  44196. image: {
  44197. source: "./media/characters/kira-tyler/side.svg",
  44198. extra: 693/393,
  44199. bottom: 58/751
  44200. }
  44201. },
  44202. },
  44203. [
  44204. {
  44205. name: "Normal",
  44206. height: math.unit(13, "feet"),
  44207. default: true
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44213. {
  44214. front: {
  44215. height: math.unit(10.3, "feet"),
  44216. weight: math.unit(150, "lb"),
  44217. name: "Front",
  44218. image: {
  44219. source: "./media/characters/blaze/front.svg",
  44220. extra: 1378/1286,
  44221. bottom: 172/1550
  44222. }
  44223. },
  44224. },
  44225. [
  44226. {
  44227. name: "Normal",
  44228. height: math.unit(10.3, "feet"),
  44229. default: true
  44230. },
  44231. ]
  44232. ))
  44233. characterMakers.push(() => makeCharacter(
  44234. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44235. {
  44236. side: {
  44237. height: math.unit(2, "meters"),
  44238. weight: math.unit(400, "kg"),
  44239. name: "Side",
  44240. image: {
  44241. source: "./media/characters/anu/side.svg",
  44242. extra: 506/394,
  44243. bottom: 18/524
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Humanoid",
  44250. height: math.unit(2, "meters")
  44251. },
  44252. {
  44253. name: "Normal",
  44254. height: math.unit(5, "meters"),
  44255. default: true
  44256. },
  44257. ]
  44258. ))
  44259. characterMakers.push(() => makeCharacter(
  44260. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44261. {
  44262. front: {
  44263. height: math.unit(5 + 5/12, "feet"),
  44264. weight: math.unit(170, "lb"),
  44265. name: "Front",
  44266. image: {
  44267. source: "./media/characters/synx-the-lynx/front.svg",
  44268. extra: 1893/1745,
  44269. bottom: 17/1910
  44270. }
  44271. },
  44272. side: {
  44273. height: math.unit(5 + 5/12, "feet"),
  44274. weight: math.unit(170, "lb"),
  44275. name: "Side",
  44276. image: {
  44277. source: "./media/characters/synx-the-lynx/side.svg",
  44278. extra: 1884/1740,
  44279. bottom: 39/1923
  44280. }
  44281. },
  44282. back: {
  44283. height: math.unit(5 + 5/12, "feet"),
  44284. weight: math.unit(170, "lb"),
  44285. name: "Back",
  44286. image: {
  44287. source: "./media/characters/synx-the-lynx/back.svg",
  44288. extra: 1903/1755,
  44289. bottom: 14/1917
  44290. }
  44291. },
  44292. },
  44293. [
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(5 + 5/12, "feet"),
  44297. default: true
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44303. {
  44304. back: {
  44305. height: math.unit(15, "feet"),
  44306. name: "Back",
  44307. image: {
  44308. source: "./media/characters/nadezda-fex/back.svg",
  44309. extra: 1695/1481,
  44310. bottom: 25/1720
  44311. }
  44312. },
  44313. },
  44314. [
  44315. {
  44316. name: "Normal",
  44317. height: math.unit(15, "feet"),
  44318. default: true
  44319. },
  44320. {
  44321. name: "Macro",
  44322. height: math.unit(2.5, "miles")
  44323. },
  44324. {
  44325. name: "Goddess",
  44326. height: math.unit(2, "multiverses")
  44327. },
  44328. ]
  44329. ))
  44330. characterMakers.push(() => makeCharacter(
  44331. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44332. {
  44333. front: {
  44334. height: math.unit(216, "cm"),
  44335. name: "Front",
  44336. image: {
  44337. source: "./media/characters/lev/front.svg",
  44338. extra: 1728/1670,
  44339. bottom: 82/1810
  44340. }
  44341. },
  44342. back: {
  44343. height: math.unit(216, "cm"),
  44344. name: "Back",
  44345. image: {
  44346. source: "./media/characters/lev/back.svg",
  44347. extra: 1738/1675,
  44348. bottom: 24/1762
  44349. }
  44350. },
  44351. dressed: {
  44352. height: math.unit(216, "cm"),
  44353. name: "Dressed",
  44354. image: {
  44355. source: "./media/characters/lev/dressed.svg",
  44356. extra: 1397/1351,
  44357. bottom: 73/1470
  44358. }
  44359. },
  44360. head: {
  44361. height: math.unit(0.51, "meter"),
  44362. name: "Head",
  44363. image: {
  44364. source: "./media/characters/lev/head.svg"
  44365. }
  44366. },
  44367. },
  44368. [
  44369. {
  44370. name: "Normal",
  44371. height: math.unit(216, "cm"),
  44372. default: true
  44373. },
  44374. {
  44375. name: "Relatively Macro",
  44376. height: math.unit(80, "meters")
  44377. },
  44378. {
  44379. name: "Megamacro",
  44380. height: math.unit(21600, "meters")
  44381. },
  44382. {
  44383. name: "Megamacro+",
  44384. height: math.unit(64800, "meters")
  44385. },
  44386. ]
  44387. ))
  44388. characterMakers.push(() => makeCharacter(
  44389. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44390. {
  44391. front: {
  44392. height: math.unit(2, "meters"),
  44393. weight: math.unit(80, "kg"),
  44394. name: "Front",
  44395. image: {
  44396. source: "./media/characters/moka/front.svg",
  44397. extra: 1337/1255,
  44398. bottom: 58/1395
  44399. }
  44400. },
  44401. },
  44402. [
  44403. {
  44404. name: "Micro",
  44405. height: math.unit(15, "cm")
  44406. },
  44407. {
  44408. name: "Normal",
  44409. height: math.unit(2, "meters"),
  44410. default: true
  44411. },
  44412. {
  44413. name: "Macro",
  44414. height: math.unit(20, "meters"),
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44420. {
  44421. front: {
  44422. height: math.unit(9, "feet"),
  44423. weight: math.unit(240, "lb"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/kuzco/front.svg",
  44427. extra: 1593/1487,
  44428. bottom: 32/1625
  44429. }
  44430. },
  44431. side: {
  44432. height: math.unit(9, "feet"),
  44433. weight: math.unit(240, "lb"),
  44434. name: "Side",
  44435. image: {
  44436. source: "./media/characters/kuzco/side.svg",
  44437. extra: 1575/1485,
  44438. bottom: 30/1605
  44439. }
  44440. },
  44441. back: {
  44442. height: math.unit(9, "feet"),
  44443. weight: math.unit(240, "lb"),
  44444. name: "Back",
  44445. image: {
  44446. source: "./media/characters/kuzco/back.svg",
  44447. extra: 1603/1514,
  44448. bottom: 14/1617
  44449. }
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Normal",
  44455. height: math.unit(9, "feet"),
  44456. default: true
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44462. {
  44463. side: {
  44464. height: math.unit(2, "meters"),
  44465. weight: math.unit(300, "kg"),
  44466. name: "Side",
  44467. image: {
  44468. source: "./media/characters/ceruleus/side.svg",
  44469. extra: 1068/974,
  44470. bottom: 126/1194
  44471. }
  44472. },
  44473. },
  44474. [
  44475. {
  44476. name: "Normal",
  44477. height: math.unit(16, "meters"),
  44478. default: true
  44479. },
  44480. ]
  44481. ))
  44482. characterMakers.push(() => makeCharacter(
  44483. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44484. {
  44485. front: {
  44486. height: math.unit(9, "feet"),
  44487. weight: math.unit(500, "kg"),
  44488. name: "Front",
  44489. image: {
  44490. source: "./media/characters/acouya/front.svg",
  44491. extra: 1660/1473,
  44492. bottom: 28/1688
  44493. }
  44494. },
  44495. },
  44496. [
  44497. {
  44498. name: "Normal",
  44499. height: math.unit(9, "feet"),
  44500. default: true
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44506. {
  44507. front: {
  44508. height: math.unit(5 + 6/12, "feet"),
  44509. weight: math.unit(195, "lb"),
  44510. name: "Front",
  44511. image: {
  44512. source: "./media/characters/vant/front.svg",
  44513. extra: 1396/1320,
  44514. bottom: 20/1416
  44515. }
  44516. },
  44517. back: {
  44518. height: math.unit(5 + 6/12, "feet"),
  44519. weight: math.unit(195, "lb"),
  44520. name: "Back",
  44521. image: {
  44522. source: "./media/characters/vant/back.svg",
  44523. extra: 1396/1320,
  44524. bottom: 20/1416
  44525. }
  44526. },
  44527. maw: {
  44528. height: math.unit(0.75, "feet"),
  44529. name: "Maw",
  44530. image: {
  44531. source: "./media/characters/vant/maw.svg"
  44532. }
  44533. },
  44534. paw: {
  44535. height: math.unit(1.07, "feet"),
  44536. name: "Paw",
  44537. image: {
  44538. source: "./media/characters/vant/paw.svg"
  44539. }
  44540. },
  44541. },
  44542. [
  44543. {
  44544. name: "Micro",
  44545. height: math.unit(0.25, "inches")
  44546. },
  44547. {
  44548. name: "Normal",
  44549. height: math.unit(5 + 6/12, "feet"),
  44550. default: true
  44551. },
  44552. {
  44553. name: "Macro",
  44554. height: math.unit(75, "feet")
  44555. },
  44556. ]
  44557. ))
  44558. characterMakers.push(() => makeCharacter(
  44559. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44560. {
  44561. front: {
  44562. height: math.unit(30, "meters"),
  44563. weight: math.unit(363, "tons"),
  44564. name: "Front",
  44565. image: {
  44566. source: "./media/characters/ahra/front.svg",
  44567. extra: 1914/1814,
  44568. bottom: 46/1960
  44569. }
  44570. },
  44571. },
  44572. [
  44573. {
  44574. name: "Macro",
  44575. height: math.unit(30, "meters"),
  44576. default: true
  44577. },
  44578. ]
  44579. ))
  44580. characterMakers.push(() => makeCharacter(
  44581. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44582. {
  44583. undressed: {
  44584. height: math.unit(2, "m"),
  44585. weight: math.unit(250, "kg"),
  44586. name: "Undressed",
  44587. image: {
  44588. source: "./media/characters/coriander/undressed.svg",
  44589. extra: 1757/1606,
  44590. bottom: 107/1864
  44591. }
  44592. },
  44593. dressed: {
  44594. height: math.unit(2, "m"),
  44595. weight: math.unit(250, "kg"),
  44596. name: "Dressed",
  44597. image: {
  44598. source: "./media/characters/coriander/dressed.svg",
  44599. extra: 1757/1606,
  44600. bottom: 107/1864
  44601. }
  44602. },
  44603. },
  44604. [
  44605. {
  44606. name: "Normal",
  44607. height: math.unit(4, "meters"),
  44608. default: true
  44609. },
  44610. {
  44611. name: "XL",
  44612. height: math.unit(6, "meters")
  44613. },
  44614. {
  44615. name: "XXL",
  44616. height: math.unit(8, "meters")
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44622. {
  44623. front: {
  44624. height: math.unit(6, "feet"),
  44625. name: "Front",
  44626. image: {
  44627. source: "./media/characters/syrinx/front.svg",
  44628. extra: 1557/1259,
  44629. bottom: 171/1728
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Normal",
  44636. height: math.unit(6 + 3/12, "feet"),
  44637. default: true
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44643. {
  44644. front: {
  44645. height: math.unit(11 + 6/12, "feet"),
  44646. weight: math.unit(1.5, "tons"),
  44647. name: "Front",
  44648. image: {
  44649. source: "./media/characters/bor/front.svg",
  44650. extra: 1189/1109,
  44651. bottom: 170/1359
  44652. }
  44653. },
  44654. },
  44655. [
  44656. {
  44657. name: "Normal",
  44658. height: math.unit(11 + 6/12, "feet"),
  44659. default: true
  44660. },
  44661. {
  44662. name: "Macro",
  44663. height: math.unit(32 + 9/12, "feet")
  44664. },
  44665. ]
  44666. ))
  44667. characterMakers.push(() => makeCharacter(
  44668. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44669. {
  44670. anthro: {
  44671. height: math.unit(9, "feet"),
  44672. weight: math.unit(2076, "lb"),
  44673. name: "Anthro",
  44674. image: {
  44675. source: "./media/characters/abacus/anthro.svg",
  44676. extra: 1540/1494,
  44677. bottom: 233/1773
  44678. }
  44679. },
  44680. pigeon: {
  44681. height: math.unit(1, "feet"),
  44682. name: "Pigeon",
  44683. image: {
  44684. source: "./media/characters/abacus/pigeon.svg",
  44685. extra: 528/525,
  44686. bottom: 46/574
  44687. }
  44688. },
  44689. },
  44690. [
  44691. {
  44692. name: "Normal",
  44693. height: math.unit(9, "feet"),
  44694. default: true
  44695. },
  44696. ]
  44697. ))
  44698. characterMakers.push(() => makeCharacter(
  44699. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44700. {
  44701. side: {
  44702. height: math.unit(6, "feet"),
  44703. name: "Side",
  44704. image: {
  44705. source: "./media/characters/delkhan/side.svg",
  44706. extra: 1884/1786,
  44707. bottom: 308/2192
  44708. }
  44709. },
  44710. head: {
  44711. height: math.unit(3.38, "feet"),
  44712. name: "Head",
  44713. image: {
  44714. source: "./media/characters/delkhan/head.svg"
  44715. }
  44716. },
  44717. },
  44718. [
  44719. {
  44720. name: "Normal",
  44721. height: math.unit(72, "feet"),
  44722. default: true
  44723. },
  44724. {
  44725. name: "Giant",
  44726. height: math.unit(172, "feet")
  44727. },
  44728. ]
  44729. ))
  44730. characterMakers.push(() => makeCharacter(
  44731. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44732. {
  44733. standing: {
  44734. height: math.unit(6, "feet"),
  44735. name: "Standing",
  44736. image: {
  44737. source: "./media/characters/euchidat/standing.svg",
  44738. extra: 1612/1553,
  44739. bottom: 116/1728
  44740. }
  44741. },
  44742. leaning: {
  44743. height: math.unit(6, "feet"),
  44744. name: "Leaning",
  44745. image: {
  44746. source: "./media/characters/euchidat/leaning.svg",
  44747. extra: 1719/1674,
  44748. bottom: 27/1746
  44749. }
  44750. },
  44751. },
  44752. [
  44753. {
  44754. name: "Normal",
  44755. height: math.unit(175, "feet"),
  44756. default: true
  44757. },
  44758. {
  44759. name: "Megamacro",
  44760. height: math.unit(190, "miles")
  44761. },
  44762. {
  44763. name: "Gigamacro",
  44764. height: math.unit(190000, "miles")
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44770. {
  44771. front: {
  44772. height: math.unit(6, "feet"),
  44773. weight: math.unit(150, "lb"),
  44774. name: "Front",
  44775. image: {
  44776. source: "./media/characters/rebecca-stack/front.svg",
  44777. extra: 1256/1201,
  44778. bottom: 18/1274
  44779. }
  44780. },
  44781. },
  44782. [
  44783. {
  44784. name: "Normal",
  44785. height: math.unit(5 + 8/12, "feet"),
  44786. default: true
  44787. },
  44788. {
  44789. name: "Demolitionist",
  44790. height: math.unit(200, "feet")
  44791. },
  44792. {
  44793. name: "Out of Control",
  44794. height: math.unit(2, "miles")
  44795. },
  44796. {
  44797. name: "Giga",
  44798. height: math.unit(7200, "miles")
  44799. },
  44800. ]
  44801. ))
  44802. characterMakers.push(() => makeCharacter(
  44803. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44804. {
  44805. front: {
  44806. height: math.unit(6, "feet"),
  44807. weight: math.unit(150, "lb"),
  44808. name: "Front",
  44809. image: {
  44810. source: "./media/characters/jenny-cartwright/front.svg",
  44811. extra: 1384/1376,
  44812. bottom: 58/1442
  44813. }
  44814. },
  44815. },
  44816. [
  44817. {
  44818. name: "Normal",
  44819. height: math.unit(6 + 7/12, "feet"),
  44820. default: true
  44821. },
  44822. {
  44823. name: "Librarian",
  44824. height: math.unit(55, "feet")
  44825. },
  44826. {
  44827. name: "Sightseer",
  44828. height: math.unit(50, "miles")
  44829. },
  44830. {
  44831. name: "Giga",
  44832. height: math.unit(30000, "miles")
  44833. },
  44834. ]
  44835. ))
  44836. characterMakers.push(() => makeCharacter(
  44837. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44838. {
  44839. nude: {
  44840. height: math.unit(8, "feet"),
  44841. weight: math.unit(225, "lb"),
  44842. name: "Nude",
  44843. image: {
  44844. source: "./media/characters/marvy/nude.svg",
  44845. extra: 1900/1683,
  44846. bottom: 89/1989
  44847. }
  44848. },
  44849. dressed: {
  44850. height: math.unit(8, "feet"),
  44851. weight: math.unit(225, "lb"),
  44852. name: "Dressed",
  44853. image: {
  44854. source: "./media/characters/marvy/dressed.svg",
  44855. extra: 1900/1683,
  44856. bottom: 89/1989
  44857. }
  44858. },
  44859. head: {
  44860. height: math.unit(2.85, "feet"),
  44861. name: "Head",
  44862. image: {
  44863. source: "./media/characters/marvy/head.svg"
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Normal",
  44870. height: math.unit(8, "feet"),
  44871. default: true
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44877. {
  44878. front: {
  44879. height: math.unit(8, "feet"),
  44880. weight: math.unit(250, "lb"),
  44881. name: "Front",
  44882. image: {
  44883. source: "./media/characters/leah/front.svg",
  44884. extra: 1257/1149,
  44885. bottom: 109/1366
  44886. }
  44887. },
  44888. },
  44889. [
  44890. {
  44891. name: "Normal",
  44892. height: math.unit(8, "feet"),
  44893. default: true
  44894. },
  44895. {
  44896. name: "Minimacro",
  44897. height: math.unit(40, "feet")
  44898. },
  44899. {
  44900. name: "Macro",
  44901. height: math.unit(124, "feet")
  44902. },
  44903. {
  44904. name: "Megamacro",
  44905. height: math.unit(850, "feet")
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44911. {
  44912. side: {
  44913. height: math.unit(13 + 6/12, "feet"),
  44914. weight: math.unit(3200, "lb"),
  44915. name: "Side",
  44916. image: {
  44917. source: "./media/characters/alvir/side.svg",
  44918. extra: 896/589,
  44919. bottom: 26/922
  44920. }
  44921. },
  44922. },
  44923. [
  44924. {
  44925. name: "Normal",
  44926. height: math.unit(13 + 6/12, "feet"),
  44927. default: true
  44928. },
  44929. ]
  44930. ))
  44931. characterMakers.push(() => makeCharacter(
  44932. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  44933. {
  44934. front: {
  44935. height: math.unit(5 + 4/12, "feet"),
  44936. weight: math.unit(236, "lb"),
  44937. name: "Front",
  44938. image: {
  44939. source: "./media/characters/zaina-khalil/front.svg",
  44940. extra: 1533/1485,
  44941. bottom: 94/1627
  44942. }
  44943. },
  44944. side: {
  44945. height: math.unit(5 + 4/12, "feet"),
  44946. weight: math.unit(236, "lb"),
  44947. name: "Side",
  44948. image: {
  44949. source: "./media/characters/zaina-khalil/side.svg",
  44950. extra: 1537/1498,
  44951. bottom: 66/1603
  44952. }
  44953. },
  44954. back: {
  44955. height: math.unit(5 + 4/12, "feet"),
  44956. weight: math.unit(236, "lb"),
  44957. name: "Back",
  44958. image: {
  44959. source: "./media/characters/zaina-khalil/back.svg",
  44960. extra: 1546/1494,
  44961. bottom: 89/1635
  44962. }
  44963. },
  44964. },
  44965. [
  44966. {
  44967. name: "Normal",
  44968. height: math.unit(5 + 4/12, "feet"),
  44969. default: true
  44970. },
  44971. ]
  44972. ))
  44973. characterMakers.push(() => makeCharacter(
  44974. { name: "Terry", species: ["husky"], tags: ["taur"] },
  44975. {
  44976. side: {
  44977. height: math.unit(12, "feet"),
  44978. weight: math.unit(4000, "lb"),
  44979. name: "Side",
  44980. image: {
  44981. source: "./media/characters/terry/side.svg",
  44982. extra: 1518/1439,
  44983. bottom: 149/1667
  44984. }
  44985. },
  44986. },
  44987. [
  44988. {
  44989. name: "Normal",
  44990. height: math.unit(12, "feet"),
  44991. default: true
  44992. },
  44993. ]
  44994. ))
  44995. characterMakers.push(() => makeCharacter(
  44996. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  44997. {
  44998. front: {
  44999. height: math.unit(12, "feet"),
  45000. weight: math.unit(1500, "lb"),
  45001. name: "Front",
  45002. image: {
  45003. source: "./media/characters/kahea/front.svg",
  45004. extra: 1722/1617,
  45005. bottom: 179/1901
  45006. }
  45007. },
  45008. },
  45009. [
  45010. {
  45011. name: "Normal",
  45012. height: math.unit(12, "feet"),
  45013. default: true
  45014. },
  45015. ]
  45016. ))
  45017. characterMakers.push(() => makeCharacter(
  45018. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45019. {
  45020. demonFront: {
  45021. height: math.unit(36, "feet"),
  45022. name: "Front",
  45023. image: {
  45024. source: "./media/characters/alex-xuria/demon-front.svg",
  45025. extra: 1705/1673,
  45026. bottom: 198/1903
  45027. },
  45028. form: "demon",
  45029. default: true
  45030. },
  45031. demonBack: {
  45032. height: math.unit(36, "feet"),
  45033. name: "Back",
  45034. image: {
  45035. source: "./media/characters/alex-xuria/demon-back.svg",
  45036. extra: 1725/1693,
  45037. bottom: 70/1795
  45038. },
  45039. form: "demon"
  45040. },
  45041. demonHead: {
  45042. height: math.unit(2.14, "meters"),
  45043. name: "Head",
  45044. image: {
  45045. source: "./media/characters/alex-xuria/demon-head.svg"
  45046. },
  45047. form: "demon"
  45048. },
  45049. demonHand: {
  45050. height: math.unit(1.61, "meters"),
  45051. name: "Hand",
  45052. image: {
  45053. source: "./media/characters/alex-xuria/demon-hand.svg"
  45054. },
  45055. form: "demon"
  45056. },
  45057. demonPaw: {
  45058. height: math.unit(1.35, "meters"),
  45059. name: "Paw",
  45060. image: {
  45061. source: "./media/characters/alex-xuria/demon-paw.svg"
  45062. },
  45063. form: "demon"
  45064. },
  45065. demonFoot: {
  45066. height: math.unit(2.2, "meters"),
  45067. name: "Foot",
  45068. image: {
  45069. source: "./media/characters/alex-xuria/demon-foot.svg"
  45070. },
  45071. form: "demon"
  45072. },
  45073. demonCock: {
  45074. height: math.unit(1.74, "meters"),
  45075. name: "Cock",
  45076. image: {
  45077. source: "./media/characters/alex-xuria/demon-cock.svg"
  45078. },
  45079. form: "demon"
  45080. },
  45081. demonTailClosed: {
  45082. height: math.unit(1.47, "meters"),
  45083. name: "Tail (Closed)",
  45084. image: {
  45085. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45086. },
  45087. form: "demon"
  45088. },
  45089. demonTailOpen: {
  45090. height: math.unit(2.85, "meters"),
  45091. name: "Tail (Open)",
  45092. image: {
  45093. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45094. },
  45095. form: "demon"
  45096. },
  45097. incubusFront: {
  45098. height: math.unit(12, "feet"),
  45099. name: "Front",
  45100. image: {
  45101. source: "./media/characters/alex-xuria/incubus-front.svg",
  45102. extra: 1754/1677,
  45103. bottom: 125/1879
  45104. },
  45105. form: "incubus",
  45106. default: true
  45107. },
  45108. incubusBack: {
  45109. height: math.unit(12, "feet"),
  45110. name: "Back",
  45111. image: {
  45112. source: "./media/characters/alex-xuria/incubus-back.svg",
  45113. extra: 1702/1647,
  45114. bottom: 30/1732
  45115. },
  45116. form: "incubus"
  45117. },
  45118. incubusHead: {
  45119. height: math.unit(3.45, "feet"),
  45120. name: "Head",
  45121. image: {
  45122. source: "./media/characters/alex-xuria/incubus-head.svg"
  45123. },
  45124. form: "incubus"
  45125. },
  45126. rabbitFront: {
  45127. height: math.unit(6, "feet"),
  45128. name: "Front",
  45129. image: {
  45130. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45131. extra: 1369/1349,
  45132. bottom: 45/1414
  45133. },
  45134. form: "rabbit",
  45135. default: true
  45136. },
  45137. rabbitSide: {
  45138. height: math.unit(6, "feet"),
  45139. name: "Side",
  45140. image: {
  45141. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45142. extra: 1370/1356,
  45143. bottom: 37/1407
  45144. },
  45145. form: "rabbit"
  45146. },
  45147. rabbitBack: {
  45148. height: math.unit(6, "feet"),
  45149. name: "Back",
  45150. image: {
  45151. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45152. extra: 1375/1358,
  45153. bottom: 43/1418
  45154. },
  45155. form: "rabbit"
  45156. },
  45157. },
  45158. [
  45159. {
  45160. name: "Normal",
  45161. height: math.unit(6, "feet"),
  45162. default: true,
  45163. form: "rabbit"
  45164. },
  45165. {
  45166. name: "Incubus",
  45167. height: math.unit(12, "feet"),
  45168. default: true,
  45169. form: "incubus"
  45170. },
  45171. {
  45172. name: "Demon",
  45173. height: math.unit(36, "feet"),
  45174. default: true,
  45175. form: "demon"
  45176. }
  45177. ],
  45178. {
  45179. "demon": {
  45180. name: "Demon",
  45181. default: true
  45182. },
  45183. "incubus": {
  45184. name: "Incubus",
  45185. },
  45186. "rabbit": {
  45187. name: "Rabbit"
  45188. }
  45189. }
  45190. ))
  45191. characterMakers.push(() => makeCharacter(
  45192. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45193. {
  45194. front: {
  45195. height: math.unit(7 + 5/12, "feet"),
  45196. weight: math.unit(510, "lb"),
  45197. name: "Front",
  45198. image: {
  45199. source: "./media/characters/syrup/front.svg",
  45200. extra: 932/916,
  45201. bottom: 26/958
  45202. }
  45203. },
  45204. },
  45205. [
  45206. {
  45207. name: "Normal",
  45208. height: math.unit(7 + 5/12, "feet"),
  45209. default: true
  45210. },
  45211. {
  45212. name: "Big",
  45213. height: math.unit(50, "feet")
  45214. },
  45215. {
  45216. name: "Macro",
  45217. height: math.unit(300, "feet")
  45218. },
  45219. {
  45220. name: "Megamacro",
  45221. height: math.unit(1, "mile")
  45222. },
  45223. ]
  45224. ))
  45225. //characters
  45226. function makeCharacters() {
  45227. const results = [];
  45228. characterMakers.forEach(character => {
  45229. results.push(character());
  45230. });
  45231. return results;
  45232. }