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.
 
 
 

49467 lines
1.2 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: ["leporidae"]
  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. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. }
  1908. //species
  1909. function getSpeciesInfo(speciesList) {
  1910. let result = new Set();
  1911. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1912. result.add(entry)
  1913. });
  1914. return Array.from(result);
  1915. };
  1916. function getSpeciesInfoHelper(species) {
  1917. if (!speciesData[species]) {
  1918. console.warn(species + " doesn't exist");
  1919. return [];
  1920. }
  1921. if (speciesData[species].parents) {
  1922. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1923. } else {
  1924. return [species];
  1925. }
  1926. }
  1927. characterMakers.push(() => makeCharacter(
  1928. {
  1929. name: "Fen",
  1930. species: ["crux"],
  1931. description: {
  1932. title: "Bio",
  1933. text: "Very furry. Sheds on everything."
  1934. },
  1935. tags: [
  1936. "anthro",
  1937. "goo"
  1938. ]
  1939. },
  1940. {
  1941. front: {
  1942. height: math.unit(12, "feet"),
  1943. weight: math.unit(2400, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/fen/front.svg",
  1947. extra: 1804/1562,
  1948. bottom: 205/2009
  1949. }
  1950. },
  1951. diving: {
  1952. height: math.unit(4.9, "meters"),
  1953. weight: math.unit(2400, "lb"),
  1954. name: "Diving",
  1955. image: {
  1956. source: "./media/characters/fen/diving.svg"
  1957. }
  1958. },
  1959. goo: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(3600, "lb"),
  1962. volume: math.unit(1000, "liters"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. extra: 1307/1071,
  1968. bottom: 134/1441
  1969. }
  1970. },
  1971. maw: {
  1972. height: math.unit(5.03, "feet"),
  1973. name: "Maw",
  1974. image: {
  1975. source: "./media/characters/fen/maw.svg"
  1976. }
  1977. },
  1978. gooCeiling: {
  1979. height: math.unit(6.6, "feet"),
  1980. weight: math.unit(3000, "lb"),
  1981. volume: math.unit(1000, "liters"),
  1982. capacity: math.unit(6, "people"),
  1983. name: "Goo (Ceiling)",
  1984. image: {
  1985. source: "./media/characters/fen/goo-ceiling.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(12, "feet"),
  1990. weight: math.unit(2400, "lb"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/fen/back.svg",
  1994. },
  1995. info: {
  1996. description: {
  1997. mode: "append",
  1998. text: "\n\nHe is not currently looking at you."
  1999. }
  2000. }
  2001. },
  2002. full: {
  2003. height: math.unit(1.6, "meter"),
  2004. weight: math.unit(3200, "lb"),
  2005. name: "Full",
  2006. image: {
  2007. source: "./media/characters/fen/full.svg",
  2008. extra: 1133/859,
  2009. bottom: 145/1278
  2010. },
  2011. info: {
  2012. description: {
  2013. mode: "append",
  2014. text: "\n\nMunch."
  2015. }
  2016. }
  2017. },
  2018. gooLounging: {
  2019. height: math.unit(4.53, "feet"),
  2020. weight: math.unit(3000, "lb"),
  2021. capacity: math.unit(6, "people"),
  2022. name: "Goo (Lounging)",
  2023. image: {
  2024. source: "./media/characters/fen/goo-lounging.svg",
  2025. bottom: 116 / 613
  2026. }
  2027. },
  2028. lounging: {
  2029. height: math.unit(10.52, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Lounging",
  2032. image: {
  2033. source: "./media/characters/fen/lounging.svg"
  2034. }
  2035. },
  2036. },
  2037. [
  2038. {
  2039. name: "Small",
  2040. height: math.unit(2.2428, "meter")
  2041. },
  2042. {
  2043. name: "Normal",
  2044. height: math.unit(12, "feet"),
  2045. default: true,
  2046. },
  2047. {
  2048. name: "Big",
  2049. height: math.unit(20, "feet")
  2050. },
  2051. {
  2052. name: "Minimacro",
  2053. height: math.unit(40, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(100, "feet"),
  2064. info: {
  2065. description: {
  2066. mode: "append",
  2067. text: "\n\nTOO DAMN BIG"
  2068. }
  2069. }
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(2, "miles")
  2074. },
  2075. {
  2076. name: "Gigamacro",
  2077. height: math.unit(10, "earths")
  2078. },
  2079. ]
  2080. ))
  2081. characterMakers.push(() => makeCharacter(
  2082. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2083. {
  2084. front: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front.svg",
  2090. bottom: 0.01,
  2091. extra: 2154 / 2081
  2092. }
  2093. },
  2094. frontAlt: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Front (alt)",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2100. }
  2101. },
  2102. back: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Back",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/back.svg"
  2108. }
  2109. },
  2110. kneeling: {
  2111. height: math.unit(125, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Kneeling",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2116. extra: 1033 / 977,
  2117. bottom: 23.7 / 1057
  2118. }
  2119. },
  2120. maw: {
  2121. height: math.unit(183 / 5, "cm"),
  2122. name: "Maw",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/maw.svg"
  2125. }
  2126. },
  2127. mawcloseup: {
  2128. height: math.unit(183 / 5 * 0.41, "cm"),
  2129. name: "Maw (Closeup)",
  2130. image: {
  2131. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2132. }
  2133. },
  2134. paws: {
  2135. height: math.unit(1.17, "feet"),
  2136. name: "Paws",
  2137. image: {
  2138. source: "./media/characters/sofia-fluttertail/paws.svg",
  2139. extra: 851 / 851,
  2140. bottom: 17 / 868
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.83, "meter")
  2148. },
  2149. {
  2150. name: "Size Thief",
  2151. height: math.unit(18, "feet")
  2152. },
  2153. {
  2154. name: "50 Foot Collie",
  2155. height: math.unit(50, "feet")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(96, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Megamerger",
  2164. height: math.unit(650, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/march/front.svg",
  2177. extra: 1992/1851,
  2178. bottom: 39/2031
  2179. }
  2180. },
  2181. foot: {
  2182. height: math.unit(0.9, "feet"),
  2183. name: "Foot",
  2184. image: {
  2185. source: "./media/characters/march/foot.svg"
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7.9, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(220, "meters")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.98, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(15963, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2980000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(250, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(60, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/noir/front.svg",
  2226. extra: 1,
  2227. bottom: 0.032
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(6.6, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(500, "feet")
  2239. },
  2240. {
  2241. name: "Megamacro",
  2242. height: math.unit(2.5, "km"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(22500, "km")
  2248. },
  2249. {
  2250. name: "Teramacro",
  2251. height: math.unit(2500000000, "km")
  2252. },
  2253. {
  2254. name: "Examacro",
  2255. height: math.unit(200, "parsecs")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/okuri/front.svg",
  2268. extra: 739/665,
  2269. bottom: 39/778
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/okuri/back.svg",
  2278. extra: 734/653,
  2279. bottom: 13/747
  2280. }
  2281. },
  2282. sitting: {
  2283. height: math.unit(2.95, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Sitting",
  2286. image: {
  2287. source: "./media/characters/okuri/sitting.svg",
  2288. extra: 370/318,
  2289. bottom: 99/469
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Smallest",
  2296. height: math.unit(5 + 2/12, "feet")
  2297. },
  2298. {
  2299. name: "Smaller",
  2300. height: math.unit(300, "feet")
  2301. },
  2302. {
  2303. name: "Small",
  2304. height: math.unit(1000, "feet")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(1, "mile")
  2309. },
  2310. {
  2311. name: "Mega Macro (Small)",
  2312. height: math.unit(20, "km")
  2313. },
  2314. {
  2315. name: "Mega Macro (Large)",
  2316. height: math.unit(600, "km")
  2317. },
  2318. {
  2319. name: "Giga Macro",
  2320. height: math.unit(10000, "km")
  2321. },
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(577560, "km"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Large",
  2329. height: math.unit(4, "galaxies")
  2330. },
  2331. {
  2332. name: "Largest",
  2333. height: math.unit(15, "multiverses")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/manny/front.svg",
  2346. extra: 1,
  2347. bottom: 0.06
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/manny/back.svg",
  2356. extra: 1,
  2357. bottom: 0.014
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet"),
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(78, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "meters")
  2374. },
  2375. {
  2376. name: "Macro++",
  2377. height: math.unit(2400, "meters")
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(5167, "meters")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(41769, "miles")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/adake/front-1.svg"
  2398. }
  2399. },
  2400. frontAlt: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front (Alt)",
  2404. image: {
  2405. source: "./media/characters/adake/front-2.svg",
  2406. extra: 1,
  2407. bottom: 0.01
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/adake/back.svg",
  2416. }
  2417. },
  2418. kneel: {
  2419. height: math.unit(5.385, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Kneeling",
  2422. image: {
  2423. source: "./media/characters/adake/kneel.svg",
  2424. bottom: 0.052
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(1.65, "meters"),
  2461. weight: math.unit(50, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/elijah/front.svg",
  2465. extra: 858 / 830,
  2466. bottom: 95.5 / 953.8559
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(1.65, "meters"),
  2471. weight: math.unit(50, "kg"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/elijah/back.svg",
  2475. extra: 895 / 850,
  2476. bottom: 5.3 / 897.956
  2477. }
  2478. },
  2479. frontNsfw: {
  2480. height: math.unit(1.65, "meters"),
  2481. weight: math.unit(50, "kg"),
  2482. name: "Front (NSFW)",
  2483. image: {
  2484. source: "./media/characters/elijah/front-nsfw.svg",
  2485. extra: 858 / 830,
  2486. bottom: 95.5 / 953.8559
  2487. }
  2488. },
  2489. backNsfw: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Back (NSFW)",
  2493. image: {
  2494. source: "./media/characters/elijah/back-nsfw.svg",
  2495. extra: 895 / 850,
  2496. bottom: 5.3 / 897.956
  2497. }
  2498. },
  2499. dick: {
  2500. height: math.unit(1, "feet"),
  2501. name: "Dick",
  2502. image: {
  2503. source: "./media/characters/elijah/dick.svg"
  2504. }
  2505. },
  2506. beakOpen: {
  2507. height: math.unit(1.25, "feet"),
  2508. name: "Beak (Open)",
  2509. image: {
  2510. source: "./media/characters/elijah/beak-open.svg"
  2511. }
  2512. },
  2513. beakShut: {
  2514. height: math.unit(1.25, "feet"),
  2515. name: "Beak (Shut)",
  2516. image: {
  2517. source: "./media/characters/elijah/beak-shut.svg"
  2518. }
  2519. },
  2520. footFlexing: {
  2521. height: math.unit(1.61, "feet"),
  2522. name: "Foot (Flexing)",
  2523. image: {
  2524. source: "./media/characters/elijah/foot-flexing.svg"
  2525. }
  2526. },
  2527. footStepping: {
  2528. height: math.unit(1.44, "feet"),
  2529. name: "Foot (Stepping)",
  2530. image: {
  2531. source: "./media/characters/elijah/foot-stepping.svg"
  2532. }
  2533. },
  2534. plantigradeLeg: {
  2535. height: math.unit(2.34, "feet"),
  2536. name: "Plantigrade Leg",
  2537. image: {
  2538. source: "./media/characters/elijah/plantigrade-leg.svg"
  2539. }
  2540. },
  2541. plantigradeFootLeft: {
  2542. height: math.unit(0.9, "feet"),
  2543. name: "Plantigrade Foot (Left)",
  2544. image: {
  2545. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2546. }
  2547. },
  2548. plantigradeFootRight: {
  2549. height: math.unit(0.9, "feet"),
  2550. name: "Plantigrade Foot (Right)",
  2551. image: {
  2552. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(1.65, "meters")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(55, "meters"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(105, "meters")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(7 + 2/12, "feet"),
  2577. weight: math.unit(320, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rai/front.svg",
  2581. extra: 1802/1696,
  2582. bottom: 68/1870
  2583. }
  2584. },
  2585. frontDressed: {
  2586. height: math.unit(7 + 2/12, "feet"),
  2587. weight: math.unit(320, "kg"),
  2588. name: "Front (Dressed)",
  2589. image: {
  2590. source: "./media/characters/rai/front-dressed.svg",
  2591. extra: 1802/1696,
  2592. bottom: 68/1870
  2593. }
  2594. },
  2595. side: {
  2596. height: math.unit(7 + 2/12, "feet"),
  2597. weight: math.unit(320, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/rai/side.svg",
  2601. extra: 1789/1710,
  2602. bottom: 115/1904
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rai/back.svg",
  2611. extra: 1770/1707,
  2612. bottom: 28/1798
  2613. }
  2614. },
  2615. feral: {
  2616. height: math.unit(9.5, "feet"),
  2617. weight: math.unit(640, "kg"),
  2618. name: "Feral",
  2619. image: {
  2620. source: "./media/characters/rai/feral.svg",
  2621. extra: 945/553,
  2622. bottom: 176/1121
  2623. }
  2624. },
  2625. dragon: {
  2626. height: math.unit(23, "feet"),
  2627. weight: math.unit(50000, "lb"),
  2628. name: "Dragon",
  2629. image: {
  2630. source: "./media/characters/rai/dragon.svg",
  2631. extra: 2498 / 2030,
  2632. bottom: 85.2 / 2584
  2633. }
  2634. },
  2635. maw: {
  2636. height: math.unit(1.69, "feet"),
  2637. name: "Maw",
  2638. image: {
  2639. source: "./media/characters/rai/maw.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(7 + 2/12, "feet")
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(11, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(302, "feet"),
  2655. default: true
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2661. {
  2662. frontDressed: {
  2663. height: math.unit(216, "feet"),
  2664. weight: math.unit(7000000, "lb"),
  2665. name: "Front (Dressed)",
  2666. image: {
  2667. source: "./media/characters/jazzy/front-dressed.svg",
  2668. extra: 2738 / 2651,
  2669. bottom: 41.8 / 2786
  2670. }
  2671. },
  2672. backDressed: {
  2673. height: math.unit(216, "feet"),
  2674. weight: math.unit(7000000, "lb"),
  2675. name: "Back (Dressed)",
  2676. image: {
  2677. source: "./media/characters/jazzy/back-dressed.svg",
  2678. extra: 2775 / 2673,
  2679. bottom: 36.8 / 2817
  2680. }
  2681. },
  2682. front: {
  2683. height: math.unit(216, "feet"),
  2684. weight: math.unit(7000000, "lb"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/jazzy/front.svg",
  2688. extra: 2738 / 2651,
  2689. bottom: 41.8 / 2786
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/jazzy/back.svg",
  2698. extra: 2775 / 2673,
  2699. bottom: 36.8 / 2817
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(20, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/jazzy/maw.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(27.5, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/jazzy/paws.svg"
  2714. }
  2715. },
  2716. eye: {
  2717. height: math.unit(4.4, "feet"),
  2718. name: "Eye",
  2719. image: {
  2720. source: "./media/characters/jazzy/eye.svg"
  2721. }
  2722. },
  2723. droneOffense: {
  2724. height: math.unit(9.5, "inches"),
  2725. name: "Drone (Offense)",
  2726. image: {
  2727. source: "./media/characters/jazzy/drone-offense.svg"
  2728. }
  2729. },
  2730. droneRecon: {
  2731. height: math.unit(9.5, "inches"),
  2732. name: "Drone (Recon)",
  2733. image: {
  2734. source: "./media/characters/jazzy/drone-recon.svg"
  2735. }
  2736. },
  2737. droneDefense: {
  2738. height: math.unit(9.5, "inches"),
  2739. name: "Drone (Defense)",
  2740. image: {
  2741. source: "./media/characters/jazzy/drone-defense.svg"
  2742. }
  2743. },
  2744. },
  2745. [
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(216, "feet"),
  2749. default: true
  2750. },
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2755. {
  2756. front: {
  2757. height: math.unit(9 + 6/12, "feet"),
  2758. weight: math.unit(700, "lb"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/flamm/front.svg",
  2762. extra: 1751/1632,
  2763. bottom: 46/1797
  2764. }
  2765. },
  2766. buff: {
  2767. height: math.unit(9 + 6/12, "feet"),
  2768. weight: math.unit(950, "lb"),
  2769. name: "Buff",
  2770. image: {
  2771. source: "./media/characters/flamm/buff.svg",
  2772. extra: 3018/2874,
  2773. bottom: 221/3239
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(9.5, "feet")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(200, "feet"),
  2785. default: true
  2786. },
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(5 + 3/12, "feet"),
  2794. weight: math.unit(60, "kg"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/zephiro/front.svg",
  2798. extra: 2309 / 2162,
  2799. bottom: 0.069
  2800. }
  2801. },
  2802. side: {
  2803. height: math.unit(5 + 3/12, "feet"),
  2804. weight: math.unit(60, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/zephiro/side.svg",
  2808. extra: 2403 / 2279,
  2809. bottom: 0.015
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(5 + 3/12, "feet"),
  2814. weight: math.unit(60, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/zephiro/back.svg",
  2818. extra: 2373 / 2244,
  2819. bottom: 0.013
  2820. }
  2821. },
  2822. hand: {
  2823. height: math.unit(0.68, "feet"),
  2824. name: "Hand",
  2825. image: {
  2826. source: "./media/characters/zephiro/hand.svg"
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/zephiro/paw.svg"
  2834. }
  2835. },
  2836. beans: {
  2837. height: math.unit(0.93, "feet"),
  2838. name: "Beans",
  2839. image: {
  2840. source: "./media/characters/zephiro/beans.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Micro",
  2847. height: math.unit(3, "inches")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 3 / 12, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(118, "feet")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5, "feet"),
  2865. weight: math.unit(90, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/fory/front.svg",
  2869. extra: 2862 / 2674,
  2870. bottom: 180 / 3043.8
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(5, "feet"),
  2875. weight: math.unit(90, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/fory/back.svg",
  2879. extra: 2962 / 2791,
  2880. bottom: 106 / 3071.8
  2881. }
  2882. },
  2883. foot: {
  2884. height: math.unit(2.14, "feet"),
  2885. name: "Foot",
  2886. image: {
  2887. source: "./media/characters/fory/foot.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5, "feet")
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(50, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(10, "miles")
  2904. },
  2905. {
  2906. name: "Gigamacro",
  2907. height: math.unit(5, "earths")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(7, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kurrikage/front.svg",
  2920. extra: 1845/1733,
  2921. bottom: 119/1964
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(7, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kurrikage/back.svg",
  2930. extra: 1790/1677,
  2931. bottom: 61/1851
  2932. }
  2933. },
  2934. dressed: {
  2935. height: math.unit(7, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Dressed",
  2938. image: {
  2939. source: "./media/characters/kurrikage/dressed.svg",
  2940. extra: 1845/1733,
  2941. bottom: 119/1964
  2942. }
  2943. },
  2944. foot: {
  2945. height: math.unit(1.5, "feet"),
  2946. name: "Foot",
  2947. image: {
  2948. source: "./media/characters/kurrikage/foot.svg"
  2949. }
  2950. },
  2951. staff: {
  2952. height: math.unit(6.7, "feet"),
  2953. name: "Staff",
  2954. image: {
  2955. source: "./media/characters/kurrikage/staff.svg"
  2956. }
  2957. },
  2958. peek: {
  2959. height: math.unit(1.05, "feet"),
  2960. name: "Peeking",
  2961. image: {
  2962. source: "./media/characters/kurrikage/peek.svg",
  2963. bottom: 0.08
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(12, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Big",
  2975. height: math.unit(20, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(500, "feet")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(20, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/shingo/front.svg",
  2996. extra: 1900/1825,
  2997. bottom: 82/1982
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/shingo/side.svg",
  3006. extra: 1930/1865,
  3007. bottom: 16/1946
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/shingo/back.svg",
  3016. extra: 1922/1852,
  3017. bottom: 16/1938
  3018. }
  3019. },
  3020. frontDressed: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(150, "lb"),
  3023. name: "Front-dressed",
  3024. image: {
  3025. source: "./media/characters/shingo/front-dressed.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. paw: {
  3031. height: math.unit(1.29, "feet"),
  3032. name: "Paw",
  3033. image: {
  3034. source: "./media/characters/shingo/paw.svg"
  3035. }
  3036. },
  3037. hand: {
  3038. height: math.unit(1.07, "feet"),
  3039. name: "Hand",
  3040. image: {
  3041. source: "./media/characters/shingo/hand.svg"
  3042. }
  3043. },
  3044. frontAlt: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Alt)",
  3048. image: {
  3049. source: "./media/characters/shingo/front-alt.svg",
  3050. extra: 3511 / 3338,
  3051. bottom: 0.005
  3052. }
  3053. },
  3054. frontAlt2: {
  3055. height: math.unit(6, "feet"),
  3056. weight: math.unit(75, "kg"),
  3057. name: "Front (Alt 2)",
  3058. image: {
  3059. source: "./media/characters/shingo/front-alt-2.svg",
  3060. extra: 706/681,
  3061. bottom: 11/717
  3062. }
  3063. },
  3064. pawAlt: {
  3065. height: math.unit(1, "feet"),
  3066. name: "Paw (Alt)",
  3067. image: {
  3068. source: "./media/characters/shingo/paw-alt.svg"
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(6, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(108, "feet")
  3085. },
  3086. {
  3087. name: "Macro+",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3094. {
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/aigey/side.svg"
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(200, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(100, "miles")
  3113. },
  3114. ]
  3115. )
  3116. )
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(5 + 5 / 12, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/natasha/front.svg",
  3126. extra: 859 / 824,
  3127. bottom: 23 / 879.6
  3128. }
  3129. },
  3130. frontNsfw: {
  3131. height: math.unit(5 + 5 / 12, "feet"),
  3132. weight: math.unit(75, "kg"),
  3133. name: "Front (NSFW)",
  3134. image: {
  3135. source: "./media/characters/natasha/front-nsfw.svg",
  3136. extra: 859 / 824,
  3137. bottom: 23 / 879.6
  3138. }
  3139. },
  3140. frontErect: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front (Erect)",
  3144. image: {
  3145. source: "./media/characters/natasha/front-erect.svg",
  3146. extra: 859 / 824,
  3147. bottom: 23 / 879.6
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/natasha/back.svg",
  3156. extra: 887.9 / 852.6,
  3157. bottom: 9.7 / 896.4
  3158. }
  3159. },
  3160. backAlt: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back (Alt)",
  3164. image: {
  3165. source: "./media/characters/natasha/back-alt.svg",
  3166. extra: 1236.7 / 1192,
  3167. bottom: 22.3 / 1258.2
  3168. }
  3169. },
  3170. dick: {
  3171. height: math.unit(1.772, "feet"),
  3172. name: "Dick",
  3173. image: {
  3174. source: "./media/characters/natasha/dick.svg"
  3175. }
  3176. },
  3177. paw: {
  3178. height: math.unit(0.250, "meters"),
  3179. name: "Paw",
  3180. image: {
  3181. source: "./media/characters/natasha/paw.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 5 / 12, "feet")
  3189. },
  3190. {
  3191. name: "Large",
  3192. height: math.unit(12, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(100, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(260, "feet")
  3202. },
  3203. {
  3204. name: "Macro++",
  3205. height: math.unit(1, "mile")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/malik/front.svg"
  3218. }
  3219. },
  3220. side: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/malik/side.svg",
  3226. extra: 1.1539
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(75, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/malik/back.svg"
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(156, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1188, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/sefer/front.svg",
  3259. extra: 848 / 659,
  3260. bottom: 28.3 / 876.442
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/sefer/back.svg",
  3269. extra: 864 / 695,
  3270. bottom: 10 / 871
  3271. }
  3272. },
  3273. frontDressed: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/sefer/front-dressed.svg",
  3279. extra: 839 / 653,
  3280. bottom: 37.6 / 878
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(6, "feet"),
  3288. default: true
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3294. {
  3295. body: {
  3296. height: math.unit(2.2428, "meter"),
  3297. weight: math.unit(124.738, "kg"),
  3298. name: "Body",
  3299. image: {
  3300. extra: 1225 / 1050,
  3301. source: "./media/characters/north/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Micro",
  3308. height: math.unit(4, "inches")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(63, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(101, "miles"),
  3317. default: true
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3323. {
  3324. angled: {
  3325. height: math.unit(4, "meter"),
  3326. weight: math.unit(150, "kg"),
  3327. name: "Angled",
  3328. image: {
  3329. source: "./media/characters/talan/angled-sfw.svg",
  3330. bottom: 29 / 3734
  3331. }
  3332. },
  3333. angledNsfw: {
  3334. height: math.unit(4, "meter"),
  3335. weight: math.unit(150, "kg"),
  3336. name: "Angled (NSFW)",
  3337. image: {
  3338. source: "./media/characters/talan/angled-nsfw.svg",
  3339. bottom: 29 / 3734
  3340. }
  3341. },
  3342. frontNsfw: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Front (NSFW)",
  3346. image: {
  3347. source: "./media/characters/talan/front-nsfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. sideNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Side (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/side-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/talan/back.svg"
  3366. }
  3367. },
  3368. dickBottom: {
  3369. height: math.unit(0.621, "meter"),
  3370. name: "Dick (Bottom)",
  3371. image: {
  3372. source: "./media/characters/talan/dick-bottom.svg"
  3373. }
  3374. },
  3375. dickTop: {
  3376. height: math.unit(0.621, "meter"),
  3377. name: "Dick (Top)",
  3378. image: {
  3379. source: "./media/characters/talan/dick-top.svg"
  3380. }
  3381. },
  3382. dickSide: {
  3383. height: math.unit(0.305, "meter"),
  3384. name: "Dick (Side)",
  3385. image: {
  3386. source: "./media/characters/talan/dick-side.svg"
  3387. }
  3388. },
  3389. dickFront: {
  3390. height: math.unit(0.305, "meter"),
  3391. name: "Dick (Front)",
  3392. image: {
  3393. source: "./media/characters/talan/dick-front.svg"
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(4, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(100, "meters")
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(2, "miles"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5000, "miles")
  3414. },
  3415. {
  3416. name: "Teramacro",
  3417. height: math.unit(100, "parsecs")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt.svg"
  3438. }
  3439. },
  3440. frontAlt2: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt 2)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(9, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Large",
  3457. height: math.unit(25, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(0.25, "miles")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3471. {
  3472. side: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(140, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/sosha/side.svg",
  3478. bottom: 0.042
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(12, "feet"),
  3486. default: true
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(5 + 5 / 12, "feet"),
  3495. weight: math.unit(170, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/runnola/side.svg",
  3499. extra: 741 / 448,
  3500. bottom: 0.05
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(3, "feet")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(50, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/kurribird/front.svg",
  3529. bottom: 0.015
  3530. }
  3531. },
  3532. frontAlt: {
  3533. height: math.unit(1.5, "meter"),
  3534. weight: math.unit(50, "kg"),
  3535. name: "Front (Alt)",
  3536. image: {
  3537. source: "./media/characters/kurribird/front-alt.svg",
  3538. extra: 1.45
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(7, "feet")
  3546. },
  3547. {
  3548. name: "Big",
  3549. height: math.unit(12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(2, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(80, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/elbial/front.svg",
  3571. extra: 1643 / 1556,
  3572. bottom: 60.2 / 1696
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/elbial/side.svg",
  3581. extra: 1601/1528,
  3582. bottom: 97/1698
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(80, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/elbial/back.svg",
  3591. extra: 1653/1569,
  3592. bottom: 20/1673
  3593. }
  3594. },
  3595. frontDressed: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front (Dressed)",
  3599. image: {
  3600. source: "./media/characters/elbial/front-dressed.svg",
  3601. extra: 1638/1569,
  3602. bottom: 70/1708
  3603. }
  3604. },
  3605. genitals: {
  3606. height: math.unit(2 / 3.367, "meter"),
  3607. name: "Genitals",
  3608. image: {
  3609. source: "./media/characters/elbial/genitals.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Large",
  3616. height: math.unit(100, "feet")
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(500, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(10, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(25000, "miles")
  3630. },
  3631. {
  3632. name: "Full-Size",
  3633. height: math.unit(8000000, "gigaparsecs")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(60, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/noah/front.svg"
  3646. }
  3647. },
  3648. talons: {
  3649. height: math.unit(0.315, "meter"),
  3650. name: "Talons",
  3651. image: {
  3652. source: "./media/characters/noah/talons.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(50, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(750, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(50, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(100000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(3000000000, "miles")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/natalya/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natalya/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(5, "miles")
  3709. },
  3710. {
  3711. name: "Full-Size",
  3712. height: math.unit(600, "kiloparsecs")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(50, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/erestrebah/front.svg",
  3725. extra: 1262/1162,
  3726. bottom: 96/1358
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(50, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/erestrebah/back.svg",
  3735. extra: 1257/1139,
  3736. bottom: 13/1270
  3737. }
  3738. },
  3739. wing: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(50, "kg"),
  3742. name: "Wing",
  3743. image: {
  3744. source: "./media/characters/erestrebah/wing.svg",
  3745. extra: 1262/1162,
  3746. bottom: 96/1358
  3747. }
  3748. },
  3749. mouth: {
  3750. height: math.unit(0.39, "feet"),
  3751. name: "Mouth",
  3752. image: {
  3753. source: "./media/characters/erestrebah/mouth.svg"
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(10, "feet")
  3761. },
  3762. {
  3763. name: "Large",
  3764. height: math.unit(50, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(300, "feet")
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(750, "feet")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(3, "miles")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(80, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/jennifer/front.svg",
  3790. bottom: 0.11,
  3791. extra: 1.16
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/jennifer/front-alt.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Canon Height",
  3806. height: math.unit(120, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(300, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(20000, "feet")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/kalista/front.svg",
  3828. extra: 1314/1145,
  3829. bottom: 101/1415
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/kalista/back.svg",
  3838. extra: 1366 / 1156,
  3839. bottom: 33.9 / 1362.78
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Uncomfortably Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Small",
  3850. height: math.unit(30, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(100, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(2000, "feet")
  3860. },
  3861. {
  3862. name: "True Form",
  3863. height: math.unit(8924, "miles")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/ggv/front.svg"
  3876. }
  3877. },
  3878. side: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/ggv/side.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Extremely Puny",
  3890. height: math.unit(9 + 5 / 12, "feet")
  3891. },
  3892. {
  3893. name: "Horribly Small",
  3894. height: math.unit(47.7, "miles"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Reasonably Sized",
  3899. height: math.unit(25000, "parsecs")
  3900. },
  3901. {
  3902. name: "Slightly Uncompressed",
  3903. height: math.unit(7.77e31, "parsecs")
  3904. },
  3905. {
  3906. name: "Omniversal",
  3907. height: math.unit(1e300, "meters")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/napalm/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/napalm/back.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Standard",
  3934. height: math.unit(55, "feet"),
  3935. default: true
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(7 + 5 / 6, "feet"),
  3944. weight: math.unit(325, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/asana/front.svg",
  3948. extra: 1133 / 1060,
  3949. bottom: 15.2 / 1148.6
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(7 + 5 / 6, "feet"),
  3954. weight: math.unit(325, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/asana/back.svg",
  3958. extra: 1114 / 1043,
  3959. bottom: 5 / 1120
  3960. }
  3961. },
  3962. dressedDark: {
  3963. height: math.unit(7 + 5 / 6, "feet"),
  3964. weight: math.unit(325, "lb"),
  3965. name: "Dressed (Dark)",
  3966. image: {
  3967. source: "./media/characters/asana/dressed-dark.svg",
  3968. extra: 1133 / 1060,
  3969. bottom: 15.2 / 1148.6
  3970. }
  3971. },
  3972. dressedLight: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Dressed (Light)",
  3976. image: {
  3977. source: "./media/characters/asana/dressed-light.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Standard",
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Large",
  3991. height: math.unit(10, "meters")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(2500, "meters")
  3996. },
  3997. {
  3998. name: "Megamacro",
  3999. height: math.unit(5e6, "meters")
  4000. },
  4001. {
  4002. name: "Examacro",
  4003. height: math.unit(5e12, "lightyears")
  4004. },
  4005. {
  4006. name: "Max Size",
  4007. height: math.unit(1e31, "lightyears")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ebony/front.svg",
  4020. bottom: 0.03,
  4021. extra: 1045 / 810 + 0.03
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/ebony/side.svg",
  4030. bottom: 0.03,
  4031. extra: 1045 / 810 + 0.03
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(60, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/ebony/back.svg",
  4040. bottom: 0.01,
  4041. extra: 1045 / 810 + 0.01
  4042. }
  4043. },
  4044. },
  4045. [
  4046. // TODO check why I did this lol
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(200, "feet")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(13000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mountain/front.svg",
  4071. extra: 972 / 955,
  4072. bottom: 64 / 1036.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/mountain/back.svg",
  4081. extra: 970 / 950,
  4082. bottom: 28.25 / 999
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Large",
  4089. height: math.unit(20, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "meters")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(10000, "km"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Examacro",
  4102. height: math.unit(10e9, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(8, "feet"),
  4111. weight: math.unit(500, "lb"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/rick/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(8, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(5, "km")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/ona/front.svg"
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/ona/front-alt.svg"
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/ona/back.svg"
  4155. }
  4156. },
  4157. foot: {
  4158. height: math.unit(1.1, "feet"),
  4159. name: "Foot",
  4160. image: {
  4161. source: "./media/characters/ona/foot.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(70, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(681818, "miles")
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(3800000, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(12, "feet"),
  4186. weight: math.unit(3000, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/mech/front.svg",
  4190. extra: 2900 / 2770,
  4191. bottom: 110 / 3010
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(12, "feet"),
  4196. weight: math.unit(3000, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/mech/back.svg",
  4200. extra: 3011 / 2890,
  4201. bottom: 94 / 3105
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(3.07, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/mech/maw.svg"
  4209. }
  4210. },
  4211. head: {
  4212. height: math.unit(2.82, "feet"),
  4213. name: "Head",
  4214. image: {
  4215. source: "./media/characters/mech/head.svg"
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.43, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/mech/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(300, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(1500, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(1.3, "meter"),
  4247. weight: math.unit(30, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gregory/front.svg",
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.3, "meter"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(20, "meter")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2.8, "meter"),
  4271. weight: math.unit(200, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/elory/front.svg",
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(2.8, "meter"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(38, "meter")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(470, "feet"),
  4295. weight: math.unit(924, "tons"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/angelpatamon/front.svg",
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(470, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Deity Size I",
  4310. height: math.unit(28651.2, "km")
  4311. },
  4312. {
  4313. name: "Deity Size II",
  4314. height: math.unit(171907.2, "km")
  4315. }
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4320. {
  4321. side: {
  4322. height: math.unit(7.2, "meter"),
  4323. weight: math.unit(8.2, "tons"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/cryae/side.svg",
  4327. extra: 3500 / 1500
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(7.2, "meter"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/xera/front.svg",
  4348. extra: 2377 / 1972,
  4349. bottom: 75.5 / 2452
  4350. }
  4351. },
  4352. side: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(175, "lb"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/xera/side.svg",
  4358. extra: 2345 / 2019,
  4359. bottom: 39.7 / 2384
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(175, "lb"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/xera/back.svg",
  4368. extra: 2095 / 1984,
  4369. bottom: 67 / 2166
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Small",
  4376. height: math.unit(10, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(10, "km")
  4386. },
  4387. {
  4388. name: "Gigamacro",
  4389. height: math.unit(25000, "km")
  4390. },
  4391. {
  4392. name: "Teramacro",
  4393. height: math.unit(3e6, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/nebula/front.svg",
  4406. extra: 2566 / 2362,
  4407. bottom: 81 / 2644
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(4.5, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(1500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(150, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(27000, "km")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(225, "lb"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/abysgar/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Small",
  4446. height: math.unit(4.5, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(1250, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(125, "km")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(26000, "km")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(180, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/yakuz/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Small",
  4478. height: math.unit(5, "meters")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(1500, "meters"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(200, "km")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(100000, "km")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(175, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mirova/front.svg",
  4504. extra: 3334 / 3071,
  4505. bottom: 42 / 3375.6
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Small",
  4512. height: math.unit(5, "meters")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(900, "meters"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(135, "km")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(20000, "km")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4531. {
  4532. side: {
  4533. height: math.unit(28.35, "feet"),
  4534. weight: math.unit(99.75, "tons"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/asana-mech/side.svg",
  4538. extra: 923 / 699,
  4539. bottom: 50 / 975
  4540. }
  4541. },
  4542. chaingun: {
  4543. height: math.unit(7, "feet"),
  4544. weight: math.unit(2400, "lb"),
  4545. name: "Chaingun",
  4546. image: {
  4547. source: "./media/characters/asana-mech/chaingun.svg"
  4548. }
  4549. },
  4550. laser: {
  4551. height: math.unit(7.12, "feet"),
  4552. weight: math.unit(2000, "lb"),
  4553. name: "Laser",
  4554. image: {
  4555. source: "./media/characters/asana-mech/laser.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(28.35, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(2500, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(25, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(6e8, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(5, "meters"),
  4584. weight: math.unit(1000, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/asche/front.svg",
  4588. extra: 1258 / 1190,
  4589. bottom: 47 / 1305
  4590. }
  4591. },
  4592. frontUnderwear: {
  4593. height: math.unit(5, "meters"),
  4594. weight: math.unit(1000, "kg"),
  4595. name: "Front (Underwear)",
  4596. image: {
  4597. source: "./media/characters/asche/front-underwear.svg",
  4598. extra: 1258 / 1190,
  4599. bottom: 47 / 1305
  4600. }
  4601. },
  4602. frontDressed: {
  4603. height: math.unit(5, "meters"),
  4604. weight: math.unit(1000, "kg"),
  4605. name: "Front (Dressed)",
  4606. image: {
  4607. source: "./media/characters/asche/front-dressed.svg",
  4608. extra: 1258 / 1190,
  4609. bottom: 47 / 1305
  4610. }
  4611. },
  4612. frontArmor: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front (Armored)",
  4616. image: {
  4617. source: "./media/characters/asche/front-armored.svg",
  4618. extra: 1374 / 1308,
  4619. bottom: 23 / 1397
  4620. }
  4621. },
  4622. mp724: {
  4623. height: math.unit(0.96, "meters"),
  4624. weight: math.unit(38, "kg"),
  4625. name: "H&K MP724",
  4626. image: {
  4627. source: "./media/characters/asche/h&k-mp724.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asche/side.svg",
  4636. extra: 1717 / 1609,
  4637. bottom: 0.005
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/asche/back.svg",
  4646. extra: 1570 / 1501
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "DEFCON 5",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "DEFCON 4",
  4657. height: math.unit(500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "DEFCON 3",
  4662. height: math.unit(5, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 2",
  4666. height: math.unit(500, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 1",
  4670. height: math.unit(500000, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 0",
  4674. height: math.unit(3, "gigaparsecs")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gale/front.svg"
  4687. }
  4688. },
  4689. frontAlt1: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 1)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-1.svg"
  4695. }
  4696. },
  4697. frontAlt2: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 2)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-2.svg"
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(150, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5 + 10/12, "feet"),
  4727. weight: math.unit(67, "kg"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/draylen/front.svg",
  4731. extra: 832/777,
  4732. bottom: 85/917
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(5 + 10/12, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/chez/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/chez/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(7 + 9 / 12, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "God King",
  4776. height: math.unit(9750000, "meters")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(275, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/kaylum/front.svg",
  4789. bottom: 0.01,
  4790. extra: 1166 / 1031
  4791. }
  4792. },
  4793. frontWingless: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(275, "lbs"),
  4796. name: "Front (Wingless)",
  4797. image: {
  4798. source: "./media/characters/kaylum/front-wingless.svg",
  4799. bottom: 0.01,
  4800. extra: 1117 / 1031
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3.05, "meters")
  4808. },
  4809. {
  4810. name: "Master",
  4811. height: math.unit(5.5, "meters")
  4812. },
  4813. {
  4814. name: "Rampage",
  4815. height: math.unit(19, "meters")
  4816. },
  4817. {
  4818. name: "Macro Lite",
  4819. height: math.unit(37, "meters")
  4820. },
  4821. {
  4822. name: "Hyper Predator",
  4823. height: math.unit(61, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(138, "meters"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(150, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/geta/front.svg"
  4841. }
  4842. }
  4843. },
  4844. [
  4845. {
  4846. name: "Micro",
  4847. height: math.unit(3, "inches"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(5 + 5 / 12, "feet")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(300, "lbs"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/tyrnn/front.svg"
  4865. }
  4866. }
  4867. },
  4868. [
  4869. {
  4870. name: "Main Height",
  4871. height: math.unit(355, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Fave. Height",
  4876. height: math.unit(2400, "feet")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(300, "lbs"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/appledectomy/front.svg"
  4889. }
  4890. }
  4891. },
  4892. [
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(2500, "feet")
  4896. },
  4897. {
  4898. name: "Megamacro",
  4899. height: math.unit(50, "miles"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(5000, "miles")
  4905. },
  4906. {
  4907. name: "Teramacro",
  4908. height: math.unit(250000, "miles")
  4909. },
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(200, "lbs"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/vulpes/front.svg",
  4921. extra: 573 / 543,
  4922. bottom: 0.033
  4923. }
  4924. },
  4925. side: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(200, "lbs"),
  4928. name: "Side",
  4929. image: {
  4930. source: "./media/characters/vulpes/side.svg",
  4931. extra: 577 / 549,
  4932. bottom: 11 / 588
  4933. }
  4934. },
  4935. back: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(200, "lbs"),
  4938. name: "Back",
  4939. image: {
  4940. source: "./media/characters/vulpes/back.svg",
  4941. extra: 573 / 549,
  4942. bottom: 20 / 593
  4943. }
  4944. },
  4945. feet: {
  4946. height: math.unit(1.276, "feet"),
  4947. name: "Feet",
  4948. image: {
  4949. source: "./media/characters/vulpes/feet.svg"
  4950. }
  4951. },
  4952. maw: {
  4953. height: math.unit(1.18, "feet"),
  4954. name: "Maw",
  4955. image: {
  4956. source: "./media/characters/vulpes/maw.svg"
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Micro",
  4963. height: math.unit(2, "inches")
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(6.3, "feet")
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(850, "feet")
  4972. },
  4973. {
  4974. name: "Megamacro",
  4975. height: math.unit(7500, "feet"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Gigamacro",
  4980. height: math.unit(570000, "miles")
  4981. }
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4986. {
  4987. front: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(210, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/rain-fallen/front.svg"
  4993. }
  4994. },
  4995. side: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(210, "lbs"),
  4998. name: "Side",
  4999. image: {
  5000. source: "./media/characters/rain-fallen/side.svg"
  5001. }
  5002. },
  5003. back: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(210, "lbs"),
  5006. name: "Back",
  5007. image: {
  5008. source: "./media/characters/rain-fallen/back.svg"
  5009. }
  5010. },
  5011. feral: {
  5012. height: math.unit(9, "feet"),
  5013. weight: math.unit(700, "lbs"),
  5014. name: "Feral",
  5015. image: {
  5016. source: "./media/characters/rain-fallen/feral.svg"
  5017. }
  5018. },
  5019. },
  5020. [
  5021. {
  5022. name: "Meddling with Mortals",
  5023. height: math.unit(8 + 8/12, "feet")
  5024. },
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(5, "meter")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(150, "meter"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Megamacro",
  5036. height: math.unit(278e6, "meter")
  5037. },
  5038. {
  5039. name: "Gigamacro",
  5040. height: math.unit(2e9, "meter")
  5041. },
  5042. {
  5043. name: "Teramacro",
  5044. height: math.unit(8e12, "meter")
  5045. },
  5046. {
  5047. name: "Devourer",
  5048. height: math.unit(14, "zettameters")
  5049. },
  5050. {
  5051. name: "Scarlet King",
  5052. height: math.unit(18, "yottameters")
  5053. },
  5054. {
  5055. name: "Void",
  5056. height: math.unit(1e88, "yottameters")
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5062. {
  5063. standing: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(180, "lbs"),
  5066. name: "Standing",
  5067. image: {
  5068. source: "./media/characters/zaakira/standing.svg",
  5069. extra: 1599/1504,
  5070. bottom: 39/1638
  5071. }
  5072. },
  5073. laying: {
  5074. height: math.unit(3, "feet"),
  5075. weight: math.unit(180, "lbs"),
  5076. name: "Laying",
  5077. image: {
  5078. source: "./media/characters/zaakira/laying.svg"
  5079. }
  5080. },
  5081. },
  5082. [
  5083. {
  5084. name: "Normal",
  5085. height: math.unit(12, "feet")
  5086. },
  5087. {
  5088. name: "Macro",
  5089. height: math.unit(279, "feet"),
  5090. default: true
  5091. }
  5092. ]
  5093. ))
  5094. characterMakers.push(() => makeCharacter(
  5095. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5096. {
  5097. femSfw: {
  5098. height: math.unit(8, "feet"),
  5099. weight: math.unit(350, "lb"),
  5100. name: "Fem",
  5101. image: {
  5102. source: "./media/characters/sigvald/fem-sfw.svg",
  5103. extra: 182 / 164,
  5104. bottom: 8.7 / 190.5
  5105. }
  5106. },
  5107. femNsfw: {
  5108. height: math.unit(8, "feet"),
  5109. weight: math.unit(350, "lb"),
  5110. name: "Fem (NSFW)",
  5111. image: {
  5112. source: "./media/characters/sigvald/fem-nsfw.svg",
  5113. extra: 182 / 164,
  5114. bottom: 8.7 / 190.5
  5115. }
  5116. },
  5117. maleNsfw: {
  5118. height: math.unit(8, "feet"),
  5119. weight: math.unit(350, "lb"),
  5120. name: "Male (NSFW)",
  5121. image: {
  5122. source: "./media/characters/sigvald/male-nsfw.svg",
  5123. extra: 182 / 164,
  5124. bottom: 8.7 / 190.5
  5125. }
  5126. },
  5127. hermNsfw: {
  5128. height: math.unit(8, "feet"),
  5129. weight: math.unit(350, "lb"),
  5130. name: "Herm (NSFW)",
  5131. image: {
  5132. source: "./media/characters/sigvald/herm-nsfw.svg",
  5133. extra: 182 / 164,
  5134. bottom: 8.7 / 190.5
  5135. }
  5136. },
  5137. dick: {
  5138. height: math.unit(2.36, "feet"),
  5139. name: "Dick",
  5140. image: {
  5141. source: "./media/characters/sigvald/dick.svg"
  5142. }
  5143. },
  5144. eye: {
  5145. height: math.unit(0.31, "feet"),
  5146. name: "Eye",
  5147. image: {
  5148. source: "./media/characters/sigvald/eye.svg"
  5149. }
  5150. },
  5151. mouth: {
  5152. height: math.unit(0.92, "feet"),
  5153. name: "Mouth",
  5154. image: {
  5155. source: "./media/characters/sigvald/mouth.svg"
  5156. }
  5157. },
  5158. paws: {
  5159. height: math.unit(2.2, "feet"),
  5160. name: "Paws",
  5161. image: {
  5162. source: "./media/characters/sigvald/paws.svg"
  5163. }
  5164. }
  5165. },
  5166. [
  5167. {
  5168. name: "Normal",
  5169. height: math.unit(8, "feet")
  5170. },
  5171. {
  5172. name: "Large",
  5173. height: math.unit(12, "feet")
  5174. },
  5175. {
  5176. name: "Larger",
  5177. height: math.unit(20, "feet")
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(150, "feet")
  5182. },
  5183. {
  5184. name: "Macro+",
  5185. height: math.unit(200, "feet"),
  5186. default: true
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5192. {
  5193. side: {
  5194. height: math.unit(12, "feet"),
  5195. weight: math.unit(2000, "kg"),
  5196. name: "Side",
  5197. image: {
  5198. source: "./media/characters/scott/side.svg",
  5199. extra: 754 / 724,
  5200. bottom: 0.069
  5201. }
  5202. },
  5203. upright: {
  5204. height: math.unit(12, "feet"),
  5205. weight: math.unit(2000, "kg"),
  5206. name: "Upright",
  5207. image: {
  5208. source: "./media/characters/scott/upright.svg",
  5209. extra: 3881 / 3722,
  5210. bottom: 0.05
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(12, "feet"),
  5218. default: true
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5224. {
  5225. side: {
  5226. height: math.unit(8, "meters"),
  5227. weight: math.unit(84755, "lbs"),
  5228. name: "Side",
  5229. image: {
  5230. source: "./media/characters/tobias/side.svg",
  5231. extra: 1474 / 1096,
  5232. bottom: 38.9 / 1513.1235
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(8, "meters"),
  5240. default: true
  5241. },
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5246. {
  5247. front: {
  5248. height: math.unit(5.5, "feet"),
  5249. weight: math.unit(400, "lbs"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/kieran/front.svg",
  5253. extra: 2694 / 2364,
  5254. bottom: 217 / 2908
  5255. }
  5256. },
  5257. side: {
  5258. height: math.unit(5.5, "feet"),
  5259. weight: math.unit(400, "lbs"),
  5260. name: "Side",
  5261. image: {
  5262. source: "./media/characters/kieran/side.svg",
  5263. extra: 875 / 777,
  5264. bottom: 84.6 / 959
  5265. }
  5266. },
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(5.5, "feet"),
  5272. default: true
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5278. {
  5279. side: {
  5280. height: math.unit(2, "meters"),
  5281. weight: math.unit(70, "kg"),
  5282. name: "Side",
  5283. image: {
  5284. source: "./media/characters/sanya/side.svg",
  5285. bottom: 0.02,
  5286. extra: 1.02
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Small",
  5293. height: math.unit(2, "meters")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(3, "meters")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(16, "meters"),
  5302. default: true
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(2, "meters"),
  5311. weight: math.unit(120, "kg"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/miranda/front.svg",
  5315. extra: 195 / 185,
  5316. bottom: 10.9 / 206.5
  5317. }
  5318. },
  5319. back: {
  5320. height: math.unit(2, "meters"),
  5321. weight: math.unit(120, "kg"),
  5322. name: "Back",
  5323. image: {
  5324. source: "./media/characters/miranda/back.svg",
  5325. extra: 201 / 193,
  5326. bottom: 2.3 / 203.7
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(10, "feet"),
  5334. default: true
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "James", species: ["deer"], tags: ["anthro"] },
  5340. {
  5341. side: {
  5342. height: math.unit(2, "meters"),
  5343. weight: math.unit(100, "kg"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/james/front.svg",
  5347. extra: 10 / 8.5
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(8.5, "feet"),
  5355. default: true
  5356. }
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5361. {
  5362. side: {
  5363. height: math.unit(9.5, "feet"),
  5364. weight: math.unit(2500, "lbs"),
  5365. name: "Side",
  5366. image: {
  5367. source: "./media/characters/heather/side.svg"
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(9.5, "feet"),
  5375. default: true
  5376. }
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5381. {
  5382. side: {
  5383. height: math.unit(6.5, "feet"),
  5384. weight: math.unit(400, "lbs"),
  5385. name: "Side",
  5386. image: {
  5387. source: "./media/characters/lukas/side.svg",
  5388. extra: 7.25 / 6.5
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(6.5, "feet"),
  5396. default: true
  5397. }
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5402. {
  5403. side: {
  5404. height: math.unit(5, "feet"),
  5405. weight: math.unit(3000, "lbs"),
  5406. name: "Side",
  5407. image: {
  5408. source: "./media/characters/louise/side.svg"
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(5, "feet"),
  5416. default: true
  5417. }
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5422. {
  5423. side: {
  5424. height: math.unit(6, "feet"),
  5425. weight: math.unit(150, "lbs"),
  5426. name: "Side",
  5427. image: {
  5428. source: "./media/characters/ramona/side.svg",
  5429. extra: 871/854,
  5430. bottom: 41/912
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(5.3, "meters"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(20, "stories")
  5443. },
  5444. {
  5445. name: "Macro+",
  5446. height: math.unit(50, "stories")
  5447. },
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5452. {
  5453. standing: {
  5454. height: math.unit(5.75, "feet"),
  5455. weight: math.unit(160, "lbs"),
  5456. name: "Standing",
  5457. image: {
  5458. source: "./media/characters/deerpuff/standing.svg",
  5459. extra: 682 / 624
  5460. }
  5461. },
  5462. sitting: {
  5463. height: math.unit(5.75 / 1.79, "feet"),
  5464. weight: math.unit(160, "lbs"),
  5465. name: "Sitting",
  5466. image: {
  5467. source: "./media/characters/deerpuff/sitting.svg",
  5468. bottom: 44 / 400,
  5469. extra: 1
  5470. }
  5471. },
  5472. taurLaying: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(400, "lbs"),
  5475. name: "Taur (Laying)",
  5476. image: {
  5477. source: "./media/characters/deerpuff/taur-laying.svg"
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Puffball",
  5484. height: math.unit(6, "inches")
  5485. },
  5486. {
  5487. name: "Normalpuff",
  5488. height: math.unit(5.75, "feet")
  5489. },
  5490. {
  5491. name: "Macropuff",
  5492. height: math.unit(1500, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Megapuff",
  5497. height: math.unit(500, "miles")
  5498. },
  5499. {
  5500. name: "Gigapuff",
  5501. height: math.unit(250000, "miles")
  5502. },
  5503. {
  5504. name: "Omegapuff",
  5505. height: math.unit(1000, "lightyears")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5511. {
  5512. stomping: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(170, "lbs"),
  5515. name: "Stomping",
  5516. image: {
  5517. source: "./media/characters/vivian/stomping.svg"
  5518. }
  5519. },
  5520. sitting: {
  5521. height: math.unit(6 / 1.75, "feet"),
  5522. weight: math.unit(170, "lbs"),
  5523. name: "Sitting",
  5524. image: {
  5525. source: "./media/characters/vivian/sitting.svg",
  5526. bottom: 1 / 6.4,
  5527. extra: 1,
  5528. }
  5529. },
  5530. },
  5531. [
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(7, "feet"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "Macro",
  5539. height: math.unit(10, "stories")
  5540. },
  5541. {
  5542. name: "Macro+",
  5543. height: math.unit(30, "stories")
  5544. },
  5545. {
  5546. name: "Megamacro",
  5547. height: math.unit(10, "miles")
  5548. },
  5549. {
  5550. name: "Megamacro+",
  5551. height: math.unit(2750000, "meters")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(160, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/prince/front.svg",
  5564. extra: 3400 / 3000
  5565. }
  5566. },
  5567. jumping: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(160, "lbs"),
  5570. name: "Jumping",
  5571. image: {
  5572. source: "./media/characters/prince/jump.svg",
  5573. extra: 2555 / 2134
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(7.75, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Not cute",
  5585. height: math.unit(17, "feet")
  5586. },
  5587. {
  5588. name: "I said NOT",
  5589. height: math.unit(91, "feet")
  5590. },
  5591. {
  5592. name: "Please stop",
  5593. height: math.unit(560, "feet")
  5594. },
  5595. {
  5596. name: "What have you done",
  5597. height: math.unit(2200, "feet")
  5598. },
  5599. {
  5600. name: "Deer God",
  5601. height: math.unit(3.6, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5607. {
  5608. standing: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(300, "lbs"),
  5611. name: "Standing",
  5612. image: {
  5613. source: "./media/characters/psymon/standing.svg",
  5614. extra: 1888 / 1810,
  5615. bottom: 0.05
  5616. }
  5617. },
  5618. slithering: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(300, "lbs"),
  5621. name: "Slithering",
  5622. image: {
  5623. source: "./media/characters/psymon/slithering.svg",
  5624. extra: 1330 / 1224
  5625. }
  5626. },
  5627. slitheringAlt: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(300, "lbs"),
  5630. name: "Slithering (Alt)",
  5631. image: {
  5632. source: "./media/characters/psymon/slithering-alt.svg",
  5633. extra: 1330 / 1224
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(11.25, "feet"),
  5641. default: true
  5642. },
  5643. {
  5644. name: "Large",
  5645. height: math.unit(27, "feet")
  5646. },
  5647. {
  5648. name: "Giant",
  5649. height: math.unit(87, "feet")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(365, "feet")
  5654. },
  5655. {
  5656. name: "Megamacro",
  5657. height: math.unit(3, "miles")
  5658. },
  5659. {
  5660. name: "World Serpent",
  5661. height: math.unit(8000, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(180, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/daimos/front.svg",
  5674. extra: 4160 / 3897,
  5675. bottom: 0.021
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(8, "feet"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Big Dog",
  5687. height: math.unit(22, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(127, "feet")
  5692. },
  5693. {
  5694. name: "Megamacro",
  5695. height: math.unit(3600, "feet")
  5696. },
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5701. {
  5702. side: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(180, "lbs"),
  5705. name: "Side",
  5706. image: {
  5707. source: "./media/characters/blake/side.svg",
  5708. extra: 1212 / 1120,
  5709. bottom: 0.05
  5710. }
  5711. },
  5712. crouched: {
  5713. height: math.unit(6 * 0.57, "feet"),
  5714. weight: math.unit(180, "lbs"),
  5715. name: "Crouched",
  5716. image: {
  5717. source: "./media/characters/blake/crouched.svg",
  5718. extra: 840 / 587,
  5719. bottom: 0.04
  5720. }
  5721. },
  5722. bent: {
  5723. height: math.unit(6 * 0.75, "feet"),
  5724. weight: math.unit(180, "lbs"),
  5725. name: "Bent",
  5726. image: {
  5727. source: "./media/characters/blake/bent.svg",
  5728. extra: 592 / 544,
  5729. bottom: 0.035
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(8 + 1 / 6, "feet"),
  5737. default: true
  5738. },
  5739. {
  5740. name: "Big Backside",
  5741. height: math.unit(37, "feet")
  5742. },
  5743. {
  5744. name: "Subway Shredder",
  5745. height: math.unit(72, "feet")
  5746. },
  5747. {
  5748. name: "City Carver",
  5749. height: math.unit(1675, "feet")
  5750. },
  5751. {
  5752. name: "Tectonic Tweaker",
  5753. height: math.unit(2300, "miles")
  5754. },
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5759. {
  5760. front: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(180, "lbs"),
  5763. name: "Front",
  5764. image: {
  5765. source: "./media/characters/guisetto/front.svg",
  5766. extra: 856 / 817,
  5767. bottom: 0.06
  5768. }
  5769. },
  5770. airborne: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(180, "lbs"),
  5773. name: "Airborne",
  5774. image: {
  5775. source: "./media/characters/guisetto/airborne.svg",
  5776. extra: 584 / 525
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(10 + 11 / 12, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Large",
  5788. height: math.unit(35, "feet")
  5789. },
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(475, "feet")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(180, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/luxor/front.svg",
  5805. extra: 2940 / 2152
  5806. }
  5807. },
  5808. back: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(180, "lbs"),
  5811. name: "Back",
  5812. image: {
  5813. source: "./media/characters/luxor/back.svg",
  5814. extra: 1083 / 960
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(5 + 5 / 6, "feet"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Lamp",
  5826. height: math.unit(50, "feet")
  5827. },
  5828. {
  5829. name: "Lämp",
  5830. height: math.unit(300, "feet")
  5831. },
  5832. {
  5833. name: "The sun is a lamp",
  5834. height: math.unit(250000, "miles")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(50, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/huoyan/front.svg"
  5847. }
  5848. },
  5849. side: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(180, "lbs"),
  5852. name: "Side",
  5853. image: {
  5854. source: "./media/characters/huoyan/side.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Chef",
  5861. height: math.unit(9, "feet")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(65, "feet"),
  5866. default: true
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(780, "feet")
  5871. },
  5872. {
  5873. name: "Flaming Mountain",
  5874. height: math.unit(4.8, "miles")
  5875. },
  5876. {
  5877. name: "Celestial",
  5878. height: math.unit(765000, "miles")
  5879. },
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5884. {
  5885. front: {
  5886. height: math.unit(5 + 3 / 4, "feet"),
  5887. weight: math.unit(120, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/tails/front.svg"
  5891. }
  5892. }
  5893. },
  5894. [
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(5 + 3 / 4, "feet"),
  5898. default: true
  5899. }
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5904. {
  5905. front: {
  5906. height: math.unit(4, "feet"),
  5907. weight: math.unit(50, "lbs"),
  5908. name: "Front",
  5909. image: {
  5910. source: "./media/characters/rainy/front.svg"
  5911. }
  5912. }
  5913. },
  5914. [
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(800, "feet"),
  5918. default: true
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5924. {
  5925. front: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(150, "lbs"),
  5928. name: "Front",
  5929. image: {
  5930. source: "./media/characters/rainier/front.svg"
  5931. }
  5932. }
  5933. },
  5934. [
  5935. {
  5936. name: "Micro",
  5937. height: math.unit(2, "mm"),
  5938. default: true
  5939. }
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(8 + 4/12, "feet"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/andy-renard/front.svg",
  5950. extra: 1839/1726,
  5951. bottom: 134/1973
  5952. }
  5953. },
  5954. back: {
  5955. height: math.unit(8 + 4/12, "feet"),
  5956. name: "Back",
  5957. image: {
  5958. source: "./media/characters/andy-renard/back.svg",
  5959. extra: 1838/1710,
  5960. bottom: 105/1943
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Tall",
  5967. height: math.unit(8 + 4/12, "feet")
  5968. },
  5969. {
  5970. name: "Mini Macro",
  5971. height: math.unit(15, "feet"),
  5972. default: true
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(100, "feet")
  5977. },
  5978. {
  5979. name: "Mega Macro",
  5980. height: math.unit(1000, "feet")
  5981. },
  5982. {
  5983. name: "Giga Macro",
  5984. height: math.unit(10, "miles")
  5985. },
  5986. {
  5987. name: "God Macro",
  5988. height: math.unit(1, "multiverse")
  5989. },
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5994. {
  5995. front: {
  5996. height: math.unit(6, "feet"),
  5997. weight: math.unit(210, "lbs"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/cimmaron/front-sfw.svg",
  6001. extra: 701 / 676,
  6002. bottom: 0.046
  6003. }
  6004. },
  6005. back: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(210, "lbs"),
  6008. name: "Back",
  6009. image: {
  6010. source: "./media/characters/cimmaron/back-sfw.svg",
  6011. extra: 701 / 676,
  6012. bottom: 0.046
  6013. }
  6014. },
  6015. frontNsfw: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(210, "lbs"),
  6018. name: "Front (NSFW)",
  6019. image: {
  6020. source: "./media/characters/cimmaron/front-nsfw.svg",
  6021. extra: 701 / 676,
  6022. bottom: 0.046
  6023. }
  6024. },
  6025. backNsfw: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(210, "lbs"),
  6028. name: "Back (NSFW)",
  6029. image: {
  6030. source: "./media/characters/cimmaron/back-nsfw.svg",
  6031. extra: 701 / 676,
  6032. bottom: 0.046
  6033. }
  6034. },
  6035. dick: {
  6036. height: math.unit(1.714, "feet"),
  6037. name: "Dick",
  6038. image: {
  6039. source: "./media/characters/cimmaron/dick.svg"
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(6, "feet"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Macro Mayor",
  6051. height: math.unit(350, "meters")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(6, "feet"),
  6060. weight: math.unit(200, "lbs"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/akari/front.svg",
  6064. extra: 962 / 901,
  6065. bottom: 0.04
  6066. }
  6067. }
  6068. },
  6069. [
  6070. {
  6071. name: "Micro",
  6072. height: math.unit(5, "inches"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(7, "feet")
  6078. },
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6083. {
  6084. front: {
  6085. height: math.unit(6, "feet"),
  6086. weight: math.unit(140, "lbs"),
  6087. name: "Front",
  6088. image: {
  6089. source: "./media/characters/cynosura/front.svg",
  6090. extra: 896 / 847
  6091. }
  6092. },
  6093. back: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(140, "lbs"),
  6096. name: "Back",
  6097. image: {
  6098. source: "./media/characters/cynosura/back.svg",
  6099. extra: 1365 / 1250
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Micro",
  6106. height: math.unit(4, "inches")
  6107. },
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(5.75, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Tall",
  6115. height: math.unit(10, "feet")
  6116. },
  6117. {
  6118. name: "Big",
  6119. height: math.unit(20, "feet")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(50, "feet")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(13 + 2/12, "feet"),
  6132. weight: math.unit(800, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/gin/front.svg",
  6136. extra: 1312/1191,
  6137. bottom: 45/1357
  6138. }
  6139. },
  6140. mouth: {
  6141. height: math.unit(2.39 * 1.8, "feet"),
  6142. name: "Mouth",
  6143. image: {
  6144. source: "./media/characters/gin/mouth.svg"
  6145. }
  6146. },
  6147. hand: {
  6148. height: math.unit(1.57 * 2.19, "feet"),
  6149. name: "Hand",
  6150. image: {
  6151. source: "./media/characters/gin/hand.svg"
  6152. }
  6153. },
  6154. foot: {
  6155. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6156. name: "Foot",
  6157. image: {
  6158. source: "./media/characters/gin/foot.svg"
  6159. }
  6160. },
  6161. sole: {
  6162. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6163. name: "Sole",
  6164. image: {
  6165. source: "./media/characters/gin/sole.svg"
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Very Small",
  6172. height: math.unit(13 + 2 / 12, "feet")
  6173. },
  6174. {
  6175. name: "Micro",
  6176. height: math.unit(600, "miles")
  6177. },
  6178. {
  6179. name: "Regular",
  6180. height: math.unit(20, "earths"),
  6181. default: true
  6182. },
  6183. {
  6184. name: "Macro",
  6185. height: math.unit(2.2, "solarradii")
  6186. },
  6187. {
  6188. name: "Teramacro",
  6189. height: math.unit(1.2, "galaxies")
  6190. },
  6191. {
  6192. name: "Omegamacro",
  6193. height: math.unit(200, "universes")
  6194. },
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6199. {
  6200. front: {
  6201. height: math.unit(6 + 1 / 6, "feet"),
  6202. weight: math.unit(178, "lbs"),
  6203. name: "Front",
  6204. image: {
  6205. source: "./media/characters/guy/front.svg"
  6206. }
  6207. }
  6208. },
  6209. [
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(6 + 1 / 6, "feet"),
  6213. default: true
  6214. },
  6215. {
  6216. name: "Large",
  6217. height: math.unit(25 + 7 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(60 + 9 / 12, "feet")
  6222. },
  6223. {
  6224. name: "Macro+",
  6225. height: math.unit(246, "feet")
  6226. },
  6227. {
  6228. name: "Macro++",
  6229. height: math.unit(878, "feet")
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6235. {
  6236. front: {
  6237. height: math.unit(9, "feet"),
  6238. weight: math.unit(800, "lbs"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/tiberius/front.svg",
  6242. extra: 2295 / 2071
  6243. }
  6244. },
  6245. back: {
  6246. height: math.unit(9, "feet"),
  6247. weight: math.unit(800, "lbs"),
  6248. name: "Back",
  6249. image: {
  6250. source: "./media/characters/tiberius/back.svg",
  6251. extra: 2373 / 2160
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(9, "feet"),
  6259. default: true
  6260. }
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6265. {
  6266. front: {
  6267. height: math.unit(6, "feet"),
  6268. weight: math.unit(600, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/surgo/front.svg",
  6272. extra: 3591 / 2227
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(600, "lbs"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/surgo/back.svg",
  6281. extra: 3557 / 2228
  6282. }
  6283. },
  6284. laying: {
  6285. height: math.unit(6 * 0.85, "feet"),
  6286. weight: math.unit(600, "lbs"),
  6287. name: "Laying",
  6288. image: {
  6289. source: "./media/characters/surgo/laying.svg"
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(6, "feet"),
  6297. default: true
  6298. }
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6303. {
  6304. side: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(150, "lbs"),
  6307. name: "Side",
  6308. image: {
  6309. source: "./media/characters/cibus/side.svg",
  6310. extra: 800 / 400
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(6, "feet"),
  6318. default: true
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(240, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/nibbles/front.svg"
  6331. }
  6332. },
  6333. side: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(240, "lbs"),
  6336. name: "Side",
  6337. image: {
  6338. source: "./media/characters/nibbles/side.svg"
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(9, "feet"),
  6346. default: true
  6347. }
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6352. {
  6353. side: {
  6354. height: math.unit(5 + 1 / 6, "feet"),
  6355. weight: math.unit(130, "lbs"),
  6356. name: "Side",
  6357. image: {
  6358. source: "./media/characters/rikky/side.svg",
  6359. extra: 851 / 801
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(5 + 1 / 6, "feet")
  6367. },
  6368. {
  6369. name: "Macro",
  6370. height: math.unit(152, "feet"),
  6371. default: true
  6372. },
  6373. {
  6374. name: "Megamacro",
  6375. height: math.unit(7, "miles")
  6376. }
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6381. {
  6382. side: {
  6383. height: math.unit(370, "cm"),
  6384. weight: math.unit(350, "lbs"),
  6385. name: "Side",
  6386. image: {
  6387. source: "./media/characters/malfressa/side.svg"
  6388. }
  6389. },
  6390. walking: {
  6391. height: math.unit(370, "cm"),
  6392. weight: math.unit(350, "lbs"),
  6393. name: "Walking",
  6394. image: {
  6395. source: "./media/characters/malfressa/walking.svg"
  6396. }
  6397. },
  6398. feral: {
  6399. height: math.unit(2500, "cm"),
  6400. weight: math.unit(100000, "lbs"),
  6401. name: "Feral",
  6402. image: {
  6403. source: "./media/characters/malfressa/feral.svg",
  6404. extra: 2108 / 837,
  6405. bottom: 0.02
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(370, "cm")
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(300, "meters"),
  6417. default: true
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(6, "feet"),
  6426. weight: math.unit(60, "kg"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/jaro/front.svg",
  6430. extra: 845/817,
  6431. bottom: 45/890
  6432. }
  6433. },
  6434. back: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(60, "kg"),
  6437. name: "Back",
  6438. image: {
  6439. source: "./media/characters/jaro/back.svg",
  6440. extra: 847/817,
  6441. bottom: 34/881
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(7, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5.5, "feet"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Minimacro",
  6457. height: math.unit(20, "feet")
  6458. },
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(200, "meters")
  6462. }
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(195, "lb"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/rogue/front.svg"
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(90, "feet"),
  6481. default: true
  6482. },
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6487. {
  6488. front: {
  6489. height: math.unit(5 + 8 / 12, "feet"),
  6490. weight: math.unit(140, "lb"),
  6491. name: "Front",
  6492. image: {
  6493. source: "./media/characters/piper/front.svg",
  6494. extra: 3948/3655,
  6495. bottom: 0/3948
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Micro",
  6502. height: math.unit(2, "inches")
  6503. },
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(5 + 8 / 12, "feet")
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(250, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Megamacro",
  6515. height: math.unit(7, "miles")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(220, "lb"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/gemini/front.svg"
  6528. }
  6529. },
  6530. back: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(220, "lb"),
  6533. name: "Back",
  6534. image: {
  6535. source: "./media/characters/gemini/back.svg"
  6536. }
  6537. },
  6538. kneeling: {
  6539. height: math.unit(6 / 1.5, "feet"),
  6540. weight: math.unit(220, "lb"),
  6541. name: "Kneeling",
  6542. image: {
  6543. source: "./media/characters/gemini/kneeling.svg",
  6544. bottom: 0.02
  6545. }
  6546. },
  6547. },
  6548. [
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(300, "meters"),
  6552. default: true
  6553. },
  6554. {
  6555. name: "Megamacro",
  6556. height: math.unit(6900, "meters")
  6557. },
  6558. ]
  6559. ))
  6560. characterMakers.push(() => makeCharacter(
  6561. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6562. {
  6563. anthro: {
  6564. height: math.unit(2.35, "meters"),
  6565. weight: math.unit(73, "kg"),
  6566. name: "Anthro",
  6567. image: {
  6568. source: "./media/characters/alicia/anthro.svg",
  6569. extra: 2571 / 2385,
  6570. bottom: 75 / 2648
  6571. }
  6572. },
  6573. paw: {
  6574. height: math.unit(1.32, "feet"),
  6575. name: "Paw",
  6576. image: {
  6577. source: "./media/characters/alicia/paw.svg"
  6578. }
  6579. },
  6580. feral: {
  6581. height: math.unit(1.69, "meters"),
  6582. weight: math.unit(73, "kg"),
  6583. name: "Feral",
  6584. image: {
  6585. source: "./media/characters/alicia/feral.svg",
  6586. extra: 2123 / 1715,
  6587. bottom: 222 / 2349
  6588. }
  6589. },
  6590. },
  6591. [
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(2.35, "meters")
  6595. },
  6596. {
  6597. name: "Macro",
  6598. height: math.unit(60, "meters"),
  6599. default: true
  6600. },
  6601. {
  6602. name: "Megamacro",
  6603. height: math.unit(10000, "kilometers")
  6604. },
  6605. ]
  6606. ))
  6607. characterMakers.push(() => makeCharacter(
  6608. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6609. {
  6610. front: {
  6611. height: math.unit(7, "feet"),
  6612. weight: math.unit(250, "lbs"),
  6613. name: "Front",
  6614. image: {
  6615. source: "./media/characters/archy/front.svg"
  6616. }
  6617. }
  6618. },
  6619. [
  6620. {
  6621. name: "Micro",
  6622. height: math.unit(1, "inch")
  6623. },
  6624. {
  6625. name: "Shorty",
  6626. height: math.unit(5, "feet")
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(7, "feet")
  6631. },
  6632. {
  6633. name: "Macro",
  6634. height: math.unit(600, "meters"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Megamacro",
  6639. height: math.unit(1, "mile")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(1.65, "meters"),
  6648. weight: math.unit(74, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/berri/front.svg",
  6652. extra: 857 / 837,
  6653. bottom: 18 / 877
  6654. }
  6655. },
  6656. bum: {
  6657. height: math.unit(1.46, "feet"),
  6658. name: "Bum",
  6659. image: {
  6660. source: "./media/characters/berri/bum.svg"
  6661. }
  6662. },
  6663. mouth: {
  6664. height: math.unit(0.44, "feet"),
  6665. name: "Mouth",
  6666. image: {
  6667. source: "./media/characters/berri/mouth.svg"
  6668. }
  6669. },
  6670. paw: {
  6671. height: math.unit(0.826, "feet"),
  6672. name: "Paw",
  6673. image: {
  6674. source: "./media/characters/berri/paw.svg"
  6675. }
  6676. },
  6677. },
  6678. [
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(1.65, "meters")
  6682. },
  6683. {
  6684. name: "Macro",
  6685. height: math.unit(60, "m"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Megamacro",
  6690. height: math.unit(9.213, "km")
  6691. },
  6692. {
  6693. name: "Planet Eater",
  6694. height: math.unit(489, "megameters")
  6695. },
  6696. {
  6697. name: "Teramacro",
  6698. height: math.unit(2471635000000, "meters")
  6699. },
  6700. {
  6701. name: "Examacro",
  6702. height: math.unit(8.0624e+26, "meters")
  6703. }
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(1.72, "meters"),
  6711. weight: math.unit(68, "kg"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/lexi/front.svg"
  6715. }
  6716. }
  6717. },
  6718. [
  6719. {
  6720. name: "Very Smol",
  6721. height: math.unit(10, "mm")
  6722. },
  6723. {
  6724. name: "Micro",
  6725. height: math.unit(6.8, "cm"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(1.72, "m")
  6731. }
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(1.69, "meters"),
  6739. weight: math.unit(68, "kg"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/martin/front.svg",
  6743. extra: 596 / 581
  6744. }
  6745. }
  6746. },
  6747. [
  6748. {
  6749. name: "Micro",
  6750. height: math.unit(6.85, "cm"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(1.69, "m")
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(1.69, "meters"),
  6764. weight: math.unit(68, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/juno/front.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(7, "cm")
  6775. },
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(1.89, "m")
  6779. },
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(353, "meters"),
  6783. default: true
  6784. }
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(1.93, "meters"),
  6792. weight: math.unit(83, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/samantha/front.svg"
  6796. }
  6797. },
  6798. frontClothed: {
  6799. height: math.unit(1.93, "meters"),
  6800. weight: math.unit(83, "kg"),
  6801. name: "Front (Clothed)",
  6802. image: {
  6803. source: "./media/characters/samantha/front-clothed.svg"
  6804. }
  6805. },
  6806. back: {
  6807. height: math.unit(1.93, "meters"),
  6808. weight: math.unit(83, "kg"),
  6809. name: "Back",
  6810. image: {
  6811. source: "./media/characters/samantha/back.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(1.93, "m")
  6819. },
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(74, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Macro+",
  6827. height: math.unit(223, "meters"),
  6828. },
  6829. {
  6830. name: "Megamacro",
  6831. height: math.unit(8381, "meters"),
  6832. },
  6833. {
  6834. name: "Megamacro+",
  6835. height: math.unit(12000, "kilometers")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(1.92, "meters"),
  6844. weight: math.unit(80, "kg"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/dr-clay/front.svg"
  6848. }
  6849. },
  6850. frontClothed: {
  6851. height: math.unit(1.92, "meters"),
  6852. weight: math.unit(80, "kg"),
  6853. name: "Front (Clothed)",
  6854. image: {
  6855. source: "./media/characters/dr-clay/front-clothed.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(1.92, "m")
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(214, "meters"),
  6867. default: true
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(12.237, "meters"),
  6872. },
  6873. {
  6874. name: "Megamacro",
  6875. height: math.unit(557, "megameters"),
  6876. },
  6877. {
  6878. name: "Unimaginable",
  6879. height: math.unit(120e9, "lightyears")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(2, "meters"),
  6888. weight: math.unit(80, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6892. }
  6893. }
  6894. },
  6895. [
  6896. {
  6897. name: "Teramacro",
  6898. height: math.unit(500000, "lightyears"),
  6899. default: true
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6905. {
  6906. crux: {
  6907. height: math.unit(2, "meters"),
  6908. weight: math.unit(150, "kg"),
  6909. name: "Crux",
  6910. image: {
  6911. source: "./media/characters/vemus/crux.svg",
  6912. extra: 1074/936,
  6913. bottom: 23/1097
  6914. }
  6915. },
  6916. skunkTanuki: {
  6917. height: math.unit(2, "meters"),
  6918. weight: math.unit(150, "kg"),
  6919. name: "Skunk-Tanuki",
  6920. image: {
  6921. source: "./media/characters/vemus/skunk-tanuki.svg",
  6922. extra: 926/893,
  6923. bottom: 20/946
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(3.75, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Big",
  6935. height: math.unit(8, "meters")
  6936. },
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(100, "meters")
  6940. },
  6941. {
  6942. name: "Macro+",
  6943. height: math.unit(1500, "meters")
  6944. },
  6945. {
  6946. name: "Stellar",
  6947. height: math.unit(14e8, "meters")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(2, "meters"),
  6956. weight: math.unit(70, "kg"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/beherit/front.svg",
  6960. extra: 1234/1109,
  6961. bottom: 55/1289
  6962. }
  6963. }
  6964. },
  6965. [
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(6, "feet")
  6969. },
  6970. {
  6971. name: "Lorg",
  6972. height: math.unit(25, "feet"),
  6973. default: true
  6974. },
  6975. {
  6976. name: "Lorger",
  6977. height: math.unit(75, "feet")
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(200, "meters")
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(2, "meters"),
  6990. weight: math.unit(150, "kg"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/everett/front.svg",
  6994. extra: 1017/866,
  6995. bottom: 86/1103
  6996. }
  6997. },
  6998. paw: {
  6999. height: math.unit(2 / 3.6, "meters"),
  7000. name: "Paw",
  7001. image: {
  7002. source: "./media/characters/everett/paw.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(15, "feet"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Lorg",
  7014. height: math.unit(70, "feet"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Lorger",
  7019. height: math.unit(250, "feet")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(500, "meters")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(2, "meters"),
  7032. weight: math.unit(86, "kg"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/rose/front.svg",
  7036. extra: 1785/1636,
  7037. bottom: 30/1815
  7038. }
  7039. },
  7040. frontSporty: {
  7041. height: math.unit(2, "meters"),
  7042. weight: math.unit(86, "kg"),
  7043. name: "Front (Sporty)",
  7044. image: {
  7045. source: "./media/characters/rose/front-sporty.svg",
  7046. extra: 350/335,
  7047. bottom: 10/360
  7048. }
  7049. },
  7050. frontAlt: {
  7051. height: math.unit(1.6, "meters"),
  7052. weight: math.unit(86, "kg"),
  7053. name: "Front (Alt)",
  7054. image: {
  7055. source: "./media/characters/rose/front-alt.svg",
  7056. extra: 299/283,
  7057. bottom: 3/302
  7058. }
  7059. },
  7060. plush: {
  7061. height: math.unit(2, "meters"),
  7062. weight: math.unit(86/3, "kg"),
  7063. name: "Plush",
  7064. image: {
  7065. source: "./media/characters/rose/plush.svg",
  7066. extra: 361/337,
  7067. bottom: 11/372
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "True Micro",
  7074. height: math.unit(9, "cm")
  7075. },
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(16, "cm")
  7079. },
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(1.85, "meters"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Mini-Macro",
  7087. height: math.unit(5, "meters")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(15, "meters")
  7092. },
  7093. {
  7094. name: "True Macro",
  7095. height: math.unit(40, "meters")
  7096. },
  7097. {
  7098. name: "City Scale",
  7099. height: math.unit(1, "km")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(350, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/regal/front.svg"
  7112. }
  7113. },
  7114. back: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(350, "lbs"),
  7117. name: "Back",
  7118. image: {
  7119. source: "./media/characters/regal/back.svg"
  7120. }
  7121. },
  7122. },
  7123. [
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(350, "feet"),
  7127. default: true
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(4 + 11 / 12, "feet"),
  7136. weight: math.unit(100, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/opal/front.svg"
  7140. }
  7141. },
  7142. frontAlt: {
  7143. height: math.unit(4 + 11 / 12, "feet"),
  7144. weight: math.unit(100, "lbs"),
  7145. name: "Front (Alt)",
  7146. image: {
  7147. source: "./media/characters/opal/front-alt.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Small",
  7154. height: math.unit(4 + 11 / 12, "feet")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(20, "feet"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Macro",
  7163. height: math.unit(120, "feet")
  7164. },
  7165. {
  7166. name: "Megamacro",
  7167. height: math.unit(80, "miles")
  7168. },
  7169. {
  7170. name: "True Size",
  7171. height: math.unit(100000, "lightyears")
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(200, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/vector-wuff/front.svg"
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(2.8, "meters")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(450, "meters"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(15, "kilometers")
  7200. }
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(256, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/dannik/front.svg"
  7212. }
  7213. }
  7214. },
  7215. [
  7216. {
  7217. name: "Macro",
  7218. height: math.unit(69.57, "meters"),
  7219. default: true
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(120, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/azura-saharah/front.svg"
  7232. }
  7233. },
  7234. back: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(120, "lbs"),
  7237. name: "Back",
  7238. image: {
  7239. source: "./media/characters/azura-saharah/back.svg"
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(100, "feet"),
  7247. default: true
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7253. {
  7254. side: {
  7255. height: math.unit(5 + 4 / 12, "feet"),
  7256. weight: math.unit(163, "lbs"),
  7257. name: "Side",
  7258. image: {
  7259. source: "./media/characters/kennedy/side.svg"
  7260. }
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Standard Doggo",
  7266. height: math.unit(5 + 4 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Big Doggo",
  7270. height: math.unit(25 + 3 / 12, "feet"),
  7271. default: true
  7272. },
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(5 + 5/12, "feet"),
  7280. weight: math.unit(100, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/odios-de-lunar/front.svg",
  7284. extra: 1468/1323,
  7285. bottom: 22/1490
  7286. }
  7287. }
  7288. },
  7289. [
  7290. {
  7291. name: "Micro",
  7292. height: math.unit(3, "inches")
  7293. },
  7294. {
  7295. name: "Normal",
  7296. height: math.unit(5.5, "feet"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(100, "feet")
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7307. {
  7308. back: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(220, "lbs"),
  7311. name: "Back",
  7312. image: {
  7313. source: "./media/characters/mandake/back.svg"
  7314. }
  7315. }
  7316. },
  7317. [
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(7, "feet"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(78, "feet")
  7326. },
  7327. {
  7328. name: "Macro+",
  7329. height: math.unit(300, "meters")
  7330. },
  7331. {
  7332. name: "Macro++",
  7333. height: math.unit(2400, "feet")
  7334. },
  7335. {
  7336. name: "Megamacro",
  7337. height: math.unit(5167, "meters")
  7338. },
  7339. {
  7340. name: "Gigamacro",
  7341. height: math.unit(41769, "miles")
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(120, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/yozey/front.svg"
  7354. }
  7355. },
  7356. frontAlt: {
  7357. height: math.unit(6, "feet"),
  7358. weight: math.unit(120, "lbs"),
  7359. name: "Front (Alt)",
  7360. image: {
  7361. source: "./media/characters/yozey/front-alt.svg"
  7362. }
  7363. },
  7364. side: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(120, "lbs"),
  7367. name: "Side",
  7368. image: {
  7369. source: "./media/characters/yozey/side.svg"
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Micro",
  7376. height: math.unit(3, "inches"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(6, "feet")
  7382. }
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(6, "feet"),
  7390. weight: math.unit(103, "lbs"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/valeska-voss/front.svg"
  7394. }
  7395. }
  7396. },
  7397. [
  7398. {
  7399. name: "Mini-Sized Sub",
  7400. height: math.unit(3.1, "inches")
  7401. },
  7402. {
  7403. name: "Mid-Sized Sub",
  7404. height: math.unit(6.2, "inches")
  7405. },
  7406. {
  7407. name: "Full-Sized Sub",
  7408. height: math.unit(9.3, "inches")
  7409. },
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(5 + 2 / 12, "foot"),
  7413. default: true
  7414. },
  7415. ]
  7416. ))
  7417. characterMakers.push(() => makeCharacter(
  7418. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7419. {
  7420. front: {
  7421. height: math.unit(6, "feet"),
  7422. weight: math.unit(160, "lbs"),
  7423. name: "Front",
  7424. image: {
  7425. source: "./media/characters/gene-zeta/front.svg",
  7426. extra: 3006 / 2826,
  7427. bottom: 182 / 3188
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Micro",
  7434. height: math.unit(6, "inches")
  7435. },
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(5 + 11 / 12, "foot"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(140, "feet")
  7444. },
  7445. {
  7446. name: "Supercharged",
  7447. height: math.unit(2500, "feet")
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(350, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/razinox/front.svg",
  7460. extra: 1686 / 1548,
  7461. bottom: 28.2 / 1868
  7462. }
  7463. },
  7464. back: {
  7465. height: math.unit(6, "feet"),
  7466. weight: math.unit(350, "lbs"),
  7467. name: "Back",
  7468. image: {
  7469. source: "./media/characters/razinox/back.svg",
  7470. extra: 1660 / 1590,
  7471. bottom: 15 / 1665
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(10 + 8 / 12, "foot")
  7479. },
  7480. {
  7481. name: "Minimacro",
  7482. height: math.unit(15, "foot")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(60, "foot"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Megamacro",
  7491. height: math.unit(5, "miles")
  7492. },
  7493. {
  7494. name: "Gigamacro",
  7495. height: math.unit(6000, "miles")
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(150, "lbs"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/cobalt/front.svg"
  7508. }
  7509. }
  7510. },
  7511. [
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(8 + 1 / 12, "foot")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(111, "foot"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Supracosmic",
  7523. height: math.unit(1e42, "feet")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(6, "feet"),
  7532. weight: math.unit(140, "lbs"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/amanda/front.svg"
  7536. }
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Micro",
  7542. height: math.unit(5, "inches"),
  7543. default: true
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(2.75, "meters"),
  7552. weight: math.unit(1200, "lb"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/teal/front.svg",
  7556. extra: 2463 / 2320,
  7557. bottom: 166 / 2629
  7558. }
  7559. },
  7560. back: {
  7561. height: math.unit(2.75, "meters"),
  7562. weight: math.unit(1200, "lb"),
  7563. name: "Back",
  7564. image: {
  7565. source: "./media/characters/teal/back.svg",
  7566. extra: 2580 / 2489,
  7567. bottom: 151 / 2731
  7568. }
  7569. },
  7570. sitting: {
  7571. height: math.unit(1.9, "meters"),
  7572. weight: math.unit(1200, "lb"),
  7573. name: "Sitting",
  7574. image: {
  7575. source: "./media/characters/teal/sitting.svg",
  7576. extra: 623 / 590,
  7577. bottom: 121 / 744
  7578. }
  7579. },
  7580. standing: {
  7581. height: math.unit(2.75, "meters"),
  7582. weight: math.unit(1200, "lb"),
  7583. name: "Standing",
  7584. image: {
  7585. source: "./media/characters/teal/standing.svg",
  7586. extra: 923 / 893,
  7587. bottom: 60 / 983
  7588. }
  7589. },
  7590. stretching: {
  7591. height: math.unit(3.65, "meters"),
  7592. weight: math.unit(1200, "lb"),
  7593. name: "Stretching",
  7594. image: {
  7595. source: "./media/characters/teal/stretching.svg",
  7596. extra: 1276 / 1244,
  7597. bottom: 0 / 1276
  7598. }
  7599. },
  7600. legged: {
  7601. height: math.unit(1.3, "meters"),
  7602. weight: math.unit(100, "lb"),
  7603. name: "Legged",
  7604. image: {
  7605. source: "./media/characters/teal/legged.svg",
  7606. extra: 462 / 437,
  7607. bottom: 24 / 486
  7608. }
  7609. },
  7610. naga: {
  7611. height: math.unit(5.4, "meters"),
  7612. weight: math.unit(4000, "lb"),
  7613. name: "Naga",
  7614. image: {
  7615. source: "./media/characters/teal/naga.svg",
  7616. extra: 1902 / 1858,
  7617. bottom: 0 / 1902
  7618. }
  7619. },
  7620. hand: {
  7621. height: math.unit(0.52, "meters"),
  7622. name: "Hand",
  7623. image: {
  7624. source: "./media/characters/teal/hand.svg"
  7625. }
  7626. },
  7627. maw: {
  7628. height: math.unit(0.43, "meters"),
  7629. name: "Maw",
  7630. image: {
  7631. source: "./media/characters/teal/maw.svg"
  7632. }
  7633. },
  7634. slit: {
  7635. height: math.unit(0.25, "meters"),
  7636. name: "Slit",
  7637. image: {
  7638. source: "./media/characters/teal/slit.svg"
  7639. }
  7640. },
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(2.75, "meters"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(300, "feet")
  7651. },
  7652. {
  7653. name: "Macro+",
  7654. height: math.unit(2000, "feet")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7660. {
  7661. frontCat: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(180, "lbs"),
  7664. name: "Front (Cat)",
  7665. image: {
  7666. source: "./media/characters/ravin-amulet/front-cat.svg"
  7667. }
  7668. },
  7669. frontCatAlt: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(180, "lbs"),
  7672. name: "Front (Alt, Cat)",
  7673. image: {
  7674. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7675. }
  7676. },
  7677. frontWerewolf: {
  7678. height: math.unit(6 * 1.2, "feet"),
  7679. weight: math.unit(225, "lbs"),
  7680. name: "Front (Werewolf)",
  7681. image: {
  7682. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7683. }
  7684. },
  7685. backWerewolf: {
  7686. height: math.unit(6 * 1.2, "feet"),
  7687. weight: math.unit(225, "lbs"),
  7688. name: "Back (Werewolf)",
  7689. image: {
  7690. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Nano",
  7697. height: math.unit(1, "micrometer")
  7698. },
  7699. {
  7700. name: "Micro",
  7701. height: math.unit(1, "inch")
  7702. },
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(6, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(60, "feet")
  7711. }
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(165, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/fluoresce/front.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(6, "cm")
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(5 + 7 / 12, "feet"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(56, "feet")
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(1.9, "miles")
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(9 + 6 / 12, "feet"),
  7751. weight: math.unit(523, "lbs"),
  7752. name: "Side",
  7753. image: {
  7754. source: "./media/characters/aurora/side.svg"
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(9 + 6 / 12, "feet")
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(96, "feet"),
  7766. default: true
  7767. },
  7768. {
  7769. name: "Macro+",
  7770. height: math.unit(243, "feet")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(194, "cm"),
  7779. weight: math.unit(90, "kg"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/ranek/front.svg",
  7783. extra: 1862/1791,
  7784. bottom: 80/1942
  7785. }
  7786. },
  7787. back: {
  7788. height: math.unit(194, "cm"),
  7789. weight: math.unit(90, "kg"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/ranek/back.svg",
  7793. extra: 1853/1787,
  7794. bottom: 74/1927
  7795. }
  7796. },
  7797. feral: {
  7798. height: math.unit(30, "cm"),
  7799. weight: math.unit(1.6, "lbs"),
  7800. name: "Feral",
  7801. image: {
  7802. source: "./media/characters/ranek/feral.svg",
  7803. extra: 990/631,
  7804. bottom: 29/1019
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(194, "cm"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Macro",
  7816. height: math.unit(100, "meters")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(5 + 6 / 12, "feet"),
  7825. weight: math.unit(153, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/andrew-cooper/front.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Nano",
  7835. height: math.unit(1, "mm")
  7836. },
  7837. {
  7838. name: "Micro",
  7839. height: math.unit(2, "inches")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(5 + 6 / 12, "feet"),
  7844. default: true
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(180, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/akane-sato/front.svg",
  7857. extra: 1219 / 1140
  7858. }
  7859. },
  7860. back: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(180, "lbs"),
  7863. name: "Back",
  7864. image: {
  7865. source: "./media/characters/akane-sato/back.svg",
  7866. extra: 1219 / 1170
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(2.5, "meters")
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(250, "meters"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(25, "km")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(65, "kg"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/rook/front.svg",
  7895. extra: 960 / 950
  7896. }
  7897. }
  7898. },
  7899. [
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(8.8, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(88, "feet"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "Megamacro",
  7911. height: math.unit(8, "miles")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(12 + 2 / 12, "feet"),
  7920. weight: math.unit(808, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/prodigy/front.svg"
  7924. }
  7925. }
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(12 + 2 / 12, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Macro",
  7935. height: math.unit(143, "feet")
  7936. },
  7937. {
  7938. name: "Macro+",
  7939. height: math.unit(400, "feet")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(225, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/daniel/front.svg"
  7952. }
  7953. },
  7954. leaning: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(225, "lbs"),
  7957. name: "Leaning",
  7958. image: {
  7959. source: "./media/characters/daniel/leaning.svg"
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(1000, "feet"),
  7967. default: true
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7973. {
  7974. front: {
  7975. height: math.unit(6, "feet"),
  7976. weight: math.unit(88, "lbs"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/chiros/front.svg",
  7980. extra: 306 / 226
  7981. }
  7982. },
  7983. side: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(88, "lbs"),
  7986. name: "Side",
  7987. image: {
  7988. source: "./media/characters/chiros/side.svg",
  7989. extra: 306 / 226
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(6, "cm"),
  7997. default: true
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(100, "lbs"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/selka/front.svg",
  8010. extra: 947 / 887
  8011. }
  8012. }
  8013. },
  8014. [
  8015. {
  8016. name: "Normal",
  8017. height: math.unit(5, "cm"),
  8018. default: true
  8019. },
  8020. ]
  8021. ))
  8022. characterMakers.push(() => makeCharacter(
  8023. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8024. {
  8025. front: {
  8026. height: math.unit(8 + 3 / 12, "feet"),
  8027. weight: math.unit(424, "lbs"),
  8028. name: "Front",
  8029. image: {
  8030. source: "./media/characters/verin/front.svg",
  8031. extra: 1845 / 1550
  8032. }
  8033. },
  8034. frontArmored: {
  8035. height: math.unit(8 + 3 / 12, "feet"),
  8036. weight: math.unit(424, "lbs"),
  8037. name: "Front (Armored)",
  8038. image: {
  8039. source: "./media/characters/verin/front-armor.svg",
  8040. extra: 1845 / 1550,
  8041. bottom: 0.01
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(8 + 3 / 12, "feet"),
  8046. weight: math.unit(424, "lbs"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/verin/back.svg",
  8050. bottom: 0.1,
  8051. extra: 1
  8052. }
  8053. },
  8054. foot: {
  8055. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8056. name: "Foot",
  8057. image: {
  8058. source: "./media/characters/verin/foot.svg"
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(8 + 3 / 12, "feet")
  8066. },
  8067. {
  8068. name: "Minimacro",
  8069. height: math.unit(21, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(626, "feet")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(2.718, "meters"),
  8083. weight: math.unit(150, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/sovrim-terraquian/front.svg",
  8087. extra: 1752/1689,
  8088. bottom: 36/1788
  8089. }
  8090. },
  8091. back: {
  8092. height: math.unit(2.718, "meters"),
  8093. weight: math.unit(150, "lbs"),
  8094. name: "Back",
  8095. image: {
  8096. source: "./media/characters/sovrim-terraquian/back.svg",
  8097. extra: 1698/1657,
  8098. bottom: 58/1756
  8099. }
  8100. },
  8101. tongue: {
  8102. height: math.unit(2.865, "feet"),
  8103. name: "Tongue",
  8104. image: {
  8105. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8106. }
  8107. },
  8108. hand: {
  8109. height: math.unit(1.61, "feet"),
  8110. name: "Hand",
  8111. image: {
  8112. source: "./media/characters/sovrim-terraquian/hand.svg"
  8113. }
  8114. },
  8115. foot: {
  8116. height: math.unit(1.05, "feet"),
  8117. name: "Foot",
  8118. image: {
  8119. source: "./media/characters/sovrim-terraquian/foot.svg"
  8120. }
  8121. },
  8122. footAlt: {
  8123. height: math.unit(0.88, "feet"),
  8124. name: "Foot (Alt)",
  8125. image: {
  8126. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Micro",
  8133. height: math.unit(2, "inches")
  8134. },
  8135. {
  8136. name: "Small",
  8137. height: math.unit(1, "meter")
  8138. },
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(Math.E, "meters"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(20, "meters")
  8147. },
  8148. {
  8149. name: "Macro+",
  8150. height: math.unit(400, "meters")
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8156. {
  8157. front: {
  8158. height: math.unit(7, "feet"),
  8159. weight: math.unit(489, "lbs"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/reece-silvermane/front.svg",
  8163. bottom: 0.02,
  8164. extra: 1
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Macro",
  8171. height: math.unit(1.5, "miles"),
  8172. default: true
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(6, "feet"),
  8181. weight: math.unit(78, "kg"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/kane/front.svg",
  8185. extra: 978 / 899
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(2.1, "m"),
  8193. },
  8194. {
  8195. name: "Macro",
  8196. height: math.unit(1, "km"),
  8197. default: true
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(200, "kg"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/tegon/front.svg",
  8210. bottom: 0.01,
  8211. extra: 1
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(1, "inch")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(6 + 3 / 12, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(300, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(69, "miles")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8237. {
  8238. side: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(2304, "lbs"),
  8241. name: "Side",
  8242. image: {
  8243. source: "./media/characters/arcturax/side.svg",
  8244. extra: 790 / 376,
  8245. bottom: 0.01
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(2, "inch")
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(6, "feet")
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(39, "feet"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Megamacro",
  8265. height: math.unit(7, "miles")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(50, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/sentri/front.svg",
  8278. extra: 1750 / 1570,
  8279. bottom: 0.025
  8280. }
  8281. },
  8282. frontAlt: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(50, "lbs"),
  8285. name: "Front (Alt)",
  8286. image: {
  8287. source: "./media/characters/sentri/front-alt.svg",
  8288. extra: 1750 / 1570,
  8289. bottom: 0.025
  8290. }
  8291. },
  8292. },
  8293. [
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(15, "feet"),
  8297. default: true
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(2500, "feet")
  8302. }
  8303. ]
  8304. ))
  8305. characterMakers.push(() => makeCharacter(
  8306. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8307. {
  8308. front: {
  8309. height: math.unit(5 + 8 / 12, "feet"),
  8310. weight: math.unit(130, "lbs"),
  8311. name: "Front",
  8312. image: {
  8313. source: "./media/characters/corvin/front.svg",
  8314. extra: 1803 / 1629
  8315. }
  8316. },
  8317. frontShirt: {
  8318. height: math.unit(5 + 8 / 12, "feet"),
  8319. weight: math.unit(130, "lbs"),
  8320. name: "Front (Shirt)",
  8321. image: {
  8322. source: "./media/characters/corvin/front-shirt.svg",
  8323. extra: 1803 / 1629
  8324. }
  8325. },
  8326. frontPoncho: {
  8327. height: math.unit(5 + 8 / 12, "feet"),
  8328. weight: math.unit(130, "lbs"),
  8329. name: "Front (Poncho)",
  8330. image: {
  8331. source: "./media/characters/corvin/front-poncho.svg",
  8332. extra: 1803 / 1629
  8333. }
  8334. },
  8335. side: {
  8336. height: math.unit(5 + 8 / 12, "feet"),
  8337. weight: math.unit(130, "lbs"),
  8338. name: "Side",
  8339. image: {
  8340. source: "./media/characters/corvin/side.svg",
  8341. extra: 1012 / 945
  8342. }
  8343. },
  8344. back: {
  8345. height: math.unit(5 + 8 / 12, "feet"),
  8346. weight: math.unit(130, "lbs"),
  8347. name: "Back",
  8348. image: {
  8349. source: "./media/characters/corvin/back.svg",
  8350. extra: 1803 / 1629
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Micro",
  8357. height: math.unit(3, "inches")
  8358. },
  8359. {
  8360. name: "Normal",
  8361. height: math.unit(5 + 8 / 12, "feet")
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(300, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Megamacro",
  8370. height: math.unit(500, "miles")
  8371. }
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(135, "lbs"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/q/front.svg",
  8383. extra: 854 / 752,
  8384. bottom: 0.005
  8385. }
  8386. },
  8387. back: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(130, "lbs"),
  8390. name: "Back",
  8391. image: {
  8392. source: "./media/characters/q/back.svg",
  8393. extra: 854 / 752
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Macro",
  8400. height: math.unit(90, "feet"),
  8401. default: true
  8402. },
  8403. {
  8404. name: "Extra Macro",
  8405. height: math.unit(300, "feet"),
  8406. },
  8407. {
  8408. name: "BIG WALF",
  8409. height: math.unit(750, "feet"),
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(150, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/carley/front.svg",
  8422. extra: 3927 / 3540,
  8423. bottom: 29.2 / 735
  8424. }
  8425. }
  8426. },
  8427. [
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(6 + 3 / 12, "feet")
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(185, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Megamacro",
  8439. height: math.unit(8, "miles"),
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(3, "feet"),
  8448. weight: math.unit(28, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/citrine/front.svg"
  8452. }
  8453. }
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(3, "feet"),
  8459. default: true
  8460. }
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8465. {
  8466. front: {
  8467. height: math.unit(14, "feet"),
  8468. weight: math.unit(1450, "kg"),
  8469. capacity: math.unit(15, "people"),
  8470. name: "Front",
  8471. image: {
  8472. source: "./media/characters/aura-starwind/front.svg",
  8473. extra: 1440/1327,
  8474. bottom: 11/1451
  8475. }
  8476. },
  8477. side: {
  8478. height: math.unit(14, "feet"),
  8479. weight: math.unit(1450, "kg"),
  8480. capacity: math.unit(15, "people"),
  8481. name: "Side",
  8482. image: {
  8483. source: "./media/characters/aura-starwind/side.svg",
  8484. extra: 1654 / 1497
  8485. }
  8486. },
  8487. taur: {
  8488. height: math.unit(18, "feet"),
  8489. weight: math.unit(5500, "kg"),
  8490. capacity: math.unit(50, "people"),
  8491. name: "Taur",
  8492. image: {
  8493. source: "./media/characters/aura-starwind/taur.svg",
  8494. extra: 1760 / 1650
  8495. }
  8496. },
  8497. feral: {
  8498. height: math.unit(46, "feet"),
  8499. weight: math.unit(25000, "kg"),
  8500. capacity: math.unit(120, "people"),
  8501. name: "Feral",
  8502. image: {
  8503. source: "./media/characters/aura-starwind/feral.svg"
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(14, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(50, "meters")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(5000, "meters")
  8520. },
  8521. {
  8522. name: "Gigamacro",
  8523. height: math.unit(100000, "kilometers")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(2 + 7 / 12, "feet"),
  8532. weight: math.unit(32, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/rivet/front.svg",
  8536. extra: 1716 / 1658,
  8537. bottom: 0.03
  8538. }
  8539. },
  8540. foot: {
  8541. height: math.unit(0.551, "feet"),
  8542. name: "Rivet's Foot",
  8543. image: {
  8544. source: "./media/characters/rivet/foot.svg"
  8545. },
  8546. rename: true
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(1.5, "inches"),
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(2 + 7 / 12, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(85, "feet")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(2.2, "km")
  8566. }
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(5 + 9 / 12, "feet"),
  8574. weight: math.unit(150, "lbs"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/coffee/front.svg",
  8578. extra: 3666 / 3032,
  8579. bottom: 0.04
  8580. }
  8581. },
  8582. foot: {
  8583. height: math.unit(1.29, "feet"),
  8584. name: "Foot",
  8585. image: {
  8586. source: "./media/characters/coffee/foot.svg"
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Micro",
  8593. height: math.unit(2, "inches"),
  8594. },
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(5 + 9 / 12, "feet"),
  8598. default: true
  8599. },
  8600. {
  8601. name: "Macro",
  8602. height: math.unit(800, "feet")
  8603. },
  8604. {
  8605. name: "Megamacro",
  8606. height: math.unit(25, "miles")
  8607. }
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(6, "feet"),
  8615. weight: math.unit(200, "lbs"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/chari-gal/front.svg",
  8619. extra: 1568 / 1385,
  8620. bottom: 0.047
  8621. }
  8622. },
  8623. gigantamax: {
  8624. height: math.unit(6 * 16, "feet"),
  8625. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8626. name: "Gigantamax",
  8627. image: {
  8628. source: "./media/characters/chari-gal/gigantamax.svg",
  8629. extra: 1124 / 888,
  8630. bottom: 0.03
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(5 + 7 / 12, "feet")
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(200, "feet"),
  8642. default: true
  8643. }
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(150, "lbs"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/nova/front.svg",
  8655. extra: 5000 / 4722,
  8656. bottom: 0.02
  8657. }
  8658. }
  8659. },
  8660. [
  8661. {
  8662. name: "Micro-",
  8663. height: math.unit(0.8, "inches")
  8664. },
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(3 + 1 / 12, "feet"),
  8677. weight: math.unit(21.7, "lbs"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/argent/front.svg",
  8681. extra: 1471 / 1331,
  8682. bottom: 100.8 / 1575.5
  8683. }
  8684. }
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(2, "inches")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(3 + 1 / 12, "feet"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(120, "feet")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8704. {
  8705. lamp: {
  8706. height: math.unit(7 * 1559 / 989, "feet"),
  8707. name: "Magic Lamp",
  8708. image: {
  8709. source: "./media/characters/mira-al-cul/lamp.svg",
  8710. extra: 1617 / 1559
  8711. }
  8712. },
  8713. front: {
  8714. height: math.unit(7, "feet"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/mira-al-cul/front.svg",
  8718. extra: 1044 / 990
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Heavily Restricted",
  8725. height: math.unit(7 * 1559 / 989, "feet")
  8726. },
  8727. {
  8728. name: "Freshly Freed",
  8729. height: math.unit(50 * 1559 / 989, "feet")
  8730. },
  8731. {
  8732. name: "World Encompassing",
  8733. height: math.unit(10000 * 1559 / 989, "miles")
  8734. },
  8735. {
  8736. name: "Galactic",
  8737. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8738. },
  8739. {
  8740. name: "Palmed Universe",
  8741. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "Multiversal Matriarch",
  8746. height: math.unit(8.87e10, "yottameters")
  8747. },
  8748. {
  8749. name: "Void Mother",
  8750. height: math.unit(3.14e110, "yottaparsecs")
  8751. },
  8752. {
  8753. name: "Toying with Transcendence",
  8754. height: math.unit(1e307, "meters")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8760. {
  8761. front: {
  8762. height: math.unit(17 + 1 / 12, "feet"),
  8763. weight: math.unit(476.2 * 5, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/kuro-shi-uchū/front.svg",
  8767. extra: 2329 / 1835,
  8768. bottom: 0.02
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Micro",
  8775. height: math.unit(2, "inches")
  8776. },
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(12, "meters")
  8780. },
  8781. {
  8782. name: "Planetary",
  8783. height: math.unit(0.00929, "AU"),
  8784. default: true
  8785. },
  8786. {
  8787. name: "Universal",
  8788. height: math.unit(20, "gigaparsecs")
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(5 + 2 / 12, "feet"),
  8797. weight: math.unit(120, "lbs"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/katherine/front.svg",
  8801. extra: 2075 / 1969
  8802. }
  8803. },
  8804. dress: {
  8805. height: math.unit(5 + 2 / 12, "feet"),
  8806. weight: math.unit(120, "lbs"),
  8807. name: "Dress",
  8808. image: {
  8809. source: "./media/characters/katherine/dress.svg",
  8810. extra: 2258 / 2064
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(1, "inches"),
  8818. default: true
  8819. },
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(5 + 2 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(100, "meters")
  8827. },
  8828. {
  8829. name: "Megamacro",
  8830. height: math.unit(80, "miles")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(7 + 8 / 12, "feet"),
  8839. weight: math.unit(250, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/yevis/front.svg",
  8843. extra: 1938 / 1755
  8844. }
  8845. }
  8846. },
  8847. [
  8848. {
  8849. name: "Mortal",
  8850. height: math.unit(7 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Battle",
  8854. height: math.unit(25 + 11 / 12, "feet")
  8855. },
  8856. {
  8857. name: "Wrath",
  8858. height: math.unit(1654 + 11 / 12, "feet")
  8859. },
  8860. {
  8861. name: "Planet Destroyer",
  8862. height: math.unit(12000, "miles")
  8863. },
  8864. {
  8865. name: "Galaxy Conqueror",
  8866. height: math.unit(1.45, "zettameters"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Universal War",
  8871. height: math.unit(184, "gigaparsecs")
  8872. },
  8873. {
  8874. name: "Eternity War",
  8875. height: math.unit(1.98e55, "yottaparsecs")
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(5 + 8 / 12, "feet"),
  8884. weight: math.unit(63, "kg"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/xavier/front.svg",
  8888. extra: 944 / 883
  8889. }
  8890. },
  8891. frontStretch: {
  8892. height: math.unit(5 + 8 / 12, "feet"),
  8893. weight: math.unit(63, "kg"),
  8894. name: "Stretching",
  8895. image: {
  8896. source: "./media/characters/xavier/front-stretch.svg",
  8897. extra: 962 / 820
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(5 + 8 / 12, "feet")
  8905. },
  8906. {
  8907. name: "Macro",
  8908. height: math.unit(100, "meters"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "McLargeHuge",
  8913. height: math.unit(10, "miles")
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(5 + 5 / 12, "feet"),
  8922. weight: math.unit(150, "lb"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/joshii/front.svg",
  8926. extra: 765 / 653,
  8927. bottom: 51 / 816
  8928. }
  8929. },
  8930. foot: {
  8931. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8932. name: "Foot",
  8933. image: {
  8934. source: "./media/characters/joshii/foot.svg"
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Micro",
  8941. height: math.unit(2, "inches"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(5 + 5 / 12, "feet")
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(785, "feet")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(24.5, "miles")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(150, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/goddess-elizabeth/front.svg",
  8967. extra: 1800 / 1525,
  8968. bottom: 0.005
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/goddess-elizabeth/foot.svg"
  8976. }
  8977. },
  8978. mouth: {
  8979. height: math.unit(6, "feet"),
  8980. name: "Mouth",
  8981. image: {
  8982. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Micro",
  8989. height: math.unit(12, "feet")
  8990. },
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(80, "miles"),
  8994. default: true
  8995. },
  8996. {
  8997. name: "Macro",
  8998. height: math.unit(15000, "parsecs")
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9004. {
  9005. front: {
  9006. height: math.unit(5 + 9 / 12, "feet"),
  9007. weight: math.unit(144, "lb"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/kara/front.svg"
  9011. }
  9012. },
  9013. feet: {
  9014. height: math.unit(6 / 6.765, "feet"),
  9015. name: "Kara's Feet",
  9016. rename: true,
  9017. image: {
  9018. source: "./media/characters/kara/feet.svg"
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(5 + 9 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(174, "feet"),
  9030. default: true
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9036. {
  9037. front: {
  9038. height: math.unit(18, "feet"),
  9039. weight: math.unit(4050, "lb"),
  9040. name: "Front",
  9041. image: {
  9042. source: "./media/characters/tyrone/front.svg",
  9043. extra: 2405 / 2270,
  9044. bottom: 182 / 2587
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(18, "feet"),
  9052. default: true
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(300, "feet")
  9057. },
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(15, "km")
  9061. },
  9062. {
  9063. name: "Gigamacro",
  9064. height: math.unit(500, "km")
  9065. },
  9066. {
  9067. name: "Teramacro",
  9068. height: math.unit(0.5, "gigameters")
  9069. },
  9070. {
  9071. name: "Omnimacro",
  9072. height: math.unit(1e252, "yottauniverse")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(7 + 8 / 12, "feet"),
  9081. weight: math.unit(120, "lb"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/danny/front.svg",
  9085. extra: 1490 / 1350
  9086. }
  9087. },
  9088. back: {
  9089. height: math.unit(7 + 8 / 12, "feet"),
  9090. weight: math.unit(120, "lb"),
  9091. name: "Back",
  9092. image: {
  9093. source: "./media/characters/danny/back.svg",
  9094. extra: 1490 / 1350
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(7 + 8 / 12, "feet"),
  9102. default: true
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9108. {
  9109. front: {
  9110. height: math.unit(3.5, "inches"),
  9111. weight: math.unit(19, "grams"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/mallow/front.svg",
  9115. extra: 471 / 431
  9116. }
  9117. },
  9118. back: {
  9119. height: math.unit(3.5, "inches"),
  9120. weight: math.unit(19, "grams"),
  9121. name: "Back",
  9122. image: {
  9123. source: "./media/characters/mallow/back.svg",
  9124. extra: 471 / 431
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(3.5, "inches"),
  9132. default: true
  9133. },
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9138. {
  9139. front: {
  9140. height: math.unit(9, "feet"),
  9141. weight: math.unit(230, "kg"),
  9142. name: "Front",
  9143. image: {
  9144. source: "./media/characters/starry-aqua/front.svg"
  9145. }
  9146. },
  9147. back: {
  9148. height: math.unit(9, "feet"),
  9149. weight: math.unit(230, "kg"),
  9150. name: "Back",
  9151. image: {
  9152. source: "./media/characters/starry-aqua/back.svg"
  9153. }
  9154. },
  9155. hand: {
  9156. height: math.unit(9 * 0.1168, "feet"),
  9157. name: "Hand",
  9158. image: {
  9159. source: "./media/characters/starry-aqua/hand.svg"
  9160. }
  9161. },
  9162. foot: {
  9163. height: math.unit(9 * 0.18, "feet"),
  9164. name: "Foot",
  9165. image: {
  9166. source: "./media/characters/starry-aqua/foot.svg"
  9167. }
  9168. }
  9169. },
  9170. [
  9171. {
  9172. name: "Micro",
  9173. height: math.unit(3, "inches")
  9174. },
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(9, "feet")
  9178. },
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(300, "feet"),
  9182. default: true
  9183. },
  9184. {
  9185. name: "Megamacro",
  9186. height: math.unit(3200, "feet")
  9187. }
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9192. {
  9193. front: {
  9194. height: math.unit(15, "feet"),
  9195. weight: math.unit(5026, "lb"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/luka-towers/front.svg",
  9199. extra: 1269/1133,
  9200. bottom: 51/1320
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(15, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Minimacro",
  9212. height: math.unit(25, "feet")
  9213. },
  9214. {
  9215. name: "Macro",
  9216. height: math.unit(320, "feet")
  9217. },
  9218. {
  9219. name: "Megamacro",
  9220. height: math.unit(35000, "feet")
  9221. },
  9222. {
  9223. name: "Gigamacro",
  9224. height: math.unit(4000, "miles")
  9225. },
  9226. {
  9227. name: "Teramacro",
  9228. height: math.unit(15000, "miles")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(6, "feet"),
  9237. weight: math.unit(150, "lb"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/natalie-nightring/front.svg",
  9241. extra: 1,
  9242. bottom: 0.06
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Uh Oh",
  9249. height: math.unit(0.1, "mm")
  9250. },
  9251. {
  9252. name: "Small",
  9253. height: math.unit(3, "inches")
  9254. },
  9255. {
  9256. name: "Human Scale",
  9257. height: math.unit(6, "feet")
  9258. },
  9259. {
  9260. name: "Librarian",
  9261. height: math.unit(50, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Immense",
  9266. height: math.unit(200, "miles")
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(6, "feet"),
  9275. weight: math.unit(180, "lbs"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/danni-rosie/front.svg",
  9279. extra: 1260 / 1128,
  9280. bottom: 0.022
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Micro",
  9287. height: math.unit(2, "inches"),
  9288. default: true
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(5 + 9 / 12, "feet"),
  9297. weight: math.unit(220, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/samantha-kruse/front.svg",
  9301. extra: (985 / 935),
  9302. bottom: 0.03
  9303. }
  9304. },
  9305. frontUndressed: {
  9306. height: math.unit(5 + 9 / 12, "feet"),
  9307. weight: math.unit(220, "lb"),
  9308. name: "Front (Undressed)",
  9309. image: {
  9310. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9311. extra: (973 / 923),
  9312. bottom: 0.025
  9313. }
  9314. },
  9315. fat: {
  9316. height: math.unit(5 + 9 / 12, "feet"),
  9317. weight: math.unit(900, "lb"),
  9318. name: "Front (Fat)",
  9319. image: {
  9320. source: "./media/characters/samantha-kruse/fat.svg",
  9321. extra: 2688 / 2561
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(5 + 9 / 12, "feet"),
  9329. default: true
  9330. }
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9335. {
  9336. back: {
  9337. height: math.unit(5 + 4 / 12, "feet"),
  9338. weight: math.unit(4963, "lb"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/amelia-rosie/back.svg",
  9342. extra: 1113 / 963,
  9343. bottom: 0.01
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Level 0",
  9350. height: math.unit(5 + 4 / 12, "feet")
  9351. },
  9352. {
  9353. name: "Level 1",
  9354. height: math.unit(164597, "feet"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Level 2",
  9359. height: math.unit(956243, "miles")
  9360. },
  9361. {
  9362. name: "Level 3",
  9363. height: math.unit(29421709423, "miles")
  9364. },
  9365. {
  9366. name: "Level 4",
  9367. height: math.unit(154, "lightyears")
  9368. },
  9369. {
  9370. name: "Level 5",
  9371. height: math.unit(4738272, "lightyears")
  9372. },
  9373. {
  9374. name: "Level 6",
  9375. height: math.unit(145787152896, "lightyears")
  9376. },
  9377. ]
  9378. ))
  9379. characterMakers.push(() => makeCharacter(
  9380. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9381. {
  9382. front: {
  9383. height: math.unit(5 + 11 / 12, "feet"),
  9384. weight: math.unit(65, "kg"),
  9385. name: "Front",
  9386. image: {
  9387. source: "./media/characters/rook-kitara/front.svg",
  9388. extra: 1347 / 1274,
  9389. bottom: 0.005
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Totally Unfair",
  9396. height: math.unit(1.8, "mm")
  9397. },
  9398. {
  9399. name: "Lap Rookie",
  9400. height: math.unit(1.4, "feet")
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(5 + 11 / 12, "feet"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "How Did This Happen",
  9409. height: math.unit(80, "miles")
  9410. }
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(7, "feet"),
  9418. weight: math.unit(300, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/pisces/front.svg",
  9422. extra: 2255 / 2115,
  9423. bottom: 0.03
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(7, "feet"),
  9428. weight: math.unit(300, "lb"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/pisces/back.svg",
  9432. extra: 2146 / 2055,
  9433. bottom: 0.04
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(7, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Swimming Pool",
  9445. height: math.unit(12.2, "meters")
  9446. },
  9447. {
  9448. name: "Olympic Swimming Pool",
  9449. height: math.unit(56.3, "meters")
  9450. },
  9451. {
  9452. name: "Lake Superior",
  9453. height: math.unit(93900, "meters")
  9454. },
  9455. {
  9456. name: "Mediterranean Sea",
  9457. height: math.unit(644457, "meters")
  9458. },
  9459. {
  9460. name: "World's Oceans",
  9461. height: math.unit(4567491, "meters")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(2.3, "meters"),
  9470. weight: math.unit(120, "kg"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/zelas/front.svg"
  9474. }
  9475. },
  9476. side: {
  9477. height: math.unit(2.3, "meters"),
  9478. weight: math.unit(120, "kg"),
  9479. name: "Side",
  9480. image: {
  9481. source: "./media/characters/zelas/side.svg"
  9482. }
  9483. },
  9484. back: {
  9485. height: math.unit(2.3, "meters"),
  9486. weight: math.unit(120, "kg"),
  9487. name: "Back",
  9488. image: {
  9489. source: "./media/characters/zelas/back.svg"
  9490. }
  9491. },
  9492. foot: {
  9493. height: math.unit(1.116, "feet"),
  9494. name: "Foot",
  9495. image: {
  9496. source: "./media/characters/zelas/foot.svg"
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Normal",
  9503. height: math.unit(2.3, "meters")
  9504. },
  9505. {
  9506. name: "Macro",
  9507. height: math.unit(30, "meters"),
  9508. default: true
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9514. {
  9515. front: {
  9516. height: math.unit(1, "inch"),
  9517. weight: math.unit(0.21, "grams"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/talbot/front.svg",
  9521. extra: 594 / 544
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Micro",
  9528. height: math.unit(1, "inch"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9535. {
  9536. front: {
  9537. height: math.unit(3 + 3 / 12, "feet"),
  9538. weight: math.unit(51.8, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/fliss/front.svg",
  9542. extra: 840 / 640
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Teeny Tiny",
  9549. height: math.unit(1, "mm")
  9550. },
  9551. {
  9552. name: "Small",
  9553. height: math.unit(1, "inch"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Standard Sylveon",
  9558. height: math.unit(3 + 3 / 12, "feet")
  9559. },
  9560. {
  9561. name: "Large Nuisance",
  9562. height: math.unit(33, "feet")
  9563. },
  9564. {
  9565. name: "City Filler",
  9566. height: math.unit(3000, "feet")
  9567. },
  9568. {
  9569. name: "New Horizon",
  9570. height: math.unit(6000, "miles")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5, "cm"),
  9579. weight: math.unit(1.94, "g"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/fleta/front.svg",
  9583. extra: 835 / 803
  9584. }
  9585. },
  9586. back: {
  9587. height: math.unit(5, "cm"),
  9588. weight: math.unit(1.94, "g"),
  9589. name: "Back",
  9590. image: {
  9591. source: "./media/characters/fleta/back.svg",
  9592. extra: 835 / 803
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Micro",
  9599. height: math.unit(5, "cm"),
  9600. default: true
  9601. },
  9602. ]
  9603. ))
  9604. characterMakers.push(() => makeCharacter(
  9605. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9606. {
  9607. front: {
  9608. height: math.unit(6, "feet"),
  9609. weight: math.unit(225, "lb"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/dominic/front.svg",
  9613. extra: 1770 / 1620,
  9614. bottom: 0.025
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(6, "feet"),
  9619. weight: math.unit(225, "lb"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/dominic/back.svg",
  9623. extra: 1745 / 1620,
  9624. bottom: 0.065
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Nano",
  9631. height: math.unit(0.1, "mm")
  9632. },
  9633. {
  9634. name: "Micro-",
  9635. height: math.unit(1, "mm")
  9636. },
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(4, "inches")
  9640. },
  9641. {
  9642. name: "Normal",
  9643. height: math.unit(6 + 4 / 12, "feet"),
  9644. default: true
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(115, "feet")
  9649. },
  9650. {
  9651. name: "Macro+",
  9652. height: math.unit(955, "feet")
  9653. },
  9654. {
  9655. name: "Megamacro",
  9656. height: math.unit(8990, "feet")
  9657. },
  9658. {
  9659. name: "Gigmacro",
  9660. height: math.unit(9310, "miles")
  9661. },
  9662. {
  9663. name: "Teramacro",
  9664. height: math.unit(1567005010, "miles")
  9665. },
  9666. {
  9667. name: "Examacro",
  9668. height: math.unit(1425, "parsecs")
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(400, "feet"),
  9677. weight: math.unit(44444444, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/major-colonel/front.svg"
  9681. }
  9682. },
  9683. back: {
  9684. height: math.unit(400, "feet"),
  9685. weight: math.unit(44444444, "lb"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/major-colonel/back.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(400, "feet"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9702. {
  9703. catFront: {
  9704. height: math.unit(6, "feet"),
  9705. weight: math.unit(120, "lb"),
  9706. name: "Front (Cat Side)",
  9707. image: {
  9708. source: "./media/characters/axel-lycan/cat-front.svg",
  9709. extra: 430 / 402,
  9710. bottom: 43 / 472.35
  9711. }
  9712. },
  9713. catBack: {
  9714. height: math.unit(6, "feet"),
  9715. weight: math.unit(120, "lb"),
  9716. name: "Back (Cat Side)",
  9717. image: {
  9718. source: "./media/characters/axel-lycan/cat-back.svg",
  9719. extra: 447 / 419,
  9720. bottom: 23.3 / 469
  9721. }
  9722. },
  9723. wolfFront: {
  9724. height: math.unit(6, "feet"),
  9725. weight: math.unit(120, "lb"),
  9726. name: "Front (Wolf Side)",
  9727. image: {
  9728. source: "./media/characters/axel-lycan/wolf-front.svg",
  9729. extra: 485 / 456,
  9730. bottom: 19 / 504
  9731. }
  9732. },
  9733. wolfBack: {
  9734. height: math.unit(6, "feet"),
  9735. weight: math.unit(120, "lb"),
  9736. name: "Back (Wolf Side)",
  9737. image: {
  9738. source: "./media/characters/axel-lycan/wolf-back.svg",
  9739. extra: 475 / 438,
  9740. bottom: 39.2 / 514
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(1, "km"),
  9748. default: true
  9749. },
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(5 + 9 / 12, "feet"),
  9757. weight: math.unit(175, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/vanrel-hyena/front.svg",
  9761. extra: 1086 / 1010,
  9762. bottom: 0.04
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Normal",
  9769. height: math.unit(5 + 9 / 12, "feet"),
  9770. default: true
  9771. },
  9772. ]
  9773. ))
  9774. characterMakers.push(() => makeCharacter(
  9775. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9776. {
  9777. front: {
  9778. height: math.unit(6, "feet"),
  9779. weight: math.unit(103, "lb"),
  9780. name: "Front",
  9781. image: {
  9782. source: "./media/characters/abbott-absol/front.svg",
  9783. extra: 2010 / 1842
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Megamicro",
  9790. height: math.unit(0.1, "mm")
  9791. },
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(1, "inch")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(6, "feet"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(6, "feet"),
  9808. weight: math.unit(264, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/hector/front.svg",
  9812. extra: 2280 / 2130,
  9813. bottom: 0.07
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(12.25, "foot"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(160, "feet")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(150, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/sal/front.svg",
  9838. extra: 1846 / 1699,
  9839. bottom: 0.04
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Megamacro",
  9846. height: math.unit(10, "miles"),
  9847. default: true
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9853. {
  9854. front: {
  9855. height: math.unit(3, "meters"),
  9856. weight: math.unit(450, "kg"),
  9857. name: "front",
  9858. image: {
  9859. source: "./media/characters/ranger/front.svg",
  9860. extra: 2401 / 2243,
  9861. bottom: 0.05
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(3, "meters"),
  9869. default: true
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(14, "feet"),
  9878. weight: math.unit(800, "kg"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/theresa/front.svg",
  9882. extra: 3575 / 3346,
  9883. bottom: 0.03
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(14, "feet"),
  9891. default: true
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9897. {
  9898. front: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(3, "kg"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/ine/front.svg",
  9904. extra: 678 / 539,
  9905. bottom: 0.023
  9906. }
  9907. },
  9908. },
  9909. [
  9910. {
  9911. name: "Normal",
  9912. height: math.unit(2.265, "feet"),
  9913. default: true
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(5, "feet"),
  9922. weight: math.unit(30, "kg"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/vial/front.svg",
  9926. extra: 1365 / 1277,
  9927. bottom: 0.04
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(5, "feet"),
  9935. default: true
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9941. {
  9942. side: {
  9943. height: math.unit(3.4, "meters"),
  9944. weight: math.unit(1000, "lb"),
  9945. name: "Side",
  9946. image: {
  9947. source: "./media/characters/rovoska/side.svg",
  9948. extra: 4403 / 1515
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(3.4, "meters"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(8, "feet"),
  9965. weight: math.unit(315, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/gunner-rotthbauer/front.svg"
  9969. }
  9970. },
  9971. back: {
  9972. height: math.unit(8, "feet"),
  9973. weight: math.unit(315, "lb"),
  9974. name: "Back",
  9975. image: {
  9976. source: "./media/characters/gunner-rotthbauer/back.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(3.5, "inches")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(8, "feet"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(250, "feet")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(1, "AU")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(5 + 5 / 12, "feet"),
  10005. weight: math.unit(140, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/allatia/front.svg",
  10009. extra: 1227 / 1180,
  10010. bottom: 0.027
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(5 + 5 / 12, "feet")
  10018. },
  10019. {
  10020. name: "Macro",
  10021. height: math.unit(250, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(8, "miles")
  10027. }
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10032. {
  10033. front: {
  10034. height: math.unit(6, "feet"),
  10035. weight: math.unit(120, "lb"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/tene/front.svg",
  10039. extra: 814/750,
  10040. bottom: 36/850
  10041. }
  10042. },
  10043. stomping: {
  10044. height: math.unit(2.025, "meters"),
  10045. weight: math.unit(120, "lb"),
  10046. name: "Stomping",
  10047. image: {
  10048. source: "./media/characters/tene/stomping.svg",
  10049. extra: 885/821,
  10050. bottom: 15/900
  10051. }
  10052. },
  10053. sitting: {
  10054. height: math.unit(1, "meter"),
  10055. weight: math.unit(120, "lb"),
  10056. name: "Sitting",
  10057. image: {
  10058. source: "./media/characters/tene/sitting.svg",
  10059. extra: 396/366,
  10060. bottom: 79/475
  10061. }
  10062. },
  10063. smiling: {
  10064. height: math.unit(1.2, "feet"),
  10065. name: "Smiling",
  10066. image: {
  10067. source: "./media/characters/tene/smiling.svg",
  10068. extra: 1364/1071,
  10069. bottom: 0/1364
  10070. }
  10071. },
  10072. smug: {
  10073. height: math.unit(1.3, "feet"),
  10074. name: "Smug",
  10075. image: {
  10076. source: "./media/characters/tene/smug.svg",
  10077. extra: 1323/1082,
  10078. bottom: 0/1323
  10079. }
  10080. },
  10081. feral: {
  10082. height: math.unit(3.9, "feet"),
  10083. weight: math.unit(250, "lb"),
  10084. name: "Feral",
  10085. image: {
  10086. source: "./media/characters/tene/feral.svg",
  10087. extra: 717 / 458,
  10088. bottom: 0.179
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(6, "feet")
  10096. },
  10097. {
  10098. name: "Macro",
  10099. height: math.unit(300, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(5, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10110. {
  10111. side: {
  10112. height: math.unit(6, "feet"),
  10113. name: "Side",
  10114. image: {
  10115. source: "./media/characters/evander/side.svg",
  10116. extra: 877 / 477
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(0.83, "meters"),
  10124. default: true
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(12, "feet"),
  10133. weight: math.unit(1000, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10137. extra: 1762 / 1611
  10138. }
  10139. },
  10140. back: {
  10141. height: math.unit(12, "feet"),
  10142. weight: math.unit(1000, "lb"),
  10143. name: "Back",
  10144. image: {
  10145. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10146. extra: 1762 / 1611
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(12, "feet"),
  10154. default: true
  10155. },
  10156. {
  10157. name: "Kaiju",
  10158. height: math.unit(150, "feet")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/zero-alurus/front.svg"
  10171. }
  10172. },
  10173. back: {
  10174. height: math.unit(6, "feet"),
  10175. weight: math.unit(150, "lb"),
  10176. name: "Back",
  10177. image: {
  10178. source: "./media/characters/zero-alurus/back.svg"
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(5 + 10 / 12, "feet")
  10186. },
  10187. {
  10188. name: "Macro",
  10189. height: math.unit(60, "feet"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Macro+",
  10194. height: math.unit(450, "feet")
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(200, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/mega-shi/front.svg",
  10207. extra: 1279 / 1250,
  10208. bottom: 0.02
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(200, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/mega-shi/back.svg",
  10217. extra: 1279 / 1250,
  10218. bottom: 0.02
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Micro",
  10225. height: math.unit(16 + 6 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Third Dimension",
  10229. height: math.unit(40, "meters")
  10230. },
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(660, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Megamacro",
  10238. height: math.unit(10, "miles")
  10239. },
  10240. {
  10241. name: "Planetary Launch",
  10242. height: math.unit(500, "miles")
  10243. },
  10244. {
  10245. name: "Interstellar",
  10246. height: math.unit(1e9, "miles")
  10247. },
  10248. {
  10249. name: "Leaving the Universe",
  10250. height: math.unit(1, "gigaparsec")
  10251. },
  10252. {
  10253. name: "Travelling Universes",
  10254. height: math.unit(30e15, "parsecs")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(5 + 4/12, "feet"),
  10263. weight: math.unit(120, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/odyssey/front.svg",
  10267. extra: 1747/1571,
  10268. bottom: 47/1794
  10269. }
  10270. },
  10271. side: {
  10272. height: math.unit(5.1, "feet"),
  10273. weight: math.unit(120, "lb"),
  10274. name: "Side",
  10275. image: {
  10276. source: "./media/characters/odyssey/side.svg",
  10277. extra: 1847/1619,
  10278. bottom: 47/1894
  10279. }
  10280. },
  10281. lounging: {
  10282. height: math.unit(1.464, "feet"),
  10283. weight: math.unit(120, "lb"),
  10284. name: "Lounging",
  10285. image: {
  10286. source: "./media/characters/odyssey/lounging.svg",
  10287. extra: 1235/837,
  10288. bottom: 551/1786
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(5 + 4 / 12, "feet")
  10296. },
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(1, "km")
  10300. },
  10301. {
  10302. name: "Megamacro",
  10303. height: math.unit(3000, "km")
  10304. },
  10305. {
  10306. name: "Gigamacro",
  10307. height: math.unit(1, "AU"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Omniversal",
  10312. height: math.unit(100e14, "lightyears")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(300, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/mekuto/front.svg",
  10325. extra: 921 / 832,
  10326. bottom: 0.03
  10327. }
  10328. },
  10329. hand: {
  10330. height: math.unit(6 / 10.24, "feet"),
  10331. name: "Hand",
  10332. image: {
  10333. source: "./media/characters/mekuto/hand.svg"
  10334. }
  10335. },
  10336. foot: {
  10337. height: math.unit(6 / 5.05, "feet"),
  10338. name: "Foot",
  10339. image: {
  10340. source: "./media/characters/mekuto/foot.svg"
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Minimicro",
  10347. height: math.unit(0.2, "inches")
  10348. },
  10349. {
  10350. name: "Micro",
  10351. height: math.unit(1.5, "inches")
  10352. },
  10353. {
  10354. name: "Normal",
  10355. height: math.unit(5 + 11 / 12, "feet"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Minimacro",
  10360. height: math.unit(17 + 9 / 12, "feet")
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(177.5, "feet")
  10365. },
  10366. {
  10367. name: "Megamacro",
  10368. height: math.unit(152, "miles")
  10369. },
  10370. ]
  10371. ))
  10372. characterMakers.push(() => makeCharacter(
  10373. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10374. {
  10375. front: {
  10376. height: math.unit(6.5, "inches"),
  10377. weight: math.unit(13, "oz"),
  10378. name: "Front",
  10379. image: {
  10380. source: "./media/characters/dafydd-tomos/front.svg",
  10381. extra: 2990 / 2603,
  10382. bottom: 0.03
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(6.5, "inches"),
  10390. default: true
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(150, "lb"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/splinter/front.svg",
  10403. extra: 2990 / 2882,
  10404. bottom: 0.04
  10405. }
  10406. },
  10407. back: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(150, "lb"),
  10410. name: "Back",
  10411. image: {
  10412. source: "./media/characters/splinter/back.svg",
  10413. extra: 2990 / 2882,
  10414. bottom: 0.04
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(6, "feet")
  10422. },
  10423. {
  10424. name: "Macro",
  10425. height: math.unit(230, "meters"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(4 + 10 / 12, "feet"),
  10435. weight: math.unit(480, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/snow-gabumon/front.svg",
  10439. extra: 1140 / 963,
  10440. bottom: 0.058
  10441. }
  10442. },
  10443. back: {
  10444. height: math.unit(4 + 10 / 12, "feet"),
  10445. weight: math.unit(480, "lb"),
  10446. name: "Back",
  10447. image: {
  10448. source: "./media/characters/snow-gabumon/back.svg",
  10449. extra: 1115 / 962,
  10450. bottom: 0.041
  10451. }
  10452. },
  10453. frontUndresed: {
  10454. height: math.unit(4 + 10 / 12, "feet"),
  10455. weight: math.unit(480, "lb"),
  10456. name: "Front (Undressed)",
  10457. image: {
  10458. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10459. extra: 1061 / 960,
  10460. bottom: 0.045
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(1, "inch")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(4 + 10 / 12, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(200, "feet")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(120, "miles")
  10481. },
  10482. {
  10483. name: "Gigamacro",
  10484. height: math.unit(9800, "miles")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(1.7, "meters"),
  10493. weight: math.unit(140, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/moody/front.svg",
  10497. extra: 3226 / 3007,
  10498. bottom: 0.087
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Micro",
  10505. height: math.unit(1, "mm")
  10506. },
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(1.7, "meters"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(80, "meters")
  10515. },
  10516. {
  10517. name: "Macro+",
  10518. height: math.unit(500, "meters")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(150, "lb"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/zyas/front.svg",
  10531. extra: 1180 / 1120,
  10532. bottom: 0.045
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(10, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Macro",
  10544. height: math.unit(500, "feet")
  10545. },
  10546. {
  10547. name: "Megamacro",
  10548. height: math.unit(5, "miles")
  10549. },
  10550. {
  10551. name: "Teramacro",
  10552. height: math.unit(150000, "miles")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(150, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/cuon/front.svg",
  10565. extra: 1390 / 1320,
  10566. bottom: 0.008
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(3, "inches")
  10574. },
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(18 + 9 / 12, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(360, "feet")
  10583. },
  10584. {
  10585. name: "Megamacro",
  10586. height: math.unit(360, "miles")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(2.4, "meters"),
  10595. weight: math.unit(70, "kg"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/nyanuxk/front.svg",
  10599. extra: 1172 / 1084,
  10600. bottom: 0.065
  10601. }
  10602. },
  10603. side: {
  10604. height: math.unit(2.4, "meters"),
  10605. weight: math.unit(70, "kg"),
  10606. name: "Side",
  10607. image: {
  10608. source: "./media/characters/nyanuxk/side.svg",
  10609. extra: 1190 / 1132,
  10610. bottom: 0.007
  10611. }
  10612. },
  10613. back: {
  10614. height: math.unit(2.4, "meters"),
  10615. weight: math.unit(70, "kg"),
  10616. name: "Back",
  10617. image: {
  10618. source: "./media/characters/nyanuxk/back.svg",
  10619. extra: 1200 / 1141,
  10620. bottom: 0.015
  10621. }
  10622. },
  10623. foot: {
  10624. height: math.unit(0.52, "meters"),
  10625. name: "Foot",
  10626. image: {
  10627. source: "./media/characters/nyanuxk/foot.svg"
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Micro",
  10634. height: math.unit(2, "cm")
  10635. },
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(2.4, "meters"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Smaller Macro",
  10643. height: math.unit(120, "meters")
  10644. },
  10645. {
  10646. name: "Bigger Macro",
  10647. height: math.unit(1.2, "km")
  10648. },
  10649. {
  10650. name: "Megamacro",
  10651. height: math.unit(15, "kilometers")
  10652. },
  10653. {
  10654. name: "Gigamacro",
  10655. height: math.unit(2000, "km")
  10656. },
  10657. {
  10658. name: "Teramacro",
  10659. height: math.unit(500000, "km")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10665. {
  10666. side: {
  10667. height: math.unit(6, "feet"),
  10668. name: "Side",
  10669. image: {
  10670. source: "./media/characters/ailbhe/side.svg",
  10671. extra: 757 / 464,
  10672. bottom: 0.041
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(1.07, "meters"),
  10680. default: true
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(120, "kg"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/zevulfius/front.svg",
  10693. extra: 965 / 903
  10694. }
  10695. },
  10696. side: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(120, "kg"),
  10699. name: "Side",
  10700. image: {
  10701. source: "./media/characters/zevulfius/side.svg",
  10702. extra: 939 / 900
  10703. }
  10704. },
  10705. back: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(120, "kg"),
  10708. name: "Back",
  10709. image: {
  10710. source: "./media/characters/zevulfius/back.svg",
  10711. extra: 918 / 854,
  10712. bottom: 0.005
  10713. }
  10714. },
  10715. foot: {
  10716. height: math.unit(6 / 3.72, "feet"),
  10717. name: "Foot",
  10718. image: {
  10719. source: "./media/characters/zevulfius/foot.svg"
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(750, "meters")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(20, "km"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Gigamacro",
  10735. height: math.unit(2000, "km")
  10736. },
  10737. {
  10738. name: "Teramacro",
  10739. height: math.unit(250000, "km")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(100, "feet"),
  10748. weight: math.unit(350, "kg"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/rikes/front.svg",
  10752. extra: 1565 / 1483,
  10753. bottom: 0.017
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Macro",
  10760. height: math.unit(100, "feet"),
  10761. default: true
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(8, "feet"),
  10770. weight: math.unit(356, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/adam-silver-mane/front.svg",
  10774. extra: 1036/937,
  10775. bottom: 63/1099
  10776. }
  10777. },
  10778. side: {
  10779. height: math.unit(8, "feet"),
  10780. weight: math.unit(356, "lb"),
  10781. name: "Side",
  10782. image: {
  10783. source: "./media/characters/adam-silver-mane/side.svg",
  10784. extra: 997/901,
  10785. bottom: 59/1056
  10786. }
  10787. },
  10788. frontNsfw: {
  10789. height: math.unit(8, "feet"),
  10790. weight: math.unit(356, "lb"),
  10791. name: "Front (NSFW)",
  10792. image: {
  10793. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10794. extra: 1036/937,
  10795. bottom: 63/1099
  10796. }
  10797. },
  10798. sideNsfw: {
  10799. height: math.unit(8, "feet"),
  10800. weight: math.unit(356, "lb"),
  10801. name: "Side (NSFW)",
  10802. image: {
  10803. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10804. extra: 997/901,
  10805. bottom: 59/1056
  10806. }
  10807. },
  10808. dick: {
  10809. height: math.unit(2.1, "feet"),
  10810. name: "Dick",
  10811. image: {
  10812. source: "./media/characters/adam-silver-mane/dick.svg"
  10813. }
  10814. },
  10815. taur: {
  10816. height: math.unit(16, "feet"),
  10817. weight: math.unit(1500, "kg"),
  10818. name: "Taur",
  10819. image: {
  10820. source: "./media/characters/adam-silver-mane/taur.svg",
  10821. extra: 1713 / 1571,
  10822. bottom: 0.01
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(8, "feet")
  10830. },
  10831. {
  10832. name: "Minimacro",
  10833. height: math.unit(80, "feet")
  10834. },
  10835. {
  10836. name: "MDA",
  10837. height: math.unit(80, "meters")
  10838. },
  10839. {
  10840. name: "Macro",
  10841. height: math.unit(800, "feet"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(8000, "feet")
  10847. },
  10848. {
  10849. name: "Gigamacro",
  10850. height: math.unit(800, "miles")
  10851. },
  10852. {
  10853. name: "Teramacro",
  10854. height: math.unit(80000, "miles")
  10855. },
  10856. {
  10857. name: "Celestial",
  10858. height: math.unit(8e6, "miles")
  10859. },
  10860. {
  10861. name: "Star Dragon",
  10862. height: math.unit(800000, "parsecs")
  10863. },
  10864. {
  10865. name: "Godly",
  10866. height: math.unit(800, "teraparsecs")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/ky'owin/front.svg",
  10879. extra: 3888 / 3068,
  10880. bottom: 0.015
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Normal",
  10887. height: math.unit(6 + 8 / 12, "feet")
  10888. },
  10889. {
  10890. name: "Large",
  10891. height: math.unit(68, "feet")
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(132, "feet")
  10896. },
  10897. {
  10898. name: "Macro+",
  10899. height: math.unit(340, "feet")
  10900. },
  10901. {
  10902. name: "Macro++",
  10903. height: math.unit(680, "feet"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(1, "mile")
  10909. },
  10910. {
  10911. name: "Megamacro+",
  10912. height: math.unit(10, "miles")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(4, "feet"),
  10921. weight: math.unit(50, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/mal/front.svg",
  10925. extra: 785 / 724,
  10926. bottom: 0.07
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(4, "inches")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(4, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(200, "feet")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/jordan-deware/front.svg",
  10955. extra: 1191 / 1012
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Nano",
  10962. height: math.unit(0.01, "mm")
  10963. },
  10964. {
  10965. name: "Minimicro",
  10966. height: math.unit(1, "mm")
  10967. },
  10968. {
  10969. name: "Micro",
  10970. height: math.unit(0.5, "inches")
  10971. },
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(4, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Minimacro",
  10979. height: math.unit(40, "meters")
  10980. },
  10981. {
  10982. name: "Small Macro",
  10983. height: math.unit(400, "meters")
  10984. },
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(4, "miles")
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(40, "miles")
  10992. },
  10993. {
  10994. name: "Megamacro+",
  10995. height: math.unit(400, "miles")
  10996. },
  10997. {
  10998. name: "Gigamacro",
  10999. height: math.unit(400000, "miles")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11005. {
  11006. side: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(150, "lb"),
  11009. name: "Side",
  11010. image: {
  11011. source: "./media/characters/kimiko/side.svg",
  11012. extra: 600 / 358
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(15, "feet"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(220, "feet")
  11025. },
  11026. {
  11027. name: "Macro+",
  11028. height: math.unit(1450, "feet")
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(11500, "feet")
  11033. },
  11034. {
  11035. name: "Gigamacro",
  11036. height: math.unit(9500, "miles")
  11037. },
  11038. {
  11039. name: "Teramacro",
  11040. height: math.unit(2208005005, "miles")
  11041. },
  11042. {
  11043. name: "Examacro",
  11044. height: math.unit(2750, "parsecs")
  11045. },
  11046. {
  11047. name: "Zettamacro",
  11048. height: math.unit(101500, "parsecs")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(70, "kg"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/andrew-sleepy/front.svg"
  11061. }
  11062. },
  11063. side: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(70, "kg"),
  11066. name: "Side",
  11067. image: {
  11068. source: "./media/characters/andrew-sleepy/side.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(1, "mm"),
  11076. default: true
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(150, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/judio/front.svg",
  11089. extra: 1258 / 1110
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(5 + 6 / 12, "feet")
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(1000, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Megamacro",
  11105. height: math.unit(10, "miles")
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11111. {
  11112. frontDressed: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(68, "kg"),
  11115. name: "Front (Dressed)",
  11116. image: {
  11117. source: "./media/characters/nomaxice/front-dressed.svg",
  11118. extra: 1137/824,
  11119. bottom: 74/1211
  11120. }
  11121. },
  11122. frontShorts: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(68, "kg"),
  11125. name: "Front (Shorts)",
  11126. image: {
  11127. source: "./media/characters/nomaxice/front-shorts.svg",
  11128. extra: 1137/824,
  11129. bottom: 74/1211
  11130. }
  11131. },
  11132. back: {
  11133. height: math.unit(6, "feet"),
  11134. weight: math.unit(68, "kg"),
  11135. name: "Back",
  11136. image: {
  11137. source: "./media/characters/nomaxice/back.svg",
  11138. extra: 822/786,
  11139. bottom: 39/861
  11140. }
  11141. },
  11142. hand: {
  11143. height: math.unit(0.565, "feet"),
  11144. name: "Hand",
  11145. image: {
  11146. source: "./media/characters/nomaxice/hand.svg"
  11147. }
  11148. },
  11149. foot: {
  11150. height: math.unit(1, "feet"),
  11151. name: "Foot",
  11152. image: {
  11153. source: "./media/characters/nomaxice/foot.svg"
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Micro",
  11160. height: math.unit(8, "cm")
  11161. },
  11162. {
  11163. name: "Norm",
  11164. height: math.unit(1.82, "m")
  11165. },
  11166. {
  11167. name: "Norm+",
  11168. height: math.unit(8.8, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Big",
  11173. height: math.unit(8, "meters")
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(18, "meters")
  11178. },
  11179. {
  11180. name: "Macro+",
  11181. height: math.unit(88, "meters")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(12, "feet"),
  11190. weight: math.unit(1.5, "tons"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/dydros/front.svg",
  11194. extra: 863 / 800,
  11195. bottom: 0.015
  11196. }
  11197. },
  11198. back: {
  11199. height: math.unit(12, "feet"),
  11200. weight: math.unit(1.5, "tons"),
  11201. name: "Back",
  11202. image: {
  11203. source: "./media/characters/dydros/back.svg",
  11204. extra: 900 / 843,
  11205. bottom: 0.005
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(12, "feet"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(6, "feet"),
  11222. weight: math.unit(100, "kg"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/riggi/front.svg",
  11226. extra: 5787 / 5303
  11227. }
  11228. },
  11229. hyper: {
  11230. height: math.unit(6 * 5 / 3, "feet"),
  11231. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11232. name: "Hyper",
  11233. image: {
  11234. source: "./media/characters/riggi/hyper.svg",
  11235. extra: 3595 / 3485
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Small Macro",
  11242. height: math.unit(50, "feet")
  11243. },
  11244. {
  11245. name: "Default",
  11246. height: math.unit(200, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Loom",
  11251. height: math.unit(10000, "feet")
  11252. },
  11253. {
  11254. name: "Cruising Altitude",
  11255. height: math.unit(30000, "feet")
  11256. },
  11257. {
  11258. name: "Megamacro",
  11259. height: math.unit(100, "miles")
  11260. },
  11261. {
  11262. name: "Continent Sized",
  11263. height: math.unit(2800, "miles")
  11264. },
  11265. {
  11266. name: "Earth Sized",
  11267. height: math.unit(8000, "miles")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(250, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/alexi/front.svg",
  11280. extra: 3483 / 3291,
  11281. bottom: 0.04
  11282. }
  11283. },
  11284. back: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(250, "lb"),
  11287. name: "Back",
  11288. image: {
  11289. source: "./media/characters/alexi/back.svg",
  11290. extra: 3533 / 3356,
  11291. bottom: 0.021
  11292. }
  11293. },
  11294. frontTransforming: {
  11295. height: math.unit(8.58, "feet"),
  11296. weight: math.unit(1300, "lb"),
  11297. name: "Transforming",
  11298. image: {
  11299. source: "./media/characters/alexi/front-transforming.svg",
  11300. extra: 437 / 409,
  11301. bottom: 19 / 458.66
  11302. }
  11303. },
  11304. frontTransformed: {
  11305. height: math.unit(12.5, "feet"),
  11306. weight: math.unit(4000, "lb"),
  11307. name: "Transformed",
  11308. image: {
  11309. source: "./media/characters/alexi/front-transformed.svg",
  11310. extra: 639 / 614,
  11311. bottom: 30.55 / 671
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(14, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Minimacro",
  11323. height: math.unit(30, "meters")
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(500, "meters")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(9000, "km")
  11332. },
  11333. {
  11334. name: "Teramacro",
  11335. height: math.unit(384000, "km")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Kayroo", species: ["kangaroo"], 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/kayroo/front.svg",
  11348. extra: 1153 / 1038,
  11349. bottom: 0.06
  11350. }
  11351. },
  11352. foot: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(150, "lb"),
  11355. name: "Foot",
  11356. image: {
  11357. source: "./media/characters/kayroo/foot.svg"
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(8, "feet"),
  11365. default: true
  11366. },
  11367. {
  11368. name: "Minimacro",
  11369. height: math.unit(250, "feet")
  11370. },
  11371. {
  11372. name: "Macro",
  11373. height: math.unit(2800, "feet")
  11374. },
  11375. {
  11376. name: "Megamacro",
  11377. height: math.unit(5200, "feet")
  11378. },
  11379. {
  11380. name: "Gigamacro",
  11381. height: math.unit(27000, "feet")
  11382. },
  11383. {
  11384. name: "Omega",
  11385. height: math.unit(45000, "feet")
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(18, "feet"),
  11394. weight: math.unit(5800, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/rhys/front.svg",
  11398. extra: 3386 / 3090,
  11399. bottom: 0.07
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(18, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Working Size",
  11411. height: math.unit(200, "feet")
  11412. },
  11413. {
  11414. name: "Demolition Size",
  11415. height: math.unit(2000, "feet")
  11416. },
  11417. {
  11418. name: "Maximum Licensed Size",
  11419. height: math.unit(5, "miles")
  11420. },
  11421. {
  11422. name: "Maximum Observed Size",
  11423. height: math.unit(10, "yottameters")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(250, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/toto/front.svg",
  11436. extra: 527 / 479,
  11437. bottom: 0.05
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "Micro",
  11444. height: math.unit(3, "feet")
  11445. },
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(10, "feet")
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(150, "feet"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Megamacro",
  11457. height: math.unit(1200, "feet")
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "King", species: ["lion"], tags: ["anthro"] },
  11463. {
  11464. back: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Back",
  11468. image: {
  11469. source: "./media/characters/king/back.svg"
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Micro",
  11476. height: math.unit(2, "inches")
  11477. },
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(8, "feet")
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(200, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Megamacro",
  11489. height: math.unit(50, "miles")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(11, "feet"),
  11498. weight: math.unit(1400, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/cordite/front.svg",
  11502. extra: 1919/1827,
  11503. bottom: 40/1959
  11504. }
  11505. },
  11506. side: {
  11507. height: math.unit(11, "feet"),
  11508. weight: math.unit(1400, "lb"),
  11509. name: "Side",
  11510. image: {
  11511. source: "./media/characters/cordite/side.svg",
  11512. extra: 1908/1793,
  11513. bottom: 38/1946
  11514. }
  11515. },
  11516. back: {
  11517. height: math.unit(11, "feet"),
  11518. weight: math.unit(1400, "lb"),
  11519. name: "Back",
  11520. image: {
  11521. source: "./media/characters/cordite/back.svg",
  11522. extra: 1938/1837,
  11523. bottom: 10/1948
  11524. }
  11525. },
  11526. feral: {
  11527. height: math.unit(2, "feet"),
  11528. weight: math.unit(90, "lb"),
  11529. name: "Feral",
  11530. image: {
  11531. source: "./media/characters/cordite/feral.svg",
  11532. extra: 1260 / 755,
  11533. bottom: 0.05
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(11, "feet"),
  11541. default: true
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11547. {
  11548. front: {
  11549. height: math.unit(6, "feet"),
  11550. weight: math.unit(150, "lb"),
  11551. name: "Front",
  11552. image: {
  11553. source: "./media/characters/pianostrong/front.svg",
  11554. extra: 6577 / 6254,
  11555. bottom: 0.02
  11556. }
  11557. },
  11558. side: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(150, "lb"),
  11561. name: "Side",
  11562. image: {
  11563. source: "./media/characters/pianostrong/side.svg",
  11564. extra: 6106 / 5730
  11565. }
  11566. },
  11567. back: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Back",
  11571. image: {
  11572. source: "./media/characters/pianostrong/back.svg",
  11573. extra: 6085 / 5733,
  11574. bottom: 0.01
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Macro",
  11581. height: math.unit(100, "feet")
  11582. },
  11583. {
  11584. name: "Macro+",
  11585. height: math.unit(300, "feet"),
  11586. default: true
  11587. },
  11588. {
  11589. name: "Macro++",
  11590. height: math.unit(1000, "feet")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(150, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/kona/front.svg",
  11603. extra: 2960 / 2629,
  11604. bottom: 0.005
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(11 + 8 / 12, "feet")
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(850, "feet"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Macro+",
  11620. height: math.unit(1.5, "km"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(80, "miles")
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(3500, "miles")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11635. {
  11636. side: {
  11637. height: math.unit(1.9, "meters"),
  11638. weight: math.unit(326, "kg"),
  11639. name: "Side",
  11640. image: {
  11641. source: "./media/characters/levi/side.svg",
  11642. extra: 1704 / 1334,
  11643. bottom: 0.02
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(1.9, "meters"),
  11651. default: true
  11652. },
  11653. {
  11654. name: "Macro",
  11655. height: math.unit(20, "meters")
  11656. },
  11657. {
  11658. name: "Macro+",
  11659. height: math.unit(200, "meters")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(2, "km")
  11664. },
  11665. {
  11666. name: "Megamacro+",
  11667. height: math.unit(20, "km")
  11668. },
  11669. {
  11670. name: "Gigamacro",
  11671. height: math.unit(2500, "km")
  11672. },
  11673. {
  11674. name: "Gigamacro+",
  11675. height: math.unit(120000, "km")
  11676. },
  11677. {
  11678. name: "Teramacro",
  11679. height: math.unit(7.77e6, "km")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(6 + 4/12, "feet"),
  11688. weight: math.unit(190, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/bmc/front.svg",
  11692. extra: 1626/1472,
  11693. bottom: 79/1705
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6 + 4/12, "feet"),
  11698. weight: math.unit(190, "lb"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/bmc/back.svg",
  11702. extra: 1640/1479,
  11703. bottom: 45/1685
  11704. }
  11705. },
  11706. frontArmor: {
  11707. height: math.unit(6 + 4/12, "feet"),
  11708. weight: math.unit(190, "lb"),
  11709. name: "Front-armor",
  11710. image: {
  11711. source: "./media/characters/bmc/front-armor.svg",
  11712. extra: 1538/1468,
  11713. bottom: 79/1617
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Human-sized",
  11720. height: math.unit(6 + 4 / 12, "feet")
  11721. },
  11722. {
  11723. name: "Interactive Size",
  11724. height: math.unit(25, "feet")
  11725. },
  11726. {
  11727. name: "Small",
  11728. height: math.unit(250, "feet")
  11729. },
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(1250, "feet"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Good Day",
  11737. height: math.unit(88, "miles")
  11738. },
  11739. {
  11740. name: "Largest Measured Size",
  11741. height: math.unit(105.960, "galaxies")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(20, "feet"),
  11750. weight: math.unit(2016, "kg"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/sven-the-kaiju/front.svg",
  11754. extra: 1277/1250,
  11755. bottom: 35/1312
  11756. }
  11757. },
  11758. mouth: {
  11759. height: math.unit(1.85, "feet"),
  11760. name: "Mouth",
  11761. image: {
  11762. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Fairy",
  11769. height: math.unit(6, "inches")
  11770. },
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(20, "feet"),
  11774. default: true
  11775. },
  11776. {
  11777. name: "Rampage",
  11778. height: math.unit(200, "feet")
  11779. },
  11780. {
  11781. name: "Archfey Forest Guardian",
  11782. height: math.unit(1, "mile")
  11783. },
  11784. ]
  11785. ))
  11786. characterMakers.push(() => makeCharacter(
  11787. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11788. {
  11789. front: {
  11790. height: math.unit(4, "meters"),
  11791. weight: math.unit(2, "tons"),
  11792. name: "Front",
  11793. image: {
  11794. source: "./media/characters/marik/front.svg",
  11795. extra: 1057 / 1003,
  11796. bottom: 0.08
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Normal",
  11803. height: math.unit(4, "meters"),
  11804. default: true
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(20, "meters")
  11809. },
  11810. {
  11811. name: "Megamacro",
  11812. height: math.unit(50, "km")
  11813. },
  11814. {
  11815. name: "Gigamacro",
  11816. height: math.unit(100, "km")
  11817. },
  11818. {
  11819. name: "Alpha Macro",
  11820. height: math.unit(7.88e7, "yottameters")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(110, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/mel/front.svg",
  11833. extra: 736 / 617,
  11834. bottom: 0.017
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Pico",
  11841. height: math.unit(3, "pm")
  11842. },
  11843. {
  11844. name: "Nano",
  11845. height: math.unit(3, "nm")
  11846. },
  11847. {
  11848. name: "Micro",
  11849. height: math.unit(0.3, "mm"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Micro+",
  11854. height: math.unit(3, "mm")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(5 + 10.5 / 12, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11864. {
  11865. kaiju: {
  11866. height: math.unit(1.75, "meters"),
  11867. weight: math.unit(55, "kg"),
  11868. name: "Kaiju",
  11869. image: {
  11870. source: "./media/characters/lykonous/kaiju.svg",
  11871. extra: 1055 / 946,
  11872. bottom: 0.135
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(2.5, "meters"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Kaiju Dragon",
  11884. height: math.unit(60, "meters")
  11885. },
  11886. {
  11887. name: "Mega Kaiju",
  11888. height: math.unit(120, "km")
  11889. },
  11890. {
  11891. name: "Giga Kaiju",
  11892. height: math.unit(200, "megameters")
  11893. },
  11894. {
  11895. name: "Terra Kaiju",
  11896. height: math.unit(400, "gigameters")
  11897. },
  11898. {
  11899. name: "Kaiju Dragon God",
  11900. height: math.unit(13000, "exaparsecs")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(150, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/blü/front.svg",
  11913. extra: 1883 / 1564,
  11914. bottom: 0.031
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Normal",
  11921. height: math.unit(13, "feet"),
  11922. default: true
  11923. },
  11924. {
  11925. name: "Big Boi",
  11926. height: math.unit(150, "meters")
  11927. },
  11928. {
  11929. name: "Mini Stomper",
  11930. height: math.unit(300, "meters")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(1000, "meters")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(11000, "meters")
  11939. },
  11940. {
  11941. name: "Gigamacro",
  11942. height: math.unit(11000, "km")
  11943. },
  11944. {
  11945. name: "Teramacro",
  11946. height: math.unit(420000, "km")
  11947. },
  11948. {
  11949. name: "Examacro",
  11950. height: math.unit(120, "parsecs")
  11951. },
  11952. {
  11953. name: "God Tho",
  11954. height: math.unit(98000000000, "parsecs")
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11960. {
  11961. taurFront: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(200, "lb"),
  11964. name: "Taur (Front)",
  11965. image: {
  11966. source: "./media/characters/scales/taur-front.svg",
  11967. extra: 1,
  11968. bottom: 0.05
  11969. }
  11970. },
  11971. taurBack: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(200, "lb"),
  11974. name: "Taur (Back)",
  11975. image: {
  11976. source: "./media/characters/scales/taur-back.svg",
  11977. extra: 1,
  11978. bottom: 0.08
  11979. }
  11980. },
  11981. anthro: {
  11982. height: math.unit(6 * 7 / 12, "feet"),
  11983. weight: math.unit(100, "lb"),
  11984. name: "Anthro",
  11985. image: {
  11986. source: "./media/characters/scales/anthro.svg",
  11987. extra: 1,
  11988. bottom: 0.06
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(12, "feet"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(6, "feet"),
  12005. weight: math.unit(150, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/koragos/front.svg",
  12009. extra: 841 / 794,
  12010. bottom: 0.035
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(6, "feet"),
  12015. weight: math.unit(150, "lb"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/koragos/back.svg",
  12019. extra: 841 / 810,
  12020. bottom: 0.022
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(6 + 11 / 12, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(490, "feet")
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(10, "miles")
  12037. },
  12038. {
  12039. name: "Gigamacro",
  12040. height: math.unit(50, "miles")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(250, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/xylrem/front.svg",
  12053. extra: 3323 / 3050,
  12054. bottom: 0.065
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Micro",
  12061. height: math.unit(4, "feet")
  12062. },
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(16, "feet"),
  12066. default: true
  12067. },
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(2720, "feet")
  12071. },
  12072. {
  12073. name: "Megamacro",
  12074. height: math.unit(25000, "miles")
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(8, "feet"),
  12083. weight: math.unit(250, "kg"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/ikideru/front.svg",
  12087. extra: 930 / 870,
  12088. bottom: 0.087
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(8, "feet"),
  12093. weight: math.unit(250, "kg"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/ikideru/back.svg",
  12097. extra: 919 / 852,
  12098. bottom: 0.055
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Rare",
  12105. height: math.unit(8, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Playful Loom",
  12110. height: math.unit(80, "feet")
  12111. },
  12112. {
  12113. name: "City Leaner",
  12114. height: math.unit(230, "feet")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(2500, "feet")
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(26400, "feet")
  12123. },
  12124. {
  12125. name: "Tectonic Shifter",
  12126. height: math.unit(1.7, "megameters")
  12127. },
  12128. {
  12129. name: "Planet Carer",
  12130. height: math.unit(21, "megameters")
  12131. },
  12132. {
  12133. name: "God",
  12134. height: math.unit(11157.22, "parsecs")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(120, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/neo/front.svg"
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Micro",
  12153. height: math.unit(2, "inches"),
  12154. default: true
  12155. },
  12156. {
  12157. name: "Human Size",
  12158. height: math.unit(5 + 8 / 12, "feet")
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(13 + 10 / 12, "feet"),
  12167. weight: math.unit(5320, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/chauncey-chantz/front.svg",
  12171. extra: 1587 / 1435,
  12172. bottom: 0.02
  12173. }
  12174. },
  12175. },
  12176. [
  12177. {
  12178. name: "Normal",
  12179. height: math.unit(13 + 10 / 12, "feet"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Macro",
  12184. height: math.unit(45, "feet")
  12185. },
  12186. {
  12187. name: "Megamacro",
  12188. height: math.unit(250, "miles")
  12189. },
  12190. {
  12191. name: "Planetary",
  12192. height: math.unit(10000, "miles")
  12193. },
  12194. {
  12195. name: "Galactic",
  12196. height: math.unit(40000, "parsecs")
  12197. },
  12198. {
  12199. name: "Universal",
  12200. height: math.unit(1, "yottameter")
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12206. {
  12207. front: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(150, "lb"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/epifox/front.svg",
  12213. extra: 1,
  12214. bottom: 0.075
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(6, "inches")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(12, "feet"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(3810, "feet")
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(500, "miles")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(1.8796, "m"),
  12243. weight: math.unit(230, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/colin-t/front.svg",
  12247. extra: 1272 / 1193,
  12248. bottom: 0.07
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Micro",
  12255. height: math.unit(0.571, "meters")
  12256. },
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(1.8796, "meters"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Tall",
  12264. height: math.unit(4, "meters")
  12265. },
  12266. {
  12267. name: "Macro",
  12268. height: math.unit(67.241, "meters")
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(371.856, "meters")
  12273. },
  12274. {
  12275. name: "Planetary",
  12276. height: math.unit(12631.5689, "km")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(1.85, "meters"),
  12285. weight: math.unit(80, "kg"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/matvei/front.svg",
  12289. extra: 614 / 594,
  12290. bottom: 0.01
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(1.85, "meters"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(5 + 9 / 12, "feet"),
  12307. weight: math.unit(70, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/quincy/front.svg",
  12311. extra: 3041 / 2751
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(5 + 9 / 12, "feet"),
  12316. weight: math.unit(70, "lb"),
  12317. name: "Back",
  12318. image: {
  12319. source: "./media/characters/quincy/back.svg",
  12320. extra: 3041 / 2751
  12321. }
  12322. },
  12323. flying: {
  12324. height: math.unit(5 + 4 / 12, "feet"),
  12325. weight: math.unit(70, "lb"),
  12326. name: "Flying",
  12327. image: {
  12328. source: "./media/characters/quincy/flying.svg",
  12329. extra: 1044 / 930
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Micro",
  12336. height: math.unit(3, "cm")
  12337. },
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(5 + 9 / 12, "feet")
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(200, "meters"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(1000, "meters")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(3 + 11/12, "feet"),
  12358. weight: math.unit(50, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/vanrel/front.svg",
  12362. extra: 1104/949,
  12363. bottom: 52/1156
  12364. }
  12365. },
  12366. back: {
  12367. height: math.unit(3 + 11/12, "feet"),
  12368. weight: math.unit(50, "lb"),
  12369. name: "Back",
  12370. image: {
  12371. source: "./media/characters/vanrel/back.svg",
  12372. extra: 1119/976,
  12373. bottom: 37/1156
  12374. }
  12375. },
  12376. tome: {
  12377. height: math.unit(1.35, "feet"),
  12378. weight: math.unit(10, "lb"),
  12379. name: "Vanrel's Tome",
  12380. rename: true,
  12381. image: {
  12382. source: "./media/characters/vanrel/tome.svg"
  12383. }
  12384. },
  12385. beans: {
  12386. height: math.unit(0.89, "feet"),
  12387. name: "Beans",
  12388. image: {
  12389. source: "./media/characters/vanrel/beans.svg"
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Normal",
  12396. height: math.unit(3 + 11/12, "feet"),
  12397. default: true
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(7 + 5 / 12, "feet"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/kuiper-vanrel/front.svg",
  12409. extra: 1219/1169,
  12410. bottom: 69/1288
  12411. }
  12412. },
  12413. back: {
  12414. height: math.unit(7 + 5 / 12, "feet"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/kuiper-vanrel/back.svg",
  12418. extra: 1236/1193,
  12419. bottom: 27/1263
  12420. }
  12421. },
  12422. foot: {
  12423. height: math.unit(0.55, "meters"),
  12424. name: "Foot",
  12425. image: {
  12426. source: "./media/characters/kuiper-vanrel/foot.svg",
  12427. }
  12428. },
  12429. battle: {
  12430. height: math.unit(6.824, "feet"),
  12431. name: "Battle",
  12432. image: {
  12433. source: "./media/characters/kuiper-vanrel/battle.svg",
  12434. extra: 1466 / 1327,
  12435. bottom: 29 / 1492.5
  12436. }
  12437. },
  12438. meerkui: {
  12439. height: math.unit(18, "inches"),
  12440. name: "Meerkui",
  12441. image: {
  12442. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12443. extra: 1354/1289,
  12444. bottom: 69/1423
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(7 + 5 / 12, "feet"),
  12452. default: true
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(8 + 5 / 12, "feet"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/keset-vanrel/front.svg",
  12464. extra: 1231/1148,
  12465. bottom: 82/1313
  12466. }
  12467. },
  12468. back: {
  12469. height: math.unit(8 + 5 / 12, "feet"),
  12470. name: "Back",
  12471. image: {
  12472. source: "./media/characters/keset-vanrel/back.svg",
  12473. extra: 1240/1174,
  12474. bottom: 33/1273
  12475. }
  12476. },
  12477. hand: {
  12478. height: math.unit(0.6, "meters"),
  12479. name: "Hand",
  12480. image: {
  12481. source: "./media/characters/keset-vanrel/hand.svg"
  12482. }
  12483. },
  12484. foot: {
  12485. height: math.unit(0.94978, "meters"),
  12486. name: "Foot",
  12487. image: {
  12488. source: "./media/characters/keset-vanrel/foot.svg"
  12489. }
  12490. },
  12491. battle: {
  12492. height: math.unit(7.408, "feet"),
  12493. name: "Battle",
  12494. image: {
  12495. source: "./media/characters/keset-vanrel/battle.svg",
  12496. extra: 1890 / 1386,
  12497. bottom: 73.28 / 1970
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(8 + 5 / 12, "feet"),
  12505. default: true
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(6, "feet"),
  12514. weight: math.unit(150, "lb"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/neos/front.svg",
  12518. extra: 1696 / 992,
  12519. bottom: 0.14
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Normal",
  12526. height: math.unit(54, "cm"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(100, "m")
  12532. },
  12533. {
  12534. name: "Megamacro",
  12535. height: math.unit(10, "km")
  12536. },
  12537. {
  12538. name: "Megamacro+",
  12539. height: math.unit(100, "km")
  12540. },
  12541. {
  12542. name: "Gigamacro",
  12543. height: math.unit(100, "Mm")
  12544. },
  12545. {
  12546. name: "Teramacro",
  12547. height: math.unit(100, "Gm")
  12548. },
  12549. {
  12550. name: "Examacro",
  12551. height: math.unit(100, "Em")
  12552. },
  12553. {
  12554. name: "Godly",
  12555. height: math.unit(10000, "Ym")
  12556. },
  12557. {
  12558. name: "Beyond Godly",
  12559. height: math.unit(25, "multiverses")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12565. {
  12566. feminine: {
  12567. height: math.unit(5, "feet"),
  12568. weight: math.unit(100, "lb"),
  12569. name: "Feminine",
  12570. image: {
  12571. source: "./media/characters/sammy-mouse/feminine.svg",
  12572. extra: 2526 / 2425,
  12573. bottom: 0.123
  12574. }
  12575. },
  12576. masculine: {
  12577. height: math.unit(5, "feet"),
  12578. weight: math.unit(100, "lb"),
  12579. name: "Masculine",
  12580. image: {
  12581. source: "./media/characters/sammy-mouse/masculine.svg",
  12582. extra: 2526 / 2425,
  12583. bottom: 0.123
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Micro",
  12590. height: math.unit(5, "inches")
  12591. },
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(5, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Macro",
  12599. height: math.unit(60, "feet")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12605. {
  12606. front: {
  12607. height: math.unit(4, "feet"),
  12608. weight: math.unit(50, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/kole/front.svg",
  12612. extra: 1423 / 1303,
  12613. bottom: 0.025
  12614. }
  12615. },
  12616. back: {
  12617. height: math.unit(4, "feet"),
  12618. weight: math.unit(50, "lb"),
  12619. name: "Back",
  12620. image: {
  12621. source: "./media/characters/kole/back.svg",
  12622. extra: 1426 / 1280,
  12623. bottom: 0.02
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(4, "feet"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(2.5, "feet"),
  12640. weight: math.unit(32, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/rufran/front.svg",
  12644. extra: 1313/885,
  12645. bottom: 94/1407
  12646. }
  12647. },
  12648. side: {
  12649. height: math.unit(2.5, "feet"),
  12650. weight: math.unit(32, "lb"),
  12651. name: "Side",
  12652. image: {
  12653. source: "./media/characters/rufran/side.svg",
  12654. extra: 1109/852,
  12655. bottom: 118/1227
  12656. }
  12657. },
  12658. back: {
  12659. height: math.unit(2.5, "feet"),
  12660. weight: math.unit(32, "lb"),
  12661. name: "Back",
  12662. image: {
  12663. source: "./media/characters/rufran/back.svg",
  12664. extra: 1280/878,
  12665. bottom: 131/1411
  12666. }
  12667. },
  12668. mouth: {
  12669. height: math.unit(1.13, "feet"),
  12670. name: "Mouth",
  12671. image: {
  12672. source: "./media/characters/rufran/mouth.svg"
  12673. }
  12674. },
  12675. foot: {
  12676. height: math.unit(1.33, "feet"),
  12677. name: "Foot",
  12678. image: {
  12679. source: "./media/characters/rufran/foot.svg"
  12680. }
  12681. },
  12682. koboldFront: {
  12683. height: math.unit(2 + 6 / 12, "feet"),
  12684. weight: math.unit(20, "lb"),
  12685. name: "Front (Kobold)",
  12686. image: {
  12687. source: "./media/characters/rufran/kobold-front.svg",
  12688. extra: 2041 / 1839,
  12689. bottom: 0.055
  12690. }
  12691. },
  12692. koboldBack: {
  12693. height: math.unit(2 + 6 / 12, "feet"),
  12694. weight: math.unit(20, "lb"),
  12695. name: "Back (Kobold)",
  12696. image: {
  12697. source: "./media/characters/rufran/kobold-back.svg",
  12698. extra: 2054 / 1839,
  12699. bottom: 0.01
  12700. }
  12701. },
  12702. koboldHand: {
  12703. height: math.unit(0.2166, "meters"),
  12704. name: "Hand (Kobold)",
  12705. image: {
  12706. source: "./media/characters/rufran/kobold-hand.svg"
  12707. }
  12708. },
  12709. koboldFoot: {
  12710. height: math.unit(0.185, "meters"),
  12711. name: "Foot (Kobold)",
  12712. image: {
  12713. source: "./media/characters/rufran/kobold-foot.svg"
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Micro",
  12720. height: math.unit(1, "inch")
  12721. },
  12722. {
  12723. name: "Normal",
  12724. height: math.unit(2 + 6 / 12, "feet"),
  12725. default: true
  12726. },
  12727. {
  12728. name: "Big",
  12729. height: math.unit(60, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(325, "feet")
  12734. },
  12735. ]
  12736. ))
  12737. characterMakers.push(() => makeCharacter(
  12738. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12739. {
  12740. front: {
  12741. height: math.unit(0.3, "meters"),
  12742. weight: math.unit(3.5, "kg"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/chip/front.svg",
  12746. extra: 748 / 674
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Micro",
  12753. height: math.unit(1, "inch"),
  12754. default: true
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12760. {
  12761. side: {
  12762. height: math.unit(2.3, "meters"),
  12763. weight: math.unit(3500, "lb"),
  12764. name: "Side",
  12765. image: {
  12766. source: "./media/characters/torvid/side.svg",
  12767. extra: 1972 / 722,
  12768. bottom: 0.035
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Normal",
  12775. height: math.unit(2.3, "meters"),
  12776. default: true
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(2, "meters"),
  12785. weight: math.unit(150.5, "kg"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/susan/front.svg",
  12789. extra: 693 / 635,
  12790. bottom: 0.05
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Megamacro",
  12797. height: math.unit(505, "miles"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/raindrops/front.svg",
  12811. extra: 2655 / 2461,
  12812. bottom: 49 / 2705
  12813. }
  12814. },
  12815. back: {
  12816. height: math.unit(6, "feet"),
  12817. weight: math.unit(150, "lb"),
  12818. name: "Back",
  12819. image: {
  12820. source: "./media/characters/raindrops/back.svg",
  12821. extra: 2574 / 2400,
  12822. bottom: 65 / 2634
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Micro",
  12829. height: math.unit(6, "inches")
  12830. },
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(6 + 2 / 12, "feet")
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(131, "feet"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Megamacro",
  12842. height: math.unit(15, "miles")
  12843. },
  12844. {
  12845. name: "Gigamacro",
  12846. height: math.unit(4000, "miles")
  12847. },
  12848. {
  12849. name: "Teramacro",
  12850. height: math.unit(315000, "miles")
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(2.794, "meters"),
  12859. weight: math.unit(325, "kg"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/tezwa/front.svg",
  12863. extra: 2083 / 1906,
  12864. bottom: 0.031
  12865. }
  12866. },
  12867. foot: {
  12868. height: math.unit(0.687, "meters"),
  12869. name: "Foot",
  12870. image: {
  12871. source: "./media/characters/tezwa/foot.svg"
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(9 + 2 / 12, "feet"),
  12879. default: true
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(58, "feet"),
  12888. weight: math.unit(89000, "lb"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/typhus/front.svg",
  12892. extra: 816 / 800,
  12893. bottom: 0.065
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(58, "feet"),
  12901. default: true
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(12, "feet"),
  12910. weight: math.unit(6, "tonnes"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/lyra-von-wulf/front.svg",
  12914. extra: 1,
  12915. bottom: 0.10
  12916. }
  12917. },
  12918. frontMecha: {
  12919. height: math.unit(12, "feet"),
  12920. weight: math.unit(12, "tonnes"),
  12921. name: "Front (Mecha)",
  12922. image: {
  12923. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12924. extra: 1,
  12925. bottom: 0.042
  12926. }
  12927. },
  12928. maw: {
  12929. height: math.unit(2.2, "feet"),
  12930. name: "Maw",
  12931. image: {
  12932. source: "./media/characters/lyra-von-wulf/maw.svg"
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Normal",
  12939. height: math.unit(12, "feet"),
  12940. default: true
  12941. },
  12942. {
  12943. name: "Classic",
  12944. height: math.unit(50, "feet")
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(500, "feet")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(1, "mile")
  12953. },
  12954. {
  12955. name: "Gigamacro",
  12956. height: math.unit(400, "miles")
  12957. },
  12958. {
  12959. name: "Teramacro",
  12960. height: math.unit(22000, "miles")
  12961. },
  12962. {
  12963. name: "Solarmacro",
  12964. height: math.unit(8600000, "miles")
  12965. },
  12966. {
  12967. name: "Galactic",
  12968. height: math.unit(1057000, "lightyears")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(6 + 10 / 12, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/dixon/front.svg",
  12981. extra: 3361 / 3209,
  12982. bottom: 0.01
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(6 + 10 / 12, "feet"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Big",
  12994. height: math.unit(12, "meters")
  12995. },
  12996. {
  12997. name: "Macro",
  12998. height: math.unit(500, "meters")
  12999. },
  13000. {
  13001. name: "Megamacro",
  13002. height: math.unit(2, "km")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(185, "cm"),
  13011. weight: math.unit(68, "kg"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/kauko/front.svg",
  13015. extra: 1455 / 1421,
  13016. bottom: 0.03
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(185, "cm"),
  13021. weight: math.unit(68, "kg"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/kauko/back.svg",
  13025. extra: 1455 / 1421,
  13026. bottom: 0.004
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(185, "cm"),
  13034. default: true
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "kg"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/varg/front.svg",
  13047. extra: 1108 / 1018,
  13048. bottom: 0.0375
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(5, "meters")
  13056. },
  13057. {
  13058. name: "Macro",
  13059. height: math.unit(200, "meters")
  13060. },
  13061. {
  13062. name: "Megamacro",
  13063. height: math.unit(20, "kilometers")
  13064. },
  13065. {
  13066. name: "True Size",
  13067. height: math.unit(211, "km"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Gigamacro",
  13072. height: math.unit(1000, "km")
  13073. },
  13074. {
  13075. name: "Gigamacro+",
  13076. height: math.unit(8000, "km")
  13077. },
  13078. {
  13079. name: "Teramacro",
  13080. height: math.unit(1000000, "km")
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(7 + 7 / 12, "feet"),
  13089. weight: math.unit(267, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/dayza/front.svg",
  13093. extra: 1262 / 1200,
  13094. bottom: 0.035
  13095. }
  13096. },
  13097. side: {
  13098. height: math.unit(7 + 7 / 12, "feet"),
  13099. weight: math.unit(267, "lb"),
  13100. name: "Side",
  13101. image: {
  13102. source: "./media/characters/dayza/side.svg",
  13103. extra: 1295 / 1245,
  13104. bottom: 0.05
  13105. }
  13106. },
  13107. back: {
  13108. height: math.unit(7 + 7 / 12, "feet"),
  13109. weight: math.unit(267, "lb"),
  13110. name: "Back",
  13111. image: {
  13112. source: "./media/characters/dayza/back.svg",
  13113. extra: 1241 / 1170
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(7 + 7 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(155, "feet")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6 + 5 / 12, "feet"),
  13134. weight: math.unit(160, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/xanthos/front.svg",
  13138. extra: 1,
  13139. bottom: 0.04
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(6 + 5 / 12, "feet"),
  13144. weight: math.unit(160, "lb"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/xanthos/back.svg",
  13148. extra: 1,
  13149. bottom: 0.03
  13150. }
  13151. },
  13152. hand: {
  13153. height: math.unit(0.928, "feet"),
  13154. name: "Hand",
  13155. image: {
  13156. source: "./media/characters/xanthos/hand.svg"
  13157. }
  13158. },
  13159. foot: {
  13160. height: math.unit(1.286, "feet"),
  13161. name: "Foot",
  13162. image: {
  13163. source: "./media/characters/xanthos/foot.svg"
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(6 + 5 / 12, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Normal+",
  13175. height: math.unit(6, "meters")
  13176. },
  13177. {
  13178. name: "Macro",
  13179. height: math.unit(40, "feet")
  13180. },
  13181. {
  13182. name: "Macro+",
  13183. height: math.unit(200, "meters")
  13184. },
  13185. {
  13186. name: "Megamacro",
  13187. height: math.unit(20, "km")
  13188. },
  13189. {
  13190. name: "Megamacro+",
  13191. height: math.unit(100, "km")
  13192. },
  13193. {
  13194. name: "Gigamacro",
  13195. height: math.unit(200, "megameters")
  13196. },
  13197. {
  13198. name: "Gigamacro+",
  13199. height: math.unit(1.5, "gigameters")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6 + 3 / 12, "feet"),
  13208. weight: math.unit(215, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/grynn/front.svg",
  13212. extra: 4627 / 4209,
  13213. bottom: 0.047
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Micro",
  13220. height: math.unit(6, "inches")
  13221. },
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(6 + 3 / 12, "feet"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Big",
  13229. height: math.unit(104, "feet")
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(944, "feet")
  13234. },
  13235. {
  13236. name: "Macro+",
  13237. height: math.unit(9480, "feet")
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(78752, "feet")
  13242. },
  13243. {
  13244. name: "Megamacro+",
  13245. height: math.unit(630128, "feet")
  13246. },
  13247. {
  13248. name: "Megamacro++",
  13249. height: math.unit(3150695, "feet")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(7 + 5 / 12, "feet"),
  13258. weight: math.unit(450, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/mocha-aura/front.svg",
  13262. extra: 1907 / 1817,
  13263. bottom: 0.04
  13264. }
  13265. },
  13266. back: {
  13267. height: math.unit(7 + 5 / 12, "feet"),
  13268. weight: math.unit(450, "lb"),
  13269. name: "Back",
  13270. image: {
  13271. source: "./media/characters/mocha-aura/back.svg",
  13272. extra: 1900 / 1825,
  13273. bottom: 0.045
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Nano",
  13280. height: math.unit(1, "nm")
  13281. },
  13282. {
  13283. name: "Megamicro",
  13284. height: math.unit(1, "mm")
  13285. },
  13286. {
  13287. name: "Micro",
  13288. height: math.unit(3, "inches")
  13289. },
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(7 + 5 / 12, "feet"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(30, "feet")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(3500, "feet")
  13302. },
  13303. {
  13304. name: "Teramacro",
  13305. height: math.unit(500000, "miles")
  13306. },
  13307. {
  13308. name: "Petamacro",
  13309. height: math.unit(50000000000000000, "parsecs")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/ilisha-devya/front.svg",
  13322. extra: 1053/1049,
  13323. bottom: 270/1323
  13324. }
  13325. },
  13326. back: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Back",
  13330. image: {
  13331. source: "./media/characters/ilisha-devya/back.svg",
  13332. extra: 1131/1128,
  13333. bottom: 39/1170
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Macro",
  13340. height: math.unit(500, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(10, "miles")
  13346. },
  13347. {
  13348. name: "Gigamacro",
  13349. height: math.unit(100000, "miles")
  13350. },
  13351. {
  13352. name: "Examacro",
  13353. height: math.unit(1e9, "lightyears")
  13354. },
  13355. {
  13356. name: "Omniversal",
  13357. height: math.unit(1e33, "lightyears")
  13358. },
  13359. {
  13360. name: "Beyond Infinite",
  13361. height: math.unit(1e100, "lightyears")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13367. {
  13368. Side: {
  13369. height: math.unit(6, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Side",
  13372. image: {
  13373. source: "./media/characters/mira/side.svg",
  13374. extra: 900 / 799,
  13375. bottom: 0.02
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Human Size",
  13382. height: math.unit(6, "feet")
  13383. },
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(100, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(10, "miles")
  13392. },
  13393. {
  13394. name: "Gigamacro",
  13395. height: math.unit(25000, "miles")
  13396. },
  13397. {
  13398. name: "Teramacro",
  13399. height: math.unit(300, "AU")
  13400. },
  13401. {
  13402. name: "Full Size",
  13403. height: math.unit(4.5e10, "lightyears")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(6, "feet"),
  13412. weight: math.unit(150, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/holly/front.svg",
  13416. extra: 639 / 606
  13417. }
  13418. },
  13419. back: {
  13420. height: math.unit(6, "feet"),
  13421. weight: math.unit(150, "lb"),
  13422. name: "Back",
  13423. image: {
  13424. source: "./media/characters/holly/back.svg",
  13425. extra: 623 / 598
  13426. }
  13427. },
  13428. frontWorking: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front (Working)",
  13432. image: {
  13433. source: "./media/characters/holly/front-working.svg",
  13434. extra: 607 / 577,
  13435. bottom: 0.048
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(12 + 3 / 12, "feet"),
  13443. default: true
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/porter/front.svg",
  13456. extra: 1,
  13457. bottom: 0.01
  13458. }
  13459. },
  13460. frontRobes: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "lb"),
  13463. name: "Front (Robes)",
  13464. image: {
  13465. source: "./media/characters/porter/front-robes.svg",
  13466. extra: 1.01,
  13467. bottom: 0.01
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(11 + 9 / 12, "feet"),
  13475. default: true
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13481. {
  13482. legendary: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Legendary",
  13486. image: {
  13487. source: "./media/characters/lucy/legendary.svg",
  13488. extra: 1355 / 1100,
  13489. bottom: 0.045
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Legendary",
  13496. height: math.unit(86882 * 2, "miles"),
  13497. default: true
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(6, "feet"),
  13506. weight: math.unit(150, "lb"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/drusilla/front.svg",
  13510. extra: 678 / 635,
  13511. bottom: 0.03
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/drusilla/back.svg",
  13520. extra: 678 / 635,
  13521. bottom: 0.005
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(100, "feet")
  13529. },
  13530. {
  13531. name: "Canon Height",
  13532. height: math.unit(2000, "feet"),
  13533. default: true
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(180, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/renard-thatch/front.svg",
  13546. extra: 2411 / 2275,
  13547. bottom: 0.01
  13548. }
  13549. },
  13550. frontPosing: {
  13551. height: math.unit(6, "feet"),
  13552. weight: math.unit(180, "lb"),
  13553. name: "Front (Posing)",
  13554. image: {
  13555. source: "./media/characters/renard-thatch/front-posing.svg",
  13556. extra: 2381 / 2261,
  13557. bottom: 0.01
  13558. }
  13559. },
  13560. back: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(180, "lb"),
  13563. name: "Back",
  13564. image: {
  13565. source: "./media/characters/renard-thatch/back.svg",
  13566. extra: 2428 / 2288
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Micro",
  13573. height: math.unit(3, "inches")
  13574. },
  13575. {
  13576. name: "Default",
  13577. height: math.unit(6, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Macro",
  13582. height: math.unit(75, "feet")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(1450, "feet"),
  13591. weight: math.unit(1.21e6, "tons"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/sekvra/front.svg",
  13595. extra: 1193/1190,
  13596. bottom: 78/1271
  13597. }
  13598. },
  13599. side: {
  13600. height: math.unit(1450, "feet"),
  13601. weight: math.unit(1.21e6, "tons"),
  13602. name: "Side",
  13603. image: {
  13604. source: "./media/characters/sekvra/side.svg",
  13605. extra: 1193/1190,
  13606. bottom: 52/1245
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(1450, "feet"),
  13611. weight: math.unit(1.21e6, "tons"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/sekvra/back.svg",
  13615. extra: 1219/1216,
  13616. bottom: 21/1240
  13617. }
  13618. },
  13619. frontClothed: {
  13620. height: math.unit(1450, "feet"),
  13621. weight: math.unit(1.21e6, "tons"),
  13622. name: "Front (Clothed)",
  13623. image: {
  13624. source: "./media/characters/sekvra/front-clothed.svg",
  13625. extra: 1192/1189,
  13626. bottom: 79/1271
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(1450, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Megamacro",
  13638. height: math.unit(15000, "feet")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/carmine/front.svg",
  13651. extra: 1,
  13652. bottom: 0.035
  13653. }
  13654. },
  13655. frontArmor: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front (Armor)",
  13659. image: {
  13660. source: "./media/characters/carmine/front-armor.svg",
  13661. extra: 1,
  13662. bottom: 0.035
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Large",
  13669. height: math.unit(1, "mile")
  13670. },
  13671. {
  13672. name: "Huge",
  13673. height: math.unit(40, "miles"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Colossal",
  13678. height: math.unit(2500, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/elyssia/front.svg",
  13691. extra: 2201 / 2035,
  13692. bottom: 0.05
  13693. }
  13694. },
  13695. frontClothed: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front (Clothed)",
  13699. image: {
  13700. source: "./media/characters/elyssia/front-clothed.svg",
  13701. extra: 2201 / 2035,
  13702. bottom: 0.05
  13703. }
  13704. },
  13705. back: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Back",
  13709. image: {
  13710. source: "./media/characters/elyssia/back.svg",
  13711. extra: 2201 / 2035,
  13712. bottom: 0.013
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Smaller",
  13719. height: math.unit(150, "feet")
  13720. },
  13721. {
  13722. name: "Standard",
  13723. height: math.unit(1400, "feet"),
  13724. default: true
  13725. },
  13726. {
  13727. name: "Distracted",
  13728. height: math.unit(15000, "feet")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(7 + 4/12, "feet"),
  13737. weight: math.unit(690, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/geno-maxwell/front.svg",
  13741. extra: 984/856,
  13742. bottom: 87/1071
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(7 + 4/12, "feet"),
  13747. weight: math.unit(690, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/geno-maxwell/back.svg",
  13751. extra: 981/854,
  13752. bottom: 57/1038
  13753. }
  13754. },
  13755. frontCostume: {
  13756. height: math.unit(7 + 4/12, "feet"),
  13757. weight: math.unit(690, "lb"),
  13758. name: "Front (Costume)",
  13759. image: {
  13760. source: "./media/characters/geno-maxwell/front-costume.svg",
  13761. extra: 984/856,
  13762. bottom: 87/1071
  13763. }
  13764. },
  13765. backcostume: {
  13766. height: math.unit(7 + 4/12, "feet"),
  13767. weight: math.unit(690, "lb"),
  13768. name: "Back (Costume)",
  13769. image: {
  13770. source: "./media/characters/geno-maxwell/back-costume.svg",
  13771. extra: 981/854,
  13772. bottom: 57/1038
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Micro",
  13779. height: math.unit(3, "inches")
  13780. },
  13781. {
  13782. name: "Normal",
  13783. height: math.unit(7 + 4 / 12, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Macro",
  13788. height: math.unit(220, "feet")
  13789. },
  13790. {
  13791. name: "Megamacro",
  13792. height: math.unit(11, "miles")
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(7 + 4/12, "feet"),
  13801. weight: math.unit(750, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/regena-maxwell/front.svg",
  13805. extra: 984/856,
  13806. bottom: 87/1071
  13807. }
  13808. },
  13809. back: {
  13810. height: math.unit(7 + 4/12, "feet"),
  13811. weight: math.unit(750, "lb"),
  13812. name: "Back",
  13813. image: {
  13814. source: "./media/characters/regena-maxwell/back.svg",
  13815. extra: 981/854,
  13816. bottom: 57/1038
  13817. }
  13818. },
  13819. frontCostume: {
  13820. height: math.unit(7 + 4/12, "feet"),
  13821. weight: math.unit(750, "lb"),
  13822. name: "Front (Costume)",
  13823. image: {
  13824. source: "./media/characters/regena-maxwell/front-costume.svg",
  13825. extra: 984/856,
  13826. bottom: 87/1071
  13827. }
  13828. },
  13829. backcostume: {
  13830. height: math.unit(7 + 4/12, "feet"),
  13831. weight: math.unit(750, "lb"),
  13832. name: "Back (Costume)",
  13833. image: {
  13834. source: "./media/characters/regena-maxwell/back-costume.svg",
  13835. extra: 981/854,
  13836. bottom: 57/1038
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(7 + 4 / 12, "feet"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(220, "feet")
  13849. },
  13850. {
  13851. name: "Megamacro",
  13852. height: math.unit(11, "miles")
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13865. extra: 860 / 690,
  13866. bottom: 0.03
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(1.7, "meters"),
  13874. default: true
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13880. {
  13881. front: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Front",
  13885. image: {
  13886. source: "./media/characters/quilly/front.svg",
  13887. extra: 890 / 776
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Gigamacro",
  13894. height: math.unit(404090, "miles"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(7 + 8 / 12, "feet"),
  13904. weight: math.unit(350, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/tempest/front.svg",
  13908. extra: 1175 / 1086,
  13909. bottom: 0.02
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(7 + 8 / 12, "feet"),
  13917. default: true
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13923. {
  13924. side: {
  13925. height: math.unit(4 + 5 / 12, "feet"),
  13926. weight: math.unit(80, "lb"),
  13927. name: "Side",
  13928. image: {
  13929. source: "./media/characters/rodger/side.svg",
  13930. extra: 1235 / 1118
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Micro",
  13937. height: math.unit(1, "inch")
  13938. },
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(4 + 5 / 12, "feet"),
  13942. default: true
  13943. },
  13944. {
  13945. name: "Macro",
  13946. height: math.unit(120, "feet")
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(150, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/danyel/front.svg",
  13959. extra: 1185 / 1123,
  13960. bottom: 0.05
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Shrunken",
  13967. height: math.unit(0.5, "mm")
  13968. },
  13969. {
  13970. name: "Micro",
  13971. height: math.unit(1, "mm"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Upsized",
  13976. height: math.unit(5 + 5 / 12, "feet")
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(5 + 6 / 12, "feet"),
  13985. weight: math.unit(200, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/vivian-bijoux/front.svg",
  13989. extra: 1217/1209,
  13990. bottom: 76/1293
  13991. }
  13992. },
  13993. back: {
  13994. height: math.unit(5 + 6 / 12, "feet"),
  13995. weight: math.unit(200, "lb"),
  13996. name: "Back",
  13997. image: {
  13998. source: "./media/characters/vivian-bijoux/back.svg",
  13999. extra: 1214/1208,
  14000. bottom: 51/1265
  14001. }
  14002. },
  14003. dressed: {
  14004. height: math.unit(5 + 6 / 12, "feet"),
  14005. weight: math.unit(200, "lb"),
  14006. name: "Dressed",
  14007. image: {
  14008. source: "./media/characters/vivian-bijoux/dressed.svg",
  14009. extra: 1217/1209,
  14010. bottom: 76/1293
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(5 + 6 / 12, "feet"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Bad Dream",
  14022. height: math.unit(500, "feet")
  14023. },
  14024. {
  14025. name: "Nightmare",
  14026. height: math.unit(500, "miles")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6 + 1 / 12, "feet"),
  14035. weight: math.unit(260, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/zeta/front.svg",
  14039. extra: 1968 / 1889,
  14040. bottom: 0.06
  14041. }
  14042. },
  14043. back: {
  14044. height: math.unit(6 + 1 / 12, "feet"),
  14045. weight: math.unit(260, "lb"),
  14046. name: "Back",
  14047. image: {
  14048. source: "./media/characters/zeta/back.svg",
  14049. extra: 1944 / 1858,
  14050. bottom: 0.03
  14051. }
  14052. },
  14053. hand: {
  14054. height: math.unit(1.112, "feet"),
  14055. name: "Hand",
  14056. image: {
  14057. source: "./media/characters/zeta/hand.svg"
  14058. }
  14059. },
  14060. foot: {
  14061. height: math.unit(1.48, "feet"),
  14062. name: "Foot",
  14063. image: {
  14064. source: "./media/characters/zeta/foot.svg"
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Micro",
  14071. height: math.unit(6, "inches")
  14072. },
  14073. {
  14074. name: "Normal",
  14075. height: math.unit(6 + 1 / 12, "feet"),
  14076. default: true
  14077. },
  14078. {
  14079. name: "Macro",
  14080. height: math.unit(20, "feet")
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(150, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/jamie-larsen/front.svg",
  14093. extra: 962 / 933,
  14094. bottom: 0.02
  14095. }
  14096. },
  14097. back: {
  14098. height: math.unit(6, "feet"),
  14099. weight: math.unit(150, "lb"),
  14100. name: "Back",
  14101. image: {
  14102. source: "./media/characters/jamie-larsen/back.svg",
  14103. extra: 997 / 946
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Macro",
  14110. height: math.unit(28 + 7 / 12, "feet"),
  14111. default: true
  14112. },
  14113. {
  14114. name: "Macro+",
  14115. height: math.unit(180, "feet")
  14116. },
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(10, "miles")
  14120. },
  14121. {
  14122. name: "Gigamacro",
  14123. height: math.unit(200000, "miles")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(6, "feet"),
  14132. weight: math.unit(120, "lb"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/vance/front.svg",
  14136. extra: 1980 / 1890,
  14137. bottom: 0.09
  14138. }
  14139. },
  14140. back: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(120, "lb"),
  14143. name: "Back",
  14144. image: {
  14145. source: "./media/characters/vance/back.svg",
  14146. extra: 2081 / 1994,
  14147. bottom: 0.014
  14148. }
  14149. },
  14150. hand: {
  14151. height: math.unit(0.88, "feet"),
  14152. name: "Hand",
  14153. image: {
  14154. source: "./media/characters/vance/hand.svg"
  14155. }
  14156. },
  14157. foot: {
  14158. height: math.unit(0.64, "feet"),
  14159. name: "Foot",
  14160. image: {
  14161. source: "./media/characters/vance/foot.svg"
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Small",
  14168. height: math.unit(90, "feet"),
  14169. default: true
  14170. },
  14171. {
  14172. name: "Macro",
  14173. height: math.unit(100, "meters")
  14174. },
  14175. {
  14176. name: "Megamacro",
  14177. height: math.unit(15, "miles")
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(180, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/xochitl/front.svg",
  14190. extra: 2297 / 2261,
  14191. bottom: 0.065
  14192. }
  14193. },
  14194. back: {
  14195. height: math.unit(6, "feet"),
  14196. weight: math.unit(180, "lb"),
  14197. name: "Back",
  14198. image: {
  14199. source: "./media/characters/xochitl/back.svg",
  14200. extra: 2386 / 2354,
  14201. bottom: 0.01
  14202. }
  14203. },
  14204. foot: {
  14205. height: math.unit(6 / 5 * 1.15, "feet"),
  14206. weight: math.unit(150, "lb"),
  14207. name: "Foot",
  14208. image: {
  14209. source: "./media/characters/xochitl/foot.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(80, "feet")
  14217. },
  14218. {
  14219. name: "Macro+",
  14220. height: math.unit(400, "feet"),
  14221. default: true
  14222. },
  14223. {
  14224. name: "Gigamacro",
  14225. height: math.unit(80000, "miles")
  14226. },
  14227. {
  14228. name: "Gigamacro+",
  14229. height: math.unit(400000, "miles")
  14230. },
  14231. {
  14232. name: "Teramacro",
  14233. height: math.unit(300, "AU")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(150, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/vincent/front.svg",
  14246. extra: 1130 / 1080,
  14247. bottom: 0.055
  14248. }
  14249. },
  14250. beak: {
  14251. height: math.unit(6 * 0.1, "feet"),
  14252. name: "Beak",
  14253. image: {
  14254. source: "./media/characters/vincent/beak.svg"
  14255. }
  14256. },
  14257. hand: {
  14258. height: math.unit(6 * 0.85, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Hand",
  14261. image: {
  14262. source: "./media/characters/vincent/hand.svg"
  14263. }
  14264. },
  14265. foot: {
  14266. height: math.unit(6 * 0.19, "feet"),
  14267. weight: math.unit(150, "lb"),
  14268. name: "Foot",
  14269. image: {
  14270. source: "./media/characters/vincent/foot.svg"
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Base",
  14277. height: math.unit(6 + 5 / 12, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(300, "feet")
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(2, "miles")
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(1000, "miles")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(2, "meters"),
  14299. weight: math.unit(500, "kg"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/coatl/front.svg",
  14303. extra: 3948 / 3500,
  14304. bottom: 0.082
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(4, "meters")
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(100, "meters"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Macro+",
  14320. height: math.unit(300, "meters")
  14321. },
  14322. {
  14323. name: "Megamacro",
  14324. height: math.unit(3, "gigameters")
  14325. },
  14326. {
  14327. name: "Megamacro+",
  14328. height: math.unit(300, "terameters")
  14329. },
  14330. {
  14331. name: "Megamacro++",
  14332. height: math.unit(3, "lightyears")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(50, "kg"),
  14342. name: "front",
  14343. image: {
  14344. source: "./media/characters/shiroryu/front.svg",
  14345. extra: 1990 / 1935
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Mortal Mingling",
  14352. height: math.unit(3, "meters")
  14353. },
  14354. {
  14355. name: "Kaiju-ish",
  14356. height: math.unit(250, "meters")
  14357. },
  14358. {
  14359. name: "Somewhat Godly",
  14360. height: math.unit(400, "km"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Planetary",
  14365. height: math.unit(300, "megameters")
  14366. },
  14367. {
  14368. name: "Galaxy-dwarfing",
  14369. height: math.unit(450, "kiloparsecs")
  14370. },
  14371. {
  14372. name: "Universe Eater",
  14373. height: math.unit(150, "gigaparsecs")
  14374. },
  14375. {
  14376. name: "Almost Immeasurable",
  14377. height: math.unit(1.3e266, "yottaparsecs")
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(6, "feet"),
  14386. weight: math.unit(150, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/umeko/front.svg",
  14390. extra: 1,
  14391. bottom: 0.019
  14392. }
  14393. },
  14394. frontArmored: {
  14395. height: math.unit(6, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Front (Armored)",
  14398. image: {
  14399. source: "./media/characters/umeko/front-armored.svg",
  14400. extra: 1,
  14401. bottom: 0.021
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Macro",
  14408. height: math.unit(220, "feet"),
  14409. default: true
  14410. },
  14411. {
  14412. name: "Guardian Dragon",
  14413. height: math.unit(50, "miles")
  14414. },
  14415. {
  14416. name: "Cosmic",
  14417. height: math.unit(800000, "miles")
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/cassidy/front.svg",
  14430. extra: 810/808,
  14431. bottom: 41/851
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Canon Height",
  14438. height: math.unit(120, "feet"),
  14439. default: true
  14440. },
  14441. {
  14442. name: "Macro+",
  14443. height: math.unit(400, "feet")
  14444. },
  14445. {
  14446. name: "Macro++",
  14447. height: math.unit(4000, "feet")
  14448. },
  14449. {
  14450. name: "Megamacro",
  14451. height: math.unit(3, "miles")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/isaac/front.svg",
  14464. extra: 896 / 815,
  14465. bottom: 0.11
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Human Size",
  14472. height: math.unit(8, "feet"),
  14473. default: true
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(400, "feet")
  14478. },
  14479. {
  14480. name: "Megamacro",
  14481. height: math.unit(50, "miles")
  14482. },
  14483. {
  14484. name: "Canon Height",
  14485. height: math.unit(200, "AU")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(72, "kg"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/sleekit/front.svg",
  14498. extra: 4693 / 4487,
  14499. bottom: 0.012
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Minimum Height",
  14506. height: math.unit(10, "meters")
  14507. },
  14508. {
  14509. name: "Smaller",
  14510. height: math.unit(25, "meters")
  14511. },
  14512. {
  14513. name: "Larger",
  14514. height: math.unit(38, "meters"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Maximum height",
  14519. height: math.unit(100, "meters")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6, "feet"),
  14528. weight: math.unit(150, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/nillia/front.svg",
  14532. extra: 2195 / 2037,
  14533. bottom: 0.005
  14534. }
  14535. },
  14536. back: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Back",
  14540. image: {
  14541. source: "./media/characters/nillia/back.svg",
  14542. extra: 2195 / 2037,
  14543. bottom: 0.005
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Canon Height",
  14550. height: math.unit(489, "feet"),
  14551. default: true
  14552. }
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(150, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/mesmyriza/front.svg",
  14564. extra: 2067 / 1784,
  14565. bottom: 0.035
  14566. }
  14567. },
  14568. foot: {
  14569. height: math.unit(6 / (250 / 35), "feet"),
  14570. name: "Foot",
  14571. image: {
  14572. source: "./media/characters/mesmyriza/foot.svg"
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Macro",
  14579. height: math.unit(457, "meters"),
  14580. default: true
  14581. },
  14582. {
  14583. name: "Megamacro",
  14584. height: math.unit(8, "megameters")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(250, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/saudade/front.svg",
  14597. extra: 1172 / 1139,
  14598. bottom: 0.035
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Micro",
  14605. height: math.unit(3, "inches")
  14606. },
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(6, "feet"),
  14610. default: true
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(50, "feet")
  14615. },
  14616. {
  14617. name: "Megamacro",
  14618. height: math.unit(2800, "feet")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5 + 4 / 12, "feet"),
  14627. weight: math.unit(100, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/keireer/front.svg",
  14631. extra: 716 / 666,
  14632. bottom: 0.05
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(5 + 4 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(90, "kg"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/mirja/front.svg",
  14653. extra: 1789 / 1683,
  14654. bottom: 0.05
  14655. }
  14656. },
  14657. frontDressed: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(90, "lb"),
  14660. name: "Front (Dressed)",
  14661. image: {
  14662. source: "./media/characters/mirja/front-dressed.svg",
  14663. extra: 1789 / 1683,
  14664. bottom: 0.05
  14665. }
  14666. },
  14667. back: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(90, "lb"),
  14670. name: "Back",
  14671. image: {
  14672. source: "./media/characters/mirja/back.svg",
  14673. extra: 953 / 917,
  14674. bottom: 0.017
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "\"Incognito\"",
  14681. height: math.unit(3, "meters")
  14682. },
  14683. {
  14684. name: "Strolling Size",
  14685. height: math.unit(15, "km")
  14686. },
  14687. {
  14688. name: "Larger Strolling Size",
  14689. height: math.unit(400, "km")
  14690. },
  14691. {
  14692. name: "Preferred Size",
  14693. height: math.unit(5000, "km")
  14694. },
  14695. {
  14696. name: "True Size",
  14697. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(15, "feet"),
  14707. weight: math.unit(880, "kg"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/nightraver/front.svg",
  14711. extra: 2444 / 2160,
  14712. bottom: 0.027
  14713. }
  14714. },
  14715. back: {
  14716. height: math.unit(15, "feet"),
  14717. weight: math.unit(880, "kg"),
  14718. name: "Back",
  14719. image: {
  14720. source: "./media/characters/nightraver/back.svg",
  14721. extra: 2309 / 2180,
  14722. bottom: 0.005
  14723. }
  14724. },
  14725. sole: {
  14726. height: math.unit(2.878, "feet"),
  14727. name: "Sole",
  14728. image: {
  14729. source: "./media/characters/nightraver/sole.svg"
  14730. }
  14731. },
  14732. foot: {
  14733. height: math.unit(2.285, "feet"),
  14734. name: "Foot",
  14735. image: {
  14736. source: "./media/characters/nightraver/foot.svg"
  14737. }
  14738. },
  14739. maw: {
  14740. height: math.unit(2.67, "feet"),
  14741. name: "Maw",
  14742. image: {
  14743. source: "./media/characters/nightraver/maw.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(1, "cm")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(15, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(300, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(300, "miles")
  14764. },
  14765. {
  14766. name: "Gigamacro",
  14767. height: math.unit(10000, "miles")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14773. {
  14774. side: {
  14775. height: math.unit(2, "inches"),
  14776. weight: math.unit(5, "grams"),
  14777. name: "Side",
  14778. image: {
  14779. source: "./media/characters/arc/side.svg"
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Micro",
  14786. height: math.unit(2, "inches"),
  14787. default: true
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(1.1938, "meters"),
  14796. weight: math.unit(54, "kg"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/nebula-shahar/front.svg",
  14800. extra: 1642 / 1436,
  14801. bottom: 0.06
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Megamicro",
  14808. height: math.unit(0.3, "mm")
  14809. },
  14810. {
  14811. name: "Micro",
  14812. height: math.unit(3, "cm")
  14813. },
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(138, "cm"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Macro",
  14821. height: math.unit(30, "m")
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(5.24, "feet"),
  14830. weight: math.unit(150, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/shayla/front.svg",
  14834. extra: 1512 / 1414,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. back: {
  14839. height: math.unit(5.24, "feet"),
  14840. weight: math.unit(150, "lb"),
  14841. name: "Back",
  14842. image: {
  14843. source: "./media/characters/shayla/back.svg",
  14844. extra: 1512 / 1414
  14845. }
  14846. },
  14847. hand: {
  14848. height: math.unit(0.7781496062992126, "feet"),
  14849. name: "Hand",
  14850. image: {
  14851. source: "./media/characters/shayla/hand.svg"
  14852. }
  14853. },
  14854. foot: {
  14855. height: math.unit(1.4206036745406823, "feet"),
  14856. name: "Foot",
  14857. image: {
  14858. source: "./media/characters/shayla/foot.svg"
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Micro",
  14865. height: math.unit(0.32, "feet")
  14866. },
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(5.24, "feet"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(492.12, "feet")
  14875. },
  14876. {
  14877. name: "Megamacro",
  14878. height: math.unit(186.41, "miles")
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(2.2, "m"),
  14887. weight: math.unit(120, "kg"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/pia-jr/front.svg",
  14891. extra: 1000 / 970,
  14892. bottom: 0.035
  14893. }
  14894. },
  14895. hand: {
  14896. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14897. name: "Hand",
  14898. image: {
  14899. source: "./media/characters/pia-jr/hand.svg"
  14900. }
  14901. },
  14902. paw: {
  14903. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14904. name: "Paw",
  14905. image: {
  14906. source: "./media/characters/pia-jr/paw.svg"
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Micro",
  14913. height: math.unit(1.2, "cm")
  14914. },
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(2.2, "m"),
  14918. default: true
  14919. },
  14920. {
  14921. name: "Macro",
  14922. height: math.unit(180, "m")
  14923. },
  14924. {
  14925. name: "Megamacro",
  14926. height: math.unit(420, "km")
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(2, "m"),
  14935. weight: math.unit(115, "kg"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/pia-sr/front.svg",
  14939. extra: 760 / 730,
  14940. bottom: 0.015
  14941. }
  14942. },
  14943. back: {
  14944. height: math.unit(2, "m"),
  14945. weight: math.unit(115, "kg"),
  14946. name: "Back",
  14947. image: {
  14948. source: "./media/characters/pia-sr/back.svg",
  14949. extra: 760 / 730,
  14950. bottom: 0.01
  14951. }
  14952. },
  14953. hand: {
  14954. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14955. name: "Hand",
  14956. image: {
  14957. source: "./media/characters/pia-sr/hand.svg"
  14958. }
  14959. },
  14960. foot: {
  14961. height: math.unit(1.83, "feet"),
  14962. name: "Foot",
  14963. image: {
  14964. source: "./media/characters/pia-sr/foot.svg"
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Micro",
  14971. height: math.unit(88, "mm")
  14972. },
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(2, "m"),
  14976. default: true
  14977. },
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(200, "m")
  14981. },
  14982. {
  14983. name: "Megamacro",
  14984. height: math.unit(420, "km")
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(8 + 2 / 12, "feet"),
  14993. weight: math.unit(300, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/kibibyte/front.svg",
  14997. extra: 2221 / 2098,
  14998. bottom: 0.04
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(8 + 2 / 12, "feet"),
  15006. default: true
  15007. },
  15008. {
  15009. name: "Socialable Macro",
  15010. height: math.unit(50, "feet")
  15011. },
  15012. {
  15013. name: "Macro",
  15014. height: math.unit(300, "feet")
  15015. },
  15016. {
  15017. name: "Megamacro",
  15018. height: math.unit(500, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/felix/front.svg",
  15031. extra: 762 / 722,
  15032. bottom: 0.02
  15033. }
  15034. },
  15035. frontClothed: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(150, "lb"),
  15038. name: "Front (Clothed)",
  15039. image: {
  15040. source: "./media/characters/felix/front-clothed.svg",
  15041. extra: 762 / 722,
  15042. bottom: 0.02
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(6 + 8 / 12, "feet"),
  15050. default: true
  15051. },
  15052. {
  15053. name: "Macro",
  15054. height: math.unit(2600, "feet")
  15055. },
  15056. {
  15057. name: "Megamacro",
  15058. height: math.unit(450, "miles")
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(6 + 1 / 12, "feet"),
  15067. weight: math.unit(250, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/tobo/front.svg",
  15071. extra: 608 / 586,
  15072. bottom: 0.023
  15073. }
  15074. },
  15075. back: {
  15076. height: math.unit(6 + 1 / 12, "feet"),
  15077. weight: math.unit(250, "lb"),
  15078. name: "Back",
  15079. image: {
  15080. source: "./media/characters/tobo/back.svg",
  15081. extra: 608 / 586
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Nano",
  15088. height: math.unit(2, "nm")
  15089. },
  15090. {
  15091. name: "Megamicro",
  15092. height: math.unit(0.1, "mm")
  15093. },
  15094. {
  15095. name: "Micro",
  15096. height: math.unit(1, "inch"),
  15097. default: true
  15098. },
  15099. {
  15100. name: "Human-sized",
  15101. height: math.unit(6 + 1 / 12, "feet")
  15102. },
  15103. {
  15104. name: "Macro",
  15105. height: math.unit(250, "feet")
  15106. },
  15107. {
  15108. name: "Megamacro",
  15109. height: math.unit(75, "miles")
  15110. },
  15111. {
  15112. name: "Texas-sized",
  15113. height: math.unit(750, "miles")
  15114. },
  15115. {
  15116. name: "Teramacro",
  15117. height: math.unit(50000, "miles")
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(269, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/danny-kapowsky/front.svg",
  15130. extra: 766 / 736,
  15131. bottom: 0.044
  15132. }
  15133. },
  15134. back: {
  15135. height: math.unit(6, "feet"),
  15136. weight: math.unit(269, "lb"),
  15137. name: "Back",
  15138. image: {
  15139. source: "./media/characters/danny-kapowsky/back.svg",
  15140. extra: 797 / 760,
  15141. bottom: 0.025
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(150, "feet"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Macro+",
  15153. height: math.unit(200, "feet")
  15154. },
  15155. {
  15156. name: "Macro++",
  15157. height: math.unit(300, "feet")
  15158. },
  15159. {
  15160. name: "Macro+++",
  15161. height: math.unit(400, "feet")
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15167. {
  15168. side: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(170, "lb"),
  15171. name: "Side",
  15172. image: {
  15173. source: "./media/characters/finn/side.svg",
  15174. extra: 1953 / 1807,
  15175. bottom: 0.057
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Megamacro",
  15182. height: math.unit(14445, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(5 + 6 / 12, "feet"),
  15192. weight: math.unit(125, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/roy/front.svg",
  15196. extra: 1,
  15197. bottom: 0.11
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Micro",
  15204. height: math.unit(3, "inches"),
  15205. default: true
  15206. },
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(5 + 6 / 12, "feet")
  15210. },
  15211. {
  15212. name: "Lesser Macro",
  15213. height: math.unit(60, "feet")
  15214. },
  15215. {
  15216. name: "Greater Macro",
  15217. height: math.unit(120, "feet")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(100, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/aevsivs/front.svg",
  15230. extra: 1,
  15231. bottom: 0.03
  15232. }
  15233. },
  15234. back: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(100, "lb"),
  15237. name: "Back",
  15238. image: {
  15239. source: "./media/characters/aevsivs/back.svg"
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Micro",
  15246. height: math.unit(2, "inches"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(5, "feet")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(5 + 7 / 12, "feet"),
  15260. weight: math.unit(159, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/hildegard/front.svg",
  15264. extra: 289 / 269,
  15265. bottom: 7.63 / 297.8
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(5 + 7 / 12, "feet"),
  15270. weight: math.unit(159, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/hildegard/back.svg",
  15274. extra: 280 / 260,
  15275. bottom: 2.3 / 282
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(5 + 7 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15289. {
  15290. bernard: {
  15291. height: math.unit(2 + 7 / 12, "feet"),
  15292. weight: math.unit(66, "lb"),
  15293. name: "Bernard",
  15294. rename: true,
  15295. image: {
  15296. source: "./media/characters/bernard-wilder/bernard.svg",
  15297. extra: 192 / 128,
  15298. bottom: 0.05
  15299. }
  15300. },
  15301. wilder: {
  15302. height: math.unit(5 + 8 / 12, "feet"),
  15303. weight: math.unit(143, "lb"),
  15304. name: "Wilder",
  15305. rename: true,
  15306. image: {
  15307. source: "./media/characters/bernard-wilder/wilder.svg",
  15308. extra: 361 / 312,
  15309. bottom: 0.02
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(2 + 7 / 12, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15323. {
  15324. anthro: {
  15325. height: math.unit(6 + 1 / 12, "feet"),
  15326. weight: math.unit(155, "lb"),
  15327. name: "Anthro",
  15328. image: {
  15329. source: "./media/characters/hearth/anthro.svg",
  15330. extra: 1178/1136,
  15331. bottom: 28/1206
  15332. }
  15333. },
  15334. feral: {
  15335. height: math.unit(3.78, "feet"),
  15336. weight: math.unit(35, "kg"),
  15337. name: "Feral",
  15338. image: {
  15339. source: "./media/characters/hearth/feral.svg",
  15340. extra: 153 / 135,
  15341. bottom: 0.03
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 1 / 12, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(182, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/ingrid/front.svg",
  15362. extra: 294 / 268,
  15363. bottom: 0.027
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(6, "feet"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15377. {
  15378. eevee: {
  15379. height: math.unit(2 + 10 / 12, "feet"),
  15380. weight: math.unit(86, "lb"),
  15381. name: "Malgam",
  15382. image: {
  15383. source: "./media/characters/malgam/eevee.svg",
  15384. extra: 952/784,
  15385. bottom: 38/990
  15386. }
  15387. },
  15388. sylveon: {
  15389. height: math.unit(4, "feet"),
  15390. weight: math.unit(101, "lb"),
  15391. name: "Future Malgam",
  15392. rename: true,
  15393. image: {
  15394. source: "./media/characters/malgam/sylveon.svg",
  15395. extra: 371 / 325,
  15396. bottom: 0.015
  15397. }
  15398. },
  15399. gigantamax: {
  15400. height: math.unit(50, "feet"),
  15401. name: "Gigantamax Malgam",
  15402. rename: true,
  15403. image: {
  15404. source: "./media/characters/malgam/gigantamax.svg"
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(2 + 10 / 12, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(5 + 11 / 12, "feet"),
  15421. weight: math.unit(188, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/fleur/front.svg",
  15425. extra: 309 / 283,
  15426. bottom: 0.007
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(5 + 11 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(5 + 4 / 12, "feet"),
  15443. weight: math.unit(122, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/jude/front.svg",
  15447. extra: 288 / 273,
  15448. bottom: 0.03
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5 + 4 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(5 + 11 / 12, "feet"),
  15465. weight: math.unit(190, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/seara/front.svg",
  15469. extra: 1,
  15470. bottom: 0.05
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(5 + 11 / 12, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(16 + 5 / 12, "feet"),
  15487. weight: math.unit(524, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/caspian/front.svg",
  15491. extra: 1,
  15492. bottom: 0.04
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(16 + 5 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(5 + 7 / 12, "feet"),
  15509. weight: math.unit(170, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/mika/front.svg",
  15513. extra: 1,
  15514. bottom: 0.016
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(5 + 7 / 12, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6 + 2 / 12, "feet"),
  15531. weight: math.unit(268, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/sol/front.svg",
  15535. extra: 247 / 231,
  15536. bottom: 0.05
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(6 + 2 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15550. {
  15551. buizel: {
  15552. height: math.unit(2 + 5 / 12, "feet"),
  15553. weight: math.unit(87, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/umiko/buizel.svg",
  15557. extra: 172 / 157,
  15558. bottom: 0.01
  15559. },
  15560. form: "buizel",
  15561. default: true
  15562. },
  15563. floatzel: {
  15564. height: math.unit(5 + 9 / 12, "feet"),
  15565. weight: math.unit(250, "lb"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/umiko/floatzel.svg",
  15569. extra: 1076/1006,
  15570. bottom: 15/1091
  15571. },
  15572. form: "floatzel",
  15573. default: true
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(2 + 5 / 12, "feet"),
  15580. form: "buizel",
  15581. default: true
  15582. },
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(5 + 9 / 12, "feet"),
  15586. form: "floatzel",
  15587. default: true
  15588. },
  15589. ],
  15590. {
  15591. "buizel": {
  15592. name: "Buizel"
  15593. },
  15594. "floatzel": {
  15595. name: "Floatzel",
  15596. default: true
  15597. }
  15598. }
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6 + 2 / 12, "feet"),
  15605. weight: math.unit(146, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/iliac/front.svg",
  15609. extra: 389 / 365,
  15610. bottom: 0.035
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(6 + 2 / 12, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(170, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/topaz/front.svg",
  15631. extra: 317 / 303,
  15632. bottom: 0.055
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(6, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(5 + 11 / 12, "feet"),
  15649. weight: math.unit(144, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/gabriel/front.svg",
  15653. extra: 285 / 262,
  15654. bottom: 0.004
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(5 + 11 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15668. {
  15669. side: {
  15670. height: math.unit(6 + 5 / 12, "feet"),
  15671. weight: math.unit(300, "lb"),
  15672. name: "Side",
  15673. image: {
  15674. source: "./media/characters/tempest-suicune/side.svg",
  15675. extra: 195 / 154,
  15676. bottom: 0.04
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(6 + 5 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(7 + 2 / 12, "feet"),
  15693. weight: math.unit(322, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/vulcan/front.svg",
  15697. extra: 154 / 147,
  15698. bottom: 0.04
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(7 + 2 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(5 + 10 / 12, "feet"),
  15715. weight: math.unit(264, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/gault/front.svg",
  15719. extra: 161 / 140,
  15720. bottom: 0.028
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(5 + 10 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6, "feet"),
  15737. weight: math.unit(150, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/shard/front.svg",
  15741. extra: 273 / 238,
  15742. bottom: 0.02
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(3 + 6 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 11 / 12, "feet"),
  15759. weight: math.unit(146, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/ashe/front.svg",
  15763. extra: 400 / 373,
  15764. bottom: 0.01
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 11 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(5 + 5 / 12, "feet"),
  15781. weight: math.unit(135, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/beatrix/front.svg",
  15785. extra: 392 / 379,
  15786. bottom: 0.01
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6 + 2/12, "feet"),
  15803. weight: math.unit(135, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/ignatius/front.svg",
  15807. extra: 1380/1259,
  15808. bottom: 27/1407
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(6 + 2/12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(6 + 2 / 12, "feet"),
  15825. weight: math.unit(138, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/mei-li/front.svg",
  15829. extra: 237 / 229,
  15830. bottom: 0.03
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(6 + 2 / 12, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(2 + 4 / 12, "feet"),
  15847. weight: math.unit(62, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/puru/front.svg",
  15851. extra: 206 / 149,
  15852. bottom: 0.06
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(2 + 4 / 12, "feet"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15866. {
  15867. anthro: {
  15868. height: math.unit(5 + 8/12, "feet"),
  15869. weight: math.unit(200, "lb"),
  15870. energyNeed: math.unit(2000, "kcal"),
  15871. name: "Anthro",
  15872. image: {
  15873. source: "./media/characters/kee/anthro.svg",
  15874. extra: 3251/3184,
  15875. bottom: 250/3501
  15876. }
  15877. },
  15878. taur: {
  15879. height: math.unit(11, "feet"),
  15880. weight: math.unit(500, "lb"),
  15881. energyNeed: math.unit(5000, "kcal"),
  15882. name: "Taur",
  15883. image: {
  15884. source: "./media/characters/kee/taur.svg",
  15885. extra: 1362/1320,
  15886. bottom: 83/1445
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(5 + 8/12, "feet"),
  15894. default: true
  15895. },
  15896. {
  15897. name: "Macro",
  15898. height: math.unit(35, "feet")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15904. {
  15905. anthro: {
  15906. height: math.unit(7, "feet"),
  15907. weight: math.unit(190, "lb"),
  15908. name: "Anthro",
  15909. image: {
  15910. source: "./media/characters/cobalt-dracha/anthro.svg",
  15911. extra: 231 / 225,
  15912. bottom: 0.04
  15913. }
  15914. },
  15915. feral: {
  15916. height: math.unit(9 + 7 / 12, "feet"),
  15917. weight: math.unit(294, "lb"),
  15918. name: "Feral",
  15919. image: {
  15920. source: "./media/characters/cobalt-dracha/feral.svg",
  15921. extra: 692 / 633,
  15922. bottom: 0.05
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(7, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15936. {
  15937. fallen: {
  15938. height: math.unit(11 + 8 / 12, "feet"),
  15939. weight: math.unit(485, "lb"),
  15940. name: "Java (Fallen)",
  15941. rename: true,
  15942. image: {
  15943. source: "./media/characters/java/fallen.svg",
  15944. extra: 226 / 208,
  15945. bottom: 0.005
  15946. }
  15947. },
  15948. godkin: {
  15949. height: math.unit(10 + 6 / 12, "feet"),
  15950. weight: math.unit(328, "lb"),
  15951. name: "Java (Godkin)",
  15952. rename: true,
  15953. image: {
  15954. source: "./media/characters/java/godkin.svg",
  15955. extra: 1104/1068,
  15956. bottom: 36/1140
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(11 + 8 / 12, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(5 + 9 / 12, "feet"),
  15973. weight: math.unit(170, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/purna/front.svg",
  15977. extra: 239 / 229,
  15978. bottom: 0.01
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(5 + 9 / 12, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15992. {
  15993. front: {
  15994. height: math.unit(5 + 9 / 12, "feet"),
  15995. weight: math.unit(142, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/kuva/front.svg",
  15999. extra: 281 / 271,
  16000. bottom: 0.006
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Normal",
  16007. height: math.unit(5 + 9 / 12, "feet"),
  16008. default: true
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16014. {
  16015. anthro: {
  16016. height: math.unit(9 + 2 / 12, "feet"),
  16017. weight: math.unit(270, "lb"),
  16018. name: "Anthro",
  16019. image: {
  16020. source: "./media/characters/embra/anthro.svg",
  16021. extra: 200 / 187,
  16022. bottom: 0.02
  16023. }
  16024. },
  16025. feral: {
  16026. height: math.unit(18 + 8 / 12, "feet"),
  16027. weight: math.unit(576, "lb"),
  16028. name: "Feral",
  16029. image: {
  16030. source: "./media/characters/embra/feral.svg",
  16031. extra: 152 / 137,
  16032. bottom: 0.037
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(9 + 2 / 12, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16046. {
  16047. anthro: {
  16048. height: math.unit(10 + 9 / 12, "feet"),
  16049. weight: math.unit(224, "lb"),
  16050. name: "Anthro",
  16051. image: {
  16052. source: "./media/characters/grottos/anthro.svg",
  16053. extra: 350 / 332,
  16054. bottom: 0.045
  16055. }
  16056. },
  16057. feral: {
  16058. height: math.unit(20 + 7 / 12, "feet"),
  16059. weight: math.unit(629, "lb"),
  16060. name: "Feral",
  16061. image: {
  16062. source: "./media/characters/grottos/feral.svg",
  16063. extra: 207 / 190,
  16064. bottom: 0.05
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(10 + 9 / 12, "feet"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16078. {
  16079. anthro: {
  16080. height: math.unit(9 + 6 / 12, "feet"),
  16081. weight: math.unit(298, "lb"),
  16082. name: "Anthro",
  16083. image: {
  16084. source: "./media/characters/frifna/anthro.svg",
  16085. extra: 282 / 269,
  16086. bottom: 0.015
  16087. }
  16088. },
  16089. feral: {
  16090. height: math.unit(16 + 2 / 12, "feet"),
  16091. weight: math.unit(624, "lb"),
  16092. name: "Feral",
  16093. image: {
  16094. source: "./media/characters/frifna/feral.svg"
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(9 + 6 / 12, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6 + 2 / 12, "feet"),
  16111. weight: math.unit(168, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/elise/front.svg",
  16115. extra: 276 / 271
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(6 + 2 / 12, "feet"),
  16123. default: true
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(5 + 10 / 12, "feet"),
  16132. weight: math.unit(210, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/glade/front.svg",
  16136. extra: 258 / 247,
  16137. bottom: 0.008
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(5 + 10 / 12, "feet"),
  16145. default: true
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16151. {
  16152. front: {
  16153. height: math.unit(5 + 10 / 12, "feet"),
  16154. weight: math.unit(129, "lb"),
  16155. name: "Front",
  16156. image: {
  16157. source: "./media/characters/rina/front.svg",
  16158. extra: 266 / 255,
  16159. bottom: 0.005
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(5 + 10 / 12, "feet"),
  16167. default: true
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16173. {
  16174. front: {
  16175. height: math.unit(6 + 1 / 12, "feet"),
  16176. weight: math.unit(192, "lb"),
  16177. name: "Front",
  16178. image: {
  16179. source: "./media/characters/veronica/front.svg",
  16180. extra: 319 / 309,
  16181. bottom: 0.005
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(6 + 1 / 12, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(9 + 3 / 12, "feet"),
  16198. weight: math.unit(1100, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/braxton/front.svg",
  16202. extra: 1057 / 984,
  16203. bottom: 0.05
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(9 + 3 / 12, "feet")
  16211. },
  16212. {
  16213. name: "Giant",
  16214. height: math.unit(300, "feet"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Macro",
  16219. height: math.unit(700, "feet")
  16220. },
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(6000, "feet")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6 + 7 / 12, "feet"),
  16232. weight: math.unit(150, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/blue-feyonics/front.svg",
  16236. extra: 1403 / 1306,
  16237. bottom: 0.047
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(6 + 7 / 12, "feet"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(1.8, "meters"),
  16254. weight: math.unit(60, "kg"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/maxwell/front.svg",
  16258. extra: 2060 / 1873
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(1, "mm")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(1.8, "meter"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(30, "meters")
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(10, "km")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/jack/front.svg",
  16291. extra: 1754 / 1640,
  16292. bottom: 0.01
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(80000, "feet"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Max size",
  16304. height: math.unit(10, "lightyears")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16310. {
  16311. urban: {
  16312. height: math.unit(5, "feet"),
  16313. weight: math.unit(240, "lb"),
  16314. name: "Urban",
  16315. image: {
  16316. source: "./media/characters/cafat/urban.svg",
  16317. extra: 1223/1126,
  16318. bottom: 205/1428
  16319. }
  16320. },
  16321. summer: {
  16322. height: math.unit(5, "feet"),
  16323. weight: math.unit(240, "lb"),
  16324. name: "Summer",
  16325. image: {
  16326. source: "./media/characters/cafat/summer.svg",
  16327. extra: 1223/1126,
  16328. bottom: 205/1428
  16329. }
  16330. },
  16331. winter: {
  16332. height: math.unit(5, "feet"),
  16333. weight: math.unit(240, "lb"),
  16334. name: "Winter",
  16335. image: {
  16336. source: "./media/characters/cafat/winter.svg",
  16337. extra: 1223/1126,
  16338. bottom: 205/1428
  16339. }
  16340. },
  16341. lingerie: {
  16342. height: math.unit(5, "feet"),
  16343. weight: math.unit(240, "lb"),
  16344. name: "Lingerie",
  16345. image: {
  16346. source: "./media/characters/cafat/lingerie.svg",
  16347. extra: 1223/1126,
  16348. bottom: 205/1428
  16349. }
  16350. },
  16351. upright: {
  16352. height: math.unit(6.3, "feet"),
  16353. weight: math.unit(240, "lb"),
  16354. name: "Upright",
  16355. image: {
  16356. source: "./media/characters/cafat/upright.svg",
  16357. bottom: 0.01
  16358. }
  16359. },
  16360. uprightFull: {
  16361. height: math.unit(6.3, "feet"),
  16362. weight: math.unit(240, "lb"),
  16363. name: "Upright (Full)",
  16364. image: {
  16365. source: "./media/characters/cafat/upright-full.svg",
  16366. bottom: 0.01
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Small",
  16373. height: math.unit(5, "feet"),
  16374. default: true
  16375. },
  16376. {
  16377. name: "Large",
  16378. height: math.unit(13, "feet")
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(150, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/verin-raharra/front.svg",
  16391. extra: 5019 / 4835,
  16392. bottom: 0.023
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(7 + 5 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Upsized",
  16404. height: math.unit(20, "feet")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(7, "feet"),
  16413. weight: math.unit(230, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/nakata/front.svg",
  16417. extra: 1.005,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(7, "feet"),
  16426. default: true
  16427. },
  16428. {
  16429. name: "Big",
  16430. height: math.unit(14, "feet")
  16431. },
  16432. {
  16433. name: "Macro",
  16434. height: math.unit(400, "feet")
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(4.91, "feet"),
  16443. weight: math.unit(100, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/lily/front.svg",
  16447. extra: 1585 / 1415,
  16448. bottom: 0.02
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(4.91, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16462. {
  16463. laying: {
  16464. height: math.unit(4 + 4 / 12, "feet"),
  16465. weight: math.unit(600, "lb"),
  16466. name: "Laying",
  16467. image: {
  16468. source: "./media/characters/sheila/laying.svg",
  16469. extra: 1333 / 1265,
  16470. bottom: 0.16
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(4 + 4 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6, "feet"),
  16487. weight: math.unit(190, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/sax/front.svg",
  16491. extra: 1187 / 973,
  16492. bottom: 0.042
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Micro",
  16499. height: math.unit(4, "inches"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(150, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/pandora/front.svg",
  16513. extra: 2720 / 2556,
  16514. bottom: 0.015
  16515. }
  16516. },
  16517. back: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Back",
  16521. image: {
  16522. source: "./media/characters/pandora/back.svg",
  16523. extra: 2720 / 2556,
  16524. bottom: 0.01
  16525. }
  16526. },
  16527. beans: {
  16528. height: math.unit(6 / 8, "feet"),
  16529. name: "Beans",
  16530. image: {
  16531. source: "./media/characters/pandora/beans.svg"
  16532. }
  16533. },
  16534. collar: {
  16535. height: math.unit(0.31, "feet"),
  16536. name: "Collar",
  16537. image: {
  16538. source: "./media/characters/pandora/collar.svg"
  16539. }
  16540. },
  16541. skirt: {
  16542. height: math.unit(6, "feet"),
  16543. weight: math.unit(150, "lb"),
  16544. name: "Skirt",
  16545. image: {
  16546. source: "./media/characters/pandora/skirt.svg",
  16547. extra: 1622 / 1525,
  16548. bottom: 0.015
  16549. }
  16550. },
  16551. hoodie: {
  16552. height: math.unit(6, "feet"),
  16553. weight: math.unit(150, "lb"),
  16554. name: "Hoodie",
  16555. image: {
  16556. source: "./media/characters/pandora/hoodie.svg",
  16557. extra: 1622 / 1525,
  16558. bottom: 0.015
  16559. }
  16560. },
  16561. casual: {
  16562. height: math.unit(6, "feet"),
  16563. weight: math.unit(150, "lb"),
  16564. name: "Casual",
  16565. image: {
  16566. source: "./media/characters/pandora/casual.svg",
  16567. extra: 1622 / 1525,
  16568. bottom: 0.015
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(6, "feet")
  16576. },
  16577. {
  16578. name: "Big Steppy",
  16579. height: math.unit(1, "km"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Galactic Steppy",
  16584. height: math.unit(2, "gigameters")
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16590. {
  16591. side: {
  16592. height: math.unit(10, "feet"),
  16593. weight: math.unit(800, "kg"),
  16594. name: "Side",
  16595. image: {
  16596. source: "./media/characters/venio-darcony/side.svg",
  16597. extra: 1373 / 1003,
  16598. bottom: 0.037
  16599. }
  16600. },
  16601. front: {
  16602. height: math.unit(19, "feet"),
  16603. weight: math.unit(800, "kg"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/venio-darcony/front.svg"
  16607. }
  16608. },
  16609. back: {
  16610. height: math.unit(19, "feet"),
  16611. weight: math.unit(800, "kg"),
  16612. name: "Back",
  16613. image: {
  16614. source: "./media/characters/venio-darcony/back.svg"
  16615. }
  16616. },
  16617. sideNsfw: {
  16618. height: math.unit(10, "feet"),
  16619. weight: math.unit(800, "kg"),
  16620. name: "Side (NSFW)",
  16621. image: {
  16622. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16623. extra: 1373 / 1003,
  16624. bottom: 0.037
  16625. }
  16626. },
  16627. frontNsfw: {
  16628. height: math.unit(19, "feet"),
  16629. weight: math.unit(800, "kg"),
  16630. name: "Front (NSFW)",
  16631. image: {
  16632. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16633. }
  16634. },
  16635. backNsfw: {
  16636. height: math.unit(19, "feet"),
  16637. weight: math.unit(800, "kg"),
  16638. name: "Back (NSFW)",
  16639. image: {
  16640. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16641. }
  16642. },
  16643. sideArmored: {
  16644. height: math.unit(10, "feet"),
  16645. weight: math.unit(800, "kg"),
  16646. name: "Side (Armored)",
  16647. image: {
  16648. source: "./media/characters/venio-darcony/side-armored.svg",
  16649. extra: 1373 / 1003,
  16650. bottom: 0.037
  16651. }
  16652. },
  16653. frontArmored: {
  16654. height: math.unit(19, "feet"),
  16655. weight: math.unit(900, "kg"),
  16656. name: "Front (Armored)",
  16657. image: {
  16658. source: "./media/characters/venio-darcony/front-armored.svg"
  16659. }
  16660. },
  16661. backArmored: {
  16662. height: math.unit(19, "feet"),
  16663. weight: math.unit(900, "kg"),
  16664. name: "Back (Armored)",
  16665. image: {
  16666. source: "./media/characters/venio-darcony/back-armored.svg"
  16667. }
  16668. },
  16669. sword: {
  16670. height: math.unit(10, "feet"),
  16671. weight: math.unit(50, "lb"),
  16672. name: "Sword",
  16673. image: {
  16674. source: "./media/characters/venio-darcony/sword.svg"
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(10, "feet")
  16682. },
  16683. {
  16684. name: "Macro",
  16685. height: math.unit(130, "feet"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Macro+",
  16690. height: math.unit(240, "feet")
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(6, "feet"),
  16699. weight: math.unit(150, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/veski/front.svg",
  16703. extra: 1299 / 1225,
  16704. bottom: 0.04
  16705. }
  16706. },
  16707. back: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(150, "lb"),
  16710. name: "Back",
  16711. image: {
  16712. source: "./media/characters/veski/back.svg",
  16713. extra: 1299 / 1225,
  16714. bottom: 0.008
  16715. }
  16716. },
  16717. maw: {
  16718. height: math.unit(1.5 * 1.21, "feet"),
  16719. name: "Maw",
  16720. image: {
  16721. source: "./media/characters/veski/maw.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Macro",
  16728. height: math.unit(2, "km"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(5 + 7 / 12, "feet"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/isabelle/front.svg",
  16741. extra: 2130 / 1976,
  16742. bottom: 0.05
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Supermicro",
  16749. height: math.unit(10, "micrometers")
  16750. },
  16751. {
  16752. name: "Micro",
  16753. height: math.unit(1, "inch")
  16754. },
  16755. {
  16756. name: "Tiny",
  16757. height: math.unit(5, "inches")
  16758. },
  16759. {
  16760. name: "Standard",
  16761. height: math.unit(5 + 7 / 12, "inches")
  16762. },
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(80, "meters"),
  16766. default: true
  16767. },
  16768. {
  16769. name: "Megamacro",
  16770. height: math.unit(250, "meters")
  16771. },
  16772. {
  16773. name: "Gigamacro",
  16774. height: math.unit(5, "km")
  16775. },
  16776. {
  16777. name: "Cosmic",
  16778. height: math.unit(2.5e6, "miles")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(6, "feet"),
  16787. weight: math.unit(150, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/hanzo/front.svg",
  16791. extra: 374 / 344,
  16792. bottom: 0.02
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(8, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(7, "feet"),
  16809. weight: math.unit(130, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/anna/front.svg",
  16813. extra: 169 / 145,
  16814. bottom: 0.06
  16815. }
  16816. },
  16817. full: {
  16818. height: math.unit(4.96, "feet"),
  16819. weight: math.unit(220, "lb"),
  16820. name: "Full",
  16821. image: {
  16822. source: "./media/characters/anna/full.svg",
  16823. extra: 138 / 114,
  16824. bottom: 0.15
  16825. }
  16826. },
  16827. tongue: {
  16828. height: math.unit(2.53, "feet"),
  16829. name: "Tongue",
  16830. image: {
  16831. source: "./media/characters/anna/tongue.svg"
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(7, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(7, "feet"),
  16848. weight: math.unit(150, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/ian-corvid/front.svg",
  16852. extra: 150 / 142,
  16853. bottom: 0.02
  16854. }
  16855. },
  16856. back: {
  16857. height: math.unit(7, "feet"),
  16858. weight: math.unit(150, "lb"),
  16859. name: "Back",
  16860. image: {
  16861. source: "./media/characters/ian-corvid/back.svg",
  16862. extra: 150 / 143,
  16863. bottom: 0.01
  16864. }
  16865. },
  16866. stomping: {
  16867. height: math.unit(7, "feet"),
  16868. weight: math.unit(150, "lb"),
  16869. name: "Stomping",
  16870. image: {
  16871. source: "./media/characters/ian-corvid/stomping.svg",
  16872. extra: 76 / 72
  16873. }
  16874. },
  16875. sitting: {
  16876. height: math.unit(7 / 1.8, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Sitting",
  16879. image: {
  16880. source: "./media/characters/ian-corvid/sitting.svg",
  16881. extra: 1400 / 1269,
  16882. bottom: 0.15
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Tiny Microw",
  16889. height: math.unit(1, "inch")
  16890. },
  16891. {
  16892. name: "Microw",
  16893. height: math.unit(6, "inches")
  16894. },
  16895. {
  16896. name: "Crow",
  16897. height: math.unit(7 + 1 / 12, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Macrow",
  16902. height: math.unit(176, "feet")
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(5 + 7 / 12, "feet"),
  16911. weight: math.unit(147, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/natalie-kellon/front.svg",
  16915. extra: 1214 / 1141,
  16916. bottom: 0.02
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Micro",
  16923. height: math.unit(1 / 16, "inch")
  16924. },
  16925. {
  16926. name: "Tiny",
  16927. height: math.unit(4, "inches")
  16928. },
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(5 + 7 / 12, "feet"),
  16932. default: true
  16933. },
  16934. {
  16935. name: "Amazon",
  16936. height: math.unit(12, "feet")
  16937. },
  16938. {
  16939. name: "Giantess",
  16940. height: math.unit(160, "meters")
  16941. },
  16942. {
  16943. name: "Titaness",
  16944. height: math.unit(800, "meters")
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6, "feet"),
  16953. weight: math.unit(150, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/alluria/front.svg",
  16957. extra: 806 / 738,
  16958. bottom: 0.01
  16959. }
  16960. },
  16961. side: {
  16962. height: math.unit(6, "feet"),
  16963. weight: math.unit(150, "lb"),
  16964. name: "Side",
  16965. image: {
  16966. source: "./media/characters/alluria/side.svg",
  16967. extra: 800 / 750,
  16968. }
  16969. },
  16970. back: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Back",
  16974. image: {
  16975. source: "./media/characters/alluria/back.svg",
  16976. extra: 806 / 738,
  16977. }
  16978. },
  16979. frontMaid: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Front (Maid)",
  16983. image: {
  16984. source: "./media/characters/alluria/front-maid.svg",
  16985. extra: 806 / 738,
  16986. bottom: 0.01
  16987. }
  16988. },
  16989. sideMaid: {
  16990. height: math.unit(6, "feet"),
  16991. weight: math.unit(150, "lb"),
  16992. name: "Side (Maid)",
  16993. image: {
  16994. source: "./media/characters/alluria/side-maid.svg",
  16995. extra: 800 / 750,
  16996. bottom: 0.005
  16997. }
  16998. },
  16999. backMaid: {
  17000. height: math.unit(6, "feet"),
  17001. weight: math.unit(150, "lb"),
  17002. name: "Back (Maid)",
  17003. image: {
  17004. source: "./media/characters/alluria/back-maid.svg",
  17005. extra: 806 / 738,
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Micro",
  17012. height: math.unit(6, "inches"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(6, "feet"),
  17022. weight: math.unit(150, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/kyle/front.svg",
  17026. extra: 1069 / 962,
  17027. bottom: 77.228 / 1727.45
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Macro",
  17034. height: math.unit(150, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(6, "feet"),
  17044. weight: math.unit(300, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/duncan/front.svg",
  17048. extra: 1650 / 1482,
  17049. bottom: 0.05
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Macro",
  17056. height: math.unit(100, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 4 / 12, "feet"),
  17066. weight: math.unit(220, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/memory/front.svg",
  17070. extra: 3641 / 3545,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(5 + 4 / 12, "feet"),
  17076. weight: math.unit(220, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/memory/back.svg",
  17080. extra: 3641 / 3545,
  17081. bottom: 0.025
  17082. }
  17083. },
  17084. frontSkirt: {
  17085. height: math.unit(5 + 4 / 12, "feet"),
  17086. weight: math.unit(220, "lb"),
  17087. name: "Front (Skirt)",
  17088. image: {
  17089. source: "./media/characters/memory/front-skirt.svg",
  17090. extra: 3641 / 3545,
  17091. bottom: 0.03
  17092. }
  17093. },
  17094. frontDress: {
  17095. height: math.unit(5 + 4 / 12, "feet"),
  17096. weight: math.unit(220, "lb"),
  17097. name: "Front (Dress)",
  17098. image: {
  17099. source: "./media/characters/memory/front-dress.svg",
  17100. extra: 3641 / 3545,
  17101. bottom: 0.03
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Micro",
  17108. height: math.unit(6, "inches"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(5 + 4 / 12, "feet")
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(4 + 11 / 12, "feet"),
  17122. weight: math.unit(100, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/luno/front.svg",
  17126. extra: 1535 / 1487,
  17127. bottom: 0.03
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Micro",
  17134. height: math.unit(3, "inches")
  17135. },
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(4 + 11 / 12, "feet"),
  17139. default: true
  17140. },
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(300, "feet")
  17144. },
  17145. {
  17146. name: "Megamacro",
  17147. height: math.unit(700, "miles")
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(6 + 2 / 12, "feet"),
  17156. weight: math.unit(170, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/jamesy/front.svg",
  17160. extra: 440 / 382,
  17161. bottom: 0.005
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Micro",
  17168. height: math.unit(3, "inches")
  17169. },
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(6 + 2 / 12, "feet"),
  17173. default: true
  17174. },
  17175. {
  17176. name: "Macro",
  17177. height: math.unit(300, "feet")
  17178. },
  17179. {
  17180. name: "Megamacro",
  17181. height: math.unit(700, "miles")
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(6, "feet"),
  17190. weight: math.unit(160, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/mark/front.svg",
  17194. extra: 3300 / 3100,
  17195. bottom: 136.42 / 3440.47
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(120, "meters")
  17203. },
  17204. {
  17205. name: "Bigger Macro",
  17206. height: math.unit(350, "meters")
  17207. },
  17208. {
  17209. name: "Megamacro",
  17210. height: math.unit(8, "km"),
  17211. default: true
  17212. },
  17213. {
  17214. name: "Continental",
  17215. height: math.unit(4550, "km")
  17216. },
  17217. {
  17218. name: "Planetary",
  17219. height: math.unit(65000, "km")
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(6, "feet"),
  17228. weight: math.unit(400, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/mac/front.svg",
  17232. extra: 1048 / 987.7,
  17233. bottom: 60 / 1107.6,
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(500, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(5 + 2 / 12, "feet"),
  17250. weight: math.unit(190, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/bari/front.svg",
  17254. extra: 3156 / 2880,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. back: {
  17259. height: math.unit(5 + 2 / 12, "feet"),
  17260. weight: math.unit(190, "lb"),
  17261. name: "Back",
  17262. image: {
  17263. source: "./media/characters/bari/back.svg",
  17264. extra: 3260 / 2834,
  17265. bottom: 0.025
  17266. }
  17267. },
  17268. frontPlush: {
  17269. height: math.unit(5 + 2 / 12, "feet"),
  17270. weight: math.unit(190, "lb"),
  17271. name: "Front (Plush)",
  17272. image: {
  17273. source: "./media/characters/bari/front-plush.svg",
  17274. extra: 1112 / 1061,
  17275. bottom: 0.002
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Micro",
  17282. height: math.unit(3, "inches")
  17283. },
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(5 + 2 / 12, "feet"),
  17287. default: true
  17288. },
  17289. {
  17290. name: "Macro",
  17291. height: math.unit(20, "feet")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6 + 1 / 12, "feet"),
  17300. weight: math.unit(275, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/hunter-misha-raven/front.svg"
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Mortal",
  17310. height: math.unit(6 + 1 / 12, "feet")
  17311. },
  17312. {
  17313. name: "Divine",
  17314. height: math.unit(1.12134e34, "parsecs"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(6 + 3 / 12, "feet"),
  17324. weight: math.unit(220, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/max-calore/front.svg",
  17328. extra: 1700 / 1648,
  17329. bottom: 0.01
  17330. }
  17331. },
  17332. back: {
  17333. height: math.unit(6 + 3 / 12, "feet"),
  17334. weight: math.unit(220, "lb"),
  17335. name: "Back",
  17336. image: {
  17337. source: "./media/characters/max-calore/back.svg",
  17338. extra: 1700 / 1648,
  17339. bottom: 0.01
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(6 + 3 / 12, "feet"),
  17347. default: true
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17353. {
  17354. side: {
  17355. height: math.unit(2 + 8 / 12, "feet"),
  17356. weight: math.unit(99, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/aspen/side.svg",
  17360. extra: 152 / 138,
  17361. bottom: 0.032
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(2 + 8 / 12, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17375. {
  17376. side: {
  17377. height: math.unit(3 + 2 / 12, "feet"),
  17378. weight: math.unit(224, "lb"),
  17379. name: "Side",
  17380. image: {
  17381. source: "./media/characters/sheila-feral-wolf/side.svg",
  17382. extra: 179 / 166,
  17383. bottom: 0.03
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(3 + 2 / 12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17397. {
  17398. side: {
  17399. height: math.unit(1 + 9 / 12, "feet"),
  17400. weight: math.unit(38, "lb"),
  17401. name: "Side",
  17402. image: {
  17403. source: "./media/characters/michelle/side.svg",
  17404. extra: 147 / 136.7,
  17405. bottom: 0.03
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(1 + 9 / 12, "feet"),
  17413. default: true
  17414. },
  17415. ]
  17416. ))
  17417. characterMakers.push(() => makeCharacter(
  17418. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17419. {
  17420. front: {
  17421. height: math.unit(1.54, "feet"),
  17422. weight: math.unit(50, "lb"),
  17423. name: "Front",
  17424. image: {
  17425. source: "./media/characters/nino/front.svg"
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(1.54, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(1.49, "feet"),
  17442. weight: math.unit(45, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/viola/front.svg"
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(1.49, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 5 / 12, "feet"),
  17462. weight: math.unit(580, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/atlas/front.svg",
  17466. extra: 298.5 / 290,
  17467. bottom: 0.015
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(6 + 5 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17481. {
  17482. side: {
  17483. height: math.unit(15.6, "inches"),
  17484. weight: math.unit(10, "lb"),
  17485. name: "Side",
  17486. image: {
  17487. source: "./media/characters/davy/side.svg",
  17488. extra: 200 / 170,
  17489. bottom: 0.01
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(15.6, "inches"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17503. {
  17504. side: {
  17505. height: math.unit(4 + 8 / 12, "feet"),
  17506. weight: math.unit(166, "lb"),
  17507. name: "Side",
  17508. image: {
  17509. source: "./media/characters/fiona/side.svg",
  17510. extra: 232 / 220,
  17511. bottom: 0.03
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(4 + 8 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17525. {
  17526. front: {
  17527. height: math.unit(26, "inches"),
  17528. weight: math.unit(35, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/lyla/front.svg",
  17532. bottom: 0.1
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(3, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17546. {
  17547. side: {
  17548. height: math.unit(1.8, "feet"),
  17549. weight: math.unit(44, "lb"),
  17550. name: "Side",
  17551. image: {
  17552. source: "./media/characters/perseus/side.svg",
  17553. bottom: 0.21
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(1.8, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17567. {
  17568. side: {
  17569. height: math.unit(4 + 2 / 12, "feet"),
  17570. weight: math.unit(20, "lb"),
  17571. name: "Side",
  17572. image: {
  17573. source: "./media/characters/remus/side.svg"
  17574. }
  17575. },
  17576. },
  17577. [
  17578. {
  17579. name: "Normal",
  17580. height: math.unit(4 + 2 / 12, "feet"),
  17581. default: true
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17587. {
  17588. front: {
  17589. height: math.unit(4 + 11 / 12, "feet"),
  17590. weight: math.unit(114, "lb"),
  17591. name: "Front",
  17592. image: {
  17593. source: "./media/characters/raf/front.svg",
  17594. extra: 1504/1339,
  17595. bottom: 26/1530
  17596. }
  17597. },
  17598. side: {
  17599. height: math.unit(4 + 11 / 12, "feet"),
  17600. weight: math.unit(114, "lb"),
  17601. name: "Side",
  17602. image: {
  17603. source: "./media/characters/raf/side.svg",
  17604. extra: 1466/1316,
  17605. bottom: 29/1495
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Micro",
  17612. height: math.unit(2, "inches")
  17613. },
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(4 + 11 / 12, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(70, "feet")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(1.5, "meters"),
  17630. weight: math.unit(68, "kg"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/liam-einarr/front.svg",
  17634. extra: 2822 / 2666
  17635. }
  17636. },
  17637. back: {
  17638. height: math.unit(1.5, "meters"),
  17639. weight: math.unit(68, "kg"),
  17640. name: "Back",
  17641. image: {
  17642. source: "./media/characters/liam-einarr/back.svg",
  17643. extra: 2822 / 2666,
  17644. bottom: 0.015
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(1.5, "meters"),
  17652. default: true
  17653. },
  17654. {
  17655. name: "Macro",
  17656. height: math.unit(150, "meters")
  17657. },
  17658. {
  17659. name: "Megamacro",
  17660. height: math.unit(35, "km")
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(6, "feet"),
  17669. weight: math.unit(75, "kg"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/linda/front.svg",
  17673. extra: 930 / 874,
  17674. bottom: 0.004
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(6, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(6 + 8 / 12, "feet"),
  17691. weight: math.unit(220, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/caylex/front.svg",
  17695. extra: 821 / 772,
  17696. bottom: 0.07
  17697. }
  17698. },
  17699. back: {
  17700. height: math.unit(6 + 8 / 12, "feet"),
  17701. weight: math.unit(220, "lb"),
  17702. name: "Back",
  17703. image: {
  17704. source: "./media/characters/caylex/back.svg",
  17705. extra: 821 / 772,
  17706. bottom: 0.022
  17707. }
  17708. },
  17709. hand: {
  17710. height: math.unit(1.25, "feet"),
  17711. name: "Hand",
  17712. image: {
  17713. source: "./media/characters/caylex/hand.svg"
  17714. }
  17715. },
  17716. foot: {
  17717. height: math.unit(1.6, "feet"),
  17718. name: "Foot",
  17719. image: {
  17720. source: "./media/characters/caylex/foot.svg"
  17721. }
  17722. },
  17723. armored: {
  17724. height: math.unit(6 + 8 / 12, "feet"),
  17725. weight: math.unit(250, "lb"),
  17726. name: "Armored",
  17727. image: {
  17728. source: "./media/characters/caylex/armored.svg",
  17729. extra: 1420 / 1310,
  17730. bottom: 0.045
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(6 + 8 / 12, "feet"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Normal+",
  17742. height: math.unit(12, "feet")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(7 + 6 / 12, "feet"),
  17751. weight: math.unit(288, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/alana/front.svg",
  17755. extra: 679 / 653,
  17756. bottom: 22.5 / 701
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(7 + 6 / 12, "feet")
  17764. },
  17765. {
  17766. name: "Large",
  17767. height: math.unit(50, "feet")
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(100, "feet"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Macro+",
  17776. height: math.unit(200, "feet")
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17782. {
  17783. front: {
  17784. height: math.unit(6 + 1 / 12, "feet"),
  17785. weight: math.unit(210, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/hasani/front.svg",
  17789. extra: 244 / 232,
  17790. bottom: 0.01
  17791. }
  17792. },
  17793. back: {
  17794. height: math.unit(6 + 1 / 12, "feet"),
  17795. weight: math.unit(210, "lb"),
  17796. name: "Back",
  17797. image: {
  17798. source: "./media/characters/hasani/back.svg",
  17799. extra: 244 / 232,
  17800. bottom: 0.01
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(6 + 1 / 12, "feet")
  17808. },
  17809. {
  17810. name: "Macro",
  17811. height: math.unit(175, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(1.82, "meters"),
  17821. weight: math.unit(140, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/nita/front.svg",
  17825. extra: 2473 / 2363,
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1.82, "m")
  17834. },
  17835. {
  17836. name: "Macro",
  17837. height: math.unit(300, "m")
  17838. },
  17839. {
  17840. name: "Mistake Canon",
  17841. height: math.unit(0.5, "miles"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Big Mistake",
  17846. height: math.unit(13, "miles")
  17847. },
  17848. {
  17849. name: "Playing God",
  17850. height: math.unit(2450, "miles")
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(4, "feet"),
  17859. weight: math.unit(120, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/shiriko/front.svg",
  17863. extra: 970/934,
  17864. bottom: 5/975
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(4, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6, "feet"),
  17881. name: "front",
  17882. image: {
  17883. source: "./media/characters/deja/front.svg",
  17884. extra: 926 / 840,
  17885. bottom: 0.07
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Planck Length",
  17892. height: math.unit(1.6e-35, "meters")
  17893. },
  17894. {
  17895. name: "Normal",
  17896. height: math.unit(30.48, "meters"),
  17897. default: true
  17898. },
  17899. {
  17900. name: "Universal",
  17901. height: math.unit(8.8e26, "meters")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17907. {
  17908. side: {
  17909. height: math.unit(8, "feet"),
  17910. weight: math.unit(6300, "lb"),
  17911. name: "Side",
  17912. image: {
  17913. source: "./media/characters/anima/side.svg",
  17914. bottom: 0.035
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(8, "feet"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(8, "feet"),
  17931. weight: math.unit(350, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/bianca/front.svg",
  17935. extra: 234 / 225,
  17936. bottom: 0.03
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(8, "feet"),
  17944. default: true
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(6, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/adinia/front.svg",
  17957. extra: 1845 / 1672,
  17958. bottom: 0.02
  17959. }
  17960. },
  17961. back: {
  17962. height: math.unit(6, "feet"),
  17963. weight: math.unit(150, "lb"),
  17964. name: "Back",
  17965. image: {
  17966. source: "./media/characters/adinia/back.svg",
  17967. extra: 1845 / 1672,
  17968. bottom: 0.002
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(11 + 5 / 12, "feet"),
  17976. default: true
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(3, "meters"),
  17985. weight: math.unit(200, "kg"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/lykasa/front.svg",
  17989. extra: 1076 / 976,
  17990. bottom: 0.06
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(3, "meters")
  17998. },
  17999. {
  18000. name: "Kaiju",
  18001. height: math.unit(120, "meters"),
  18002. default: true
  18003. },
  18004. {
  18005. name: "Mega Kaiju",
  18006. height: math.unit(240, "km")
  18007. },
  18008. {
  18009. name: "Giga Kaiju",
  18010. height: math.unit(400, "megameters")
  18011. },
  18012. {
  18013. name: "Tera Kaiju",
  18014. height: math.unit(800, "gigameters")
  18015. },
  18016. {
  18017. name: "Kaiju Dragon Goddess",
  18018. height: math.unit(26, "zettaparsecs")
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18024. {
  18025. side: {
  18026. height: math.unit(283 / 124 * 6, "feet"),
  18027. weight: math.unit(35000, "lb"),
  18028. name: "Side",
  18029. image: {
  18030. source: "./media/characters/malfaren/side.svg",
  18031. extra: 1310/529,
  18032. bottom: 24/1334
  18033. }
  18034. },
  18035. front: {
  18036. height: math.unit(22.36, "feet"),
  18037. weight: math.unit(35000, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/malfaren/front.svg",
  18041. extra: 1237/1115,
  18042. bottom: 32/1269
  18043. }
  18044. },
  18045. maw: {
  18046. height: math.unit(6.9, "feet"),
  18047. name: "Maw",
  18048. image: {
  18049. source: "./media/characters/malfaren/maw.svg"
  18050. }
  18051. },
  18052. dick: {
  18053. height: math.unit(6.19, "feet"),
  18054. name: "Dick",
  18055. image: {
  18056. source: "./media/characters/malfaren/dick.svg"
  18057. }
  18058. },
  18059. eye: {
  18060. height: math.unit(0.69, "feet"),
  18061. name: "Eye",
  18062. image: {
  18063. source: "./media/characters/malfaren/eye.svg"
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Big",
  18070. height: math.unit(283 / 162 * 6, "feet"),
  18071. },
  18072. {
  18073. name: "Bigger",
  18074. height: math.unit(283 / 124 * 6, "feet")
  18075. },
  18076. {
  18077. name: "Massive",
  18078. height: math.unit(283 / 92 * 6, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "👀💦",
  18083. height: math.unit(283 / 73 * 6, "feet"),
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(1.7, "m"),
  18092. weight: math.unit(70, "kg"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/kernel/front.svg",
  18096. extra: 222 / 210,
  18097. bottom: 0.007
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Nano",
  18104. height: math.unit(17, "micrometers")
  18105. },
  18106. {
  18107. name: "Micro",
  18108. height: math.unit(1.7, "mm")
  18109. },
  18110. {
  18111. name: "Small",
  18112. height: math.unit(1.7, "cm")
  18113. },
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(1.7, "m"),
  18117. default: true
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(1.75, "meters"),
  18126. weight: math.unit(65, "kg"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/jayne-folest/front.svg",
  18130. extra: 2115 / 2007,
  18131. bottom: 0.02
  18132. }
  18133. },
  18134. back: {
  18135. height: math.unit(1.75, "meters"),
  18136. weight: math.unit(65, "kg"),
  18137. name: "Back",
  18138. image: {
  18139. source: "./media/characters/jayne-folest/back.svg",
  18140. extra: 2115 / 2007,
  18141. bottom: 0.005
  18142. }
  18143. },
  18144. frontClothed: {
  18145. height: math.unit(1.75, "meters"),
  18146. weight: math.unit(65, "kg"),
  18147. name: "Front (Clothed)",
  18148. image: {
  18149. source: "./media/characters/jayne-folest/front-clothed.svg",
  18150. extra: 2115 / 2007,
  18151. bottom: 0.035
  18152. }
  18153. },
  18154. hand: {
  18155. height: math.unit(1 / 1.260, "feet"),
  18156. name: "Hand",
  18157. image: {
  18158. source: "./media/characters/jayne-folest/hand.svg"
  18159. }
  18160. },
  18161. foot: {
  18162. height: math.unit(1 / 0.918, "feet"),
  18163. name: "Foot",
  18164. image: {
  18165. source: "./media/characters/jayne-folest/foot.svg"
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Micro",
  18172. height: math.unit(4, "cm")
  18173. },
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(1.75, "meters")
  18177. },
  18178. {
  18179. name: "Macro",
  18180. height: math.unit(47.5, "meters"),
  18181. default: true
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(180, "cm"),
  18190. weight: math.unit(70, "kg"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/algier/front.svg",
  18194. extra: 596 / 572,
  18195. bottom: 0.04
  18196. }
  18197. },
  18198. back: {
  18199. height: math.unit(180, "cm"),
  18200. weight: math.unit(70, "kg"),
  18201. name: "Back",
  18202. image: {
  18203. source: "./media/characters/algier/back.svg",
  18204. extra: 596 / 572,
  18205. bottom: 0.025
  18206. }
  18207. },
  18208. frontdressed: {
  18209. height: math.unit(180, "cm"),
  18210. weight: math.unit(150, "kg"),
  18211. name: "Front-dressed",
  18212. image: {
  18213. source: "./media/characters/algier/front-dressed.svg",
  18214. extra: 596 / 572,
  18215. bottom: 0.038
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Micro",
  18222. height: math.unit(5, "cm")
  18223. },
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(180, "cm"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(64, "m")
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18237. {
  18238. upright: {
  18239. height: math.unit(7, "feet"),
  18240. weight: math.unit(300, "lb"),
  18241. name: "Upright",
  18242. image: {
  18243. source: "./media/characters/pretzel/upright.svg",
  18244. extra: 534 / 522,
  18245. bottom: 0.065
  18246. }
  18247. },
  18248. sprawling: {
  18249. height: math.unit(3.75, "feet"),
  18250. weight: math.unit(300, "lb"),
  18251. name: "Sprawling",
  18252. image: {
  18253. source: "./media/characters/pretzel/sprawling.svg",
  18254. extra: 314 / 281,
  18255. bottom: 0.1
  18256. }
  18257. },
  18258. tongue: {
  18259. height: math.unit(2, "feet"),
  18260. name: "Tongue",
  18261. image: {
  18262. source: "./media/characters/pretzel/tongue.svg"
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Normal",
  18269. height: math.unit(7, "feet"),
  18270. default: true
  18271. },
  18272. {
  18273. name: "Oversized",
  18274. height: math.unit(15, "feet")
  18275. },
  18276. {
  18277. name: "Huge",
  18278. height: math.unit(30, "feet")
  18279. },
  18280. {
  18281. name: "Macro",
  18282. height: math.unit(250, "feet")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18288. {
  18289. sideFront: {
  18290. height: math.unit(5 + 2 / 12, "feet"),
  18291. weight: math.unit(120, "lb"),
  18292. name: "Front Side",
  18293. image: {
  18294. source: "./media/characters/roxi/side-front.svg",
  18295. extra: 2924 / 2717,
  18296. bottom: 0.08
  18297. }
  18298. },
  18299. sideBack: {
  18300. height: math.unit(5 + 2 / 12, "feet"),
  18301. weight: math.unit(120, "lb"),
  18302. name: "Back Side",
  18303. image: {
  18304. source: "./media/characters/roxi/side-back.svg",
  18305. extra: 2904 / 2693,
  18306. bottom: 0.06
  18307. }
  18308. },
  18309. front: {
  18310. height: math.unit(5 + 2 / 12, "feet"),
  18311. weight: math.unit(120, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/roxi/front.svg",
  18315. extra: 2028 / 1907,
  18316. bottom: 0.01
  18317. }
  18318. },
  18319. frontAlt: {
  18320. height: math.unit(5 + 2 / 12, "feet"),
  18321. weight: math.unit(120, "lb"),
  18322. name: "Front (Alt)",
  18323. image: {
  18324. source: "./media/characters/roxi/front-alt.svg",
  18325. extra: 1828 / 1798,
  18326. bottom: 0.01
  18327. }
  18328. },
  18329. sitting: {
  18330. height: math.unit(2.8, "feet"),
  18331. weight: math.unit(120, "lb"),
  18332. name: "Sitting",
  18333. image: {
  18334. source: "./media/characters/roxi/sitting.svg",
  18335. extra: 2660 / 2462,
  18336. bottom: 0.1
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(5 + 2 / 12, "feet"),
  18344. default: true
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18350. {
  18351. side: {
  18352. height: math.unit(55, "feet"),
  18353. weight: math.unit(153, "tons"),
  18354. name: "Side",
  18355. image: {
  18356. source: "./media/characters/shadow/side.svg",
  18357. extra: 701 / 628,
  18358. bottom: 0.02
  18359. }
  18360. },
  18361. flying: {
  18362. height: math.unit(145, "feet"),
  18363. weight: math.unit(153, "tons"),
  18364. name: "Flying",
  18365. image: {
  18366. source: "./media/characters/shadow/flying.svg"
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(55, "feet"),
  18374. default: true
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(6, "feet"),
  18383. weight: math.unit(200, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/marcie/front.svg",
  18387. extra: 960 / 876,
  18388. bottom: 58 / 1017.87
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Macro",
  18395. height: math.unit(1, "mile"),
  18396. default: true
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(7, "feet"),
  18405. weight: math.unit(200, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/kachina/front.svg",
  18409. extra: 1290.68 / 1119,
  18410. bottom: 36.5 / 1327.18
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(7, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18424. {
  18425. looking: {
  18426. height: math.unit(2, "meters"),
  18427. weight: math.unit(300, "kg"),
  18428. name: "Looking",
  18429. image: {
  18430. source: "./media/characters/kash/looking.svg",
  18431. extra: 474 / 344,
  18432. bottom: 0.03
  18433. }
  18434. },
  18435. side: {
  18436. height: math.unit(2, "meters"),
  18437. weight: math.unit(300, "kg"),
  18438. name: "Side",
  18439. image: {
  18440. source: "./media/characters/kash/side.svg",
  18441. extra: 302 / 251,
  18442. bottom: 0.03
  18443. }
  18444. },
  18445. front: {
  18446. height: math.unit(2, "meters"),
  18447. weight: math.unit(300, "kg"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/kash/front.svg",
  18451. extra: 495 / 360,
  18452. bottom: 0.015
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(2, "meters"),
  18460. default: true
  18461. },
  18462. {
  18463. name: "Big",
  18464. height: math.unit(3, "meters")
  18465. },
  18466. {
  18467. name: "Large",
  18468. height: math.unit(5, "meters")
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18474. {
  18475. feeding: {
  18476. height: math.unit(6.7, "feet"),
  18477. weight: math.unit(350, "lb"),
  18478. name: "Feeding",
  18479. image: {
  18480. source: "./media/characters/lalim/feeding.svg",
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(6.7, "feet"),
  18488. default: true
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(9.5, "feet"),
  18497. weight: math.unit(600, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/de'vout/front.svg",
  18501. extra: 1443 / 1328,
  18502. bottom: 0.025
  18503. }
  18504. },
  18505. back: {
  18506. height: math.unit(9.5, "feet"),
  18507. weight: math.unit(600, "lb"),
  18508. name: "Back",
  18509. image: {
  18510. source: "./media/characters/de'vout/back.svg",
  18511. extra: 1443 / 1328
  18512. }
  18513. },
  18514. frontDressed: {
  18515. height: math.unit(9.5, "feet"),
  18516. weight: math.unit(600, "lb"),
  18517. name: "Front (Dressed",
  18518. image: {
  18519. source: "./media/characters/de'vout/front-dressed.svg",
  18520. extra: 1443 / 1328,
  18521. bottom: 0.025
  18522. }
  18523. },
  18524. backDressed: {
  18525. height: math.unit(9.5, "feet"),
  18526. weight: math.unit(600, "lb"),
  18527. name: "Back (Dressed",
  18528. image: {
  18529. source: "./media/characters/de'vout/back-dressed.svg",
  18530. extra: 1443 / 1328
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(9.5, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(8, "feet"),
  18547. weight: math.unit(225, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/talana/front.svg",
  18551. extra: 1410 / 1300,
  18552. bottom: 0.015
  18553. }
  18554. },
  18555. frontDressed: {
  18556. height: math.unit(8, "feet"),
  18557. weight: math.unit(225, "lb"),
  18558. name: "Front (Dressed",
  18559. image: {
  18560. source: "./media/characters/talana/front-dressed.svg",
  18561. extra: 1410 / 1300,
  18562. bottom: 0.015
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(8, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18576. {
  18577. side: {
  18578. height: math.unit(7.2, "feet"),
  18579. weight: math.unit(150, "lb"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/xeauvok/side.svg",
  18583. extra: 1975 / 1523,
  18584. bottom: 0.07
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(7.2, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18598. {
  18599. side: {
  18600. height: math.unit(10, "feet"),
  18601. weight: math.unit(900, "kg"),
  18602. name: "Side",
  18603. image: {
  18604. source: "./media/characters/zara/side.svg",
  18605. extra: 504 / 498
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(10, "feet"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18619. {
  18620. side: {
  18621. height: math.unit(6, "feet"),
  18622. weight: math.unit(150, "lb"),
  18623. name: "Side",
  18624. image: {
  18625. source: "./media/characters/richard-dragon/side.svg",
  18626. extra: 845 / 340,
  18627. bottom: 0.017
  18628. }
  18629. },
  18630. maw: {
  18631. height: math.unit(2.97, "feet"),
  18632. name: "Maw",
  18633. image: {
  18634. source: "./media/characters/richard-dragon/maw.svg"
  18635. }
  18636. },
  18637. },
  18638. [
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18643. {
  18644. front: {
  18645. height: math.unit(4, "feet"),
  18646. weight: math.unit(100, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/richard-smeargle/front.svg",
  18650. extra: 2952 / 2820,
  18651. bottom: 0.028
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(4, "feet"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Dynamax",
  18663. height: math.unit(20, "meters")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6, "feet"),
  18672. weight: math.unit(110, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/klay/front.svg",
  18676. extra: 962 / 883,
  18677. bottom: 0.04
  18678. }
  18679. },
  18680. back: {
  18681. height: math.unit(6, "feet"),
  18682. weight: math.unit(110, "lb"),
  18683. name: "Back",
  18684. image: {
  18685. source: "./media/characters/klay/back.svg",
  18686. extra: 962 / 883
  18687. }
  18688. },
  18689. beans: {
  18690. height: math.unit(1.15, "feet"),
  18691. name: "Beans",
  18692. image: {
  18693. source: "./media/characters/klay/beans.svg"
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Micro",
  18700. height: math.unit(6, "inches")
  18701. },
  18702. {
  18703. name: "Mini",
  18704. height: math.unit(3, "feet")
  18705. },
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(6, "feet"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Big",
  18713. height: math.unit(25, "feet")
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(100, "feet")
  18718. },
  18719. {
  18720. name: "Megamacro",
  18721. height: math.unit(400, "feet")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(6, "feet"),
  18730. weight: math.unit(160, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/marcus/front.svg",
  18734. extra: 734 / 676,
  18735. bottom: 0.03
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Little",
  18742. height: math.unit(6, "feet")
  18743. },
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(110, "feet"),
  18747. default: true
  18748. },
  18749. {
  18750. name: "Macro",
  18751. height: math.unit(250, "feet")
  18752. },
  18753. {
  18754. name: "Megamacro",
  18755. height: math.unit(1000, "feet")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(7, "feet"),
  18764. weight: math.unit(275, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/claude-delroute/front.svg",
  18768. extra: 902/827,
  18769. bottom: 26/928
  18770. }
  18771. },
  18772. side: {
  18773. height: math.unit(7, "feet"),
  18774. weight: math.unit(275, "lb"),
  18775. name: "Side",
  18776. image: {
  18777. source: "./media/characters/claude-delroute/side.svg",
  18778. extra: 908/853,
  18779. bottom: 16/924
  18780. }
  18781. },
  18782. back: {
  18783. height: math.unit(7, "feet"),
  18784. weight: math.unit(275, "lb"),
  18785. name: "Back",
  18786. image: {
  18787. source: "./media/characters/claude-delroute/back.svg",
  18788. extra: 911/829,
  18789. bottom: 18/929
  18790. }
  18791. },
  18792. maw: {
  18793. height: math.unit(0.6407, "meters"),
  18794. name: "Maw",
  18795. image: {
  18796. source: "./media/characters/claude-delroute/maw.svg"
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(7, "feet"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Lorge",
  18808. height: math.unit(20, "feet")
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(8 + 4 / 12, "feet"),
  18817. weight: math.unit(600, "lb"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/dragonien/front.svg",
  18821. extra: 100 / 94,
  18822. bottom: 3.3 / 103.3445
  18823. }
  18824. },
  18825. back: {
  18826. height: math.unit(8 + 4 / 12, "feet"),
  18827. weight: math.unit(600, "lb"),
  18828. name: "Back",
  18829. image: {
  18830. source: "./media/characters/dragonien/back.svg",
  18831. extra: 776 / 746,
  18832. bottom: 6.4 / 782.0616
  18833. }
  18834. },
  18835. foot: {
  18836. height: math.unit(1.54, "feet"),
  18837. name: "Foot",
  18838. image: {
  18839. source: "./media/characters/dragonien/foot.svg",
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(8 + 4 / 12, "feet"),
  18847. default: true
  18848. },
  18849. {
  18850. name: "Macro",
  18851. height: math.unit(200, "feet")
  18852. },
  18853. {
  18854. name: "Megamacro",
  18855. height: math.unit(1, "mile")
  18856. },
  18857. {
  18858. name: "Gigamacro",
  18859. height: math.unit(1000, "miles")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(5 + 2 / 12, "feet"),
  18868. weight: math.unit(110, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/desta/front.svg",
  18872. extra: 767 / 726,
  18873. bottom: 11.7 / 779
  18874. }
  18875. },
  18876. back: {
  18877. height: math.unit(5 + 2 / 12, "feet"),
  18878. weight: math.unit(110, "lb"),
  18879. name: "Back",
  18880. image: {
  18881. source: "./media/characters/desta/back.svg",
  18882. extra: 777 / 728,
  18883. bottom: 6 / 784
  18884. }
  18885. },
  18886. frontAlt: {
  18887. height: math.unit(5 + 2 / 12, "feet"),
  18888. weight: math.unit(110, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/desta/front-alt.svg",
  18892. extra: 1482 / 1417
  18893. }
  18894. },
  18895. side: {
  18896. height: math.unit(5 + 2 / 12, "feet"),
  18897. weight: math.unit(110, "lb"),
  18898. name: "Side",
  18899. image: {
  18900. source: "./media/characters/desta/side.svg",
  18901. extra: 2579 / 2491,
  18902. bottom: 0.053
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Micro",
  18909. height: math.unit(6, "inches")
  18910. },
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(5 + 2 / 12, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(62, "feet")
  18919. },
  18920. {
  18921. name: "Megamacro",
  18922. height: math.unit(1800, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(10, "feet"),
  18931. weight: math.unit(700, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/storm-alystar/front.svg",
  18935. extra: 2112 / 1898,
  18936. bottom: 0.034
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(3.5, "inches")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(10, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Macro",
  18952. height: math.unit(400, "feet")
  18953. },
  18954. {
  18955. name: "Deific",
  18956. height: math.unit(60, "miles")
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(2.35, "meters"),
  18965. weight: math.unit(119, "kg"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/ilia/front.svg",
  18969. extra: 1285 / 1255,
  18970. bottom: 0.06
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(2.35, "meters")
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(140, "meters"),
  18982. default: true
  18983. },
  18984. {
  18985. name: "Megamacro",
  18986. height: math.unit(100, "miles")
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(6 + 5 / 12, "feet"),
  18995. weight: math.unit(190, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/kingdead/front.svg",
  18999. extra: 1228 / 1177
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Micro",
  19006. height: math.unit(7, "inches")
  19007. },
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(6 + 5 / 12, "feet")
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(150, "feet"),
  19015. default: true
  19016. },
  19017. {
  19018. name: "Megamacro",
  19019. height: math.unit(200, "miles")
  19020. },
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19025. {
  19026. front: {
  19027. height: math.unit(8, "feet"),
  19028. weight: math.unit(600, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/kyrehx/front.svg",
  19032. extra: 1195 / 1095,
  19033. bottom: 0.034
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Micro",
  19040. height: math.unit(2, "inches")
  19041. },
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(8, "feet"),
  19045. default: true
  19046. },
  19047. {
  19048. name: "Macro",
  19049. height: math.unit(255, "feet")
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19058. weight: math.unit(184, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/xang/front.svg",
  19062. extra: 845 / 755
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19070. default: true
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(0.935 * 146, "feet")
  19075. },
  19076. {
  19077. name: "Megamacro",
  19078. height: math.unit(0.935 * 3, "miles")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19084. {
  19085. frontDressed: {
  19086. height: math.unit(5 + 7 / 12, "feet"),
  19087. weight: math.unit(140, "lb"),
  19088. name: "Front (Dressed)",
  19089. image: {
  19090. source: "./media/characters/doc-weardno/front-dressed.svg",
  19091. extra: 263 / 234
  19092. }
  19093. },
  19094. backDressed: {
  19095. height: math.unit(5 + 7 / 12, "feet"),
  19096. weight: math.unit(140, "lb"),
  19097. name: "Back (Dressed)",
  19098. image: {
  19099. source: "./media/characters/doc-weardno/back-dressed.svg",
  19100. extra: 266 / 238
  19101. }
  19102. },
  19103. front: {
  19104. height: math.unit(5 + 7 / 12, "feet"),
  19105. weight: math.unit(140, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/doc-weardno/front.svg",
  19109. extra: 254 / 233
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Micro",
  19116. height: math.unit(3, "inches")
  19117. },
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(5 + 7 / 12, "feet"),
  19121. default: true
  19122. },
  19123. {
  19124. name: "Macro",
  19125. height: math.unit(25, "feet")
  19126. },
  19127. {
  19128. name: "Megamacro",
  19129. height: math.unit(2, "miles")
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(6 + 2 / 12, "feet"),
  19138. weight: math.unit(153, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/seth-whilst/front.svg",
  19142. bottom: 0.07
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Micro",
  19149. height: math.unit(5, "inches")
  19150. },
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(6 + 2 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(3, "inches"),
  19163. weight: math.unit(8, "grams"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/pocket-jabari/front.svg",
  19167. extra: 1024 / 974,
  19168. bottom: 0.039
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Minimicro",
  19175. height: math.unit(8, "mm")
  19176. },
  19177. {
  19178. name: "Micro",
  19179. height: math.unit(3, "inches"),
  19180. default: true
  19181. },
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(3, "feet")
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19190. {
  19191. frontDressed: {
  19192. height: math.unit(15, "feet"),
  19193. weight: math.unit(3280, "lb"),
  19194. name: "Front (Dressed)",
  19195. image: {
  19196. source: "./media/characters/sapphy/front-dressed.svg",
  19197. extra: 1951/1654,
  19198. bottom: 194/2145
  19199. },
  19200. form: "anthro",
  19201. default: true
  19202. },
  19203. backDressed: {
  19204. height: math.unit(15, "feet"),
  19205. weight: math.unit(3280, "lb"),
  19206. name: "Back (Dressed)",
  19207. image: {
  19208. source: "./media/characters/sapphy/back-dressed.svg",
  19209. extra: 2058/1918,
  19210. bottom: 125/2183
  19211. },
  19212. form: "anthro"
  19213. },
  19214. frontNude: {
  19215. height: math.unit(15, "feet"),
  19216. weight: math.unit(3280, "lb"),
  19217. name: "Front (Nude)",
  19218. image: {
  19219. source: "./media/characters/sapphy/front-nude.svg",
  19220. extra: 1951/1654,
  19221. bottom: 194/2145
  19222. },
  19223. form: "anthro"
  19224. },
  19225. backNude: {
  19226. height: math.unit(15, "feet"),
  19227. weight: math.unit(3280, "lb"),
  19228. name: "Back (Nude)",
  19229. image: {
  19230. source: "./media/characters/sapphy/back-nude.svg",
  19231. extra: 2058/1918,
  19232. bottom: 125/2183
  19233. },
  19234. form: "anthro"
  19235. },
  19236. full: {
  19237. height: math.unit(15, "feet"),
  19238. weight: math.unit(3280, "lb"),
  19239. name: "Full",
  19240. image: {
  19241. source: "./media/characters/sapphy/full.svg",
  19242. extra: 1396/1317,
  19243. bottom: 44/1440
  19244. },
  19245. form: "anthro"
  19246. },
  19247. dick: {
  19248. height: math.unit(3.8, "feet"),
  19249. name: "Dick",
  19250. image: {
  19251. source: "./media/characters/sapphy/dick.svg"
  19252. },
  19253. form: "anthro"
  19254. },
  19255. feral: {
  19256. height: math.unit(35, "feet"),
  19257. weight: math.unit(160, "tons"),
  19258. name: "Feral",
  19259. image: {
  19260. source: "./media/characters/sapphy/feral.svg",
  19261. extra: 1050/573,
  19262. bottom: 60/1110
  19263. },
  19264. form: "feral",
  19265. default: true
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(15, "feet"),
  19272. form: "anthro"
  19273. },
  19274. {
  19275. name: "Casual Macro",
  19276. height: math.unit(120, "feet"),
  19277. form: "anthro"
  19278. },
  19279. {
  19280. name: "Macro",
  19281. height: math.unit(2150, "feet"),
  19282. default: true,
  19283. form: "anthro"
  19284. },
  19285. {
  19286. name: "Megamacro",
  19287. height: math.unit(8, "miles"),
  19288. form: "anthro"
  19289. },
  19290. {
  19291. name: "Galaxy Mom",
  19292. height: math.unit(6, "megalightyears"),
  19293. form: "anthro"
  19294. },
  19295. {
  19296. name: "Normal",
  19297. height: math.unit(35, "feet"),
  19298. form: "feral",
  19299. default: true
  19300. },
  19301. {
  19302. name: "Macro",
  19303. height: math.unit(300, "feet"),
  19304. form: "feral"
  19305. },
  19306. {
  19307. name: "Galaxy Mom",
  19308. height: math.unit(10, "megalightyears"),
  19309. form: "feral"
  19310. },
  19311. ],
  19312. {
  19313. "anthro": {
  19314. name: "Anthro",
  19315. default: true
  19316. },
  19317. "feral": {
  19318. name: "Feral"
  19319. }
  19320. }
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(6, "feet"),
  19327. weight: math.unit(170, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/kiro/front.svg",
  19331. extra: 1064 / 1012,
  19332. bottom: 0.052
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Micro",
  19339. height: math.unit(6, "inches")
  19340. },
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(6, "feet"),
  19344. default: true
  19345. },
  19346. {
  19347. name: "Macro",
  19348. height: math.unit(72, "feet")
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19354. {
  19355. front: {
  19356. height: math.unit(5 + 9 / 12, "feet"),
  19357. weight: math.unit(175, "lb"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/irishfox/front.svg",
  19361. extra: 1912 / 1680,
  19362. bottom: 0.02
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Nano",
  19369. height: math.unit(1, "mm")
  19370. },
  19371. {
  19372. name: "Micro",
  19373. height: math.unit(2, "inches")
  19374. },
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(5 + 9 / 12, "feet"),
  19378. default: true
  19379. },
  19380. {
  19381. name: "Macro",
  19382. height: math.unit(45, "feet")
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(6 + 1 / 12, "feet"),
  19391. weight: math.unit(75, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/aronai-sieyes/front.svg",
  19395. extra: 1532/1450,
  19396. bottom: 42/1574
  19397. }
  19398. },
  19399. side: {
  19400. height: math.unit(6 + 1 / 12, "feet"),
  19401. weight: math.unit(75, "lb"),
  19402. name: "Side",
  19403. image: {
  19404. source: "./media/characters/aronai-sieyes/side.svg",
  19405. extra: 1422/1365,
  19406. bottom: 148/1570
  19407. }
  19408. },
  19409. back: {
  19410. height: math.unit(6 + 1 / 12, "feet"),
  19411. weight: math.unit(75, "lb"),
  19412. name: "Back",
  19413. image: {
  19414. source: "./media/characters/aronai-sieyes/back.svg",
  19415. extra: 1526/1464,
  19416. bottom: 51/1577
  19417. }
  19418. },
  19419. dressed: {
  19420. height: math.unit(6 + 1 / 12, "feet"),
  19421. weight: math.unit(75, "lb"),
  19422. name: "Dressed",
  19423. image: {
  19424. source: "./media/characters/aronai-sieyes/dressed.svg",
  19425. extra: 1559/1483,
  19426. bottom: 39/1598
  19427. }
  19428. },
  19429. slit: {
  19430. height: math.unit(1.3, "feet"),
  19431. name: "Slit",
  19432. image: {
  19433. source: "./media/characters/aronai-sieyes/slit.svg"
  19434. }
  19435. },
  19436. slitSpread: {
  19437. height: math.unit(0.9, "feet"),
  19438. name: "Slit (Spread)",
  19439. image: {
  19440. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19441. }
  19442. },
  19443. rump: {
  19444. height: math.unit(1.3, "feet"),
  19445. name: "Rump",
  19446. image: {
  19447. source: "./media/characters/aronai-sieyes/rump.svg"
  19448. }
  19449. },
  19450. maw: {
  19451. height: math.unit(1.25, "feet"),
  19452. name: "Maw",
  19453. image: {
  19454. source: "./media/characters/aronai-sieyes/maw.svg"
  19455. }
  19456. },
  19457. feral: {
  19458. height: math.unit(18, "feet"),
  19459. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19460. name: "Feral",
  19461. image: {
  19462. source: "./media/characters/aronai-sieyes/feral.svg",
  19463. extra: 1530 / 1240,
  19464. bottom: 0.035
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Micro",
  19471. height: math.unit(2, "inches")
  19472. },
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(6 + 1 / 12, "feet"),
  19476. default: true
  19477. }
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(12, "feet"),
  19485. weight: math.unit(410, "kg"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/xuna/front.svg",
  19489. extra: 2184 / 1980
  19490. }
  19491. },
  19492. side: {
  19493. height: math.unit(12, "feet"),
  19494. weight: math.unit(410, "kg"),
  19495. name: "Side",
  19496. image: {
  19497. source: "./media/characters/xuna/side.svg",
  19498. extra: 2184 / 1980
  19499. }
  19500. },
  19501. back: {
  19502. height: math.unit(12, "feet"),
  19503. weight: math.unit(410, "kg"),
  19504. name: "Back",
  19505. image: {
  19506. source: "./media/characters/xuna/back.svg",
  19507. extra: 2184 / 1980
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Nano glow",
  19514. height: math.unit(10, "nm")
  19515. },
  19516. {
  19517. name: "Micro floof",
  19518. height: math.unit(0.3, "m")
  19519. },
  19520. {
  19521. name: "Huggable softy boi",
  19522. height: math.unit(3.6576, "m"),
  19523. default: true
  19524. },
  19525. {
  19526. name: "Admirable floof",
  19527. height: math.unit(80, "meters")
  19528. },
  19529. {
  19530. name: "Gentle macro",
  19531. height: math.unit(300, "meters")
  19532. },
  19533. {
  19534. name: "Very careful floof",
  19535. height: math.unit(3200, "meters")
  19536. },
  19537. {
  19538. name: "The mega floof",
  19539. height: math.unit(36000, "meters")
  19540. },
  19541. {
  19542. name: "Giga-fur-Wicker",
  19543. height: math.unit(4800000, "meters")
  19544. },
  19545. {
  19546. name: "Licky world",
  19547. height: math.unit(20000000, "meters")
  19548. },
  19549. {
  19550. name: "Floofy cyan sun",
  19551. height: math.unit(1500000000, "meters")
  19552. },
  19553. {
  19554. name: "Milky Wicker",
  19555. height: math.unit(1000000000000000000000, "meters")
  19556. },
  19557. {
  19558. name: "The observing Wicker",
  19559. height: math.unit(999999999999999999999999999, "meters")
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19565. {
  19566. front: {
  19567. height: math.unit(5 + 9 / 12, "feet"),
  19568. weight: math.unit(150, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/arokha-sieyes/front.svg",
  19572. extra: 1425 / 1284,
  19573. bottom: 0.05
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(5 + 9 / 12, "feet")
  19581. },
  19582. {
  19583. name: "Macro",
  19584. height: math.unit(30, "meters"),
  19585. default: true
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19591. {
  19592. front: {
  19593. height: math.unit(6, "feet"),
  19594. weight: math.unit(180, "lb"),
  19595. name: "Front",
  19596. image: {
  19597. source: "./media/characters/arokh-sieyes/front.svg",
  19598. extra: 1830 / 1769,
  19599. bottom: 0.01
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(6, "feet")
  19607. },
  19608. {
  19609. name: "Macro",
  19610. height: math.unit(30, "meters"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19617. {
  19618. side: {
  19619. height: math.unit(13 + 1 / 12, "feet"),
  19620. weight: math.unit(8.5, "tonnes"),
  19621. name: "Side",
  19622. image: {
  19623. source: "./media/characters/goldeneye/side.svg",
  19624. extra: 1182 / 778,
  19625. bottom: 0.067
  19626. }
  19627. },
  19628. paw: {
  19629. height: math.unit(3.4, "feet"),
  19630. name: "Paw",
  19631. image: {
  19632. source: "./media/characters/goldeneye/paw.svg"
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(13 + 1 / 12, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19646. {
  19647. front: {
  19648. height: math.unit(6 + 1 / 12, "feet"),
  19649. weight: math.unit(210, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/leonardo-lycheborne/front.svg",
  19653. extra: 776/723,
  19654. bottom: 34/810
  19655. }
  19656. },
  19657. side: {
  19658. height: math.unit(6 + 1 / 12, "feet"),
  19659. weight: math.unit(210, "lb"),
  19660. name: "Side",
  19661. image: {
  19662. source: "./media/characters/leonardo-lycheborne/side.svg",
  19663. extra: 780/728,
  19664. bottom: 12/792
  19665. }
  19666. },
  19667. back: {
  19668. height: math.unit(6 + 1 / 12, "feet"),
  19669. weight: math.unit(210, "lb"),
  19670. name: "Back",
  19671. image: {
  19672. source: "./media/characters/leonardo-lycheborne/back.svg",
  19673. extra: 775/721,
  19674. bottom: 17/792
  19675. }
  19676. },
  19677. hand: {
  19678. height: math.unit(1.08, "feet"),
  19679. name: "Hand",
  19680. image: {
  19681. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19682. }
  19683. },
  19684. foot: {
  19685. height: math.unit(1.32, "feet"),
  19686. name: "Foot",
  19687. image: {
  19688. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19689. }
  19690. },
  19691. maw: {
  19692. height: math.unit(1, "feet"),
  19693. name: "Maw",
  19694. image: {
  19695. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19696. }
  19697. },
  19698. were: {
  19699. height: math.unit(20, "feet"),
  19700. weight: math.unit(7800, "lb"),
  19701. name: "Were",
  19702. image: {
  19703. source: "./media/characters/leonardo-lycheborne/were.svg",
  19704. extra: 1224/1165,
  19705. bottom: 72/1296
  19706. }
  19707. },
  19708. feral: {
  19709. height: math.unit(7.5, "feet"),
  19710. weight: math.unit(600, "lb"),
  19711. name: "Feral",
  19712. image: {
  19713. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19714. extra: 797/702,
  19715. bottom: 139/936
  19716. }
  19717. },
  19718. taur: {
  19719. height: math.unit(11, "feet"),
  19720. weight: math.unit(3300, "lb"),
  19721. name: "Taur",
  19722. image: {
  19723. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19724. extra: 1271/1197,
  19725. bottom: 47/1318
  19726. }
  19727. },
  19728. barghest: {
  19729. height: math.unit(11, "feet"),
  19730. weight: math.unit(1300, "lb"),
  19731. name: "Barghest",
  19732. image: {
  19733. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19734. extra: 1291/1204,
  19735. bottom: 37/1328
  19736. }
  19737. },
  19738. dick: {
  19739. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19740. name: "Dick",
  19741. image: {
  19742. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19743. }
  19744. },
  19745. dickWere: {
  19746. height: math.unit((20) / 3.8, "feet"),
  19747. name: "Dick (Were)",
  19748. image: {
  19749. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(6 + 1 / 12, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(10, "feet"),
  19766. weight: math.unit(350, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/jet/front.svg",
  19770. extra: 2050 / 1980,
  19771. bottom: 0.013
  19772. }
  19773. },
  19774. back: {
  19775. height: math.unit(10, "feet"),
  19776. weight: math.unit(350, "lb"),
  19777. name: "Back",
  19778. image: {
  19779. source: "./media/characters/jet/back.svg",
  19780. extra: 2050 / 1980,
  19781. bottom: 0.013
  19782. }
  19783. },
  19784. },
  19785. [
  19786. {
  19787. name: "Micro",
  19788. height: math.unit(6, "inches")
  19789. },
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(10, "feet"),
  19793. default: true
  19794. },
  19795. {
  19796. name: "Macro",
  19797. height: math.unit(100, "feet")
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(15, "feet"),
  19806. weight: math.unit(2800, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/tanarath/front.svg",
  19810. extra: 2392 / 2220,
  19811. bottom: 0.03
  19812. }
  19813. },
  19814. back: {
  19815. height: math.unit(15, "feet"),
  19816. weight: math.unit(2800, "lb"),
  19817. name: "Back",
  19818. image: {
  19819. source: "./media/characters/tanarath/back.svg",
  19820. extra: 2392 / 2220,
  19821. bottom: 0.03
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(15, "feet"),
  19829. default: true
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(7 + 1 / 12, "feet"),
  19838. weight: math.unit(175, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/patty-cattybatty/front.svg",
  19842. extra: 908 / 874,
  19843. bottom: 0.025
  19844. }
  19845. },
  19846. },
  19847. [
  19848. {
  19849. name: "Micro",
  19850. height: math.unit(1, "inch")
  19851. },
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(7 + 1 / 12, "feet")
  19855. },
  19856. {
  19857. name: "Mini Macro",
  19858. height: math.unit(155, "feet")
  19859. },
  19860. {
  19861. name: "Macro",
  19862. height: math.unit(1077, "feet")
  19863. },
  19864. {
  19865. name: "Mega Macro",
  19866. height: math.unit(47650, "feet"),
  19867. default: true
  19868. },
  19869. {
  19870. name: "Giga Macro",
  19871. height: math.unit(440, "miles")
  19872. },
  19873. {
  19874. name: "Tera Macro",
  19875. height: math.unit(8700, "miles")
  19876. },
  19877. {
  19878. name: "Planetary Macro",
  19879. height: math.unit(32700, "miles")
  19880. },
  19881. {
  19882. name: "Solar Macro",
  19883. height: math.unit(550000, "miles")
  19884. },
  19885. {
  19886. name: "Celestial Macro",
  19887. height: math.unit(2.5, "AU")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(4 + 5 / 12, "feet"),
  19896. weight: math.unit(90, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/cappu/front.svg",
  19900. extra: 1247 / 1152,
  19901. bottom: 0.012
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(4 + 5 / 12, "feet"),
  19909. default: true
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19915. {
  19916. frontDressed: {
  19917. height: math.unit(70, "cm"),
  19918. weight: math.unit(6, "kg"),
  19919. name: "Front (Dressed)",
  19920. image: {
  19921. source: "./media/characters/sebi/front-dressed.svg",
  19922. extra: 713.5 / 686.5,
  19923. bottom: 0.003
  19924. }
  19925. },
  19926. front: {
  19927. height: math.unit(70, "cm"),
  19928. weight: math.unit(5, "kg"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/sebi/front.svg",
  19932. extra: 713.5 / 686.5,
  19933. bottom: 0.003
  19934. }
  19935. }
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(70, "cm"),
  19941. default: true
  19942. },
  19943. {
  19944. name: "Macro",
  19945. height: math.unit(8, "meters")
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(6, "feet"),
  19954. weight: math.unit(150, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/typhek/front.svg",
  19958. extra: 1948 / 1929,
  19959. bottom: 0.025
  19960. }
  19961. },
  19962. side: {
  19963. height: math.unit(6, "feet"),
  19964. weight: math.unit(150, "lb"),
  19965. name: "Side",
  19966. image: {
  19967. source: "./media/characters/typhek/side.svg",
  19968. extra: 2034 / 2010,
  19969. bottom: 0.003
  19970. }
  19971. },
  19972. back: {
  19973. height: math.unit(6, "feet"),
  19974. weight: math.unit(150, "lb"),
  19975. name: "Back",
  19976. image: {
  19977. source: "./media/characters/typhek/back.svg",
  19978. extra: 2005 / 1978,
  19979. bottom: 0.004
  19980. }
  19981. },
  19982. palm: {
  19983. height: math.unit(1.2, "feet"),
  19984. name: "Palm",
  19985. image: {
  19986. source: "./media/characters/typhek/palm.svg"
  19987. }
  19988. },
  19989. fist: {
  19990. height: math.unit(1.1, "feet"),
  19991. name: "Fist",
  19992. image: {
  19993. source: "./media/characters/typhek/fist.svg"
  19994. }
  19995. },
  19996. foot: {
  19997. height: math.unit(1.57, "feet"),
  19998. name: "Foot",
  19999. image: {
  20000. source: "./media/characters/typhek/foot.svg"
  20001. }
  20002. },
  20003. sole: {
  20004. height: math.unit(2.05, "feet"),
  20005. name: "Sole",
  20006. image: {
  20007. source: "./media/characters/typhek/sole.svg"
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "Macro",
  20014. height: math.unit(40, "stories"),
  20015. default: true
  20016. },
  20017. {
  20018. name: "Megamacro",
  20019. height: math.unit(1, "mile")
  20020. },
  20021. {
  20022. name: "Gigamacro",
  20023. height: math.unit(4000, "solarradii")
  20024. },
  20025. {
  20026. name: "Universal",
  20027. height: math.unit(1.1, "universes")
  20028. }
  20029. ]
  20030. ))
  20031. characterMakers.push(() => makeCharacter(
  20032. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20033. {
  20034. side: {
  20035. height: math.unit(5 + 7 / 12, "feet"),
  20036. weight: math.unit(150, "lb"),
  20037. name: "Side",
  20038. image: {
  20039. source: "./media/characters/kassy/side.svg",
  20040. extra: 1280 / 1225,
  20041. bottom: 0.002
  20042. }
  20043. },
  20044. front: {
  20045. height: math.unit(5 + 7 / 12, "feet"),
  20046. weight: math.unit(150, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/kassy/front.svg",
  20050. extra: 1280 / 1225,
  20051. bottom: 0.025
  20052. }
  20053. },
  20054. back: {
  20055. height: math.unit(5 + 7 / 12, "feet"),
  20056. weight: math.unit(150, "lb"),
  20057. name: "Back",
  20058. image: {
  20059. source: "./media/characters/kassy/back.svg",
  20060. extra: 1280 / 1225,
  20061. bottom: 0.002
  20062. }
  20063. },
  20064. foot: {
  20065. height: math.unit(1.266, "feet"),
  20066. name: "Foot",
  20067. image: {
  20068. source: "./media/characters/kassy/foot.svg"
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(5 + 7 / 12, "feet")
  20076. },
  20077. {
  20078. name: "Macro",
  20079. height: math.unit(137, "feet"),
  20080. default: true
  20081. },
  20082. {
  20083. name: "Megamacro",
  20084. height: math.unit(1, "mile")
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20090. {
  20091. front: {
  20092. height: math.unit(6 + 1 / 12, "feet"),
  20093. weight: math.unit(200, "lb"),
  20094. name: "Front",
  20095. image: {
  20096. source: "./media/characters/neil/front.svg",
  20097. extra: 1326 / 1250,
  20098. bottom: 0.023
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(6 + 1 / 12, "feet"),
  20106. default: true
  20107. },
  20108. {
  20109. name: "Macro",
  20110. height: math.unit(200, "feet")
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(5 + 9 / 12, "feet"),
  20119. weight: math.unit(190, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/atticus/front.svg",
  20123. extra: 2934 / 2785,
  20124. bottom: 0.025
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(5 + 9 / 12, "feet"),
  20132. default: true
  20133. },
  20134. {
  20135. name: "Macro",
  20136. height: math.unit(180, "feet")
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20142. {
  20143. side: {
  20144. height: math.unit(9, "feet"),
  20145. weight: math.unit(650, "lb"),
  20146. name: "Side",
  20147. image: {
  20148. source: "./media/characters/milo/side.svg",
  20149. extra: 2644 / 2310,
  20150. bottom: 0.032
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(9, "feet"),
  20158. default: true
  20159. },
  20160. {
  20161. name: "Macro",
  20162. height: math.unit(300, "feet")
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20168. {
  20169. side: {
  20170. height: math.unit(8, "meters"),
  20171. weight: math.unit(90000, "kg"),
  20172. name: "Side",
  20173. image: {
  20174. source: "./media/characters/ijzer/side.svg",
  20175. extra: 2756 / 1600,
  20176. bottom: 0.01
  20177. }
  20178. },
  20179. },
  20180. [
  20181. {
  20182. name: "Small",
  20183. height: math.unit(3, "meters")
  20184. },
  20185. {
  20186. name: "Normal",
  20187. height: math.unit(8, "meters"),
  20188. default: true
  20189. },
  20190. {
  20191. name: "Normal+",
  20192. height: math.unit(10, "meters")
  20193. },
  20194. {
  20195. name: "Bigger",
  20196. height: math.unit(24, "meters")
  20197. },
  20198. {
  20199. name: "Huge",
  20200. height: math.unit(80, "meters")
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20206. {
  20207. front: {
  20208. height: math.unit(6 + 2 / 12, "feet"),
  20209. weight: math.unit(153, "lb"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/luca-cervicum/front.svg",
  20213. extra: 370 / 327,
  20214. bottom: 0.015
  20215. }
  20216. },
  20217. back: {
  20218. height: math.unit(6 + 2 / 12, "feet"),
  20219. weight: math.unit(153, "lb"),
  20220. name: "Back",
  20221. image: {
  20222. source: "./media/characters/luca-cervicum/back.svg",
  20223. extra: 367 / 333,
  20224. bottom: 0.005
  20225. }
  20226. },
  20227. frontGear: {
  20228. height: math.unit(6 + 2 / 12, "feet"),
  20229. weight: math.unit(173, "lb"),
  20230. name: "Front (Gear)",
  20231. image: {
  20232. source: "./media/characters/luca-cervicum/front-gear.svg",
  20233. extra: 377 / 333,
  20234. bottom: 0.006
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(6 + 2 / 12, "feet"),
  20242. default: true
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20248. {
  20249. front: {
  20250. height: math.unit(6 + 1 / 12, "feet"),
  20251. weight: math.unit(304, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/oliver/front.svg",
  20255. extra: 157 / 143,
  20256. bottom: 0.08
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(6 + 1 / 12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(5 + 7 / 12, "feet"),
  20273. weight: math.unit(140, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/shane/front.svg",
  20277. extra: 304 / 289,
  20278. bottom: 0.005
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(5 + 7 / 12, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20292. {
  20293. front: {
  20294. height: math.unit(5 + 9 / 12, "feet"),
  20295. weight: math.unit(178, "lb"),
  20296. name: "Front",
  20297. image: {
  20298. source: "./media/characters/shin/front.svg",
  20299. extra: 159 / 151,
  20300. bottom: 0.015
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(5 + 9 / 12, "feet"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(5 + 10 / 12, "feet"),
  20317. weight: math.unit(168, "lb"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/xerxes/front.svg",
  20321. extra: 282 / 260,
  20322. bottom: 0.045
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(5 + 10 / 12, "feet"),
  20330. default: true
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(6 + 7 / 12, "feet"),
  20339. weight: math.unit(208, "lb"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/chaska/front.svg",
  20343. extra: 332 / 319,
  20344. bottom: 0.015
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(6 + 7 / 12, "feet"),
  20352. default: true
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(5 + 8 / 12, "feet"),
  20361. weight: math.unit(208, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/enuk/front.svg",
  20365. extra: 437 / 406,
  20366. bottom: 0.02
  20367. }
  20368. },
  20369. },
  20370. [
  20371. {
  20372. name: "Normal",
  20373. height: math.unit(5 + 8 / 12, "feet"),
  20374. default: true
  20375. },
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20380. {
  20381. front: {
  20382. height: math.unit(5 + 10 / 12, "feet"),
  20383. weight: math.unit(252, "lb"),
  20384. name: "Front",
  20385. image: {
  20386. source: "./media/characters/bruun/front.svg",
  20387. extra: 197 / 187,
  20388. bottom: 0.012
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Normal",
  20395. height: math.unit(5 + 10 / 12, "feet"),
  20396. default: true
  20397. },
  20398. ]
  20399. ))
  20400. characterMakers.push(() => makeCharacter(
  20401. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20402. {
  20403. front: {
  20404. height: math.unit(6 + 10 / 12, "feet"),
  20405. weight: math.unit(255, "lb"),
  20406. name: "Front",
  20407. image: {
  20408. source: "./media/characters/alexeev/front.svg",
  20409. extra: 213 / 200,
  20410. bottom: 0.05
  20411. }
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(6 + 10 / 12, "feet"),
  20418. default: true
  20419. },
  20420. ]
  20421. ))
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20424. {
  20425. front: {
  20426. height: math.unit(2 + 8 / 12, "feet"),
  20427. weight: math.unit(22, "lb"),
  20428. name: "Front",
  20429. image: {
  20430. source: "./media/characters/evelyn/front.svg",
  20431. extra: 208 / 180
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(2 + 8 / 12, "feet"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(5 + 9 / 12, "feet"),
  20448. weight: math.unit(139, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/inca/front.svg",
  20452. extra: 294 / 291,
  20453. bottom: 0.03
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Normal",
  20460. height: math.unit(5 + 9 / 12, "feet"),
  20461. default: true
  20462. },
  20463. ]
  20464. ))
  20465. characterMakers.push(() => makeCharacter(
  20466. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20467. {
  20468. front: {
  20469. height: math.unit(6 + 3 / 12, "feet"),
  20470. weight: math.unit(185, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/mera/front.svg",
  20474. extra: 291 / 277,
  20475. bottom: 0.03
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(6 + 3 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(6 + 7 / 12, "feet"),
  20492. weight: math.unit(160, "lb"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/ceres/front.svg",
  20496. extra: 1023 / 950,
  20497. bottom: 0.027
  20498. }
  20499. },
  20500. back: {
  20501. height: math.unit(6 + 7 / 12, "feet"),
  20502. weight: math.unit(160, "lb"),
  20503. name: "Back",
  20504. image: {
  20505. source: "./media/characters/ceres/back.svg",
  20506. extra: 1023 / 950
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Normal",
  20513. height: math.unit(6 + 7 / 12, "feet"),
  20514. default: true
  20515. },
  20516. ]
  20517. ))
  20518. characterMakers.push(() => makeCharacter(
  20519. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20520. {
  20521. front: {
  20522. height: math.unit(5 + 10 / 12, "feet"),
  20523. weight: math.unit(150, "lb"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/kris/front.svg",
  20527. extra: 885 / 803,
  20528. bottom: 0.03
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(5 + 10 / 12, "feet"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(7, "feet"),
  20545. weight: math.unit(120, "kg"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/taluthus/front.svg",
  20549. extra: 903 / 833,
  20550. bottom: 0.015
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(7, "feet"),
  20558. default: true
  20559. },
  20560. {
  20561. name: "Macro",
  20562. height: math.unit(300, "feet")
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(5 + 9 / 12, "feet"),
  20571. weight: math.unit(145, "lb"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/dawn/front.svg",
  20575. extra: 2094 / 2016,
  20576. bottom: 0.025
  20577. }
  20578. },
  20579. back: {
  20580. height: math.unit(5 + 9 / 12, "feet"),
  20581. weight: math.unit(160, "lb"),
  20582. name: "Back",
  20583. image: {
  20584. source: "./media/characters/dawn/back.svg",
  20585. extra: 2112 / 2080,
  20586. bottom: 0.005
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(6 + 7 / 12, "feet"),
  20594. default: true
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20600. {
  20601. anthro: {
  20602. height: math.unit(8 + 3 / 12, "feet"),
  20603. weight: math.unit(450, "lb"),
  20604. name: "Anthro",
  20605. image: {
  20606. source: "./media/characters/arador/anthro.svg",
  20607. extra: 1835 / 1718,
  20608. bottom: 0.025
  20609. }
  20610. },
  20611. feral: {
  20612. height: math.unit(4, "feet"),
  20613. weight: math.unit(200, "lb"),
  20614. name: "Feral",
  20615. image: {
  20616. source: "./media/characters/arador/feral.svg",
  20617. extra: 1683 / 1514,
  20618. bottom: 0.07
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(8 + 3 / 12, "feet")
  20626. },
  20627. {
  20628. name: "Macro",
  20629. height: math.unit(82.5, "feet"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20636. {
  20637. front: {
  20638. height: math.unit(5 + 10 / 12, "feet"),
  20639. weight: math.unit(125, "lb"),
  20640. name: "Front",
  20641. image: {
  20642. source: "./media/characters/dharsi/front.svg",
  20643. extra: 716 / 630,
  20644. bottom: 0.035
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Nano",
  20651. height: math.unit(100, "nm")
  20652. },
  20653. {
  20654. name: "Micro",
  20655. height: math.unit(2, "inches")
  20656. },
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(5 + 10 / 12, "feet"),
  20660. default: true
  20661. },
  20662. {
  20663. name: "Macro",
  20664. height: math.unit(1000, "feet")
  20665. },
  20666. {
  20667. name: "Megamacro",
  20668. height: math.unit(10, "miles")
  20669. },
  20670. {
  20671. name: "Gigamacro",
  20672. height: math.unit(3000, "miles")
  20673. },
  20674. {
  20675. name: "Teramacro",
  20676. height: math.unit(500000, "miles")
  20677. },
  20678. {
  20679. name: "Teramacro+",
  20680. height: math.unit(30, "galaxies")
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(6, "feet"),
  20689. weight: math.unit(150, "lb"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/deathy/front.svg",
  20693. extra: 1552 / 1463,
  20694. bottom: 0.025
  20695. }
  20696. },
  20697. side: {
  20698. height: math.unit(6, "feet"),
  20699. weight: math.unit(150, "lb"),
  20700. name: "Side",
  20701. image: {
  20702. source: "./media/characters/deathy/side.svg",
  20703. extra: 1604 / 1455,
  20704. bottom: 0.025
  20705. }
  20706. },
  20707. back: {
  20708. height: math.unit(6, "feet"),
  20709. weight: math.unit(150, "lb"),
  20710. name: "Back",
  20711. image: {
  20712. source: "./media/characters/deathy/back.svg",
  20713. extra: 1580 / 1463,
  20714. bottom: 0.005
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Micro",
  20721. height: math.unit(5, "millimeters")
  20722. },
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(6 + 5 / 12, "feet"),
  20726. default: true
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20732. {
  20733. front: {
  20734. height: math.unit(16, "feet"),
  20735. weight: math.unit(4000, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/juniper/front.svg",
  20739. bottom: 0.04
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(16, "feet"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(6, "feet"),
  20756. weight: math.unit(150, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/hipster/front.svg",
  20760. extra: 1312 / 1209,
  20761. bottom: 0.025
  20762. }
  20763. },
  20764. back: {
  20765. height: math.unit(6, "feet"),
  20766. weight: math.unit(150, "lb"),
  20767. name: "Back",
  20768. image: {
  20769. source: "./media/characters/hipster/back.svg",
  20770. extra: 1281 / 1196,
  20771. bottom: 0.01
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Micro",
  20778. height: math.unit(1, "mm")
  20779. },
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(4, "inches"),
  20783. default: true
  20784. },
  20785. {
  20786. name: "Macro",
  20787. height: math.unit(500, "feet")
  20788. },
  20789. {
  20790. name: "Megamacro",
  20791. height: math.unit(1000, "miles")
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(6, "feet"),
  20800. weight: math.unit(150, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/tendirmuldr/front.svg",
  20804. extra: 1878 / 1772,
  20805. bottom: 0.015
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Megamacro",
  20812. height: math.unit(1500, "miles"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20819. {
  20820. front: {
  20821. height: math.unit(14, "feet"),
  20822. weight: math.unit(12000, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/mort/front.svg",
  20826. extra: 365 / 318,
  20827. bottom: 0.01
  20828. }
  20829. },
  20830. side: {
  20831. height: math.unit(14, "feet"),
  20832. weight: math.unit(12000, "lb"),
  20833. name: "Side",
  20834. image: {
  20835. source: "./media/characters/mort/side.svg",
  20836. extra: 365 / 318,
  20837. bottom: 0.052
  20838. },
  20839. default: true
  20840. },
  20841. back: {
  20842. height: math.unit(14, "feet"),
  20843. weight: math.unit(12000, "lb"),
  20844. name: "Back",
  20845. image: {
  20846. source: "./media/characters/mort/back.svg",
  20847. extra: 371 / 332,
  20848. bottom: 0.18
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(14, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20862. {
  20863. front: {
  20864. height: math.unit(8, "feet"),
  20865. weight: math.unit(1, "ton"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/lycoa/front.svg",
  20869. extra: 1836/1728,
  20870. bottom: 81/1917
  20871. }
  20872. },
  20873. back: {
  20874. height: math.unit(8, "feet"),
  20875. weight: math.unit(1, "ton"),
  20876. name: "Back",
  20877. image: {
  20878. source: "./media/characters/lycoa/back.svg",
  20879. extra: 1785/1720,
  20880. bottom: 91/1876
  20881. }
  20882. },
  20883. head: {
  20884. height: math.unit(1.6243, "feet"),
  20885. name: "Head",
  20886. image: {
  20887. source: "./media/characters/lycoa/head.svg",
  20888. extra: 1011/782,
  20889. bottom: 0/1011
  20890. }
  20891. },
  20892. tailmaw: {
  20893. height: math.unit(1.9, "feet"),
  20894. name: "Tailmaw",
  20895. image: {
  20896. source: "./media/characters/lycoa/tailmaw.svg"
  20897. }
  20898. },
  20899. tentacles: {
  20900. height: math.unit(2.1, "feet"),
  20901. name: "Tentacles",
  20902. image: {
  20903. source: "./media/characters/lycoa/tentacles.svg"
  20904. }
  20905. },
  20906. dick: {
  20907. height: math.unit(1.73, "feet"),
  20908. name: "Dick",
  20909. image: {
  20910. source: "./media/characters/lycoa/dick.svg"
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(8, "feet"),
  20918. default: true
  20919. },
  20920. {
  20921. name: "Macro",
  20922. height: math.unit(30, "feet")
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20928. {
  20929. front: {
  20930. height: math.unit(4 + 2 / 12, "feet"),
  20931. weight: math.unit(70, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/naldara/front.svg",
  20935. extra: 1664/1387,
  20936. bottom: 81/1745
  20937. },
  20938. form: "anthro",
  20939. default: true
  20940. },
  20941. naga: {
  20942. height: math.unit(20, "feet"),
  20943. weight: math.unit(15000, "kg"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/naldara/naga.svg",
  20947. extra: 1590/1396,
  20948. bottom: 285/1875
  20949. },
  20950. form: "naga",
  20951. default: true
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(4 + 2 / 12, "feet"),
  20958. form: "anthro",
  20959. default: true
  20960. },
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(20, "feet"),
  20964. form: "naga",
  20965. default: true
  20966. },
  20967. ],
  20968. {
  20969. "anthro": {
  20970. name: "Anthro",
  20971. default: true
  20972. },
  20973. "naga": {
  20974. name: "Naga"
  20975. }
  20976. }
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20980. {
  20981. front: {
  20982. height: math.unit(13 + 7 / 12, "feet"),
  20983. weight: math.unit(1500, "lb"),
  20984. name: "Front",
  20985. image: {
  20986. source: "./media/characters/briar/front.svg",
  20987. extra: 1223/1157,
  20988. bottom: 123/1346
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(13 + 7 / 12, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21002. {
  21003. side: {
  21004. height: math.unit(16, "feet"),
  21005. weight: math.unit(500, "lb"),
  21006. name: "Side",
  21007. image: {
  21008. source: "./media/characters/vanguard/side.svg",
  21009. extra: 1022/914,
  21010. bottom: 30/1052
  21011. }
  21012. },
  21013. sideAlt: {
  21014. height: math.unit(10, "feet"),
  21015. weight: math.unit(500, "lb"),
  21016. name: "Side (Alt)",
  21017. image: {
  21018. source: "./media/characters/vanguard/side-alt.svg",
  21019. extra: 502 / 425,
  21020. bottom: 0.087
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(17.71, "feet"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(7.5, "feet"),
  21037. weight: math.unit(2, "lb"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/artemis/work-safe-front.svg",
  21041. extra: 1192 / 1075,
  21042. bottom: 0.07
  21043. },
  21044. form: "work-safe",
  21045. default: true
  21046. },
  21047. frontNsfw: {
  21048. height: math.unit(7.5, "feet"),
  21049. weight: math.unit(2, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/artemis/calibrating-front.svg",
  21053. extra: 1192 / 1075,
  21054. bottom: 0.07
  21055. },
  21056. form: "calibrating",
  21057. default: true
  21058. },
  21059. frontNsfwer: {
  21060. height: math.unit(7.5, "feet"),
  21061. weight: math.unit(2, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/artemis/oversize-load-front.svg",
  21065. extra: 1192 / 1075,
  21066. bottom: 0.07
  21067. },
  21068. form: "oversize-load",
  21069. default: true
  21070. },
  21071. side: {
  21072. height: math.unit(7.5, "feet"),
  21073. weight: math.unit(2, "lb"),
  21074. name: "Side",
  21075. image: {
  21076. source: "./media/characters/artemis/work-safe-side.svg",
  21077. extra: 1192 / 1075,
  21078. bottom: 0.07
  21079. },
  21080. form: "work-safe"
  21081. },
  21082. sideNsfw: {
  21083. height: math.unit(7.5, "feet"),
  21084. weight: math.unit(2, "lb"),
  21085. name: "Side",
  21086. image: {
  21087. source: "./media/characters/artemis/calibrating-side.svg",
  21088. extra: 1192 / 1075,
  21089. bottom: 0.07
  21090. },
  21091. form: "calibrating"
  21092. },
  21093. sideNsfwer: {
  21094. height: math.unit(7.5, "feet"),
  21095. weight: math.unit(2, "lb"),
  21096. name: "Side",
  21097. image: {
  21098. source: "./media/characters/artemis/oversize-load-side.svg",
  21099. extra: 1192 / 1075,
  21100. bottom: 0.07
  21101. },
  21102. form: "oversize-load"
  21103. },
  21104. maw: {
  21105. height: math.unit(1.1, "feet"),
  21106. name: "Maw",
  21107. image: {
  21108. source: "./media/characters/artemis/maw.svg"
  21109. },
  21110. form: "work-safe"
  21111. },
  21112. stomach: {
  21113. height: math.unit(0.95, "feet"),
  21114. name: "Stomach",
  21115. image: {
  21116. source: "./media/characters/artemis/stomach.svg"
  21117. },
  21118. form: "work-safe"
  21119. },
  21120. dickCanine: {
  21121. height: math.unit(1, "feet"),
  21122. name: "Dick (Canine)",
  21123. image: {
  21124. source: "./media/characters/artemis/dick-canine.svg"
  21125. },
  21126. form: "calibrating"
  21127. },
  21128. dickEquine: {
  21129. height: math.unit(0.85, "feet"),
  21130. name: "Dick (Equine)",
  21131. image: {
  21132. source: "./media/characters/artemis/dick-equine.svg"
  21133. },
  21134. form: "calibrating"
  21135. },
  21136. dickExotic: {
  21137. height: math.unit(0.85, "feet"),
  21138. name: "Dick (Exotic)",
  21139. image: {
  21140. source: "./media/characters/artemis/dick-exotic.svg"
  21141. },
  21142. form: "calibrating"
  21143. },
  21144. dickCanineBigger: {
  21145. height: math.unit(1 * 1.33, "feet"),
  21146. name: "Dick (Canine)",
  21147. image: {
  21148. source: "./media/characters/artemis/dick-canine.svg"
  21149. },
  21150. form: "oversize-load"
  21151. },
  21152. dickEquineBigger: {
  21153. height: math.unit(0.85 * 1.33, "feet"),
  21154. name: "Dick (Equine)",
  21155. image: {
  21156. source: "./media/characters/artemis/dick-equine.svg"
  21157. },
  21158. form: "oversize-load"
  21159. },
  21160. dickExoticBigger: {
  21161. height: math.unit(0.85 * 1.33, "feet"),
  21162. name: "Dick (Exotic)",
  21163. image: {
  21164. source: "./media/characters/artemis/dick-exotic.svg"
  21165. },
  21166. form: "oversize-load"
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(7.5, "feet"),
  21173. form: "work-safe",
  21174. default: true
  21175. },
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(7.5, "feet"),
  21179. form: "calibrating",
  21180. default: true
  21181. },
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(7.5, "feet"),
  21185. form: "oversize-load",
  21186. default: true
  21187. },
  21188. {
  21189. name: "Enlarged",
  21190. height: math.unit(12, "feet"),
  21191. form: "work-safe",
  21192. },
  21193. {
  21194. name: "Enlarged",
  21195. height: math.unit(12, "feet"),
  21196. form: "calibrating",
  21197. },
  21198. {
  21199. name: "Enlarged",
  21200. height: math.unit(12, "feet"),
  21201. form: "oversize-load",
  21202. },
  21203. ],
  21204. {
  21205. "work-safe": {
  21206. name: "Work-Safe",
  21207. default: true
  21208. },
  21209. "calibrating": {
  21210. name: "Calibrating"
  21211. },
  21212. "oversize-load": {
  21213. name: "Oversize Load"
  21214. }
  21215. }
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21219. {
  21220. front: {
  21221. height: math.unit(5 + 3 / 12, "feet"),
  21222. weight: math.unit(160, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/kira/front.svg",
  21226. extra: 906 / 786,
  21227. bottom: 0.01
  21228. }
  21229. },
  21230. back: {
  21231. height: math.unit(5 + 3 / 12, "feet"),
  21232. weight: math.unit(160, "lb"),
  21233. name: "Back",
  21234. image: {
  21235. source: "./media/characters/kira/back.svg",
  21236. extra: 882 / 757,
  21237. bottom: 0.005
  21238. }
  21239. },
  21240. frontDressed: {
  21241. height: math.unit(5 + 3 / 12, "feet"),
  21242. weight: math.unit(160, "lb"),
  21243. name: "Front (Dressed)",
  21244. image: {
  21245. source: "./media/characters/kira/front-dressed.svg",
  21246. extra: 906 / 786,
  21247. bottom: 0.01
  21248. }
  21249. },
  21250. beans: {
  21251. height: math.unit(0.92, "feet"),
  21252. name: "Beans",
  21253. image: {
  21254. source: "./media/characters/kira/beans.svg"
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(5 + 3 / 12, "feet"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21268. {
  21269. front: {
  21270. height: math.unit(5 + 4 / 12, "feet"),
  21271. weight: math.unit(145, "lb"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/scramble/front.svg",
  21275. extra: 763 / 727,
  21276. bottom: 0.05
  21277. }
  21278. },
  21279. back: {
  21280. height: math.unit(5 + 4 / 12, "feet"),
  21281. weight: math.unit(145, "lb"),
  21282. name: "Back",
  21283. image: {
  21284. source: "./media/characters/scramble/back.svg",
  21285. extra: 826 / 737,
  21286. bottom: 0.002
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(5 + 4 / 12, "feet"),
  21294. default: true
  21295. },
  21296. ]
  21297. ))
  21298. characterMakers.push(() => makeCharacter(
  21299. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21300. {
  21301. side: {
  21302. height: math.unit(6 + 2 / 12, "feet"),
  21303. weight: math.unit(190, "lb"),
  21304. name: "Side",
  21305. image: {
  21306. source: "./media/characters/biscuit/side.svg",
  21307. extra: 858 / 791,
  21308. bottom: 0.044
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(6 + 2 / 12, "feet"),
  21316. default: true
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21322. {
  21323. front: {
  21324. height: math.unit(5 + 2 / 12, "feet"),
  21325. weight: math.unit(120, "lb"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/poffin/front.svg",
  21329. extra: 786 / 680,
  21330. bottom: 0.005
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(5 + 2 / 12, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(6 + 3 / 12, "feet"),
  21347. weight: math.unit(519, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/dhari/front.svg",
  21351. extra: 1048 / 946,
  21352. bottom: 0.015
  21353. }
  21354. },
  21355. back: {
  21356. height: math.unit(6 + 3 / 12, "feet"),
  21357. weight: math.unit(519, "lb"),
  21358. name: "Back",
  21359. image: {
  21360. source: "./media/characters/dhari/back.svg",
  21361. extra: 1048 / 931,
  21362. bottom: 0.005
  21363. }
  21364. },
  21365. frontDressed: {
  21366. height: math.unit(6 + 3 / 12, "feet"),
  21367. weight: math.unit(519, "lb"),
  21368. name: "Front (Dressed)",
  21369. image: {
  21370. source: "./media/characters/dhari/front-dressed.svg",
  21371. extra: 1713 / 1546,
  21372. bottom: 0.02
  21373. }
  21374. },
  21375. backDressed: {
  21376. height: math.unit(6 + 3 / 12, "feet"),
  21377. weight: math.unit(519, "lb"),
  21378. name: "Back (Dressed)",
  21379. image: {
  21380. source: "./media/characters/dhari/back-dressed.svg",
  21381. extra: 1699 / 1537,
  21382. bottom: 0.01
  21383. }
  21384. },
  21385. maw: {
  21386. height: math.unit(0.95, "feet"),
  21387. name: "Maw",
  21388. image: {
  21389. source: "./media/characters/dhari/maw.svg"
  21390. }
  21391. },
  21392. wereFront: {
  21393. height: math.unit(12 + 8 / 12, "feet"),
  21394. weight: math.unit(4000, "lb"),
  21395. name: "Front (Were)",
  21396. image: {
  21397. source: "./media/characters/dhari/were-front.svg",
  21398. extra: 1065 / 969,
  21399. bottom: 0.015
  21400. }
  21401. },
  21402. wereBack: {
  21403. height: math.unit(12 + 8 / 12, "feet"),
  21404. weight: math.unit(4000, "lb"),
  21405. name: "Back (Were)",
  21406. image: {
  21407. source: "./media/characters/dhari/were-back.svg",
  21408. extra: 1065 / 969,
  21409. bottom: 0.012
  21410. }
  21411. },
  21412. wereMaw: {
  21413. height: math.unit(0.625, "meters"),
  21414. name: "Maw (Were)",
  21415. image: {
  21416. source: "./media/characters/dhari/were-maw.svg"
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(6 + 3 / 12, "feet"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21430. {
  21431. anthro: {
  21432. height: math.unit(5 + 7 / 12, "feet"),
  21433. weight: math.unit(175, "lb"),
  21434. name: "Anthro",
  21435. image: {
  21436. source: "./media/characters/rena-dyne/anthro.svg",
  21437. extra: 1849 / 1785,
  21438. bottom: 0.005
  21439. }
  21440. },
  21441. taur: {
  21442. height: math.unit(15 + 6 / 12, "feet"),
  21443. weight: math.unit(8000, "lb"),
  21444. name: "Taur",
  21445. image: {
  21446. source: "./media/characters/rena-dyne/taur.svg",
  21447. extra: 2315 / 2234,
  21448. bottom: 0.033
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Normal",
  21455. height: math.unit(5 + 7 / 12, "feet"),
  21456. default: true
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21462. {
  21463. front: {
  21464. height: math.unit(8, "feet"),
  21465. weight: math.unit(600, "lb"),
  21466. name: "Front",
  21467. image: {
  21468. source: "./media/characters/weremeep/front.svg",
  21469. extra: 967 / 862,
  21470. bottom: 0.01
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(8, "feet"),
  21478. default: true
  21479. },
  21480. {
  21481. name: "Lorg",
  21482. height: math.unit(12, "feet")
  21483. },
  21484. {
  21485. name: "Oh Lawd She Comin'",
  21486. height: math.unit(20, "feet")
  21487. },
  21488. ]
  21489. ))
  21490. characterMakers.push(() => makeCharacter(
  21491. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21492. {
  21493. front: {
  21494. height: math.unit(4, "feet"),
  21495. weight: math.unit(90, "lb"),
  21496. name: "Front",
  21497. image: {
  21498. source: "./media/characters/reza/front.svg",
  21499. extra: 1183 / 1111,
  21500. bottom: 0.017
  21501. }
  21502. },
  21503. back: {
  21504. height: math.unit(4, "feet"),
  21505. weight: math.unit(90, "lb"),
  21506. name: "Back",
  21507. image: {
  21508. source: "./media/characters/reza/back.svg",
  21509. extra: 1183 / 1111,
  21510. bottom: 0.01
  21511. }
  21512. },
  21513. drake: {
  21514. height: math.unit(30, "feet"),
  21515. weight: math.unit(246960, "lb"),
  21516. name: "Drake",
  21517. image: {
  21518. source: "./media/characters/reza/drake.svg",
  21519. extra: 2350 / 2024,
  21520. bottom: 60.7 / 2403
  21521. }
  21522. },
  21523. },
  21524. [
  21525. {
  21526. name: "Normal",
  21527. height: math.unit(4, "feet"),
  21528. default: true
  21529. },
  21530. ]
  21531. ))
  21532. characterMakers.push(() => makeCharacter(
  21533. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21534. {
  21535. side: {
  21536. height: math.unit(15, "feet"),
  21537. weight: math.unit(14, "tons"),
  21538. name: "Side",
  21539. image: {
  21540. source: "./media/characters/athea/side.svg",
  21541. extra: 960 / 540,
  21542. bottom: 0.003
  21543. }
  21544. },
  21545. sitting: {
  21546. height: math.unit(6 * 2.85, "feet"),
  21547. weight: math.unit(14, "tons"),
  21548. name: "Sitting",
  21549. image: {
  21550. source: "./media/characters/athea/sitting.svg",
  21551. extra: 621 / 581,
  21552. bottom: 0.075
  21553. }
  21554. },
  21555. maw: {
  21556. height: math.unit(7.59498031496063, "feet"),
  21557. name: "Maw",
  21558. image: {
  21559. source: "./media/characters/athea/maw.svg"
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Lap Cat",
  21566. height: math.unit(2.5, "feet")
  21567. },
  21568. {
  21569. name: "Minimacro",
  21570. height: math.unit(15, "feet"),
  21571. default: true
  21572. },
  21573. {
  21574. name: "Macro",
  21575. height: math.unit(120, "feet")
  21576. },
  21577. {
  21578. name: "Macro+",
  21579. height: math.unit(640, "feet")
  21580. },
  21581. {
  21582. name: "Colossus",
  21583. height: math.unit(2.2, "miles")
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21589. {
  21590. front: {
  21591. height: math.unit(8 + 8 / 12, "feet"),
  21592. weight: math.unit(130, "kg"),
  21593. name: "Front",
  21594. image: {
  21595. source: "./media/characters/seroko/front.svg",
  21596. extra: 1385 / 1280,
  21597. bottom: 0.025
  21598. }
  21599. },
  21600. back: {
  21601. height: math.unit(8 + 8 / 12, "feet"),
  21602. weight: math.unit(130, "kg"),
  21603. name: "Back",
  21604. image: {
  21605. source: "./media/characters/seroko/back.svg",
  21606. extra: 1369 / 1238,
  21607. bottom: 0.018
  21608. }
  21609. },
  21610. frontDressed: {
  21611. height: math.unit(8 + 8 / 12, "feet"),
  21612. weight: math.unit(130, "kg"),
  21613. name: "Front (Dressed)",
  21614. image: {
  21615. source: "./media/characters/seroko/front-dressed.svg",
  21616. extra: 1366 / 1275,
  21617. bottom: 0.03
  21618. }
  21619. },
  21620. },
  21621. [
  21622. {
  21623. name: "Normal",
  21624. height: math.unit(8 + 8 / 12, "feet"),
  21625. default: true
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(5.5, "feet"),
  21634. weight: math.unit(160, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/quatzi/front.svg",
  21638. extra: 2346 / 2242,
  21639. bottom: 0.015
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Normal",
  21646. height: math.unit(5.5, "feet"),
  21647. default: true
  21648. },
  21649. {
  21650. name: "Big",
  21651. height: math.unit(7.7, "feet")
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(5 + 11 / 12, "feet"),
  21660. weight: math.unit(180, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/sen/front.svg",
  21664. extra: 1321 / 1254,
  21665. bottom: 0.015
  21666. }
  21667. },
  21668. side: {
  21669. height: math.unit(5 + 11 / 12, "feet"),
  21670. weight: math.unit(180, "lb"),
  21671. name: "Side",
  21672. image: {
  21673. source: "./media/characters/sen/side.svg",
  21674. extra: 1321 / 1254,
  21675. bottom: 0.007
  21676. }
  21677. },
  21678. back: {
  21679. height: math.unit(5 + 11 / 12, "feet"),
  21680. weight: math.unit(180, "lb"),
  21681. name: "Back",
  21682. image: {
  21683. source: "./media/characters/sen/back.svg",
  21684. extra: 1321 / 1254
  21685. }
  21686. },
  21687. },
  21688. [
  21689. {
  21690. name: "Normal",
  21691. height: math.unit(5 + 11 / 12, "feet"),
  21692. default: true
  21693. },
  21694. ]
  21695. ))
  21696. characterMakers.push(() => makeCharacter(
  21697. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21698. {
  21699. front: {
  21700. height: math.unit(166.6, "cm"),
  21701. weight: math.unit(66.6, "kg"),
  21702. name: "Front",
  21703. image: {
  21704. source: "./media/characters/fruity/front.svg",
  21705. extra: 1510 / 1386,
  21706. bottom: 0.04
  21707. }
  21708. },
  21709. back: {
  21710. height: math.unit(166.6, "cm"),
  21711. weight: math.unit(66.6, "lb"),
  21712. name: "Back",
  21713. image: {
  21714. source: "./media/characters/fruity/back.svg",
  21715. extra: 1563 / 1435,
  21716. bottom: 0.005
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "Normal",
  21723. height: math.unit(166.6, "cm"),
  21724. default: true
  21725. },
  21726. {
  21727. name: "Demonic",
  21728. height: math.unit(166.6, "feet")
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21734. {
  21735. side: {
  21736. height: math.unit(10, "feet"),
  21737. weight: math.unit(500, "lb"),
  21738. name: "Side",
  21739. image: {
  21740. source: "./media/characters/zost/side.svg",
  21741. extra: 2870/2533,
  21742. bottom: 252/3122
  21743. }
  21744. },
  21745. mawFront: {
  21746. height: math.unit(1.08, "meters"),
  21747. name: "Maw (Front)",
  21748. image: {
  21749. source: "./media/characters/zost/maw-front.svg"
  21750. }
  21751. },
  21752. mawSide: {
  21753. height: math.unit(2.66, "feet"),
  21754. name: "Maw (Side)",
  21755. image: {
  21756. source: "./media/characters/zost/maw-side.svg"
  21757. }
  21758. },
  21759. wingspan: {
  21760. height: math.unit(7.4, "feet"),
  21761. name: "Wingspan",
  21762. image: {
  21763. source: "./media/characters/zost/wingspan.svg"
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(10, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(5 + 4 / 12, "feet"),
  21780. weight: math.unit(120, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/luci/front.svg",
  21784. extra: 1985 / 1884,
  21785. bottom: 0.04
  21786. }
  21787. },
  21788. back: {
  21789. height: math.unit(5 + 4 / 12, "feet"),
  21790. weight: math.unit(120, "lb"),
  21791. name: "Back",
  21792. image: {
  21793. source: "./media/characters/luci/back.svg",
  21794. extra: 1892 / 1791,
  21795. bottom: 0.002
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(5 + 4 / 12, "feet"),
  21803. default: true
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21809. {
  21810. front: {
  21811. height: math.unit(1500, "feet"),
  21812. weight: math.unit(3.8e6, "tons"),
  21813. name: "Front",
  21814. image: {
  21815. source: "./media/characters/2th/front.svg",
  21816. extra: 3489 / 3350,
  21817. bottom: 0.1
  21818. }
  21819. },
  21820. foot: {
  21821. height: math.unit(461, "feet"),
  21822. name: "Foot",
  21823. image: {
  21824. source: "./media/characters/2th/foot.svg"
  21825. }
  21826. },
  21827. },
  21828. [
  21829. {
  21830. name: "\"Micro\"",
  21831. height: math.unit(15 + 7 / 12, "feet")
  21832. },
  21833. {
  21834. name: "Normal",
  21835. height: math.unit(1500, "feet"),
  21836. default: true
  21837. },
  21838. {
  21839. name: "Macro",
  21840. height: math.unit(5000, "feet")
  21841. },
  21842. {
  21843. name: "Megamacro",
  21844. height: math.unit(15, "miles")
  21845. },
  21846. {
  21847. name: "Gigamacro",
  21848. height: math.unit(4000, "miles")
  21849. },
  21850. {
  21851. name: "Galactic",
  21852. height: math.unit(50, "AU")
  21853. },
  21854. ]
  21855. ))
  21856. characterMakers.push(() => makeCharacter(
  21857. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21858. {
  21859. front: {
  21860. height: math.unit(5 + 6 / 12, "feet"),
  21861. weight: math.unit(220, "lb"),
  21862. name: "Front",
  21863. image: {
  21864. source: "./media/characters/amethyst/front.svg",
  21865. extra: 2078 / 2040,
  21866. bottom: 0.045
  21867. }
  21868. },
  21869. back: {
  21870. height: math.unit(5 + 6 / 12, "feet"),
  21871. weight: math.unit(220, "lb"),
  21872. name: "Back",
  21873. image: {
  21874. source: "./media/characters/amethyst/back.svg",
  21875. extra: 2021 / 1989,
  21876. bottom: 0.02
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Normal",
  21883. height: math.unit(5 + 6 / 12, "feet"),
  21884. default: true
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21890. {
  21891. front: {
  21892. height: math.unit(4 + 11 / 12, "feet"),
  21893. weight: math.unit(120, "lb"),
  21894. name: "Front",
  21895. image: {
  21896. source: "./media/characters/yumi-akiyama/front.svg",
  21897. extra: 1327 / 1235,
  21898. bottom: 0.02
  21899. }
  21900. },
  21901. back: {
  21902. height: math.unit(4 + 11 / 12, "feet"),
  21903. weight: math.unit(120, "lb"),
  21904. name: "Back",
  21905. image: {
  21906. source: "./media/characters/yumi-akiyama/back.svg",
  21907. extra: 1287 / 1245,
  21908. bottom: 0.002
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Galactic",
  21915. height: math.unit(50, "galaxies"),
  21916. default: true
  21917. },
  21918. {
  21919. name: "Universal",
  21920. height: math.unit(100, "universes")
  21921. },
  21922. ]
  21923. ))
  21924. characterMakers.push(() => makeCharacter(
  21925. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21926. {
  21927. front: {
  21928. height: math.unit(8, "feet"),
  21929. weight: math.unit(500, "lb"),
  21930. name: "Front",
  21931. image: {
  21932. source: "./media/characters/rifter-yrmori/front.svg",
  21933. extra: 1180 / 1125,
  21934. bottom: 0.02
  21935. }
  21936. },
  21937. back: {
  21938. height: math.unit(8, "feet"),
  21939. weight: math.unit(500, "lb"),
  21940. name: "Back",
  21941. image: {
  21942. source: "./media/characters/rifter-yrmori/back.svg",
  21943. extra: 1190 / 1145,
  21944. bottom: 0.001
  21945. }
  21946. },
  21947. wings: {
  21948. height: math.unit(7.75, "feet"),
  21949. weight: math.unit(500, "lb"),
  21950. name: "Wings",
  21951. image: {
  21952. source: "./media/characters/rifter-yrmori/wings.svg",
  21953. extra: 1357 / 1285
  21954. }
  21955. },
  21956. maw: {
  21957. height: math.unit(0.8, "feet"),
  21958. name: "Maw",
  21959. image: {
  21960. source: "./media/characters/rifter-yrmori/maw.svg"
  21961. }
  21962. },
  21963. mawfront: {
  21964. height: math.unit(1.45, "feet"),
  21965. name: "Maw (Front)",
  21966. image: {
  21967. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(8, "feet"),
  21975. default: true
  21976. },
  21977. {
  21978. name: "Macro",
  21979. height: math.unit(42, "meters")
  21980. },
  21981. ]
  21982. ))
  21983. characterMakers.push(() => makeCharacter(
  21984. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21985. {
  21986. were: {
  21987. height: math.unit(25 + 6 / 12, "feet"),
  21988. weight: math.unit(10000, "lb"),
  21989. name: "Were",
  21990. image: {
  21991. source: "./media/characters/tahajin/were.svg",
  21992. extra: 801 / 770,
  21993. bottom: 0.042
  21994. }
  21995. },
  21996. aquatic: {
  21997. height: math.unit(6 + 4 / 12, "feet"),
  21998. weight: math.unit(160, "lb"),
  21999. name: "Aquatic",
  22000. image: {
  22001. source: "./media/characters/tahajin/aquatic.svg",
  22002. extra: 572 / 542,
  22003. bottom: 0.04
  22004. }
  22005. },
  22006. chow: {
  22007. height: math.unit(8 + 11 / 12, "feet"),
  22008. weight: math.unit(450, "lb"),
  22009. name: "Chow",
  22010. image: {
  22011. source: "./media/characters/tahajin/chow.svg",
  22012. extra: 660 / 640,
  22013. bottom: 0.015
  22014. }
  22015. },
  22016. demiNaga: {
  22017. height: math.unit(6 + 8 / 12, "feet"),
  22018. weight: math.unit(300, "lb"),
  22019. name: "Demi Naga",
  22020. image: {
  22021. source: "./media/characters/tahajin/demi-naga.svg",
  22022. extra: 643 / 615,
  22023. bottom: 0.1
  22024. }
  22025. },
  22026. data: {
  22027. height: math.unit(5, "inches"),
  22028. weight: math.unit(0.1, "lb"),
  22029. name: "Data",
  22030. image: {
  22031. source: "./media/characters/tahajin/data.svg"
  22032. }
  22033. },
  22034. fluu: {
  22035. height: math.unit(5 + 7 / 12, "feet"),
  22036. weight: math.unit(140, "lb"),
  22037. name: "Fluu",
  22038. image: {
  22039. source: "./media/characters/tahajin/fluu.svg",
  22040. extra: 628 / 592,
  22041. bottom: 0.02
  22042. }
  22043. },
  22044. starWarrior: {
  22045. height: math.unit(4 + 5 / 12, "feet"),
  22046. weight: math.unit(50, "lb"),
  22047. name: "Star Warrior",
  22048. image: {
  22049. source: "./media/characters/tahajin/star-warrior.svg"
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Normal",
  22056. height: math.unit(25 + 6 / 12, "feet"),
  22057. default: true
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(8, "feet"),
  22066. weight: math.unit(350, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/gabira/front.svg",
  22070. extra: 608 / 580,
  22071. bottom: 0.03
  22072. }
  22073. },
  22074. back: {
  22075. height: math.unit(8, "feet"),
  22076. weight: math.unit(350, "lb"),
  22077. name: "Back",
  22078. image: {
  22079. source: "./media/characters/gabira/back.svg",
  22080. extra: 608 / 580,
  22081. bottom: 0.03
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(8, "feet"),
  22089. default: true
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22095. {
  22096. front: {
  22097. height: math.unit(5 + 3 / 12, "feet"),
  22098. weight: math.unit(137, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/sasha-katraine/front.svg",
  22102. extra: 1745/1694,
  22103. bottom: 37/1782
  22104. }
  22105. },
  22106. back: {
  22107. height: math.unit(5 + 3 / 12, "feet"),
  22108. weight: math.unit(137, "lb"),
  22109. name: "Back",
  22110. image: {
  22111. source: "./media/characters/sasha-katraine/back.svg",
  22112. extra: 1776/1699,
  22113. bottom: 26/1802
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Micro",
  22120. height: math.unit(5, "inches")
  22121. },
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(5 + 3 / 12, "feet"),
  22125. default: true
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22131. {
  22132. side: {
  22133. height: math.unit(4, "inches"),
  22134. weight: math.unit(200, "grams"),
  22135. name: "Side",
  22136. image: {
  22137. source: "./media/characters/der/side.svg",
  22138. extra: 719 / 400,
  22139. bottom: 30.6 / 749.9187
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Micro",
  22146. height: math.unit(4, "inches"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22153. {
  22154. side: {
  22155. height: math.unit(30, "meters"),
  22156. weight: math.unit(700, "tonnes"),
  22157. name: "Side",
  22158. image: {
  22159. source: "./media/characters/fixerdragon/side.svg",
  22160. extra: (1293.0514 - 116.03) / 1106.86,
  22161. bottom: 116.03 / 1293.0514
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Planck",
  22168. height: math.unit(1.6e-35, "meters")
  22169. },
  22170. {
  22171. name: "Micro",
  22172. height: math.unit(0.4, "meters")
  22173. },
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(30, "meters"),
  22177. default: true
  22178. },
  22179. {
  22180. name: "Megamacro",
  22181. height: math.unit(1.2, "megameters")
  22182. },
  22183. {
  22184. name: "Teramacro",
  22185. height: math.unit(130, "terameters")
  22186. },
  22187. {
  22188. name: "Yottamacro",
  22189. height: math.unit(6200, "yottameters")
  22190. },
  22191. ]
  22192. ));
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(8, "feet"),
  22198. weight: math.unit(250, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/kite/front.svg",
  22202. extra: 2796 / 2659,
  22203. bottom: 0.002
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(8, "feet"),
  22211. default: true
  22212. },
  22213. {
  22214. name: "Macro",
  22215. height: math.unit(360, "feet")
  22216. },
  22217. {
  22218. name: "Megamacro",
  22219. height: math.unit(1500, "feet")
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22225. {
  22226. front: {
  22227. height: math.unit(5 + 11/12, "feet"),
  22228. weight: math.unit(170, "lb"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/poojawa-vynar/front.svg",
  22232. extra: 1735/1585,
  22233. bottom: 96/1831
  22234. }
  22235. },
  22236. back: {
  22237. height: math.unit(5 + 11/12, "feet"),
  22238. weight: math.unit(170, "lb"),
  22239. name: "Back",
  22240. image: {
  22241. source: "./media/characters/poojawa-vynar/back.svg",
  22242. extra: 1749/1607,
  22243. bottom: 28/1777
  22244. }
  22245. },
  22246. male: {
  22247. height: math.unit(5 + 11/12, "feet"),
  22248. weight: math.unit(170, "lb"),
  22249. name: "Male",
  22250. image: {
  22251. source: "./media/characters/poojawa-vynar/male.svg",
  22252. extra: 1855/1713,
  22253. bottom: 63/1918
  22254. }
  22255. },
  22256. taur: {
  22257. height: math.unit(5 + 11/12, "feet"),
  22258. weight: math.unit(170, "lb"),
  22259. name: "Taur",
  22260. image: {
  22261. source: "./media/characters/poojawa-vynar/taur.svg",
  22262. extra: 1151/1059,
  22263. bottom: 356/1507
  22264. }
  22265. },
  22266. frontDressed: {
  22267. height: math.unit(5 + 11/12, "feet"),
  22268. weight: math.unit(170, "lb"),
  22269. name: "Front (Dressed)",
  22270. image: {
  22271. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22272. extra: 1735/1585,
  22273. bottom: 96/1831
  22274. }
  22275. },
  22276. backDressed: {
  22277. height: math.unit(5 + 11/12, "feet"),
  22278. weight: math.unit(170, "lb"),
  22279. name: "Back (Dressed)",
  22280. image: {
  22281. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22282. extra: 1749/1607,
  22283. bottom: 28/1777
  22284. }
  22285. },
  22286. maleDressed: {
  22287. height: math.unit(5 + 11/12, "feet"),
  22288. weight: math.unit(170, "lb"),
  22289. name: "Male (Dressed)",
  22290. image: {
  22291. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22292. extra: 1855/1713,
  22293. bottom: 63/1918
  22294. }
  22295. },
  22296. taurDressed: {
  22297. height: math.unit(5 + 11/12, "feet"),
  22298. weight: math.unit(170, "lb"),
  22299. name: "Taur (Dressed)",
  22300. image: {
  22301. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22302. extra: 1151/1059,
  22303. bottom: 356/1507
  22304. }
  22305. },
  22306. maw: {
  22307. height: math.unit(1.46, "feet"),
  22308. name: "Maw",
  22309. image: {
  22310. source: "./media/characters/poojawa-vynar/maw.svg"
  22311. }
  22312. },
  22313. head: {
  22314. height: math.unit(2.34, "feet"),
  22315. name: "Head",
  22316. image: {
  22317. source: "./media/characters/poojawa-vynar/head.svg"
  22318. }
  22319. },
  22320. paw: {
  22321. height: math.unit(1.61, "feet"),
  22322. name: "Paw",
  22323. image: {
  22324. source: "./media/characters/poojawa-vynar/paw.svg"
  22325. }
  22326. },
  22327. pawToering: {
  22328. height: math.unit(1.72, "feet"),
  22329. name: "Paw (Toering)",
  22330. image: {
  22331. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22332. }
  22333. },
  22334. toering: {
  22335. height: math.unit(2.9, "inches"),
  22336. name: "Toering",
  22337. image: {
  22338. source: "./media/characters/poojawa-vynar/toering.svg"
  22339. }
  22340. },
  22341. shaft: {
  22342. height: math.unit(0.625, "feet"),
  22343. name: "Shaft",
  22344. image: {
  22345. source: "./media/characters/poojawa-vynar/shaft.svg"
  22346. }
  22347. },
  22348. spade: {
  22349. height: math.unit(0.42, "feet"),
  22350. name: "Spade",
  22351. image: {
  22352. source: "./media/characters/poojawa-vynar/spade.svg"
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Shortstack",
  22359. height: math.unit(4, "feet")
  22360. },
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(5 + 11 / 12, "feet"),
  22364. default: true
  22365. },
  22366. {
  22367. name: "Tauric",
  22368. height: math.unit(4, "meters")
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22374. {
  22375. front: {
  22376. height: math.unit(293, "meters"),
  22377. weight: math.unit(70400, "tons"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/violette/front.svg",
  22381. extra: 1227 / 1180,
  22382. bottom: 0.005
  22383. }
  22384. },
  22385. back: {
  22386. height: math.unit(293, "meters"),
  22387. weight: math.unit(70400, "tons"),
  22388. name: "Back",
  22389. image: {
  22390. source: "./media/characters/violette/back.svg",
  22391. extra: 1227 / 1180,
  22392. bottom: 0.005
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Macro",
  22399. height: math.unit(293, "meters"),
  22400. default: true
  22401. },
  22402. ]
  22403. ))
  22404. characterMakers.push(() => makeCharacter(
  22405. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22406. {
  22407. front: {
  22408. height: math.unit(1050, "feet"),
  22409. weight: math.unit(200000, "tons"),
  22410. name: "Front",
  22411. image: {
  22412. source: "./media/characters/alessandra/front.svg",
  22413. extra: 960 / 912,
  22414. bottom: 0.06
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Macro",
  22421. height: math.unit(1050, "feet")
  22422. },
  22423. {
  22424. name: "Macro+",
  22425. height: math.unit(900, "meters"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(5, "feet"),
  22435. weight: math.unit(187, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/person/front.svg",
  22439. extra: 3087 / 2945,
  22440. bottom: 91 / 3181
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Micro",
  22447. height: math.unit(3, "inches")
  22448. },
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(5, "feet"),
  22452. default: true
  22453. },
  22454. {
  22455. name: "Macro",
  22456. height: math.unit(90, "feet")
  22457. },
  22458. {
  22459. name: "Max Size",
  22460. height: math.unit(280, "feet")
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22466. {
  22467. front: {
  22468. height: math.unit(4.5, "meters"),
  22469. weight: math.unit(3200, "lb"),
  22470. name: "Front",
  22471. image: {
  22472. source: "./media/characters/ty/front.svg",
  22473. extra: 1038 / 960,
  22474. bottom: 31.156 / 1068
  22475. }
  22476. },
  22477. back: {
  22478. height: math.unit(4.5, "meters"),
  22479. weight: math.unit(3200, "lb"),
  22480. name: "Back",
  22481. image: {
  22482. source: "./media/characters/ty/back.svg",
  22483. extra: 1044 / 966,
  22484. bottom: 7.48 / 1049
  22485. }
  22486. },
  22487. },
  22488. [
  22489. {
  22490. name: "Normal",
  22491. height: math.unit(4.5, "meters"),
  22492. default: true
  22493. },
  22494. ]
  22495. ))
  22496. characterMakers.push(() => makeCharacter(
  22497. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22498. {
  22499. front: {
  22500. height: math.unit(5 + 4 / 12, "feet"),
  22501. weight: math.unit(115, "lb"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/rocky/front.svg",
  22505. extra: 1012 / 975,
  22506. bottom: 54 / 1066
  22507. }
  22508. },
  22509. },
  22510. [
  22511. {
  22512. name: "Normal",
  22513. height: math.unit(5 + 4 / 12, "feet"),
  22514. default: true
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22520. {
  22521. upright: {
  22522. height: math.unit(6, "meters"),
  22523. weight: math.unit(4000, "kg"),
  22524. name: "Upright",
  22525. image: {
  22526. source: "./media/characters/ruin/upright.svg",
  22527. extra: 668 / 661,
  22528. bottom: 42 / 799.8396
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(6, "meters"),
  22536. default: true
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(5, "feet"),
  22545. weight: math.unit(106, "lb"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/robin/front.svg",
  22549. extra: 862 / 799,
  22550. bottom: 42.4 / 914.8856
  22551. }
  22552. },
  22553. },
  22554. [
  22555. {
  22556. name: "Normal",
  22557. height: math.unit(5, "feet"),
  22558. default: true
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22564. {
  22565. side: {
  22566. height: math.unit(3, "feet"),
  22567. weight: math.unit(225, "lb"),
  22568. name: "Side",
  22569. image: {
  22570. source: "./media/characters/saian/side.svg",
  22571. extra: 566 / 356,
  22572. bottom: 79.7 / 643
  22573. }
  22574. },
  22575. maw: {
  22576. height: math.unit(2.85, "feet"),
  22577. name: "Maw",
  22578. image: {
  22579. source: "./media/characters/saian/maw.svg"
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(3, "feet"),
  22587. default: true
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22593. {
  22594. side: {
  22595. height: math.unit(8, "feet"),
  22596. weight: math.unit(300, "lb"),
  22597. name: "Side",
  22598. image: {
  22599. source: "./media/characters/equus-silvermane/side.svg",
  22600. extra: 2176 / 2050,
  22601. bottom: 65.7 / 2245
  22602. }
  22603. },
  22604. front: {
  22605. height: math.unit(8, "feet"),
  22606. weight: math.unit(300, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/equus-silvermane/front.svg",
  22610. extra: 4633 / 4400,
  22611. bottom: 71.3 / 4706.915
  22612. }
  22613. },
  22614. sideStepping: {
  22615. height: math.unit(8, "feet"),
  22616. weight: math.unit(300, "lb"),
  22617. name: "Side (Stepping)",
  22618. image: {
  22619. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22620. extra: 1968 / 1860,
  22621. bottom: 16.4 / 1989
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(8, "feet")
  22629. },
  22630. {
  22631. name: "Minimacro",
  22632. height: math.unit(75, "feet"),
  22633. default: true
  22634. },
  22635. {
  22636. name: "Macro",
  22637. height: math.unit(150, "feet")
  22638. },
  22639. {
  22640. name: "Macro+",
  22641. height: math.unit(1000, "feet")
  22642. },
  22643. {
  22644. name: "Megamacro",
  22645. height: math.unit(1, "mile")
  22646. },
  22647. ]
  22648. ))
  22649. characterMakers.push(() => makeCharacter(
  22650. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22651. {
  22652. side: {
  22653. height: math.unit(20, "feet"),
  22654. weight: math.unit(30000, "kg"),
  22655. name: "Side",
  22656. image: {
  22657. source: "./media/characters/windar/side.svg",
  22658. extra: 1491 / 1248,
  22659. bottom: 82.56 / 1568
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(20, "feet"),
  22667. default: true
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22673. {
  22674. side: {
  22675. height: math.unit(15.66, "feet"),
  22676. weight: math.unit(150, "lb"),
  22677. name: "Side",
  22678. image: {
  22679. source: "./media/characters/melody/side.svg",
  22680. extra: 1097 / 944,
  22681. bottom: 11.8 / 1109
  22682. }
  22683. },
  22684. sideOutfit: {
  22685. height: math.unit(15.66, "feet"),
  22686. weight: math.unit(150, "lb"),
  22687. name: "Side (Outfit)",
  22688. image: {
  22689. source: "./media/characters/melody/side-outfit.svg",
  22690. extra: 1097 / 944,
  22691. bottom: 11.8 / 1109
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Normal",
  22698. height: math.unit(15.66, "feet"),
  22699. default: true
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22705. {
  22706. front: {
  22707. height: math.unit(8, "feet"),
  22708. weight: math.unit(325, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/windera/front.svg",
  22712. extra: 3180 / 2845,
  22713. bottom: 178 / 3365
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Normal",
  22720. height: math.unit(8, "feet"),
  22721. default: true
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22727. {
  22728. front: {
  22729. height: math.unit(28.75, "feet"),
  22730. weight: math.unit(2000, "kg"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/sonear/front.svg",
  22734. extra: 1041.1 / 964.9,
  22735. bottom: 53.7 / 1096.6
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(28.75, "feet"),
  22743. default: true
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22749. {
  22750. side: {
  22751. height: math.unit(25.5, "feet"),
  22752. weight: math.unit(23000, "kg"),
  22753. name: "Side",
  22754. image: {
  22755. source: "./media/characters/kanara/side.svg"
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "Normal",
  22762. height: math.unit(25.5, "feet"),
  22763. default: true
  22764. },
  22765. ]
  22766. ))
  22767. characterMakers.push(() => makeCharacter(
  22768. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22769. {
  22770. side: {
  22771. height: math.unit(10, "feet"),
  22772. weight: math.unit(1000, "kg"),
  22773. name: "Side",
  22774. image: {
  22775. source: "./media/characters/ereus/side.svg",
  22776. extra: 1157 / 959,
  22777. bottom: 153 / 1312.5
  22778. }
  22779. },
  22780. },
  22781. [
  22782. {
  22783. name: "Normal",
  22784. height: math.unit(10, "feet"),
  22785. default: true
  22786. },
  22787. ]
  22788. ))
  22789. characterMakers.push(() => makeCharacter(
  22790. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22791. {
  22792. side: {
  22793. height: math.unit(4.5, "feet"),
  22794. weight: math.unit(500, "lb"),
  22795. name: "Side",
  22796. image: {
  22797. source: "./media/characters/e-ter/side.svg",
  22798. extra: 1550 / 1248,
  22799. bottom: 146 / 1694
  22800. }
  22801. },
  22802. },
  22803. [
  22804. {
  22805. name: "Normal",
  22806. height: math.unit(4.5, "feet"),
  22807. default: true
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22813. {
  22814. side: {
  22815. height: math.unit(9.7, "feet"),
  22816. weight: math.unit(4000, "kg"),
  22817. name: "Side",
  22818. image: {
  22819. source: "./media/characters/yamie/side.svg"
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Normal",
  22826. height: math.unit(9.7, "feet"),
  22827. default: true
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22833. {
  22834. front: {
  22835. height: math.unit(50, "feet"),
  22836. weight: math.unit(50000, "kg"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/anders/front.svg",
  22840. extra: 570 / 539,
  22841. bottom: 14.7 / 586.7
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Large",
  22848. height: math.unit(50, "feet")
  22849. },
  22850. {
  22851. name: "Macro",
  22852. height: math.unit(2000, "feet"),
  22853. default: true
  22854. },
  22855. {
  22856. name: "Megamacro",
  22857. height: math.unit(12, "miles")
  22858. },
  22859. ]
  22860. ))
  22861. characterMakers.push(() => makeCharacter(
  22862. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22863. {
  22864. front: {
  22865. height: math.unit(7 + 2 / 12, "feet"),
  22866. weight: math.unit(300, "lb"),
  22867. name: "Front",
  22868. image: {
  22869. source: "./media/characters/reban/front.svg",
  22870. extra: 1287/1212,
  22871. bottom: 148/1435
  22872. }
  22873. },
  22874. head: {
  22875. height: math.unit(1.95, "feet"),
  22876. name: "Head",
  22877. image: {
  22878. source: "./media/characters/reban/head.svg"
  22879. }
  22880. },
  22881. maw: {
  22882. height: math.unit(0.95, "feet"),
  22883. name: "Maw",
  22884. image: {
  22885. source: "./media/characters/reban/maw.svg"
  22886. }
  22887. },
  22888. foot: {
  22889. height: math.unit(1.65, "feet"),
  22890. name: "Foot",
  22891. image: {
  22892. source: "./media/characters/reban/foot.svg"
  22893. }
  22894. },
  22895. dick: {
  22896. height: math.unit(7 / 5, "feet"),
  22897. name: "Dick",
  22898. image: {
  22899. source: "./media/characters/reban/dick.svg"
  22900. }
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Natural Height",
  22906. height: math.unit(7 + 2 / 12, "feet")
  22907. },
  22908. {
  22909. name: "Macro",
  22910. height: math.unit(500, "feet"),
  22911. default: true
  22912. },
  22913. {
  22914. name: "Canon Height",
  22915. height: math.unit(50, "AU")
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22921. {
  22922. front: {
  22923. height: math.unit(6, "feet"),
  22924. weight: math.unit(150, "lb"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/terrance-keayes/front.svg",
  22928. extra: 1.005,
  22929. bottom: 151 / 1615
  22930. }
  22931. },
  22932. side: {
  22933. height: math.unit(6, "feet"),
  22934. weight: math.unit(150, "lb"),
  22935. name: "Side",
  22936. image: {
  22937. source: "./media/characters/terrance-keayes/side.svg",
  22938. extra: 1.005,
  22939. bottom: 129.4 / 1544
  22940. }
  22941. },
  22942. back: {
  22943. height: math.unit(6, "feet"),
  22944. weight: math.unit(150, "lb"),
  22945. name: "Back",
  22946. image: {
  22947. source: "./media/characters/terrance-keayes/back.svg",
  22948. extra: 1.005,
  22949. bottom: 58.4 / 1557.3
  22950. }
  22951. },
  22952. dick: {
  22953. height: math.unit(6 * 0.208, "feet"),
  22954. name: "Dick",
  22955. image: {
  22956. source: "./media/characters/terrance-keayes/dick.svg"
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Canon Height",
  22963. height: math.unit(35, "miles"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22970. {
  22971. front: {
  22972. height: math.unit(6, "feet"),
  22973. weight: math.unit(150, "lb"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/ofelia/front.svg",
  22977. extra: 1130/1117,
  22978. bottom: 91/1221
  22979. }
  22980. },
  22981. back: {
  22982. height: math.unit(6, "feet"),
  22983. weight: math.unit(150, "lb"),
  22984. name: "Back",
  22985. image: {
  22986. source: "./media/characters/ofelia/back.svg",
  22987. extra: 1172/1159,
  22988. bottom: 28/1200
  22989. }
  22990. },
  22991. maw: {
  22992. height: math.unit(1, "feet"),
  22993. name: "Maw",
  22994. image: {
  22995. source: "./media/characters/ofelia/maw.svg"
  22996. }
  22997. },
  22998. foot: {
  22999. height: math.unit(1.949, "feet"),
  23000. name: "Foot",
  23001. image: {
  23002. source: "./media/characters/ofelia/foot.svg"
  23003. }
  23004. },
  23005. },
  23006. [
  23007. {
  23008. name: "Canon Height",
  23009. height: math.unit(2000, "miles"),
  23010. default: true
  23011. },
  23012. ]
  23013. ))
  23014. characterMakers.push(() => makeCharacter(
  23015. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23016. {
  23017. front: {
  23018. height: math.unit(6, "feet"),
  23019. weight: math.unit(150, "lb"),
  23020. name: "Front",
  23021. image: {
  23022. source: "./media/characters/samuel/front.svg",
  23023. extra: 265 / 258,
  23024. bottom: 2 / 266.1566
  23025. }
  23026. },
  23027. },
  23028. [
  23029. {
  23030. name: "Macro",
  23031. height: math.unit(100, "feet"),
  23032. default: true
  23033. },
  23034. {
  23035. name: "Full Size",
  23036. height: math.unit(1000, "miles")
  23037. },
  23038. ]
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23042. {
  23043. front: {
  23044. height: math.unit(6, "feet"),
  23045. weight: math.unit(300, "lb"),
  23046. name: "Front",
  23047. image: {
  23048. source: "./media/characters/beishir-kiel/front.svg",
  23049. extra: 569 / 547,
  23050. bottom: 41.9 / 609
  23051. }
  23052. },
  23053. maw: {
  23054. height: math.unit(6 * 0.202, "feet"),
  23055. name: "Maw",
  23056. image: {
  23057. source: "./media/characters/beishir-kiel/maw.svg"
  23058. }
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Macro",
  23064. height: math.unit(300, "feet"),
  23065. default: true
  23066. },
  23067. ]
  23068. ))
  23069. characterMakers.push(() => makeCharacter(
  23070. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23071. {
  23072. front: {
  23073. height: math.unit(5 + 7/12, "feet"),
  23074. weight: math.unit(120, "lb"),
  23075. name: "Front",
  23076. image: {
  23077. source: "./media/characters/logan-grey/front.svg",
  23078. extra: 1836/1738,
  23079. bottom: 108/1944
  23080. }
  23081. },
  23082. back: {
  23083. height: math.unit(5 + 7/12, "feet"),
  23084. weight: math.unit(120, "lb"),
  23085. name: "Back",
  23086. image: {
  23087. source: "./media/characters/logan-grey/back.svg",
  23088. extra: 1880/1794,
  23089. bottom: 24/1904
  23090. }
  23091. },
  23092. frontSfw: {
  23093. height: math.unit(5 + 7/12, "feet"),
  23094. weight: math.unit(120, "lb"),
  23095. name: "Front (SFW)",
  23096. image: {
  23097. source: "./media/characters/logan-grey/front-sfw.svg",
  23098. extra: 1836/1738,
  23099. bottom: 108/1944
  23100. }
  23101. },
  23102. backSfw: {
  23103. height: math.unit(5 + 7/12, "feet"),
  23104. weight: math.unit(120, "lb"),
  23105. name: "Back (SFW)",
  23106. image: {
  23107. source: "./media/characters/logan-grey/back-sfw.svg",
  23108. extra: 1880/1794,
  23109. bottom: 24/1904
  23110. }
  23111. },
  23112. hands: {
  23113. height: math.unit(0.84, "feet"),
  23114. name: "Hands",
  23115. image: {
  23116. source: "./media/characters/logan-grey/hands.svg"
  23117. }
  23118. },
  23119. paws: {
  23120. height: math.unit(0.72, "feet"),
  23121. name: "Paws",
  23122. image: {
  23123. source: "./media/characters/logan-grey/paws.svg"
  23124. }
  23125. },
  23126. cock: {
  23127. height: math.unit(1.45, "feet"),
  23128. name: "Cock",
  23129. image: {
  23130. source: "./media/characters/logan-grey/cock.svg"
  23131. }
  23132. },
  23133. cockAlt: {
  23134. height: math.unit(1.437, "feet"),
  23135. name: "Cock (alt)",
  23136. image: {
  23137. source: "./media/characters/logan-grey/cock-alt.svg"
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(5 + 8 / 12, "feet")
  23145. },
  23146. {
  23147. name: "The 500 Foot Femboy",
  23148. height: math.unit(500, "feet"),
  23149. default: true
  23150. },
  23151. {
  23152. name: "Megmacro",
  23153. height: math.unit(20, "miles")
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(8 + 2 / 12, "feet"),
  23162. weight: math.unit(275, "lb"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/draganta/front.svg",
  23166. extra: 1177 / 1135,
  23167. bottom: 33.46 / 1212.1
  23168. }
  23169. },
  23170. },
  23171. [
  23172. {
  23173. name: "Normal",
  23174. height: math.unit(8 + 6 / 12, "feet"),
  23175. default: true
  23176. },
  23177. {
  23178. name: "Macro",
  23179. height: math.unit(150, "feet")
  23180. },
  23181. {
  23182. name: "Megamacro",
  23183. height: math.unit(1000, "miles")
  23184. },
  23185. ]
  23186. ))
  23187. characterMakers.push(() => makeCharacter(
  23188. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23189. {
  23190. front: {
  23191. height: math.unit(1.72, "m"),
  23192. weight: math.unit(80, "lb"),
  23193. name: "Front",
  23194. image: {
  23195. source: "./media/characters/voski/front.svg",
  23196. extra: 2076.22 / 2022.4,
  23197. bottom: 102.7 / 2177.3866
  23198. }
  23199. },
  23200. frontFlaccid: {
  23201. height: math.unit(1.72, "m"),
  23202. weight: math.unit(80, "lb"),
  23203. name: "Front (Flaccid)",
  23204. image: {
  23205. source: "./media/characters/voski/front-flaccid.svg",
  23206. extra: 2076.22 / 2022.4,
  23207. bottom: 102.7 / 2177.3866
  23208. }
  23209. },
  23210. frontErect: {
  23211. height: math.unit(1.72, "m"),
  23212. weight: math.unit(80, "lb"),
  23213. name: "Front (Erect)",
  23214. image: {
  23215. source: "./media/characters/voski/front-erect.svg",
  23216. extra: 2076.22 / 2022.4,
  23217. bottom: 102.7 / 2177.3866
  23218. }
  23219. },
  23220. back: {
  23221. height: math.unit(1.72, "m"),
  23222. weight: math.unit(80, "lb"),
  23223. name: "Back",
  23224. image: {
  23225. source: "./media/characters/voski/back.svg",
  23226. extra: 2104 / 2051,
  23227. bottom: 10.45 / 2113.63
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(1.72, "m")
  23235. },
  23236. {
  23237. name: "Macro",
  23238. height: math.unit(55, "m"),
  23239. default: true
  23240. },
  23241. {
  23242. name: "Macro+",
  23243. height: math.unit(300, "m")
  23244. },
  23245. {
  23246. name: "Macro++",
  23247. height: math.unit(700, "m")
  23248. },
  23249. {
  23250. name: "Macro+++",
  23251. height: math.unit(4500, "m")
  23252. },
  23253. {
  23254. name: "Macro++++",
  23255. height: math.unit(45, "km")
  23256. },
  23257. {
  23258. name: "Macro+++++",
  23259. height: math.unit(1220, "km")
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(2.3, "m"),
  23268. weight: math.unit(304, "kg"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/icowom-lee/front.svg",
  23272. extra: 985 / 955,
  23273. bottom: 25.4 / 1012
  23274. }
  23275. },
  23276. fronttentacles: {
  23277. height: math.unit(2.3, "m"),
  23278. weight: math.unit(304, "kg"),
  23279. name: "Front-tentacles",
  23280. image: {
  23281. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23282. extra: 985 / 955,
  23283. bottom: 25.4 / 1012
  23284. }
  23285. },
  23286. back: {
  23287. height: math.unit(2.3, "m"),
  23288. weight: math.unit(304, "kg"),
  23289. name: "Back",
  23290. image: {
  23291. source: "./media/characters/icowom-lee/back.svg",
  23292. extra: 975 / 954,
  23293. bottom: 9.5 / 985
  23294. }
  23295. },
  23296. backtentacles: {
  23297. height: math.unit(2.3, "m"),
  23298. weight: math.unit(304, "kg"),
  23299. name: "Back-tentacles",
  23300. image: {
  23301. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23302. extra: 975 / 954,
  23303. bottom: 9.5 / 985
  23304. }
  23305. },
  23306. frontDressed: {
  23307. height: math.unit(2.3, "m"),
  23308. weight: math.unit(304, "kg"),
  23309. name: "Front (Dressed)",
  23310. image: {
  23311. source: "./media/characters/icowom-lee/front-dressed.svg",
  23312. extra: 3076 / 2933,
  23313. bottom: 51.4 / 3125.1889
  23314. }
  23315. },
  23316. rump: {
  23317. height: math.unit(0.776, "meters"),
  23318. name: "Rump",
  23319. image: {
  23320. source: "./media/characters/icowom-lee/rump.svg"
  23321. }
  23322. },
  23323. genitals: {
  23324. height: math.unit(0.78, "meters"),
  23325. name: "Genitals",
  23326. image: {
  23327. source: "./media/characters/icowom-lee/genitals.svg"
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "Normal",
  23334. height: math.unit(2.3, "meters"),
  23335. default: true
  23336. },
  23337. {
  23338. name: "Macro",
  23339. height: math.unit(94, "meters"),
  23340. default: true
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23346. {
  23347. front: {
  23348. height: math.unit(22, "meters"),
  23349. weight: math.unit(21000, "kg"),
  23350. name: "Front",
  23351. image: {
  23352. source: "./media/characters/shock-diamond/front.svg",
  23353. extra: 2204 / 2053,
  23354. bottom: 65 / 2239.47
  23355. }
  23356. },
  23357. frontNude: {
  23358. height: math.unit(22, "meters"),
  23359. weight: math.unit(21000, "kg"),
  23360. name: "Front (Nude)",
  23361. image: {
  23362. source: "./media/characters/shock-diamond/front-nude.svg",
  23363. extra: 2514 / 2285,
  23364. bottom: 13 / 2527.56
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(3, "meters")
  23372. },
  23373. {
  23374. name: "Macro",
  23375. height: math.unit(22, "meters"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(5 + 4 / 12, "feet"),
  23385. weight: math.unit(120, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/rory/front.svg",
  23389. extra: 1318/1241,
  23390. bottom: 42/1360
  23391. }
  23392. },
  23393. back: {
  23394. height: math.unit(5 + 4 / 12, "feet"),
  23395. weight: math.unit(120, "lb"),
  23396. name: "Back",
  23397. image: {
  23398. source: "./media/characters/rory/back.svg",
  23399. extra: 1318/1241,
  23400. bottom: 42/1360
  23401. }
  23402. },
  23403. butt: {
  23404. height: math.unit(1.74, "feet"),
  23405. name: "Butt",
  23406. image: {
  23407. source: "./media/characters/rory/butt.svg"
  23408. }
  23409. },
  23410. dick: {
  23411. height: math.unit(1.02, "feet"),
  23412. name: "Dick",
  23413. image: {
  23414. source: "./media/characters/rory/dick.svg"
  23415. }
  23416. },
  23417. paws: {
  23418. height: math.unit(1, "feet"),
  23419. name: "Paws",
  23420. image: {
  23421. source: "./media/characters/rory/paws.svg"
  23422. }
  23423. },
  23424. frontAlt: {
  23425. height: math.unit(5 + 4 / 12, "feet"),
  23426. weight: math.unit(120, "lb"),
  23427. name: "Front (Alt)",
  23428. image: {
  23429. source: "./media/characters/rory/front-alt.svg",
  23430. extra: 589 / 556,
  23431. bottom: 45.7 / 635.76
  23432. }
  23433. },
  23434. frontAltNude: {
  23435. height: math.unit(5 + 4 / 12, "feet"),
  23436. weight: math.unit(120, "lb"),
  23437. name: "Front (Alt, Nude)",
  23438. image: {
  23439. source: "./media/characters/rory/front-alt-nude.svg",
  23440. extra: 589 / 556,
  23441. bottom: 45.7 / 635.76
  23442. }
  23443. },
  23444. side: {
  23445. height: math.unit(5 + 4 / 12, "feet"),
  23446. weight: math.unit(120, "lb"),
  23447. name: "Side",
  23448. image: {
  23449. source: "./media/characters/rory/side.svg",
  23450. extra: 597 / 564,
  23451. bottom: 55 / 653
  23452. }
  23453. },
  23454. backAlt: {
  23455. height: math.unit(5 + 4 / 12, "feet"),
  23456. weight: math.unit(120, "lb"),
  23457. name: "Back (Alt)",
  23458. image: {
  23459. source: "./media/characters/rory/back-alt.svg",
  23460. extra: 620 / 585,
  23461. bottom: 8.86 / 630.43
  23462. }
  23463. },
  23464. dickAlt: {
  23465. height: math.unit(0.86, "feet"),
  23466. name: "Dick (Alt)",
  23467. image: {
  23468. source: "./media/characters/rory/dick-alt.svg"
  23469. }
  23470. },
  23471. },
  23472. [
  23473. {
  23474. name: "Normal",
  23475. height: math.unit(5 + 4 / 12, "feet"),
  23476. default: true
  23477. },
  23478. {
  23479. name: "Macro",
  23480. height: math.unit(100, "feet")
  23481. },
  23482. {
  23483. name: "Macro+",
  23484. height: math.unit(140, "feet")
  23485. },
  23486. {
  23487. name: "Macro++",
  23488. height: math.unit(300, "feet")
  23489. },
  23490. ]
  23491. ))
  23492. characterMakers.push(() => makeCharacter(
  23493. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23494. {
  23495. front: {
  23496. height: math.unit(5 + 9 / 12, "feet"),
  23497. weight: math.unit(190, "lb"),
  23498. name: "Front",
  23499. image: {
  23500. source: "./media/characters/sprisk/front.svg",
  23501. extra: 1225 / 1180,
  23502. bottom: 42.7 / 1266.4
  23503. }
  23504. },
  23505. frontNsfw: {
  23506. height: math.unit(5 + 9 / 12, "feet"),
  23507. weight: math.unit(190, "lb"),
  23508. name: "Front (NSFW)",
  23509. image: {
  23510. source: "./media/characters/sprisk/front-nsfw.svg",
  23511. extra: 1225 / 1180,
  23512. bottom: 42.7 / 1266.4
  23513. }
  23514. },
  23515. back: {
  23516. height: math.unit(5 + 9 / 12, "feet"),
  23517. weight: math.unit(190, "lb"),
  23518. name: "Back",
  23519. image: {
  23520. source: "./media/characters/sprisk/back.svg",
  23521. extra: 1247 / 1200,
  23522. bottom: 5.6 / 1253.04
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Tiny",
  23529. height: math.unit(2, "inches")
  23530. },
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(5 + 9 / 12, "feet"),
  23534. default: true
  23535. },
  23536. {
  23537. name: "Mini Macro",
  23538. height: math.unit(18, "feet")
  23539. },
  23540. {
  23541. name: "Macro",
  23542. height: math.unit(100, "feet")
  23543. },
  23544. {
  23545. name: "MACRO",
  23546. height: math.unit(50, "miles")
  23547. },
  23548. {
  23549. name: "M A C R O",
  23550. height: math.unit(300, "miles")
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23556. {
  23557. side: {
  23558. height: math.unit(15.6, "meters"),
  23559. weight: math.unit(700000, "kg"),
  23560. name: "Side",
  23561. image: {
  23562. source: "./media/characters/bunsen/side.svg",
  23563. extra: 1644 / 358
  23564. }
  23565. },
  23566. foot: {
  23567. height: math.unit(1.611 * 1644 / 358, "meter"),
  23568. name: "Foot",
  23569. image: {
  23570. source: "./media/characters/bunsen/foot.svg"
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Small",
  23577. height: math.unit(10, "feet")
  23578. },
  23579. {
  23580. name: "Normal",
  23581. height: math.unit(15.6, "meters"),
  23582. default: true
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23588. {
  23589. front: {
  23590. height: math.unit(4 + 11 / 12, "feet"),
  23591. weight: math.unit(140, "lb"),
  23592. name: "Front",
  23593. image: {
  23594. source: "./media/characters/sesh/front.svg",
  23595. extra: 3420 / 3231,
  23596. bottom: 72 / 3949.5
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(4 + 11 / 12, "feet")
  23604. },
  23605. {
  23606. name: "Grown",
  23607. height: math.unit(15, "feet"),
  23608. default: true
  23609. },
  23610. {
  23611. name: "Macro",
  23612. height: math.unit(1500, "feet")
  23613. },
  23614. {
  23615. name: "Megamacro",
  23616. height: math.unit(30, "miles")
  23617. },
  23618. {
  23619. name: "Continental",
  23620. height: math.unit(3000, "miles")
  23621. },
  23622. {
  23623. name: "Gravity Mass",
  23624. height: math.unit(300000, "miles")
  23625. },
  23626. {
  23627. name: "Planet Buster",
  23628. height: math.unit(30000000, "miles")
  23629. },
  23630. {
  23631. name: "Big",
  23632. height: math.unit(3000000000, "miles")
  23633. },
  23634. ]
  23635. ))
  23636. characterMakers.push(() => makeCharacter(
  23637. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23638. {
  23639. front: {
  23640. height: math.unit(9, "feet"),
  23641. weight: math.unit(350, "lb"),
  23642. name: "Front",
  23643. image: {
  23644. source: "./media/characters/pepper/front.svg",
  23645. extra: 1448 / 1312,
  23646. bottom: 9.4 / 1457.88
  23647. }
  23648. },
  23649. back: {
  23650. height: math.unit(9, "feet"),
  23651. weight: math.unit(350, "lb"),
  23652. name: "Back",
  23653. image: {
  23654. source: "./media/characters/pepper/back.svg",
  23655. extra: 1423 / 1300,
  23656. bottom: 4.6 / 1429
  23657. }
  23658. },
  23659. maw: {
  23660. height: math.unit(0.932, "feet"),
  23661. name: "Maw",
  23662. image: {
  23663. source: "./media/characters/pepper/maw.svg"
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(9, "feet"),
  23671. default: true
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(6, "feet"),
  23680. weight: math.unit(150, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/maelstrom/front.svg",
  23684. extra: 2100 / 1883,
  23685. bottom: 94 / 2196.7
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Less Kaiju",
  23692. height: math.unit(200, "feet")
  23693. },
  23694. {
  23695. name: "Kaiju",
  23696. height: math.unit(400, "feet"),
  23697. default: true
  23698. },
  23699. {
  23700. name: "Kaiju-er",
  23701. height: math.unit(600, "feet")
  23702. },
  23703. ]
  23704. ))
  23705. characterMakers.push(() => makeCharacter(
  23706. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23707. {
  23708. front: {
  23709. height: math.unit(6 + 5 / 12, "feet"),
  23710. weight: math.unit(180, "lb"),
  23711. name: "Front",
  23712. image: {
  23713. source: "./media/characters/lexir/front.svg",
  23714. extra: 180 / 172,
  23715. bottom: 12 / 192
  23716. }
  23717. },
  23718. back: {
  23719. height: math.unit(6 + 5 / 12, "feet"),
  23720. weight: math.unit(180, "lb"),
  23721. name: "Back",
  23722. image: {
  23723. source: "./media/characters/lexir/back.svg",
  23724. extra: 1273/1201,
  23725. bottom: 39/1312
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Very Smal",
  23732. height: math.unit(1, "nm")
  23733. },
  23734. {
  23735. name: "Normal",
  23736. height: math.unit(6 + 5 / 12, "feet"),
  23737. default: true
  23738. },
  23739. {
  23740. name: "Macro",
  23741. height: math.unit(1, "mile")
  23742. },
  23743. {
  23744. name: "Megamacro",
  23745. height: math.unit(50, "miles")
  23746. },
  23747. ]
  23748. ))
  23749. characterMakers.push(() => makeCharacter(
  23750. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23751. {
  23752. front: {
  23753. height: math.unit(1.5, "meters"),
  23754. weight: math.unit(100, "lb"),
  23755. name: "Front",
  23756. image: {
  23757. source: "./media/characters/maksio/front.svg",
  23758. extra: 1549 / 1531,
  23759. bottom: 123.7 / 1674.5429
  23760. }
  23761. },
  23762. back: {
  23763. height: math.unit(1.5, "meters"),
  23764. weight: math.unit(100, "lb"),
  23765. name: "Back",
  23766. image: {
  23767. source: "./media/characters/maksio/back.svg",
  23768. extra: 1541 / 1509,
  23769. bottom: 97 / 1639
  23770. }
  23771. },
  23772. hand: {
  23773. height: math.unit(0.621, "feet"),
  23774. name: "Hand",
  23775. image: {
  23776. source: "./media/characters/maksio/hand.svg"
  23777. }
  23778. },
  23779. foot: {
  23780. height: math.unit(1.611, "feet"),
  23781. name: "Foot",
  23782. image: {
  23783. source: "./media/characters/maksio/foot.svg"
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Shrunken",
  23790. height: math.unit(10, "cm")
  23791. },
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(150, "cm"),
  23795. default: true
  23796. },
  23797. ]
  23798. ))
  23799. characterMakers.push(() => makeCharacter(
  23800. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23801. {
  23802. front: {
  23803. height: math.unit(100, "feet"),
  23804. name: "Front",
  23805. image: {
  23806. source: "./media/characters/erza-bear/front.svg",
  23807. extra: 2449 / 2390,
  23808. bottom: 46 / 2494
  23809. }
  23810. },
  23811. back: {
  23812. height: math.unit(100, "feet"),
  23813. name: "Back",
  23814. image: {
  23815. source: "./media/characters/erza-bear/back.svg",
  23816. extra: 2489 / 2430,
  23817. bottom: 85.4 / 2480
  23818. }
  23819. },
  23820. tail: {
  23821. height: math.unit(42, "feet"),
  23822. name: "Tail",
  23823. image: {
  23824. source: "./media/characters/erza-bear/tail.svg"
  23825. }
  23826. },
  23827. tongue: {
  23828. height: math.unit(8, "feet"),
  23829. name: "Tongue",
  23830. image: {
  23831. source: "./media/characters/erza-bear/tongue.svg"
  23832. }
  23833. },
  23834. dick: {
  23835. height: math.unit(10.5, "feet"),
  23836. name: "Dick",
  23837. image: {
  23838. source: "./media/characters/erza-bear/dick.svg"
  23839. }
  23840. },
  23841. dickVertical: {
  23842. height: math.unit(16.9, "feet"),
  23843. name: "Dick (Vertical)",
  23844. image: {
  23845. source: "./media/characters/erza-bear/dick-vertical.svg"
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Macro",
  23852. height: math.unit(100, "feet"),
  23853. default: true
  23854. },
  23855. ]
  23856. ))
  23857. characterMakers.push(() => makeCharacter(
  23858. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23859. {
  23860. front: {
  23861. height: math.unit(172, "cm"),
  23862. weight: math.unit(73, "kg"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/violet-flor/front.svg",
  23866. extra: 1530 / 1442,
  23867. bottom: 61.9 / 1588.8
  23868. }
  23869. },
  23870. back: {
  23871. height: math.unit(180, "cm"),
  23872. weight: math.unit(73, "kg"),
  23873. name: "Back",
  23874. image: {
  23875. source: "./media/characters/violet-flor/back.svg",
  23876. extra: 1692 / 1630,
  23877. bottom: 20 / 1712
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Normal",
  23884. height: math.unit(172, "cm"),
  23885. default: true
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23891. {
  23892. front: {
  23893. height: math.unit(6, "feet"),
  23894. weight: math.unit(220, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/lynn-rhea/front.svg",
  23898. extra: 310 / 273
  23899. }
  23900. },
  23901. back: {
  23902. height: math.unit(6, "feet"),
  23903. weight: math.unit(220, "lb"),
  23904. name: "Back",
  23905. image: {
  23906. source: "./media/characters/lynn-rhea/back.svg",
  23907. extra: 310 / 273
  23908. }
  23909. },
  23910. dicks: {
  23911. height: math.unit(0.9, "feet"),
  23912. name: "Dicks",
  23913. image: {
  23914. source: "./media/characters/lynn-rhea/dicks.svg"
  23915. }
  23916. },
  23917. slit: {
  23918. height: math.unit(0.4, "feet"),
  23919. name: "Slit",
  23920. image: {
  23921. source: "./media/characters/lynn-rhea/slit.svg"
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Micro",
  23928. height: math.unit(1, "inch")
  23929. },
  23930. {
  23931. name: "Macro",
  23932. height: math.unit(60, "feet"),
  23933. default: true
  23934. },
  23935. {
  23936. name: "Megamacro",
  23937. height: math.unit(2, "miles")
  23938. },
  23939. {
  23940. name: "Gigamacro",
  23941. height: math.unit(3, "earths")
  23942. },
  23943. {
  23944. name: "Galactic",
  23945. height: math.unit(0.8, "galaxies")
  23946. },
  23947. ]
  23948. ))
  23949. characterMakers.push(() => makeCharacter(
  23950. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23951. {
  23952. front: {
  23953. height: math.unit(1600, "feet"),
  23954. weight: math.unit(85758785169, "kg"),
  23955. name: "Front",
  23956. image: {
  23957. source: "./media/characters/valathos/front.svg",
  23958. extra: 1451 / 1339
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Macro",
  23965. height: math.unit(1600, "feet"),
  23966. default: true
  23967. },
  23968. ]
  23969. ))
  23970. characterMakers.push(() => makeCharacter(
  23971. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23972. {
  23973. front: {
  23974. height: math.unit(7 + 5 / 12, "feet"),
  23975. weight: math.unit(300, "lb"),
  23976. name: "Front",
  23977. image: {
  23978. source: "./media/characters/azula/front.svg",
  23979. extra: 3208 / 2880,
  23980. bottom: 80.2 / 3277
  23981. }
  23982. },
  23983. back: {
  23984. height: math.unit(7 + 5 / 12, "feet"),
  23985. weight: math.unit(300, "lb"),
  23986. name: "Back",
  23987. image: {
  23988. source: "./media/characters/azula/back.svg",
  23989. extra: 3169 / 2822,
  23990. bottom: 150.6 / 3321
  23991. }
  23992. },
  23993. },
  23994. [
  23995. {
  23996. name: "Normal",
  23997. height: math.unit(7 + 5 / 12, "feet"),
  23998. default: true
  23999. },
  24000. {
  24001. name: "Big",
  24002. height: math.unit(20, "feet")
  24003. },
  24004. ]
  24005. ))
  24006. characterMakers.push(() => makeCharacter(
  24007. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24008. {
  24009. front: {
  24010. height: math.unit(5 + 1 / 12, "feet"),
  24011. weight: math.unit(110, "lb"),
  24012. name: "Front",
  24013. image: {
  24014. source: "./media/characters/rupert/front.svg",
  24015. extra: 1549 / 1495,
  24016. bottom: 54.2 / 1604.4
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(5 + 1 / 12, "feet"),
  24024. default: true
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24030. {
  24031. front: {
  24032. height: math.unit(8 + 4 / 12, "feet"),
  24033. weight: math.unit(350, "lb"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/sheera-castellar/front.svg",
  24037. extra: 1957 / 1894,
  24038. bottom: 26.97 / 1975.017
  24039. }
  24040. },
  24041. side: {
  24042. height: math.unit(8 + 4 / 12, "feet"),
  24043. weight: math.unit(350, "lb"),
  24044. name: "Side",
  24045. image: {
  24046. source: "./media/characters/sheera-castellar/side.svg",
  24047. extra: 1957 / 1894
  24048. }
  24049. },
  24050. back: {
  24051. height: math.unit(8 + 4 / 12, "feet"),
  24052. weight: math.unit(350, "lb"),
  24053. name: "Back",
  24054. image: {
  24055. source: "./media/characters/sheera-castellar/back.svg",
  24056. extra: 1957 / 1894
  24057. }
  24058. },
  24059. angled: {
  24060. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24061. weight: math.unit(350, "lb"),
  24062. name: "Angled",
  24063. image: {
  24064. source: "./media/characters/sheera-castellar/angled.svg",
  24065. extra: 1807 / 1707,
  24066. bottom: 68 / 1875
  24067. }
  24068. },
  24069. genitals: {
  24070. height: math.unit(2.2, "feet"),
  24071. name: "Genitals",
  24072. image: {
  24073. source: "./media/characters/sheera-castellar/genitals.svg"
  24074. }
  24075. },
  24076. taur: {
  24077. height: math.unit(10 + 6/12, "feet"),
  24078. name: "Taur",
  24079. image: {
  24080. source: "./media/characters/sheera-castellar/taur.svg",
  24081. extra: 2017/1909,
  24082. bottom: 185/2202
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Normal",
  24089. height: math.unit(8 + 4 / 12, "feet")
  24090. },
  24091. {
  24092. name: "Macro",
  24093. height: math.unit(150, "feet"),
  24094. default: true
  24095. },
  24096. {
  24097. name: "Macro+",
  24098. height: math.unit(800, "feet")
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24104. {
  24105. front: {
  24106. height: math.unit(6, "feet"),
  24107. weight: math.unit(150, "lb"),
  24108. name: "Front",
  24109. image: {
  24110. source: "./media/characters/jaipur/front.svg",
  24111. extra: 3860 / 3731,
  24112. bottom: 287 / 4140
  24113. }
  24114. },
  24115. back: {
  24116. height: math.unit(6, "feet"),
  24117. weight: math.unit(150, "lb"),
  24118. name: "Back",
  24119. image: {
  24120. source: "./media/characters/jaipur/back.svg",
  24121. extra: 1637/1561,
  24122. bottom: 154/1791
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Normal",
  24129. height: math.unit(1.85, "meters"),
  24130. default: true
  24131. },
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(150, "meters")
  24135. },
  24136. {
  24137. name: "Macro+",
  24138. height: math.unit(0.5, "miles")
  24139. },
  24140. {
  24141. name: "Macro++",
  24142. height: math.unit(2.5, "miles")
  24143. },
  24144. {
  24145. name: "Macro+++",
  24146. height: math.unit(12, "miles")
  24147. },
  24148. {
  24149. name: "Macro++++",
  24150. height: math.unit(120, "miles")
  24151. },
  24152. {
  24153. name: "Macro+++++",
  24154. height: math.unit(1200, "miles")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(6, "feet"),
  24163. weight: math.unit(150, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/sheila-wolf/front.svg",
  24167. extra: 1931 / 1808,
  24168. bottom: 29.5 / 1960
  24169. }
  24170. },
  24171. dick: {
  24172. height: math.unit(1.464, "feet"),
  24173. name: "Dick",
  24174. image: {
  24175. source: "./media/characters/sheila-wolf/dick.svg"
  24176. }
  24177. },
  24178. muzzle: {
  24179. height: math.unit(0.513, "feet"),
  24180. name: "Muzzle",
  24181. image: {
  24182. source: "./media/characters/sheila-wolf/muzzle.svg"
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Macro",
  24189. height: math.unit(70, "feet"),
  24190. default: true
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24196. {
  24197. front: {
  24198. height: math.unit(32, "meters"),
  24199. weight: math.unit(300000, "kg"),
  24200. name: "Front",
  24201. image: {
  24202. source: "./media/characters/almor/front.svg",
  24203. extra: 1408 / 1322,
  24204. bottom: 94.6 / 1506.5
  24205. }
  24206. },
  24207. },
  24208. [
  24209. {
  24210. name: "Macro",
  24211. height: math.unit(32, "meters"),
  24212. default: true
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(7, "feet"),
  24221. weight: math.unit(200, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/silver/front.svg",
  24225. extra: 472.1 / 450.5,
  24226. bottom: 26.5 / 499.424
  24227. }
  24228. },
  24229. },
  24230. [
  24231. {
  24232. name: "Normal",
  24233. height: math.unit(7, "feet"),
  24234. default: true
  24235. },
  24236. {
  24237. name: "Macro",
  24238. height: math.unit(800, "feet")
  24239. },
  24240. {
  24241. name: "Megamacro",
  24242. height: math.unit(250, "miles")
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(6, "feet"),
  24251. weight: math.unit(150, "lb"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/pliskin/front.svg",
  24255. extra: 1469 / 1359,
  24256. bottom: 70 / 1540
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Micro",
  24263. height: math.unit(3, "inches")
  24264. },
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(5 + 11 / 12, "feet"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Macro",
  24272. height: math.unit(120, "feet")
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24278. {
  24279. front: {
  24280. height: math.unit(6, "feet"),
  24281. weight: math.unit(150, "lb"),
  24282. name: "Front",
  24283. image: {
  24284. source: "./media/characters/sammy/front.svg",
  24285. extra: 1193 / 1089,
  24286. bottom: 30.5 / 1226
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Macro",
  24293. height: math.unit(1700, "feet"),
  24294. default: true
  24295. },
  24296. {
  24297. name: "Examacro",
  24298. height: math.unit(2.5e9, "lightyears")
  24299. },
  24300. ]
  24301. ))
  24302. characterMakers.push(() => makeCharacter(
  24303. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24304. {
  24305. front: {
  24306. height: math.unit(21, "meters"),
  24307. weight: math.unit(12, "tonnes"),
  24308. name: "Front",
  24309. image: {
  24310. source: "./media/characters/kuru/front.svg",
  24311. extra: 4301 / 3785,
  24312. bottom: 371.3 / 4691
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(21, "meters"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(23, "meters"),
  24329. weight: math.unit(12.2, "tonnes"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/rakka/front.svg",
  24333. extra: 4670 / 4169,
  24334. bottom: 301 / 4968.7
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Macro",
  24341. height: math.unit(23, "meters"),
  24342. default: true
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24348. {
  24349. front: {
  24350. height: math.unit(6, "feet"),
  24351. weight: math.unit(150, "lb"),
  24352. name: "Front",
  24353. image: {
  24354. source: "./media/characters/rhys-feline/front.svg",
  24355. extra: 2488 / 2308,
  24356. bottom: 35.67 / 2519.19
  24357. }
  24358. },
  24359. },
  24360. [
  24361. {
  24362. name: "Really Small",
  24363. height: math.unit(1, "nm")
  24364. },
  24365. {
  24366. name: "Micro",
  24367. height: math.unit(4, "inches")
  24368. },
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(4 + 10 / 12, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(100, "feet")
  24377. },
  24378. {
  24379. name: "Megamacto",
  24380. height: math.unit(50, "miles")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24386. {
  24387. side: {
  24388. height: math.unit(30, "feet"),
  24389. weight: math.unit(35000, "kg"),
  24390. name: "Side",
  24391. image: {
  24392. source: "./media/characters/alydar/side.svg",
  24393. extra: 234 / 222,
  24394. bottom: 6.5 / 241
  24395. }
  24396. },
  24397. front: {
  24398. height: math.unit(30, "feet"),
  24399. weight: math.unit(35000, "kg"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/alydar/front.svg",
  24403. extra: 223.37 / 210.2,
  24404. bottom: 22.3 / 246.76
  24405. }
  24406. },
  24407. top: {
  24408. height: math.unit(64.54, "feet"),
  24409. weight: math.unit(35000, "kg"),
  24410. name: "Top",
  24411. image: {
  24412. source: "./media/characters/alydar/top.svg"
  24413. }
  24414. },
  24415. anthro: {
  24416. height: math.unit(30, "feet"),
  24417. weight: math.unit(9000, "kg"),
  24418. name: "Anthro",
  24419. image: {
  24420. source: "./media/characters/alydar/anthro.svg",
  24421. extra: 432 / 421,
  24422. bottom: 7.18 / 440
  24423. }
  24424. },
  24425. maw: {
  24426. height: math.unit(11.693, "feet"),
  24427. name: "Maw",
  24428. image: {
  24429. source: "./media/characters/alydar/maw.svg"
  24430. }
  24431. },
  24432. head: {
  24433. height: math.unit(11.693, "feet"),
  24434. name: "Head",
  24435. image: {
  24436. source: "./media/characters/alydar/head.svg"
  24437. }
  24438. },
  24439. headAlt: {
  24440. height: math.unit(12.861, "feet"),
  24441. name: "Head (Alt)",
  24442. image: {
  24443. source: "./media/characters/alydar/head-alt.svg"
  24444. }
  24445. },
  24446. wing: {
  24447. height: math.unit(20.712, "feet"),
  24448. name: "Wing",
  24449. image: {
  24450. source: "./media/characters/alydar/wing.svg"
  24451. }
  24452. },
  24453. wingFeather: {
  24454. height: math.unit(9.662, "feet"),
  24455. name: "Wing Feather",
  24456. image: {
  24457. source: "./media/characters/alydar/wing-feather.svg"
  24458. }
  24459. },
  24460. countourFeather: {
  24461. height: math.unit(4.154, "feet"),
  24462. name: "Contour Feather",
  24463. image: {
  24464. source: "./media/characters/alydar/contour-feather.svg"
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Diplomatic",
  24471. height: math.unit(13, "feet"),
  24472. default: true
  24473. },
  24474. {
  24475. name: "Small",
  24476. height: math.unit(30, "feet")
  24477. },
  24478. {
  24479. name: "Normal",
  24480. height: math.unit(95, "feet"),
  24481. default: true
  24482. },
  24483. {
  24484. name: "Large",
  24485. height: math.unit(285, "feet")
  24486. },
  24487. {
  24488. name: "Incomprehensible",
  24489. height: math.unit(450, "megameters")
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24495. {
  24496. side: {
  24497. height: math.unit(11, "feet"),
  24498. weight: math.unit(1750, "kg"),
  24499. name: "Side",
  24500. image: {
  24501. source: "./media/characters/selicia/side.svg",
  24502. extra: 440 / 396,
  24503. bottom: 24.8 / 465.979
  24504. }
  24505. },
  24506. maw: {
  24507. height: math.unit(4.665, "feet"),
  24508. name: "Maw",
  24509. image: {
  24510. source: "./media/characters/selicia/maw.svg"
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(11, "feet"),
  24518. default: true
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24524. {
  24525. side: {
  24526. height: math.unit(2 + 6 / 12, "feet"),
  24527. weight: math.unit(30, "lb"),
  24528. name: "Side",
  24529. image: {
  24530. source: "./media/characters/layla/side.svg",
  24531. extra: 244 / 188,
  24532. bottom: 18.2 / 262.1
  24533. }
  24534. },
  24535. back: {
  24536. height: math.unit(2 + 6 / 12, "feet"),
  24537. weight: math.unit(30, "lb"),
  24538. name: "Back",
  24539. image: {
  24540. source: "./media/characters/layla/back.svg",
  24541. extra: 308 / 241.5,
  24542. bottom: 8.9 / 316.8
  24543. }
  24544. },
  24545. cumming: {
  24546. height: math.unit(2 + 6 / 12, "feet"),
  24547. weight: math.unit(30, "lb"),
  24548. name: "Cumming",
  24549. image: {
  24550. source: "./media/characters/layla/cumming.svg",
  24551. extra: 342 / 279,
  24552. bottom: 595 / 938
  24553. }
  24554. },
  24555. dickFlaccid: {
  24556. height: math.unit(2.595, "feet"),
  24557. name: "Flaccid Genitals",
  24558. image: {
  24559. source: "./media/characters/layla/dick-flaccid.svg"
  24560. }
  24561. },
  24562. dickErect: {
  24563. height: math.unit(2.359, "feet"),
  24564. name: "Erect Genitals",
  24565. image: {
  24566. source: "./media/characters/layla/dick-erect.svg"
  24567. }
  24568. },
  24569. dragon: {
  24570. height: math.unit(40, "feet"),
  24571. name: "Dragon",
  24572. image: {
  24573. source: "./media/characters/layla/dragon.svg",
  24574. extra: 610/535,
  24575. bottom: 367/977
  24576. }
  24577. },
  24578. taur: {
  24579. height: math.unit(30, "feet"),
  24580. name: "Taur",
  24581. image: {
  24582. source: "./media/characters/layla/taur.svg",
  24583. extra: 1268/1199,
  24584. bottom: 112/1380
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Micro",
  24591. height: math.unit(1, "inch")
  24592. },
  24593. {
  24594. name: "Small",
  24595. height: math.unit(1, "foot")
  24596. },
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(2 + 6 / 12, "feet"),
  24600. default: true
  24601. },
  24602. {
  24603. name: "Macro",
  24604. height: math.unit(200, "feet")
  24605. },
  24606. {
  24607. name: "Megamacro",
  24608. height: math.unit(1000, "miles")
  24609. },
  24610. {
  24611. name: "Planetary",
  24612. height: math.unit(8000, "miles")
  24613. },
  24614. {
  24615. name: "True Layla",
  24616. height: math.unit(200000 * 7, "multiverses")
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24622. {
  24623. back: {
  24624. height: math.unit(10.5, "feet"),
  24625. weight: math.unit(800, "lb"),
  24626. name: "Back",
  24627. image: {
  24628. source: "./media/characters/knox/back.svg",
  24629. extra: 1486 / 1089,
  24630. bottom: 107 / 1601.4
  24631. }
  24632. },
  24633. side: {
  24634. height: math.unit(10.5, "feet"),
  24635. weight: math.unit(800, "lb"),
  24636. name: "Side",
  24637. image: {
  24638. source: "./media/characters/knox/side.svg",
  24639. extra: 244 / 218,
  24640. bottom: 14 / 260
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Compact",
  24647. height: math.unit(10.5, "feet"),
  24648. default: true
  24649. },
  24650. {
  24651. name: "Dynamax",
  24652. height: math.unit(210, "feet")
  24653. },
  24654. {
  24655. name: "Full Macro",
  24656. height: math.unit(850, "feet")
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24662. {
  24663. front: {
  24664. height: math.unit(28, "feet"),
  24665. weight: math.unit(10500, "lb"),
  24666. name: "Front",
  24667. image: {
  24668. source: "./media/characters/kayda/front.svg",
  24669. extra: 1536 / 1428,
  24670. bottom: 68.7 / 1603
  24671. }
  24672. },
  24673. back: {
  24674. height: math.unit(28, "feet"),
  24675. weight: math.unit(10500, "lb"),
  24676. name: "Back",
  24677. image: {
  24678. source: "./media/characters/kayda/back.svg",
  24679. extra: 1557 / 1464,
  24680. bottom: 39.5 / 1597.49
  24681. }
  24682. },
  24683. dick: {
  24684. height: math.unit(3.858, "feet"),
  24685. name: "Dick",
  24686. image: {
  24687. source: "./media/characters/kayda/dick.svg"
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Macro",
  24694. height: math.unit(28, "feet"),
  24695. default: true
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24701. {
  24702. front: {
  24703. height: math.unit(10 + 11 / 12, "feet"),
  24704. weight: math.unit(1400, "lb"),
  24705. name: "Front",
  24706. image: {
  24707. source: "./media/characters/brian/front.svg",
  24708. extra: 737 / 692,
  24709. bottom: 55.4 / 785
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Normal",
  24716. height: math.unit(10 + 11 / 12, "feet"),
  24717. default: true
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24723. {
  24724. front: {
  24725. height: math.unit(5 + 8 / 12, "feet"),
  24726. weight: math.unit(140, "lb"),
  24727. name: "Front",
  24728. image: {
  24729. source: "./media/characters/khemri/front.svg",
  24730. extra: 4780 / 4059,
  24731. bottom: 80.1 / 4859.25
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Micro",
  24738. height: math.unit(6, "inches")
  24739. },
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(5 + 8 / 12, "feet"),
  24743. default: true
  24744. },
  24745. ]
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24749. {
  24750. front: {
  24751. height: math.unit(13, "feet"),
  24752. weight: math.unit(1700, "lb"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/felix-braveheart/front.svg",
  24756. extra: 1222 / 1157,
  24757. bottom: 53.2 / 1280
  24758. }
  24759. },
  24760. back: {
  24761. height: math.unit(13, "feet"),
  24762. weight: math.unit(1700, "lb"),
  24763. name: "Back",
  24764. image: {
  24765. source: "./media/characters/felix-braveheart/back.svg",
  24766. extra: 1277 / 1203,
  24767. bottom: 50.2 / 1327
  24768. }
  24769. },
  24770. feral: {
  24771. height: math.unit(6, "feet"),
  24772. weight: math.unit(400, "lb"),
  24773. name: "Feral",
  24774. image: {
  24775. source: "./media/characters/felix-braveheart/feral.svg",
  24776. extra: 682 / 625,
  24777. bottom: 6.9 / 688
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(13, "feet"),
  24785. default: true
  24786. },
  24787. ]
  24788. ))
  24789. characterMakers.push(() => makeCharacter(
  24790. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24791. {
  24792. side: {
  24793. height: math.unit(5 + 11 / 12, "feet"),
  24794. weight: math.unit(1400, "lb"),
  24795. name: "Side",
  24796. image: {
  24797. source: "./media/characters/shadow-blade/side.svg",
  24798. extra: 1726 / 1267,
  24799. bottom: 58.4 / 1785
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Normal",
  24806. height: math.unit(5 + 11 / 12, "feet"),
  24807. default: true
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(1 + 6 / 12, "feet"),
  24816. weight: math.unit(25, "lb"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/karla-halldor/front.svg",
  24820. extra: 1459 / 1383,
  24821. bottom: 12 / 1472
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(1 + 6 / 12, "feet"),
  24829. default: true
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(6 + 2 / 12, "feet"),
  24838. weight: math.unit(160, "lb"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/ariam/front.svg",
  24842. extra: 1073/976,
  24843. bottom: 52/1125
  24844. }
  24845. },
  24846. back: {
  24847. height: math.unit(6 + 2/12, "feet"),
  24848. weight: math.unit(160, "lb"),
  24849. name: "Back",
  24850. image: {
  24851. source: "./media/characters/ariam/back.svg",
  24852. extra: 1103/1023,
  24853. bottom: 9/1112
  24854. }
  24855. },
  24856. dressed: {
  24857. height: math.unit(6 + 2/12, "feet"),
  24858. weight: math.unit(160, "lb"),
  24859. name: "Dressed",
  24860. image: {
  24861. source: "./media/characters/ariam/dressed.svg",
  24862. extra: 1099/1009,
  24863. bottom: 25/1124
  24864. }
  24865. },
  24866. squatting: {
  24867. height: math.unit(4.1, "feet"),
  24868. weight: math.unit(160, "lb"),
  24869. name: "Squatting",
  24870. image: {
  24871. source: "./media/characters/ariam/squatting.svg",
  24872. extra: 2617 / 2112,
  24873. bottom: 61.2 / 2681,
  24874. }
  24875. },
  24876. },
  24877. [
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(6 + 2 / 12, "feet"),
  24881. default: true
  24882. },
  24883. {
  24884. name: "Normal+",
  24885. height: math.unit(4, "meters")
  24886. },
  24887. {
  24888. name: "Macro",
  24889. height: math.unit(50, "meters")
  24890. },
  24891. {
  24892. name: "Macro+",
  24893. height: math.unit(100, "meters")
  24894. },
  24895. {
  24896. name: "Megamacro",
  24897. height: math.unit(20, "km")
  24898. },
  24899. {
  24900. name: "Caretaker",
  24901. height: math.unit(444, "megameters")
  24902. },
  24903. ]
  24904. ))
  24905. characterMakers.push(() => makeCharacter(
  24906. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24907. {
  24908. front: {
  24909. height: math.unit(1.67, "meters"),
  24910. weight: math.unit(140, "lb"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24914. extra: 438 / 410,
  24915. bottom: 0.75 / 439
  24916. }
  24917. },
  24918. },
  24919. [
  24920. {
  24921. name: "Shrunken",
  24922. height: math.unit(7.6, "cm")
  24923. },
  24924. {
  24925. name: "Human Scale",
  24926. height: math.unit(1.67, "meters")
  24927. },
  24928. {
  24929. name: "Wolxi Scale",
  24930. height: math.unit(36.7, "meters"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(1.73, "meters"),
  24940. weight: math.unit(240, "lb"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/izue-two-mothers/front.svg",
  24944. extra: 469 / 437,
  24945. bottom: 1.24 / 470.6
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Shrunken",
  24952. height: math.unit(7.86, "cm")
  24953. },
  24954. {
  24955. name: "Human Scale",
  24956. height: math.unit(1.73, "meters")
  24957. },
  24958. {
  24959. name: "Wolxi Scale",
  24960. height: math.unit(38, "meters"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24967. {
  24968. front: {
  24969. height: math.unit(1.55, "meters"),
  24970. weight: math.unit(120, "lb"),
  24971. name: "Front",
  24972. image: {
  24973. source: "./media/characters/teeku-love-shack/front.svg",
  24974. extra: 387 / 362,
  24975. bottom: 1.51 / 388
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Shrunken",
  24982. height: math.unit(7, "cm")
  24983. },
  24984. {
  24985. name: "Human Scale",
  24986. height: math.unit(1.55, "meters")
  24987. },
  24988. {
  24989. name: "Wolxi Scale",
  24990. height: math.unit(34.1, "meters"),
  24991. default: true
  24992. },
  24993. ]
  24994. ))
  24995. characterMakers.push(() => makeCharacter(
  24996. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24997. {
  24998. front: {
  24999. height: math.unit(1.83, "meters"),
  25000. weight: math.unit(135, "lb"),
  25001. name: "Front",
  25002. image: {
  25003. source: "./media/characters/dejma-the-red/front.svg",
  25004. extra: 480 / 458,
  25005. bottom: 1.8 / 482
  25006. }
  25007. },
  25008. },
  25009. [
  25010. {
  25011. name: "Shrunken",
  25012. height: math.unit(8.3, "cm")
  25013. },
  25014. {
  25015. name: "Human Scale",
  25016. height: math.unit(1.83, "meters")
  25017. },
  25018. {
  25019. name: "Wolxi Scale",
  25020. height: math.unit(40, "meters"),
  25021. default: true
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25027. {
  25028. front: {
  25029. height: math.unit(1.78, "meters"),
  25030. weight: math.unit(65, "kg"),
  25031. name: "Front",
  25032. image: {
  25033. source: "./media/characters/aki/front.svg",
  25034. extra: 452 / 415
  25035. }
  25036. },
  25037. frontNsfw: {
  25038. height: math.unit(1.78, "meters"),
  25039. weight: math.unit(65, "kg"),
  25040. name: "Front (NSFW)",
  25041. image: {
  25042. source: "./media/characters/aki/front-nsfw.svg",
  25043. extra: 452 / 415
  25044. }
  25045. },
  25046. back: {
  25047. height: math.unit(1.78, "meters"),
  25048. weight: math.unit(65, "kg"),
  25049. name: "Back",
  25050. image: {
  25051. source: "./media/characters/aki/back.svg",
  25052. extra: 452 / 415
  25053. }
  25054. },
  25055. rump: {
  25056. height: math.unit(2.05, "feet"),
  25057. name: "Rump",
  25058. image: {
  25059. source: "./media/characters/aki/rump.svg"
  25060. }
  25061. },
  25062. dick: {
  25063. height: math.unit(0.95, "feet"),
  25064. name: "Dick",
  25065. image: {
  25066. source: "./media/characters/aki/dick.svg"
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Micro",
  25073. height: math.unit(15, "cm")
  25074. },
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(178, "cm"),
  25078. default: true
  25079. },
  25080. {
  25081. name: "Macro",
  25082. height: math.unit(214, "m")
  25083. },
  25084. {
  25085. name: "Macro+",
  25086. height: math.unit(534, "m")
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25092. {
  25093. front: {
  25094. height: math.unit(5 + 5 / 12, "feet"),
  25095. weight: math.unit(120, "lb"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/ari/front.svg",
  25099. extra: 1550/1471,
  25100. bottom: 39/1589
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(5 + 5 / 12, "feet")
  25108. },
  25109. {
  25110. name: "Macro",
  25111. height: math.unit(100, "feet"),
  25112. default: true
  25113. },
  25114. {
  25115. name: "Megamacro",
  25116. height: math.unit(100, "miles")
  25117. },
  25118. {
  25119. name: "Gigamacro",
  25120. height: math.unit(80000, "miles")
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25126. {
  25127. side: {
  25128. height: math.unit(9, "feet"),
  25129. weight: math.unit(400, "kg"),
  25130. name: "Side",
  25131. image: {
  25132. source: "./media/characters/bolt/side.svg",
  25133. extra: 1126 / 896,
  25134. bottom: 60 / 1187.3,
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Micro",
  25141. height: math.unit(5, "inches")
  25142. },
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(9, "feet"),
  25146. default: true
  25147. },
  25148. {
  25149. name: "Macro",
  25150. height: math.unit(700, "feet")
  25151. },
  25152. {
  25153. name: "Max Size",
  25154. height: math.unit(1.52e22, "yottameters")
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(4.3, "meters"),
  25163. weight: math.unit(3, "tons"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/draekon-sylviar/front.svg",
  25167. extra: 2072/1512,
  25168. bottom: 74/2146
  25169. }
  25170. },
  25171. back: {
  25172. height: math.unit(4.3, "meters"),
  25173. weight: math.unit(3, "tons"),
  25174. name: "Back",
  25175. image: {
  25176. source: "./media/characters/draekon-sylviar/back.svg",
  25177. extra: 1639/1483,
  25178. bottom: 41/1680
  25179. }
  25180. },
  25181. feral: {
  25182. height: math.unit(1.15, "meters"),
  25183. weight: math.unit(3, "tons"),
  25184. name: "Feral",
  25185. image: {
  25186. source: "./media/characters/draekon-sylviar/feral.svg",
  25187. extra: 1033/395,
  25188. bottom: 130/1163
  25189. }
  25190. },
  25191. maw: {
  25192. height: math.unit(1.3, "meters"),
  25193. name: "Maw",
  25194. image: {
  25195. source: "./media/characters/draekon-sylviar/maw.svg"
  25196. }
  25197. },
  25198. mawSeparated: {
  25199. height: math.unit(1.53, "meters"),
  25200. name: "Separated Maw",
  25201. image: {
  25202. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25203. }
  25204. },
  25205. tail: {
  25206. height: math.unit(1.15, "meters"),
  25207. name: "Tail",
  25208. image: {
  25209. source: "./media/characters/draekon-sylviar/tail.svg"
  25210. }
  25211. },
  25212. tailDick: {
  25213. height: math.unit(1.15, "meters"),
  25214. name: "Tail (Dick)",
  25215. image: {
  25216. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25217. }
  25218. },
  25219. tailDickSeparated: {
  25220. height: math.unit(1.19, "meters"),
  25221. name: "Tail (Separated Dick)",
  25222. image: {
  25223. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25224. }
  25225. },
  25226. slit: {
  25227. height: math.unit(1, "meters"),
  25228. name: "Slit",
  25229. image: {
  25230. source: "./media/characters/draekon-sylviar/slit.svg"
  25231. }
  25232. },
  25233. dick: {
  25234. height: math.unit(1.15, "meters"),
  25235. name: "Dick",
  25236. image: {
  25237. source: "./media/characters/draekon-sylviar/dick.svg"
  25238. }
  25239. },
  25240. dickSeparated: {
  25241. height: math.unit(1.1, "meters"),
  25242. name: "Separated Dick",
  25243. image: {
  25244. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25245. }
  25246. },
  25247. sheath: {
  25248. height: math.unit(1.15, "meters"),
  25249. name: "Sheath",
  25250. image: {
  25251. source: "./media/characters/draekon-sylviar/sheath.svg"
  25252. }
  25253. },
  25254. },
  25255. [
  25256. {
  25257. name: "Small",
  25258. height: math.unit(4.53 / 2, "meters"),
  25259. default: true
  25260. },
  25261. {
  25262. name: "Normal",
  25263. height: math.unit(4.53, "meters"),
  25264. default: true
  25265. },
  25266. {
  25267. name: "Large",
  25268. height: math.unit(4.53 * 2, "meters"),
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(6 + 2 / 12, "feet"),
  25277. weight: math.unit(180, "lb"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/brawler/front.svg",
  25281. extra: 3301 / 3027,
  25282. bottom: 138 / 3439
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Normal",
  25289. height: math.unit(6 + 2 / 12, "feet"),
  25290. default: true
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(11, "feet"),
  25299. weight: math.unit(1000, "lb"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/alex/front.svg",
  25303. bottom: 44.5 / 620
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Micro",
  25310. height: math.unit(5, "inches")
  25311. },
  25312. {
  25313. name: "Normal",
  25314. height: math.unit(11, "feet"),
  25315. default: true
  25316. },
  25317. {
  25318. name: "Macro",
  25319. height: math.unit(9.5e9, "feet")
  25320. },
  25321. {
  25322. name: "Max Size",
  25323. height: math.unit(1.4e283, "yottameters")
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25329. {
  25330. female: {
  25331. height: math.unit(29.9, "m"),
  25332. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25333. name: "Female",
  25334. image: {
  25335. source: "./media/characters/zenari/female.svg",
  25336. extra: 3281.6 / 3217,
  25337. bottom: 72.2 / 3353
  25338. }
  25339. },
  25340. male: {
  25341. height: math.unit(27.7, "m"),
  25342. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25343. name: "Male",
  25344. image: {
  25345. source: "./media/characters/zenari/male.svg",
  25346. extra: 3008 / 2991,
  25347. bottom: 54.6 / 3069
  25348. }
  25349. },
  25350. },
  25351. [
  25352. {
  25353. name: "Macro",
  25354. height: math.unit(29.7, "meters"),
  25355. default: true
  25356. },
  25357. ]
  25358. ))
  25359. characterMakers.push(() => makeCharacter(
  25360. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25361. {
  25362. female: {
  25363. height: math.unit(23.8, "m"),
  25364. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25365. name: "Female",
  25366. image: {
  25367. source: "./media/characters/mactarian/female.svg",
  25368. extra: 2662 / 2569,
  25369. bottom: 73 / 2736
  25370. }
  25371. },
  25372. male: {
  25373. height: math.unit(23.8, "m"),
  25374. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25375. name: "Male",
  25376. image: {
  25377. source: "./media/characters/mactarian/male.svg",
  25378. extra: 2673 / 2600,
  25379. bottom: 76 / 2750
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Macro",
  25386. height: math.unit(23.8, "meters"),
  25387. default: true
  25388. },
  25389. ]
  25390. ))
  25391. characterMakers.push(() => makeCharacter(
  25392. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25393. {
  25394. female: {
  25395. height: math.unit(19.3, "m"),
  25396. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25397. name: "Female",
  25398. image: {
  25399. source: "./media/characters/umok/female.svg",
  25400. extra: 2186 / 2078,
  25401. bottom: 87 / 2277
  25402. }
  25403. },
  25404. male: {
  25405. height: math.unit(19.5, "m"),
  25406. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25407. name: "Male",
  25408. image: {
  25409. source: "./media/characters/umok/male.svg",
  25410. extra: 2233 / 2140,
  25411. bottom: 24.4 / 2258
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Macro",
  25418. height: math.unit(19.3, "meters"),
  25419. default: true
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25425. {
  25426. female: {
  25427. height: math.unit(26.15, "m"),
  25428. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25429. name: "Female",
  25430. image: {
  25431. source: "./media/characters/joraxian/female.svg",
  25432. extra: 2912 / 2824,
  25433. bottom: 36 / 2956
  25434. }
  25435. },
  25436. male: {
  25437. height: math.unit(25.4, "m"),
  25438. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25439. name: "Male",
  25440. image: {
  25441. source: "./media/characters/joraxian/male.svg",
  25442. extra: 2877 / 2721,
  25443. bottom: 82 / 2967
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Macro",
  25450. height: math.unit(26.15, "meters"),
  25451. default: true
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25457. {
  25458. female: {
  25459. height: math.unit(21.6, "m"),
  25460. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25461. name: "Female",
  25462. image: {
  25463. source: "./media/characters/sthara/female.svg",
  25464. extra: 2516 / 2347,
  25465. bottom: 21.5 / 2537
  25466. }
  25467. },
  25468. male: {
  25469. height: math.unit(24, "m"),
  25470. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25471. name: "Male",
  25472. image: {
  25473. source: "./media/characters/sthara/male.svg",
  25474. extra: 2732 / 2607,
  25475. bottom: 23 / 2732
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Macro",
  25482. height: math.unit(21.6, "meters"),
  25483. default: true
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25489. {
  25490. front: {
  25491. height: math.unit(6 + 4 / 12, "feet"),
  25492. weight: math.unit(175, "lb"),
  25493. name: "Front",
  25494. image: {
  25495. source: "./media/characters/luka-bryzant/front.svg",
  25496. extra: 311 / 289,
  25497. bottom: 4 / 315
  25498. }
  25499. },
  25500. back: {
  25501. height: math.unit(6 + 4 / 12, "feet"),
  25502. weight: math.unit(175, "lb"),
  25503. name: "Back",
  25504. image: {
  25505. source: "./media/characters/luka-bryzant/back.svg",
  25506. extra: 311 / 289,
  25507. bottom: 3.8 / 313.7
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Micro",
  25514. height: math.unit(10, "inches")
  25515. },
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(6 + 4 / 12, "feet"),
  25519. default: true
  25520. },
  25521. {
  25522. name: "Large",
  25523. height: math.unit(12, "feet")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(5 + 7 / 12, "feet"),
  25532. weight: math.unit(185, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/aman-aquila/front.svg",
  25536. extra: 1013 / 976,
  25537. bottom: 45.6 / 1057
  25538. }
  25539. },
  25540. side: {
  25541. height: math.unit(5 + 7 / 12, "feet"),
  25542. weight: math.unit(185, "lb"),
  25543. name: "Side",
  25544. image: {
  25545. source: "./media/characters/aman-aquila/side.svg",
  25546. extra: 1054 / 1011,
  25547. bottom: 15 / 1070
  25548. }
  25549. },
  25550. back: {
  25551. height: math.unit(5 + 7 / 12, "feet"),
  25552. weight: math.unit(185, "lb"),
  25553. name: "Back",
  25554. image: {
  25555. source: "./media/characters/aman-aquila/back.svg",
  25556. extra: 1026 / 970,
  25557. bottom: 12 / 1039
  25558. }
  25559. },
  25560. head: {
  25561. height: math.unit(1.211, "feet"),
  25562. name: "Head",
  25563. image: {
  25564. source: "./media/characters/aman-aquila/head.svg",
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Minimicro",
  25571. height: math.unit(0.057, "inches")
  25572. },
  25573. {
  25574. name: "Micro",
  25575. height: math.unit(7, "inches")
  25576. },
  25577. {
  25578. name: "Mini",
  25579. height: math.unit(3 + 7 / 12, "feet")
  25580. },
  25581. {
  25582. name: "Normal",
  25583. height: math.unit(5 + 7 / 12, "feet"),
  25584. default: true
  25585. },
  25586. {
  25587. name: "Macro",
  25588. height: math.unit(157 + 7 / 12, "feet")
  25589. },
  25590. {
  25591. name: "Megamacro",
  25592. height: math.unit(1557 + 7 / 12, "feet")
  25593. },
  25594. {
  25595. name: "Gigamacro",
  25596. height: math.unit(15557 + 7 / 12, "feet")
  25597. },
  25598. ]
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25602. {
  25603. front: {
  25604. height: math.unit(3 + 2 / 12, "inches"),
  25605. weight: math.unit(0.3, "ounces"),
  25606. name: "Front",
  25607. image: {
  25608. source: "./media/characters/hiphae/front.svg",
  25609. extra: 1931 / 1683,
  25610. bottom: 24 / 1955
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Normal",
  25617. height: math.unit(3 + 1 / 2, "inches"),
  25618. default: true
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25624. {
  25625. front: {
  25626. height: math.unit(5 + 10 / 12, "feet"),
  25627. weight: math.unit(165, "lb"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/nicky/front.svg",
  25631. extra: 3144 / 2886,
  25632. bottom: 45.6 / 3192
  25633. }
  25634. },
  25635. back: {
  25636. height: math.unit(5 + 10 / 12, "feet"),
  25637. weight: math.unit(165, "lb"),
  25638. name: "Back",
  25639. image: {
  25640. source: "./media/characters/nicky/back.svg",
  25641. extra: 3055 / 2804,
  25642. bottom: 28.4 / 3087
  25643. }
  25644. },
  25645. frontclothed: {
  25646. height: math.unit(5 + 10 / 12, "feet"),
  25647. weight: math.unit(165, "lb"),
  25648. name: "Front-clothed",
  25649. image: {
  25650. source: "./media/characters/nicky/front-clothed.svg",
  25651. extra: 3184.9 / 2926.9,
  25652. bottom: 86.5 / 3239.9
  25653. }
  25654. },
  25655. foot: {
  25656. height: math.unit(1.16, "feet"),
  25657. name: "Foot",
  25658. image: {
  25659. source: "./media/characters/nicky/foot.svg"
  25660. }
  25661. },
  25662. feet: {
  25663. height: math.unit(1.34, "feet"),
  25664. name: "Feet",
  25665. image: {
  25666. source: "./media/characters/nicky/feet.svg"
  25667. }
  25668. },
  25669. maw: {
  25670. height: math.unit(0.9, "feet"),
  25671. name: "Maw",
  25672. image: {
  25673. source: "./media/characters/nicky/maw.svg"
  25674. }
  25675. },
  25676. },
  25677. [
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(5 + 10 / 12, "feet"),
  25681. default: true
  25682. },
  25683. {
  25684. name: "Macro",
  25685. height: math.unit(60, "feet")
  25686. },
  25687. {
  25688. name: "Megamacro",
  25689. height: math.unit(1, "mile")
  25690. },
  25691. ]
  25692. ))
  25693. characterMakers.push(() => makeCharacter(
  25694. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25695. {
  25696. side: {
  25697. height: math.unit(10, "feet"),
  25698. weight: math.unit(600, "lb"),
  25699. name: "Side",
  25700. image: {
  25701. source: "./media/characters/blair/side.svg",
  25702. bottom: 16.6 / 475,
  25703. extra: 458 / 431
  25704. }
  25705. },
  25706. },
  25707. [
  25708. {
  25709. name: "Micro",
  25710. height: math.unit(8, "inches")
  25711. },
  25712. {
  25713. name: "Normal",
  25714. height: math.unit(10, "feet"),
  25715. default: true
  25716. },
  25717. {
  25718. name: "Macro",
  25719. height: math.unit(180, "feet")
  25720. },
  25721. ]
  25722. ))
  25723. characterMakers.push(() => makeCharacter(
  25724. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25725. {
  25726. front: {
  25727. height: math.unit(5 + 4 / 12, "feet"),
  25728. weight: math.unit(125, "lb"),
  25729. name: "Front",
  25730. image: {
  25731. source: "./media/characters/fisher/front.svg",
  25732. extra: 444 / 390,
  25733. bottom: 2 / 444.8
  25734. }
  25735. },
  25736. },
  25737. [
  25738. {
  25739. name: "Micro",
  25740. height: math.unit(4, "inches")
  25741. },
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(5 + 4 / 12, "feet"),
  25745. default: true
  25746. },
  25747. {
  25748. name: "Macro",
  25749. height: math.unit(100, "feet")
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25755. {
  25756. front: {
  25757. height: math.unit(6.71, "feet"),
  25758. weight: math.unit(200, "lb"),
  25759. capacity: math.unit(1000000, "people"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/gliss/front.svg",
  25763. extra: 2347 / 2231,
  25764. bottom: 113 / 2462
  25765. }
  25766. },
  25767. hammerspaceSize: {
  25768. height: math.unit(6.71 * 717, "feet"),
  25769. weight: math.unit(200, "lb"),
  25770. capacity: math.unit(1000000, "people"),
  25771. name: "Hammerspace Size",
  25772. image: {
  25773. source: "./media/characters/gliss/front.svg",
  25774. extra: 2347 / 2231,
  25775. bottom: 113 / 2462
  25776. }
  25777. },
  25778. },
  25779. [
  25780. {
  25781. name: "Normal",
  25782. height: math.unit(6.71, "feet"),
  25783. default: true
  25784. },
  25785. ]
  25786. ))
  25787. characterMakers.push(() => makeCharacter(
  25788. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25789. {
  25790. side: {
  25791. height: math.unit(1.44, "m"),
  25792. weight: math.unit(80, "kg"),
  25793. name: "Side",
  25794. image: {
  25795. source: "./media/characters/dune-anderson/side.svg",
  25796. bottom: 49 / 1426
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Wolf-sized",
  25803. height: math.unit(1.44, "meters")
  25804. },
  25805. {
  25806. name: "Normal",
  25807. height: math.unit(5.05, "meters"),
  25808. default: true
  25809. },
  25810. {
  25811. name: "Big",
  25812. height: math.unit(14.4, "meters")
  25813. },
  25814. {
  25815. name: "Huge",
  25816. height: math.unit(144, "meters")
  25817. },
  25818. ]
  25819. ))
  25820. characterMakers.push(() => makeCharacter(
  25821. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25822. {
  25823. front: {
  25824. height: math.unit(7, "feet"),
  25825. weight: math.unit(425, "lb"),
  25826. name: "Front",
  25827. image: {
  25828. source: "./media/characters/hind/front.svg",
  25829. extra: 2091 / 1860,
  25830. bottom: 129 / 2220
  25831. }
  25832. },
  25833. back: {
  25834. height: math.unit(7, "feet"),
  25835. weight: math.unit(425, "lb"),
  25836. name: "Back",
  25837. image: {
  25838. source: "./media/characters/hind/back.svg",
  25839. extra: 2091 / 1860,
  25840. bottom: 24.6 / 2309
  25841. }
  25842. },
  25843. tail: {
  25844. height: math.unit(2.8, "feet"),
  25845. name: "Tail",
  25846. image: {
  25847. source: "./media/characters/hind/tail.svg"
  25848. }
  25849. },
  25850. head: {
  25851. height: math.unit(2.55, "feet"),
  25852. name: "Head",
  25853. image: {
  25854. source: "./media/characters/hind/head.svg"
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "XS",
  25861. height: math.unit(0.7, "feet")
  25862. },
  25863. {
  25864. name: "Normal",
  25865. height: math.unit(7, "feet"),
  25866. default: true
  25867. },
  25868. {
  25869. name: "XL",
  25870. height: math.unit(70, "feet")
  25871. },
  25872. ]
  25873. ))
  25874. characterMakers.push(() => makeCharacter(
  25875. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25876. {
  25877. front: {
  25878. height: math.unit(2.1, "meters"),
  25879. weight: math.unit(150, "lb"),
  25880. name: "Front",
  25881. image: {
  25882. source: "./media/characters/tharquench-sizestealer/front.svg",
  25883. extra: 1605/1470,
  25884. bottom: 36/1641
  25885. }
  25886. },
  25887. frontAlt: {
  25888. height: math.unit(2.1, "meters"),
  25889. weight: math.unit(150, "lb"),
  25890. name: "Front (Alt)",
  25891. image: {
  25892. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25893. extra: 2318 / 2063,
  25894. bottom: 93.4 / 2410
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Nano",
  25901. height: math.unit(1, "mm")
  25902. },
  25903. {
  25904. name: "Micro",
  25905. height: math.unit(1, "cm")
  25906. },
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(2.1, "meters"),
  25910. default: true
  25911. },
  25912. ]
  25913. ))
  25914. characterMakers.push(() => makeCharacter(
  25915. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25916. {
  25917. front: {
  25918. height: math.unit(7 + 5 / 12, "feet"),
  25919. weight: math.unit(357, "lb"),
  25920. name: "Front",
  25921. image: {
  25922. source: "./media/characters/solex-draconov/front.svg",
  25923. extra: 1993 / 1865,
  25924. bottom: 117 / 2111
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Natural Height",
  25931. height: math.unit(7 + 5 / 12, "feet"),
  25932. default: true
  25933. },
  25934. {
  25935. name: "Macro",
  25936. height: math.unit(350, "feet")
  25937. },
  25938. {
  25939. name: "Macro+",
  25940. height: math.unit(1000, "feet")
  25941. },
  25942. {
  25943. name: "Megamacro",
  25944. height: math.unit(20, "km")
  25945. },
  25946. {
  25947. name: "Megamacro+",
  25948. height: math.unit(1000, "km")
  25949. },
  25950. {
  25951. name: "Gigamacro",
  25952. height: math.unit(2.5, "Gm")
  25953. },
  25954. {
  25955. name: "Teramacro",
  25956. height: math.unit(15, "Tm")
  25957. },
  25958. {
  25959. name: "Galactic",
  25960. height: math.unit(30, "Zm")
  25961. },
  25962. {
  25963. name: "Universal",
  25964. height: math.unit(21000, "Ym")
  25965. },
  25966. {
  25967. name: "Omniversal",
  25968. height: math.unit(9.861e50, "Ym")
  25969. },
  25970. {
  25971. name: "Existential",
  25972. height: math.unit(1e300, "meters")
  25973. },
  25974. ]
  25975. ))
  25976. characterMakers.push(() => makeCharacter(
  25977. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25978. {
  25979. side: {
  25980. height: math.unit(25, "feet"),
  25981. weight: math.unit(90000, "lb"),
  25982. name: "Side",
  25983. image: {
  25984. source: "./media/characters/mandarax/side.svg",
  25985. extra: 614 / 332,
  25986. bottom: 55 / 630
  25987. }
  25988. },
  25989. lounging: {
  25990. height: math.unit(15.4, "feet"),
  25991. weight: math.unit(90000, "lb"),
  25992. name: "Lounging",
  25993. image: {
  25994. source: "./media/characters/mandarax/lounging.svg",
  25995. extra: 817/609,
  25996. bottom: 685/1502
  25997. }
  25998. },
  25999. head: {
  26000. height: math.unit(11.4, "feet"),
  26001. name: "Head",
  26002. image: {
  26003. source: "./media/characters/mandarax/head.svg"
  26004. }
  26005. },
  26006. belly: {
  26007. height: math.unit(33, "feet"),
  26008. name: "Belly",
  26009. capacity: math.unit(500, "people"),
  26010. image: {
  26011. source: "./media/characters/mandarax/belly.svg"
  26012. }
  26013. },
  26014. dick: {
  26015. height: math.unit(8.46, "feet"),
  26016. name: "Dick",
  26017. image: {
  26018. source: "./media/characters/mandarax/dick.svg"
  26019. }
  26020. },
  26021. top: {
  26022. height: math.unit(28, "meters"),
  26023. name: "Top",
  26024. image: {
  26025. source: "./media/characters/mandarax/top.svg"
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(25, "feet"),
  26033. default: true
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26039. {
  26040. front: {
  26041. height: math.unit(5, "feet"),
  26042. weight: math.unit(90, "lb"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/pixil/front.svg",
  26046. extra: 2000 / 1618,
  26047. bottom: 12.3 / 2011
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(5, "feet"),
  26055. default: true
  26056. },
  26057. {
  26058. name: "Megamacro",
  26059. height: math.unit(10, "miles"),
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(7 + 2 / 12, "feet"),
  26068. weight: math.unit(200, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/angel/front.svg",
  26072. extra: 1830 / 1737,
  26073. bottom: 22.6 / 1854,
  26074. }
  26075. },
  26076. },
  26077. [
  26078. {
  26079. name: "Normal",
  26080. height: math.unit(7 + 2 / 12, "feet"),
  26081. default: true
  26082. },
  26083. {
  26084. name: "Macro",
  26085. height: math.unit(1000, "feet")
  26086. },
  26087. {
  26088. name: "Megamacro",
  26089. height: math.unit(2, "miles")
  26090. },
  26091. {
  26092. name: "Gigamacro",
  26093. height: math.unit(20, "earths")
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(5, "feet"),
  26102. weight: math.unit(180, "lb"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/mekana/front.svg",
  26106. extra: 1671 / 1605,
  26107. bottom: 3.5 / 1691
  26108. }
  26109. },
  26110. side: {
  26111. height: math.unit(5, "feet"),
  26112. weight: math.unit(180, "lb"),
  26113. name: "Side",
  26114. image: {
  26115. source: "./media/characters/mekana/side.svg",
  26116. extra: 1671 / 1605,
  26117. bottom: 3.5 / 1691
  26118. }
  26119. },
  26120. back: {
  26121. height: math.unit(5, "feet"),
  26122. weight: math.unit(180, "lb"),
  26123. name: "Back",
  26124. image: {
  26125. source: "./media/characters/mekana/back.svg",
  26126. extra: 1671 / 1605,
  26127. bottom: 3.5 / 1691
  26128. }
  26129. },
  26130. },
  26131. [
  26132. {
  26133. name: "Normal",
  26134. height: math.unit(5, "feet"),
  26135. default: true
  26136. },
  26137. ]
  26138. ))
  26139. characterMakers.push(() => makeCharacter(
  26140. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26141. {
  26142. front: {
  26143. height: math.unit(4 + 6 / 12, "feet"),
  26144. weight: math.unit(80, "lb"),
  26145. name: "Front",
  26146. image: {
  26147. source: "./media/characters/pixie/front.svg",
  26148. extra: 1924 / 1825,
  26149. bottom: 22.4 / 1946
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Normal",
  26156. height: math.unit(4 + 6 / 12, "feet"),
  26157. default: true
  26158. },
  26159. {
  26160. name: "Macro",
  26161. height: math.unit(40, "feet")
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(2.1, "meters"),
  26170. weight: math.unit(200, "lb"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/the-lascivious/front.svg",
  26174. extra: 1 / 0.893,
  26175. bottom: 3.5 / 573.7
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Human Scale",
  26182. height: math.unit(2.1, "meters")
  26183. },
  26184. {
  26185. name: "Wolxi Scale",
  26186. height: math.unit(46.2, "m"),
  26187. default: true
  26188. },
  26189. {
  26190. name: "Boinker of Buildings",
  26191. height: math.unit(10, "km")
  26192. },
  26193. {
  26194. name: "Shagger of Skyscrapers",
  26195. height: math.unit(40, "km")
  26196. },
  26197. {
  26198. name: "Banger of Boroughs",
  26199. height: math.unit(4000, "km")
  26200. },
  26201. {
  26202. name: "Screwer of States",
  26203. height: math.unit(100000, "km")
  26204. },
  26205. {
  26206. name: "Pounder of Planets",
  26207. height: math.unit(2000000, "km")
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26213. {
  26214. front: {
  26215. height: math.unit(6, "feet"),
  26216. weight: math.unit(150, "lb"),
  26217. name: "Front",
  26218. image: {
  26219. source: "./media/characters/aj/front.svg",
  26220. extra: 2039 / 1562,
  26221. bottom: 40 / 2079
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(11 + 6 / 12, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Megamacro",
  26233. height: math.unit(60, "megameters")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26239. {
  26240. side: {
  26241. height: math.unit(31 + 8 / 12, "feet"),
  26242. weight: math.unit(75000, "kg"),
  26243. name: "Side",
  26244. image: {
  26245. source: "./media/characters/koros/side.svg",
  26246. extra: 1442 / 1297,
  26247. bottom: 122.7 / 1562
  26248. }
  26249. },
  26250. dicksKingsCrown: {
  26251. height: math.unit(6, "feet"),
  26252. name: "Dicks (King's Crown)",
  26253. image: {
  26254. source: "./media/characters/koros/dicks-kings-crown.svg"
  26255. }
  26256. },
  26257. dicksTailSet: {
  26258. height: math.unit(3, "feet"),
  26259. name: "Dicks (Tail Set)",
  26260. image: {
  26261. source: "./media/characters/koros/dicks-tail-set.svg"
  26262. }
  26263. },
  26264. dickCumming: {
  26265. height: math.unit(7.98, "feet"),
  26266. name: "Dick (Cumming)",
  26267. image: {
  26268. source: "./media/characters/koros/dick-cumming.svg"
  26269. }
  26270. },
  26271. dicksBack: {
  26272. height: math.unit(5.9, "feet"),
  26273. name: "Dicks (Back)",
  26274. image: {
  26275. source: "./media/characters/koros/dicks-back.svg"
  26276. }
  26277. },
  26278. dicksFront: {
  26279. height: math.unit(3.72, "feet"),
  26280. name: "Dicks (Front)",
  26281. image: {
  26282. source: "./media/characters/koros/dicks-front.svg"
  26283. }
  26284. },
  26285. dicksPeeking: {
  26286. height: math.unit(3.0, "feet"),
  26287. name: "Dicks (Peeking)",
  26288. image: {
  26289. source: "./media/characters/koros/dicks-peeking.svg"
  26290. }
  26291. },
  26292. eye: {
  26293. height: math.unit(1.7, "feet"),
  26294. name: "Eye",
  26295. image: {
  26296. source: "./media/characters/koros/eye.svg"
  26297. }
  26298. },
  26299. headFront: {
  26300. height: math.unit(11.69, "feet"),
  26301. name: "Head (Front)",
  26302. image: {
  26303. source: "./media/characters/koros/head-front.svg"
  26304. }
  26305. },
  26306. headSide: {
  26307. height: math.unit(14, "feet"),
  26308. name: "Head (Side)",
  26309. image: {
  26310. source: "./media/characters/koros/head-side.svg"
  26311. }
  26312. },
  26313. leg: {
  26314. height: math.unit(17, "feet"),
  26315. name: "Leg",
  26316. image: {
  26317. source: "./media/characters/koros/leg.svg"
  26318. }
  26319. },
  26320. mawSide: {
  26321. height: math.unit(12.8, "feet"),
  26322. name: "Maw (Side)",
  26323. image: {
  26324. source: "./media/characters/koros/maw-side.svg"
  26325. }
  26326. },
  26327. mawSpitting: {
  26328. height: math.unit(17, "feet"),
  26329. name: "Maw (Spitting)",
  26330. image: {
  26331. source: "./media/characters/koros/maw-spitting.svg"
  26332. }
  26333. },
  26334. slit: {
  26335. height: math.unit(2.8, "feet"),
  26336. name: "Slit",
  26337. image: {
  26338. source: "./media/characters/koros/slit.svg"
  26339. }
  26340. },
  26341. stomach: {
  26342. height: math.unit(6.8, "feet"),
  26343. capacity: math.unit(20, "people"),
  26344. name: "Stomach",
  26345. image: {
  26346. source: "./media/characters/koros/stomach.svg"
  26347. }
  26348. },
  26349. wingspanBottom: {
  26350. height: math.unit(114, "feet"),
  26351. name: "Wingspan (Bottom)",
  26352. image: {
  26353. source: "./media/characters/koros/wingspan-bottom.svg"
  26354. }
  26355. },
  26356. wingspanTop: {
  26357. height: math.unit(104, "feet"),
  26358. name: "Wingspan (Top)",
  26359. image: {
  26360. source: "./media/characters/koros/wingspan-top.svg"
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(31 + 8 / 12, "feet"),
  26368. default: true
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26374. {
  26375. front: {
  26376. height: math.unit(18 + 5 / 12, "feet"),
  26377. weight: math.unit(3750, "kg"),
  26378. name: "Front",
  26379. image: {
  26380. source: "./media/characters/vexx/front.svg",
  26381. extra: 426 / 396,
  26382. bottom: 31.5 / 458
  26383. }
  26384. },
  26385. maw: {
  26386. height: math.unit(6, "feet"),
  26387. name: "Maw",
  26388. image: {
  26389. source: "./media/characters/vexx/maw.svg"
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(18 + 5 / 12, "feet"),
  26397. default: true
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(17 + 6 / 12, "feet"),
  26406. weight: math.unit(150, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/baadra/front.svg",
  26410. extra: 1694/1553,
  26411. bottom: 179/1873
  26412. }
  26413. },
  26414. frontAlt: {
  26415. height: math.unit(17 + 6 / 12, "feet"),
  26416. weight: math.unit(150, "lb"),
  26417. name: "Front (Alt)",
  26418. image: {
  26419. source: "./media/characters/baadra/front-alt.svg",
  26420. extra: 3137 / 2890,
  26421. bottom: 168.4 / 3305
  26422. }
  26423. },
  26424. back: {
  26425. height: math.unit(17 + 6 / 12, "feet"),
  26426. weight: math.unit(150, "lb"),
  26427. name: "Back",
  26428. image: {
  26429. source: "./media/characters/baadra/back.svg",
  26430. extra: 3142 / 2890,
  26431. bottom: 220 / 3371
  26432. }
  26433. },
  26434. head: {
  26435. height: math.unit(5.45, "feet"),
  26436. name: "Head",
  26437. image: {
  26438. source: "./media/characters/baadra/head.svg"
  26439. }
  26440. },
  26441. headAngry: {
  26442. height: math.unit(4.95, "feet"),
  26443. name: "Head (Angry)",
  26444. image: {
  26445. source: "./media/characters/baadra/head-angry.svg"
  26446. }
  26447. },
  26448. headOpen: {
  26449. height: math.unit(6, "feet"),
  26450. name: "Head (Open)",
  26451. image: {
  26452. source: "./media/characters/baadra/head-open.svg"
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(17 + 6 / 12, "feet"),
  26460. default: true
  26461. },
  26462. ]
  26463. ))
  26464. characterMakers.push(() => makeCharacter(
  26465. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26466. {
  26467. front: {
  26468. height: math.unit(7 + 3 / 12, "feet"),
  26469. weight: math.unit(180, "lb"),
  26470. name: "Front",
  26471. image: {
  26472. source: "./media/characters/juri/front.svg",
  26473. extra: 1401 / 1237,
  26474. bottom: 18.5 / 1418
  26475. }
  26476. },
  26477. side: {
  26478. height: math.unit(7 + 3 / 12, "feet"),
  26479. weight: math.unit(180, "lb"),
  26480. name: "Side",
  26481. image: {
  26482. source: "./media/characters/juri/side.svg",
  26483. extra: 1424 / 1242,
  26484. bottom: 18.5 / 1447
  26485. }
  26486. },
  26487. sitting: {
  26488. height: math.unit(6, "feet"),
  26489. weight: math.unit(180, "lb"),
  26490. name: "Sitting",
  26491. image: {
  26492. source: "./media/characters/juri/sitting.svg",
  26493. extra: 1270 / 1143,
  26494. bottom: 100 / 1343
  26495. }
  26496. },
  26497. back: {
  26498. height: math.unit(7 + 3 / 12, "feet"),
  26499. weight: math.unit(180, "lb"),
  26500. name: "Back",
  26501. image: {
  26502. source: "./media/characters/juri/back.svg",
  26503. extra: 1377 / 1240,
  26504. bottom: 23.7 / 1405
  26505. }
  26506. },
  26507. maw: {
  26508. height: math.unit(2.8, "feet"),
  26509. name: "Maw",
  26510. image: {
  26511. source: "./media/characters/juri/maw.svg"
  26512. }
  26513. },
  26514. stomach: {
  26515. height: math.unit(0.89, "feet"),
  26516. capacity: math.unit(4, "liters"),
  26517. name: "Stomach",
  26518. image: {
  26519. source: "./media/characters/juri/stomach.svg"
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Normal",
  26526. height: math.unit(7 + 3 / 12, "feet"),
  26527. default: true
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26533. {
  26534. fox: {
  26535. height: math.unit(5 + 6 / 12, "feet"),
  26536. weight: math.unit(140, "lb"),
  26537. name: "Fox",
  26538. image: {
  26539. source: "./media/characters/maxene-sita/fox.svg",
  26540. extra: 146 / 138,
  26541. bottom: 2.1 / 148.19
  26542. }
  26543. },
  26544. foxLaying: {
  26545. height: math.unit(1.70, "feet"),
  26546. weight: math.unit(140, "lb"),
  26547. name: "Fox (Laying)",
  26548. image: {
  26549. source: "./media/characters/maxene-sita/fox-laying.svg",
  26550. extra: 910 / 572,
  26551. bottom: 71 / 981
  26552. }
  26553. },
  26554. kitsune: {
  26555. height: math.unit(10, "feet"),
  26556. weight: math.unit(800, "lb"),
  26557. name: "Kitsune",
  26558. image: {
  26559. source: "./media/characters/maxene-sita/kitsune.svg",
  26560. extra: 185 / 176,
  26561. bottom: 4.7 / 189.9
  26562. }
  26563. },
  26564. hellhound: {
  26565. height: math.unit(10, "feet"),
  26566. weight: math.unit(700, "lb"),
  26567. name: "Hellhound",
  26568. image: {
  26569. source: "./media/characters/maxene-sita/hellhound.svg",
  26570. extra: 1600 / 1545,
  26571. bottom: 81 / 1681
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Normal",
  26578. height: math.unit(5 + 6 / 12, "feet"),
  26579. default: true
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26585. {
  26586. front: {
  26587. height: math.unit(3 + 4 / 12, "feet"),
  26588. weight: math.unit(70, "lb"),
  26589. name: "Front",
  26590. image: {
  26591. source: "./media/characters/maia/front.svg",
  26592. extra: 227 / 219.5,
  26593. bottom: 40 / 267
  26594. }
  26595. },
  26596. back: {
  26597. height: math.unit(3 + 4 / 12, "feet"),
  26598. weight: math.unit(70, "lb"),
  26599. name: "Back",
  26600. image: {
  26601. source: "./media/characters/maia/back.svg",
  26602. extra: 237 / 225
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Normal",
  26609. height: math.unit(3 + 4 / 12, "feet"),
  26610. default: true
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(5 + 10 / 12, "feet"),
  26619. weight: math.unit(197, "lb"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/jabaro/front.svg",
  26623. extra: 225 / 216,
  26624. bottom: 5.06 / 230
  26625. }
  26626. },
  26627. back: {
  26628. height: math.unit(5 + 10 / 12, "feet"),
  26629. weight: math.unit(197, "lb"),
  26630. name: "Back",
  26631. image: {
  26632. source: "./media/characters/jabaro/back.svg",
  26633. extra: 225 / 219,
  26634. bottom: 1.9 / 227
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Normal",
  26641. height: math.unit(5 + 10 / 12, "feet"),
  26642. default: true
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26648. {
  26649. front: {
  26650. height: math.unit(5 + 8 / 12, "feet"),
  26651. weight: math.unit(139, "lb"),
  26652. name: "Front",
  26653. image: {
  26654. source: "./media/characters/risa/front.svg",
  26655. extra: 270 / 260,
  26656. bottom: 11.2 / 282
  26657. }
  26658. },
  26659. back: {
  26660. height: math.unit(5 + 8 / 12, "feet"),
  26661. weight: math.unit(139, "lb"),
  26662. name: "Back",
  26663. image: {
  26664. source: "./media/characters/risa/back.svg",
  26665. extra: 264 / 255,
  26666. bottom: 4 / 268
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(5 + 8 / 12, "feet"),
  26674. default: true
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(2 + 11 / 12, "feet"),
  26683. weight: math.unit(30, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/weatley/front.svg",
  26687. bottom: 10.7 / 414,
  26688. extra: 403.5 / 362
  26689. }
  26690. },
  26691. back: {
  26692. height: math.unit(2 + 11 / 12, "feet"),
  26693. weight: math.unit(30, "lb"),
  26694. name: "Back",
  26695. image: {
  26696. source: "./media/characters/weatley/back.svg",
  26697. bottom: 10.7 / 414,
  26698. extra: 403.5 / 362
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Normal",
  26705. height: math.unit(2 + 11 / 12, "feet"),
  26706. default: true
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26712. {
  26713. front: {
  26714. height: math.unit(5 + 2 / 12, "feet"),
  26715. weight: math.unit(50, "kg"),
  26716. name: "Front",
  26717. image: {
  26718. source: "./media/characters/mercury-crescent/front.svg",
  26719. extra: 1088 / 1033,
  26720. bottom: 18.9 / 1109
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(5 + 2 / 12, "feet"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(2, "feet"),
  26737. weight: math.unit(15, "kg"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/diamond-jones/front.svg",
  26741. extra: 727/723,
  26742. bottom: 46/773
  26743. }
  26744. },
  26745. },
  26746. [
  26747. {
  26748. name: "Normal",
  26749. height: math.unit(2, "feet"),
  26750. default: true
  26751. },
  26752. ]
  26753. ))
  26754. characterMakers.push(() => makeCharacter(
  26755. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26756. {
  26757. front: {
  26758. height: math.unit(3, "feet"),
  26759. weight: math.unit(30, "kg"),
  26760. name: "Front",
  26761. image: {
  26762. source: "./media/characters/sweet-bit/front.svg",
  26763. extra: 675 / 567,
  26764. bottom: 27.7 / 703
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(3, "feet"),
  26772. default: true
  26773. },
  26774. ]
  26775. ))
  26776. characterMakers.push(() => makeCharacter(
  26777. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26778. {
  26779. side: {
  26780. height: math.unit(9.178, "feet"),
  26781. weight: math.unit(500, "lb"),
  26782. name: "Side",
  26783. image: {
  26784. source: "./media/characters/umbrazen/side.svg",
  26785. extra: 1730 / 1473,
  26786. bottom: 34.6 / 1765
  26787. }
  26788. },
  26789. },
  26790. [
  26791. {
  26792. name: "Normal",
  26793. height: math.unit(9.178, "feet"),
  26794. default: true
  26795. },
  26796. ]
  26797. ))
  26798. characterMakers.push(() => makeCharacter(
  26799. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26800. {
  26801. front: {
  26802. height: math.unit(10, "feet"),
  26803. weight: math.unit(750, "lb"),
  26804. name: "Front",
  26805. image: {
  26806. source: "./media/characters/arlist/front.svg",
  26807. extra: 961 / 778,
  26808. bottom: 6.2 / 986
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(10, "feet"),
  26816. default: true
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26822. {
  26823. front: {
  26824. height: math.unit(5 + 1 / 12, "feet"),
  26825. weight: math.unit(110, "lb"),
  26826. name: "Front",
  26827. image: {
  26828. source: "./media/characters/aradel/front.svg",
  26829. extra: 324 / 303,
  26830. bottom: 3.6 / 329.4
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Normal",
  26837. height: math.unit(5 + 1 / 12, "feet"),
  26838. default: true
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26844. {
  26845. dressed: {
  26846. height: math.unit(3 + 8 / 12, "feet"),
  26847. weight: math.unit(50, "lb"),
  26848. name: "Dressed",
  26849. image: {
  26850. source: "./media/characters/serryn/dressed.svg",
  26851. extra: 1792 / 1656,
  26852. bottom: 43.5 / 1840
  26853. }
  26854. },
  26855. nude: {
  26856. height: math.unit(3 + 8 / 12, "feet"),
  26857. weight: math.unit(50, "lb"),
  26858. name: "Nude",
  26859. image: {
  26860. source: "./media/characters/serryn/nude.svg",
  26861. extra: 1792 / 1656,
  26862. bottom: 43.5 / 1840
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(3 + 8 / 12, "feet"),
  26870. default: true
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26876. {
  26877. front: {
  26878. height: math.unit(7 + 10 / 12, "feet"),
  26879. weight: math.unit(255, "lb"),
  26880. name: "Front",
  26881. image: {
  26882. source: "./media/characters/xavier-thyme/front.svg",
  26883. extra: 3733 / 3642,
  26884. bottom: 131 / 3869
  26885. }
  26886. },
  26887. frontRaven: {
  26888. height: math.unit(7 + 10 / 12, "feet"),
  26889. weight: math.unit(255, "lb"),
  26890. name: "Front (Raven)",
  26891. image: {
  26892. source: "./media/characters/xavier-thyme/front-raven.svg",
  26893. extra: 4385 / 3642,
  26894. bottom: 131 / 4517
  26895. }
  26896. },
  26897. },
  26898. [
  26899. {
  26900. name: "Normal",
  26901. height: math.unit(7 + 10 / 12, "feet"),
  26902. default: true
  26903. },
  26904. ]
  26905. ))
  26906. characterMakers.push(() => makeCharacter(
  26907. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26908. {
  26909. front: {
  26910. height: math.unit(1.6, "m"),
  26911. weight: math.unit(50, "kg"),
  26912. name: "Front",
  26913. image: {
  26914. source: "./media/characters/kiki/front.svg",
  26915. extra: 4682 / 3610,
  26916. bottom: 115 / 4777
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(1.6, "meters"),
  26924. default: true
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26930. {
  26931. front: {
  26932. height: math.unit(50, "m"),
  26933. weight: math.unit(500, "tonnes"),
  26934. name: "Front",
  26935. image: {
  26936. source: "./media/characters/ryoko/front.svg",
  26937. extra: 4632 / 3926,
  26938. bottom: 193 / 4823
  26939. }
  26940. },
  26941. },
  26942. [
  26943. {
  26944. name: "Normal",
  26945. height: math.unit(50, "meters"),
  26946. default: true
  26947. },
  26948. ]
  26949. ))
  26950. characterMakers.push(() => makeCharacter(
  26951. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26952. {
  26953. front: {
  26954. height: math.unit(30, "m"),
  26955. weight: math.unit(22, "tonnes"),
  26956. name: "Front",
  26957. image: {
  26958. source: "./media/characters/elio/front.svg",
  26959. extra: 4582 / 3720,
  26960. bottom: 236 / 4828
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Normal",
  26967. height: math.unit(30, "meters"),
  26968. default: true
  26969. },
  26970. ]
  26971. ))
  26972. characterMakers.push(() => makeCharacter(
  26973. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26974. {
  26975. front: {
  26976. height: math.unit(6 + 3 / 12, "feet"),
  26977. weight: math.unit(120, "lb"),
  26978. name: "Front",
  26979. image: {
  26980. source: "./media/characters/azura/front.svg",
  26981. extra: 1149 / 1135,
  26982. bottom: 45 / 1194
  26983. }
  26984. },
  26985. frontClothed: {
  26986. height: math.unit(6 + 3 / 12, "feet"),
  26987. weight: math.unit(120, "lb"),
  26988. name: "Front (Clothed)",
  26989. image: {
  26990. source: "./media/characters/azura/front-clothed.svg",
  26991. extra: 1149 / 1135,
  26992. bottom: 45 / 1194
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(6 + 3 / 12, "feet"),
  27000. default: true
  27001. },
  27002. {
  27003. name: "Macro",
  27004. height: math.unit(20 + 6 / 12, "feet")
  27005. },
  27006. {
  27007. name: "Megamacro",
  27008. height: math.unit(12, "miles")
  27009. },
  27010. {
  27011. name: "Gigamacro",
  27012. height: math.unit(10000, "miles")
  27013. },
  27014. {
  27015. name: "Teramacro",
  27016. height: math.unit(900000, "miles")
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(12, "feet"),
  27025. weight: math.unit(1, "ton"),
  27026. capacity: math.unit(660000, "gallons"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/zeus/front.svg",
  27030. extra: 5005 / 4717,
  27031. bottom: 363 / 5388
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(12, "feet")
  27039. },
  27040. {
  27041. name: "Preferred Size",
  27042. height: math.unit(0.5, "miles"),
  27043. default: true
  27044. },
  27045. {
  27046. name: "Giga Horse",
  27047. height: math.unit(300, "miles")
  27048. },
  27049. {
  27050. name: "Riding Planets",
  27051. height: math.unit(30, "megameters")
  27052. },
  27053. {
  27054. name: "Cosmic Giant",
  27055. height: math.unit(3, "zettameters")
  27056. },
  27057. {
  27058. name: "Breeding God",
  27059. height: math.unit(9.92e22, "yottameters")
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27065. {
  27066. side: {
  27067. height: math.unit(9, "feet"),
  27068. weight: math.unit(1500, "kg"),
  27069. name: "Side",
  27070. image: {
  27071. source: "./media/characters/fang/side.svg",
  27072. extra: 924 / 866,
  27073. bottom: 47.5 / 972.3
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(9, "feet"),
  27081. default: true
  27082. },
  27083. {
  27084. name: "Macro",
  27085. height: math.unit(75 + 6 / 12, "feet")
  27086. },
  27087. {
  27088. name: "Teramacro",
  27089. height: math.unit(50000, "miles")
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27095. {
  27096. front: {
  27097. height: math.unit(10, "feet"),
  27098. weight: math.unit(2, "tons"),
  27099. name: "Front",
  27100. image: {
  27101. source: "./media/characters/rekhit/front.svg",
  27102. extra: 2796 / 2590,
  27103. bottom: 225 / 3022
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Normal",
  27110. height: math.unit(10, "feet"),
  27111. default: true
  27112. },
  27113. {
  27114. name: "Macro",
  27115. height: math.unit(500, "feet")
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27121. {
  27122. front: {
  27123. height: math.unit(7 + 6.451 / 12, "feet"),
  27124. weight: math.unit(310, "lb"),
  27125. name: "Front",
  27126. image: {
  27127. source: "./media/characters/dahlia-verrick/front.svg",
  27128. extra: 1488 / 1365,
  27129. bottom: 6.2 / 1495
  27130. }
  27131. },
  27132. back: {
  27133. height: math.unit(7 + 6.451 / 12, "feet"),
  27134. weight: math.unit(310, "lb"),
  27135. name: "Back",
  27136. image: {
  27137. source: "./media/characters/dahlia-verrick/back.svg",
  27138. extra: 1472 / 1351,
  27139. bottom: 5.28 / 1477
  27140. }
  27141. },
  27142. frontBusiness: {
  27143. height: math.unit(7 + 6.451 / 12, "feet"),
  27144. weight: math.unit(200, "lb"),
  27145. name: "Front (Business)",
  27146. image: {
  27147. source: "./media/characters/dahlia-verrick/front-business.svg",
  27148. extra: 1478 / 1381,
  27149. bottom: 5.5 / 1484
  27150. }
  27151. },
  27152. frontCasual: {
  27153. height: math.unit(7 + 6.451 / 12, "feet"),
  27154. weight: math.unit(200, "lb"),
  27155. name: "Front (Casual)",
  27156. image: {
  27157. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27158. extra: 1478 / 1381,
  27159. bottom: 5.5 / 1484
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Travel-Sized",
  27166. height: math.unit(7.45, "inches")
  27167. },
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(7 + 6.451 / 12, "feet"),
  27171. default: true
  27172. },
  27173. {
  27174. name: "Hitting the Town",
  27175. height: math.unit(37 + 8 / 12, "feet")
  27176. },
  27177. {
  27178. name: "Stomp in the Suburbs",
  27179. height: math.unit(964 + 9.728 / 12, "feet")
  27180. },
  27181. {
  27182. name: "Sit on the City",
  27183. height: math.unit(61747 + 10.592 / 12, "feet")
  27184. },
  27185. {
  27186. name: "Glomp the Globe",
  27187. height: math.unit(252919327 + 4.832 / 12, "feet")
  27188. },
  27189. ]
  27190. ))
  27191. characterMakers.push(() => makeCharacter(
  27192. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27193. {
  27194. front: {
  27195. height: math.unit(6 + 4 / 12, "feet"),
  27196. weight: math.unit(320, "lb"),
  27197. name: "Front",
  27198. image: {
  27199. source: "./media/characters/balina-mahigan/front.svg",
  27200. extra: 447 / 428,
  27201. bottom: 18 / 466
  27202. }
  27203. },
  27204. back: {
  27205. height: math.unit(6 + 4 / 12, "feet"),
  27206. weight: math.unit(320, "lb"),
  27207. name: "Back",
  27208. image: {
  27209. source: "./media/characters/balina-mahigan/back.svg",
  27210. extra: 445 / 428,
  27211. bottom: 4.07 / 448
  27212. }
  27213. },
  27214. arm: {
  27215. height: math.unit(1.88, "feet"),
  27216. name: "Arm",
  27217. image: {
  27218. source: "./media/characters/balina-mahigan/arm.svg"
  27219. }
  27220. },
  27221. backPort: {
  27222. height: math.unit(0.685, "feet"),
  27223. name: "Back Port",
  27224. image: {
  27225. source: "./media/characters/balina-mahigan/back-port.svg"
  27226. }
  27227. },
  27228. hoofpaw: {
  27229. height: math.unit(1.41, "feet"),
  27230. name: "Hoofpaw",
  27231. image: {
  27232. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27233. }
  27234. },
  27235. leftHandBack: {
  27236. height: math.unit(0.938, "feet"),
  27237. name: "Left Hand (Back)",
  27238. image: {
  27239. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27240. }
  27241. },
  27242. leftHandFront: {
  27243. height: math.unit(0.938, "feet"),
  27244. name: "Left Hand (Front)",
  27245. image: {
  27246. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27247. }
  27248. },
  27249. rightHandBack: {
  27250. height: math.unit(0.95, "feet"),
  27251. name: "Right Hand (Back)",
  27252. image: {
  27253. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27254. }
  27255. },
  27256. rightHandFront: {
  27257. height: math.unit(0.95, "feet"),
  27258. name: "Right Hand (Front)",
  27259. image: {
  27260. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(6 + 4 / 12, "feet"),
  27268. default: true
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(6, "feet"),
  27277. weight: math.unit(320, "lb"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/balina-mejeri/front.svg",
  27281. extra: 517 / 488,
  27282. bottom: 44.2 / 561
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(6 + 4 / 12, "feet")
  27290. },
  27291. {
  27292. name: "Business",
  27293. height: math.unit(155, "feet"),
  27294. default: true
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27300. {
  27301. kneeling: {
  27302. height: math.unit(6 + 4 / 12, "feet"),
  27303. weight: math.unit(300 * 20, "lb"),
  27304. name: "Kneeling",
  27305. image: {
  27306. source: "./media/characters/balbarian/kneeling.svg",
  27307. extra: 922 / 862,
  27308. bottom: 42.4 / 965
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(6 + 4 / 12, "feet")
  27316. },
  27317. {
  27318. name: "Treasured",
  27319. height: math.unit(18 + 9 / 12, "feet"),
  27320. default: true
  27321. },
  27322. {
  27323. name: "Macro",
  27324. height: math.unit(900, "feet")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(6 + 4 / 12, "feet"),
  27333. weight: math.unit(325, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/balina-amarini/front.svg",
  27337. extra: 415 / 403,
  27338. bottom: 19 / 433.4
  27339. }
  27340. },
  27341. back: {
  27342. height: math.unit(6 + 4 / 12, "feet"),
  27343. weight: math.unit(325, "lb"),
  27344. name: "Back",
  27345. image: {
  27346. source: "./media/characters/balina-amarini/back.svg",
  27347. extra: 415 / 403,
  27348. bottom: 13.5 / 432
  27349. }
  27350. },
  27351. overdrive: {
  27352. height: math.unit(6 + 4 / 12, "feet"),
  27353. weight: math.unit(400, "lb"),
  27354. name: "Overdrive",
  27355. image: {
  27356. source: "./media/characters/balina-amarini/overdrive.svg",
  27357. extra: 269 / 259,
  27358. bottom: 12 / 282
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Boom",
  27365. height: math.unit(9 + 10 / 12, "feet"),
  27366. default: true
  27367. },
  27368. {
  27369. name: "Macro",
  27370. height: math.unit(280, "feet")
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27376. {
  27377. goddess: {
  27378. height: math.unit(600, "feet"),
  27379. weight: math.unit(2000000, "tons"),
  27380. name: "Goddess",
  27381. image: {
  27382. source: "./media/characters/lady-kubwa/goddess.svg",
  27383. extra: 1240.5 / 1223,
  27384. bottom: 22 / 1263
  27385. }
  27386. },
  27387. goddesser: {
  27388. height: math.unit(900, "feet"),
  27389. weight: math.unit(20000000, "lb"),
  27390. name: "Goddess-er",
  27391. image: {
  27392. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27393. extra: 899 / 888,
  27394. bottom: 12.6 / 912
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Macro",
  27401. height: math.unit(600, "feet"),
  27402. default: true
  27403. },
  27404. {
  27405. name: "Megamacro",
  27406. height: math.unit(250, "miles")
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(7 + 7 / 12, "feet"),
  27415. weight: math.unit(250, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/tala-grovehorn/front.svg",
  27419. extra: 2636 / 2525,
  27420. bottom: 147 / 2781
  27421. }
  27422. },
  27423. back: {
  27424. height: math.unit(7 + 7 / 12, "feet"),
  27425. weight: math.unit(250, "lb"),
  27426. name: "Back",
  27427. image: {
  27428. source: "./media/characters/tala-grovehorn/back.svg",
  27429. extra: 2635 / 2539,
  27430. bottom: 100 / 2732.8
  27431. }
  27432. },
  27433. mouth: {
  27434. height: math.unit(1.15, "feet"),
  27435. name: "Mouth",
  27436. image: {
  27437. source: "./media/characters/tala-grovehorn/mouth.svg"
  27438. }
  27439. },
  27440. dick: {
  27441. height: math.unit(2.36, "feet"),
  27442. name: "Dick",
  27443. image: {
  27444. source: "./media/characters/tala-grovehorn/dick.svg"
  27445. }
  27446. },
  27447. slit: {
  27448. height: math.unit(0.61, "feet"),
  27449. name: "Slit",
  27450. image: {
  27451. source: "./media/characters/tala-grovehorn/slit.svg"
  27452. }
  27453. },
  27454. },
  27455. [
  27456. ]
  27457. ))
  27458. characterMakers.push(() => makeCharacter(
  27459. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27460. {
  27461. front: {
  27462. height: math.unit(7 + 7 / 12, "feet"),
  27463. weight: math.unit(225, "lb"),
  27464. name: "Front",
  27465. image: {
  27466. source: "./media/characters/epona/front.svg",
  27467. extra: 2445 / 2290,
  27468. bottom: 251 / 2696
  27469. }
  27470. },
  27471. back: {
  27472. height: math.unit(7 + 7 / 12, "feet"),
  27473. weight: math.unit(225, "lb"),
  27474. name: "Back",
  27475. image: {
  27476. source: "./media/characters/epona/back.svg",
  27477. extra: 2546 / 2408,
  27478. bottom: 44 / 2589
  27479. }
  27480. },
  27481. genitals: {
  27482. height: math.unit(1.5, "feet"),
  27483. name: "Genitals",
  27484. image: {
  27485. source: "./media/characters/epona/genitals.svg"
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Normal",
  27492. height: math.unit(7 + 7 / 12, "feet"),
  27493. default: true
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(7, "feet"),
  27502. weight: math.unit(518, "lb"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/avia-bloodbourn/front.svg",
  27506. extra: 1466 / 1350,
  27507. bottom: 65 / 1527
  27508. }
  27509. },
  27510. },
  27511. [
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(9.35, "feet"),
  27519. weight: math.unit(600, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/amera/front.svg",
  27523. extra: 891 / 818,
  27524. bottom: 30 / 922.7
  27525. }
  27526. },
  27527. back: {
  27528. height: math.unit(9.35, "feet"),
  27529. weight: math.unit(600, "lb"),
  27530. name: "Back",
  27531. image: {
  27532. source: "./media/characters/amera/back.svg",
  27533. extra: 876 / 824,
  27534. bottom: 6.8 / 884
  27535. }
  27536. },
  27537. dick: {
  27538. height: math.unit(2.14, "feet"),
  27539. name: "Dick",
  27540. image: {
  27541. source: "./media/characters/amera/dick.svg"
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(9.35, "feet"),
  27549. default: true
  27550. },
  27551. ]
  27552. ))
  27553. characterMakers.push(() => makeCharacter(
  27554. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27555. {
  27556. kneeling: {
  27557. height: math.unit(3 + 4 / 12, "feet"),
  27558. weight: math.unit(90, "lb"),
  27559. name: "Kneeling",
  27560. image: {
  27561. source: "./media/characters/rosewen/kneeling.svg",
  27562. extra: 1835 / 1571,
  27563. bottom: 27.7 / 1862
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Normal",
  27570. height: math.unit(3 + 4 / 12, "feet"),
  27571. default: true
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27577. {
  27578. front: {
  27579. height: math.unit(5 + 10 / 12, "feet"),
  27580. weight: math.unit(200, "lb"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/sabah/front.svg",
  27584. extra: 849 / 763,
  27585. bottom: 33.9 / 881
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(5 + 10 / 12, "feet"),
  27593. default: true
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27599. {
  27600. front: {
  27601. height: math.unit(3 + 5 / 12, "feet"),
  27602. weight: math.unit(40, "kg"),
  27603. name: "Front",
  27604. image: {
  27605. source: "./media/characters/purple-flame/front.svg",
  27606. extra: 1577 / 1412,
  27607. bottom: 97 / 1694
  27608. }
  27609. },
  27610. frontDressed: {
  27611. height: math.unit(3 + 5 / 12, "feet"),
  27612. weight: math.unit(40, "kg"),
  27613. name: "Front (Dressed)",
  27614. image: {
  27615. source: "./media/characters/purple-flame/front-dressed.svg",
  27616. extra: 1577 / 1412,
  27617. bottom: 97 / 1694
  27618. }
  27619. },
  27620. headphones: {
  27621. height: math.unit(0.85, "feet"),
  27622. name: "Headphones",
  27623. image: {
  27624. source: "./media/characters/purple-flame/headphones.svg"
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Really Small",
  27631. height: math.unit(5, "cm")
  27632. },
  27633. {
  27634. name: "Micro",
  27635. height: math.unit(1 + 5 / 12, "feet")
  27636. },
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(3 + 5 / 12, "feet"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Minimacro",
  27644. height: math.unit(125, "feet")
  27645. },
  27646. {
  27647. name: "Macro",
  27648. height: math.unit(0.5, "miles")
  27649. },
  27650. {
  27651. name: "Megamacro",
  27652. height: math.unit(50, "miles")
  27653. },
  27654. {
  27655. name: "Gigantic",
  27656. height: math.unit(750, "miles")
  27657. },
  27658. {
  27659. name: "Planetary",
  27660. height: math.unit(15000, "miles")
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(14, "feet"),
  27669. weight: math.unit(959, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/arsenal/front.svg",
  27673. extra: 2357 / 2157,
  27674. bottom: 93 / 2458
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(14, "feet"),
  27682. default: true
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27688. {
  27689. front: {
  27690. height: math.unit(6, "feet"),
  27691. weight: math.unit(150, "lb"),
  27692. name: "Front",
  27693. image: {
  27694. source: "./media/characters/adira/front.svg",
  27695. extra: 1078 / 1029,
  27696. bottom: 87 / 1166
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Micro",
  27703. height: math.unit(4, "inches"),
  27704. default: true
  27705. },
  27706. {
  27707. name: "Macro",
  27708. height: math.unit(50, "feet")
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(16, "feet"),
  27717. weight: math.unit(1000, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/grim/front.svg",
  27721. extra: 622 / 614,
  27722. bottom: 18.1 / 642
  27723. }
  27724. },
  27725. back: {
  27726. height: math.unit(16, "feet"),
  27727. weight: math.unit(1000, "lb"),
  27728. name: "Back",
  27729. image: {
  27730. source: "./media/characters/grim/back.svg",
  27731. extra: 610.6 / 602,
  27732. bottom: 40.8 / 652
  27733. }
  27734. },
  27735. hunched: {
  27736. height: math.unit(9.75, "feet"),
  27737. weight: math.unit(1000, "lb"),
  27738. name: "Hunched",
  27739. image: {
  27740. source: "./media/characters/grim/hunched.svg",
  27741. extra: 304 / 297,
  27742. bottom: 35.4 / 394
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(16, "feet"),
  27750. default: true
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(2.3, "meters"),
  27759. weight: math.unit(300, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/sinja/front-sfw.svg",
  27763. extra: 1393 / 1294,
  27764. bottom: 70 / 1463
  27765. }
  27766. },
  27767. frontNsfw: {
  27768. height: math.unit(2.3, "meters"),
  27769. weight: math.unit(300, "lb"),
  27770. name: "Front (NSFW)",
  27771. image: {
  27772. source: "./media/characters/sinja/front-nsfw.svg",
  27773. extra: 1393 / 1294,
  27774. bottom: 70 / 1463
  27775. }
  27776. },
  27777. back: {
  27778. height: math.unit(2.3, "meters"),
  27779. weight: math.unit(300, "lb"),
  27780. name: "Back",
  27781. image: {
  27782. source: "./media/characters/sinja/back.svg",
  27783. extra: 1393 / 1294,
  27784. bottom: 70 / 1463
  27785. }
  27786. },
  27787. head: {
  27788. height: math.unit(1.771, "feet"),
  27789. name: "Head",
  27790. image: {
  27791. source: "./media/characters/sinja/head.svg"
  27792. }
  27793. },
  27794. slit: {
  27795. height: math.unit(0.8, "feet"),
  27796. name: "Slit",
  27797. image: {
  27798. source: "./media/characters/sinja/slit.svg"
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(2.3, "meters")
  27806. },
  27807. {
  27808. name: "Macro",
  27809. height: math.unit(91, "meters"),
  27810. default: true
  27811. },
  27812. {
  27813. name: "Megamacro",
  27814. height: math.unit(91440, "meters")
  27815. },
  27816. {
  27817. name: "Gigamacro",
  27818. height: math.unit(60960000, "meters")
  27819. },
  27820. {
  27821. name: "Teramacro",
  27822. height: math.unit(9144000000, "meters")
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(1.7, "meters"),
  27831. weight: math.unit(130, "lb"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/kyu/front.svg",
  27835. extra: 415 / 395,
  27836. bottom: 5 / 420
  27837. }
  27838. },
  27839. head: {
  27840. height: math.unit(1.75, "feet"),
  27841. name: "Head",
  27842. image: {
  27843. source: "./media/characters/kyu/head.svg"
  27844. }
  27845. },
  27846. foot: {
  27847. height: math.unit(0.81, "feet"),
  27848. name: "Foot",
  27849. image: {
  27850. source: "./media/characters/kyu/foot.svg"
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(1.7, "meters")
  27858. },
  27859. {
  27860. name: "Macro",
  27861. height: math.unit(131, "feet"),
  27862. default: true
  27863. },
  27864. {
  27865. name: "Megamacro",
  27866. height: math.unit(91440, "meters")
  27867. },
  27868. {
  27869. name: "Gigamacro",
  27870. height: math.unit(60960000, "meters")
  27871. },
  27872. {
  27873. name: "Teramacro",
  27874. height: math.unit(9144000000, "meters")
  27875. },
  27876. ]
  27877. ))
  27878. characterMakers.push(() => makeCharacter(
  27879. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27880. {
  27881. front: {
  27882. height: math.unit(7 + 1 / 12, "feet"),
  27883. weight: math.unit(250, "lb"),
  27884. name: "Front",
  27885. image: {
  27886. source: "./media/characters/joey/front.svg",
  27887. extra: 1791 / 1537,
  27888. bottom: 28 / 1816
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Micro",
  27895. height: math.unit(3, "inches")
  27896. },
  27897. {
  27898. name: "Normal",
  27899. height: math.unit(7 + 1 / 12, "feet"),
  27900. default: true
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(165, "cm"),
  27909. weight: math.unit(140, "lb"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/sam-evans/front.svg",
  27913. extra: 3417 / 3230,
  27914. bottom: 41.3 / 3417
  27915. }
  27916. },
  27917. frontSixTails: {
  27918. height: math.unit(165, "cm"),
  27919. weight: math.unit(140, "lb"),
  27920. name: "Front-six-tails",
  27921. image: {
  27922. source: "./media/characters/sam-evans/front-six-tails.svg",
  27923. extra: 3417 / 3230,
  27924. bottom: 41.3 / 3417
  27925. }
  27926. },
  27927. back: {
  27928. height: math.unit(165, "cm"),
  27929. weight: math.unit(140, "lb"),
  27930. name: "Back",
  27931. image: {
  27932. source: "./media/characters/sam-evans/back.svg",
  27933. extra: 3227 / 3032,
  27934. bottom: 6.8 / 3234
  27935. }
  27936. },
  27937. face: {
  27938. height: math.unit(0.68, "feet"),
  27939. name: "Face",
  27940. image: {
  27941. source: "./media/characters/sam-evans/face.svg"
  27942. }
  27943. },
  27944. },
  27945. [
  27946. {
  27947. name: "Normal",
  27948. height: math.unit(165, "cm"),
  27949. default: true
  27950. },
  27951. {
  27952. name: "Macro",
  27953. height: math.unit(100, "meters")
  27954. },
  27955. {
  27956. name: "Macro+",
  27957. height: math.unit(800, "meters")
  27958. },
  27959. {
  27960. name: "Macro++",
  27961. height: math.unit(3, "km")
  27962. },
  27963. {
  27964. name: "Macro+++",
  27965. height: math.unit(30, "km")
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27971. {
  27972. front: {
  27973. height: math.unit(10, "feet"),
  27974. weight: math.unit(750, "lb"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/juliet-a/front.svg",
  27978. extra: 1766 / 1720,
  27979. bottom: 43 / 1809
  27980. }
  27981. },
  27982. back: {
  27983. height: math.unit(10, "feet"),
  27984. weight: math.unit(750, "lb"),
  27985. name: "Back",
  27986. image: {
  27987. source: "./media/characters/juliet-a/back.svg",
  27988. extra: 1781 / 1734,
  27989. bottom: 35 / 1810,
  27990. }
  27991. },
  27992. },
  27993. [
  27994. {
  27995. name: "Normal",
  27996. height: math.unit(10, "feet"),
  27997. default: true
  27998. },
  27999. {
  28000. name: "Dragon Form",
  28001. height: math.unit(250, "feet")
  28002. },
  28003. {
  28004. name: "Macro",
  28005. height: math.unit(1000, "feet")
  28006. },
  28007. {
  28008. name: "Megamacro",
  28009. height: math.unit(10000, "feet")
  28010. }
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28015. {
  28016. regular: {
  28017. height: math.unit(7 + 3 / 12, "feet"),
  28018. weight: math.unit(260, "lb"),
  28019. name: "Regular",
  28020. image: {
  28021. source: "./media/characters/wild/regular.svg",
  28022. extra: 97.45 / 92,
  28023. bottom: 6.8 / 104.3
  28024. }
  28025. },
  28026. biggums: {
  28027. height: math.unit(8 + 6 / 12, "feet"),
  28028. weight: math.unit(425, "lb"),
  28029. name: "Biggums",
  28030. image: {
  28031. source: "./media/characters/wild/biggums.svg",
  28032. extra: 97.45 / 92,
  28033. bottom: 7.5 / 132.34
  28034. }
  28035. },
  28036. mawRegular: {
  28037. height: math.unit(1.24, "feet"),
  28038. name: "Maw (Regular)",
  28039. image: {
  28040. source: "./media/characters/wild/maw.svg"
  28041. }
  28042. },
  28043. mawBiggums: {
  28044. height: math.unit(1.47, "feet"),
  28045. name: "Maw (Biggums)",
  28046. image: {
  28047. source: "./media/characters/wild/maw.svg"
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(7 + 3 / 12, "feet"),
  28055. default: true
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28061. {
  28062. front: {
  28063. height: math.unit(2.5, "meters"),
  28064. weight: math.unit(200, "kg"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/vidar/front.svg",
  28068. extra: 2994 / 2795,
  28069. bottom: 56 / 3061
  28070. }
  28071. },
  28072. back: {
  28073. height: math.unit(2.5, "meters"),
  28074. weight: math.unit(200, "kg"),
  28075. name: "Back",
  28076. image: {
  28077. source: "./media/characters/vidar/back.svg",
  28078. extra: 3131 / 2928,
  28079. bottom: 13.5 / 3141.5
  28080. }
  28081. },
  28082. feral: {
  28083. height: math.unit(2.5, "meters"),
  28084. weight: math.unit(2000, "kg"),
  28085. name: "Feral",
  28086. image: {
  28087. source: "./media/characters/vidar/feral.svg",
  28088. extra: 2790 / 1765,
  28089. bottom: 6 / 2796
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(2.5, "meters"),
  28097. default: true
  28098. },
  28099. {
  28100. name: "Macro",
  28101. height: math.unit(100, "meters")
  28102. },
  28103. ]
  28104. ))
  28105. characterMakers.push(() => makeCharacter(
  28106. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28107. {
  28108. front: {
  28109. height: math.unit(5 + 9 / 12, "feet"),
  28110. weight: math.unit(120, "lb"),
  28111. name: "Front",
  28112. image: {
  28113. source: "./media/characters/ash/front.svg",
  28114. extra: 2189 / 1961,
  28115. bottom: 5.2 / 2194
  28116. }
  28117. },
  28118. },
  28119. [
  28120. {
  28121. name: "Normal",
  28122. height: math.unit(5 + 9 / 12, "feet"),
  28123. default: true
  28124. },
  28125. ]
  28126. ))
  28127. characterMakers.push(() => makeCharacter(
  28128. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28129. {
  28130. front: {
  28131. height: math.unit(9, "feet"),
  28132. weight: math.unit(10000, "lb"),
  28133. name: "Front",
  28134. image: {
  28135. source: "./media/characters/gygabite/front.svg",
  28136. bottom: 31.7 / 537.8,
  28137. extra: 505 / 370
  28138. }
  28139. },
  28140. },
  28141. [
  28142. {
  28143. name: "Normal",
  28144. height: math.unit(9, "feet"),
  28145. default: true
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(12, "feet"),
  28154. weight: math.unit(35000, "lb"),
  28155. name: "Front",
  28156. image: {
  28157. source: "./media/characters/p0tat0/front.svg",
  28158. extra: 1065 / 921,
  28159. bottom: 55.7 / 1121.25
  28160. }
  28161. },
  28162. },
  28163. [
  28164. {
  28165. name: "Normal",
  28166. height: math.unit(12, "feet"),
  28167. default: true
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28173. {
  28174. side: {
  28175. height: math.unit(6.5, "feet"),
  28176. weight: math.unit(800, "lb"),
  28177. name: "Side",
  28178. image: {
  28179. source: "./media/characters/dusk/side.svg",
  28180. extra: 615 / 373,
  28181. bottom: 53 / 664
  28182. }
  28183. },
  28184. sitting: {
  28185. height: math.unit(7, "feet"),
  28186. weight: math.unit(800, "lb"),
  28187. name: "Sitting",
  28188. image: {
  28189. source: "./media/characters/dusk/sitting.svg",
  28190. extra: 753 / 425,
  28191. bottom: 33 / 774
  28192. }
  28193. },
  28194. head: {
  28195. height: math.unit(6.1, "feet"),
  28196. name: "Head",
  28197. image: {
  28198. source: "./media/characters/dusk/head.svg"
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(7, "feet"),
  28206. default: true
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(15, "feet"),
  28215. weight: math.unit(7000, "lb"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/jay-direwolf/front.svg",
  28219. extra: 1810 / 1732,
  28220. bottom: 66 / 1892
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(15, "feet"),
  28228. default: true
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28234. {
  28235. front: {
  28236. height: math.unit(4 + 9 / 12, "feet"),
  28237. weight: math.unit(130, "lb"),
  28238. name: "Front",
  28239. image: {
  28240. source: "./media/characters/anchovie/front.svg",
  28241. extra: 382 / 350,
  28242. bottom: 25 / 409
  28243. }
  28244. },
  28245. back: {
  28246. height: math.unit(4 + 9 / 12, "feet"),
  28247. weight: math.unit(130, "lb"),
  28248. name: "Back",
  28249. image: {
  28250. source: "./media/characters/anchovie/back.svg",
  28251. extra: 385 / 352,
  28252. bottom: 16.6 / 402
  28253. }
  28254. },
  28255. frontDressed: {
  28256. height: math.unit(4 + 9 / 12, "feet"),
  28257. weight: math.unit(130, "lb"),
  28258. name: "Front (Dressed)",
  28259. image: {
  28260. source: "./media/characters/anchovie/front-dressed.svg",
  28261. extra: 382 / 350,
  28262. bottom: 25 / 409
  28263. }
  28264. },
  28265. backDressed: {
  28266. height: math.unit(4 + 9 / 12, "feet"),
  28267. weight: math.unit(130, "lb"),
  28268. name: "Back (Dressed)",
  28269. image: {
  28270. source: "./media/characters/anchovie/back-dressed.svg",
  28271. extra: 385 / 352,
  28272. bottom: 16.6 / 402
  28273. }
  28274. },
  28275. },
  28276. [
  28277. {
  28278. name: "Micro",
  28279. height: math.unit(6.4, "inches")
  28280. },
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(4 + 9 / 12, "feet"),
  28284. default: true
  28285. },
  28286. ]
  28287. ))
  28288. characterMakers.push(() => makeCharacter(
  28289. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28290. {
  28291. front: {
  28292. height: math.unit(2, "meters"),
  28293. weight: math.unit(180, "lb"),
  28294. name: "Front",
  28295. image: {
  28296. source: "./media/characters/acidrenamon/front.svg",
  28297. extra: 987 / 890,
  28298. bottom: 22.8 / 1009
  28299. }
  28300. },
  28301. back: {
  28302. height: math.unit(2, "meters"),
  28303. weight: math.unit(180, "lb"),
  28304. name: "Back",
  28305. image: {
  28306. source: "./media/characters/acidrenamon/back.svg",
  28307. extra: 983 / 891,
  28308. bottom: 8.4 / 992
  28309. }
  28310. },
  28311. head: {
  28312. height: math.unit(1.92, "feet"),
  28313. name: "Head",
  28314. image: {
  28315. source: "./media/characters/acidrenamon/head.svg"
  28316. }
  28317. },
  28318. rump: {
  28319. height: math.unit(1.72, "feet"),
  28320. name: "Rump",
  28321. image: {
  28322. source: "./media/characters/acidrenamon/rump.svg"
  28323. }
  28324. },
  28325. tail: {
  28326. height: math.unit(4.2, "feet"),
  28327. name: "Tail",
  28328. image: {
  28329. source: "./media/characters/acidrenamon/tail.svg"
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(2, "meters"),
  28337. default: true
  28338. },
  28339. {
  28340. name: "Minimacro",
  28341. height: math.unit(7, "meters")
  28342. },
  28343. {
  28344. name: "Macro",
  28345. height: math.unit(200, "meters")
  28346. },
  28347. {
  28348. name: "Gigamacro",
  28349. height: math.unit(0.2, "earths")
  28350. },
  28351. ]
  28352. ))
  28353. characterMakers.push(() => makeCharacter(
  28354. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28355. {
  28356. front: {
  28357. height: math.unit(152, "feet"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/kenzie-lee/front.svg",
  28361. extra: 1869/1774,
  28362. bottom: 128/1997
  28363. }
  28364. },
  28365. side: {
  28366. height: math.unit(86, "feet"),
  28367. name: "Side",
  28368. image: {
  28369. source: "./media/characters/kenzie-lee/side.svg",
  28370. extra: 930/815,
  28371. bottom: 177/1107
  28372. }
  28373. },
  28374. paw: {
  28375. height: math.unit(15, "feet"),
  28376. name: "Paw",
  28377. image: {
  28378. source: "./media/characters/kenzie-lee/paw.svg"
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Micro",
  28385. height: math.unit(1.5, "inches")
  28386. },
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(152, "feet"),
  28390. default: true
  28391. },
  28392. {
  28393. name: "Megamacro",
  28394. height: math.unit(7, "miles")
  28395. },
  28396. {
  28397. name: "Gigamacro",
  28398. height: math.unit(8000, "miles")
  28399. },
  28400. ]
  28401. ))
  28402. characterMakers.push(() => makeCharacter(
  28403. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28404. {
  28405. side: {
  28406. height: math.unit(6, "feet"),
  28407. weight: math.unit(150, "lb"),
  28408. name: "Side",
  28409. image: {
  28410. source: "./media/characters/withers/side.svg",
  28411. extra: 1830 / 1728,
  28412. bottom: 96 / 1927
  28413. }
  28414. },
  28415. front: {
  28416. height: math.unit(6, "feet"),
  28417. weight: math.unit(150, "lb"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/withers/front.svg",
  28421. extra: 1514 / 1438,
  28422. bottom: 118 / 1632
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Macro",
  28429. height: math.unit(168, "feet"),
  28430. default: true
  28431. },
  28432. {
  28433. name: "Megamacro",
  28434. height: math.unit(15, "miles")
  28435. }
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28440. {
  28441. front: {
  28442. height: math.unit(6 + 7 / 12, "feet"),
  28443. weight: math.unit(250, "lb"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/nemoskii/front.svg",
  28447. extra: 2270 / 1734,
  28448. bottom: 86 / 2354
  28449. }
  28450. },
  28451. back: {
  28452. height: math.unit(6 + 7 / 12, "feet"),
  28453. weight: math.unit(250, "lb"),
  28454. name: "Back",
  28455. image: {
  28456. source: "./media/characters/nemoskii/back.svg",
  28457. extra: 1845 / 1788,
  28458. bottom: 10.5 / 1852
  28459. }
  28460. },
  28461. head: {
  28462. height: math.unit(1.31, "feet"),
  28463. name: "Head",
  28464. image: {
  28465. source: "./media/characters/nemoskii/head.svg"
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Micro",
  28472. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28473. },
  28474. {
  28475. name: "Normal",
  28476. height: math.unit(6 + 7 / 12, "feet"),
  28477. default: true
  28478. },
  28479. {
  28480. name: "Macro",
  28481. height: math.unit((6 + 7 / 12) * 150, "feet")
  28482. },
  28483. {
  28484. name: "Macro+",
  28485. height: math.unit((6 + 7 / 12) * 500, "feet")
  28486. },
  28487. {
  28488. name: "Megamacro",
  28489. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28490. },
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28495. {
  28496. front: {
  28497. height: math.unit(1, "mile"),
  28498. weight: math.unit(265261.9, "lb"),
  28499. name: "Front",
  28500. image: {
  28501. source: "./media/characters/shui/front.svg",
  28502. extra: 1633 / 1564,
  28503. bottom: 91.5 / 1726
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Macro",
  28510. height: math.unit(1, "mile"),
  28511. default: true
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28517. {
  28518. front: {
  28519. height: math.unit(12 + 6 / 12, "feet"),
  28520. weight: math.unit(1342, "lb"),
  28521. name: "Front",
  28522. image: {
  28523. source: "./media/characters/arokh-takakura/front.svg",
  28524. extra: 1089 / 1043,
  28525. bottom: 77.4 / 1176.7
  28526. }
  28527. },
  28528. back: {
  28529. height: math.unit(12 + 6 / 12, "feet"),
  28530. weight: math.unit(1342, "lb"),
  28531. name: "Back",
  28532. image: {
  28533. source: "./media/characters/arokh-takakura/back.svg",
  28534. extra: 1046 / 1019,
  28535. bottom: 102 / 1150
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Big",
  28542. height: math.unit(12 + 6 / 12, "feet"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(5 + 6 / 12, "feet"),
  28552. weight: math.unit(150, "lb"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/theo/front.svg",
  28556. extra: 1184 / 1131,
  28557. bottom: 7.4 / 1191
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Micro",
  28564. height: math.unit(5, "inches")
  28565. },
  28566. {
  28567. name: "Normal",
  28568. height: math.unit(5 + 6 / 12, "feet"),
  28569. default: true
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28575. {
  28576. front: {
  28577. height: math.unit(5 + 9 / 12, "feet"),
  28578. weight: math.unit(130, "lb"),
  28579. name: "Front",
  28580. image: {
  28581. source: "./media/characters/cecelia-swift/front.svg",
  28582. extra: 502 / 484,
  28583. bottom: 23 / 523
  28584. }
  28585. },
  28586. back: {
  28587. height: math.unit(5 + 9 / 12, "feet"),
  28588. weight: math.unit(130, "lb"),
  28589. name: "Back",
  28590. image: {
  28591. source: "./media/characters/cecelia-swift/back.svg",
  28592. extra: 499 / 485,
  28593. bottom: 12 / 511
  28594. }
  28595. },
  28596. head: {
  28597. height: math.unit(0.90, "feet"),
  28598. name: "Head",
  28599. image: {
  28600. source: "./media/characters/cecelia-swift/head.svg"
  28601. }
  28602. },
  28603. rump: {
  28604. height: math.unit(1.75, "feet"),
  28605. name: "Rump",
  28606. image: {
  28607. source: "./media/characters/cecelia-swift/rump.svg"
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(5 + 9 / 12, "feet"),
  28615. default: true
  28616. },
  28617. {
  28618. name: "Big",
  28619. height: math.unit(50, "feet")
  28620. },
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(100, "feet")
  28624. },
  28625. {
  28626. name: "Macro+",
  28627. height: math.unit(500, "feet")
  28628. },
  28629. {
  28630. name: "Macro++",
  28631. height: math.unit(1000, "feet")
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(6, "feet"),
  28640. weight: math.unit(150, "lb"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/kaunan/front.svg",
  28644. extra: 2890 / 2523,
  28645. bottom: 49 / 2939
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Macro",
  28652. height: math.unit(150, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(175, "cm"),
  28662. weight: math.unit(60, "kg"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/fei/front.svg",
  28666. extra: 1873/1723,
  28667. bottom: 53/1926
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Mortal",
  28674. height: math.unit(175, "cm")
  28675. },
  28676. {
  28677. name: "Normal",
  28678. height: math.unit(3500, "m"),
  28679. default: true
  28680. },
  28681. {
  28682. name: "Stroll",
  28683. height: math.unit(17.5, "km")
  28684. },
  28685. {
  28686. name: "Showoff",
  28687. height: math.unit(175, "km")
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28693. {
  28694. front: {
  28695. height: math.unit(7, "feet"),
  28696. weight: math.unit(1000, "kg"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/edrax/front.svg",
  28700. extra: 2838 / 2550,
  28701. bottom: 130 / 2968
  28702. }
  28703. },
  28704. },
  28705. [
  28706. {
  28707. name: "Small",
  28708. height: math.unit(7, "feet")
  28709. },
  28710. {
  28711. name: "Normal",
  28712. height: math.unit(1500, "meters")
  28713. },
  28714. {
  28715. name: "Mega",
  28716. height: math.unit(12000000, "km"),
  28717. default: true
  28718. },
  28719. {
  28720. name: "Megamacro",
  28721. height: math.unit(10600000, "lightyears")
  28722. },
  28723. {
  28724. name: "Hypermacro",
  28725. height: math.unit(256, "yottameters")
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(10, "feet"),
  28734. weight: math.unit(750, "lb"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/clove/front.svg",
  28738. extra: 1918/1751,
  28739. bottom: 52/1970
  28740. }
  28741. },
  28742. back: {
  28743. height: math.unit(10, "feet"),
  28744. weight: math.unit(750, "lb"),
  28745. name: "Back",
  28746. image: {
  28747. source: "./media/characters/clove/back.svg",
  28748. extra: 1912/1747,
  28749. bottom: 50/1962
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(10, "feet"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(4, "feet"),
  28766. weight: math.unit(50, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/alex-rabbit/front.svg",
  28770. extra: 507 / 458,
  28771. bottom: 18.5 / 527
  28772. }
  28773. },
  28774. back: {
  28775. height: math.unit(4, "feet"),
  28776. weight: math.unit(50, "lb"),
  28777. name: "Back",
  28778. image: {
  28779. source: "./media/characters/alex-rabbit/back.svg",
  28780. extra: 502 / 460,
  28781. bottom: 18.9 / 521
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Normal",
  28788. height: math.unit(4, "feet"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(1 + 3 / 12, "feet"),
  28798. weight: math.unit(80, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/zander-rose/front.svg",
  28802. extra: 916 / 797,
  28803. bottom: 17 / 933
  28804. }
  28805. },
  28806. back: {
  28807. height: math.unit(1 + 3 / 12, "feet"),
  28808. weight: math.unit(80, "lb"),
  28809. name: "Back",
  28810. image: {
  28811. source: "./media/characters/zander-rose/back.svg",
  28812. extra: 903 / 779,
  28813. bottom: 31 / 934
  28814. }
  28815. },
  28816. },
  28817. [
  28818. {
  28819. name: "Normal",
  28820. height: math.unit(1 + 3 / 12, "feet"),
  28821. default: true
  28822. },
  28823. ]
  28824. ))
  28825. characterMakers.push(() => makeCharacter(
  28826. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28827. {
  28828. anthro: {
  28829. height: math.unit(6, "feet"),
  28830. weight: math.unit(150, "lb"),
  28831. name: "Anthro",
  28832. image: {
  28833. source: "./media/characters/razz/anthro.svg",
  28834. extra: 1437 / 1343,
  28835. bottom: 48 / 1485
  28836. }
  28837. },
  28838. feral: {
  28839. height: math.unit(6, "feet"),
  28840. weight: math.unit(150, "lb"),
  28841. name: "Feral",
  28842. image: {
  28843. source: "./media/characters/razz/feral.svg",
  28844. extra: 2569 / 1385,
  28845. bottom: 95 / 2664
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(6, "feet"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(9 + 4 / 12, "feet"),
  28862. weight: math.unit(500, "lb"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/morrigan/front.svg",
  28866. extra: 2707 / 2579,
  28867. bottom: 156 / 2863
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(9 + 4 / 12, "feet"),
  28875. default: true
  28876. },
  28877. ]
  28878. ))
  28879. characterMakers.push(() => makeCharacter(
  28880. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28881. {
  28882. front: {
  28883. height: math.unit(5, "stories"),
  28884. weight: math.unit(4000, "lb"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/jenene/front.svg",
  28888. extra: 1780 / 1710,
  28889. bottom: 57 / 1837
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(5, "stories"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28903. {
  28904. taurSfw: {
  28905. height: math.unit(10, "meters"),
  28906. weight: math.unit(17500, "kg"),
  28907. name: "Taur",
  28908. image: {
  28909. source: "./media/characters/faey/taur-sfw.svg",
  28910. extra: 1200 / 968,
  28911. bottom: 41 / 1241
  28912. }
  28913. },
  28914. chestmaw: {
  28915. height: math.unit(2.01, "meters"),
  28916. name: "Chestmaw",
  28917. image: {
  28918. source: "./media/characters/faey/chestmaw.svg"
  28919. }
  28920. },
  28921. foot: {
  28922. height: math.unit(2.43, "meters"),
  28923. name: "Foot",
  28924. image: {
  28925. source: "./media/characters/faey/foot.svg"
  28926. }
  28927. },
  28928. jaws: {
  28929. height: math.unit(1.66, "meters"),
  28930. name: "Jaws",
  28931. image: {
  28932. source: "./media/characters/faey/jaws.svg"
  28933. }
  28934. },
  28935. tongues: {
  28936. height: math.unit(2.01, "meters"),
  28937. name: "Tongues",
  28938. image: {
  28939. source: "./media/characters/faey/tongues.svg"
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Small",
  28946. height: math.unit(10, "meters"),
  28947. default: true
  28948. },
  28949. {
  28950. name: "Big",
  28951. height: math.unit(500000, "km")
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(7, "feet"),
  28960. weight: math.unit(275, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/roku/front.svg",
  28964. extra: 903 / 878,
  28965. bottom: 37 / 940
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(7, "feet"),
  28973. default: true
  28974. },
  28975. {
  28976. name: "Macro",
  28977. height: math.unit(500, "feet")
  28978. },
  28979. {
  28980. name: "Megamacro",
  28981. height: math.unit(200, "miles")
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(6 + 2 / 12, "feet"),
  28990. weight: math.unit(150, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/lira/front.svg",
  28994. extra: 1727 / 1605,
  28995. bottom: 26 / 1753
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(6 + 2 / 12, "feet"),
  29000. weight: math.unit(150, "lb"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/lira/back.svg",
  29004. extra: 1713/1621,
  29005. bottom: 20/1733
  29006. }
  29007. },
  29008. hand: {
  29009. height: math.unit(0.75, "feet"),
  29010. name: "Hand",
  29011. image: {
  29012. source: "./media/characters/lira/hand.svg"
  29013. }
  29014. },
  29015. maw: {
  29016. height: math.unit(0.65, "feet"),
  29017. name: "Maw",
  29018. image: {
  29019. source: "./media/characters/lira/maw.svg"
  29020. }
  29021. },
  29022. pawDigi: {
  29023. height: math.unit(1.6, "feet"),
  29024. name: "Paw Digi",
  29025. image: {
  29026. source: "./media/characters/lira/paw-digi.svg"
  29027. }
  29028. },
  29029. pawPlanti: {
  29030. height: math.unit(1.4, "feet"),
  29031. name: "Paw Planti",
  29032. image: {
  29033. source: "./media/characters/lira/paw-planti.svg"
  29034. }
  29035. },
  29036. },
  29037. [
  29038. {
  29039. name: "Normal",
  29040. height: math.unit(6 + 2 / 12, "feet"),
  29041. default: true
  29042. },
  29043. {
  29044. name: "Macro",
  29045. height: math.unit(100, "feet")
  29046. },
  29047. {
  29048. name: "Macro²",
  29049. height: math.unit(1600, "feet")
  29050. },
  29051. {
  29052. name: "Planetary",
  29053. height: math.unit(20, "earths")
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29059. {
  29060. front: {
  29061. height: math.unit(6, "feet"),
  29062. weight: math.unit(150, "lb"),
  29063. name: "Front",
  29064. image: {
  29065. source: "./media/characters/hadjet/front.svg",
  29066. extra: 1480 / 1346,
  29067. bottom: 26 / 1506
  29068. }
  29069. },
  29070. frontNsfw: {
  29071. height: math.unit(6, "feet"),
  29072. weight: math.unit(150, "lb"),
  29073. name: "Front (NSFW)",
  29074. image: {
  29075. source: "./media/characters/hadjet/front-nsfw.svg",
  29076. extra: 1440 / 1358,
  29077. bottom: 52 / 1492
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Macro",
  29084. height: math.unit(10, "stories"),
  29085. default: true
  29086. },
  29087. {
  29088. name: "Megamacro",
  29089. height: math.unit(1.5, "miles")
  29090. },
  29091. {
  29092. name: "Megamacro+",
  29093. height: math.unit(5, "miles")
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29099. {
  29100. side: {
  29101. height: math.unit(106, "feet"),
  29102. weight: math.unit(500, "tonnes"),
  29103. name: "Side",
  29104. image: {
  29105. source: "./media/characters/kodran/side.svg",
  29106. extra: 553 / 480,
  29107. bottom: 33 / 586
  29108. }
  29109. },
  29110. front: {
  29111. height: math.unit(132, "feet"),
  29112. weight: math.unit(500, "tonnes"),
  29113. name: "Front",
  29114. image: {
  29115. source: "./media/characters/kodran/front.svg",
  29116. extra: 667 / 643,
  29117. bottom: 42 / 709
  29118. }
  29119. },
  29120. flying: {
  29121. height: math.unit(350, "feet"),
  29122. weight: math.unit(500, "tonnes"),
  29123. name: "Flying",
  29124. image: {
  29125. source: "./media/characters/kodran/flying.svg"
  29126. }
  29127. },
  29128. foot: {
  29129. height: math.unit(33, "feet"),
  29130. name: "Foot",
  29131. image: {
  29132. source: "./media/characters/kodran/foot.svg"
  29133. }
  29134. },
  29135. footFront: {
  29136. height: math.unit(19, "feet"),
  29137. name: "Foot (Front)",
  29138. image: {
  29139. source: "./media/characters/kodran/foot-front.svg",
  29140. extra: 261 / 261,
  29141. bottom: 91 / 352
  29142. }
  29143. },
  29144. headFront: {
  29145. height: math.unit(53, "feet"),
  29146. name: "Head (Front)",
  29147. image: {
  29148. source: "./media/characters/kodran/head-front.svg"
  29149. }
  29150. },
  29151. headSide: {
  29152. height: math.unit(65, "feet"),
  29153. name: "Head (Side)",
  29154. image: {
  29155. source: "./media/characters/kodran/head-side.svg"
  29156. }
  29157. },
  29158. throat: {
  29159. height: math.unit(79, "feet"),
  29160. name: "Throat",
  29161. image: {
  29162. source: "./media/characters/kodran/throat.svg"
  29163. }
  29164. },
  29165. },
  29166. [
  29167. {
  29168. name: "Large",
  29169. height: math.unit(106, "feet"),
  29170. default: true
  29171. },
  29172. ]
  29173. ))
  29174. characterMakers.push(() => makeCharacter(
  29175. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29176. {
  29177. side: {
  29178. height: math.unit(11, "feet"),
  29179. weight: math.unit(150, "lb"),
  29180. name: "Side",
  29181. image: {
  29182. source: "./media/characters/pyxaron/side.svg",
  29183. extra: 305 / 195,
  29184. bottom: 17 / 322
  29185. }
  29186. },
  29187. },
  29188. [
  29189. {
  29190. name: "Normal",
  29191. height: math.unit(11, "feet"),
  29192. default: true
  29193. },
  29194. ]
  29195. ))
  29196. characterMakers.push(() => makeCharacter(
  29197. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29198. {
  29199. front: {
  29200. height: math.unit(6, "feet"),
  29201. weight: math.unit(150, "lb"),
  29202. name: "Front",
  29203. image: {
  29204. source: "./media/characters/meep/front.svg",
  29205. extra: 88 / 80,
  29206. bottom: 6 / 94
  29207. }
  29208. },
  29209. },
  29210. [
  29211. {
  29212. name: "Fun Sized",
  29213. height: math.unit(2, "inches"),
  29214. default: true
  29215. },
  29216. {
  29217. name: "Friend Sized",
  29218. height: math.unit(8, "inches")
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29224. {
  29225. front: {
  29226. height: math.unit(15, "feet"),
  29227. weight: math.unit(2500, "lb"),
  29228. name: "Front",
  29229. image: {
  29230. source: "./media/characters/holly-rabbit/front.svg",
  29231. extra: 1433 / 1233,
  29232. bottom: 125 / 1558
  29233. }
  29234. },
  29235. dick: {
  29236. height: math.unit(4.6, "feet"),
  29237. name: "Dick",
  29238. image: {
  29239. source: "./media/characters/holly-rabbit/dick.svg"
  29240. }
  29241. },
  29242. },
  29243. [
  29244. {
  29245. name: "Normal",
  29246. height: math.unit(15, "feet"),
  29247. default: true
  29248. },
  29249. {
  29250. name: "Macro",
  29251. height: math.unit(250, "feet")
  29252. },
  29253. {
  29254. name: "Macro+",
  29255. height: math.unit(2500, "feet")
  29256. },
  29257. ]
  29258. ))
  29259. characterMakers.push(() => makeCharacter(
  29260. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29261. {
  29262. front: {
  29263. height: math.unit(3.02, "meters"),
  29264. weight: math.unit(500, "kg"),
  29265. name: "Front",
  29266. image: {
  29267. source: "./media/characters/drena/front.svg",
  29268. extra: 282 / 243,
  29269. bottom: 8 / 290
  29270. }
  29271. },
  29272. side: {
  29273. height: math.unit(3.02, "meters"),
  29274. weight: math.unit(500, "kg"),
  29275. name: "Side",
  29276. image: {
  29277. source: "./media/characters/drena/side.svg",
  29278. extra: 280 / 245,
  29279. bottom: 10 / 290
  29280. }
  29281. },
  29282. back: {
  29283. height: math.unit(3.02, "meters"),
  29284. weight: math.unit(500, "kg"),
  29285. name: "Back",
  29286. image: {
  29287. source: "./media/characters/drena/back.svg",
  29288. extra: 278 / 243,
  29289. bottom: 2 / 280
  29290. }
  29291. },
  29292. foot: {
  29293. height: math.unit(0.75, "meters"),
  29294. name: "Foot",
  29295. image: {
  29296. source: "./media/characters/drena/foot.svg"
  29297. }
  29298. },
  29299. maw: {
  29300. height: math.unit(0.82, "meters"),
  29301. name: "Maw",
  29302. image: {
  29303. source: "./media/characters/drena/maw.svg"
  29304. }
  29305. },
  29306. eating: {
  29307. height: math.unit(0.75, "meters"),
  29308. name: "Eating",
  29309. image: {
  29310. source: "./media/characters/drena/eating.svg"
  29311. }
  29312. },
  29313. rump: {
  29314. height: math.unit(0.93, "meters"),
  29315. name: "Rump",
  29316. image: {
  29317. source: "./media/characters/drena/rump.svg"
  29318. }
  29319. },
  29320. },
  29321. [
  29322. {
  29323. name: "Normal",
  29324. height: math.unit(3.02, "meters"),
  29325. default: true
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(6 + 4 / 12, "feet"),
  29334. weight: math.unit(250, "lb"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/remmyzilla/front.svg",
  29338. extra: 4033 / 3588,
  29339. bottom: 123 / 4156
  29340. }
  29341. },
  29342. back: {
  29343. height: math.unit(6 + 4 / 12, "feet"),
  29344. weight: math.unit(250, "lb"),
  29345. name: "Back",
  29346. image: {
  29347. source: "./media/characters/remmyzilla/back.svg",
  29348. extra: 2687 / 2555,
  29349. bottom: 48 / 2735
  29350. }
  29351. },
  29352. paw: {
  29353. height: math.unit(1.73, "feet"),
  29354. name: "Paw",
  29355. image: {
  29356. source: "./media/characters/remmyzilla/paw.svg"
  29357. }
  29358. },
  29359. maw: {
  29360. height: math.unit(1.73, "feet"),
  29361. name: "Maw",
  29362. image: {
  29363. source: "./media/characters/remmyzilla/maw.svg"
  29364. }
  29365. },
  29366. },
  29367. [
  29368. {
  29369. name: "Normal",
  29370. height: math.unit(6 + 4 / 12, "feet")
  29371. },
  29372. {
  29373. name: "Minimacro",
  29374. height: math.unit(12 + 8 / 12, "feet")
  29375. },
  29376. {
  29377. name: "Normal",
  29378. height: math.unit(640, "feet"),
  29379. default: true
  29380. },
  29381. {
  29382. name: "Megamacro",
  29383. height: math.unit(6400, "feet")
  29384. },
  29385. {
  29386. name: "Gigamacro",
  29387. height: math.unit(64000, "miles")
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(2.5, "meters"),
  29396. weight: math.unit(300, "lb"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/lawrence/front.svg",
  29400. extra: 357 / 335,
  29401. bottom: 30 / 387
  29402. }
  29403. },
  29404. back: {
  29405. height: math.unit(2.5, "meters"),
  29406. weight: math.unit(300, "lb"),
  29407. name: "Back",
  29408. image: {
  29409. source: "./media/characters/lawrence/back.svg",
  29410. extra: 357 / 338,
  29411. bottom: 16 / 373
  29412. }
  29413. },
  29414. head: {
  29415. height: math.unit(0.9, "meter"),
  29416. name: "Head",
  29417. image: {
  29418. source: "./media/characters/lawrence/head.svg"
  29419. }
  29420. },
  29421. maw: {
  29422. height: math.unit(0.7, "meter"),
  29423. name: "Maw",
  29424. image: {
  29425. source: "./media/characters/lawrence/maw.svg"
  29426. }
  29427. },
  29428. footBottom: {
  29429. height: math.unit(0.5, "meter"),
  29430. name: "Foot (Bottom)",
  29431. image: {
  29432. source: "./media/characters/lawrence/foot-bottom.svg"
  29433. }
  29434. },
  29435. footTop: {
  29436. height: math.unit(0.5, "meter"),
  29437. name: "Foot (Top)",
  29438. image: {
  29439. source: "./media/characters/lawrence/foot-top.svg"
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(2.5, "meters"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Macro",
  29451. height: math.unit(95, "meters")
  29452. },
  29453. {
  29454. name: "Megamacro",
  29455. height: math.unit(150, "km")
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29461. {
  29462. front: {
  29463. height: math.unit(4.2, "meters"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/sydney/front.svg",
  29467. extra: 1323 / 1277,
  29468. bottom: 111 / 1434
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Normal",
  29475. height: math.unit(4.2, "meters"),
  29476. default: true
  29477. },
  29478. ]
  29479. ))
  29480. characterMakers.push(() => makeCharacter(
  29481. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29482. {
  29483. back: {
  29484. height: math.unit(201, "feet"),
  29485. name: "Back",
  29486. image: {
  29487. source: "./media/characters/jessica/back.svg",
  29488. extra: 273 / 259,
  29489. bottom: 7 / 280
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Normal",
  29496. height: math.unit(201, "feet"),
  29497. default: true
  29498. },
  29499. {
  29500. name: "Megamacro",
  29501. height: math.unit(8, "miles")
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29507. {
  29508. side: {
  29509. height: math.unit(5.6, "m"),
  29510. weight: math.unit(8000, "kg"),
  29511. name: "Side",
  29512. image: {
  29513. source: "./media/characters/victoria/side.svg",
  29514. extra: 1542/1229,
  29515. bottom: 124/1666
  29516. }
  29517. },
  29518. maw: {
  29519. height: math.unit(7.14, "feet"),
  29520. name: "Maw",
  29521. image: {
  29522. source: "./media/characters/victoria/maw.svg"
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(5.6, "m"),
  29530. default: true
  29531. },
  29532. ]
  29533. ))
  29534. characterMakers.push(() => makeCharacter(
  29535. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29536. {
  29537. front: {
  29538. height: math.unit(5 + 6 / 12, "feet"),
  29539. name: "Front",
  29540. image: {
  29541. source: "./media/characters/cat/front.svg",
  29542. extra: 1449/1295,
  29543. bottom: 34/1483
  29544. },
  29545. form: "cat",
  29546. default: true
  29547. },
  29548. back: {
  29549. height: math.unit(5 + 6 / 12, "feet"),
  29550. name: "Back",
  29551. image: {
  29552. source: "./media/characters/cat/back.svg",
  29553. extra: 1466/1301,
  29554. bottom: 19/1485
  29555. },
  29556. form: "cat"
  29557. },
  29558. taur: {
  29559. height: math.unit(7, "feet"),
  29560. name: "Taur",
  29561. image: {
  29562. source: "./media/characters/cat/taur.svg",
  29563. extra: 1389/1233,
  29564. bottom: 83/1472
  29565. },
  29566. form: "taur",
  29567. default: true
  29568. },
  29569. lucarioFront: {
  29570. height: math.unit(4, "feet"),
  29571. name: "Lucario (Front)",
  29572. image: {
  29573. source: "./media/characters/cat/lucario-front.svg",
  29574. extra: 1149/1019,
  29575. bottom: 84/1233
  29576. },
  29577. form: "lucario",
  29578. default: true
  29579. },
  29580. lucarioBack: {
  29581. height: math.unit(4, "feet"),
  29582. name: "Lucario (Back)",
  29583. image: {
  29584. source: "./media/characters/cat/lucario-back.svg",
  29585. extra: 1190/1059,
  29586. bottom: 33/1223
  29587. },
  29588. form: "lucario"
  29589. },
  29590. megaLucario: {
  29591. height: math.unit(4, "feet"),
  29592. name: "Mega Lucario",
  29593. image: {
  29594. source: "./media/characters/cat/mega-lucario.svg",
  29595. extra: 1515 / 1319,
  29596. bottom: 63 / 1578
  29597. },
  29598. form: "lucario"
  29599. },
  29600. nickit: {
  29601. height: math.unit(2, "feet"),
  29602. name: "Nickit",
  29603. image: {
  29604. source: "./media/characters/cat/nickit.svg",
  29605. extra: 1980 / 1585,
  29606. bottom: 102 / 2082
  29607. },
  29608. form: "nickit",
  29609. default: true
  29610. },
  29611. lopunnyFront: {
  29612. height: math.unit(5, "feet"),
  29613. name: "Lopunny (Front)",
  29614. image: {
  29615. source: "./media/characters/cat/lopunny-front.svg",
  29616. extra: 1782 / 1469,
  29617. bottom: 38 / 1820
  29618. },
  29619. form: "lopunny",
  29620. default: true
  29621. },
  29622. lopunnyBack: {
  29623. height: math.unit(5, "feet"),
  29624. name: "Lopunny (Back)",
  29625. image: {
  29626. source: "./media/characters/cat/lopunny-back.svg",
  29627. extra: 1660 / 1490,
  29628. bottom: 25 / 1685
  29629. },
  29630. form: "lopunny"
  29631. },
  29632. },
  29633. [
  29634. {
  29635. name: "Really small",
  29636. height: math.unit(1, "nm")
  29637. },
  29638. {
  29639. name: "Micro",
  29640. height: math.unit(5, "inches")
  29641. },
  29642. {
  29643. name: "Normal",
  29644. height: math.unit(5 + 6 / 12, "feet"),
  29645. default: true
  29646. },
  29647. {
  29648. name: "Macro",
  29649. height: math.unit(50, "feet")
  29650. },
  29651. {
  29652. name: "Macro+",
  29653. height: math.unit(150, "feet")
  29654. },
  29655. {
  29656. name: "Megamacro",
  29657. height: math.unit(100, "miles")
  29658. },
  29659. ]
  29660. ))
  29661. characterMakers.push(() => makeCharacter(
  29662. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29663. {
  29664. front: {
  29665. height: math.unit(63.4, "meters"),
  29666. weight: math.unit(3.28349e+6, "kilograms"),
  29667. name: "Front",
  29668. image: {
  29669. source: "./media/characters/kirina-violet/front.svg",
  29670. extra: 2812 / 2725,
  29671. bottom: 0 / 2812
  29672. }
  29673. },
  29674. back: {
  29675. height: math.unit(63.4, "meters"),
  29676. weight: math.unit(3.28349e+6, "kilograms"),
  29677. name: "Back",
  29678. image: {
  29679. source: "./media/characters/kirina-violet/back.svg",
  29680. extra: 2812 / 2725,
  29681. bottom: 0 / 2812
  29682. }
  29683. },
  29684. mouth: {
  29685. height: math.unit(4.35, "meters"),
  29686. name: "Mouth",
  29687. image: {
  29688. source: "./media/characters/kirina-violet/mouth.svg"
  29689. }
  29690. },
  29691. paw: {
  29692. height: math.unit(5.6, "meters"),
  29693. name: "Paw",
  29694. image: {
  29695. source: "./media/characters/kirina-violet/paw.svg"
  29696. }
  29697. },
  29698. tail: {
  29699. height: math.unit(18, "meters"),
  29700. name: "Tail",
  29701. image: {
  29702. source: "./media/characters/kirina-violet/tail.svg"
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Macro",
  29709. height: math.unit(63.4, "meters"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29716. {
  29717. front: {
  29718. height: math.unit(75, "feet"),
  29719. name: "Front",
  29720. image: {
  29721. source: "./media/characters/cat-gigachu/front.svg",
  29722. extra: 1239/1027,
  29723. bottom: 32/1271
  29724. }
  29725. },
  29726. back: {
  29727. height: math.unit(75, "feet"),
  29728. name: "Back",
  29729. image: {
  29730. source: "./media/characters/cat-gigachu/back.svg",
  29731. extra: 1229/1030,
  29732. bottom: 9/1238
  29733. }
  29734. },
  29735. },
  29736. [
  29737. {
  29738. name: "Dynamax",
  29739. height: math.unit(75, "feet"),
  29740. default: true
  29741. },
  29742. ]
  29743. ))
  29744. characterMakers.push(() => makeCharacter(
  29745. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29746. {
  29747. front: {
  29748. height: math.unit(6, "feet"),
  29749. weight: math.unit(150, "lb"),
  29750. name: "Front",
  29751. image: {
  29752. source: "./media/characters/sfaiyan/front.svg",
  29753. extra: 999 / 978,
  29754. bottom: 5 / 1004
  29755. }
  29756. },
  29757. },
  29758. [
  29759. {
  29760. name: "Normal",
  29761. height: math.unit(1.82, "meters")
  29762. },
  29763. {
  29764. name: "Giant",
  29765. height: math.unit(2.27, "km"),
  29766. default: true
  29767. },
  29768. ]
  29769. ))
  29770. characterMakers.push(() => makeCharacter(
  29771. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29772. {
  29773. front: {
  29774. height: math.unit(179, "cm"),
  29775. weight: math.unit(100, "kg"),
  29776. name: "Front",
  29777. image: {
  29778. source: "./media/characters/raunehkeli/front.svg",
  29779. extra: 1934 / 1926,
  29780. bottom: 0 / 1934
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Normal",
  29787. height: math.unit(179, "cm")
  29788. },
  29789. {
  29790. name: "Maximum",
  29791. height: math.unit(575, "meters"),
  29792. default: true
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29798. {
  29799. front: {
  29800. height: math.unit(6, "feet"),
  29801. weight: math.unit(150, "lb"),
  29802. name: "Front",
  29803. image: {
  29804. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29805. extra: 2625 / 2518,
  29806. bottom: 60 / 2685
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Normal",
  29813. height: math.unit(6 + 2 / 12, "feet")
  29814. },
  29815. {
  29816. name: "Macro",
  29817. height: math.unit(1180, "feet"),
  29818. default: true
  29819. },
  29820. ]
  29821. ))
  29822. characterMakers.push(() => makeCharacter(
  29823. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29824. {
  29825. front: {
  29826. height: math.unit(5 + 6 / 12, "feet"),
  29827. weight: math.unit(108, "lb"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/lilith-zott/front.svg",
  29831. extra: 2510 / 2238,
  29832. bottom: 100 / 2610
  29833. }
  29834. },
  29835. frontDressed: {
  29836. height: math.unit(5 + 6 / 12, "feet"),
  29837. weight: math.unit(108, "lb"),
  29838. name: "Front (Dressed)",
  29839. image: {
  29840. source: "./media/characters/lilith-zott/front-dressed.svg",
  29841. extra: 2510 / 2238,
  29842. bottom: 100 / 2610
  29843. }
  29844. },
  29845. },
  29846. [
  29847. {
  29848. name: "Normal",
  29849. height: math.unit(5 + 6 / 12, "feet")
  29850. },
  29851. {
  29852. name: "Macro",
  29853. height: math.unit(1030, "feet"),
  29854. default: true
  29855. },
  29856. ]
  29857. ))
  29858. characterMakers.push(() => makeCharacter(
  29859. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29860. {
  29861. front: {
  29862. height: math.unit(6, "feet"),
  29863. weight: math.unit(150, "lb"),
  29864. name: "Front",
  29865. image: {
  29866. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29867. extra: 2567 / 2435,
  29868. bottom: 39 / 2606
  29869. }
  29870. },
  29871. frontSuper: {
  29872. height: math.unit(6, "feet"),
  29873. name: "Front (Super)",
  29874. image: {
  29875. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29876. extra: 2567 / 2435,
  29877. bottom: 39 / 2606
  29878. }
  29879. },
  29880. },
  29881. [
  29882. {
  29883. name: "Normal",
  29884. height: math.unit(5 + 10 / 12, "feet")
  29885. },
  29886. {
  29887. name: "Macro",
  29888. height: math.unit(1100, "feet"),
  29889. default: true
  29890. },
  29891. ]
  29892. ))
  29893. characterMakers.push(() => makeCharacter(
  29894. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29895. {
  29896. front: {
  29897. height: math.unit(100, "miles"),
  29898. name: "Front",
  29899. image: {
  29900. source: "./media/characters/sona/front.svg",
  29901. extra: 2433 / 2201,
  29902. bottom: 53 / 2486
  29903. }
  29904. },
  29905. foot: {
  29906. height: math.unit(16.1, "miles"),
  29907. name: "Foot",
  29908. image: {
  29909. source: "./media/characters/sona/foot.svg"
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Macro",
  29916. height: math.unit(100, "miles"),
  29917. default: true
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29923. {
  29924. front: {
  29925. height: math.unit(6, "feet"),
  29926. weight: math.unit(150, "lb"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/bailey/front.svg",
  29930. extra: 1778 / 1724,
  29931. bottom: 30 / 1808
  29932. }
  29933. },
  29934. },
  29935. [
  29936. {
  29937. name: "Micro",
  29938. height: math.unit(4, "inches")
  29939. },
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(5 + 5 / 12, "feet"),
  29943. default: true
  29944. },
  29945. {
  29946. name: "Macro",
  29947. height: math.unit(250, "feet")
  29948. },
  29949. {
  29950. name: "Megamacro",
  29951. height: math.unit(100, "miles")
  29952. },
  29953. ]
  29954. ))
  29955. characterMakers.push(() => makeCharacter(
  29956. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29957. {
  29958. front: {
  29959. height: math.unit(5 + 2 / 12, "feet"),
  29960. weight: math.unit(120, "lb"),
  29961. name: "Front",
  29962. image: {
  29963. source: "./media/characters/snaps/front.svg",
  29964. extra: 2370 / 2177,
  29965. bottom: 48 / 2418
  29966. }
  29967. },
  29968. back: {
  29969. height: math.unit(5 + 2 / 12, "feet"),
  29970. weight: math.unit(120, "lb"),
  29971. name: "Back",
  29972. image: {
  29973. source: "./media/characters/snaps/back.svg",
  29974. extra: 2408 / 2258,
  29975. bottom: 15 / 2423
  29976. }
  29977. },
  29978. },
  29979. [
  29980. {
  29981. name: "Micro",
  29982. height: math.unit(9, "inches")
  29983. },
  29984. {
  29985. name: "Normal",
  29986. height: math.unit(5 + 2 / 12, "feet"),
  29987. default: true
  29988. },
  29989. {
  29990. name: "Mini Macro",
  29991. height: math.unit(10, "feet")
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29997. {
  29998. front: {
  29999. height: math.unit(1.8, "meters"),
  30000. weight: math.unit(85, "kg"),
  30001. name: "Front",
  30002. image: {
  30003. source: "./media/characters/azteck/front.svg",
  30004. extra: 2815 / 2625,
  30005. bottom: 89 / 2904
  30006. }
  30007. },
  30008. back: {
  30009. height: math.unit(1.8, "meters"),
  30010. weight: math.unit(85, "kg"),
  30011. name: "Back",
  30012. image: {
  30013. source: "./media/characters/azteck/back.svg",
  30014. extra: 2856 / 2648,
  30015. bottom: 85 / 2941
  30016. }
  30017. },
  30018. frontDressed: {
  30019. height: math.unit(1.8, "meters"),
  30020. weight: math.unit(85, "kg"),
  30021. name: "Front (Dressed)",
  30022. image: {
  30023. source: "./media/characters/azteck/front-dressed.svg",
  30024. extra: 2147 / 2003,
  30025. bottom: 68 / 2215
  30026. }
  30027. },
  30028. head: {
  30029. height: math.unit(0.47, "meters"),
  30030. weight: math.unit(85, "kg"),
  30031. name: "Head",
  30032. image: {
  30033. source: "./media/characters/azteck/head.svg"
  30034. }
  30035. },
  30036. },
  30037. [
  30038. {
  30039. name: "Bite sized",
  30040. height: math.unit(16, "cm")
  30041. },
  30042. {
  30043. name: "Normal",
  30044. height: math.unit(1.8, "meters"),
  30045. default: true
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30051. {
  30052. front: {
  30053. height: math.unit(6, "feet"),
  30054. weight: math.unit(150, "lb"),
  30055. name: "Front",
  30056. image: {
  30057. source: "./media/characters/pidge/front.svg",
  30058. extra: 620 / 588,
  30059. bottom: 9 / 629
  30060. }
  30061. },
  30062. back: {
  30063. height: math.unit(6, "feet"),
  30064. weight: math.unit(150, "lb"),
  30065. name: "Back",
  30066. image: {
  30067. source: "./media/characters/pidge/back.svg",
  30068. extra: 620 / 588,
  30069. bottom: 9 / 629
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Macro",
  30076. height: math.unit(1, "mile"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(6, "feet"),
  30086. weight: math.unit(150, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/en/front.svg",
  30090. extra: 1697 / 1563,
  30091. bottom: 103 / 1800
  30092. }
  30093. },
  30094. back: {
  30095. height: math.unit(6, "feet"),
  30096. weight: math.unit(150, "lb"),
  30097. name: "Back",
  30098. image: {
  30099. source: "./media/characters/en/back.svg",
  30100. extra: 1700 / 1570,
  30101. bottom: 51 / 1751
  30102. }
  30103. },
  30104. frontDressed: {
  30105. height: math.unit(6, "feet"),
  30106. weight: math.unit(150, "lb"),
  30107. name: "Front (Dressed)",
  30108. image: {
  30109. source: "./media/characters/en/front-dressed.svg",
  30110. extra: 1697 / 1563,
  30111. bottom: 103 / 1800
  30112. }
  30113. },
  30114. backDressed: {
  30115. height: math.unit(6, "feet"),
  30116. weight: math.unit(150, "lb"),
  30117. name: "Back (Dressed)",
  30118. image: {
  30119. source: "./media/characters/en/back-dressed.svg",
  30120. extra: 1700 / 1570,
  30121. bottom: 51 / 1751
  30122. }
  30123. },
  30124. },
  30125. [
  30126. {
  30127. name: "Macro",
  30128. height: math.unit(210, "feet"),
  30129. default: true
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(6, "feet"),
  30138. weight: math.unit(150, "lb"),
  30139. name: "Front",
  30140. image: {
  30141. source: "./media/characters/haze-orris/front.svg",
  30142. extra: 3975 / 3525,
  30143. bottom: 137 / 4112
  30144. }
  30145. },
  30146. },
  30147. [
  30148. {
  30149. name: "Micro",
  30150. height: math.unit(150, "mm"),
  30151. default: true
  30152. },
  30153. ]
  30154. ))
  30155. characterMakers.push(() => makeCharacter(
  30156. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30157. {
  30158. front: {
  30159. height: math.unit(6, "feet"),
  30160. weight: math.unit(150, "lb"),
  30161. name: "Front",
  30162. image: {
  30163. source: "./media/characters/casselene-yaro/front.svg",
  30164. extra: 4721 / 4541,
  30165. bottom: 82 / 4803
  30166. }
  30167. },
  30168. back: {
  30169. height: math.unit(6, "feet"),
  30170. weight: math.unit(150, "lb"),
  30171. name: "Back",
  30172. image: {
  30173. source: "./media/characters/casselene-yaro/back.svg",
  30174. extra: 4569 / 4377,
  30175. bottom: 69 / 4638
  30176. }
  30177. },
  30178. frontDressed: {
  30179. height: math.unit(6, "feet"),
  30180. weight: math.unit(150, "lb"),
  30181. name: "Front-dressed",
  30182. image: {
  30183. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30184. extra: 4721 / 4541,
  30185. bottom: 82 / 4803
  30186. }
  30187. },
  30188. },
  30189. [
  30190. {
  30191. name: "Macro",
  30192. height: math.unit(190, "feet"),
  30193. default: true
  30194. },
  30195. ]
  30196. ))
  30197. characterMakers.push(() => makeCharacter(
  30198. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30199. {
  30200. front: {
  30201. height: math.unit(6, "feet"),
  30202. weight: math.unit(150, "lb"),
  30203. name: "Front",
  30204. image: {
  30205. source: "./media/characters/myra-rue-delore/front.svg",
  30206. extra: 1340 / 1308,
  30207. bottom: 67 / 1407
  30208. }
  30209. },
  30210. back: {
  30211. height: math.unit(6, "feet"),
  30212. weight: math.unit(150, "lb"),
  30213. name: "Back",
  30214. image: {
  30215. source: "./media/characters/myra-rue-delore/back.svg",
  30216. extra: 1341 / 1310,
  30217. bottom: 40 / 1381
  30218. }
  30219. },
  30220. frontDressed: {
  30221. height: math.unit(6, "feet"),
  30222. weight: math.unit(150, "lb"),
  30223. name: "Front (Dressed)",
  30224. image: {
  30225. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30226. extra: 1340 / 1308,
  30227. bottom: 67 / 1407
  30228. }
  30229. },
  30230. },
  30231. [
  30232. {
  30233. name: "Macro",
  30234. height: math.unit(150, "feet"),
  30235. default: true
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(10, "feet"),
  30244. weight: math.unit(15015, "lb"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/fem!plat/front.svg",
  30248. extra: 2799 / 2604,
  30249. bottom: 149 / 2948
  30250. }
  30251. },
  30252. },
  30253. [
  30254. {
  30255. name: "Normal",
  30256. height: math.unit(10, "feet"),
  30257. default: true
  30258. },
  30259. {
  30260. name: "Macro",
  30261. height: math.unit(100, "feet")
  30262. },
  30263. {
  30264. name: "Megamacro",
  30265. height: math.unit(1000, "feet")
  30266. },
  30267. ]
  30268. ))
  30269. characterMakers.push(() => makeCharacter(
  30270. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30271. {
  30272. front: {
  30273. height: math.unit(15 + 5 / 12, "feet"),
  30274. weight: math.unit(4600, "lb"),
  30275. name: "Front",
  30276. image: {
  30277. source: "./media/characters/neapolitan-ananassa/front.svg",
  30278. extra: 2903 / 2736,
  30279. bottom: 0 / 2903
  30280. }
  30281. },
  30282. side: {
  30283. height: math.unit(15 + 5 / 12, "feet"),
  30284. weight: math.unit(4600, "lb"),
  30285. name: "Side",
  30286. image: {
  30287. source: "./media/characters/neapolitan-ananassa/side.svg",
  30288. extra: 2925 / 2719,
  30289. bottom: 0 / 2925
  30290. }
  30291. },
  30292. back: {
  30293. height: math.unit(15 + 5 / 12, "feet"),
  30294. weight: math.unit(4600, "lb"),
  30295. name: "Back",
  30296. image: {
  30297. source: "./media/characters/neapolitan-ananassa/back.svg",
  30298. extra: 2903 / 2736,
  30299. bottom: 0 / 2903
  30300. }
  30301. },
  30302. },
  30303. [
  30304. {
  30305. name: "Normal",
  30306. height: math.unit(15 + 5 / 12, "feet"),
  30307. default: true
  30308. },
  30309. {
  30310. name: "Post-Millenium",
  30311. height: math.unit(35 + 5 / 12, "feet")
  30312. },
  30313. {
  30314. name: "Post-Era",
  30315. height: math.unit(450 + 5 / 12, "feet")
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(300, "meters"),
  30324. weight: math.unit(125000, "tonnes"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/pazuzu/front.svg",
  30328. extra: 877 / 794,
  30329. bottom: 47 / 924
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Macro",
  30336. height: math.unit(300, "meters"),
  30337. default: true
  30338. },
  30339. ]
  30340. ))
  30341. characterMakers.push(() => makeCharacter(
  30342. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30343. {
  30344. side: {
  30345. height: math.unit(10 + 7 / 12, "feet"),
  30346. weight: math.unit(2.5, "tons"),
  30347. name: "Side",
  30348. image: {
  30349. source: "./media/characters/aasha/side.svg",
  30350. extra: 1345 / 1245,
  30351. bottom: 111 / 1456
  30352. }
  30353. },
  30354. back: {
  30355. height: math.unit(10 + 7 / 12, "feet"),
  30356. weight: math.unit(2.5, "tons"),
  30357. name: "Back",
  30358. image: {
  30359. source: "./media/characters/aasha/back.svg",
  30360. extra: 1133 / 1057,
  30361. bottom: 257 / 1390
  30362. }
  30363. },
  30364. },
  30365. [
  30366. {
  30367. name: "Normal",
  30368. height: math.unit(10 + 7 / 12, "feet"),
  30369. default: true
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(6 + 3 / 12, "feet"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/nevan/front.svg",
  30381. extra: 704 / 704,
  30382. bottom: 28 / 732
  30383. }
  30384. },
  30385. back: {
  30386. height: math.unit(6 + 3 / 12, "feet"),
  30387. name: "Back",
  30388. image: {
  30389. source: "./media/characters/nevan/back.svg",
  30390. extra: 714 / 714,
  30391. bottom: 21 / 735
  30392. }
  30393. },
  30394. frontFlaccid: {
  30395. height: math.unit(6 + 3 / 12, "feet"),
  30396. name: "Front (Flaccid)",
  30397. image: {
  30398. source: "./media/characters/nevan/front-flaccid.svg",
  30399. extra: 704 / 704,
  30400. bottom: 28 / 732
  30401. }
  30402. },
  30403. frontErect: {
  30404. height: math.unit(6 + 3 / 12, "feet"),
  30405. name: "Front (Erect)",
  30406. image: {
  30407. source: "./media/characters/nevan/front-erect.svg",
  30408. extra: 704 / 704,
  30409. bottom: 28 / 732
  30410. }
  30411. },
  30412. backFlaccid: {
  30413. height: math.unit(6 + 3 / 12, "feet"),
  30414. name: "Back (Flaccid)",
  30415. image: {
  30416. source: "./media/characters/nevan/back-flaccid.svg",
  30417. extra: 714 / 714,
  30418. bottom: 21 / 735
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Normal",
  30425. height: math.unit(6 + 3 / 12, "feet"),
  30426. default: true
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30432. {
  30433. front: {
  30434. height: math.unit(4, "feet"),
  30435. name: "Front",
  30436. image: {
  30437. source: "./media/characters/arhan/front.svg",
  30438. extra: 3368 / 3133,
  30439. bottom: 0 / 3368
  30440. }
  30441. },
  30442. side: {
  30443. height: math.unit(4, "feet"),
  30444. name: "Side",
  30445. image: {
  30446. source: "./media/characters/arhan/side.svg",
  30447. extra: 3347 / 3105,
  30448. bottom: 0 / 3347
  30449. }
  30450. },
  30451. tongue: {
  30452. height: math.unit(1.42, "feet"),
  30453. name: "Tongue",
  30454. image: {
  30455. source: "./media/characters/arhan/tongue.svg"
  30456. }
  30457. },
  30458. head: {
  30459. height: math.unit(0.85, "feet"),
  30460. name: "Head",
  30461. image: {
  30462. source: "./media/characters/arhan/head.svg"
  30463. }
  30464. },
  30465. },
  30466. [
  30467. {
  30468. name: "Normal",
  30469. height: math.unit(4, "feet"),
  30470. default: true
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30476. {
  30477. front: {
  30478. height: math.unit(5 + 7.5 / 12, "feet"),
  30479. weight: math.unit(120, "lb"),
  30480. name: "Front",
  30481. image: {
  30482. source: "./media/characters/digi-duncan/front.svg",
  30483. extra: 330 / 326,
  30484. bottom: 16 / 346
  30485. }
  30486. },
  30487. side: {
  30488. height: math.unit(5 + 7.5 / 12, "feet"),
  30489. weight: math.unit(120, "lb"),
  30490. name: "Side",
  30491. image: {
  30492. source: "./media/characters/digi-duncan/side.svg",
  30493. extra: 341 / 337,
  30494. bottom: 1 / 342
  30495. }
  30496. },
  30497. back: {
  30498. height: math.unit(5 + 7.5 / 12, "feet"),
  30499. weight: math.unit(120, "lb"),
  30500. name: "Back",
  30501. image: {
  30502. source: "./media/characters/digi-duncan/back.svg",
  30503. extra: 330 / 326,
  30504. bottom: 12 / 342
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Speck",
  30511. height: math.unit(0.25, "mm")
  30512. },
  30513. {
  30514. name: "Micro",
  30515. height: math.unit(5, "mm")
  30516. },
  30517. {
  30518. name: "Tiny",
  30519. height: math.unit(0.5, "inches"),
  30520. default: true
  30521. },
  30522. {
  30523. name: "Human",
  30524. height: math.unit(5 + 7.5 / 12, "feet")
  30525. },
  30526. {
  30527. name: "Minigiant",
  30528. height: math.unit(8 + 5.25, "feet")
  30529. },
  30530. {
  30531. name: "Giant",
  30532. height: math.unit(2000, "feet")
  30533. },
  30534. {
  30535. name: "Mega",
  30536. height: math.unit(371.1, "miles")
  30537. },
  30538. ]
  30539. ))
  30540. characterMakers.push(() => makeCharacter(
  30541. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30542. {
  30543. front: {
  30544. height: math.unit(2, "meters"),
  30545. weight: math.unit(350, "kg"),
  30546. name: "Front",
  30547. image: {
  30548. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30549. extra: 898 / 838,
  30550. bottom: 9 / 907
  30551. }
  30552. },
  30553. },
  30554. [
  30555. {
  30556. name: "Micro",
  30557. height: math.unit(8, "meters")
  30558. },
  30559. {
  30560. name: "Normal",
  30561. height: math.unit(50, "meters"),
  30562. default: true
  30563. },
  30564. {
  30565. name: "Macro",
  30566. height: math.unit(500, "meters")
  30567. },
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30572. {
  30573. front: {
  30574. height: math.unit(6 + 6 / 12, "feet"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/khardesh/front.svg",
  30578. extra: 1788/1596,
  30579. bottom: 66/1854
  30580. }
  30581. },
  30582. back: {
  30583. height: math.unit(6 + 6 / 12, "feet"),
  30584. name: "Back",
  30585. image: {
  30586. source: "./media/characters/khardesh/back.svg",
  30587. extra: 1781/1584,
  30588. bottom: 68/1849
  30589. }
  30590. },
  30591. },
  30592. [
  30593. {
  30594. name: "Normal",
  30595. height: math.unit(6 + 6 / 12, "feet"),
  30596. default: true
  30597. },
  30598. {
  30599. name: "Normal+",
  30600. height: math.unit(4, "meters")
  30601. },
  30602. {
  30603. name: "Macro",
  30604. height: math.unit(50, "meters")
  30605. },
  30606. {
  30607. name: "Macro+",
  30608. height: math.unit(100, "meters")
  30609. },
  30610. {
  30611. name: "Megamacro",
  30612. height: math.unit(20, "km")
  30613. },
  30614. ]
  30615. ))
  30616. characterMakers.push(() => makeCharacter(
  30617. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30618. {
  30619. front: {
  30620. height: math.unit(6, "feet"),
  30621. weight: math.unit(150, "lb"),
  30622. name: "Front",
  30623. image: {
  30624. source: "./media/characters/kosho/front.svg",
  30625. extra: 1847 / 1847,
  30626. bottom: 86 / 1933
  30627. }
  30628. },
  30629. },
  30630. [
  30631. {
  30632. name: "Second-stage micro",
  30633. height: math.unit(0.5, "inches")
  30634. },
  30635. {
  30636. name: "First-stage micro",
  30637. height: math.unit(6, "inches")
  30638. },
  30639. {
  30640. name: "Normal",
  30641. height: math.unit(6, "feet"),
  30642. default: true
  30643. },
  30644. {
  30645. name: "First-stage macro",
  30646. height: math.unit(72, "feet")
  30647. },
  30648. {
  30649. name: "Second-stage macro",
  30650. height: math.unit(864, "feet")
  30651. },
  30652. ]
  30653. ))
  30654. characterMakers.push(() => makeCharacter(
  30655. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30656. {
  30657. normal: {
  30658. height: math.unit(4 + 6 / 12, "feet"),
  30659. name: "Normal",
  30660. image: {
  30661. source: "./media/characters/hydra/normal.svg",
  30662. extra: 2833 / 2634,
  30663. bottom: 68 / 2901
  30664. }
  30665. },
  30666. smol: {
  30667. height: math.unit(0.705, "inches"),
  30668. name: "Smol",
  30669. image: {
  30670. source: "./media/characters/hydra/smol.svg",
  30671. extra: 2715 / 2540,
  30672. bottom: 0 / 2715
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Normal",
  30679. height: math.unit(4 + 6 / 12, "feet"),
  30680. default: true
  30681. }
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30686. {
  30687. front: {
  30688. height: math.unit(0.6, "cm"),
  30689. name: "Front",
  30690. image: {
  30691. source: "./media/characters/daz/front.svg",
  30692. extra: 1682 / 1164,
  30693. bottom: 42 / 1724
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "Normal",
  30700. height: math.unit(0.6, "cm"),
  30701. default: true
  30702. },
  30703. ]
  30704. ))
  30705. characterMakers.push(() => makeCharacter(
  30706. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30707. {
  30708. front: {
  30709. height: math.unit(6, "feet"),
  30710. weight: math.unit(235, "lb"),
  30711. name: "Front",
  30712. image: {
  30713. source: "./media/characters/theo-pangolin/front.svg",
  30714. extra: 1996 / 1969,
  30715. bottom: 115 / 2111
  30716. }
  30717. },
  30718. back: {
  30719. height: math.unit(6, "feet"),
  30720. weight: math.unit(235, "lb"),
  30721. name: "Back",
  30722. image: {
  30723. source: "./media/characters/theo-pangolin/back.svg",
  30724. extra: 1979 / 1979,
  30725. bottom: 40 / 2019
  30726. }
  30727. },
  30728. feral: {
  30729. height: math.unit(2, "feet"),
  30730. weight: math.unit(30, "lb"),
  30731. name: "Feral",
  30732. image: {
  30733. source: "./media/characters/theo-pangolin/feral.svg",
  30734. extra: 803 / 791,
  30735. bottom: 181 / 984
  30736. }
  30737. },
  30738. footFive: {
  30739. height: math.unit(1.43, "feet"),
  30740. name: "Foot (Five Toes)",
  30741. image: {
  30742. source: "./media/characters/theo-pangolin/foot-five.svg"
  30743. }
  30744. },
  30745. footFour: {
  30746. height: math.unit(1.43, "feet"),
  30747. name: "Foot (Four Toes)",
  30748. image: {
  30749. source: "./media/characters/theo-pangolin/foot-four.svg"
  30750. }
  30751. },
  30752. handFour: {
  30753. height: math.unit(0.81, "feet"),
  30754. name: "Hand (Four Fingers)",
  30755. image: {
  30756. source: "./media/characters/theo-pangolin/hand-four.svg"
  30757. }
  30758. },
  30759. handThree: {
  30760. height: math.unit(0.81, "feet"),
  30761. name: "Hand (Three Fingers)",
  30762. image: {
  30763. source: "./media/characters/theo-pangolin/hand-three.svg"
  30764. }
  30765. },
  30766. headFront: {
  30767. height: math.unit(1.37, "feet"),
  30768. name: "Head (Front)",
  30769. image: {
  30770. source: "./media/characters/theo-pangolin/head-front.svg"
  30771. }
  30772. },
  30773. headSide: {
  30774. height: math.unit(1.43, "feet"),
  30775. name: "Head (Side)",
  30776. image: {
  30777. source: "./media/characters/theo-pangolin/head-side.svg"
  30778. }
  30779. },
  30780. tongue: {
  30781. height: math.unit(2.29, "feet"),
  30782. name: "Tongue",
  30783. image: {
  30784. source: "./media/characters/theo-pangolin/tongue.svg"
  30785. }
  30786. },
  30787. },
  30788. [
  30789. {
  30790. name: "Normal",
  30791. height: math.unit(6, "feet")
  30792. },
  30793. {
  30794. name: "Macro",
  30795. height: math.unit(400, "feet"),
  30796. default: true
  30797. },
  30798. ]
  30799. ))
  30800. characterMakers.push(() => makeCharacter(
  30801. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30802. {
  30803. front: {
  30804. height: math.unit(6, "inches"),
  30805. weight: math.unit(0.036, "kg"),
  30806. name: "Front",
  30807. image: {
  30808. source: "./media/characters/renée/front.svg",
  30809. extra: 900 / 886,
  30810. bottom: 8 / 908
  30811. }
  30812. },
  30813. },
  30814. [
  30815. {
  30816. name: "Nano",
  30817. height: math.unit(1, "nm")
  30818. },
  30819. {
  30820. name: "Micro",
  30821. height: math.unit(1, "mm")
  30822. },
  30823. {
  30824. name: "Normal",
  30825. height: math.unit(6, "inches")
  30826. },
  30827. {
  30828. name: "Macro",
  30829. height: math.unit(2000, "feet"),
  30830. default: true
  30831. },
  30832. {
  30833. name: "Megamacro",
  30834. height: math.unit(2, "km")
  30835. },
  30836. {
  30837. name: "Gigamacro",
  30838. height: math.unit(2000, "km")
  30839. },
  30840. {
  30841. name: "Teramacro",
  30842. height: math.unit(250000, "km")
  30843. },
  30844. ]
  30845. ))
  30846. characterMakers.push(() => makeCharacter(
  30847. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30848. {
  30849. front: {
  30850. height: math.unit(4, "meters"),
  30851. weight: math.unit(150, "kg"),
  30852. name: "Front",
  30853. image: {
  30854. source: "./media/characters/caledvwlch/front.svg",
  30855. extra: 1760 / 1551,
  30856. bottom: 28 / 1788
  30857. }
  30858. },
  30859. side: {
  30860. height: math.unit(4, "meters"),
  30861. weight: math.unit(150, "kg"),
  30862. name: "Side",
  30863. image: {
  30864. source: "./media/characters/caledvwlch/side.svg",
  30865. extra: 1605 / 1536,
  30866. bottom: 31 / 1636
  30867. }
  30868. },
  30869. back: {
  30870. height: math.unit(4, "meters"),
  30871. weight: math.unit(150, "kg"),
  30872. name: "Back",
  30873. image: {
  30874. source: "./media/characters/caledvwlch/back.svg",
  30875. extra: 1635 / 1565,
  30876. bottom: 27 / 1662
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "\"Incognito\"",
  30883. height: math.unit(4, "meters")
  30884. },
  30885. {
  30886. name: "Small rampage",
  30887. height: math.unit(600, "meters")
  30888. },
  30889. {
  30890. name: "Mega",
  30891. height: math.unit(30, "km")
  30892. },
  30893. {
  30894. name: "Home-size",
  30895. height: math.unit(50, "km"),
  30896. default: true
  30897. },
  30898. {
  30899. name: "Giga",
  30900. height: math.unit(300, "km")
  30901. },
  30902. {
  30903. name: "Lounging",
  30904. height: math.unit(11000, "km")
  30905. },
  30906. {
  30907. name: "Planet snacking",
  30908. height: math.unit(2000000, "km")
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(6, "feet"),
  30917. weight: math.unit(215, "lb"),
  30918. name: "Front",
  30919. image: {
  30920. source: "./media/characters/sapphire-svell/front.svg",
  30921. extra: 495 / 455,
  30922. bottom: 20 / 515
  30923. }
  30924. },
  30925. back: {
  30926. height: math.unit(6, "feet"),
  30927. weight: math.unit(216, "lb"),
  30928. name: "Back",
  30929. image: {
  30930. source: "./media/characters/sapphire-svell/back.svg",
  30931. extra: 497 / 477,
  30932. bottom: 7 / 504
  30933. }
  30934. },
  30935. maw: {
  30936. height: math.unit(1.57, "feet"),
  30937. name: "Maw",
  30938. image: {
  30939. source: "./media/characters/sapphire-svell/maw.svg"
  30940. }
  30941. },
  30942. foot: {
  30943. height: math.unit(1.07, "feet"),
  30944. name: "Foot",
  30945. image: {
  30946. source: "./media/characters/sapphire-svell/foot.svg"
  30947. }
  30948. },
  30949. toering: {
  30950. height: math.unit(1.7, "inch"),
  30951. name: "Toering",
  30952. image: {
  30953. source: "./media/characters/sapphire-svell/toering.svg"
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Normal",
  30960. height: math.unit(300, "feet"),
  30961. default: true
  30962. },
  30963. {
  30964. name: "Augmented",
  30965. height: math.unit(1250, "feet")
  30966. },
  30967. {
  30968. name: "Unleashed",
  30969. height: math.unit(3000, "feet")
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30975. {
  30976. side: {
  30977. height: math.unit(2 + 3 / 12, "feet"),
  30978. weight: math.unit(110, "lb"),
  30979. name: "Side",
  30980. image: {
  30981. source: "./media/characters/glitch-flux/side.svg",
  30982. extra: 997 / 805,
  30983. bottom: 20 / 1017
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(2 + 3 / 12, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(4, "meters"),
  31000. name: "Front",
  31001. image: {
  31002. source: "./media/characters/mid/front.svg",
  31003. extra: 507 / 476,
  31004. bottom: 17 / 524
  31005. }
  31006. },
  31007. back: {
  31008. height: math.unit(4, "meters"),
  31009. name: "Back",
  31010. image: {
  31011. source: "./media/characters/mid/back.svg",
  31012. extra: 519 / 487,
  31013. bottom: 7 / 526
  31014. }
  31015. },
  31016. stuck: {
  31017. height: math.unit(2.2, "meters"),
  31018. name: "Stuck",
  31019. image: {
  31020. source: "./media/characters/mid/stuck.svg",
  31021. extra: 1951 / 1869,
  31022. bottom: 88 / 2039
  31023. }
  31024. }
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(4, "meters"),
  31030. default: true
  31031. },
  31032. {
  31033. name: "Big",
  31034. height: math.unit(10, "meters")
  31035. },
  31036. {
  31037. name: "Macro",
  31038. height: math.unit(800, "meters")
  31039. },
  31040. {
  31041. name: "Megamacro",
  31042. height: math.unit(100, "km")
  31043. },
  31044. {
  31045. name: "Overgrown",
  31046. height: math.unit(1, "parsec")
  31047. },
  31048. ]
  31049. ))
  31050. characterMakers.push(() => makeCharacter(
  31051. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31052. {
  31053. front: {
  31054. height: math.unit(2.5, "meters"),
  31055. weight: math.unit(225, "kg"),
  31056. name: "Front",
  31057. image: {
  31058. source: "./media/characters/iris/front.svg",
  31059. extra: 3348 / 3251,
  31060. bottom: 205 / 3553
  31061. }
  31062. },
  31063. maw: {
  31064. height: math.unit(0.56, "meter"),
  31065. name: "Maw",
  31066. image: {
  31067. source: "./media/characters/iris/maw.svg"
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "Mewter cat",
  31074. height: math.unit(1.2, "meters")
  31075. },
  31076. {
  31077. name: "Minimacro",
  31078. height: math.unit(2.5, "meters"),
  31079. default: true
  31080. },
  31081. {
  31082. name: "Macro",
  31083. height: math.unit(180, "meters")
  31084. },
  31085. {
  31086. name: "Megamacro",
  31087. height: math.unit(2746, "meters")
  31088. },
  31089. ]
  31090. ))
  31091. characterMakers.push(() => makeCharacter(
  31092. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31093. {
  31094. front: {
  31095. height: math.unit(6, "feet"),
  31096. weight: math.unit(135, "lb"),
  31097. name: "Front",
  31098. image: {
  31099. source: "./media/characters/axel/front.svg",
  31100. extra: 908 / 908,
  31101. bottom: 58 / 966
  31102. }
  31103. },
  31104. side: {
  31105. height: math.unit(6, "feet"),
  31106. weight: math.unit(135, "lb"),
  31107. name: "Side",
  31108. image: {
  31109. source: "./media/characters/axel/side.svg",
  31110. extra: 958 / 958,
  31111. bottom: 11 / 969
  31112. }
  31113. },
  31114. back: {
  31115. height: math.unit(6, "feet"),
  31116. weight: math.unit(135, "lb"),
  31117. name: "Back",
  31118. image: {
  31119. source: "./media/characters/axel/back.svg",
  31120. extra: 887 / 887,
  31121. bottom: 34 / 921
  31122. }
  31123. },
  31124. head: {
  31125. height: math.unit(1.07, "feet"),
  31126. name: "Head",
  31127. image: {
  31128. source: "./media/characters/axel/head.svg"
  31129. }
  31130. },
  31131. beak: {
  31132. height: math.unit(1.4, "feet"),
  31133. name: "Beak",
  31134. image: {
  31135. source: "./media/characters/axel/beak.svg"
  31136. }
  31137. },
  31138. beakSide: {
  31139. height: math.unit(1.4, "feet"),
  31140. name: "Beak Side",
  31141. image: {
  31142. source: "./media/characters/axel/beak-side.svg"
  31143. }
  31144. },
  31145. sheath: {
  31146. height: math.unit(0.5, "feet"),
  31147. name: "Sheath",
  31148. image: {
  31149. source: "./media/characters/axel/sheath.svg"
  31150. }
  31151. },
  31152. dick: {
  31153. height: math.unit(0.98, "feet"),
  31154. name: "Dick",
  31155. image: {
  31156. source: "./media/characters/axel/dick.svg"
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Macro",
  31163. height: math.unit(68, "meters"),
  31164. default: true
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31170. {
  31171. front: {
  31172. height: math.unit(3.5, "meters"),
  31173. weight: math.unit(1200, "kg"),
  31174. name: "Front",
  31175. image: {
  31176. source: "./media/characters/joanna/front.svg",
  31177. extra: 1596 / 1488,
  31178. bottom: 29 / 1625
  31179. }
  31180. },
  31181. back: {
  31182. height: math.unit(3.5, "meters"),
  31183. weight: math.unit(1200, "kg"),
  31184. name: "Back",
  31185. image: {
  31186. source: "./media/characters/joanna/back.svg",
  31187. extra: 1594 / 1495,
  31188. bottom: 26 / 1620
  31189. }
  31190. },
  31191. frontShorts: {
  31192. height: math.unit(3.5, "meters"),
  31193. weight: math.unit(1200, "kg"),
  31194. name: "Front (Shorts)",
  31195. image: {
  31196. source: "./media/characters/joanna/front-shorts.svg",
  31197. extra: 1596 / 1488,
  31198. bottom: 29 / 1625
  31199. }
  31200. },
  31201. frontBiker: {
  31202. height: math.unit(3.5, "meters"),
  31203. weight: math.unit(1200, "kg"),
  31204. name: "Front (Biker)",
  31205. image: {
  31206. source: "./media/characters/joanna/front-biker.svg",
  31207. extra: 1596 / 1488,
  31208. bottom: 29 / 1625
  31209. }
  31210. },
  31211. backBiker: {
  31212. height: math.unit(3.5, "meters"),
  31213. weight: math.unit(1200, "kg"),
  31214. name: "Back (Biker)",
  31215. image: {
  31216. source: "./media/characters/joanna/back-biker.svg",
  31217. extra: 1594 / 1495,
  31218. bottom: 88 / 1682
  31219. }
  31220. },
  31221. bikeLeft: {
  31222. height: math.unit(2.4, "meters"),
  31223. weight: math.unit(1600, "kg"),
  31224. name: "Bike (Left)",
  31225. image: {
  31226. source: "./media/characters/joanna/bike-left.svg",
  31227. extra: 720 / 720,
  31228. bottom: 8 / 728
  31229. }
  31230. },
  31231. bikeRight: {
  31232. height: math.unit(2.4, "meters"),
  31233. weight: math.unit(1600, "kg"),
  31234. name: "Bike (Right)",
  31235. image: {
  31236. source: "./media/characters/joanna/bike-right.svg",
  31237. extra: 720 / 720,
  31238. bottom: 8 / 728
  31239. }
  31240. },
  31241. },
  31242. [
  31243. {
  31244. name: "Incognito",
  31245. height: math.unit(3.5, "meters")
  31246. },
  31247. {
  31248. name: "Casual Big",
  31249. height: math.unit(200, "meters")
  31250. },
  31251. {
  31252. name: "Macro",
  31253. height: math.unit(600, "meters")
  31254. },
  31255. {
  31256. name: "Original",
  31257. height: math.unit(20, "km"),
  31258. default: true
  31259. },
  31260. {
  31261. name: "Giga",
  31262. height: math.unit(400, "km")
  31263. },
  31264. {
  31265. name: "Lounging",
  31266. height: math.unit(1500, "km")
  31267. },
  31268. {
  31269. name: "Planetary",
  31270. height: math.unit(200000, "km")
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(6, "feet"),
  31279. weight: math.unit(150, "lb"),
  31280. name: "Front",
  31281. image: {
  31282. source: "./media/characters/hugo-sigil/front.svg",
  31283. extra: 522 / 500,
  31284. bottom: 2 / 524
  31285. }
  31286. },
  31287. back: {
  31288. height: math.unit(6, "feet"),
  31289. weight: math.unit(150, "lb"),
  31290. name: "Back",
  31291. image: {
  31292. source: "./media/characters/hugo-sigil/back.svg",
  31293. extra: 519 / 495,
  31294. bottom: 5 / 524
  31295. }
  31296. },
  31297. maw: {
  31298. height: math.unit(1.4, "feet"),
  31299. weight: math.unit(150, "lb"),
  31300. name: "Maw",
  31301. image: {
  31302. source: "./media/characters/hugo-sigil/maw.svg"
  31303. }
  31304. },
  31305. feet: {
  31306. height: math.unit(1.56, "feet"),
  31307. weight: math.unit(150, "lb"),
  31308. name: "Feet",
  31309. image: {
  31310. source: "./media/characters/hugo-sigil/feet.svg",
  31311. extra: 177 / 177,
  31312. bottom: 12 / 189
  31313. }
  31314. },
  31315. },
  31316. [
  31317. {
  31318. name: "Normal",
  31319. height: math.unit(6, "feet")
  31320. },
  31321. {
  31322. name: "Macro",
  31323. height: math.unit(200, "feet"),
  31324. default: true
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31330. {
  31331. front: {
  31332. height: math.unit(6, "feet"),
  31333. weight: math.unit(150, "lb"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/peri/front.svg",
  31337. extra: 2354 / 2233,
  31338. bottom: 49 / 2403
  31339. }
  31340. },
  31341. },
  31342. [
  31343. {
  31344. name: "Really Small",
  31345. height: math.unit(1, "nm")
  31346. },
  31347. {
  31348. name: "Micro",
  31349. height: math.unit(4, "inches")
  31350. },
  31351. {
  31352. name: "Normal",
  31353. height: math.unit(7, "inches"),
  31354. default: true
  31355. },
  31356. {
  31357. name: "Macro",
  31358. height: math.unit(400, "feet")
  31359. },
  31360. {
  31361. name: "Megamacro",
  31362. height: math.unit(100, "miles")
  31363. },
  31364. ]
  31365. ))
  31366. characterMakers.push(() => makeCharacter(
  31367. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31368. {
  31369. frontSlim: {
  31370. height: math.unit(7, "feet"),
  31371. name: "Front (Slim)",
  31372. image: {
  31373. source: "./media/characters/issilora/front-slim.svg",
  31374. extra: 529 / 449,
  31375. bottom: 53 / 582
  31376. }
  31377. },
  31378. sideSlim: {
  31379. height: math.unit(7, "feet"),
  31380. name: "Side (Slim)",
  31381. image: {
  31382. source: "./media/characters/issilora/side-slim.svg",
  31383. extra: 570 / 480,
  31384. bottom: 30 / 600
  31385. }
  31386. },
  31387. backSlim: {
  31388. height: math.unit(7, "feet"),
  31389. name: "Back (Slim)",
  31390. image: {
  31391. source: "./media/characters/issilora/back-slim.svg",
  31392. extra: 537 / 455,
  31393. bottom: 46 / 583
  31394. }
  31395. },
  31396. frontBuff: {
  31397. height: math.unit(7, "feet"),
  31398. name: "Front (Buff)",
  31399. image: {
  31400. source: "./media/characters/issilora/front-buff.svg",
  31401. extra: 2310 / 2035,
  31402. bottom: 335 / 2645
  31403. }
  31404. },
  31405. head: {
  31406. height: math.unit(1.94, "feet"),
  31407. name: "Head",
  31408. image: {
  31409. source: "./media/characters/issilora/head.svg"
  31410. }
  31411. },
  31412. },
  31413. [
  31414. {
  31415. name: "Minimum",
  31416. height: math.unit(7, "feet")
  31417. },
  31418. {
  31419. name: "Comfortable",
  31420. height: math.unit(17, "feet")
  31421. },
  31422. {
  31423. name: "Fun Size",
  31424. height: math.unit(47, "feet")
  31425. },
  31426. {
  31427. name: "Natural Macro",
  31428. height: math.unit(137, "feet"),
  31429. default: true
  31430. },
  31431. {
  31432. name: "Maximum Kaiju",
  31433. height: math.unit(397, "feet")
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31439. {
  31440. front: {
  31441. height: math.unit(50 + 9/12, "feet"),
  31442. weight: math.unit(32.8, "tons"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/irb'iiritaahn/front.svg",
  31446. extra: 1878/1826,
  31447. bottom: 326/2204
  31448. }
  31449. },
  31450. back: {
  31451. height: math.unit(50 + 9/12, "feet"),
  31452. weight: math.unit(32.8, "tons"),
  31453. name: "Back",
  31454. image: {
  31455. source: "./media/characters/irb'iiritaahn/back.svg",
  31456. extra: 2052/2018,
  31457. bottom: 152/2204
  31458. }
  31459. },
  31460. head: {
  31461. height: math.unit(12.86, "feet"),
  31462. name: "Head",
  31463. image: {
  31464. source: "./media/characters/irb'iiritaahn/head.svg"
  31465. }
  31466. },
  31467. maw: {
  31468. height: math.unit(9.66, "feet"),
  31469. name: "Maw",
  31470. image: {
  31471. source: "./media/characters/irb'iiritaahn/maw.svg"
  31472. }
  31473. },
  31474. frontDick: {
  31475. height: math.unit(8.78461, "feet"),
  31476. name: "Front Dick",
  31477. image: {
  31478. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31479. }
  31480. },
  31481. rearDick: {
  31482. height: math.unit(8.78461, "feet"),
  31483. name: "Rear Dick",
  31484. image: {
  31485. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31486. }
  31487. },
  31488. rearDickUnfolded: {
  31489. height: math.unit(8.78, "feet"),
  31490. name: "Rear Dick (Unfolded)",
  31491. image: {
  31492. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31493. }
  31494. },
  31495. wings: {
  31496. height: math.unit(43, "feet"),
  31497. name: "Wings",
  31498. image: {
  31499. source: "./media/characters/irb'iiritaahn/wings.svg"
  31500. }
  31501. },
  31502. },
  31503. [
  31504. {
  31505. name: "Macro",
  31506. height: math.unit(50 + 9/12, "feet"),
  31507. default: true
  31508. },
  31509. ]
  31510. ))
  31511. characterMakers.push(() => makeCharacter(
  31512. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31513. {
  31514. front: {
  31515. height: math.unit(205, "cm"),
  31516. weight: math.unit(102, "kg"),
  31517. name: "Front",
  31518. image: {
  31519. source: "./media/characters/irbisgreif/front.svg",
  31520. extra: 785/706,
  31521. bottom: 13/798
  31522. }
  31523. },
  31524. back: {
  31525. height: math.unit(205, "cm"),
  31526. weight: math.unit(102, "kg"),
  31527. name: "Back",
  31528. image: {
  31529. source: "./media/characters/irbisgreif/back.svg",
  31530. extra: 713/701,
  31531. bottom: 26/739
  31532. }
  31533. },
  31534. frontDressed: {
  31535. height: math.unit(216, "cm"),
  31536. weight: math.unit(102, "kg"),
  31537. name: "Front-dressed",
  31538. image: {
  31539. source: "./media/characters/irbisgreif/front-dressed.svg",
  31540. extra: 902/776,
  31541. bottom: 14/916
  31542. }
  31543. },
  31544. sideDressed: {
  31545. height: math.unit(195, "cm"),
  31546. weight: math.unit(102, "kg"),
  31547. name: "Side-dressed",
  31548. image: {
  31549. source: "./media/characters/irbisgreif/side-dressed.svg",
  31550. extra: 788/688,
  31551. bottom: 21/809
  31552. }
  31553. },
  31554. backDressed: {
  31555. height: math.unit(216, "cm"),
  31556. weight: math.unit(102, "kg"),
  31557. name: "Back-dressed",
  31558. image: {
  31559. source: "./media/characters/irbisgreif/back-dressed.svg",
  31560. extra: 901/783,
  31561. bottom: 10/911
  31562. }
  31563. },
  31564. dick: {
  31565. height: math.unit(0.49, "feet"),
  31566. name: "Dick",
  31567. image: {
  31568. source: "./media/characters/irbisgreif/dick.svg"
  31569. }
  31570. },
  31571. wingTop: {
  31572. height: math.unit(1.93 , "feet"),
  31573. name: "Wing-top",
  31574. image: {
  31575. source: "./media/characters/irbisgreif/wing-top.svg"
  31576. }
  31577. },
  31578. wingBottom: {
  31579. height: math.unit(1.93 , "feet"),
  31580. name: "Wing-bottom",
  31581. image: {
  31582. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31583. }
  31584. },
  31585. },
  31586. [
  31587. {
  31588. name: "Normal",
  31589. height: math.unit(216, "cm"),
  31590. default: true
  31591. },
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(6, "feet"),
  31599. weight: math.unit(150, "lb"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/pride/front.svg",
  31603. extra: 1299/1230,
  31604. bottom: 18/1317
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(7, "feet")
  31612. },
  31613. {
  31614. name: "Mini-macro",
  31615. height: math.unit(11, "feet")
  31616. },
  31617. {
  31618. name: "Macro",
  31619. height: math.unit(15, "meters"),
  31620. default: true
  31621. },
  31622. {
  31623. name: "Macro+",
  31624. height: math.unit(40, "meters")
  31625. },
  31626. ]
  31627. ))
  31628. characterMakers.push(() => makeCharacter(
  31629. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31630. {
  31631. front: {
  31632. height: math.unit(4 + 2 / 12, "feet"),
  31633. weight: math.unit(95, "lb"),
  31634. name: "Front",
  31635. image: {
  31636. source: "./media/characters/vaelophis-nyx/front.svg",
  31637. extra: 2532/2330,
  31638. bottom: 0/2532
  31639. }
  31640. },
  31641. back: {
  31642. height: math.unit(4 + 2 / 12, "feet"),
  31643. weight: math.unit(95, "lb"),
  31644. name: "Back",
  31645. image: {
  31646. source: "./media/characters/vaelophis-nyx/back.svg",
  31647. extra: 2484/2361,
  31648. bottom: 0/2484
  31649. }
  31650. },
  31651. feralSide: {
  31652. height: math.unit(2 + 1/12, "feet"),
  31653. weight: math.unit(20, "lb"),
  31654. name: "Feral (Side)",
  31655. image: {
  31656. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31657. extra: 1721/1581,
  31658. bottom: 70/1791
  31659. }
  31660. },
  31661. feralLazing: {
  31662. height: math.unit(1.08, "feet"),
  31663. weight: math.unit(20, "lb"),
  31664. name: "Feral (Lazing)",
  31665. image: {
  31666. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31667. extra: 822/822,
  31668. bottom: 248/1070
  31669. }
  31670. },
  31671. ear: {
  31672. height: math.unit(0.416, "feet"),
  31673. name: "Ear",
  31674. image: {
  31675. source: "./media/characters/vaelophis-nyx/ear.svg"
  31676. }
  31677. },
  31678. eye: {
  31679. height: math.unit(0.0748, "feet"),
  31680. name: "Eye",
  31681. image: {
  31682. source: "./media/characters/vaelophis-nyx/eye.svg"
  31683. }
  31684. },
  31685. mouth: {
  31686. height: math.unit(0.378, "feet"),
  31687. name: "Mouth",
  31688. image: {
  31689. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31690. }
  31691. },
  31692. spade: {
  31693. height: math.unit(0.55, "feet"),
  31694. name: "Spade",
  31695. image: {
  31696. source: "./media/characters/vaelophis-nyx/spade.svg"
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(4 + 2/12, "feet"),
  31704. default: true
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31710. {
  31711. front: {
  31712. height: math.unit(7, "feet"),
  31713. weight: math.unit(231, "lb"),
  31714. name: "Front",
  31715. image: {
  31716. source: "./media/characters/flux/front.svg",
  31717. extra: 919/871,
  31718. bottom: 0/919
  31719. }
  31720. },
  31721. back: {
  31722. height: math.unit(7, "feet"),
  31723. weight: math.unit(231, "lb"),
  31724. name: "Back",
  31725. image: {
  31726. source: "./media/characters/flux/back.svg",
  31727. extra: 1040/992,
  31728. bottom: 0/1040
  31729. }
  31730. },
  31731. frontDressed: {
  31732. height: math.unit(7, "feet"),
  31733. weight: math.unit(231, "lb"),
  31734. name: "Front (Dressed)",
  31735. image: {
  31736. source: "./media/characters/flux/front-dressed.svg",
  31737. extra: 919/871,
  31738. bottom: 0/919
  31739. }
  31740. },
  31741. feralSide: {
  31742. height: math.unit(5, "feet"),
  31743. weight: math.unit(150, "lb"),
  31744. name: "Feral (Side)",
  31745. image: {
  31746. source: "./media/characters/flux/feral-side.svg",
  31747. extra: 598/528,
  31748. bottom: 28/626
  31749. }
  31750. },
  31751. head: {
  31752. height: math.unit(1.585, "feet"),
  31753. name: "Head",
  31754. image: {
  31755. source: "./media/characters/flux/head.svg"
  31756. }
  31757. },
  31758. headSide: {
  31759. height: math.unit(1.74, "feet"),
  31760. name: "Head (Side)",
  31761. image: {
  31762. source: "./media/characters/flux/head-side.svg"
  31763. }
  31764. },
  31765. headSideFire: {
  31766. height: math.unit(1.76, "feet"),
  31767. name: "Head (Side, Fire)",
  31768. image: {
  31769. source: "./media/characters/flux/head-side-fire.svg"
  31770. }
  31771. },
  31772. },
  31773. [
  31774. {
  31775. name: "Normal",
  31776. height: math.unit(7, "feet"),
  31777. default: true
  31778. },
  31779. ]
  31780. ))
  31781. characterMakers.push(() => makeCharacter(
  31782. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31783. {
  31784. front: {
  31785. height: math.unit(9, "feet"),
  31786. weight: math.unit(1012, "lb"),
  31787. name: "Front",
  31788. image: {
  31789. source: "./media/characters/ulfra-lupae/front.svg",
  31790. extra: 1083/1011,
  31791. bottom: 67/1150
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Micro",
  31798. height: math.unit(6, "inches")
  31799. },
  31800. {
  31801. name: "Socializing",
  31802. height: math.unit(6 + 5/12, "feet")
  31803. },
  31804. {
  31805. name: "Normal",
  31806. height: math.unit(9, "feet"),
  31807. default: true
  31808. },
  31809. {
  31810. name: "Macro",
  31811. height: math.unit(150, "feet")
  31812. },
  31813. ]
  31814. ))
  31815. characterMakers.push(() => makeCharacter(
  31816. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31817. {
  31818. front: {
  31819. height: math.unit(5 + 2/12, "feet"),
  31820. weight: math.unit(120, "lb"),
  31821. name: "Front",
  31822. image: {
  31823. source: "./media/characters/timber/front.svg",
  31824. extra: 2814/2705,
  31825. bottom: 181/2995
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(5 + 2/12, "feet"),
  31833. default: true
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31839. {
  31840. front: {
  31841. height: math.unit(9, "feet"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/nicki/front.svg",
  31845. extra: 1240/990,
  31846. bottom: 45/1285
  31847. },
  31848. form: "anthro",
  31849. default: true
  31850. },
  31851. side: {
  31852. height: math.unit(9, "feet"),
  31853. name: "Side",
  31854. image: {
  31855. source: "./media/characters/nicki/side.svg",
  31856. extra: 1047/973,
  31857. bottom: 61/1108
  31858. },
  31859. form: "anthro"
  31860. },
  31861. back: {
  31862. height: math.unit(9, "feet"),
  31863. name: "Back",
  31864. image: {
  31865. source: "./media/characters/nicki/back.svg",
  31866. extra: 1006/965,
  31867. bottom: 39/1045
  31868. },
  31869. form: "anthro"
  31870. },
  31871. taur: {
  31872. height: math.unit(15, "feet"),
  31873. name: "Taur",
  31874. image: {
  31875. source: "./media/characters/nicki/taur.svg",
  31876. extra: 1592/1347,
  31877. bottom: 0/1592
  31878. },
  31879. form: "taur",
  31880. default: true
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(9, "feet"),
  31887. form: "anthro",
  31888. default: true
  31889. },
  31890. {
  31891. name: "Normal",
  31892. height: math.unit(15, "feet"),
  31893. form: "taur",
  31894. default: true
  31895. }
  31896. ],
  31897. {
  31898. "anthro": {
  31899. name: "Anthro",
  31900. default: true
  31901. },
  31902. "taur": {
  31903. name: "Taur"
  31904. }
  31905. }
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31909. {
  31910. front: {
  31911. height: math.unit(7 + 10/12, "feet"),
  31912. weight: math.unit(3.5, "tons"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/lee/front.svg",
  31916. extra: 1773/1615,
  31917. bottom: 86/1859
  31918. }
  31919. },
  31920. hand: {
  31921. height: math.unit(1.78, "feet"),
  31922. name: "Hand",
  31923. image: {
  31924. source: "./media/characters/lee/hand.svg"
  31925. }
  31926. },
  31927. maw: {
  31928. height: math.unit(1.18, "feet"),
  31929. name: "Maw",
  31930. image: {
  31931. source: "./media/characters/lee/maw.svg"
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Normal",
  31938. height: math.unit(7 + 10/12, "feet"),
  31939. default: true
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31945. {
  31946. front: {
  31947. height: math.unit(9, "feet"),
  31948. name: "Front",
  31949. image: {
  31950. source: "./media/characters/guti/front.svg",
  31951. extra: 4551/4355,
  31952. bottom: 123/4674
  31953. }
  31954. },
  31955. tongue: {
  31956. height: math.unit(1, "feet"),
  31957. name: "Tongue",
  31958. image: {
  31959. source: "./media/characters/guti/tongue.svg"
  31960. }
  31961. },
  31962. paw: {
  31963. height: math.unit(1.18, "feet"),
  31964. name: "Paw",
  31965. image: {
  31966. source: "./media/characters/guti/paw.svg"
  31967. }
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Normal",
  31973. height: math.unit(9, "feet"),
  31974. default: true
  31975. },
  31976. ]
  31977. ))
  31978. characterMakers.push(() => makeCharacter(
  31979. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31980. {
  31981. side: {
  31982. height: math.unit(5, "meters"),
  31983. name: "Side",
  31984. image: {
  31985. source: "./media/characters/vesper/side.svg",
  31986. extra: 1605/1518,
  31987. bottom: 0/1605
  31988. }
  31989. },
  31990. },
  31991. [
  31992. {
  31993. name: "Small",
  31994. height: math.unit(5, "meters")
  31995. },
  31996. {
  31997. name: "Sage",
  31998. height: math.unit(100, "meters"),
  31999. default: true
  32000. },
  32001. {
  32002. name: "Fun Size",
  32003. height: math.unit(600, "meters")
  32004. },
  32005. {
  32006. name: "Goddess",
  32007. height: math.unit(20000, "km")
  32008. },
  32009. {
  32010. name: "Maximum",
  32011. height: math.unit(5, "galaxies")
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32017. {
  32018. front: {
  32019. height: math.unit(6 + 3/12, "feet"),
  32020. weight: math.unit(190, "lb"),
  32021. name: "Front",
  32022. image: {
  32023. source: "./media/characters/gawain/front.svg",
  32024. extra: 2222/2139,
  32025. bottom: 90/2312
  32026. }
  32027. },
  32028. back: {
  32029. height: math.unit(6 + 3/12, "feet"),
  32030. weight: math.unit(190, "lb"),
  32031. name: "Back",
  32032. image: {
  32033. source: "./media/characters/gawain/back.svg",
  32034. extra: 2199/2111,
  32035. bottom: 73/2272
  32036. }
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Normal",
  32042. height: math.unit(6 + 3/12, "feet"),
  32043. default: true
  32044. },
  32045. ]
  32046. ))
  32047. characterMakers.push(() => makeCharacter(
  32048. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32049. {
  32050. side: {
  32051. height: math.unit(3.5, "meters"),
  32052. weight: math.unit(16000, "lb"),
  32053. name: "Side",
  32054. image: {
  32055. source: "./media/characters/dascalti/side.svg",
  32056. extra: 392/273,
  32057. bottom: 47/439
  32058. }
  32059. },
  32060. breath: {
  32061. height: math.unit(7.4, "feet"),
  32062. name: "Breath",
  32063. image: {
  32064. source: "./media/characters/dascalti/breath.svg"
  32065. }
  32066. },
  32067. fed: {
  32068. height: math.unit(3.6, "meters"),
  32069. weight: math.unit(16000, "lb"),
  32070. name: "Fed",
  32071. image: {
  32072. source: "./media/characters/dascalti/fed.svg",
  32073. extra: 1419/820,
  32074. bottom: 95/1514
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Normal",
  32081. height: math.unit(3.5, "meters"),
  32082. default: true
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32088. {
  32089. front: {
  32090. height: math.unit(3 + 5/12, "feet"),
  32091. name: "Front",
  32092. image: {
  32093. source: "./media/characters/mauve/front.svg",
  32094. extra: 1126/1033,
  32095. bottom: 65/1191
  32096. }
  32097. },
  32098. side: {
  32099. height: math.unit(3 + 5/12, "feet"),
  32100. name: "Side",
  32101. image: {
  32102. source: "./media/characters/mauve/side.svg",
  32103. extra: 1089/1001,
  32104. bottom: 29/1118
  32105. }
  32106. },
  32107. back: {
  32108. height: math.unit(3 + 5/12, "feet"),
  32109. name: "Back",
  32110. image: {
  32111. source: "./media/characters/mauve/back.svg",
  32112. extra: 1173/1053,
  32113. bottom: 109/1282
  32114. }
  32115. },
  32116. },
  32117. [
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(3 + 5/12, "feet"),
  32121. default: true
  32122. },
  32123. ]
  32124. ))
  32125. characterMakers.push(() => makeCharacter(
  32126. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32127. {
  32128. front: {
  32129. height: math.unit(6 + 3/12, "feet"),
  32130. weight: math.unit(430, "lb"),
  32131. name: "Front",
  32132. image: {
  32133. source: "./media/characters/carlos/front.svg",
  32134. extra: 1964/1913,
  32135. bottom: 70/2034
  32136. }
  32137. },
  32138. },
  32139. [
  32140. {
  32141. name: "Normal",
  32142. height: math.unit(6 + 3/12, "feet"),
  32143. default: true
  32144. },
  32145. ]
  32146. ))
  32147. characterMakers.push(() => makeCharacter(
  32148. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32149. {
  32150. back: {
  32151. height: math.unit(5 + 10/12, "feet"),
  32152. weight: math.unit(200, "lb"),
  32153. name: "Back",
  32154. image: {
  32155. source: "./media/characters/jax/back.svg",
  32156. extra: 764/739,
  32157. bottom: 25/789
  32158. }
  32159. },
  32160. },
  32161. [
  32162. {
  32163. name: "Normal",
  32164. height: math.unit(5 + 10/12, "feet"),
  32165. default: true
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32171. {
  32172. front: {
  32173. height: math.unit(8, "feet"),
  32174. weight: math.unit(250, "lb"),
  32175. name: "Front",
  32176. image: {
  32177. source: "./media/characters/eikthynir/front.svg",
  32178. extra: 1332/1166,
  32179. bottom: 82/1414
  32180. }
  32181. },
  32182. back: {
  32183. height: math.unit(8, "feet"),
  32184. weight: math.unit(250, "lb"),
  32185. name: "Back",
  32186. image: {
  32187. source: "./media/characters/eikthynir/back.svg",
  32188. extra: 1342/1190,
  32189. bottom: 19/1361
  32190. }
  32191. },
  32192. dick: {
  32193. height: math.unit(2.35, "feet"),
  32194. name: "Dick",
  32195. image: {
  32196. source: "./media/characters/eikthynir/dick.svg"
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Normal",
  32203. height: math.unit(8, "feet"),
  32204. default: true
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32210. {
  32211. front: {
  32212. height: math.unit(99, "meters"),
  32213. weight: math.unit(13000, "tons"),
  32214. name: "Front",
  32215. image: {
  32216. source: "./media/characters/zlmos/front.svg",
  32217. extra: 2202/1992,
  32218. bottom: 315/2517
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Macro",
  32225. height: math.unit(99, "meters"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32232. {
  32233. front: {
  32234. height: math.unit(6 + 5/12, "feet"),
  32235. name: "Front",
  32236. image: {
  32237. source: "./media/characters/purri/front.svg",
  32238. extra: 1698/1610,
  32239. bottom: 32/1730
  32240. }
  32241. },
  32242. frontAlt: {
  32243. height: math.unit(6 + 5/12, "feet"),
  32244. name: "Front (Alt)",
  32245. image: {
  32246. source: "./media/characters/purri/front-alt.svg",
  32247. extra: 450/420,
  32248. bottom: 26/476
  32249. }
  32250. },
  32251. boots: {
  32252. height: math.unit(5.5, "feet"),
  32253. name: "Boots",
  32254. image: {
  32255. source: "./media/characters/purri/boots.svg",
  32256. extra: 905/853,
  32257. bottom: 18/923
  32258. }
  32259. },
  32260. lying: {
  32261. height: math.unit(2, "feet"),
  32262. name: "Lying",
  32263. image: {
  32264. source: "./media/characters/purri/lying.svg",
  32265. extra: 940/843,
  32266. bottom: 146/1086
  32267. }
  32268. },
  32269. devious: {
  32270. height: math.unit(1.77, "feet"),
  32271. name: "Devious",
  32272. image: {
  32273. source: "./media/characters/purri/devious.svg",
  32274. extra: 1440/1155,
  32275. bottom: 147/1587
  32276. }
  32277. },
  32278. bean: {
  32279. height: math.unit(1.94, "feet"),
  32280. name: "Bean",
  32281. image: {
  32282. source: "./media/characters/purri/bean.svg"
  32283. }
  32284. },
  32285. },
  32286. [
  32287. {
  32288. name: "Micro",
  32289. height: math.unit(1, "mm")
  32290. },
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(6 + 5/12, "feet"),
  32294. default: true
  32295. },
  32296. {
  32297. name: "Macro :3c",
  32298. height: math.unit(2, "miles")
  32299. },
  32300. ]
  32301. ))
  32302. characterMakers.push(() => makeCharacter(
  32303. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32304. {
  32305. front: {
  32306. height: math.unit(6 + 2/12, "feet"),
  32307. weight: math.unit(250, "lb"),
  32308. name: "Front",
  32309. image: {
  32310. source: "./media/characters/moonlight/front.svg",
  32311. extra: 1044/908,
  32312. bottom: 56/1100
  32313. }
  32314. },
  32315. feral: {
  32316. height: math.unit(3 + 1/12, "feet"),
  32317. weight: math.unit(50, "kg"),
  32318. name: "Feral",
  32319. image: {
  32320. source: "./media/characters/moonlight/feral.svg",
  32321. extra: 3705/2791,
  32322. bottom: 145/3850
  32323. }
  32324. },
  32325. paw: {
  32326. height: math.unit(1, "feet"),
  32327. name: "Paw",
  32328. image: {
  32329. source: "./media/characters/moonlight/paw.svg"
  32330. }
  32331. },
  32332. paws: {
  32333. height: math.unit(0.98, "feet"),
  32334. name: "Paws",
  32335. image: {
  32336. source: "./media/characters/moonlight/paws.svg",
  32337. extra: 939/939,
  32338. bottom: 50/989
  32339. }
  32340. },
  32341. mouth: {
  32342. height: math.unit(0.48, "feet"),
  32343. name: "Mouth",
  32344. image: {
  32345. source: "./media/characters/moonlight/mouth.svg"
  32346. }
  32347. },
  32348. dick: {
  32349. height: math.unit(1.46, "feet"),
  32350. name: "Dick",
  32351. image: {
  32352. source: "./media/characters/moonlight/dick.svg"
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(6 + 2/12, "feet"),
  32360. default: true
  32361. },
  32362. {
  32363. name: "Macro",
  32364. height: math.unit(300, "feet")
  32365. },
  32366. {
  32367. name: "Macro+",
  32368. height: math.unit(1, "mile")
  32369. },
  32370. {
  32371. name: "Mt. Moon",
  32372. height: math.unit(5, "miles")
  32373. },
  32374. {
  32375. name: "Megamacro",
  32376. height: math.unit(15, "miles")
  32377. },
  32378. ]
  32379. ))
  32380. characterMakers.push(() => makeCharacter(
  32381. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32382. {
  32383. back: {
  32384. height: math.unit(6, "feet"),
  32385. weight: math.unit(150, "lb"),
  32386. name: "Back",
  32387. image: {
  32388. source: "./media/characters/sylen/back.svg",
  32389. extra: 1335/1273,
  32390. bottom: 107/1442
  32391. }
  32392. },
  32393. },
  32394. [
  32395. {
  32396. name: "Normal",
  32397. height: math.unit(5 + 5/12, "feet")
  32398. },
  32399. {
  32400. name: "Megamacro",
  32401. height: math.unit(3, "miles"),
  32402. default: true
  32403. },
  32404. ]
  32405. ))
  32406. characterMakers.push(() => makeCharacter(
  32407. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32408. {
  32409. front: {
  32410. height: math.unit(6, "feet"),
  32411. weight: math.unit(190, "lb"),
  32412. name: "Front",
  32413. image: {
  32414. source: "./media/characters/huttser/front.svg",
  32415. extra: 1152/1058,
  32416. bottom: 23/1175
  32417. }
  32418. },
  32419. side: {
  32420. height: math.unit(6, "feet"),
  32421. weight: math.unit(190, "lb"),
  32422. name: "Side",
  32423. image: {
  32424. source: "./media/characters/huttser/side.svg",
  32425. extra: 1174/1065,
  32426. bottom: 18/1192
  32427. }
  32428. },
  32429. back: {
  32430. height: math.unit(6, "feet"),
  32431. weight: math.unit(190, "lb"),
  32432. name: "Back",
  32433. image: {
  32434. source: "./media/characters/huttser/back.svg",
  32435. extra: 1158/1056,
  32436. bottom: 12/1170
  32437. }
  32438. },
  32439. },
  32440. [
  32441. ]
  32442. ))
  32443. characterMakers.push(() => makeCharacter(
  32444. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32445. {
  32446. side: {
  32447. height: math.unit(12 + 9/12, "feet"),
  32448. weight: math.unit(15000, "lb"),
  32449. name: "Side",
  32450. image: {
  32451. source: "./media/characters/faan/side.svg",
  32452. extra: 2747/2697,
  32453. bottom: 0/2747
  32454. }
  32455. },
  32456. front: {
  32457. height: math.unit(12 + 9/12, "feet"),
  32458. weight: math.unit(15000, "lb"),
  32459. name: "Front",
  32460. image: {
  32461. source: "./media/characters/faan/front.svg",
  32462. extra: 607/571,
  32463. bottom: 24/631
  32464. }
  32465. },
  32466. head: {
  32467. height: math.unit(2.85, "feet"),
  32468. name: "Head",
  32469. image: {
  32470. source: "./media/characters/faan/head.svg"
  32471. }
  32472. },
  32473. headAlt: {
  32474. height: math.unit(3.13, "feet"),
  32475. name: "Head-alt",
  32476. image: {
  32477. source: "./media/characters/faan/head-alt.svg"
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(12 + 9/12, "feet"),
  32485. default: true
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32491. {
  32492. front: {
  32493. height: math.unit(6, "feet"),
  32494. weight: math.unit(300, "lb"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/tanio/front.svg",
  32498. extra: 711/673,
  32499. bottom: 25/736
  32500. }
  32501. },
  32502. },
  32503. [
  32504. {
  32505. name: "Normal",
  32506. height: math.unit(6, "feet"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(3, "inches"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/noboru/front.svg",
  32519. extra: 1039/932,
  32520. bottom: 18/1057
  32521. }
  32522. },
  32523. },
  32524. [
  32525. {
  32526. name: "Micro",
  32527. height: math.unit(3, "inches"),
  32528. default: true
  32529. },
  32530. ]
  32531. ))
  32532. characterMakers.push(() => makeCharacter(
  32533. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32534. {
  32535. front: {
  32536. height: math.unit(1.85, "meters"),
  32537. weight: math.unit(80, "kg"),
  32538. name: "Front",
  32539. image: {
  32540. source: "./media/characters/daniel-barrett/front.svg",
  32541. extra: 355/337,
  32542. bottom: 9/364
  32543. }
  32544. },
  32545. },
  32546. [
  32547. {
  32548. name: "Pico",
  32549. height: math.unit(0.0433, "mm")
  32550. },
  32551. {
  32552. name: "Nano",
  32553. height: math.unit(1.5, "mm")
  32554. },
  32555. {
  32556. name: "Micro",
  32557. height: math.unit(5.3, "cm"),
  32558. default: true
  32559. },
  32560. {
  32561. name: "Normal",
  32562. height: math.unit(1.85, "meters")
  32563. },
  32564. {
  32565. name: "Macro",
  32566. height: math.unit(64.7, "meters")
  32567. },
  32568. {
  32569. name: "Megamacro",
  32570. height: math.unit(2.26, "km")
  32571. },
  32572. {
  32573. name: "Gigamacro",
  32574. height: math.unit(79, "km")
  32575. },
  32576. {
  32577. name: "Teramacro",
  32578. height: math.unit(2765, "km")
  32579. },
  32580. {
  32581. name: "Petamacro",
  32582. height: math.unit(96678, "km")
  32583. },
  32584. ]
  32585. ))
  32586. characterMakers.push(() => makeCharacter(
  32587. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32588. {
  32589. front: {
  32590. height: math.unit(30, "meters"),
  32591. weight: math.unit(400, "tons"),
  32592. name: "Front",
  32593. image: {
  32594. source: "./media/characters/zeel/front.svg",
  32595. extra: 2599/2599,
  32596. bottom: 226/2825
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Macro",
  32603. height: math.unit(30, "meters"),
  32604. default: true
  32605. },
  32606. ]
  32607. ))
  32608. characterMakers.push(() => makeCharacter(
  32609. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32610. {
  32611. front: {
  32612. height: math.unit(6 + 7/12, "feet"),
  32613. weight: math.unit(210, "lb"),
  32614. name: "Front",
  32615. image: {
  32616. source: "./media/characters/tarn/front.svg",
  32617. extra: 3517/3220,
  32618. bottom: 91/3608
  32619. }
  32620. },
  32621. back: {
  32622. height: math.unit(6 + 7/12, "feet"),
  32623. weight: math.unit(210, "lb"),
  32624. name: "Back",
  32625. image: {
  32626. source: "./media/characters/tarn/back.svg",
  32627. extra: 3566/3241,
  32628. bottom: 34/3600
  32629. }
  32630. },
  32631. dick: {
  32632. height: math.unit(1.65, "feet"),
  32633. name: "Dick",
  32634. image: {
  32635. source: "./media/characters/tarn/dick.svg"
  32636. }
  32637. },
  32638. paw: {
  32639. height: math.unit(1.80, "feet"),
  32640. name: "Paw",
  32641. image: {
  32642. source: "./media/characters/tarn/paw.svg"
  32643. }
  32644. },
  32645. tongue: {
  32646. height: math.unit(0.97, "feet"),
  32647. name: "Tongue",
  32648. image: {
  32649. source: "./media/characters/tarn/tongue.svg"
  32650. }
  32651. },
  32652. },
  32653. [
  32654. {
  32655. name: "Micro",
  32656. height: math.unit(4, "inches")
  32657. },
  32658. {
  32659. name: "Normal",
  32660. height: math.unit(6 + 7/12, "feet"),
  32661. default: true
  32662. },
  32663. {
  32664. name: "Macro",
  32665. height: math.unit(300, "feet")
  32666. },
  32667. ]
  32668. ))
  32669. characterMakers.push(() => makeCharacter(
  32670. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32671. {
  32672. front: {
  32673. height: math.unit(5 + 7/12, "feet"),
  32674. weight: math.unit(80, "kg"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32678. extra: 3023/2865,
  32679. bottom: 33/3056
  32680. }
  32681. },
  32682. back: {
  32683. height: math.unit(5 + 7/12, "feet"),
  32684. weight: math.unit(80, "kg"),
  32685. name: "Back",
  32686. image: {
  32687. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32688. extra: 3020/2886,
  32689. bottom: 30/3050
  32690. }
  32691. },
  32692. dick: {
  32693. height: math.unit(0.98, "feet"),
  32694. name: "Dick",
  32695. image: {
  32696. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32697. }
  32698. },
  32699. anatomy: {
  32700. height: math.unit(2.86, "feet"),
  32701. name: "Anatomy",
  32702. image: {
  32703. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Really Small",
  32710. height: math.unit(2, "inches")
  32711. },
  32712. {
  32713. name: "Micro",
  32714. height: math.unit(5.583, "inches")
  32715. },
  32716. {
  32717. name: "Normal",
  32718. height: math.unit(5 + 7/12, "feet"),
  32719. default: true
  32720. },
  32721. {
  32722. name: "Macro",
  32723. height: math.unit(67, "feet")
  32724. },
  32725. {
  32726. name: "Megamacro",
  32727. height: math.unit(134, "feet")
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32733. {
  32734. front: {
  32735. height: math.unit(9, "feet"),
  32736. weight: math.unit(120, "lb"),
  32737. name: "Front",
  32738. image: {
  32739. source: "./media/characters/sally/front.svg",
  32740. extra: 1506/1349,
  32741. bottom: 66/1572
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Normal",
  32748. height: math.unit(9, "feet"),
  32749. default: true
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32755. {
  32756. front: {
  32757. height: math.unit(8, "feet"),
  32758. weight: math.unit(900, "lb"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/owen/front.svg",
  32762. extra: 1761/1657,
  32763. bottom: 74/1835
  32764. }
  32765. },
  32766. side: {
  32767. height: math.unit(8, "feet"),
  32768. weight: math.unit(900, "lb"),
  32769. name: "Side",
  32770. image: {
  32771. source: "./media/characters/owen/side.svg",
  32772. extra: 1797/1734,
  32773. bottom: 30/1827
  32774. }
  32775. },
  32776. back: {
  32777. height: math.unit(8, "feet"),
  32778. weight: math.unit(900, "lb"),
  32779. name: "Back",
  32780. image: {
  32781. source: "./media/characters/owen/back.svg",
  32782. extra: 1796/1706,
  32783. bottom: 59/1855
  32784. }
  32785. },
  32786. maw: {
  32787. height: math.unit(1.76, "feet"),
  32788. name: "Maw",
  32789. image: {
  32790. source: "./media/characters/owen/maw.svg"
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Normal",
  32797. height: math.unit(8, "feet"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32804. {
  32805. front: {
  32806. height: math.unit(4, "feet"),
  32807. weight: math.unit(400, "lb"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/ryth/front.svg",
  32811. extra: 1920/1748,
  32812. bottom: 42/1962
  32813. }
  32814. },
  32815. back: {
  32816. height: math.unit(4, "feet"),
  32817. weight: math.unit(400, "lb"),
  32818. name: "Back",
  32819. image: {
  32820. source: "./media/characters/ryth/back.svg",
  32821. extra: 1897/1690,
  32822. bottom: 89/1986
  32823. }
  32824. },
  32825. mouth: {
  32826. height: math.unit(1.39, "feet"),
  32827. name: "Mouth",
  32828. image: {
  32829. source: "./media/characters/ryth/mouth.svg"
  32830. }
  32831. },
  32832. tailmaw: {
  32833. height: math.unit(1.23, "feet"),
  32834. name: "Tailmaw",
  32835. image: {
  32836. source: "./media/characters/ryth/tailmaw.svg"
  32837. }
  32838. },
  32839. goia: {
  32840. height: math.unit(4, "meters"),
  32841. weight: math.unit(10800, "lb"),
  32842. name: "Goia",
  32843. image: {
  32844. source: "./media/characters/ryth/goia.svg",
  32845. extra: 745/640,
  32846. bottom: 107/852
  32847. }
  32848. },
  32849. goiaFront: {
  32850. height: math.unit(4, "meters"),
  32851. weight: math.unit(10800, "lb"),
  32852. name: "Goia (Front)",
  32853. image: {
  32854. source: "./media/characters/ryth/goia-front.svg",
  32855. extra: 750/586,
  32856. bottom: 114/864
  32857. }
  32858. },
  32859. goiaMaw: {
  32860. height: math.unit(5.55, "feet"),
  32861. name: "Goia Maw",
  32862. image: {
  32863. source: "./media/characters/ryth/goia-maw.svg"
  32864. }
  32865. },
  32866. goiaForepaw: {
  32867. height: math.unit(3.5, "feet"),
  32868. name: "Goia Forepaw",
  32869. image: {
  32870. source: "./media/characters/ryth/goia-forepaw.svg"
  32871. }
  32872. },
  32873. goiaHindpaw: {
  32874. height: math.unit(5.55, "feet"),
  32875. name: "Goia Hindpaw",
  32876. image: {
  32877. source: "./media/characters/ryth/goia-hindpaw.svg"
  32878. }
  32879. },
  32880. },
  32881. [
  32882. {
  32883. name: "Normal",
  32884. height: math.unit(4, "feet"),
  32885. default: true
  32886. },
  32887. ]
  32888. ))
  32889. characterMakers.push(() => makeCharacter(
  32890. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32891. {
  32892. front: {
  32893. height: math.unit(7, "feet"),
  32894. weight: math.unit(180, "lb"),
  32895. name: "Front",
  32896. image: {
  32897. source: "./media/characters/necrolance/front.svg",
  32898. extra: 1062/947,
  32899. bottom: 41/1103
  32900. }
  32901. },
  32902. back: {
  32903. height: math.unit(7, "feet"),
  32904. weight: math.unit(180, "lb"),
  32905. name: "Back",
  32906. image: {
  32907. source: "./media/characters/necrolance/back.svg",
  32908. extra: 1045/984,
  32909. bottom: 14/1059
  32910. }
  32911. },
  32912. wing: {
  32913. height: math.unit(2.67, "feet"),
  32914. name: "Wing",
  32915. image: {
  32916. source: "./media/characters/necrolance/wing.svg"
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(7, "feet"),
  32924. default: true
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32930. {
  32931. front: {
  32932. height: math.unit(76, "meters"),
  32933. weight: math.unit(30000, "tons"),
  32934. name: "Front",
  32935. image: {
  32936. source: "./media/characters/tyler/front.svg",
  32937. extra: 1640/1640,
  32938. bottom: 114/1754
  32939. }
  32940. },
  32941. },
  32942. [
  32943. {
  32944. name: "Macro",
  32945. height: math.unit(76, "meters"),
  32946. default: true
  32947. },
  32948. ]
  32949. ))
  32950. characterMakers.push(() => makeCharacter(
  32951. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32952. {
  32953. front: {
  32954. height: math.unit(4 + 11/12, "feet"),
  32955. weight: math.unit(132, "lb"),
  32956. name: "Front",
  32957. image: {
  32958. source: "./media/characters/icey/front.svg",
  32959. extra: 2750/2550,
  32960. bottom: 33/2783
  32961. }
  32962. },
  32963. back: {
  32964. height: math.unit(4 + 11/12, "feet"),
  32965. weight: math.unit(132, "lb"),
  32966. name: "Back",
  32967. image: {
  32968. source: "./media/characters/icey/back.svg",
  32969. extra: 2624/2481,
  32970. bottom: 35/2659
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(4 + 11/12, "feet"),
  32978. default: true
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32984. {
  32985. front: {
  32986. height: math.unit(100, "feet"),
  32987. weight: math.unit(0, "lb"),
  32988. name: "Front",
  32989. image: {
  32990. source: "./media/characters/smile/front.svg",
  32991. extra: 2983/2912,
  32992. bottom: 162/3145
  32993. }
  32994. },
  32995. back: {
  32996. height: math.unit(100, "feet"),
  32997. weight: math.unit(0, "lb"),
  32998. name: "Back",
  32999. image: {
  33000. source: "./media/characters/smile/back.svg",
  33001. extra: 3143/3031,
  33002. bottom: 91/3234
  33003. }
  33004. },
  33005. head: {
  33006. height: math.unit(26.3, "feet"),
  33007. weight: math.unit(0, "lb"),
  33008. name: "Head",
  33009. image: {
  33010. source: "./media/characters/smile/head.svg"
  33011. }
  33012. },
  33013. collar: {
  33014. height: math.unit(5.3, "feet"),
  33015. weight: math.unit(0, "lb"),
  33016. name: "Collar",
  33017. image: {
  33018. source: "./media/characters/smile/collar.svg"
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Macro",
  33025. height: math.unit(100, "feet"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33032. {
  33033. dragon: {
  33034. height: math.unit(26, "feet"),
  33035. weight: math.unit(36, "tons"),
  33036. name: "Dragon",
  33037. image: {
  33038. source: "./media/characters/arimphae/dragon.svg",
  33039. extra: 1574/983,
  33040. bottom: 357/1931
  33041. }
  33042. },
  33043. drake: {
  33044. height: math.unit(9, "feet"),
  33045. weight: math.unit(1.5, "tons"),
  33046. name: "Drake",
  33047. image: {
  33048. source: "./media/characters/arimphae/drake.svg",
  33049. extra: 1120/925,
  33050. bottom: 435/1555
  33051. }
  33052. },
  33053. },
  33054. [
  33055. {
  33056. name: "Small",
  33057. height: math.unit(26*5/9, "feet")
  33058. },
  33059. {
  33060. name: "Normal",
  33061. height: math.unit(26, "feet"),
  33062. default: true
  33063. },
  33064. ]
  33065. ))
  33066. characterMakers.push(() => makeCharacter(
  33067. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33068. {
  33069. front: {
  33070. height: math.unit(8 + 9/12, "feet"),
  33071. name: "Front",
  33072. image: {
  33073. source: "./media/characters/xander/front.svg",
  33074. extra: 1237/974,
  33075. bottom: 94/1331
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(8 + 9/12, "feet"),
  33083. default: true
  33084. },
  33085. {
  33086. name: "Gaze Grabber",
  33087. height: math.unit(13 + 8/12, "feet")
  33088. },
  33089. {
  33090. name: "Jaw Dropper",
  33091. height: math.unit(27, "feet")
  33092. },
  33093. {
  33094. name: "Show Stopper",
  33095. height: math.unit(136, "feet")
  33096. },
  33097. {
  33098. name: "Superstar",
  33099. height: math.unit(1.9e6, "miles")
  33100. },
  33101. ]
  33102. ))
  33103. characterMakers.push(() => makeCharacter(
  33104. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33105. {
  33106. side: {
  33107. height: math.unit(2100, "feet"),
  33108. name: "Side",
  33109. image: {
  33110. source: "./media/characters/osiris/side.svg",
  33111. extra: 1105/939,
  33112. bottom: 167/1272
  33113. }
  33114. },
  33115. },
  33116. [
  33117. {
  33118. name: "Macro",
  33119. height: math.unit(2100, "feet"),
  33120. default: true
  33121. },
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33126. {
  33127. front: {
  33128. height: math.unit(6 + 8/12, "feet"),
  33129. weight: math.unit(225, "lb"),
  33130. name: "Front",
  33131. image: {
  33132. source: "./media/characters/rhys-londe/front.svg",
  33133. extra: 2258/2141,
  33134. bottom: 188/2446
  33135. }
  33136. },
  33137. back: {
  33138. height: math.unit(6 + 8/12, "feet"),
  33139. weight: math.unit(225, "lb"),
  33140. name: "Back",
  33141. image: {
  33142. source: "./media/characters/rhys-londe/back.svg",
  33143. extra: 2237/2137,
  33144. bottom: 63/2300
  33145. }
  33146. },
  33147. frontNsfw: {
  33148. height: math.unit(6 + 8/12, "feet"),
  33149. weight: math.unit(225, "lb"),
  33150. name: "Front (NSFW)",
  33151. image: {
  33152. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33153. extra: 2258/2141,
  33154. bottom: 188/2446
  33155. }
  33156. },
  33157. backNsfw: {
  33158. height: math.unit(6 + 8/12, "feet"),
  33159. weight: math.unit(225, "lb"),
  33160. name: "Back (NSFW)",
  33161. image: {
  33162. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33163. extra: 2237/2137,
  33164. bottom: 63/2300
  33165. }
  33166. },
  33167. dick: {
  33168. height: math.unit(30, "inches"),
  33169. name: "Dick",
  33170. image: {
  33171. source: "./media/characters/rhys-londe/dick.svg"
  33172. }
  33173. },
  33174. maw: {
  33175. height: math.unit(1.6, "feet"),
  33176. name: "Maw",
  33177. image: {
  33178. source: "./media/characters/rhys-londe/maw.svg"
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(6 + 8/12, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(3 + 10/12, "feet"),
  33195. weight: math.unit(90, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/taivas-ensim/front.svg",
  33199. extra: 1327/1216,
  33200. bottom: 96/1423
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(3 + 10/12, "feet"),
  33205. weight: math.unit(90, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/taivas-ensim/back.svg",
  33209. extra: 1355/1247,
  33210. bottom: 11/1366
  33211. }
  33212. },
  33213. frontNsfw: {
  33214. height: math.unit(3 + 10/12, "feet"),
  33215. weight: math.unit(90, "lb"),
  33216. name: "Front (NSFW)",
  33217. image: {
  33218. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33219. extra: 1327/1216,
  33220. bottom: 96/1423
  33221. }
  33222. },
  33223. backNsfw: {
  33224. height: math.unit(3 + 10/12, "feet"),
  33225. weight: math.unit(90, "lb"),
  33226. name: "Back (NSFW)",
  33227. image: {
  33228. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33229. extra: 1355/1247,
  33230. bottom: 11/1366
  33231. }
  33232. },
  33233. },
  33234. [
  33235. {
  33236. name: "Normal",
  33237. height: math.unit(3 + 10/12, "feet"),
  33238. default: true
  33239. },
  33240. ]
  33241. ))
  33242. characterMakers.push(() => makeCharacter(
  33243. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33244. {
  33245. front: {
  33246. height: math.unit(9 + 6/12, "feet"),
  33247. weight: math.unit(940, "lb"),
  33248. name: "Front",
  33249. image: {
  33250. source: "./media/characters/byliss/front.svg",
  33251. extra: 1327/1290,
  33252. bottom: 82/1409
  33253. }
  33254. },
  33255. back: {
  33256. height: math.unit(9 + 6/12, "feet"),
  33257. weight: math.unit(940, "lb"),
  33258. name: "Back",
  33259. image: {
  33260. source: "./media/characters/byliss/back.svg",
  33261. extra: 1376/1349,
  33262. bottom: 9/1385
  33263. }
  33264. },
  33265. frontNsfw: {
  33266. height: math.unit(9 + 6/12, "feet"),
  33267. weight: math.unit(940, "lb"),
  33268. name: "Front (NSFW)",
  33269. image: {
  33270. source: "./media/characters/byliss/front-nsfw.svg",
  33271. extra: 1327/1290,
  33272. bottom: 82/1409
  33273. }
  33274. },
  33275. backNsfw: {
  33276. height: math.unit(9 + 6/12, "feet"),
  33277. weight: math.unit(940, "lb"),
  33278. name: "Back (NSFW)",
  33279. image: {
  33280. source: "./media/characters/byliss/back-nsfw.svg",
  33281. extra: 1376/1349,
  33282. bottom: 9/1385
  33283. }
  33284. },
  33285. },
  33286. [
  33287. {
  33288. name: "Normal",
  33289. height: math.unit(9 + 6/12, "feet"),
  33290. default: true
  33291. },
  33292. ]
  33293. ))
  33294. characterMakers.push(() => makeCharacter(
  33295. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33296. {
  33297. front: {
  33298. height: math.unit(5 + 2/12, "feet"),
  33299. weight: math.unit(200, "lb"),
  33300. name: "Front",
  33301. image: {
  33302. source: "./media/characters/noraly/front.svg",
  33303. extra: 4985/4773,
  33304. bottom: 150/5135
  33305. }
  33306. },
  33307. full: {
  33308. height: math.unit(5 + 2/12, "feet"),
  33309. weight: math.unit(164, "lb"),
  33310. name: "Full",
  33311. image: {
  33312. source: "./media/characters/noraly/full.svg",
  33313. extra: 1114/1059,
  33314. bottom: 35/1149
  33315. }
  33316. },
  33317. fuller: {
  33318. height: math.unit(5 + 2/12, "feet"),
  33319. weight: math.unit(230, "lb"),
  33320. name: "Fuller",
  33321. image: {
  33322. source: "./media/characters/noraly/fuller.svg",
  33323. extra: 1114/1059,
  33324. bottom: 35/1149
  33325. }
  33326. },
  33327. fullest: {
  33328. height: math.unit(5 + 2/12, "feet"),
  33329. weight: math.unit(300, "lb"),
  33330. name: "Fullest",
  33331. image: {
  33332. source: "./media/characters/noraly/fullest.svg",
  33333. extra: 1114/1059,
  33334. bottom: 35/1149
  33335. }
  33336. },
  33337. },
  33338. [
  33339. {
  33340. name: "Normal",
  33341. height: math.unit(5 + 2/12, "feet"),
  33342. default: true
  33343. },
  33344. ]
  33345. ))
  33346. characterMakers.push(() => makeCharacter(
  33347. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33348. {
  33349. front: {
  33350. height: math.unit(5 + 2/12, "feet"),
  33351. weight: math.unit(210, "lb"),
  33352. name: "Front",
  33353. image: {
  33354. source: "./media/characters/pera/front.svg",
  33355. extra: 1560/1531,
  33356. bottom: 165/1725
  33357. }
  33358. },
  33359. back: {
  33360. height: math.unit(5 + 2/12, "feet"),
  33361. weight: math.unit(210, "lb"),
  33362. name: "Back",
  33363. image: {
  33364. source: "./media/characters/pera/back.svg",
  33365. extra: 1523/1493,
  33366. bottom: 152/1675
  33367. }
  33368. },
  33369. dick: {
  33370. height: math.unit(2.4, "feet"),
  33371. name: "Dick",
  33372. image: {
  33373. source: "./media/characters/pera/dick.svg"
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Normal",
  33380. height: math.unit(5 + 2/12, "feet"),
  33381. default: true
  33382. },
  33383. ]
  33384. ))
  33385. characterMakers.push(() => makeCharacter(
  33386. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33387. {
  33388. front: {
  33389. height: math.unit(12, "feet"),
  33390. weight: math.unit(3200, "lb"),
  33391. name: "Front",
  33392. image: {
  33393. source: "./media/characters/julian/front.svg",
  33394. extra: 2962/2701,
  33395. bottom: 184/3146
  33396. }
  33397. },
  33398. maw: {
  33399. height: math.unit(5.35, "feet"),
  33400. name: "Maw",
  33401. image: {
  33402. source: "./media/characters/julian/maw.svg"
  33403. }
  33404. },
  33405. paw: {
  33406. height: math.unit(3.07, "feet"),
  33407. name: "Paw",
  33408. image: {
  33409. source: "./media/characters/julian/paw.svg"
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Default",
  33416. height: math.unit(12, "feet"),
  33417. default: true
  33418. },
  33419. {
  33420. name: "Big",
  33421. height: math.unit(50, "feet")
  33422. },
  33423. {
  33424. name: "Really Big",
  33425. height: math.unit(1, "mile")
  33426. },
  33427. {
  33428. name: "Extremely Big",
  33429. height: math.unit(100, "miles")
  33430. },
  33431. {
  33432. name: "Planet Hugger",
  33433. height: math.unit(200, "megameters")
  33434. },
  33435. {
  33436. name: "Unreasonably Big",
  33437. height: math.unit(1e300, "meters")
  33438. },
  33439. ]
  33440. ))
  33441. characterMakers.push(() => makeCharacter(
  33442. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33443. {
  33444. solgooleo: {
  33445. height: math.unit(4, "meters"),
  33446. weight: math.unit(6000*1.5, "kg"),
  33447. volume: math.unit(6000, "liters"),
  33448. name: "Solgooleo",
  33449. image: {
  33450. source: "./media/characters/pi/solgooleo.svg",
  33451. extra: 388/331,
  33452. bottom: 29/417
  33453. }
  33454. },
  33455. },
  33456. [
  33457. {
  33458. name: "Normal",
  33459. height: math.unit(4, "meters"),
  33460. default: true
  33461. },
  33462. ]
  33463. ))
  33464. characterMakers.push(() => makeCharacter(
  33465. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33466. {
  33467. front: {
  33468. height: math.unit(8, "feet"),
  33469. weight: math.unit(4, "tons"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/shaun/front.svg",
  33473. extra: 503/495,
  33474. bottom: 20/523
  33475. }
  33476. },
  33477. back: {
  33478. height: math.unit(8, "feet"),
  33479. weight: math.unit(4, "tons"),
  33480. name: "Back",
  33481. image: {
  33482. source: "./media/characters/shaun/back.svg",
  33483. extra: 487/480,
  33484. bottom: 20/507
  33485. }
  33486. },
  33487. },
  33488. [
  33489. {
  33490. name: "Lorg",
  33491. height: math.unit(8, "feet"),
  33492. default: true
  33493. },
  33494. ]
  33495. ))
  33496. characterMakers.push(() => makeCharacter(
  33497. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33498. {
  33499. frontAnthro: {
  33500. height: math.unit(7, "feet"),
  33501. name: "Front",
  33502. image: {
  33503. source: "./media/characters/sini/front-anthro.svg",
  33504. extra: 726/678,
  33505. bottom: 35/761
  33506. },
  33507. form: "anthro",
  33508. default: true
  33509. },
  33510. backAnthro: {
  33511. height: math.unit(7, "feet"),
  33512. name: "Back",
  33513. image: {
  33514. source: "./media/characters/sini/back-anthro.svg",
  33515. extra: 743/701,
  33516. bottom: 12/755
  33517. },
  33518. form: "anthro",
  33519. },
  33520. frontAnthroNsfw: {
  33521. height: math.unit(7, "feet"),
  33522. name: "Front (NSFW)",
  33523. image: {
  33524. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33525. extra: 726/678,
  33526. bottom: 35/761
  33527. },
  33528. form: "anthro"
  33529. },
  33530. backAnthroNsfw: {
  33531. height: math.unit(7, "feet"),
  33532. name: "Back (NSFW)",
  33533. image: {
  33534. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33535. extra: 743/701,
  33536. bottom: 12/755
  33537. },
  33538. form: "anthro",
  33539. },
  33540. mawAnthro: {
  33541. height: math.unit(2.14, "feet"),
  33542. name: "Maw",
  33543. image: {
  33544. source: "./media/characters/sini/maw-anthro.svg"
  33545. },
  33546. form: "anthro"
  33547. },
  33548. dick: {
  33549. height: math.unit(1.45, "feet"),
  33550. name: "Dick",
  33551. image: {
  33552. source: "./media/characters/sini/dick-anthro.svg"
  33553. },
  33554. form: "anthro"
  33555. },
  33556. feral: {
  33557. height: math.unit(16, "feet"),
  33558. name: "Feral",
  33559. image: {
  33560. source: "./media/characters/sini/feral.svg",
  33561. extra: 814/605,
  33562. bottom: 11/825
  33563. },
  33564. form: "feral",
  33565. default: true
  33566. },
  33567. feralNsfw: {
  33568. height: math.unit(16, "feet"),
  33569. name: "Feral (NSFW)",
  33570. image: {
  33571. source: "./media/characters/sini/feral-nsfw.svg",
  33572. extra: 814/605,
  33573. bottom: 11/825
  33574. },
  33575. form: "feral"
  33576. },
  33577. mawFeral: {
  33578. height: math.unit(5.66, "feet"),
  33579. name: "Maw",
  33580. image: {
  33581. source: "./media/characters/sini/maw-feral.svg"
  33582. },
  33583. form: "feral",
  33584. },
  33585. pawFeral: {
  33586. height: math.unit(5.17, "feet"),
  33587. name: "Paw",
  33588. image: {
  33589. source: "./media/characters/sini/paw-feral.svg"
  33590. },
  33591. form: "feral",
  33592. },
  33593. rumpFeral: {
  33594. height: math.unit(13.11, "feet"),
  33595. name: "Rump",
  33596. image: {
  33597. source: "./media/characters/sini/rump-feral.svg"
  33598. },
  33599. form: "feral",
  33600. },
  33601. dickFeral: {
  33602. height: math.unit(1, "feet"),
  33603. name: "Dick",
  33604. image: {
  33605. source: "./media/characters/sini/dick-feral.svg"
  33606. },
  33607. form: "feral",
  33608. },
  33609. eyeFeral: {
  33610. height: math.unit(1.23, "feet"),
  33611. name: "Eye",
  33612. image: {
  33613. source: "./media/characters/sini/eye-feral.svg"
  33614. },
  33615. form: "feral",
  33616. },
  33617. },
  33618. [
  33619. {
  33620. name: "Normal",
  33621. height: math.unit(7, "feet"),
  33622. default: true,
  33623. form: "anthro"
  33624. },
  33625. {
  33626. name: "Normal",
  33627. height: math.unit(16, "feet"),
  33628. default: true,
  33629. form: "feral"
  33630. },
  33631. ],
  33632. {
  33633. "anthro": {
  33634. name: "Anthro",
  33635. default: true
  33636. },
  33637. "feral": {
  33638. name: "Feral",
  33639. }
  33640. }
  33641. ))
  33642. characterMakers.push(() => makeCharacter(
  33643. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33644. {
  33645. side: {
  33646. height: math.unit(13, "meters"),
  33647. weight: math.unit(9072, "kg"),
  33648. name: "Side",
  33649. image: {
  33650. source: "./media/characters/raylldo/side.svg",
  33651. extra: 403/344,
  33652. bottom: 42/445
  33653. }
  33654. },
  33655. leaping: {
  33656. height: math.unit(12.3, "meters"),
  33657. weight: math.unit(9072, "kg"),
  33658. name: "Leaping",
  33659. image: {
  33660. source: "./media/characters/raylldo/leaping.svg",
  33661. extra: 470/249,
  33662. bottom: 13/483
  33663. }
  33664. },
  33665. flying: {
  33666. height: math.unit(18, "meters"),
  33667. weight: math.unit(9072, "kg"),
  33668. name: "Flying",
  33669. image: {
  33670. source: "./media/characters/raylldo/flying.svg"
  33671. }
  33672. },
  33673. head: {
  33674. height: math.unit(5.85, "meters"),
  33675. name: "Head",
  33676. image: {
  33677. source: "./media/characters/raylldo/head.svg"
  33678. }
  33679. },
  33680. maw: {
  33681. height: math.unit(5.32, "meters"),
  33682. name: "Maw",
  33683. image: {
  33684. source: "./media/characters/raylldo/maw.svg"
  33685. }
  33686. },
  33687. eye: {
  33688. height: math.unit(0.54, "meters"),
  33689. name: "Eye",
  33690. image: {
  33691. source: "./media/characters/raylldo/eye.svg"
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(13, "meters"),
  33699. default: true
  33700. },
  33701. ]
  33702. ))
  33703. characterMakers.push(() => makeCharacter(
  33704. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33705. {
  33706. anthroFront: {
  33707. height: math.unit(9, "feet"),
  33708. weight: math.unit(600, "lb"),
  33709. name: "Anthro (Front)",
  33710. image: {
  33711. source: "./media/characters/glint/anthro-front.svg",
  33712. extra: 1097/1018,
  33713. bottom: 28/1125
  33714. }
  33715. },
  33716. anthroBack: {
  33717. height: math.unit(9, "feet"),
  33718. weight: math.unit(600, "lb"),
  33719. name: "Anthro (Back)",
  33720. image: {
  33721. source: "./media/characters/glint/anthro-back.svg",
  33722. extra: 1154/997,
  33723. bottom: 36/1190
  33724. }
  33725. },
  33726. feral: {
  33727. height: math.unit(11, "feet"),
  33728. weight: math.unit(50000, "lb"),
  33729. name: "Feral",
  33730. image: {
  33731. source: "./media/characters/glint/feral.svg",
  33732. extra: 3035/1585,
  33733. bottom: 1169/4204
  33734. }
  33735. },
  33736. dickAnthro: {
  33737. height: math.unit(0.7, "meters"),
  33738. name: "Dick (Anthro)",
  33739. image: {
  33740. source: "./media/characters/glint/dick-anthro.svg"
  33741. }
  33742. },
  33743. dickFeral: {
  33744. height: math.unit(2.65, "meters"),
  33745. name: "Dick (Feral)",
  33746. image: {
  33747. source: "./media/characters/glint/dick-feral.svg"
  33748. }
  33749. },
  33750. slitHidden: {
  33751. height: math.unit(5.85, "meters"),
  33752. name: "Slit (Hidden)",
  33753. image: {
  33754. source: "./media/characters/glint/slit-hidden.svg"
  33755. }
  33756. },
  33757. slitErect: {
  33758. height: math.unit(5.85, "meters"),
  33759. name: "Slit (Erect)",
  33760. image: {
  33761. source: "./media/characters/glint/slit-erect.svg"
  33762. }
  33763. },
  33764. mawAnthro: {
  33765. height: math.unit(0.63, "meters"),
  33766. name: "Maw (Anthro)",
  33767. image: {
  33768. source: "./media/characters/glint/maw.svg"
  33769. }
  33770. },
  33771. mawFeral: {
  33772. height: math.unit(2.89, "meters"),
  33773. name: "Maw (Feral)",
  33774. image: {
  33775. source: "./media/characters/glint/maw.svg"
  33776. }
  33777. },
  33778. },
  33779. [
  33780. {
  33781. name: "Normal",
  33782. height: math.unit(9, "feet"),
  33783. default: true
  33784. },
  33785. ]
  33786. ))
  33787. characterMakers.push(() => makeCharacter(
  33788. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33789. {
  33790. side: {
  33791. height: math.unit(15, "feet"),
  33792. weight: math.unit(5000, "kg"),
  33793. name: "Side",
  33794. image: {
  33795. source: "./media/characters/kairne/side.svg",
  33796. extra: 979/811,
  33797. bottom: 13/992
  33798. }
  33799. },
  33800. front: {
  33801. height: math.unit(15, "feet"),
  33802. weight: math.unit(5000, "kg"),
  33803. name: "Front",
  33804. image: {
  33805. source: "./media/characters/kairne/front.svg",
  33806. extra: 908/814,
  33807. bottom: 26/934
  33808. }
  33809. },
  33810. sideNsfw: {
  33811. height: math.unit(15, "feet"),
  33812. weight: math.unit(5000, "kg"),
  33813. name: "Side (NSFW)",
  33814. image: {
  33815. source: "./media/characters/kairne/side-nsfw.svg",
  33816. extra: 979/811,
  33817. bottom: 13/992
  33818. }
  33819. },
  33820. frontNsfw: {
  33821. height: math.unit(15, "feet"),
  33822. weight: math.unit(5000, "kg"),
  33823. name: "Front (NSFW)",
  33824. image: {
  33825. source: "./media/characters/kairne/front-nsfw.svg",
  33826. extra: 908/814,
  33827. bottom: 26/934
  33828. }
  33829. },
  33830. dickCaged: {
  33831. height: math.unit(0.65, "meters"),
  33832. name: "Dick-caged",
  33833. image: {
  33834. source: "./media/characters/kairne/dick-caged.svg"
  33835. }
  33836. },
  33837. dick: {
  33838. height: math.unit(0.79, "meters"),
  33839. name: "Dick",
  33840. image: {
  33841. source: "./media/characters/kairne/dick.svg"
  33842. }
  33843. },
  33844. genitals: {
  33845. height: math.unit(1.29, "meters"),
  33846. name: "Genitals",
  33847. image: {
  33848. source: "./media/characters/kairne/genitals.svg"
  33849. }
  33850. },
  33851. maw: {
  33852. height: math.unit(1.73, "meters"),
  33853. name: "Maw",
  33854. image: {
  33855. source: "./media/characters/kairne/maw.svg"
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(15, "feet"),
  33863. default: true
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(5 + 8/12, "feet"),
  33872. weight: math.unit(139, "lb"),
  33873. name: "Front",
  33874. image: {
  33875. source: "./media/characters/biscuit-jackal/front.svg",
  33876. extra: 2106/1961,
  33877. bottom: 58/2164
  33878. }
  33879. },
  33880. back: {
  33881. height: math.unit(5 + 8/12, "feet"),
  33882. weight: math.unit(139, "lb"),
  33883. name: "Back",
  33884. image: {
  33885. source: "./media/characters/biscuit-jackal/back.svg",
  33886. extra: 2132/1976,
  33887. bottom: 57/2189
  33888. }
  33889. },
  33890. werejackal: {
  33891. height: math.unit(6 + 3/12, "feet"),
  33892. weight: math.unit(188, "lb"),
  33893. name: "Werejackal",
  33894. image: {
  33895. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33896. extra: 2373/2178,
  33897. bottom: 53/2426
  33898. }
  33899. },
  33900. },
  33901. [
  33902. {
  33903. name: "Normal",
  33904. height: math.unit(5 + 8/12, "feet"),
  33905. default: true
  33906. },
  33907. ]
  33908. ))
  33909. characterMakers.push(() => makeCharacter(
  33910. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33911. {
  33912. front: {
  33913. height: math.unit(140, "cm"),
  33914. weight: math.unit(45, "kg"),
  33915. name: "Front",
  33916. image: {
  33917. source: "./media/characters/tayra-white/front.svg",
  33918. extra: 2229/2192,
  33919. bottom: 75/2304
  33920. }
  33921. },
  33922. },
  33923. [
  33924. {
  33925. name: "Normal",
  33926. height: math.unit(140, "cm"),
  33927. default: true
  33928. },
  33929. ]
  33930. ))
  33931. characterMakers.push(() => makeCharacter(
  33932. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33933. {
  33934. front: {
  33935. height: math.unit(4 + 5/12, "feet"),
  33936. name: "Front",
  33937. image: {
  33938. source: "./media/characters/scoop/front.svg",
  33939. extra: 1257/1136,
  33940. bottom: 69/1326
  33941. }
  33942. },
  33943. back: {
  33944. height: math.unit(4 + 5/12, "feet"),
  33945. name: "Back",
  33946. image: {
  33947. source: "./media/characters/scoop/back.svg",
  33948. extra: 1321/1152,
  33949. bottom: 32/1353
  33950. }
  33951. },
  33952. maw: {
  33953. height: math.unit(0.68, "feet"),
  33954. name: "Maw",
  33955. image: {
  33956. source: "./media/characters/scoop/maw.svg"
  33957. }
  33958. },
  33959. },
  33960. [
  33961. {
  33962. name: "Really Small",
  33963. height: math.unit(1, "mm")
  33964. },
  33965. {
  33966. name: "Micro",
  33967. height: math.unit(1, "inch")
  33968. },
  33969. {
  33970. name: "Normal",
  33971. height: math.unit(4 + 5/12, "feet"),
  33972. default: true
  33973. },
  33974. {
  33975. name: "Macro",
  33976. height: math.unit(200, "feet")
  33977. },
  33978. {
  33979. name: "Megamacro",
  33980. height: math.unit(3240, "feet")
  33981. },
  33982. {
  33983. name: "Teramacro",
  33984. height: math.unit(2500, "miles")
  33985. },
  33986. ]
  33987. ))
  33988. characterMakers.push(() => makeCharacter(
  33989. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33990. {
  33991. front: {
  33992. height: math.unit(15 + 7/12, "feet"),
  33993. weight: math.unit(1150, "tons"),
  33994. name: "Front",
  33995. image: {
  33996. source: "./media/characters/saphinara/front.svg",
  33997. extra: 1837/1643,
  33998. bottom: 84/1921
  33999. },
  34000. form: "normal",
  34001. default: true
  34002. },
  34003. side: {
  34004. height: math.unit(15 + 7/12, "feet"),
  34005. weight: math.unit(1150, "tons"),
  34006. name: "Side",
  34007. image: {
  34008. source: "./media/characters/saphinara/side.svg",
  34009. extra: 605/547,
  34010. bottom: 6/611
  34011. },
  34012. form: "normal"
  34013. },
  34014. back: {
  34015. height: math.unit(15 + 7/12, "feet"),
  34016. weight: math.unit(1150, "tons"),
  34017. name: "Back",
  34018. image: {
  34019. source: "./media/characters/saphinara/back.svg",
  34020. extra: 591/531,
  34021. bottom: 13/604
  34022. },
  34023. form: "normal"
  34024. },
  34025. frontTail: {
  34026. height: math.unit(15 + 7/12, "feet"),
  34027. weight: math.unit(1150, "tons"),
  34028. name: "Front (Full Tail)",
  34029. image: {
  34030. source: "./media/characters/saphinara/front-tail.svg",
  34031. extra: 2256/1630,
  34032. bottom: 261/2517
  34033. },
  34034. form: "normal"
  34035. },
  34036. insides: {
  34037. height: math.unit(11.92, "feet"),
  34038. name: "Insides",
  34039. image: {
  34040. source: "./media/characters/saphinara/insides.svg"
  34041. },
  34042. form: "normal"
  34043. },
  34044. head: {
  34045. height: math.unit(4.17, "feet"),
  34046. name: "Head",
  34047. image: {
  34048. source: "./media/characters/saphinara/head.svg"
  34049. },
  34050. form: "normal"
  34051. },
  34052. tongue: {
  34053. height: math.unit(4.60, "feet"),
  34054. name: "Tongue",
  34055. image: {
  34056. source: "./media/characters/saphinara/tongue.svg"
  34057. },
  34058. form: "normal"
  34059. },
  34060. headEnraged: {
  34061. height: math.unit(5.55, "feet"),
  34062. name: "Head (Enraged)",
  34063. image: {
  34064. source: "./media/characters/saphinara/head-enraged.svg"
  34065. },
  34066. form: "normal"
  34067. },
  34068. wings: {
  34069. height: math.unit(11.95, "feet"),
  34070. name: "Wings",
  34071. image: {
  34072. source: "./media/characters/saphinara/wings.svg"
  34073. },
  34074. form: "normal"
  34075. },
  34076. feathers: {
  34077. height: math.unit(8.92, "feet"),
  34078. name: "Feathers",
  34079. image: {
  34080. source: "./media/characters/saphinara/feathers.svg"
  34081. },
  34082. form: "normal"
  34083. },
  34084. shackles: {
  34085. height: math.unit(2, "feet"),
  34086. name: "Shackles",
  34087. image: {
  34088. source: "./media/characters/saphinara/shackles.svg"
  34089. },
  34090. form: "normal"
  34091. },
  34092. eyes: {
  34093. height: math.unit(1.331, "feet"),
  34094. name: "Eyes",
  34095. image: {
  34096. source: "./media/characters/saphinara/eyes.svg"
  34097. },
  34098. form: "normal"
  34099. },
  34100. eyesEnraged: {
  34101. height: math.unit(1.331, "feet"),
  34102. name: "Eyes (Enraged)",
  34103. image: {
  34104. source: "./media/characters/saphinara/eyes-enraged.svg"
  34105. },
  34106. form: "normal"
  34107. },
  34108. trueFormSide: {
  34109. height: math.unit(200, "feet"),
  34110. weight: math.unit(1e7, "tons"),
  34111. name: "Side",
  34112. image: {
  34113. source: "./media/characters/saphinara/true-form-side.svg",
  34114. extra: 1399/770,
  34115. bottom: 97/1496
  34116. },
  34117. form: "true-form",
  34118. default: true
  34119. },
  34120. trueFormMaw: {
  34121. height: math.unit(71.5, "feet"),
  34122. name: "Maw",
  34123. image: {
  34124. source: "./media/characters/saphinara/true-form-maw.svg",
  34125. extra: 2302/1453,
  34126. bottom: 0/2302
  34127. },
  34128. form: "true-form"
  34129. },
  34130. },
  34131. [
  34132. {
  34133. name: "Normal",
  34134. height: math.unit(15 + 7/12, "feet"),
  34135. default: true,
  34136. form: "normal"
  34137. },
  34138. {
  34139. name: "Angry",
  34140. height: math.unit(30 + 6/12, "feet"),
  34141. form: "normal"
  34142. },
  34143. {
  34144. name: "Enraged",
  34145. height: math.unit(102 + 1/12, "feet"),
  34146. form: "normal"
  34147. },
  34148. {
  34149. name: "True",
  34150. height: math.unit(200, "feet"),
  34151. default: true,
  34152. form: "true-form"
  34153. }
  34154. ],
  34155. {
  34156. "normal": {
  34157. name: "Normal",
  34158. default: true
  34159. },
  34160. "true-form": {
  34161. name: "True Form"
  34162. }
  34163. }
  34164. ))
  34165. characterMakers.push(() => makeCharacter(
  34166. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34167. {
  34168. front: {
  34169. height: math.unit(6 + 8/12, "feet"),
  34170. weight: math.unit(300, "lb"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/jrain/front.svg",
  34174. extra: 3039/2865,
  34175. bottom: 399/3438
  34176. }
  34177. },
  34178. back: {
  34179. height: math.unit(6 + 8/12, "feet"),
  34180. weight: math.unit(300, "lb"),
  34181. name: "Back",
  34182. image: {
  34183. source: "./media/characters/jrain/back.svg",
  34184. extra: 3089/2938,
  34185. bottom: 172/3261
  34186. }
  34187. },
  34188. head: {
  34189. height: math.unit(2.14, "feet"),
  34190. name: "Head",
  34191. image: {
  34192. source: "./media/characters/jrain/head.svg"
  34193. }
  34194. },
  34195. maw: {
  34196. height: math.unit(1.77, "feet"),
  34197. name: "Maw",
  34198. image: {
  34199. source: "./media/characters/jrain/maw.svg"
  34200. }
  34201. },
  34202. leftHand: {
  34203. height: math.unit(1.1, "feet"),
  34204. name: "Left Hand",
  34205. image: {
  34206. source: "./media/characters/jrain/left-hand.svg"
  34207. }
  34208. },
  34209. rightHand: {
  34210. height: math.unit(1.1, "feet"),
  34211. name: "Right Hand",
  34212. image: {
  34213. source: "./media/characters/jrain/right-hand.svg"
  34214. }
  34215. },
  34216. eye: {
  34217. height: math.unit(0.35, "feet"),
  34218. name: "Eye",
  34219. image: {
  34220. source: "./media/characters/jrain/eye.svg"
  34221. }
  34222. },
  34223. },
  34224. [
  34225. {
  34226. name: "Normal",
  34227. height: math.unit(6 + 8/12, "feet"),
  34228. default: true
  34229. },
  34230. {
  34231. name: "Casually Large",
  34232. height: math.unit(25, "feet")
  34233. },
  34234. {
  34235. name: "Giant",
  34236. height: math.unit(100, "feet")
  34237. },
  34238. {
  34239. name: "Kaiju",
  34240. height: math.unit(300, "feet")
  34241. },
  34242. ]
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34246. {
  34247. dragon: {
  34248. height: math.unit(5, "meters"),
  34249. name: "Dragon",
  34250. image: {
  34251. source: "./media/characters/sabrina/dragon.svg",
  34252. extra: 3670 / 2365,
  34253. bottom: 333 / 4003
  34254. }
  34255. },
  34256. gryphon: {
  34257. height: math.unit(3, "meters"),
  34258. name: "Gryphon",
  34259. image: {
  34260. source: "./media/characters/sabrina/gryphon.svg",
  34261. extra: 1576 / 945,
  34262. bottom: 71 / 1647
  34263. }
  34264. },
  34265. snake: {
  34266. height: math.unit(12, "meters"),
  34267. name: "Snake",
  34268. image: {
  34269. source: "./media/characters/sabrina/snake.svg",
  34270. extra: 1758 / 1320,
  34271. bottom: 186 / 1944
  34272. }
  34273. },
  34274. collar: {
  34275. height: math.unit(1.86, "meters"),
  34276. name: "Collar",
  34277. image: {
  34278. source: "./media/characters/sabrina/collar.svg"
  34279. }
  34280. },
  34281. eye: {
  34282. height: math.unit(0.53, "meters"),
  34283. name: "Eye",
  34284. image: {
  34285. source: "./media/characters/sabrina/eye.svg"
  34286. }
  34287. },
  34288. foot: {
  34289. height: math.unit(1.86, "meters"),
  34290. name: "Foot",
  34291. image: {
  34292. source: "./media/characters/sabrina/foot.svg"
  34293. }
  34294. },
  34295. hand: {
  34296. height: math.unit(1.32, "meters"),
  34297. name: "Hand",
  34298. image: {
  34299. source: "./media/characters/sabrina/hand.svg"
  34300. }
  34301. },
  34302. head: {
  34303. height: math.unit(2.44, "meters"),
  34304. name: "Head",
  34305. image: {
  34306. source: "./media/characters/sabrina/head.svg"
  34307. }
  34308. },
  34309. headAngry: {
  34310. height: math.unit(2.44, "meters"),
  34311. name: "Head (Angry))",
  34312. image: {
  34313. source: "./media/characters/sabrina/head-angry.svg"
  34314. }
  34315. },
  34316. maw: {
  34317. height: math.unit(1.65, "meters"),
  34318. name: "Maw",
  34319. image: {
  34320. source: "./media/characters/sabrina/maw.svg"
  34321. }
  34322. },
  34323. spikes: {
  34324. height: math.unit(1.69, "meters"),
  34325. name: "Spikes",
  34326. image: {
  34327. source: "./media/characters/sabrina/spikes.svg"
  34328. }
  34329. },
  34330. stomach: {
  34331. height: math.unit(1.15, "meters"),
  34332. name: "Stomach",
  34333. image: {
  34334. source: "./media/characters/sabrina/stomach.svg"
  34335. }
  34336. },
  34337. tongue: {
  34338. height: math.unit(1.27, "meters"),
  34339. name: "Tongue",
  34340. image: {
  34341. source: "./media/characters/sabrina/tongue.svg"
  34342. }
  34343. },
  34344. wingDorsal: {
  34345. height: math.unit(4.85, "meters"),
  34346. name: "Wing (Dorsal)",
  34347. image: {
  34348. source: "./media/characters/sabrina/wing-dorsal.svg"
  34349. }
  34350. },
  34351. wingVentral: {
  34352. height: math.unit(4.85, "meters"),
  34353. name: "Wing (Ventral)",
  34354. image: {
  34355. source: "./media/characters/sabrina/wing-ventral.svg"
  34356. }
  34357. },
  34358. },
  34359. [
  34360. {
  34361. name: "Normal",
  34362. height: math.unit(5, "meters"),
  34363. default: true
  34364. },
  34365. ]
  34366. ))
  34367. characterMakers.push(() => makeCharacter(
  34368. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34369. {
  34370. frontMaid: {
  34371. height: math.unit(5 + 5/12, "feet"),
  34372. weight: math.unit(130, "lb"),
  34373. name: "Front (Maid)",
  34374. image: {
  34375. source: "./media/characters/midnight-tales/front-maid.svg",
  34376. extra: 489/454,
  34377. bottom: 61/550
  34378. }
  34379. },
  34380. frontFormal: {
  34381. height: math.unit(5 + 5/12, "feet"),
  34382. weight: math.unit(130, "lb"),
  34383. name: "Front (Formal)",
  34384. image: {
  34385. source: "./media/characters/midnight-tales/front-formal.svg",
  34386. extra: 489/454,
  34387. bottom: 61/550
  34388. }
  34389. },
  34390. back: {
  34391. height: math.unit(5 + 5/12, "feet"),
  34392. weight: math.unit(130, "lb"),
  34393. name: "Back",
  34394. image: {
  34395. source: "./media/characters/midnight-tales/back.svg",
  34396. extra: 498/456,
  34397. bottom: 33/531
  34398. }
  34399. },
  34400. frontBeast: {
  34401. height: math.unit(40, "feet"),
  34402. weight: math.unit(64000, "lb"),
  34403. name: "Front (Beast)",
  34404. image: {
  34405. source: "./media/characters/midnight-tales/front-beast.svg",
  34406. extra: 927/860,
  34407. bottom: 53/980
  34408. }
  34409. },
  34410. backBeast: {
  34411. height: math.unit(40, "feet"),
  34412. weight: math.unit(64000, "lb"),
  34413. name: "Back (Beast)",
  34414. image: {
  34415. source: "./media/characters/midnight-tales/back-beast.svg",
  34416. extra: 929/855,
  34417. bottom: 16/945
  34418. }
  34419. },
  34420. footBeast: {
  34421. height: math.unit(6.7, "feet"),
  34422. name: "Foot (Beast)",
  34423. image: {
  34424. source: "./media/characters/midnight-tales/foot-beast.svg"
  34425. }
  34426. },
  34427. headBeast: {
  34428. height: math.unit(8, "feet"),
  34429. name: "Head (Beast)",
  34430. image: {
  34431. source: "./media/characters/midnight-tales/head-beast.svg"
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Normal",
  34438. height: math.unit(5 + 5 / 12, "feet"),
  34439. default: true
  34440. },
  34441. {
  34442. name: "Macro",
  34443. height: math.unit(25, "feet")
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34449. {
  34450. front: {
  34451. height: math.unit(5 + 10/12, "feet"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/argon/front.svg",
  34455. extra: 2009/1935,
  34456. bottom: 118/2127
  34457. }
  34458. },
  34459. back: {
  34460. height: math.unit(5 + 10/12, "feet"),
  34461. name: "Back",
  34462. image: {
  34463. source: "./media/characters/argon/back.svg",
  34464. extra: 2047/1992,
  34465. bottom: 20/2067
  34466. }
  34467. },
  34468. frontDressed: {
  34469. height: math.unit(5 + 10/12, "feet"),
  34470. name: "Front (Dressed)",
  34471. image: {
  34472. source: "./media/characters/argon/front-dressed.svg",
  34473. extra: 2009/1935,
  34474. bottom: 118/2127
  34475. }
  34476. },
  34477. },
  34478. [
  34479. {
  34480. name: "Normal",
  34481. height: math.unit(5 + 10/12, "feet"),
  34482. default: true
  34483. },
  34484. ]
  34485. ))
  34486. characterMakers.push(() => makeCharacter(
  34487. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34488. {
  34489. front: {
  34490. height: math.unit(8 + 6/12, "feet"),
  34491. weight: math.unit(1150, "lb"),
  34492. name: "Front",
  34493. image: {
  34494. source: "./media/characters/kichi/front.svg",
  34495. extra: 1267/1164,
  34496. bottom: 61/1328
  34497. }
  34498. },
  34499. back: {
  34500. height: math.unit(8 + 6/12, "feet"),
  34501. weight: math.unit(1150, "lb"),
  34502. name: "Back",
  34503. image: {
  34504. source: "./media/characters/kichi/back.svg",
  34505. extra: 1273/1166,
  34506. bottom: 33/1306
  34507. }
  34508. },
  34509. },
  34510. [
  34511. {
  34512. name: "Normal",
  34513. height: math.unit(8 + 6/12, "feet"),
  34514. default: true
  34515. },
  34516. ]
  34517. ))
  34518. characterMakers.push(() => makeCharacter(
  34519. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34520. {
  34521. front: {
  34522. height: math.unit(6, "feet"),
  34523. weight: math.unit(210, "lb"),
  34524. name: "Front",
  34525. image: {
  34526. source: "./media/characters/manetel-greyscale/front.svg",
  34527. extra: 350/312,
  34528. bottom: 8/358
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Micro",
  34535. height: math.unit(2, "inches")
  34536. },
  34537. {
  34538. name: "Normal",
  34539. height: math.unit(6, "feet"),
  34540. default: true
  34541. },
  34542. {
  34543. name: "Minimacro",
  34544. height: math.unit(17, "feet")
  34545. },
  34546. {
  34547. name: "Macro",
  34548. height: math.unit(117, "feet")
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34554. {
  34555. side: {
  34556. height: math.unit(5 + 1/12, "feet"),
  34557. weight: math.unit(418, "lb"),
  34558. name: "Side",
  34559. image: {
  34560. source: "./media/characters/softpurr/side.svg",
  34561. extra: 1993/1945,
  34562. bottom: 134/2127
  34563. }
  34564. },
  34565. front: {
  34566. height: math.unit(5 + 1/12, "feet"),
  34567. weight: math.unit(418, "lb"),
  34568. name: "Front",
  34569. image: {
  34570. source: "./media/characters/softpurr/front.svg",
  34571. extra: 1950/1856,
  34572. bottom: 174/2124
  34573. }
  34574. },
  34575. paw: {
  34576. height: math.unit(1, "feet"),
  34577. name: "Paw",
  34578. image: {
  34579. source: "./media/characters/softpurr/paw.svg"
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(5 + 1/12, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(260, "meters"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/anahita/front.svg",
  34599. extra: 665/635,
  34600. bottom: 89/754
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Macro",
  34607. height: math.unit(260, "meters"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(4 + 10/12, "feet"),
  34617. weight: math.unit(160, "lb"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/chip-mouse/front.svg",
  34621. extra: 3528/3408,
  34622. bottom: 0/3528
  34623. }
  34624. },
  34625. frontNsfw: {
  34626. height: math.unit(4 + 10/12, "feet"),
  34627. weight: math.unit(160, "lb"),
  34628. name: "Front (NSFW)",
  34629. image: {
  34630. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34631. extra: 3528/3408,
  34632. bottom: 0/3528
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(4 + 10/12, "feet"),
  34640. default: true
  34641. },
  34642. ]
  34643. ))
  34644. characterMakers.push(() => makeCharacter(
  34645. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34646. {
  34647. side: {
  34648. height: math.unit(10, "feet"),
  34649. weight: math.unit(14000, "lb"),
  34650. name: "Side",
  34651. image: {
  34652. source: "./media/characters/kremm/side.svg",
  34653. extra: 1390/1053,
  34654. bottom: 90/1480
  34655. }
  34656. },
  34657. gut: {
  34658. height: math.unit(5.8, "feet"),
  34659. name: "Gut",
  34660. image: {
  34661. source: "./media/characters/kremm/gut.svg"
  34662. }
  34663. },
  34664. ass: {
  34665. height: math.unit(6.1, "feet"),
  34666. name: "Ass",
  34667. image: {
  34668. source: "./media/characters/kremm/ass.svg"
  34669. }
  34670. },
  34671. jaws: {
  34672. height: math.unit(2.2, "feet"),
  34673. name: "Jaws",
  34674. image: {
  34675. source: "./media/characters/kremm/jaws.svg"
  34676. }
  34677. },
  34678. dick: {
  34679. height: math.unit(4.26, "feet"),
  34680. name: "Dick",
  34681. image: {
  34682. source: "./media/characters/kremm/dick.svg"
  34683. }
  34684. },
  34685. },
  34686. [
  34687. {
  34688. name: "Normal",
  34689. height: math.unit(10, "feet"),
  34690. default: true
  34691. },
  34692. ]
  34693. ))
  34694. characterMakers.push(() => makeCharacter(
  34695. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34696. {
  34697. front: {
  34698. height: math.unit(30, "stories"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/kai/front.svg",
  34702. extra: 1892/1718,
  34703. bottom: 162/2054
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Macro",
  34710. height: math.unit(30, "stories"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(6 + 4/12, "feet"),
  34720. weight: math.unit(145, "lb"),
  34721. name: "Front",
  34722. image: {
  34723. source: "./media/characters/sykes/front.svg",
  34724. extra: 1321 / 1187,
  34725. bottom: 66 / 1387
  34726. }
  34727. },
  34728. back: {
  34729. height: math.unit(6 + 4/12, "feet"),
  34730. weight: math.unit(145, "lb"),
  34731. name: "Back",
  34732. image: {
  34733. source: "./media/characters/sykes/back.svg",
  34734. extra: 1326/1181,
  34735. bottom: 31/1357
  34736. }
  34737. },
  34738. traditionalOutfit: {
  34739. height: math.unit(6 + 4/12, "feet"),
  34740. weight: math.unit(145, "lb"),
  34741. name: "Traditional Outfit",
  34742. image: {
  34743. source: "./media/characters/sykes/traditional-outfit.svg",
  34744. extra: 1321 / 1187,
  34745. bottom: 66 / 1387
  34746. }
  34747. },
  34748. adventureOutfit: {
  34749. height: math.unit(6 + 4/12, "feet"),
  34750. weight: math.unit(145, "lb"),
  34751. name: "Adventure Outfit",
  34752. image: {
  34753. source: "./media/characters/sykes/adventure-outfit.svg",
  34754. extra: 1321 / 1187,
  34755. bottom: 66 / 1387
  34756. }
  34757. },
  34758. handLeft: {
  34759. height: math.unit(0.9, "feet"),
  34760. name: "Hand (Left)",
  34761. image: {
  34762. source: "./media/characters/sykes/hand-left.svg"
  34763. }
  34764. },
  34765. handRight: {
  34766. height: math.unit(0.839, "feet"),
  34767. name: "Hand (Right)",
  34768. image: {
  34769. source: "./media/characters/sykes/hand-right.svg"
  34770. }
  34771. },
  34772. leftFoot: {
  34773. height: math.unit(1.2, "feet"),
  34774. name: "Foot (Left)",
  34775. image: {
  34776. source: "./media/characters/sykes/foot-left.svg"
  34777. }
  34778. },
  34779. rightFoot: {
  34780. height: math.unit(1.2, "feet"),
  34781. name: "Foot (Right)",
  34782. image: {
  34783. source: "./media/characters/sykes/foot-right.svg"
  34784. }
  34785. },
  34786. maw: {
  34787. height: math.unit(1.93, "feet"),
  34788. name: "Maw",
  34789. image: {
  34790. source: "./media/characters/sykes/maw.svg"
  34791. }
  34792. },
  34793. teeth: {
  34794. height: math.unit(0.51, "feet"),
  34795. name: "Teeth",
  34796. image: {
  34797. source: "./media/characters/sykes/teeth.svg"
  34798. }
  34799. },
  34800. tongue: {
  34801. height: math.unit(2.13, "feet"),
  34802. name: "Tongue",
  34803. image: {
  34804. source: "./media/characters/sykes/tongue.svg"
  34805. }
  34806. },
  34807. uvula: {
  34808. height: math.unit(0.16, "feet"),
  34809. name: "Uvula",
  34810. image: {
  34811. source: "./media/characters/sykes/uvula.svg"
  34812. }
  34813. },
  34814. collar: {
  34815. height: math.unit(0.287, "feet"),
  34816. name: "Collar",
  34817. image: {
  34818. source: "./media/characters/sykes/collar.svg"
  34819. }
  34820. },
  34821. tail: {
  34822. height: math.unit(3.8, "feet"),
  34823. name: "Tail",
  34824. image: {
  34825. source: "./media/characters/sykes/tail.svg"
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Shrunken",
  34832. height: math.unit(5, "inches")
  34833. },
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(6 + 4 / 12, "feet"),
  34837. default: true
  34838. },
  34839. {
  34840. name: "Big",
  34841. height: math.unit(15, "feet")
  34842. },
  34843. ]
  34844. ))
  34845. characterMakers.push(() => makeCharacter(
  34846. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34847. {
  34848. front: {
  34849. height: math.unit(5 + 8/12, "feet"),
  34850. weight: math.unit(190, "lb"),
  34851. name: "Front",
  34852. image: {
  34853. source: "./media/characters/oven-otter/front.svg",
  34854. extra: 1809/1740,
  34855. bottom: 181/1990
  34856. }
  34857. },
  34858. back: {
  34859. height: math.unit(5 + 8/12, "feet"),
  34860. weight: math.unit(190, "lb"),
  34861. name: "Back",
  34862. image: {
  34863. source: "./media/characters/oven-otter/back.svg",
  34864. extra: 1709/1635,
  34865. bottom: 118/1827
  34866. }
  34867. },
  34868. hand: {
  34869. height: math.unit(1.07, "feet"),
  34870. name: "Hand",
  34871. image: {
  34872. source: "./media/characters/oven-otter/hand.svg"
  34873. }
  34874. },
  34875. beans: {
  34876. height: math.unit(1.74, "feet"),
  34877. name: "Beans",
  34878. image: {
  34879. source: "./media/characters/oven-otter/beans.svg"
  34880. }
  34881. },
  34882. },
  34883. [
  34884. {
  34885. name: "Micro",
  34886. height: math.unit(0.5, "inches")
  34887. },
  34888. {
  34889. name: "Normal",
  34890. height: math.unit(5 + 8/12, "feet"),
  34891. default: true
  34892. },
  34893. {
  34894. name: "Macro",
  34895. height: math.unit(250, "feet")
  34896. },
  34897. {
  34898. name: "Really High",
  34899. height: math.unit(420, "feet")
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34905. {
  34906. front: {
  34907. height: math.unit(5, "meters"),
  34908. weight: math.unit(292000000000000, "kg"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/devourer/front.svg",
  34912. extra: 1800/1733,
  34913. bottom: 211/2011
  34914. }
  34915. },
  34916. maw: {
  34917. height: math.unit(1.1, "meter"),
  34918. name: "Maw",
  34919. image: {
  34920. source: "./media/characters/devourer/maw.svg"
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Small",
  34927. height: math.unit(3, "meters")
  34928. },
  34929. {
  34930. name: "Large",
  34931. height: math.unit(5, "meters"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34938. {
  34939. front: {
  34940. height: math.unit(6, "feet"),
  34941. weight: math.unit(400, "lb"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/ellarby/front.svg",
  34945. extra: 1909/1763,
  34946. bottom: 80/1989
  34947. }
  34948. },
  34949. back: {
  34950. height: math.unit(6, "feet"),
  34951. weight: math.unit(400, "lb"),
  34952. name: "Back",
  34953. image: {
  34954. source: "./media/characters/ellarby/back.svg",
  34955. extra: 1914/1784,
  34956. bottom: 172/2086
  34957. }
  34958. },
  34959. },
  34960. [
  34961. {
  34962. name: "Mischief",
  34963. height: math.unit(18, "inches")
  34964. },
  34965. {
  34966. name: "Trouble",
  34967. height: math.unit(12, "feet")
  34968. },
  34969. {
  34970. name: "Havoc",
  34971. height: math.unit(200, "feet"),
  34972. default: true
  34973. },
  34974. {
  34975. name: "Pandemonium",
  34976. height: math.unit(1, "mile")
  34977. },
  34978. {
  34979. name: "Catastrophe",
  34980. height: math.unit(100, "miles")
  34981. },
  34982. ]
  34983. ))
  34984. characterMakers.push(() => makeCharacter(
  34985. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34986. {
  34987. front: {
  34988. height: math.unit(4.7, "meters"),
  34989. weight: math.unit(6500, "kg"),
  34990. name: "Front",
  34991. image: {
  34992. source: "./media/characters/vex/front.svg",
  34993. extra: 1288/1140,
  34994. bottom: 100/1388
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(4.7, "meters"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35008. {
  35009. normal: {
  35010. height: math.unit(6, "feet"),
  35011. weight: math.unit(350, "lb"),
  35012. name: "Normal",
  35013. image: {
  35014. source: "./media/characters/teshy/normal.svg",
  35015. extra: 1795/1735,
  35016. bottom: 16/1811
  35017. }
  35018. },
  35019. monsterFront: {
  35020. height: math.unit(12, "feet"),
  35021. weight: math.unit(4700, "lb"),
  35022. name: "Monster (Front)",
  35023. image: {
  35024. source: "./media/characters/teshy/monster-front.svg",
  35025. extra: 2042/2034,
  35026. bottom: 128/2170
  35027. }
  35028. },
  35029. monsterSide: {
  35030. height: math.unit(12, "feet"),
  35031. weight: math.unit(4700, "lb"),
  35032. name: "Monster (Side)",
  35033. image: {
  35034. source: "./media/characters/teshy/monster-side.svg",
  35035. extra: 2067/2056,
  35036. bottom: 70/2137
  35037. }
  35038. },
  35039. monsterBack: {
  35040. height: math.unit(12, "feet"),
  35041. weight: math.unit(4700, "lb"),
  35042. name: "Monster (Back)",
  35043. image: {
  35044. source: "./media/characters/teshy/monster-back.svg",
  35045. extra: 1921/1914,
  35046. bottom: 171/2092
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Normal",
  35053. height: math.unit(6, "feet"),
  35054. default: true
  35055. },
  35056. ]
  35057. ))
  35058. characterMakers.push(() => makeCharacter(
  35059. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35060. {
  35061. front: {
  35062. height: math.unit(6, "feet"),
  35063. name: "Front",
  35064. image: {
  35065. source: "./media/characters/ramey/front.svg",
  35066. extra: 790/787,
  35067. bottom: 27/817
  35068. }
  35069. },
  35070. },
  35071. [
  35072. {
  35073. name: "Normal",
  35074. height: math.unit(6, "feet"),
  35075. default: true
  35076. },
  35077. ]
  35078. ))
  35079. characterMakers.push(() => makeCharacter(
  35080. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35081. {
  35082. front: {
  35083. height: math.unit(5 + 5/12, "feet"),
  35084. weight: math.unit(120, "lb"),
  35085. name: "Front",
  35086. image: {
  35087. source: "./media/characters/phirae/front.svg",
  35088. extra: 2491/2436,
  35089. bottom: 38/2529
  35090. }
  35091. },
  35092. },
  35093. [
  35094. {
  35095. name: "Normal",
  35096. height: math.unit(5 + 5/12, "feet"),
  35097. default: true
  35098. },
  35099. ]
  35100. ))
  35101. characterMakers.push(() => makeCharacter(
  35102. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35103. {
  35104. front: {
  35105. height: math.unit(5 + 3/12, "feet"),
  35106. name: "Front",
  35107. image: {
  35108. source: "./media/characters/stagglas/front.svg",
  35109. extra: 962/882,
  35110. bottom: 53/1015
  35111. }
  35112. },
  35113. feral: {
  35114. height: math.unit(335, "cm"),
  35115. name: "Feral",
  35116. image: {
  35117. source: "./media/characters/stagglas/feral.svg",
  35118. extra: 1732/1090,
  35119. bottom: 48/1780
  35120. }
  35121. },
  35122. },
  35123. [
  35124. {
  35125. name: "Normal",
  35126. height: math.unit(5 + 3/12, "feet"),
  35127. default: true
  35128. },
  35129. ]
  35130. ))
  35131. characterMakers.push(() => makeCharacter(
  35132. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35133. {
  35134. front: {
  35135. height: math.unit(5 + 4/12, "feet"),
  35136. weight: math.unit(145, "lb"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/starra/front.svg",
  35140. extra: 1790/1691,
  35141. bottom: 91/1881
  35142. }
  35143. },
  35144. },
  35145. [
  35146. {
  35147. name: "Normal",
  35148. height: math.unit(5 + 4/12, "feet"),
  35149. default: true
  35150. },
  35151. ]
  35152. ))
  35153. characterMakers.push(() => makeCharacter(
  35154. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35155. {
  35156. front: {
  35157. height: math.unit(2.2, "meters"),
  35158. name: "Front",
  35159. image: {
  35160. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35161. extra: 1194/1005,
  35162. bottom: 25/1219
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(2.2, "meters"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35176. {
  35177. side: {
  35178. height: math.unit(8 + 2/12, "feet"),
  35179. weight: math.unit(1240, "lb"),
  35180. name: "Side",
  35181. image: {
  35182. source: "./media/characters/mika-valentine/side.svg",
  35183. extra: 2670/2501,
  35184. bottom: 250/2920
  35185. }
  35186. },
  35187. },
  35188. [
  35189. {
  35190. name: "Normal",
  35191. height: math.unit(8 + 2/12, "feet"),
  35192. default: true
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(7 + 2/12, "feet"),
  35201. name: "Front",
  35202. image: {
  35203. source: "./media/characters/xoltol/front.svg",
  35204. extra: 2212/2124,
  35205. bottom: 84/2296
  35206. }
  35207. },
  35208. side: {
  35209. height: math.unit(7 + 2/12, "feet"),
  35210. name: "Side",
  35211. image: {
  35212. source: "./media/characters/xoltol/side.svg",
  35213. extra: 2273/2197,
  35214. bottom: 26/2299
  35215. }
  35216. },
  35217. hand: {
  35218. height: math.unit(2.5, "feet"),
  35219. name: "Hand",
  35220. image: {
  35221. source: "./media/characters/xoltol/hand.svg"
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Small-ish",
  35228. height: math.unit(5 + 11/12, "feet")
  35229. },
  35230. {
  35231. name: "Normal",
  35232. height: math.unit(7 + 2/12, "feet")
  35233. },
  35234. {
  35235. name: "\"Macro\"",
  35236. height: math.unit(14 + 9/12, "feet"),
  35237. default: true
  35238. },
  35239. {
  35240. name: "Alternate Height",
  35241. height: math.unit(20, "feet")
  35242. },
  35243. {
  35244. name: "Actually Macro",
  35245. height: math.unit(100, "feet")
  35246. },
  35247. ]
  35248. ))
  35249. characterMakers.push(() => makeCharacter(
  35250. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35251. {
  35252. front: {
  35253. height: math.unit(5 + 2/12, "feet"),
  35254. name: "Front",
  35255. image: {
  35256. source: "./media/characters/kotetsu-redwood/front.svg",
  35257. extra: 1053/942,
  35258. bottom: 60/1113
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Normal",
  35265. height: math.unit(5 + 2/12, "feet"),
  35266. default: true
  35267. },
  35268. ]
  35269. ))
  35270. characterMakers.push(() => makeCharacter(
  35271. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35272. {
  35273. front: {
  35274. height: math.unit(2.4, "meters"),
  35275. weight: math.unit(125, "kg"),
  35276. name: "Front",
  35277. image: {
  35278. source: "./media/characters/lilith/front.svg",
  35279. extra: 1590/1513,
  35280. bottom: 203/1793
  35281. }
  35282. },
  35283. },
  35284. [
  35285. {
  35286. name: "Humanoid",
  35287. height: math.unit(2.4, "meters")
  35288. },
  35289. {
  35290. name: "Normal",
  35291. height: math.unit(6, "meters"),
  35292. default: true
  35293. },
  35294. {
  35295. name: "Largest",
  35296. height: math.unit(55, "meters")
  35297. },
  35298. ]
  35299. ))
  35300. characterMakers.push(() => makeCharacter(
  35301. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35302. {
  35303. front: {
  35304. height: math.unit(8 + 4/12, "feet"),
  35305. weight: math.unit(535, "lb"),
  35306. name: "Front",
  35307. image: {
  35308. source: "./media/characters/beh'kah-bolger/front.svg",
  35309. extra: 1660/1603,
  35310. bottom: 37/1697
  35311. }
  35312. },
  35313. },
  35314. [
  35315. {
  35316. name: "Normal",
  35317. height: math.unit(8 + 4/12, "feet"),
  35318. default: true
  35319. },
  35320. {
  35321. name: "Kaiju",
  35322. height: math.unit(250, "feet")
  35323. },
  35324. {
  35325. name: "Still Growing",
  35326. height: math.unit(10, "miles")
  35327. },
  35328. {
  35329. name: "Continental",
  35330. height: math.unit(5000, "miles")
  35331. },
  35332. {
  35333. name: "Final Form",
  35334. height: math.unit(2500000, "miles")
  35335. },
  35336. ]
  35337. ))
  35338. characterMakers.push(() => makeCharacter(
  35339. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35340. {
  35341. front: {
  35342. height: math.unit(7 + 2/12, "feet"),
  35343. weight: math.unit(230, "kg"),
  35344. name: "Front",
  35345. image: {
  35346. source: "./media/characters/tatyana-milewska/front.svg",
  35347. extra: 1199/1150,
  35348. bottom: 86/1285
  35349. }
  35350. },
  35351. },
  35352. [
  35353. {
  35354. name: "Normal",
  35355. height: math.unit(7 + 2/12, "feet"),
  35356. default: true
  35357. },
  35358. {
  35359. name: "Big",
  35360. height: math.unit(12, "feet")
  35361. },
  35362. {
  35363. name: "Minimacro",
  35364. height: math.unit(20, "feet")
  35365. },
  35366. {
  35367. name: "Macro",
  35368. height: math.unit(120, "feet")
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(7 + 8/12, "feet"),
  35377. weight: math.unit(152, "kg"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/helen-arri/front.svg",
  35381. extra: 440/423,
  35382. bottom: 14/454
  35383. }
  35384. },
  35385. back: {
  35386. height: math.unit(7 + 8/12, "feet"),
  35387. weight: math.unit(152, "kg"),
  35388. name: "Back",
  35389. image: {
  35390. source: "./media/characters/helen-arri/back.svg",
  35391. extra: 443/426,
  35392. bottom: 8/451
  35393. }
  35394. },
  35395. },
  35396. [
  35397. {
  35398. name: "Normal",
  35399. height: math.unit(7 + 8/12, "feet"),
  35400. default: true
  35401. },
  35402. {
  35403. name: "Big",
  35404. height: math.unit(14, "feet")
  35405. },
  35406. {
  35407. name: "Minimacro",
  35408. height: math.unit(24, "feet")
  35409. },
  35410. {
  35411. name: "Macro",
  35412. height: math.unit(140, "feet")
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(6, "meters"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/ehanu-rehu/front.svg",
  35424. extra: 1800/1800,
  35425. bottom: 59/1859
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(6, "meters"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(7 + 3/12, "feet"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/renholder/front.svg",
  35445. extra: 3096/2960,
  35446. bottom: 250/3346
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal Bat",
  35453. height: math.unit(7 + 3/12, "feet"),
  35454. default: true
  35455. },
  35456. {
  35457. name: "Slightly Tall Bat",
  35458. height: math.unit(100, "feet")
  35459. },
  35460. {
  35461. name: "Big Bat",
  35462. height: math.unit(1000, "feet")
  35463. },
  35464. {
  35465. name: "City-Sized Bat",
  35466. height: math.unit(200000, "feet")
  35467. },
  35468. {
  35469. name: "Bigger Bat",
  35470. height: math.unit(10000, "miles")
  35471. },
  35472. {
  35473. name: "Solar Sized Bat",
  35474. height: math.unit(100, "AU")
  35475. },
  35476. {
  35477. name: "Galactic Bat",
  35478. height: math.unit(200000, "lightyears")
  35479. },
  35480. {
  35481. name: "Universally Known Bat",
  35482. height: math.unit(1, "universe")
  35483. },
  35484. ]
  35485. ))
  35486. characterMakers.push(() => makeCharacter(
  35487. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35488. {
  35489. front: {
  35490. height: math.unit(6 + 11/12, "feet"),
  35491. weight: math.unit(250, "lb"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/cookiecat/front.svg",
  35495. extra: 893/827,
  35496. bottom: 14/907
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Micro",
  35503. height: math.unit(3, "inches")
  35504. },
  35505. {
  35506. name: "Normal",
  35507. height: math.unit(6 + 11/12, "feet"),
  35508. default: true
  35509. },
  35510. {
  35511. name: "Macro",
  35512. height: math.unit(100, "feet")
  35513. },
  35514. {
  35515. name: "Macro+",
  35516. height: math.unit(404, "feet")
  35517. },
  35518. {
  35519. name: "Megamacro",
  35520. height: math.unit(165, "miles")
  35521. },
  35522. {
  35523. name: "Planetary",
  35524. height: math.unit(4600, "miles")
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(10 + 3/12, "feet"),
  35533. weight: math.unit(1500, "lb"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/tux-kusanagi/front.svg",
  35537. extra: 944/840,
  35538. bottom: 39/983
  35539. }
  35540. },
  35541. back: {
  35542. height: math.unit(10 + 3/12, "feet"),
  35543. weight: math.unit(1500, "lb"),
  35544. name: "Back",
  35545. image: {
  35546. source: "./media/characters/tux-kusanagi/back.svg",
  35547. extra: 941/842,
  35548. bottom: 28/969
  35549. }
  35550. },
  35551. rump: {
  35552. height: math.unit(5.25, "feet"),
  35553. name: "Rump",
  35554. image: {
  35555. source: "./media/characters/tux-kusanagi/rump.svg"
  35556. }
  35557. },
  35558. beak: {
  35559. height: math.unit(1.54, "feet"),
  35560. name: "Beak",
  35561. image: {
  35562. source: "./media/characters/tux-kusanagi/beak.svg"
  35563. }
  35564. },
  35565. },
  35566. [
  35567. {
  35568. name: "Normal",
  35569. height: math.unit(10 + 3/12, "feet"),
  35570. default: true
  35571. },
  35572. ]
  35573. ))
  35574. characterMakers.push(() => makeCharacter(
  35575. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35576. {
  35577. front: {
  35578. height: math.unit(58, "feet"),
  35579. weight: math.unit(200, "tons"),
  35580. name: "Front",
  35581. image: {
  35582. source: "./media/characters/uzarmazari/front.svg",
  35583. extra: 1575/1455,
  35584. bottom: 152/1727
  35585. }
  35586. },
  35587. back: {
  35588. height: math.unit(58, "feet"),
  35589. weight: math.unit(200, "tons"),
  35590. name: "Back",
  35591. image: {
  35592. source: "./media/characters/uzarmazari/back.svg",
  35593. extra: 1585/1510,
  35594. bottom: 157/1742
  35595. }
  35596. },
  35597. head: {
  35598. height: math.unit(26, "feet"),
  35599. name: "Head",
  35600. image: {
  35601. source: "./media/characters/uzarmazari/head.svg"
  35602. }
  35603. },
  35604. },
  35605. [
  35606. {
  35607. name: "Normal",
  35608. height: math.unit(58, "feet"),
  35609. default: true
  35610. },
  35611. ]
  35612. ))
  35613. characterMakers.push(() => makeCharacter(
  35614. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35615. {
  35616. side: {
  35617. height: math.unit(15, "feet"),
  35618. name: "Side",
  35619. image: {
  35620. source: "./media/characters/akitu/side.svg",
  35621. extra: 1421/1321,
  35622. bottom: 157/1578
  35623. }
  35624. },
  35625. front: {
  35626. height: math.unit(15, "feet"),
  35627. name: "Front",
  35628. image: {
  35629. source: "./media/characters/akitu/front.svg",
  35630. extra: 1435/1326,
  35631. bottom: 232/1667
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Normal",
  35638. height: math.unit(15, "feet"),
  35639. default: true
  35640. },
  35641. ]
  35642. ))
  35643. characterMakers.push(() => makeCharacter(
  35644. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35645. {
  35646. front: {
  35647. height: math.unit(10 + 8/12, "feet"),
  35648. name: "Front",
  35649. image: {
  35650. source: "./media/characters/azalie-croixland/front.svg",
  35651. extra: 1972/1856,
  35652. bottom: 31/2003
  35653. }
  35654. },
  35655. },
  35656. [
  35657. {
  35658. name: "Original Height",
  35659. height: math.unit(5 + 4/12, "feet")
  35660. },
  35661. {
  35662. name: "Normal Height",
  35663. height: math.unit(10 + 8/12, "feet"),
  35664. default: true
  35665. },
  35666. ]
  35667. ))
  35668. characterMakers.push(() => makeCharacter(
  35669. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35670. {
  35671. side: {
  35672. height: math.unit(7 + 1/12, "feet"),
  35673. weight: math.unit(245, "lb"),
  35674. name: "Side",
  35675. image: {
  35676. source: "./media/characters/kavus-kazian/side.svg",
  35677. extra: 349/342,
  35678. bottom: 15/364
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Normal",
  35685. height: math.unit(7 + 1/12, "feet"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35692. {
  35693. normalFront: {
  35694. height: math.unit(5 + 11/12, "feet"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/moonlight-rose/normal-front.svg",
  35698. extra: 1980/1825,
  35699. bottom: 18/1998
  35700. },
  35701. form: "normal",
  35702. default: true
  35703. },
  35704. normalBack: {
  35705. height: math.unit(5 + 11/12, "feet"),
  35706. name: "Back",
  35707. image: {
  35708. source: "./media/characters/moonlight-rose/normal-back.svg",
  35709. extra: 2010/1839,
  35710. bottom: 10/2020
  35711. },
  35712. form: "normal"
  35713. },
  35714. demonFront: {
  35715. height: math.unit(1.5, "earths"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/moonlight-rose/demon.svg",
  35719. extra: 1400/1294,
  35720. bottom: 45/1445
  35721. },
  35722. form: "demon",
  35723. default: true
  35724. },
  35725. terraFront: {
  35726. height: math.unit(1.5, "earths"),
  35727. name: "Front",
  35728. image: {
  35729. source: "./media/characters/moonlight-rose/terra.svg"
  35730. },
  35731. form: "terra",
  35732. default: true
  35733. },
  35734. jupiterFront: {
  35735. height: math.unit(69911*2, "km"),
  35736. name: "Front",
  35737. image: {
  35738. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35739. extra: 1367/1286,
  35740. bottom: 55/1422
  35741. },
  35742. form: "jupiter",
  35743. default: true
  35744. },
  35745. neptuneFront: {
  35746. height: math.unit(24622*2, "feet"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35750. extra: 1851/1712,
  35751. bottom: 0/1851
  35752. },
  35753. form: "neptune",
  35754. default: true
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "\"Natural\" Height",
  35760. height: math.unit(5 + 11/12, "feet"),
  35761. form: "normal"
  35762. },
  35763. {
  35764. name: "Smallest comfortable size",
  35765. height: math.unit(40, "meters"),
  35766. form: "normal"
  35767. },
  35768. {
  35769. name: "Common size",
  35770. height: math.unit(50, "km"),
  35771. form: "normal",
  35772. default: true
  35773. },
  35774. {
  35775. name: "Normal",
  35776. height: math.unit(1.5, "earths"),
  35777. form: "demon",
  35778. default: true
  35779. },
  35780. {
  35781. name: "Universal",
  35782. height: math.unit(15, "universes"),
  35783. form: "demon"
  35784. },
  35785. {
  35786. name: "Earth",
  35787. height: math.unit(1.5, "earths"),
  35788. form: "terra",
  35789. default: true
  35790. },
  35791. {
  35792. name: "Super Earth",
  35793. height: math.unit(67.5, "earths"),
  35794. form: "terra"
  35795. },
  35796. {
  35797. name: "Doesn't fit in a solar system...",
  35798. height: math.unit(1, "galaxy"),
  35799. form: "terra"
  35800. },
  35801. {
  35802. name: "Saturn",
  35803. height: math.unit(58232*2, "km"),
  35804. form: "jupiter"
  35805. },
  35806. {
  35807. name: "Jupiter",
  35808. height: math.unit(69911*2, "km"),
  35809. form: "jupiter",
  35810. default: true
  35811. },
  35812. {
  35813. name: "HD 100546 b",
  35814. height: math.unit(482938, "km"),
  35815. form: "jupiter"
  35816. },
  35817. {
  35818. name: "Enceladus",
  35819. height: math.unit(513*2, "km"),
  35820. form: "neptune"
  35821. },
  35822. {
  35823. name: "Europe",
  35824. height: math.unit(1560*2, "km"),
  35825. form: "neptune"
  35826. },
  35827. {
  35828. name: "Neptune",
  35829. height: math.unit(24622*2, "km"),
  35830. form: "neptune",
  35831. default: true
  35832. },
  35833. {
  35834. name: "CoRoT-9b",
  35835. height: math.unit(75067*2, "km"),
  35836. form: "neptune"
  35837. },
  35838. ],
  35839. {
  35840. "normal": {
  35841. name: "Normal",
  35842. default: true
  35843. },
  35844. "demon": {
  35845. name: "Demon"
  35846. },
  35847. "terra": {
  35848. name: "Terra"
  35849. },
  35850. "jupiter": {
  35851. name: "Jupiter"
  35852. },
  35853. "neptune": {
  35854. name: "Neptune"
  35855. }
  35856. }
  35857. ))
  35858. characterMakers.push(() => makeCharacter(
  35859. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35860. {
  35861. front: {
  35862. height: math.unit(16, "feet"),
  35863. weight: math.unit(610, "kg"),
  35864. name: "Front",
  35865. image: {
  35866. source: "./media/characters/huckle/front.svg",
  35867. extra: 1731/1625,
  35868. bottom: 33/1764
  35869. }
  35870. },
  35871. back: {
  35872. height: math.unit(16, "feet"),
  35873. weight: math.unit(610, "kg"),
  35874. name: "Back",
  35875. image: {
  35876. source: "./media/characters/huckle/back.svg",
  35877. extra: 1738/1651,
  35878. bottom: 37/1775
  35879. }
  35880. },
  35881. laughing: {
  35882. height: math.unit(3.75, "feet"),
  35883. name: "Laughing",
  35884. image: {
  35885. source: "./media/characters/huckle/laughing.svg"
  35886. }
  35887. },
  35888. angry: {
  35889. height: math.unit(4.15, "feet"),
  35890. name: "Angry",
  35891. image: {
  35892. source: "./media/characters/huckle/angry.svg"
  35893. }
  35894. },
  35895. },
  35896. [
  35897. {
  35898. name: "Normal",
  35899. height: math.unit(16, "feet"),
  35900. default: true
  35901. },
  35902. {
  35903. name: "Mini Macro",
  35904. height: math.unit(463, "feet")
  35905. },
  35906. {
  35907. name: "Macro",
  35908. height: math.unit(1680, "meters")
  35909. },
  35910. {
  35911. name: "Mega Macro",
  35912. height: math.unit(175, "km")
  35913. },
  35914. {
  35915. name: "Terra Macro",
  35916. height: math.unit(32, "gigameters")
  35917. },
  35918. {
  35919. name: "Multiverse+",
  35920. height: math.unit(2.56e23, "yottameters")
  35921. },
  35922. ]
  35923. ))
  35924. characterMakers.push(() => makeCharacter(
  35925. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35926. {
  35927. front: {
  35928. height: math.unit(6 + 9/12, "feet"),
  35929. weight: math.unit(280, "lb"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/candy/front.svg",
  35933. extra: 234/217,
  35934. bottom: 11/245
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Really Small",
  35941. height: math.unit(0.1, "nm")
  35942. },
  35943. {
  35944. name: "Micro",
  35945. height: math.unit(2, "inches")
  35946. },
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(6 + 9/12, "feet"),
  35950. default: true
  35951. },
  35952. {
  35953. name: "Small Macro",
  35954. height: math.unit(69, "feet")
  35955. },
  35956. {
  35957. name: "Macro",
  35958. height: math.unit(160, "feet")
  35959. },
  35960. {
  35961. name: "Megamacro",
  35962. height: math.unit(22000, "miles")
  35963. },
  35964. {
  35965. name: "Gigamacro",
  35966. height: math.unit(50000, "miles")
  35967. },
  35968. ]
  35969. ))
  35970. characterMakers.push(() => makeCharacter(
  35971. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35972. {
  35973. front: {
  35974. height: math.unit(4, "feet"),
  35975. weight: math.unit(90, "lb"),
  35976. name: "Front",
  35977. image: {
  35978. source: "./media/characters/joey-mcdonald/front.svg",
  35979. extra: 1059/852,
  35980. bottom: 33/1092
  35981. }
  35982. },
  35983. back: {
  35984. height: math.unit(4, "feet"),
  35985. weight: math.unit(90, "lb"),
  35986. name: "Back",
  35987. image: {
  35988. source: "./media/characters/joey-mcdonald/back.svg",
  35989. extra: 1077/879,
  35990. bottom: 5/1082
  35991. }
  35992. },
  35993. frontKobold: {
  35994. height: math.unit(4, "feet"),
  35995. weight: math.unit(100, "lb"),
  35996. name: "Front-kobold",
  35997. image: {
  35998. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35999. extra: 1480/1367,
  36000. bottom: 0/1480
  36001. }
  36002. },
  36003. backKobold: {
  36004. height: math.unit(4, "feet"),
  36005. weight: math.unit(100, "lb"),
  36006. name: "Back-kobold",
  36007. image: {
  36008. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36009. extra: 1449/1361,
  36010. bottom: 0/1449
  36011. }
  36012. },
  36013. },
  36014. [
  36015. {
  36016. name: "Normal",
  36017. height: math.unit(4, "feet"),
  36018. default: true
  36019. },
  36020. ]
  36021. ))
  36022. characterMakers.push(() => makeCharacter(
  36023. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36024. {
  36025. front: {
  36026. height: math.unit(12 + 6/12, "feet"),
  36027. name: "Front",
  36028. image: {
  36029. source: "./media/characters/kass-lockheed/front.svg",
  36030. extra: 354/343,
  36031. bottom: 9/363
  36032. }
  36033. },
  36034. back: {
  36035. height: math.unit(12 + 6/12, "feet"),
  36036. name: "Back",
  36037. image: {
  36038. source: "./media/characters/kass-lockheed/back.svg",
  36039. extra: 364/352,
  36040. bottom: 3/367
  36041. }
  36042. },
  36043. dick: {
  36044. height: math.unit(3.12, "feet"),
  36045. name: "Dick",
  36046. image: {
  36047. source: "./media/characters/kass-lockheed/dick.svg"
  36048. }
  36049. },
  36050. head: {
  36051. height: math.unit(2.6, "feet"),
  36052. name: "Head",
  36053. image: {
  36054. source: "./media/characters/kass-lockheed/head.svg"
  36055. }
  36056. },
  36057. bleh: {
  36058. height: math.unit(2.85, "feet"),
  36059. name: "Bleh",
  36060. image: {
  36061. source: "./media/characters/kass-lockheed/bleh.svg"
  36062. }
  36063. },
  36064. smug: {
  36065. height: math.unit(2.85, "feet"),
  36066. name: "Smug",
  36067. image: {
  36068. source: "./media/characters/kass-lockheed/smug.svg"
  36069. }
  36070. },
  36071. },
  36072. [
  36073. {
  36074. name: "Normal",
  36075. height: math.unit(12 + 6/12, "feet"),
  36076. default: true
  36077. },
  36078. ]
  36079. ))
  36080. characterMakers.push(() => makeCharacter(
  36081. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36082. {
  36083. front: {
  36084. height: math.unit(6 + 2/12, "feet"),
  36085. name: "Front",
  36086. image: {
  36087. source: "./media/characters/taylor/front.svg",
  36088. extra: 639/495,
  36089. bottom: 12/651
  36090. }
  36091. },
  36092. },
  36093. [
  36094. {
  36095. name: "Normal",
  36096. height: math.unit(6 + 2/12, "feet"),
  36097. default: true
  36098. },
  36099. {
  36100. name: "Big",
  36101. height: math.unit(15, "feet")
  36102. },
  36103. {
  36104. name: "Lorg",
  36105. height: math.unit(80, "feet")
  36106. },
  36107. {
  36108. name: "Too Lorg",
  36109. height: math.unit(120, "feet")
  36110. },
  36111. ]
  36112. ))
  36113. characterMakers.push(() => makeCharacter(
  36114. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36115. {
  36116. front: {
  36117. height: math.unit(15, "feet"),
  36118. name: "Front",
  36119. image: {
  36120. source: "./media/characters/kaizer/front.svg",
  36121. extra: 1612/1436,
  36122. bottom: 43/1655
  36123. }
  36124. },
  36125. },
  36126. [
  36127. {
  36128. name: "Normal",
  36129. height: math.unit(15, "feet"),
  36130. default: true
  36131. },
  36132. ]
  36133. ))
  36134. characterMakers.push(() => makeCharacter(
  36135. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36136. {
  36137. front: {
  36138. height: math.unit(2, "feet"),
  36139. weight: math.unit(30, "lb"),
  36140. name: "Front",
  36141. image: {
  36142. source: "./media/characters/sandy/front.svg",
  36143. extra: 1439/1307,
  36144. bottom: 194/1633
  36145. }
  36146. },
  36147. },
  36148. [
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(2, "feet"),
  36152. default: true
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36158. {
  36159. front: {
  36160. height: math.unit(3, "feet"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/mellvi/front.svg",
  36164. extra: 1831/1630,
  36165. bottom: 58/1889
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Normal",
  36172. height: math.unit(3, "feet"),
  36173. default: true
  36174. },
  36175. ]
  36176. ))
  36177. characterMakers.push(() => makeCharacter(
  36178. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36179. {
  36180. front: {
  36181. height: math.unit(5 + 11/12, "feet"),
  36182. weight: math.unit(200, "lb"),
  36183. name: "Front",
  36184. image: {
  36185. source: "./media/characters/shirou/front.svg",
  36186. extra: 2491/2383,
  36187. bottom: 189/2680
  36188. }
  36189. },
  36190. back: {
  36191. height: math.unit(5 + 11/12, "feet"),
  36192. weight: math.unit(200, "lb"),
  36193. name: "Back",
  36194. image: {
  36195. source: "./media/characters/shirou/back.svg",
  36196. extra: 2554/2450,
  36197. bottom: 76/2630
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(5 + 11/12, "feet"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(6 + 3/12, "feet"),
  36214. weight: math.unit(177, "lb"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/noryu/front.svg",
  36218. extra: 973/885,
  36219. bottom: 10/983
  36220. }
  36221. },
  36222. },
  36223. [
  36224. {
  36225. name: "Normal",
  36226. height: math.unit(6 + 3/12, "feet"),
  36227. default: true
  36228. },
  36229. ]
  36230. ))
  36231. characterMakers.push(() => makeCharacter(
  36232. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36233. {
  36234. front: {
  36235. height: math.unit(5 + 6/12, "feet"),
  36236. weight: math.unit(170, "lb"),
  36237. name: "Front",
  36238. image: {
  36239. source: "./media/characters/mevolas-rubenido/front.svg",
  36240. extra: 2109/1901,
  36241. bottom: 96/2205
  36242. }
  36243. },
  36244. },
  36245. [
  36246. {
  36247. name: "Normal",
  36248. height: math.unit(5 + 6/12, "feet"),
  36249. default: true
  36250. },
  36251. ]
  36252. ))
  36253. characterMakers.push(() => makeCharacter(
  36254. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36255. {
  36256. front: {
  36257. height: math.unit(100, "feet"),
  36258. name: "Front",
  36259. image: {
  36260. source: "./media/characters/dee/front.svg",
  36261. extra: 2153/2036,
  36262. bottom: 59/2212
  36263. }
  36264. },
  36265. back: {
  36266. height: math.unit(100, "feet"),
  36267. name: "Back",
  36268. image: {
  36269. source: "./media/characters/dee/back.svg",
  36270. extra: 2183/2058,
  36271. bottom: 75/2258
  36272. }
  36273. },
  36274. foot: {
  36275. height: math.unit(19.43, "feet"),
  36276. name: "Foot",
  36277. image: {
  36278. source: "./media/characters/dee/foot.svg"
  36279. }
  36280. },
  36281. hoof: {
  36282. height: math.unit(20.6, "feet"),
  36283. name: "Hoof",
  36284. image: {
  36285. source: "./media/characters/dee/hoof.svg"
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Macro",
  36292. height: math.unit(100, "feet"),
  36293. default: true
  36294. },
  36295. ]
  36296. ))
  36297. characterMakers.push(() => makeCharacter(
  36298. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36299. {
  36300. front: {
  36301. height: math.unit(5 + 6/12, "feet"),
  36302. name: "Front",
  36303. image: {
  36304. source: "./media/characters/teh/front.svg",
  36305. extra: 1002/847,
  36306. bottom: 62/1064
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(5 + 6/12, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36320. {
  36321. side: {
  36322. height: math.unit(6 + 1/12, "feet"),
  36323. weight: math.unit(204, "lb"),
  36324. name: "Side",
  36325. image: {
  36326. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36327. extra: 974/775,
  36328. bottom: 169/1143
  36329. }
  36330. },
  36331. sitting: {
  36332. height: math.unit(6 + 2/12, "feet"),
  36333. weight: math.unit(204, "lb"),
  36334. name: "Sitting",
  36335. image: {
  36336. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36337. extra: 1175/964,
  36338. bottom: 378/1553
  36339. }
  36340. },
  36341. },
  36342. [
  36343. {
  36344. name: "Normal",
  36345. height: math.unit(6 + 1/12, "feet"),
  36346. default: true
  36347. },
  36348. ]
  36349. ))
  36350. characterMakers.push(() => makeCharacter(
  36351. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36352. {
  36353. front: {
  36354. height: math.unit(6, "inches"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/tululi/front.svg",
  36358. extra: 1997/1876,
  36359. bottom: 20/2017
  36360. }
  36361. },
  36362. },
  36363. [
  36364. {
  36365. name: "Normal",
  36366. height: math.unit(6, "inches"),
  36367. default: true
  36368. },
  36369. ]
  36370. ))
  36371. characterMakers.push(() => makeCharacter(
  36372. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36373. {
  36374. front: {
  36375. height: math.unit(4 + 1/12, "feet"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/star/front.svg",
  36379. extra: 1493/1189,
  36380. bottom: 48/1541
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(4 + 1/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(6 + 3/12, "feet"),
  36397. name: "Front",
  36398. image: {
  36399. source: "./media/characters/comet/front.svg",
  36400. extra: 1681/1462,
  36401. bottom: 26/1707
  36402. }
  36403. },
  36404. },
  36405. [
  36406. {
  36407. name: "Normal",
  36408. height: math.unit(6 + 3/12, "feet"),
  36409. default: true
  36410. },
  36411. ]
  36412. ))
  36413. characterMakers.push(() => makeCharacter(
  36414. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36415. {
  36416. front: {
  36417. height: math.unit(950, "feet"),
  36418. name: "Front",
  36419. image: {
  36420. source: "./media/characters/vortex/front.svg",
  36421. extra: 1497/1434,
  36422. bottom: 56/1553
  36423. }
  36424. },
  36425. maw: {
  36426. height: math.unit(285, "feet"),
  36427. name: "Maw",
  36428. image: {
  36429. source: "./media/characters/vortex/maw.svg"
  36430. }
  36431. },
  36432. },
  36433. [
  36434. {
  36435. name: "Macro",
  36436. height: math.unit(950, "feet"),
  36437. default: true
  36438. },
  36439. ]
  36440. ))
  36441. characterMakers.push(() => makeCharacter(
  36442. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36443. {
  36444. front: {
  36445. height: math.unit(600, "feet"),
  36446. weight: math.unit(0.02, "grams"),
  36447. name: "Front",
  36448. image: {
  36449. source: "./media/characters/doodle/front.svg",
  36450. extra: 1578/1413,
  36451. bottom: 37/1615
  36452. }
  36453. },
  36454. },
  36455. [
  36456. {
  36457. name: "Macro",
  36458. height: math.unit(600, "feet"),
  36459. default: true
  36460. },
  36461. ]
  36462. ))
  36463. characterMakers.push(() => makeCharacter(
  36464. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36465. {
  36466. front: {
  36467. height: math.unit(6 + 6/12, "feet"),
  36468. name: "Front",
  36469. image: {
  36470. source: "./media/characters/jai/front.svg",
  36471. extra: 1645/1534,
  36472. bottom: 115/1760
  36473. }
  36474. },
  36475. },
  36476. [
  36477. {
  36478. name: "Normal",
  36479. height: math.unit(6 + 6/12, "feet"),
  36480. default: true
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(6 + 8/12, "feet"),
  36489. name: "Front",
  36490. image: {
  36491. source: "./media/characters/pixel/front.svg",
  36492. extra: 1900/1735,
  36493. bottom: 63/1963
  36494. }
  36495. },
  36496. },
  36497. [
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(6 + 8/12, "feet"),
  36501. default: true
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36507. {
  36508. back: {
  36509. height: math.unit(4 + 1/12, "feet"),
  36510. weight: math.unit(75, "lb"),
  36511. name: "Back",
  36512. image: {
  36513. source: "./media/characters/rhett/back.svg",
  36514. extra: 930/878,
  36515. bottom: 25/955
  36516. }
  36517. },
  36518. front: {
  36519. height: math.unit(4 + 1/12, "feet"),
  36520. weight: math.unit(75, "lb"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/rhett/front.svg",
  36524. extra: 1682/1586,
  36525. bottom: 92/1774
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Micro",
  36532. height: math.unit(8, "inches")
  36533. },
  36534. {
  36535. name: "Tiny",
  36536. height: math.unit(2, "feet")
  36537. },
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(4 + 1/12, "feet"),
  36541. default: true
  36542. },
  36543. ]
  36544. ))
  36545. characterMakers.push(() => makeCharacter(
  36546. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36547. {
  36548. front: {
  36549. height: math.unit(3 + 3/12, "feet"),
  36550. name: "Front",
  36551. image: {
  36552. source: "./media/characters/penny/front.svg",
  36553. extra: 1406/1311,
  36554. bottom: 26/1432
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(3 + 3/12, "feet"),
  36562. default: true
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36568. {
  36569. front: {
  36570. height: math.unit(4 + 11/12, "feet"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/monty/front.svg",
  36574. extra: 1479/1209,
  36575. bottom: 0/1479
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Normal",
  36582. height: math.unit(4 + 11/12, "feet"),
  36583. default: true
  36584. },
  36585. ]
  36586. ))
  36587. characterMakers.push(() => makeCharacter(
  36588. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36589. {
  36590. front: {
  36591. height: math.unit(8 + 4/12, "feet"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/sterling/front.svg",
  36595. extra: 1420/1236,
  36596. bottom: 27/1447
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(8 + 4/12, "feet"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36610. {
  36611. front: {
  36612. height: math.unit(15, "feet"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/marble/front.svg",
  36616. extra: 973/937,
  36617. bottom: 32/1005
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(15, "feet"),
  36625. default: true
  36626. },
  36627. ]
  36628. ))
  36629. characterMakers.push(() => makeCharacter(
  36630. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36631. {
  36632. front: {
  36633. height: math.unit(3, "inches"),
  36634. name: "Front",
  36635. image: {
  36636. source: "./media/characters/powder/front.svg",
  36637. extra: 1504/1334,
  36638. bottom: 518/2022
  36639. }
  36640. },
  36641. },
  36642. [
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(3, "inches"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(4 + 5/12, "feet"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/joey-raccoon/front.svg",
  36658. extra: 1273/1197,
  36659. bottom: 0/1273
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(4 + 5/12, "feet"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(8 + 4/12, "feet"),
  36676. name: "Front",
  36677. image: {
  36678. source: "./media/characters/vick/front.svg",
  36679. extra: 2187/2118,
  36680. bottom: 47/2234
  36681. }
  36682. },
  36683. },
  36684. [
  36685. {
  36686. name: "Normal",
  36687. height: math.unit(8 + 4/12, "feet"),
  36688. default: true
  36689. },
  36690. ]
  36691. ))
  36692. characterMakers.push(() => makeCharacter(
  36693. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36694. {
  36695. front: {
  36696. height: math.unit(5 + 5/12, "feet"),
  36697. name: "Front",
  36698. image: {
  36699. source: "./media/characters/mitsy/front.svg",
  36700. extra: 1842/1695,
  36701. bottom: 0/1842
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Normal",
  36708. height: math.unit(5 + 5/12, "feet"),
  36709. default: true
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(6 + 3/12, "feet"),
  36718. name: "Front",
  36719. image: {
  36720. source: "./media/characters/silvy/front.svg",
  36721. extra: 1995/1836,
  36722. bottom: 225/2220
  36723. }
  36724. },
  36725. },
  36726. [
  36727. {
  36728. name: "Normal",
  36729. height: math.unit(6 + 3/12, "feet"),
  36730. default: true
  36731. },
  36732. ]
  36733. ))
  36734. characterMakers.push(() => makeCharacter(
  36735. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36736. {
  36737. front: {
  36738. height: math.unit(3 + 8/12, "feet"),
  36739. name: "Front",
  36740. image: {
  36741. source: "./media/characters/rodney/front.svg",
  36742. extra: 1956/1747,
  36743. bottom: 31/1987
  36744. }
  36745. },
  36746. frontDressed: {
  36747. height: math.unit(2.9, "feet"),
  36748. name: "Front (Dressed)",
  36749. image: {
  36750. source: "./media/characters/rodney/front-dressed.svg",
  36751. extra: 1382/1241,
  36752. bottom: 385/1767
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(3 + 8/12, "feet"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(5 + 9/12, "feet"),
  36769. weight: math.unit(194, "lbs"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/zakail-sudekai/front.svg",
  36773. extra: 2696/2533,
  36774. bottom: 248/2944
  36775. }
  36776. },
  36777. maw: {
  36778. height: math.unit(1.35, "feet"),
  36779. name: "Maw",
  36780. image: {
  36781. source: "./media/characters/zakail-sudekai/maw.svg"
  36782. }
  36783. },
  36784. },
  36785. [
  36786. {
  36787. name: "Normal",
  36788. height: math.unit(5 + 9/12, "feet"),
  36789. default: true
  36790. },
  36791. ]
  36792. ))
  36793. characterMakers.push(() => makeCharacter(
  36794. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36795. {
  36796. front: {
  36797. height: math.unit(8 + 4/12, "feet"),
  36798. weight: math.unit(1200, "lb"),
  36799. name: "Front",
  36800. image: {
  36801. source: "./media/characters/eleanor/front.svg",
  36802. extra: 1226/1192,
  36803. bottom: 52/1278
  36804. }
  36805. },
  36806. back: {
  36807. height: math.unit(8 + 4/12, "feet"),
  36808. weight: math.unit(1200, "lb"),
  36809. name: "Back",
  36810. image: {
  36811. source: "./media/characters/eleanor/back.svg",
  36812. extra: 1242/1184,
  36813. bottom: 60/1302
  36814. }
  36815. },
  36816. head: {
  36817. height: math.unit(2.62, "feet"),
  36818. name: "Head",
  36819. image: {
  36820. source: "./media/characters/eleanor/head.svg"
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Normal",
  36827. height: math.unit(8 + 4/12, "feet"),
  36828. default: true
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(8 + 4/12, "feet"),
  36837. weight: math.unit(750, "lb"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/tanya/front.svg",
  36841. extra: 1749/1615,
  36842. bottom: 33/1782
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(8 + 4/12, "feet"),
  36850. default: true
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(5, "feet"),
  36859. weight: math.unit(225, "lb"),
  36860. name: "Front",
  36861. image: {
  36862. source: "./media/characters/cindy/front.svg",
  36863. extra: 1320/1250,
  36864. bottom: 42/1362
  36865. }
  36866. },
  36867. frontDressed: {
  36868. height: math.unit(5, "feet"),
  36869. weight: math.unit(225, "lb"),
  36870. name: "Front (Dressed)",
  36871. image: {
  36872. source: "./media/characters/cindy/front-dressed.svg",
  36873. extra: 1320/1250,
  36874. bottom: 42/1362
  36875. }
  36876. },
  36877. back: {
  36878. height: math.unit(5, "feet"),
  36879. weight: math.unit(225, "lb"),
  36880. name: "Back",
  36881. image: {
  36882. source: "./media/characters/cindy/back.svg",
  36883. extra: 1384/1346,
  36884. bottom: 14/1398
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(5, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(6 + 9/12, "feet"),
  36901. weight: math.unit(440, "lb"),
  36902. name: "Front",
  36903. image: {
  36904. source: "./media/characters/wilbur-owen/front.svg",
  36905. extra: 1575/1448,
  36906. bottom: 72/1647
  36907. }
  36908. },
  36909. back: {
  36910. height: math.unit(6 + 9/12, "feet"),
  36911. weight: math.unit(440, "lb"),
  36912. name: "Back",
  36913. image: {
  36914. source: "./media/characters/wilbur-owen/back.svg",
  36915. extra: 1578/1445,
  36916. bottom: 36/1614
  36917. }
  36918. },
  36919. },
  36920. [
  36921. {
  36922. name: "Normal",
  36923. height: math.unit(6 + 9/12, "feet"),
  36924. default: true
  36925. },
  36926. ]
  36927. ))
  36928. characterMakers.push(() => makeCharacter(
  36929. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36930. {
  36931. front: {
  36932. height: math.unit(6 + 5/12, "feet"),
  36933. weight: math.unit(650, "lb"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/keegan/front.svg",
  36937. extra: 2387/2198,
  36938. bottom: 33/2420
  36939. }
  36940. },
  36941. side: {
  36942. height: math.unit(6 + 5/12, "feet"),
  36943. weight: math.unit(650, "lb"),
  36944. name: "Side",
  36945. image: {
  36946. source: "./media/characters/keegan/side.svg",
  36947. extra: 2390/2202,
  36948. bottom: 47/2437
  36949. }
  36950. },
  36951. back: {
  36952. height: math.unit(6 + 5/12, "feet"),
  36953. weight: math.unit(650, "lb"),
  36954. name: "Back",
  36955. image: {
  36956. source: "./media/characters/keegan/back.svg",
  36957. extra: 2418/2268,
  36958. bottom: 15/2433
  36959. }
  36960. },
  36961. frontSfw: {
  36962. height: math.unit(6 + 5/12, "feet"),
  36963. weight: math.unit(650, "lb"),
  36964. name: "Front (SFW)",
  36965. image: {
  36966. source: "./media/characters/keegan/front-sfw.svg",
  36967. extra: 2387/2198,
  36968. bottom: 33/2420
  36969. }
  36970. },
  36971. beans: {
  36972. height: math.unit(1.85, "feet"),
  36973. name: "Beans",
  36974. image: {
  36975. source: "./media/characters/keegan/beans.svg"
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Normal",
  36982. height: math.unit(6 + 5/12, "feet"),
  36983. default: true
  36984. },
  36985. ]
  36986. ))
  36987. characterMakers.push(() => makeCharacter(
  36988. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36989. {
  36990. front: {
  36991. height: math.unit(9, "feet"),
  36992. name: "Front",
  36993. image: {
  36994. source: "./media/characters/colton/front.svg",
  36995. extra: 1589/1326,
  36996. bottom: 139/1728
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Normal",
  37003. height: math.unit(9, "feet"),
  37004. default: true
  37005. },
  37006. ]
  37007. ))
  37008. characterMakers.push(() => makeCharacter(
  37009. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37010. {
  37011. front: {
  37012. height: math.unit(2 + 9/12, "feet"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/bora/front.svg",
  37016. extra: 1265/1250,
  37017. bottom: 24/1289
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Normal",
  37024. height: math.unit(2 + 9/12, "feet"),
  37025. default: true
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37031. {
  37032. front: {
  37033. height: math.unit(8, "feet"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/myu-myu/front.svg",
  37037. extra: 1949/1857,
  37038. bottom: 90/2039
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Normal",
  37045. height: math.unit(8, "feet"),
  37046. default: true
  37047. },
  37048. {
  37049. name: "Big",
  37050. height: math.unit(15, "feet")
  37051. },
  37052. {
  37053. name: "BIG",
  37054. height: math.unit(25, "feet")
  37055. },
  37056. ]
  37057. ))
  37058. characterMakers.push(() => makeCharacter(
  37059. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37060. {
  37061. side: {
  37062. height: math.unit(7 + 5/12, "feet"),
  37063. weight: math.unit(2800, "lb"),
  37064. name: "Side",
  37065. image: {
  37066. source: "./media/characters/haloren/side.svg",
  37067. extra: 1793/409,
  37068. bottom: 59/1852
  37069. }
  37070. },
  37071. frontPaw: {
  37072. height: math.unit(2.36, "feet"),
  37073. name: "Front paw",
  37074. image: {
  37075. source: "./media/characters/haloren/front-paw.svg"
  37076. }
  37077. },
  37078. hindPaw: {
  37079. height: math.unit(3.18, "feet"),
  37080. name: "Hind paw",
  37081. image: {
  37082. source: "./media/characters/haloren/hind-paw.svg"
  37083. }
  37084. },
  37085. maw: {
  37086. height: math.unit(5.05, "feet"),
  37087. name: "Maw",
  37088. image: {
  37089. source: "./media/characters/haloren/maw.svg"
  37090. }
  37091. },
  37092. dick: {
  37093. height: math.unit(2.90, "feet"),
  37094. name: "Dick",
  37095. image: {
  37096. source: "./media/characters/haloren/dick.svg"
  37097. }
  37098. },
  37099. },
  37100. [
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(7 + 5/12, "feet"),
  37104. default: true
  37105. },
  37106. {
  37107. name: "Enhanced",
  37108. height: math.unit(14 + 3/12, "feet")
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(171, "cm"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/kimmy/front.svg",
  37120. extra: 1491/1435,
  37121. bottom: 53/1544
  37122. }
  37123. },
  37124. },
  37125. [
  37126. {
  37127. name: "Small",
  37128. height: math.unit(9, "cm")
  37129. },
  37130. {
  37131. name: "Normal",
  37132. height: math.unit(171, "cm"),
  37133. default: true
  37134. },
  37135. ]
  37136. ))
  37137. characterMakers.push(() => makeCharacter(
  37138. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37139. {
  37140. front: {
  37141. height: math.unit(8, "feet"),
  37142. weight: math.unit(300, "lb"),
  37143. name: "Front",
  37144. image: {
  37145. source: "./media/characters/galeboomer/front.svg",
  37146. extra: 4651/4415,
  37147. bottom: 162/4813
  37148. }
  37149. },
  37150. back: {
  37151. height: math.unit(8, "feet"),
  37152. weight: math.unit(300, "lb"),
  37153. name: "Back",
  37154. image: {
  37155. source: "./media/characters/galeboomer/back.svg",
  37156. extra: 4544/4314,
  37157. bottom: 16/4560
  37158. }
  37159. },
  37160. frontAlt: {
  37161. height: math.unit(8, "feet"),
  37162. weight: math.unit(300, "lb"),
  37163. name: "Front (Alt)",
  37164. image: {
  37165. source: "./media/characters/galeboomer/front-alt.svg",
  37166. extra: 4458/4228,
  37167. bottom: 68/4526
  37168. }
  37169. },
  37170. maw: {
  37171. height: math.unit(1.2, "feet"),
  37172. name: "Maw",
  37173. image: {
  37174. source: "./media/characters/galeboomer/maw.svg"
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(8, "feet"),
  37182. default: true
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37188. {
  37189. front: {
  37190. height: math.unit(5 + 9/12, "feet"),
  37191. weight: math.unit(120, "lb"),
  37192. name: "Front",
  37193. image: {
  37194. source: "./media/characters/chyr/front.svg",
  37195. extra: 1323/1254,
  37196. bottom: 63/1386
  37197. }
  37198. },
  37199. back: {
  37200. height: math.unit(5 + 9/12, "feet"),
  37201. weight: math.unit(120, "lb"),
  37202. name: "Back",
  37203. image: {
  37204. source: "./media/characters/chyr/back.svg",
  37205. extra: 1323/1252,
  37206. bottom: 48/1371
  37207. }
  37208. },
  37209. },
  37210. [
  37211. {
  37212. name: "Normal",
  37213. height: math.unit(5 + 9/12, "feet"),
  37214. default: true
  37215. },
  37216. ]
  37217. ))
  37218. characterMakers.push(() => makeCharacter(
  37219. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37220. {
  37221. front: {
  37222. height: math.unit(7, "feet"),
  37223. weight: math.unit(310, "lb"),
  37224. name: "Front",
  37225. image: {
  37226. source: "./media/characters/solarus/front.svg",
  37227. extra: 2415/2021,
  37228. bottom: 103/2518
  37229. }
  37230. },
  37231. back: {
  37232. height: math.unit(7, "feet"),
  37233. weight: math.unit(310, "lb"),
  37234. name: "Back",
  37235. image: {
  37236. source: "./media/characters/solarus/back.svg",
  37237. extra: 2463/2089,
  37238. bottom: 79/2542
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(7, "feet"),
  37246. default: true
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(16, "feet"),
  37255. name: "Front",
  37256. image: {
  37257. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37258. extra: 1844/1780,
  37259. bottom: 58/1902
  37260. }
  37261. },
  37262. winterCoat: {
  37263. height: math.unit(16, "feet"),
  37264. name: "Winter Coat",
  37265. image: {
  37266. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37267. extra: 1807/1775,
  37268. bottom: 69/1876
  37269. }
  37270. },
  37271. },
  37272. [
  37273. {
  37274. name: "Normal",
  37275. height: math.unit(16, "feet"),
  37276. default: true
  37277. },
  37278. {
  37279. name: "Chicago Size",
  37280. height: math.unit(560, "feet")
  37281. },
  37282. ]
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37286. {
  37287. front: {
  37288. height: math.unit(11 + 6/12, "feet"),
  37289. weight: math.unit(1366, "lb"),
  37290. name: "Front",
  37291. image: {
  37292. source: "./media/characters/lexor/front.svg",
  37293. extra: 1560/1481,
  37294. bottom: 211/1771
  37295. }
  37296. },
  37297. back: {
  37298. height: math.unit(11 + 6/12, "feet"),
  37299. weight: math.unit(1366, "lb"),
  37300. name: "Back",
  37301. image: {
  37302. source: "./media/characters/lexor/back.svg",
  37303. extra: 1614/1533,
  37304. bottom: 76/1690
  37305. }
  37306. },
  37307. maw: {
  37308. height: math.unit(3, "feet"),
  37309. name: "Maw",
  37310. image: {
  37311. source: "./media/characters/lexor/maw.svg"
  37312. }
  37313. },
  37314. dick: {
  37315. height: math.unit(2.59, "feet"),
  37316. name: "Dick",
  37317. image: {
  37318. source: "./media/characters/lexor/dick.svg"
  37319. }
  37320. },
  37321. },
  37322. [
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(11 + 6/12, "feet"),
  37326. default: true
  37327. },
  37328. ]
  37329. ))
  37330. characterMakers.push(() => makeCharacter(
  37331. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37332. {
  37333. front: {
  37334. height: math.unit(5 + 8/12, "feet"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/magnum/front.svg",
  37338. extra: 942/855,
  37339. bottom: 26/968
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(5 + 8/12, "feet"),
  37347. default: true
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37353. {
  37354. front: {
  37355. height: math.unit(18 + 4/12, "feet"),
  37356. weight: math.unit(1500, "kg"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/solas-sharpsman/front.svg",
  37360. extra: 1698/1589,
  37361. bottom: 0/1698
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Normal",
  37368. height: math.unit(18 + 4/12, "feet"),
  37369. default: true
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37375. {
  37376. front: {
  37377. height: math.unit(5 + 5/12, "feet"),
  37378. weight: math.unit(180, "lb"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/october/front.svg",
  37382. extra: 1800/1650,
  37383. bottom: 0/1800
  37384. }
  37385. },
  37386. frontNsfw: {
  37387. height: math.unit(5 + 5/12, "feet"),
  37388. weight: math.unit(180, "lb"),
  37389. name: "Front (NSFW)",
  37390. image: {
  37391. source: "./media/characters/october/front-nsfw.svg",
  37392. extra: 1392/1307,
  37393. bottom: 42/1434
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(5 + 5/12, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(8 + 6/12, "feet"),
  37410. name: "Front",
  37411. image: {
  37412. source: "./media/characters/essynkardi/front.svg",
  37413. extra: 1914/1846,
  37414. bottom: 22/1936
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Normal",
  37421. height: math.unit(8 + 6/12, "feet"),
  37422. default: true
  37423. },
  37424. ]
  37425. ))
  37426. characterMakers.push(() => makeCharacter(
  37427. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37428. {
  37429. front: {
  37430. height: math.unit(6 + 6/12, "feet"),
  37431. weight: math.unit(7, "lb"),
  37432. name: "Front",
  37433. image: {
  37434. source: "./media/characters/icky/front.svg",
  37435. extra: 813/782,
  37436. bottom: 66/879
  37437. }
  37438. },
  37439. back: {
  37440. height: math.unit(6 + 6/12, "feet"),
  37441. weight: math.unit(7, "lb"),
  37442. name: "Back",
  37443. image: {
  37444. source: "./media/characters/icky/back.svg",
  37445. extra: 754/735,
  37446. bottom: 56/810
  37447. }
  37448. },
  37449. },
  37450. [
  37451. {
  37452. name: "Normal",
  37453. height: math.unit(6 + 6/12, "feet"),
  37454. default: true
  37455. },
  37456. ]
  37457. ))
  37458. characterMakers.push(() => makeCharacter(
  37459. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37460. {
  37461. front: {
  37462. height: math.unit(15, "feet"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/rojas/front.svg",
  37466. extra: 1462/1408,
  37467. bottom: 95/1557
  37468. }
  37469. },
  37470. back: {
  37471. height: math.unit(15, "feet"),
  37472. name: "Back",
  37473. image: {
  37474. source: "./media/characters/rojas/back.svg",
  37475. extra: 1023/954,
  37476. bottom: 28/1051
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Normal",
  37483. height: math.unit(15, "feet"),
  37484. default: true
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37490. {
  37491. frontHuman: {
  37492. height: math.unit(5 + 7/12, "feet"),
  37493. name: "Front (Human)",
  37494. image: {
  37495. source: "./media/characters/alek-dryagan/front-human.svg",
  37496. extra: 1687/1667,
  37497. bottom: 69/1756
  37498. }
  37499. },
  37500. backHuman: {
  37501. height: math.unit(5 + 7/12, "feet"),
  37502. name: "Back (Human)",
  37503. image: {
  37504. source: "./media/characters/alek-dryagan/back-human.svg",
  37505. extra: 1670/1649,
  37506. bottom: 65/1735
  37507. }
  37508. },
  37509. frontDemi: {
  37510. height: math.unit(65, "feet"),
  37511. name: "Front (Demi)",
  37512. image: {
  37513. source: "./media/characters/alek-dryagan/front-demi.svg",
  37514. extra: 1669/1642,
  37515. bottom: 49/1718
  37516. }
  37517. },
  37518. backDemi: {
  37519. height: math.unit(65, "feet"),
  37520. name: "Back (Demi)",
  37521. image: {
  37522. source: "./media/characters/alek-dryagan/back-demi.svg",
  37523. extra: 1658/1637,
  37524. bottom: 40/1698
  37525. }
  37526. },
  37527. mawHuman: {
  37528. height: math.unit(0.3, "feet"),
  37529. name: "Maw (Human)",
  37530. image: {
  37531. source: "./media/characters/alek-dryagan/maw-human.svg"
  37532. }
  37533. },
  37534. mawDemi: {
  37535. height: math.unit(3.8, "feet"),
  37536. name: "Maw (Demi)",
  37537. image: {
  37538. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37539. }
  37540. },
  37541. },
  37542. [
  37543. {
  37544. name: "Normal",
  37545. height: math.unit(5 + 7/12, "feet"),
  37546. default: true
  37547. },
  37548. ]
  37549. ))
  37550. characterMakers.push(() => makeCharacter(
  37551. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37552. {
  37553. frontHuman: {
  37554. height: math.unit(5 + 2/12, "feet"),
  37555. name: "Front (Human)",
  37556. image: {
  37557. source: "./media/characters/gen/front-human.svg",
  37558. extra: 1627/1538,
  37559. bottom: 71/1698
  37560. }
  37561. },
  37562. backHuman: {
  37563. height: math.unit(5 + 2/12, "feet"),
  37564. name: "Back (Human)",
  37565. image: {
  37566. source: "./media/characters/gen/back-human.svg",
  37567. extra: 1638/1548,
  37568. bottom: 69/1707
  37569. }
  37570. },
  37571. frontDemi: {
  37572. height: math.unit(5 + 2/12, "feet"),
  37573. name: "Front (Demi)",
  37574. image: {
  37575. source: "./media/characters/gen/front-demi.svg",
  37576. extra: 1627/1538,
  37577. bottom: 71/1698
  37578. }
  37579. },
  37580. backDemi: {
  37581. height: math.unit(5 + 2/12, "feet"),
  37582. name: "Back (Demi)",
  37583. image: {
  37584. source: "./media/characters/gen/back-demi.svg",
  37585. extra: 1638/1548,
  37586. bottom: 69/1707
  37587. }
  37588. },
  37589. },
  37590. [
  37591. {
  37592. name: "Normal",
  37593. height: math.unit(5 + 2/12, "feet"),
  37594. default: true
  37595. },
  37596. ]
  37597. ))
  37598. characterMakers.push(() => makeCharacter(
  37599. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37600. {
  37601. frontImp: {
  37602. height: math.unit(1 + 11/12, "feet"),
  37603. name: "Front (Imp)",
  37604. image: {
  37605. source: "./media/characters/max-kobold/front-imp.svg",
  37606. extra: 1238/1134,
  37607. bottom: 81/1319
  37608. }
  37609. },
  37610. backImp: {
  37611. height: math.unit(1 + 11/12, "feet"),
  37612. name: "Back (Imp)",
  37613. image: {
  37614. source: "./media/characters/max-kobold/back-imp.svg",
  37615. extra: 1334/1175,
  37616. bottom: 34/1368
  37617. }
  37618. },
  37619. frontDemi: {
  37620. height: math.unit(5 + 9/12, "feet"),
  37621. name: "Front (Demi)",
  37622. image: {
  37623. source: "./media/characters/max-kobold/front-demi.svg",
  37624. extra: 1715/1685,
  37625. bottom: 54/1769
  37626. }
  37627. },
  37628. backDemi: {
  37629. height: math.unit(5 + 9/12, "feet"),
  37630. name: "Back (Demi)",
  37631. image: {
  37632. source: "./media/characters/max-kobold/back-demi.svg",
  37633. extra: 1752/1729,
  37634. bottom: 41/1793
  37635. }
  37636. },
  37637. handImp: {
  37638. height: math.unit(0.45, "feet"),
  37639. name: "Hand (Imp)",
  37640. image: {
  37641. source: "./media/characters/max-kobold/hand.svg"
  37642. }
  37643. },
  37644. pawImp: {
  37645. height: math.unit(0.46, "feet"),
  37646. name: "Paw (Imp)",
  37647. image: {
  37648. source: "./media/characters/max-kobold/paw.svg"
  37649. }
  37650. },
  37651. handDemi: {
  37652. height: math.unit(0.80, "feet"),
  37653. name: "Hand (Demi)",
  37654. image: {
  37655. source: "./media/characters/max-kobold/hand.svg"
  37656. }
  37657. },
  37658. pawDemi: {
  37659. height: math.unit(1.1, "feet"),
  37660. name: "Paw (Demi)",
  37661. image: {
  37662. source: "./media/characters/max-kobold/paw.svg"
  37663. }
  37664. },
  37665. headImp: {
  37666. height: math.unit(1.33, "feet"),
  37667. name: "Head (Imp)",
  37668. image: {
  37669. source: "./media/characters/max-kobold/head-imp.svg"
  37670. }
  37671. },
  37672. mawImp: {
  37673. height: math.unit(0.75, "feet"),
  37674. name: "Maw (Imp)",
  37675. image: {
  37676. source: "./media/characters/max-kobold/maw-imp.svg"
  37677. }
  37678. },
  37679. mawDemi: {
  37680. height: math.unit(0.42, "feet"),
  37681. name: "Maw (Demi)",
  37682. image: {
  37683. source: "./media/characters/max-kobold/maw-demi.svg"
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Normal",
  37690. height: math.unit(1 + 11/12, "feet"),
  37691. default: true
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37697. {
  37698. front: {
  37699. height: math.unit(7 + 5/12, "feet"),
  37700. name: "Front",
  37701. image: {
  37702. source: "./media/characters/carbon/front.svg",
  37703. extra: 1754/1689,
  37704. bottom: 65/1819
  37705. }
  37706. },
  37707. back: {
  37708. height: math.unit(7 + 5/12, "feet"),
  37709. name: "Back",
  37710. image: {
  37711. source: "./media/characters/carbon/back.svg",
  37712. extra: 1762/1695,
  37713. bottom: 24/1786
  37714. }
  37715. },
  37716. frontGigantamax: {
  37717. height: math.unit(150, "feet"),
  37718. name: "Front (Gigantamax)",
  37719. image: {
  37720. source: "./media/characters/carbon/front-gigantamax.svg",
  37721. extra: 1826/1669,
  37722. bottom: 59/1885
  37723. }
  37724. },
  37725. backGigantamax: {
  37726. height: math.unit(150, "feet"),
  37727. name: "Back (Gigantamax)",
  37728. image: {
  37729. source: "./media/characters/carbon/back-gigantamax.svg",
  37730. extra: 1796/1653,
  37731. bottom: 53/1849
  37732. }
  37733. },
  37734. maw: {
  37735. height: math.unit(0.48, "feet"),
  37736. name: "Maw",
  37737. image: {
  37738. source: "./media/characters/carbon/maw.svg"
  37739. }
  37740. },
  37741. mawGigantamax: {
  37742. height: math.unit(7.5, "feet"),
  37743. name: "Maw (Gigantamax)",
  37744. image: {
  37745. source: "./media/characters/carbon/maw-gigantamax.svg"
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(7 + 5/12, "feet"),
  37753. default: true
  37754. },
  37755. ]
  37756. ))
  37757. characterMakers.push(() => makeCharacter(
  37758. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37759. {
  37760. front: {
  37761. height: math.unit(6, "feet"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/maverick/front.svg",
  37765. extra: 1672/1661,
  37766. bottom: 85/1757
  37767. }
  37768. },
  37769. back: {
  37770. height: math.unit(6, "feet"),
  37771. name: "Back",
  37772. image: {
  37773. source: "./media/characters/maverick/back.svg",
  37774. extra: 1642/1631,
  37775. bottom: 38/1680
  37776. }
  37777. },
  37778. },
  37779. [
  37780. {
  37781. name: "Normal",
  37782. height: math.unit(6, "feet"),
  37783. default: true
  37784. },
  37785. ]
  37786. ))
  37787. characterMakers.push(() => makeCharacter(
  37788. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37789. {
  37790. front: {
  37791. height: math.unit(15, "feet"),
  37792. weight: math.unit(615, "lb"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/grockle/front.svg",
  37796. extra: 1535/1427,
  37797. bottom: 56/1591
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(15, "feet"),
  37805. default: true
  37806. },
  37807. {
  37808. name: "Large",
  37809. height: math.unit(150, "feet")
  37810. },
  37811. {
  37812. name: "Macro",
  37813. height: math.unit(1876, "feet")
  37814. },
  37815. {
  37816. name: "Mega Macro",
  37817. height: math.unit(121940, "feet")
  37818. },
  37819. {
  37820. name: "Giga Macro",
  37821. height: math.unit(750, "km")
  37822. },
  37823. {
  37824. name: "Tera Macro",
  37825. height: math.unit(750000, "km")
  37826. },
  37827. {
  37828. name: "Galactic",
  37829. height: math.unit(1.4e5, "km")
  37830. },
  37831. {
  37832. name: "Godlike",
  37833. height: math.unit(9.8e280, "galaxies")
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(11, "meters"),
  37842. weight: math.unit(20, "tonnes"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/alistair/front.svg",
  37846. extra: 1265/1009,
  37847. bottom: 93/1358
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(11, "meters"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(5 + 8/12, "feet"),
  37864. name: "Front",
  37865. image: {
  37866. source: "./media/characters/haruka/front.svg",
  37867. extra: 2012/1952,
  37868. bottom: 0/2012
  37869. }
  37870. },
  37871. },
  37872. [
  37873. {
  37874. name: "Normal",
  37875. height: math.unit(5 + 8/12, "feet"),
  37876. default: true
  37877. },
  37878. ]
  37879. ))
  37880. characterMakers.push(() => makeCharacter(
  37881. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37882. {
  37883. back: {
  37884. height: math.unit(9, "feet"),
  37885. name: "Back",
  37886. image: {
  37887. source: "./media/characters/vivian-sylveon/back.svg",
  37888. extra: 1853/1714,
  37889. bottom: 0/1853
  37890. }
  37891. },
  37892. },
  37893. [
  37894. {
  37895. name: "Normal",
  37896. height: math.unit(9, "feet"),
  37897. default: true
  37898. },
  37899. {
  37900. name: "Macro",
  37901. height: math.unit(500, "feet")
  37902. },
  37903. {
  37904. name: "Megamacro",
  37905. height: math.unit(600, "miles")
  37906. },
  37907. {
  37908. name: "Gigamacro",
  37909. height: math.unit(30000, "miles")
  37910. },
  37911. ]
  37912. ))
  37913. characterMakers.push(() => makeCharacter(
  37914. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37915. {
  37916. anthro: {
  37917. height: math.unit(5 + 10/12, "feet"),
  37918. weight: math.unit(100, "lb"),
  37919. name: "Anthro",
  37920. image: {
  37921. source: "./media/characters/daiki/anthro.svg",
  37922. extra: 1115/1027,
  37923. bottom: 69/1184
  37924. }
  37925. },
  37926. feral: {
  37927. height: math.unit(200, "feet"),
  37928. name: "Feral",
  37929. image: {
  37930. source: "./media/characters/daiki/feral.svg",
  37931. extra: 1256/313,
  37932. bottom: 39/1295
  37933. }
  37934. },
  37935. feralHead: {
  37936. height: math.unit(171, "feet"),
  37937. name: "Feral Head",
  37938. image: {
  37939. source: "./media/characters/daiki/feral-head.svg"
  37940. }
  37941. },
  37942. manaDragon: {
  37943. height: math.unit(170, "meters"),
  37944. name: "Mana-dragon",
  37945. image: {
  37946. source: "./media/characters/daiki/mana-dragon.svg",
  37947. extra: 763/420,
  37948. bottom: 97/860
  37949. }
  37950. },
  37951. },
  37952. [
  37953. {
  37954. name: "Normal",
  37955. height: math.unit(5 + 10/12, "feet"),
  37956. default: true
  37957. },
  37958. ]
  37959. ))
  37960. characterMakers.push(() => makeCharacter(
  37961. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37962. {
  37963. fullyEquippedFront: {
  37964. height: math.unit(3 + 1/12, "feet"),
  37965. weight: math.unit(24, "lb"),
  37966. name: "Fully Equipped (Front)",
  37967. image: {
  37968. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37969. extra: 687/605,
  37970. bottom: 18/705
  37971. }
  37972. },
  37973. fullyEquippedBack: {
  37974. height: math.unit(3 + 1/12, "feet"),
  37975. weight: math.unit(24, "lb"),
  37976. name: "Fully Equipped (Back)",
  37977. image: {
  37978. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37979. extra: 689/590,
  37980. bottom: 18/707
  37981. }
  37982. },
  37983. dailyWear: {
  37984. height: math.unit(3 + 1/12, "feet"),
  37985. weight: math.unit(24, "lb"),
  37986. name: "Daily Wear",
  37987. image: {
  37988. source: "./media/characters/tea-spot/daily-wear.svg",
  37989. extra: 701/620,
  37990. bottom: 21/722
  37991. }
  37992. },
  37993. maidWork: {
  37994. height: math.unit(3 + 1/12, "feet"),
  37995. weight: math.unit(24, "lb"),
  37996. name: "Maid Work",
  37997. image: {
  37998. source: "./media/characters/tea-spot/maid-work.svg",
  37999. extra: 693/609,
  38000. bottom: 15/708
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(3 + 1/12, "feet"),
  38008. default: true
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(175, "cm"),
  38017. weight: math.unit(75, "kg"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/chee/front.svg",
  38021. extra: 1796/1740,
  38022. bottom: 40/1836
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Micro-Micro",
  38029. height: math.unit(1, "nm")
  38030. },
  38031. {
  38032. name: "Micro-erst",
  38033. height: math.unit(1, "micrometer")
  38034. },
  38035. {
  38036. name: "Micro-er",
  38037. height: math.unit(1, "cm")
  38038. },
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(175, "cm"),
  38042. default: true
  38043. },
  38044. {
  38045. name: "Macro",
  38046. height: math.unit(100, "m")
  38047. },
  38048. {
  38049. name: "Macro-er",
  38050. height: math.unit(1, "km")
  38051. },
  38052. {
  38053. name: "Macro-erst",
  38054. height: math.unit(10, "km")
  38055. },
  38056. {
  38057. name: "Macro-Macro",
  38058. height: math.unit(100, "km")
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(11 + 9/12, "feet"),
  38067. weight: math.unit(935, "lb"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/kingsley/front.svg",
  38071. extra: 1803/1674,
  38072. bottom: 127/1930
  38073. }
  38074. },
  38075. frontNude: {
  38076. height: math.unit(11 + 9/12, "feet"),
  38077. weight: math.unit(935, "lb"),
  38078. name: "Front (Nude)",
  38079. image: {
  38080. source: "./media/characters/kingsley/front-nude.svg",
  38081. extra: 1803/1674,
  38082. bottom: 127/1930
  38083. }
  38084. },
  38085. },
  38086. [
  38087. {
  38088. name: "Normal",
  38089. height: math.unit(11 + 9/12, "feet"),
  38090. default: true
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38096. {
  38097. side: {
  38098. height: math.unit(9, "feet"),
  38099. name: "Side",
  38100. image: {
  38101. source: "./media/characters/rymel/side.svg",
  38102. extra: 792/469,
  38103. bottom: 121/913
  38104. }
  38105. },
  38106. maw: {
  38107. height: math.unit(2.4, "meters"),
  38108. name: "Maw",
  38109. image: {
  38110. source: "./media/characters/rymel/maw.svg"
  38111. }
  38112. },
  38113. },
  38114. [
  38115. {
  38116. name: "House Drake",
  38117. height: math.unit(2, "feet")
  38118. },
  38119. {
  38120. name: "Reduced",
  38121. height: math.unit(4.5, "feet")
  38122. },
  38123. {
  38124. name: "Normal",
  38125. height: math.unit(9, "feet"),
  38126. default: true
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(1.74, "meters"),
  38135. weight: math.unit(55, "kg"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/rubus/front.svg",
  38139. extra: 1894/1742,
  38140. bottom: 44/1938
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Normal",
  38147. height: math.unit(1.74, "meters"),
  38148. default: true
  38149. },
  38150. ]
  38151. ))
  38152. characterMakers.push(() => makeCharacter(
  38153. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38154. {
  38155. front: {
  38156. height: math.unit(5 + 2/12, "feet"),
  38157. weight: math.unit(112, "lb"),
  38158. name: "Front",
  38159. image: {
  38160. source: "./media/characters/cassie-kingston/front.svg",
  38161. extra: 1438/1390,
  38162. bottom: 47/1485
  38163. }
  38164. },
  38165. },
  38166. [
  38167. {
  38168. name: "Normal",
  38169. height: math.unit(5 + 2/12, "feet"),
  38170. default: true
  38171. },
  38172. {
  38173. name: "Macro",
  38174. height: math.unit(128, "feet")
  38175. },
  38176. {
  38177. name: "Megamacro",
  38178. height: math.unit(2.56, "miles")
  38179. },
  38180. ]
  38181. ))
  38182. characterMakers.push(() => makeCharacter(
  38183. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38184. {
  38185. front: {
  38186. height: math.unit(7, "feet"),
  38187. name: "Front",
  38188. image: {
  38189. source: "./media/characters/fox/front.svg",
  38190. extra: 1798/1703,
  38191. bottom: 55/1853
  38192. }
  38193. },
  38194. back: {
  38195. height: math.unit(7, "feet"),
  38196. name: "Back",
  38197. image: {
  38198. source: "./media/characters/fox/back.svg",
  38199. extra: 1748/1649,
  38200. bottom: 32/1780
  38201. }
  38202. },
  38203. head: {
  38204. height: math.unit(1.95, "feet"),
  38205. name: "Head",
  38206. image: {
  38207. source: "./media/characters/fox/head.svg"
  38208. }
  38209. },
  38210. dick: {
  38211. height: math.unit(1.33, "feet"),
  38212. name: "Dick",
  38213. image: {
  38214. source: "./media/characters/fox/dick.svg"
  38215. }
  38216. },
  38217. foot: {
  38218. height: math.unit(1, "feet"),
  38219. name: "Foot",
  38220. image: {
  38221. source: "./media/characters/fox/foot.svg"
  38222. }
  38223. },
  38224. paw: {
  38225. height: math.unit(0.92, "feet"),
  38226. name: "Paw",
  38227. image: {
  38228. source: "./media/characters/fox/paw.svg"
  38229. }
  38230. },
  38231. },
  38232. [
  38233. {
  38234. name: "Small",
  38235. height: math.unit(3, "inches")
  38236. },
  38237. {
  38238. name: "\"Realistic\"",
  38239. height: math.unit(7, "feet")
  38240. },
  38241. {
  38242. name: "Normal",
  38243. height: math.unit(150, "feet"),
  38244. default: true
  38245. },
  38246. {
  38247. name: "BIG",
  38248. height: math.unit(1200, "feet")
  38249. },
  38250. {
  38251. name: "👀",
  38252. height: math.unit(5, "miles")
  38253. },
  38254. {
  38255. name: "👀👀👀",
  38256. height: math.unit(64, "miles")
  38257. },
  38258. ]
  38259. ))
  38260. characterMakers.push(() => makeCharacter(
  38261. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38262. {
  38263. front: {
  38264. height: math.unit(625, "feet"),
  38265. name: "Front",
  38266. image: {
  38267. source: "./media/characters/asonja-rossa/front.svg",
  38268. extra: 1833/1686,
  38269. bottom: 24/1857
  38270. }
  38271. },
  38272. back: {
  38273. height: math.unit(625, "feet"),
  38274. name: "Back",
  38275. image: {
  38276. source: "./media/characters/asonja-rossa/back.svg",
  38277. extra: 1852/1753,
  38278. bottom: 26/1878
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Macro",
  38285. height: math.unit(625, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38292. {
  38293. side: {
  38294. height: math.unit(8, "feet"),
  38295. name: "Side",
  38296. image: {
  38297. source: "./media/characters/rezukii/side.svg",
  38298. extra: 979/542,
  38299. bottom: 87/1066
  38300. }
  38301. },
  38302. sitting: {
  38303. height: math.unit(14.6, "feet"),
  38304. name: "Sitting",
  38305. image: {
  38306. source: "./media/characters/rezukii/sitting.svg",
  38307. extra: 1023/813,
  38308. bottom: 45/1068
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Tiny",
  38315. height: math.unit(2, "feet")
  38316. },
  38317. {
  38318. name: "Smol",
  38319. height: math.unit(4, "feet")
  38320. },
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(8, "feet"),
  38324. default: true
  38325. },
  38326. {
  38327. name: "Big",
  38328. height: math.unit(12, "feet")
  38329. },
  38330. {
  38331. name: "Macro",
  38332. height: math.unit(30, "feet")
  38333. },
  38334. ]
  38335. ))
  38336. characterMakers.push(() => makeCharacter(
  38337. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38338. {
  38339. front: {
  38340. height: math.unit(14, "feet"),
  38341. weight: math.unit(9.5, "tonnes"),
  38342. name: "Front",
  38343. image: {
  38344. source: "./media/characters/dawnheart/front.svg",
  38345. extra: 2792/2675,
  38346. bottom: 64/2856
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(14, "feet"),
  38354. default: true
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38360. {
  38361. front: {
  38362. height: math.unit(1.7, "m"),
  38363. name: "Front",
  38364. image: {
  38365. source: "./media/characters/gladi/front.svg",
  38366. extra: 1460/1362,
  38367. bottom: 19/1479
  38368. }
  38369. },
  38370. back: {
  38371. height: math.unit(1.7, "m"),
  38372. name: "Back",
  38373. image: {
  38374. source: "./media/characters/gladi/back.svg",
  38375. extra: 1459/1357,
  38376. bottom: 12/1471
  38377. }
  38378. },
  38379. feral: {
  38380. height: math.unit(2.05, "m"),
  38381. name: "Feral",
  38382. image: {
  38383. source: "./media/characters/gladi/feral.svg",
  38384. extra: 821/557,
  38385. bottom: 91/912
  38386. }
  38387. },
  38388. },
  38389. [
  38390. {
  38391. name: "Shortest",
  38392. height: math.unit(70, "cm")
  38393. },
  38394. {
  38395. name: "Normal",
  38396. height: math.unit(1.7, "m")
  38397. },
  38398. {
  38399. name: "Macro",
  38400. height: math.unit(10, "m"),
  38401. default: true
  38402. },
  38403. {
  38404. name: "Tallest",
  38405. height: math.unit(200, "m")
  38406. },
  38407. ]
  38408. ))
  38409. characterMakers.push(() => makeCharacter(
  38410. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38411. {
  38412. front: {
  38413. height: math.unit(5 + 7/12, "feet"),
  38414. weight: math.unit(2, "tons"),
  38415. name: "Front",
  38416. image: {
  38417. source: "./media/characters/erdno/front.svg",
  38418. extra: 1234/1129,
  38419. bottom: 35/1269
  38420. }
  38421. },
  38422. angled: {
  38423. height: math.unit(5 + 7/12, "feet"),
  38424. weight: math.unit(2, "tons"),
  38425. name: "Angled",
  38426. image: {
  38427. source: "./media/characters/erdno/angled.svg",
  38428. extra: 1185/1139,
  38429. bottom: 36/1221
  38430. }
  38431. },
  38432. side: {
  38433. height: math.unit(5 + 7/12, "feet"),
  38434. weight: math.unit(2, "tons"),
  38435. name: "Side",
  38436. image: {
  38437. source: "./media/characters/erdno/side.svg",
  38438. extra: 1191/1144,
  38439. bottom: 40/1231
  38440. }
  38441. },
  38442. back: {
  38443. height: math.unit(5 + 7/12, "feet"),
  38444. weight: math.unit(2, "tons"),
  38445. name: "Back",
  38446. image: {
  38447. source: "./media/characters/erdno/back.svg",
  38448. extra: 1202/1146,
  38449. bottom: 17/1219
  38450. }
  38451. },
  38452. frontNsfw: {
  38453. height: math.unit(5 + 7/12, "feet"),
  38454. weight: math.unit(2, "tons"),
  38455. name: "Front (NSFW)",
  38456. image: {
  38457. source: "./media/characters/erdno/front-nsfw.svg",
  38458. extra: 1234/1129,
  38459. bottom: 35/1269
  38460. }
  38461. },
  38462. angledNsfw: {
  38463. height: math.unit(5 + 7/12, "feet"),
  38464. weight: math.unit(2, "tons"),
  38465. name: "Angled (NSFW)",
  38466. image: {
  38467. source: "./media/characters/erdno/angled-nsfw.svg",
  38468. extra: 1185/1139,
  38469. bottom: 36/1221
  38470. }
  38471. },
  38472. sideNsfw: {
  38473. height: math.unit(5 + 7/12, "feet"),
  38474. weight: math.unit(2, "tons"),
  38475. name: "Side (NSFW)",
  38476. image: {
  38477. source: "./media/characters/erdno/side-nsfw.svg",
  38478. extra: 1191/1144,
  38479. bottom: 40/1231
  38480. }
  38481. },
  38482. backNsfw: {
  38483. height: math.unit(5 + 7/12, "feet"),
  38484. weight: math.unit(2, "tons"),
  38485. name: "Back (NSFW)",
  38486. image: {
  38487. source: "./media/characters/erdno/back-nsfw.svg",
  38488. extra: 1202/1146,
  38489. bottom: 17/1219
  38490. }
  38491. },
  38492. frontHyper: {
  38493. height: math.unit(5 + 7/12, "feet"),
  38494. weight: math.unit(2, "tons"),
  38495. name: "Front (Hyper)",
  38496. image: {
  38497. source: "./media/characters/erdno/front-hyper.svg",
  38498. extra: 1298/1136,
  38499. bottom: 35/1333
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(5 + 7/12, "feet"),
  38507. default: true
  38508. },
  38509. {
  38510. name: "Big",
  38511. height: math.unit(5.7, "meters")
  38512. },
  38513. {
  38514. name: "Macro",
  38515. height: math.unit(5.7, "kilometers")
  38516. },
  38517. {
  38518. name: "Megamacro",
  38519. height: math.unit(5.7, "earths")
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(5 + 10/12, "feet"),
  38528. weight: math.unit(150, "lb"),
  38529. name: "Front",
  38530. image: {
  38531. source: "./media/characters/jamie/front.svg",
  38532. extra: 1908/1768,
  38533. bottom: 19/1927
  38534. }
  38535. },
  38536. },
  38537. [
  38538. {
  38539. name: "Minimum",
  38540. height: math.unit(2, "cm")
  38541. },
  38542. {
  38543. name: "Micro",
  38544. height: math.unit(3, "inches")
  38545. },
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(5 + 10/12, "feet"),
  38549. default: true
  38550. },
  38551. {
  38552. name: "Macro",
  38553. height: math.unit(150, "feet")
  38554. },
  38555. {
  38556. name: "Megamacro",
  38557. height: math.unit(10000, "m")
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(2, "meters"),
  38566. weight: math.unit(100, "kg"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/shiron/front.svg",
  38570. extra: 2103/1985,
  38571. bottom: 98/2201
  38572. }
  38573. },
  38574. back: {
  38575. height: math.unit(2, "meters"),
  38576. weight: math.unit(100, "kg"),
  38577. name: "Back",
  38578. image: {
  38579. source: "./media/characters/shiron/back.svg",
  38580. extra: 2110/2015,
  38581. bottom: 89/2199
  38582. }
  38583. },
  38584. hand: {
  38585. height: math.unit(0.96, "feet"),
  38586. name: "Hand",
  38587. image: {
  38588. source: "./media/characters/shiron/hand.svg"
  38589. }
  38590. },
  38591. foot: {
  38592. height: math.unit(1.464, "feet"),
  38593. name: "Foot",
  38594. image: {
  38595. source: "./media/characters/shiron/foot.svg"
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(2, "meters")
  38603. },
  38604. {
  38605. name: "Macro",
  38606. height: math.unit(500, "meters"),
  38607. default: true
  38608. },
  38609. {
  38610. name: "Megamacro",
  38611. height: math.unit(20, "km")
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(6, "feet"),
  38620. name: "Front",
  38621. image: {
  38622. source: "./media/characters/sam/front.svg",
  38623. extra: 849/826,
  38624. bottom: 19/868
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Normal",
  38631. height: math.unit(6, "feet"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(8 + 4/12, "feet"),
  38641. weight: math.unit(122, "kg"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/namori-kurogawa/front.svg",
  38645. extra: 1894/1576,
  38646. bottom: 34/1928
  38647. }
  38648. },
  38649. },
  38650. [
  38651. {
  38652. name: "Normal",
  38653. height: math.unit(8 + 4/12, "feet"),
  38654. default: true
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38660. {
  38661. front: {
  38662. height: math.unit(9, "feet"),
  38663. weight: math.unit(621, "lb"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/unmru/front.svg",
  38667. extra: 1853/1747,
  38668. bottom: 73/1926
  38669. }
  38670. },
  38671. side: {
  38672. height: math.unit(9, "feet"),
  38673. weight: math.unit(621, "lb"),
  38674. name: "Side",
  38675. image: {
  38676. source: "./media/characters/unmru/side.svg",
  38677. extra: 1781/1671,
  38678. bottom: 127/1908
  38679. }
  38680. },
  38681. back: {
  38682. height: math.unit(9, "feet"),
  38683. weight: math.unit(621, "lb"),
  38684. name: "Back",
  38685. image: {
  38686. source: "./media/characters/unmru/back.svg",
  38687. extra: 1894/1765,
  38688. bottom: 75/1969
  38689. }
  38690. },
  38691. dick: {
  38692. height: math.unit(3, "feet"),
  38693. weight: math.unit(35, "lb"),
  38694. name: "Dick",
  38695. image: {
  38696. source: "./media/characters/unmru/dick.svg"
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Normal",
  38703. height: math.unit(9, "feet")
  38704. },
  38705. {
  38706. name: "Natural",
  38707. height: math.unit(27, "feet"),
  38708. default: true
  38709. },
  38710. {
  38711. name: "Giant",
  38712. height: math.unit(90, "feet")
  38713. },
  38714. {
  38715. name: "Kaiju",
  38716. height: math.unit(270, "feet")
  38717. },
  38718. {
  38719. name: "Macro",
  38720. height: math.unit(900, "feet")
  38721. },
  38722. {
  38723. name: "Macro+",
  38724. height: math.unit(2700, "feet")
  38725. },
  38726. {
  38727. name: "Megamacro",
  38728. height: math.unit(9000, "feet")
  38729. },
  38730. {
  38731. name: "City-Crushing",
  38732. height: math.unit(27000, "feet")
  38733. },
  38734. {
  38735. name: "Mountain-Mashing",
  38736. height: math.unit(90000, "feet")
  38737. },
  38738. {
  38739. name: "Earth-Eclipsing",
  38740. height: math.unit(2.7e8, "feet")
  38741. },
  38742. {
  38743. name: "Sol-Swallowing",
  38744. height: math.unit(9e10, "feet")
  38745. },
  38746. {
  38747. name: "Majoris-Munching",
  38748. height: math.unit(2.7e13, "feet")
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38754. {
  38755. front: {
  38756. height: math.unit(1, "inch"),
  38757. name: "Front",
  38758. image: {
  38759. source: "./media/characters/squeaks-mouse/front.svg",
  38760. extra: 352/308,
  38761. bottom: 25/377
  38762. }
  38763. },
  38764. },
  38765. [
  38766. {
  38767. name: "Micro",
  38768. height: math.unit(1, "inch"),
  38769. default: true
  38770. },
  38771. ]
  38772. ))
  38773. characterMakers.push(() => makeCharacter(
  38774. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38775. {
  38776. side: {
  38777. height: math.unit(35, "feet"),
  38778. name: "Side",
  38779. image: {
  38780. source: "./media/characters/sayko/side.svg",
  38781. extra: 1697/1021,
  38782. bottom: 82/1779
  38783. }
  38784. },
  38785. head: {
  38786. height: math.unit(16, "feet"),
  38787. name: "Head",
  38788. image: {
  38789. source: "./media/characters/sayko/head.svg"
  38790. }
  38791. },
  38792. forepaw: {
  38793. height: math.unit(7.85, "feet"),
  38794. name: "Forepaw",
  38795. image: {
  38796. source: "./media/characters/sayko/forepaw.svg"
  38797. }
  38798. },
  38799. hindpaw: {
  38800. height: math.unit(8.8, "feet"),
  38801. name: "Hindpaw",
  38802. image: {
  38803. source: "./media/characters/sayko/hindpaw.svg"
  38804. }
  38805. },
  38806. },
  38807. [
  38808. {
  38809. name: "Normal",
  38810. height: math.unit(35, "feet"),
  38811. default: true
  38812. },
  38813. {
  38814. name: "Colossus",
  38815. height: math.unit(100, "meters")
  38816. },
  38817. {
  38818. name: "\"Small\" Deity",
  38819. height: math.unit(1, "km")
  38820. },
  38821. {
  38822. name: "\"Large\" Deity",
  38823. height: math.unit(15, "km")
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(6, "feet"),
  38832. weight: math.unit(250, "lb"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/mukiro/front.svg",
  38836. extra: 1368/1310,
  38837. bottom: 34/1402
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Normal",
  38844. height: math.unit(6, "feet"),
  38845. default: true
  38846. },
  38847. ]
  38848. ))
  38849. characterMakers.push(() => makeCharacter(
  38850. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38851. {
  38852. front: {
  38853. height: math.unit(12 + 4/12, "feet"),
  38854. name: "Front",
  38855. image: {
  38856. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38857. extra: 1346/1311,
  38858. bottom: 65/1411
  38859. }
  38860. },
  38861. },
  38862. [
  38863. {
  38864. name: "Base",
  38865. height: math.unit(12 + 4/12, "feet"),
  38866. default: true
  38867. },
  38868. {
  38869. name: "Macro",
  38870. height: math.unit(150, "feet")
  38871. },
  38872. {
  38873. name: "Mega",
  38874. height: math.unit(2, "miles")
  38875. },
  38876. {
  38877. name: "Demi God",
  38878. height: math.unit(4, "AU")
  38879. },
  38880. {
  38881. name: "God Size",
  38882. height: math.unit(1, "universe")
  38883. },
  38884. ]
  38885. ))
  38886. characterMakers.push(() => makeCharacter(
  38887. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38888. {
  38889. front: {
  38890. height: math.unit(3 + 3/12, "feet"),
  38891. weight: math.unit(88, "lb"),
  38892. name: "Front",
  38893. image: {
  38894. source: "./media/characters/trey/front.svg",
  38895. extra: 1815/1509,
  38896. bottom: 60/1875
  38897. }
  38898. },
  38899. },
  38900. [
  38901. {
  38902. name: "Normal",
  38903. height: math.unit(3 + 3/12, "feet"),
  38904. default: true
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38910. {
  38911. front: {
  38912. height: math.unit(4, "meters"),
  38913. name: "Front",
  38914. image: {
  38915. source: "./media/characters/adelonda/front.svg",
  38916. extra: 1077/982,
  38917. bottom: 39/1116
  38918. }
  38919. },
  38920. back: {
  38921. height: math.unit(4, "meters"),
  38922. name: "Back",
  38923. image: {
  38924. source: "./media/characters/adelonda/back.svg",
  38925. extra: 1105/1003,
  38926. bottom: 25/1130
  38927. }
  38928. },
  38929. feral: {
  38930. height: math.unit(40/1.5, "meters"),
  38931. name: "Feral",
  38932. image: {
  38933. source: "./media/characters/adelonda/feral.svg",
  38934. extra: 597/271,
  38935. bottom: 387/984
  38936. }
  38937. },
  38938. },
  38939. [
  38940. {
  38941. name: "Normal",
  38942. height: math.unit(4, "meters"),
  38943. default: true
  38944. },
  38945. ]
  38946. ))
  38947. characterMakers.push(() => makeCharacter(
  38948. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38949. {
  38950. front: {
  38951. height: math.unit(8 + 4/12, "feet"),
  38952. weight: math.unit(670, "lb"),
  38953. name: "Front",
  38954. image: {
  38955. source: "./media/characters/acadiel/front.svg",
  38956. extra: 1901/1595,
  38957. bottom: 142/2043
  38958. }
  38959. },
  38960. },
  38961. [
  38962. {
  38963. name: "Normal",
  38964. height: math.unit(8 + 4/12, "feet"),
  38965. default: true
  38966. },
  38967. {
  38968. name: "Macro",
  38969. height: math.unit(200, "feet")
  38970. },
  38971. ]
  38972. ))
  38973. characterMakers.push(() => makeCharacter(
  38974. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38975. {
  38976. front: {
  38977. height: math.unit(6 + 2/12, "feet"),
  38978. weight: math.unit(185, "lb"),
  38979. name: "Front",
  38980. image: {
  38981. source: "./media/characters/kayne-ein/front.svg",
  38982. extra: 1780/1560,
  38983. bottom: 81/1861
  38984. }
  38985. },
  38986. },
  38987. [
  38988. {
  38989. name: "Normal",
  38990. height: math.unit(6 + 2/12, "feet"),
  38991. default: true
  38992. },
  38993. {
  38994. name: "Transformation Stage",
  38995. height: math.unit(15, "feet")
  38996. },
  38997. {
  38998. name: "Macro",
  38999. height: math.unit(150, "feet")
  39000. },
  39001. {
  39002. name: "Earth's Shadow",
  39003. height: math.unit(6200, "miles")
  39004. },
  39005. {
  39006. name: "Universal Demon",
  39007. height: math.unit(28e9, "parsecs")
  39008. },
  39009. {
  39010. name: "Multiverse God",
  39011. height: math.unit(3, "multiverses")
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39017. {
  39018. front: {
  39019. height: math.unit(5 + 5/12, "feet"),
  39020. name: "Front",
  39021. image: {
  39022. source: "./media/characters/fawn/front.svg",
  39023. extra: 1873/1731,
  39024. bottom: 95/1968
  39025. }
  39026. },
  39027. back: {
  39028. height: math.unit(5 + 5/12, "feet"),
  39029. name: "Back",
  39030. image: {
  39031. source: "./media/characters/fawn/back.svg",
  39032. extra: 1813/1700,
  39033. bottom: 14/1827
  39034. }
  39035. },
  39036. hoof: {
  39037. height: math.unit(1.45, "feet"),
  39038. name: "Hoof",
  39039. image: {
  39040. source: "./media/characters/fawn/hoof.svg"
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(5 + 5/12, "feet"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(2 + 5/12, "feet"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/orion/front.svg",
  39060. extra: 1366/1304,
  39061. bottom: 43/1409
  39062. }
  39063. },
  39064. paw: {
  39065. height: math.unit(0.52, "feet"),
  39066. name: "Paw",
  39067. image: {
  39068. source: "./media/characters/orion/paw.svg"
  39069. }
  39070. },
  39071. },
  39072. [
  39073. {
  39074. name: "Normal",
  39075. height: math.unit(2 + 5/12, "feet"),
  39076. default: true
  39077. },
  39078. ]
  39079. ))
  39080. characterMakers.push(() => makeCharacter(
  39081. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39082. {
  39083. front: {
  39084. height: math.unit(5 + 10/12, "feet"),
  39085. name: "Front",
  39086. image: {
  39087. source: "./media/characters/vera/front.svg",
  39088. extra: 1680/1575,
  39089. bottom: 49/1729
  39090. }
  39091. },
  39092. back: {
  39093. height: math.unit(5 + 10/12, "feet"),
  39094. name: "Back",
  39095. image: {
  39096. source: "./media/characters/vera/back.svg",
  39097. extra: 1700/1588,
  39098. bottom: 18/1718
  39099. }
  39100. },
  39101. arcanine: {
  39102. height: math.unit(6 + 8/12, "feet"),
  39103. name: "Arcanine",
  39104. image: {
  39105. source: "./media/characters/vera/arcanine.svg",
  39106. extra: 1590/1511,
  39107. bottom: 71/1661
  39108. }
  39109. },
  39110. maw: {
  39111. height: math.unit(0.82, "feet"),
  39112. name: "Maw",
  39113. image: {
  39114. source: "./media/characters/vera/maw.svg"
  39115. }
  39116. },
  39117. mawArcanine: {
  39118. height: math.unit(0.97, "feet"),
  39119. name: "Maw (Arcanine)",
  39120. image: {
  39121. source: "./media/characters/vera/maw-arcanine.svg"
  39122. }
  39123. },
  39124. paw: {
  39125. height: math.unit(0.75, "feet"),
  39126. name: "Paw",
  39127. image: {
  39128. source: "./media/characters/vera/paw.svg"
  39129. }
  39130. },
  39131. pawprint: {
  39132. height: math.unit(0.52, "feet"),
  39133. name: "Pawprint",
  39134. image: {
  39135. source: "./media/characters/vera/pawprint.svg"
  39136. }
  39137. },
  39138. },
  39139. [
  39140. {
  39141. name: "Normal",
  39142. height: math.unit(5 + 10/12, "feet"),
  39143. default: true
  39144. },
  39145. {
  39146. name: "Macro",
  39147. height: math.unit(75, "feet")
  39148. },
  39149. ]
  39150. ))
  39151. characterMakers.push(() => makeCharacter(
  39152. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39153. {
  39154. front: {
  39155. height: math.unit(4, "feet"),
  39156. weight: math.unit(40, "lb"),
  39157. name: "Front",
  39158. image: {
  39159. source: "./media/characters/orvan-rabbit/front.svg",
  39160. extra: 1896/1642,
  39161. bottom: 29/1925
  39162. }
  39163. },
  39164. },
  39165. [
  39166. {
  39167. name: "Normal",
  39168. height: math.unit(4, "feet"),
  39169. default: true
  39170. },
  39171. ]
  39172. ))
  39173. characterMakers.push(() => makeCharacter(
  39174. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39175. {
  39176. front: {
  39177. height: math.unit(6, "feet"),
  39178. weight: math.unit(168, "lb"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/lisa/front.svg",
  39182. extra: 2065/1867,
  39183. bottom: 46/2111
  39184. }
  39185. },
  39186. back: {
  39187. height: math.unit(6, "feet"),
  39188. weight: math.unit(168, "lb"),
  39189. name: "Back",
  39190. image: {
  39191. source: "./media/characters/lisa/back.svg",
  39192. extra: 1982/1838,
  39193. bottom: 29/2011
  39194. }
  39195. },
  39196. maw: {
  39197. height: math.unit(0.81, "feet"),
  39198. name: "Maw",
  39199. image: {
  39200. source: "./media/characters/lisa/maw.svg"
  39201. }
  39202. },
  39203. paw: {
  39204. height: math.unit(0.9, "feet"),
  39205. name: "Paw",
  39206. image: {
  39207. source: "./media/characters/lisa/paw.svg"
  39208. }
  39209. },
  39210. caribousune: {
  39211. height: math.unit(7 + 2/12, "feet"),
  39212. weight: math.unit(268, "lb"),
  39213. name: "Caribousune",
  39214. image: {
  39215. source: "./media/characters/lisa/caribousune.svg",
  39216. extra: 1843/1633,
  39217. bottom: 29/1872
  39218. }
  39219. },
  39220. frontCaribousune: {
  39221. height: math.unit(7 + 2/12, "feet"),
  39222. weight: math.unit(268, "lb"),
  39223. name: "Front (Caribousune)",
  39224. image: {
  39225. source: "./media/characters/lisa/front-caribousune.svg",
  39226. extra: 1818/1638,
  39227. bottom: 52/1870
  39228. }
  39229. },
  39230. sideCaribousune: {
  39231. height: math.unit(7 + 2/12, "feet"),
  39232. weight: math.unit(268, "lb"),
  39233. name: "Side (Caribousune)",
  39234. image: {
  39235. source: "./media/characters/lisa/side-caribousune.svg",
  39236. extra: 1851/1635,
  39237. bottom: 16/1867
  39238. }
  39239. },
  39240. backCaribousune: {
  39241. height: math.unit(7 + 2/12, "feet"),
  39242. weight: math.unit(268, "lb"),
  39243. name: "Back (Caribousune)",
  39244. image: {
  39245. source: "./media/characters/lisa/back-caribousune.svg",
  39246. extra: 1801/1604,
  39247. bottom: 44/1845
  39248. }
  39249. },
  39250. caribou: {
  39251. height: math.unit(7 + 2/12, "feet"),
  39252. weight: math.unit(268, "lb"),
  39253. name: "Caribou",
  39254. image: {
  39255. source: "./media/characters/lisa/caribou.svg",
  39256. extra: 1843/1633,
  39257. bottom: 29/1872
  39258. }
  39259. },
  39260. frontCaribou: {
  39261. height: math.unit(7 + 2/12, "feet"),
  39262. weight: math.unit(268, "lb"),
  39263. name: "Front (Caribou)",
  39264. image: {
  39265. source: "./media/characters/lisa/front-caribou.svg",
  39266. extra: 1818/1638,
  39267. bottom: 52/1870
  39268. }
  39269. },
  39270. sideCaribou: {
  39271. height: math.unit(7 + 2/12, "feet"),
  39272. weight: math.unit(268, "lb"),
  39273. name: "Side (Caribou)",
  39274. image: {
  39275. source: "./media/characters/lisa/side-caribou.svg",
  39276. extra: 1851/1635,
  39277. bottom: 16/1867
  39278. }
  39279. },
  39280. backCaribou: {
  39281. height: math.unit(7 + 2/12, "feet"),
  39282. weight: math.unit(268, "lb"),
  39283. name: "Back (Caribou)",
  39284. image: {
  39285. source: "./media/characters/lisa/back-caribou.svg",
  39286. extra: 1801/1604,
  39287. bottom: 44/1845
  39288. }
  39289. },
  39290. mawCaribou: {
  39291. height: math.unit(1.45, "feet"),
  39292. name: "Maw (Caribou)",
  39293. image: {
  39294. source: "./media/characters/lisa/maw-caribou.svg"
  39295. }
  39296. },
  39297. mawCaribousune: {
  39298. height: math.unit(1.45, "feet"),
  39299. name: "Maw (Caribousune)",
  39300. image: {
  39301. source: "./media/characters/lisa/maw-caribousune.svg"
  39302. }
  39303. },
  39304. pawCaribousune: {
  39305. height: math.unit(1.61, "feet"),
  39306. name: "Paw (Caribou)",
  39307. image: {
  39308. source: "./media/characters/lisa/paw-caribousune.svg"
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(6, "feet")
  39316. },
  39317. {
  39318. name: "God Size",
  39319. height: math.unit(72, "feet"),
  39320. default: true
  39321. },
  39322. {
  39323. name: "Towering",
  39324. height: math.unit(288, "feet")
  39325. },
  39326. {
  39327. name: "City Size",
  39328. height: math.unit(48384, "feet")
  39329. },
  39330. {
  39331. name: "Continental",
  39332. height: math.unit(4200, "miles")
  39333. },
  39334. {
  39335. name: "Planet Eater",
  39336. height: math.unit(42, "earths")
  39337. },
  39338. {
  39339. name: "Star Swallower",
  39340. height: math.unit(42, "solarradii")
  39341. },
  39342. {
  39343. name: "System Swallower",
  39344. height: math.unit(84000, "AU")
  39345. },
  39346. {
  39347. name: "Galaxy Gobbler",
  39348. height: math.unit(42, "galaxies")
  39349. },
  39350. {
  39351. name: "Universe Devourer",
  39352. height: math.unit(42, "universes")
  39353. },
  39354. {
  39355. name: "Multiverse Muncher",
  39356. height: math.unit(42, "multiverses")
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(36, "feet"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/shadow-rat/front.svg",
  39368. extra: 1845/1758,
  39369. bottom: 83/1928
  39370. }
  39371. },
  39372. },
  39373. [
  39374. {
  39375. name: "Macro",
  39376. height: math.unit(36, "feet"),
  39377. default: true
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39383. {
  39384. side: {
  39385. height: math.unit(8, "feet"),
  39386. weight: math.unit(2630, "lb"),
  39387. name: "Side",
  39388. image: {
  39389. source: "./media/characters/torallia/side.svg",
  39390. extra: 2164/2021,
  39391. bottom: 371/2535
  39392. }
  39393. },
  39394. },
  39395. [
  39396. {
  39397. name: "Mortal Interaction",
  39398. height: math.unit(8, "feet")
  39399. },
  39400. {
  39401. name: "Natural",
  39402. height: math.unit(24, "feet"),
  39403. default: true
  39404. },
  39405. {
  39406. name: "Giant",
  39407. height: math.unit(80, "feet")
  39408. },
  39409. {
  39410. name: "Kaiju",
  39411. height: math.unit(240, "feet")
  39412. },
  39413. {
  39414. name: "Macro",
  39415. height: math.unit(800, "feet")
  39416. },
  39417. {
  39418. name: "Macro+",
  39419. height: math.unit(2400, "feet")
  39420. },
  39421. {
  39422. name: "Macro++",
  39423. height: math.unit(8000, "feet")
  39424. },
  39425. {
  39426. name: "City-Crushing",
  39427. height: math.unit(24000, "feet")
  39428. },
  39429. {
  39430. name: "Mountain-Mashing",
  39431. height: math.unit(80000, "feet")
  39432. },
  39433. {
  39434. name: "District Demolisher",
  39435. height: math.unit(240000, "feet")
  39436. },
  39437. {
  39438. name: "Tri-County Terror",
  39439. height: math.unit(800000, "feet")
  39440. },
  39441. {
  39442. name: "State Smasher",
  39443. height: math.unit(2.4e6, "feet")
  39444. },
  39445. {
  39446. name: "Nation Nemesis",
  39447. height: math.unit(8e6, "feet")
  39448. },
  39449. {
  39450. name: "Continent Cracker",
  39451. height: math.unit(2.4e7, "feet")
  39452. },
  39453. {
  39454. name: "Planet-Pillaging",
  39455. height: math.unit(8e7, "feet")
  39456. },
  39457. {
  39458. name: "Earth-Eclipsing",
  39459. height: math.unit(2.4e8, "feet")
  39460. },
  39461. {
  39462. name: "Jovian-Jostling",
  39463. height: math.unit(8e8, "feet")
  39464. },
  39465. {
  39466. name: "Gas Giant Gulper",
  39467. height: math.unit(2.4e9, "feet")
  39468. },
  39469. {
  39470. name: "Astral Annihilator",
  39471. height: math.unit(8e9, "feet")
  39472. },
  39473. {
  39474. name: "Celestial Conqueror",
  39475. height: math.unit(2.4e10, "feet")
  39476. },
  39477. {
  39478. name: "Sol-Swallowing",
  39479. height: math.unit(8e10, "feet")
  39480. },
  39481. {
  39482. name: "Hunter of the Heavens",
  39483. height: math.unit(2.4e13, "feet")
  39484. },
  39485. ]
  39486. ))
  39487. characterMakers.push(() => makeCharacter(
  39488. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39489. {
  39490. front: {
  39491. height: math.unit(6 + 8/12, "feet"),
  39492. name: "Front",
  39493. image: {
  39494. source: "./media/characters/rebecca-pawlson/front.svg",
  39495. extra: 1737/1596,
  39496. bottom: 107/1844
  39497. }
  39498. },
  39499. back: {
  39500. height: math.unit(6 + 8/12, "feet"),
  39501. name: "Back",
  39502. image: {
  39503. source: "./media/characters/rebecca-pawlson/back.svg",
  39504. extra: 1702/1523,
  39505. bottom: 86/1788
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Normal",
  39512. height: math.unit(6 + 8/12, "feet")
  39513. },
  39514. {
  39515. name: "Mini Macro",
  39516. height: math.unit(10, "feet"),
  39517. default: true
  39518. },
  39519. {
  39520. name: "Macro",
  39521. height: math.unit(100, "feet")
  39522. },
  39523. {
  39524. name: "Mega Macro",
  39525. height: math.unit(2500, "feet")
  39526. },
  39527. {
  39528. name: "Giga Macro",
  39529. height: math.unit(50, "miles")
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(7 + 6/12, "feet"),
  39538. weight: math.unit(600, "lb"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/moxie-nova/front.svg",
  39542. extra: 1734/1652,
  39543. bottom: 41/1775
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(7 + 6/12, "feet"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39557. {
  39558. goat: {
  39559. height: math.unit(4, "feet"),
  39560. weight: math.unit(180, "lb"),
  39561. name: "Goat",
  39562. image: {
  39563. source: "./media/characters/tiffany/goat.svg",
  39564. extra: 1845/1595,
  39565. bottom: 106/1951
  39566. }
  39567. },
  39568. front: {
  39569. height: math.unit(5, "feet"),
  39570. weight: math.unit(150, "lb"),
  39571. name: "Foxcoon",
  39572. image: {
  39573. source: "./media/characters/tiffany/foxcoon.svg",
  39574. extra: 1941/1845,
  39575. bottom: 58/1999
  39576. }
  39577. },
  39578. },
  39579. [
  39580. {
  39581. name: "Normal",
  39582. height: math.unit(5, "feet"),
  39583. default: true
  39584. },
  39585. ]
  39586. ))
  39587. characterMakers.push(() => makeCharacter(
  39588. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39589. {
  39590. front: {
  39591. height: math.unit(8, "feet"),
  39592. weight: math.unit(300, "lb"),
  39593. name: "Front",
  39594. image: {
  39595. source: "./media/characters/raxinath/front.svg",
  39596. extra: 1407/1309,
  39597. bottom: 39/1446
  39598. }
  39599. },
  39600. back: {
  39601. height: math.unit(8, "feet"),
  39602. weight: math.unit(300, "lb"),
  39603. name: "Back",
  39604. image: {
  39605. source: "./media/characters/raxinath/back.svg",
  39606. extra: 1405/1315,
  39607. bottom: 9/1414
  39608. }
  39609. },
  39610. },
  39611. [
  39612. {
  39613. name: "Speck",
  39614. height: math.unit(0.5, "nm")
  39615. },
  39616. {
  39617. name: "Micro",
  39618. height: math.unit(3, "inches")
  39619. },
  39620. {
  39621. name: "Kobold",
  39622. height: math.unit(3, "feet")
  39623. },
  39624. {
  39625. name: "Normal",
  39626. height: math.unit(8, "feet"),
  39627. default: true
  39628. },
  39629. {
  39630. name: "Giant",
  39631. height: math.unit(50, "feet")
  39632. },
  39633. {
  39634. name: "Macro",
  39635. height: math.unit(1000, "feet")
  39636. },
  39637. {
  39638. name: "Megamacro",
  39639. height: math.unit(1, "mile")
  39640. },
  39641. ]
  39642. ))
  39643. characterMakers.push(() => makeCharacter(
  39644. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39645. {
  39646. front: {
  39647. height: math.unit(10, "feet"),
  39648. weight: math.unit(1442, "lb"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/mal-dragon/front.svg",
  39652. extra: 1515/1444,
  39653. bottom: 113/1628
  39654. }
  39655. },
  39656. back: {
  39657. height: math.unit(10, "feet"),
  39658. weight: math.unit(1442, "lb"),
  39659. name: "Back",
  39660. image: {
  39661. source: "./media/characters/mal-dragon/back.svg",
  39662. extra: 1527/1434,
  39663. bottom: 25/1552
  39664. }
  39665. },
  39666. },
  39667. [
  39668. {
  39669. name: "Mortal Interaction",
  39670. height: math.unit(10, "feet"),
  39671. default: true
  39672. },
  39673. {
  39674. name: "Large",
  39675. height: math.unit(30, "feet")
  39676. },
  39677. {
  39678. name: "Kaiju",
  39679. height: math.unit(300, "feet")
  39680. },
  39681. {
  39682. name: "Megamacro",
  39683. height: math.unit(10000, "feet")
  39684. },
  39685. {
  39686. name: "Continent Cracker",
  39687. height: math.unit(30000000, "feet")
  39688. },
  39689. {
  39690. name: "Sol-Swallowing",
  39691. height: math.unit(1e11, "feet")
  39692. },
  39693. {
  39694. name: "Light Universal",
  39695. height: math.unit(5, "universes")
  39696. },
  39697. {
  39698. name: "Universe Atoms",
  39699. height: math.unit(1.829e9, "universes")
  39700. },
  39701. {
  39702. name: "Light Multiversal",
  39703. height: math.unit(5, "multiverses")
  39704. },
  39705. {
  39706. name: "Multiverse Atoms",
  39707. height: math.unit(1.829e9, "multiverses")
  39708. },
  39709. {
  39710. name: "Fabric of Time",
  39711. height: math.unit(1e262, "multiverses")
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(9, "feet"),
  39720. weight: math.unit(1050, "lb"),
  39721. name: "Front",
  39722. image: {
  39723. source: "./media/characters/tabitha/front.svg",
  39724. extra: 2083/1994,
  39725. bottom: 68/2151
  39726. }
  39727. },
  39728. },
  39729. [
  39730. {
  39731. name: "Baseline",
  39732. height: math.unit(9, "feet"),
  39733. default: true
  39734. },
  39735. {
  39736. name: "Giant",
  39737. height: math.unit(90, "feet")
  39738. },
  39739. {
  39740. name: "Macro",
  39741. height: math.unit(900, "feet")
  39742. },
  39743. {
  39744. name: "Megamacro",
  39745. height: math.unit(9000, "feet")
  39746. },
  39747. {
  39748. name: "City-Crushing",
  39749. height: math.unit(27000, "feet")
  39750. },
  39751. {
  39752. name: "Mountain-Mashing",
  39753. height: math.unit(90000, "feet")
  39754. },
  39755. {
  39756. name: "Nation Nemesis",
  39757. height: math.unit(9e6, "feet")
  39758. },
  39759. {
  39760. name: "Continent Cracker",
  39761. height: math.unit(27e6, "feet")
  39762. },
  39763. {
  39764. name: "Earth-Eclipsing",
  39765. height: math.unit(2.7e8, "feet")
  39766. },
  39767. {
  39768. name: "Gas Giant Gulper",
  39769. height: math.unit(2.7e9, "feet")
  39770. },
  39771. {
  39772. name: "Sol-Swallowing",
  39773. height: math.unit(9e10, "feet")
  39774. },
  39775. {
  39776. name: "Galaxy Gulper",
  39777. height: math.unit(9, "galaxies")
  39778. },
  39779. {
  39780. name: "Cosmos Churner",
  39781. height: math.unit(9, "universes")
  39782. },
  39783. ]
  39784. ))
  39785. characterMakers.push(() => makeCharacter(
  39786. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39787. {
  39788. front: {
  39789. height: math.unit(160, "cm"),
  39790. weight: math.unit(55, "kg"),
  39791. name: "Front",
  39792. image: {
  39793. source: "./media/characters/tow/front.svg",
  39794. extra: 1751/1722,
  39795. bottom: 74/1825
  39796. }
  39797. },
  39798. },
  39799. [
  39800. {
  39801. name: "Norm",
  39802. height: math.unit(160, "cm")
  39803. },
  39804. {
  39805. name: "Casual",
  39806. height: math.unit(3200, "m"),
  39807. default: true
  39808. },
  39809. {
  39810. name: "Show-Off",
  39811. height: math.unit(160, "km")
  39812. },
  39813. ]
  39814. ))
  39815. characterMakers.push(() => makeCharacter(
  39816. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39817. {
  39818. front: {
  39819. height: math.unit(7 + 11/12, "feet"),
  39820. weight: math.unit(342.8, "lb"),
  39821. name: "Front",
  39822. image: {
  39823. source: "./media/characters/vivian-orca-dragon/front.svg",
  39824. extra: 1890/1865,
  39825. bottom: 28/1918
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Micro",
  39832. height: math.unit(5, "inches")
  39833. },
  39834. {
  39835. name: "Normal",
  39836. height: math.unit(7 + 11/12, "feet"),
  39837. default: true
  39838. },
  39839. {
  39840. name: "Macro",
  39841. height: math.unit(395 + 7/12, "feet")
  39842. },
  39843. ]
  39844. ))
  39845. characterMakers.push(() => makeCharacter(
  39846. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39847. {
  39848. side: {
  39849. height: math.unit(10, "feet"),
  39850. weight: math.unit(1442, "lb"),
  39851. name: "Side",
  39852. image: {
  39853. source: "./media/characters/lotherakon/side.svg",
  39854. extra: 1604/1497,
  39855. bottom: 89/1693
  39856. }
  39857. },
  39858. },
  39859. [
  39860. {
  39861. name: "Mortal Interaction",
  39862. height: math.unit(10, "feet")
  39863. },
  39864. {
  39865. name: "Large",
  39866. height: math.unit(30, "feet"),
  39867. default: true
  39868. },
  39869. {
  39870. name: "Giant",
  39871. height: math.unit(100, "feet")
  39872. },
  39873. {
  39874. name: "Kaiju",
  39875. height: math.unit(300, "feet")
  39876. },
  39877. {
  39878. name: "Macro",
  39879. height: math.unit(1000, "feet")
  39880. },
  39881. {
  39882. name: "Macro+",
  39883. height: math.unit(3000, "feet")
  39884. },
  39885. {
  39886. name: "Megamacro",
  39887. height: math.unit(10000, "feet")
  39888. },
  39889. {
  39890. name: "City-Crushing",
  39891. height: math.unit(30000, "feet")
  39892. },
  39893. {
  39894. name: "Continent Cracker",
  39895. height: math.unit(30e6, "feet")
  39896. },
  39897. {
  39898. name: "Earth Eclipsing",
  39899. height: math.unit(3e8, "feet")
  39900. },
  39901. {
  39902. name: "Gas Giant Gulper",
  39903. height: math.unit(3e9, "feet")
  39904. },
  39905. {
  39906. name: "Sol-Swallowing",
  39907. height: math.unit(1e11, "feet")
  39908. },
  39909. {
  39910. name: "System Swallower",
  39911. height: math.unit(3e14, "feet")
  39912. },
  39913. {
  39914. name: "Galaxy Gulper",
  39915. height: math.unit(10, "galaxies")
  39916. },
  39917. {
  39918. name: "Light Universal",
  39919. height: math.unit(5, "universes")
  39920. },
  39921. {
  39922. name: "Universe Palm",
  39923. height: math.unit(20, "universes")
  39924. },
  39925. {
  39926. name: "Light Multiversal",
  39927. height: math.unit(5, "multiverses")
  39928. },
  39929. {
  39930. name: "Multiverse Palm",
  39931. height: math.unit(20, "multiverses")
  39932. },
  39933. {
  39934. name: "Inferno Incarnate",
  39935. height: math.unit(1e7, "multiverses")
  39936. },
  39937. ]
  39938. ))
  39939. characterMakers.push(() => makeCharacter(
  39940. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39941. {
  39942. front: {
  39943. height: math.unit(8, "feet"),
  39944. weight: math.unit(1200, "lb"),
  39945. name: "Front",
  39946. image: {
  39947. source: "./media/characters/malithee/front.svg",
  39948. extra: 1675/1640,
  39949. bottom: 162/1837
  39950. }
  39951. },
  39952. },
  39953. [
  39954. {
  39955. name: "Mortal Interaction",
  39956. height: math.unit(8, "feet"),
  39957. default: true
  39958. },
  39959. {
  39960. name: "Large",
  39961. height: math.unit(24, "feet")
  39962. },
  39963. {
  39964. name: "Kaiju",
  39965. height: math.unit(240, "feet")
  39966. },
  39967. {
  39968. name: "Megamacro",
  39969. height: math.unit(8000, "feet")
  39970. },
  39971. {
  39972. name: "Continent Cracker",
  39973. height: math.unit(24e6, "feet")
  39974. },
  39975. {
  39976. name: "Earth-Eclipsing",
  39977. height: math.unit(2.4e8, "feet")
  39978. },
  39979. {
  39980. name: "Sol-Swallowing",
  39981. height: math.unit(8e10, "feet")
  39982. },
  39983. {
  39984. name: "Galaxy Gulper",
  39985. height: math.unit(8, "galaxies")
  39986. },
  39987. {
  39988. name: "Light Universal",
  39989. height: math.unit(4, "universes")
  39990. },
  39991. {
  39992. name: "Universe Atoms",
  39993. height: math.unit(1.829e9, "universes")
  39994. },
  39995. {
  39996. name: "Light Multiversal",
  39997. height: math.unit(4, "multiverses")
  39998. },
  39999. {
  40000. name: "Multiverse Atoms",
  40001. height: math.unit(1.829e9, "multiverses")
  40002. },
  40003. {
  40004. name: "Nigh-Omnipresence",
  40005. height: math.unit(8e261, "multiverses")
  40006. },
  40007. ]
  40008. ))
  40009. characterMakers.push(() => makeCharacter(
  40010. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40011. {
  40012. front: {
  40013. height: math.unit(10, "feet"),
  40014. weight: math.unit(1500, "lb"),
  40015. name: "Front",
  40016. image: {
  40017. source: "./media/characters/miles-thestia/front.svg",
  40018. extra: 1812/1727,
  40019. bottom: 86/1898
  40020. }
  40021. },
  40022. back: {
  40023. height: math.unit(10, "feet"),
  40024. weight: math.unit(1500, "lb"),
  40025. name: "Back",
  40026. image: {
  40027. source: "./media/characters/miles-thestia/back.svg",
  40028. extra: 1799/1690,
  40029. bottom: 47/1846
  40030. }
  40031. },
  40032. frontNsfw: {
  40033. height: math.unit(10, "feet"),
  40034. weight: math.unit(1500, "lb"),
  40035. name: "Front (NSFW)",
  40036. image: {
  40037. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40038. extra: 1812/1727,
  40039. bottom: 86/1898
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Mini-Macro",
  40046. height: math.unit(10, "feet"),
  40047. default: true
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(25, "feet"),
  40056. name: "Front",
  40057. image: {
  40058. source: "./media/characters/titan-s-wulf/front.svg",
  40059. extra: 1560/1484,
  40060. bottom: 76/1636
  40061. }
  40062. },
  40063. },
  40064. [
  40065. {
  40066. name: "Smallest",
  40067. height: math.unit(25, "feet"),
  40068. default: true
  40069. },
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(200, "feet")
  40073. },
  40074. {
  40075. name: "Macro",
  40076. height: math.unit(200000, "feet")
  40077. },
  40078. {
  40079. name: "Multiversal Original",
  40080. height: math.unit(10000, "multiverses")
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40086. {
  40087. front: {
  40088. height: math.unit(8, "feet"),
  40089. weight: math.unit(553, "lb"),
  40090. name: "Front",
  40091. image: {
  40092. source: "./media/characters/tawendeh/front.svg",
  40093. extra: 2365/2268,
  40094. bottom: 83/2448
  40095. }
  40096. },
  40097. frontClothed: {
  40098. height: math.unit(8, "feet"),
  40099. weight: math.unit(553, "lb"),
  40100. name: "Front (Clothed)",
  40101. image: {
  40102. source: "./media/characters/tawendeh/front-clothed.svg",
  40103. extra: 2365/2268,
  40104. bottom: 83/2448
  40105. }
  40106. },
  40107. back: {
  40108. height: math.unit(8, "feet"),
  40109. weight: math.unit(553, "lb"),
  40110. name: "Back",
  40111. image: {
  40112. source: "./media/characters/tawendeh/back.svg",
  40113. extra: 2397/2294,
  40114. bottom: 42/2439
  40115. }
  40116. },
  40117. },
  40118. [
  40119. {
  40120. name: "Mortal Interaction",
  40121. height: math.unit(8, "feet"),
  40122. default: true
  40123. },
  40124. {
  40125. name: "Giant",
  40126. height: math.unit(80, "feet")
  40127. },
  40128. {
  40129. name: "Macro",
  40130. height: math.unit(800, "feet")
  40131. },
  40132. {
  40133. name: "Megamacro",
  40134. height: math.unit(8000, "feet")
  40135. },
  40136. {
  40137. name: "City-Crushing",
  40138. height: math.unit(24000, "feet")
  40139. },
  40140. {
  40141. name: "Mountain-Mashing",
  40142. height: math.unit(80000, "feet")
  40143. },
  40144. {
  40145. name: "Nation Nemesis",
  40146. height: math.unit(8e6, "feet")
  40147. },
  40148. {
  40149. name: "Continent Cracker",
  40150. height: math.unit(24e6, "feet")
  40151. },
  40152. {
  40153. name: "Earth-Eclipsing",
  40154. height: math.unit(2.4e8, "feet")
  40155. },
  40156. {
  40157. name: "Gas Giant Gulper",
  40158. height: math.unit(2.4e9, "feet")
  40159. },
  40160. {
  40161. name: "Sol-Swallowing",
  40162. height: math.unit(8e10, "feet")
  40163. },
  40164. {
  40165. name: "Galaxy Gulper",
  40166. height: math.unit(8, "galaxies")
  40167. },
  40168. {
  40169. name: "Cosmos Churner",
  40170. height: math.unit(8, "universes")
  40171. },
  40172. {
  40173. name: "Omnipotent Otter",
  40174. height: math.unit(80, "universes")
  40175. },
  40176. ]
  40177. ))
  40178. characterMakers.push(() => makeCharacter(
  40179. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40180. {
  40181. front: {
  40182. height: math.unit(2.6, "meters"),
  40183. weight: math.unit(900, "kg"),
  40184. name: "Front",
  40185. image: {
  40186. source: "./media/characters/neesha/front.svg",
  40187. extra: 1803/1653,
  40188. bottom: 128/1931
  40189. }
  40190. },
  40191. },
  40192. [
  40193. {
  40194. name: "Normal",
  40195. height: math.unit(2.6, "meters"),
  40196. default: true
  40197. },
  40198. {
  40199. name: "Macro",
  40200. height: math.unit(50, "meters")
  40201. },
  40202. ]
  40203. ))
  40204. characterMakers.push(() => makeCharacter(
  40205. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40206. {
  40207. front: {
  40208. height: math.unit(5, "feet"),
  40209. weight: math.unit(185, "lb"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/kyera/front.svg",
  40213. extra: 1875/1790,
  40214. bottom: 96/1971
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Normal",
  40221. height: math.unit(5, "feet"),
  40222. default: true
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(7 + 6/12, "feet"),
  40231. weight: math.unit(540, "lb"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/yuko/front.svg",
  40235. extra: 1282/1222,
  40236. bottom: 101/1383
  40237. }
  40238. },
  40239. frontClothed: {
  40240. height: math.unit(7 + 6/12, "feet"),
  40241. weight: math.unit(540, "lb"),
  40242. name: "Front (Clothed)",
  40243. image: {
  40244. source: "./media/characters/yuko/front-clothed.svg",
  40245. extra: 1282/1222,
  40246. bottom: 101/1383
  40247. }
  40248. },
  40249. },
  40250. [
  40251. {
  40252. name: "Normal",
  40253. height: math.unit(7 + 6/12, "feet"),
  40254. default: true
  40255. },
  40256. {
  40257. name: "Macro",
  40258. height: math.unit(26 + 9/12, "feet")
  40259. },
  40260. {
  40261. name: "Megamacro",
  40262. height: math.unit(300, "feet")
  40263. },
  40264. {
  40265. name: "Gigamacro",
  40266. height: math.unit(5000, "feet")
  40267. },
  40268. {
  40269. name: "Planetary",
  40270. height: math.unit(10000, "miles")
  40271. },
  40272. ]
  40273. ))
  40274. characterMakers.push(() => makeCharacter(
  40275. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40276. {
  40277. front: {
  40278. height: math.unit(8 + 2/12, "feet"),
  40279. weight: math.unit(600, "lb"),
  40280. name: "Front",
  40281. image: {
  40282. source: "./media/characters/deam-nitrel/front.svg",
  40283. extra: 1308/1234,
  40284. bottom: 125/1433
  40285. }
  40286. },
  40287. },
  40288. [
  40289. {
  40290. name: "Normal",
  40291. height: math.unit(8 + 2/12, "feet"),
  40292. default: true
  40293. },
  40294. ]
  40295. ))
  40296. characterMakers.push(() => makeCharacter(
  40297. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40298. {
  40299. front: {
  40300. height: math.unit(6.1, "feet"),
  40301. weight: math.unit(180, "lb"),
  40302. name: "Front",
  40303. image: {
  40304. source: "./media/characters/skyress/front.svg",
  40305. extra: 1045/915,
  40306. bottom: 28/1073
  40307. }
  40308. },
  40309. maw: {
  40310. height: math.unit(1, "feet"),
  40311. name: "Maw",
  40312. image: {
  40313. source: "./media/characters/skyress/maw.svg"
  40314. }
  40315. },
  40316. },
  40317. [
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(6.1, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "Macro",
  40325. height: math.unit(200, "feet")
  40326. },
  40327. ]
  40328. ))
  40329. characterMakers.push(() => makeCharacter(
  40330. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40331. {
  40332. front: {
  40333. height: math.unit(4 + 2/12, "feet"),
  40334. weight: math.unit(40, "kg"),
  40335. name: "Front",
  40336. image: {
  40337. source: "./media/characters/amethyst-jones/front.svg",
  40338. extra: 1220/1150,
  40339. bottom: 101/1321
  40340. }
  40341. },
  40342. },
  40343. [
  40344. {
  40345. name: "Normal",
  40346. height: math.unit(4 + 2/12, "feet"),
  40347. default: true
  40348. },
  40349. ]
  40350. ))
  40351. characterMakers.push(() => makeCharacter(
  40352. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40353. {
  40354. front: {
  40355. height: math.unit(1.7, "m"),
  40356. weight: math.unit(135, "lb"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/jade/front.svg",
  40360. extra: 1818/1767,
  40361. bottom: 32/1850
  40362. }
  40363. },
  40364. back: {
  40365. height: math.unit(1.7, "m"),
  40366. weight: math.unit(135, "lb"),
  40367. name: "Back",
  40368. image: {
  40369. source: "./media/characters/jade/back.svg",
  40370. extra: 1869/1809,
  40371. bottom: 35/1904
  40372. }
  40373. },
  40374. hand: {
  40375. height: math.unit(0.24, "m"),
  40376. name: "Hand",
  40377. image: {
  40378. source: "./media/characters/jade/hand.svg"
  40379. }
  40380. },
  40381. foot: {
  40382. height: math.unit(0.263, "m"),
  40383. name: "Foot",
  40384. image: {
  40385. source: "./media/characters/jade/foot.svg"
  40386. }
  40387. },
  40388. dick: {
  40389. height: math.unit(0.47, "m"),
  40390. name: "Dick",
  40391. image: {
  40392. source: "./media/characters/jade/dick.svg"
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Micro",
  40399. height: math.unit(22, "cm")
  40400. },
  40401. {
  40402. name: "Normal",
  40403. height: math.unit(1.7, "m"),
  40404. default: true
  40405. },
  40406. {
  40407. name: "Macro",
  40408. height: math.unit(152, "m")
  40409. },
  40410. ]
  40411. ))
  40412. characterMakers.push(() => makeCharacter(
  40413. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40414. {
  40415. front: {
  40416. height: math.unit(100, "miles"),
  40417. weight: math.unit(20000, "tons"),
  40418. name: "Front",
  40419. image: {
  40420. source: "./media/characters/cookie/front.svg",
  40421. extra: 1125/1070,
  40422. bottom: 30/1155
  40423. }
  40424. },
  40425. },
  40426. [
  40427. {
  40428. name: "Big",
  40429. height: math.unit(50, "feet")
  40430. },
  40431. {
  40432. name: "Macro",
  40433. height: math.unit(100, "miles"),
  40434. default: true
  40435. },
  40436. {
  40437. name: "Megamacro",
  40438. height: math.unit(90000, "miles")
  40439. },
  40440. ]
  40441. ))
  40442. characterMakers.push(() => makeCharacter(
  40443. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40444. {
  40445. front: {
  40446. height: math.unit(6, "feet"),
  40447. weight: math.unit(145, "lb"),
  40448. name: "Front",
  40449. image: {
  40450. source: "./media/characters/farzian/front.svg",
  40451. extra: 1902/1693,
  40452. bottom: 108/2010
  40453. }
  40454. },
  40455. },
  40456. [
  40457. {
  40458. name: "Macro",
  40459. height: math.unit(500, "feet"),
  40460. default: true
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40466. {
  40467. front: {
  40468. height: math.unit(3 + 6/12, "feet"),
  40469. weight: math.unit(50, "lb"),
  40470. name: "Front",
  40471. image: {
  40472. source: "./media/characters/kimberly-tilson/front.svg",
  40473. extra: 1400/1322,
  40474. bottom: 36/1436
  40475. }
  40476. },
  40477. back: {
  40478. height: math.unit(3 + 6/12, "feet"),
  40479. weight: math.unit(50, "lb"),
  40480. name: "Back",
  40481. image: {
  40482. source: "./media/characters/kimberly-tilson/back.svg",
  40483. extra: 1370/1307,
  40484. bottom: 20/1390
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Normal",
  40491. height: math.unit(3 + 6/12, "feet"),
  40492. default: true
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40498. {
  40499. front: {
  40500. height: math.unit(1148, "feet"),
  40501. weight: math.unit(34057, "lb"),
  40502. name: "Front",
  40503. image: {
  40504. source: "./media/characters/harthos/front.svg",
  40505. extra: 1391/1339,
  40506. bottom: 13/1404
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(1148, "feet"),
  40514. default: true
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(15, "feet"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/hypatia/front.svg",
  40526. extra: 1653/1591,
  40527. bottom: 79/1732
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "Normal",
  40534. height: math.unit(15, "feet")
  40535. },
  40536. {
  40537. name: "Small",
  40538. height: math.unit(300, "feet")
  40539. },
  40540. {
  40541. name: "Macro",
  40542. height: math.unit(2500, "feet"),
  40543. default: true
  40544. },
  40545. {
  40546. name: "Mega Macro",
  40547. height: math.unit(1500, "miles")
  40548. },
  40549. {
  40550. name: "Giga Macro",
  40551. height: math.unit(1.5e6, "miles")
  40552. },
  40553. ]
  40554. ))
  40555. characterMakers.push(() => makeCharacter(
  40556. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40557. {
  40558. front: {
  40559. height: math.unit(6, "feet"),
  40560. weight: math.unit(200, "lb"),
  40561. name: "Front",
  40562. image: {
  40563. source: "./media/characters/wulver/front.svg",
  40564. extra: 1724/1632,
  40565. bottom: 130/1854
  40566. }
  40567. },
  40568. frontNsfw: {
  40569. height: math.unit(6, "feet"),
  40570. weight: math.unit(200, "lb"),
  40571. name: "Front (NSFW)",
  40572. image: {
  40573. source: "./media/characters/wulver/front-nsfw.svg",
  40574. extra: 1724/1632,
  40575. bottom: 130/1854
  40576. }
  40577. },
  40578. },
  40579. [
  40580. {
  40581. name: "Human-Sized",
  40582. height: math.unit(6, "feet")
  40583. },
  40584. {
  40585. name: "Normal",
  40586. height: math.unit(4, "meters"),
  40587. default: true
  40588. },
  40589. {
  40590. name: "Large",
  40591. height: math.unit(6, "m")
  40592. },
  40593. ]
  40594. ))
  40595. characterMakers.push(() => makeCharacter(
  40596. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40597. {
  40598. front: {
  40599. height: math.unit(7, "feet"),
  40600. name: "Front",
  40601. image: {
  40602. source: "./media/characters/maru/front.svg",
  40603. extra: 1595/1570,
  40604. bottom: 0/1595
  40605. }
  40606. },
  40607. },
  40608. [
  40609. {
  40610. name: "Normal",
  40611. height: math.unit(7, "feet"),
  40612. default: true
  40613. },
  40614. {
  40615. name: "Macro",
  40616. height: math.unit(700, "feet")
  40617. },
  40618. {
  40619. name: "Mega Macro",
  40620. height: math.unit(25, "miles")
  40621. },
  40622. ]
  40623. ))
  40624. characterMakers.push(() => makeCharacter(
  40625. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40626. {
  40627. front: {
  40628. height: math.unit(6, "feet"),
  40629. weight: math.unit(170, "lb"),
  40630. name: "Front",
  40631. image: {
  40632. source: "./media/characters/xenon/front.svg",
  40633. extra: 1376/1305,
  40634. bottom: 56/1432
  40635. }
  40636. },
  40637. back: {
  40638. height: math.unit(6, "feet"),
  40639. weight: math.unit(170, "lb"),
  40640. name: "Back",
  40641. image: {
  40642. source: "./media/characters/xenon/back.svg",
  40643. extra: 1328/1259,
  40644. bottom: 95/1423
  40645. }
  40646. },
  40647. maw: {
  40648. height: math.unit(0.52, "feet"),
  40649. name: "Maw",
  40650. image: {
  40651. source: "./media/characters/xenon/maw.svg"
  40652. }
  40653. },
  40654. hand: {
  40655. height: math.unit(0.82, "feet"),
  40656. name: "Hand",
  40657. image: {
  40658. source: "./media/characters/xenon/hand.svg"
  40659. }
  40660. },
  40661. foot: {
  40662. height: math.unit(1.13, "feet"),
  40663. name: "Foot",
  40664. image: {
  40665. source: "./media/characters/xenon/foot.svg"
  40666. }
  40667. },
  40668. },
  40669. [
  40670. {
  40671. name: "Micro",
  40672. height: math.unit(0.8, "inches")
  40673. },
  40674. {
  40675. name: "Normal",
  40676. height: math.unit(6, "feet")
  40677. },
  40678. {
  40679. name: "Macro",
  40680. height: math.unit(50, "feet"),
  40681. default: true
  40682. },
  40683. {
  40684. name: "Macro+",
  40685. height: math.unit(250, "feet")
  40686. },
  40687. {
  40688. name: "Megamacro",
  40689. height: math.unit(1500, "feet")
  40690. },
  40691. ]
  40692. ))
  40693. characterMakers.push(() => makeCharacter(
  40694. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40695. {
  40696. front: {
  40697. height: math.unit(7 + 5/12, "feet"),
  40698. name: "Front",
  40699. image: {
  40700. source: "./media/characters/zane/front.svg",
  40701. extra: 1260/1203,
  40702. bottom: 94/1354
  40703. }
  40704. },
  40705. back: {
  40706. height: math.unit(5.05, "feet"),
  40707. name: "Back",
  40708. image: {
  40709. source: "./media/characters/zane/back.svg",
  40710. extra: 893/829,
  40711. bottom: 30/923
  40712. }
  40713. },
  40714. werewolf: {
  40715. height: math.unit(11, "feet"),
  40716. name: "Werewolf",
  40717. image: {
  40718. source: "./media/characters/zane/werewolf.svg",
  40719. extra: 1383/1323,
  40720. bottom: 89/1472
  40721. }
  40722. },
  40723. foot: {
  40724. height: math.unit(1.46, "feet"),
  40725. name: "Foot",
  40726. image: {
  40727. source: "./media/characters/zane/foot.svg"
  40728. }
  40729. },
  40730. footFront: {
  40731. height: math.unit(0.784, "feet"),
  40732. name: "Foot (Front)",
  40733. image: {
  40734. source: "./media/characters/zane/foot-front.svg"
  40735. }
  40736. },
  40737. dick: {
  40738. height: math.unit(1.95, "feet"),
  40739. name: "Dick",
  40740. image: {
  40741. source: "./media/characters/zane/dick.svg"
  40742. }
  40743. },
  40744. dickWerewolf: {
  40745. height: math.unit(3.77, "feet"),
  40746. name: "Dick (Werewolf)",
  40747. image: {
  40748. source: "./media/characters/zane/dick.svg"
  40749. }
  40750. },
  40751. },
  40752. [
  40753. {
  40754. name: "Normal",
  40755. height: math.unit(7 + 5/12, "feet"),
  40756. default: true
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(6 + 2/12, "feet"),
  40765. weight: math.unit(284, "lb"),
  40766. name: "Front",
  40767. image: {
  40768. source: "./media/characters/benni-desparque/front.svg",
  40769. extra: 1353/1126,
  40770. bottom: 69/1422
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Civilian",
  40777. height: math.unit(6 + 2/12, "feet")
  40778. },
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(98, "feet"),
  40782. default: true
  40783. },
  40784. {
  40785. name: "Kaiju Fighter",
  40786. height: math.unit(268, "feet")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(5, "feet"),
  40795. weight: math.unit(105, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/maxine/front.svg",
  40799. extra: 1386/1250,
  40800. bottom: 71/1457
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(5, "feet"),
  40808. default: true
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40814. {
  40815. front: {
  40816. height: math.unit(11 + 7/12, "feet"),
  40817. weight: math.unit(9576, "lb"),
  40818. name: "Front",
  40819. image: {
  40820. source: "./media/characters/scaly/front.svg",
  40821. extra: 888/867,
  40822. bottom: 36/924
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Normal",
  40829. height: math.unit(11 + 7/12, "feet"),
  40830. default: true
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40836. {
  40837. front: {
  40838. height: math.unit(6 + 3/12, "feet"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/saelria/front.svg",
  40842. extra: 1243/1138,
  40843. bottom: 46/1289
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "Micro",
  40850. height: math.unit(6, "inches"),
  40851. },
  40852. {
  40853. name: "Normal",
  40854. height: math.unit(6 + 3/12, "feet"),
  40855. default: true
  40856. },
  40857. {
  40858. name: "Macro",
  40859. height: math.unit(25, "feet")
  40860. },
  40861. ]
  40862. ))
  40863. characterMakers.push(() => makeCharacter(
  40864. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40865. {
  40866. front: {
  40867. height: math.unit(80, "meters"),
  40868. weight: math.unit(7000, "tonnes"),
  40869. name: "Front",
  40870. image: {
  40871. source: "./media/characters/tef/front.svg",
  40872. extra: 2036/1991,
  40873. bottom: 54/2090
  40874. }
  40875. },
  40876. back: {
  40877. height: math.unit(80, "meters"),
  40878. weight: math.unit(7000, "tonnes"),
  40879. name: "Back",
  40880. image: {
  40881. source: "./media/characters/tef/back.svg",
  40882. extra: 2036/1991,
  40883. bottom: 54/2090
  40884. }
  40885. },
  40886. },
  40887. [
  40888. {
  40889. name: "Macro",
  40890. height: math.unit(80, "meters"),
  40891. default: true
  40892. },
  40893. ]
  40894. ))
  40895. characterMakers.push(() => makeCharacter(
  40896. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40897. {
  40898. front: {
  40899. height: math.unit(13, "feet"),
  40900. weight: math.unit(6, "tons"),
  40901. name: "Front",
  40902. image: {
  40903. source: "./media/characters/rover/front.svg",
  40904. extra: 1233/1156,
  40905. bottom: 50/1283
  40906. }
  40907. },
  40908. back: {
  40909. height: math.unit(13, "feet"),
  40910. weight: math.unit(6, "tons"),
  40911. name: "Back",
  40912. image: {
  40913. source: "./media/characters/rover/back.svg",
  40914. extra: 1327/1258,
  40915. bottom: 39/1366
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Normal",
  40922. height: math.unit(13, "feet"),
  40923. default: true
  40924. },
  40925. {
  40926. name: "Macro",
  40927. height: math.unit(1300, "feet")
  40928. },
  40929. {
  40930. name: "Megamacro",
  40931. height: math.unit(1300, "miles")
  40932. },
  40933. {
  40934. name: "Gigamacro",
  40935. height: math.unit(1300000, "miles")
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40941. {
  40942. front: {
  40943. height: math.unit(6, "feet"),
  40944. weight: math.unit(150, "lb"),
  40945. name: "Front",
  40946. image: {
  40947. source: "./media/characters/ariz/front.svg",
  40948. extra: 1401/1346,
  40949. bottom: 5/1406
  40950. }
  40951. },
  40952. },
  40953. [
  40954. {
  40955. name: "Normal",
  40956. height: math.unit(10, "feet"),
  40957. default: true
  40958. },
  40959. ]
  40960. ))
  40961. characterMakers.push(() => makeCharacter(
  40962. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40963. {
  40964. front: {
  40965. height: math.unit(6, "feet"),
  40966. weight: math.unit(140, "lb"),
  40967. name: "Front",
  40968. image: {
  40969. source: "./media/characters/sigrun/front.svg",
  40970. extra: 1418/1359,
  40971. bottom: 27/1445
  40972. }
  40973. },
  40974. },
  40975. [
  40976. {
  40977. name: "Macro",
  40978. height: math.unit(35, "feet"),
  40979. default: true
  40980. },
  40981. ]
  40982. ))
  40983. characterMakers.push(() => makeCharacter(
  40984. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40985. {
  40986. front: {
  40987. height: math.unit(6, "feet"),
  40988. weight: math.unit(150, "lb"),
  40989. name: "Front",
  40990. image: {
  40991. source: "./media/characters/numin/front.svg",
  40992. extra: 1433/1388,
  40993. bottom: 12/1445
  40994. }
  40995. },
  40996. },
  40997. [
  40998. {
  40999. name: "Macro",
  41000. height: math.unit(21.5, "km"),
  41001. default: true
  41002. },
  41003. ]
  41004. ))
  41005. characterMakers.push(() => makeCharacter(
  41006. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41007. {
  41008. front: {
  41009. height: math.unit(6, "feet"),
  41010. weight: math.unit(463, "lb"),
  41011. name: "Front",
  41012. image: {
  41013. source: "./media/characters/melwa/front.svg",
  41014. extra: 1307/1248,
  41015. bottom: 93/1400
  41016. }
  41017. },
  41018. },
  41019. [
  41020. {
  41021. name: "Macro",
  41022. height: math.unit(50, "meters"),
  41023. default: true
  41024. },
  41025. ]
  41026. ))
  41027. characterMakers.push(() => makeCharacter(
  41028. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41029. {
  41030. front: {
  41031. height: math.unit(325, "feet"),
  41032. name: "Front",
  41033. image: {
  41034. source: "./media/characters/zorkaiju/front.svg",
  41035. extra: 1955/1814,
  41036. bottom: 40/1995
  41037. }
  41038. },
  41039. frontExtended: {
  41040. height: math.unit(325, "feet"),
  41041. name: "Front (Extended)",
  41042. image: {
  41043. source: "./media/characters/zorkaiju/front-extended.svg",
  41044. extra: 1955/1814,
  41045. bottom: 40/1995
  41046. }
  41047. },
  41048. side: {
  41049. height: math.unit(325, "feet"),
  41050. name: "Side",
  41051. image: {
  41052. source: "./media/characters/zorkaiju/side.svg",
  41053. extra: 1495/1396,
  41054. bottom: 17/1512
  41055. }
  41056. },
  41057. sideExtended: {
  41058. height: math.unit(325, "feet"),
  41059. name: "Side (Extended)",
  41060. image: {
  41061. source: "./media/characters/zorkaiju/side-extended.svg",
  41062. extra: 1495/1396,
  41063. bottom: 17/1512
  41064. }
  41065. },
  41066. back: {
  41067. height: math.unit(325, "feet"),
  41068. name: "Back",
  41069. image: {
  41070. source: "./media/characters/zorkaiju/back.svg",
  41071. extra: 1959/1821,
  41072. bottom: 31/1990
  41073. }
  41074. },
  41075. backExtended: {
  41076. height: math.unit(325, "feet"),
  41077. name: "Back (Extended)",
  41078. image: {
  41079. source: "./media/characters/zorkaiju/back-extended.svg",
  41080. extra: 1959/1821,
  41081. bottom: 31/1990
  41082. }
  41083. },
  41084. hand: {
  41085. height: math.unit(58.4, "feet"),
  41086. name: "Hand",
  41087. image: {
  41088. source: "./media/characters/zorkaiju/hand.svg"
  41089. }
  41090. },
  41091. handExtended: {
  41092. height: math.unit(61.4, "feet"),
  41093. name: "Hand (Extended)",
  41094. image: {
  41095. source: "./media/characters/zorkaiju/hand-extended.svg"
  41096. }
  41097. },
  41098. foot: {
  41099. height: math.unit(95, "feet"),
  41100. name: "Foot",
  41101. image: {
  41102. source: "./media/characters/zorkaiju/foot.svg"
  41103. }
  41104. },
  41105. leftArm: {
  41106. height: math.unit(59, "feet"),
  41107. name: "Left Arm",
  41108. image: {
  41109. source: "./media/characters/zorkaiju/left-arm.svg"
  41110. }
  41111. },
  41112. rightArm: {
  41113. height: math.unit(59, "feet"),
  41114. name: "Right Arm",
  41115. image: {
  41116. source: "./media/characters/zorkaiju/right-arm.svg"
  41117. }
  41118. },
  41119. tail: {
  41120. height: math.unit(104, "feet"),
  41121. name: "Tail",
  41122. image: {
  41123. source: "./media/characters/zorkaiju/tail.svg"
  41124. }
  41125. },
  41126. tailExtended: {
  41127. height: math.unit(104, "feet"),
  41128. name: "Tail (Extended)",
  41129. image: {
  41130. source: "./media/characters/zorkaiju/tail-extended.svg"
  41131. }
  41132. },
  41133. tailBottom: {
  41134. height: math.unit(104, "feet"),
  41135. name: "Tail Bottom",
  41136. image: {
  41137. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41138. }
  41139. },
  41140. crystal: {
  41141. height: math.unit(27.54, "feet"),
  41142. name: "Crystal",
  41143. image: {
  41144. source: "./media/characters/zorkaiju/crystal.svg"
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Kaiju",
  41151. height: math.unit(325, "feet"),
  41152. default: true
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41158. {
  41159. front: {
  41160. height: math.unit(6 + 1/12, "feet"),
  41161. weight: math.unit(115, "lb"),
  41162. name: "Front",
  41163. image: {
  41164. source: "./media/characters/bailey-belfry/front.svg",
  41165. extra: 1240/1121,
  41166. bottom: 101/1341
  41167. }
  41168. },
  41169. },
  41170. [
  41171. {
  41172. name: "Normal",
  41173. height: math.unit(6 + 1/12, "feet"),
  41174. default: true
  41175. },
  41176. ]
  41177. ))
  41178. characterMakers.push(() => makeCharacter(
  41179. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41180. {
  41181. side: {
  41182. height: math.unit(4, "meters"),
  41183. weight: math.unit(250, "kg"),
  41184. name: "Side",
  41185. image: {
  41186. source: "./media/characters/blacky/side.svg",
  41187. extra: 1027/919,
  41188. bottom: 43/1070
  41189. }
  41190. },
  41191. maw: {
  41192. height: math.unit(1, "meters"),
  41193. name: "Maw",
  41194. image: {
  41195. source: "./media/characters/blacky/maw.svg"
  41196. }
  41197. },
  41198. paw: {
  41199. height: math.unit(1, "meters"),
  41200. name: "Paw",
  41201. image: {
  41202. source: "./media/characters/blacky/paw.svg"
  41203. }
  41204. },
  41205. },
  41206. [
  41207. {
  41208. name: "Normal",
  41209. height: math.unit(4, "meters"),
  41210. default: true
  41211. },
  41212. ]
  41213. ))
  41214. characterMakers.push(() => makeCharacter(
  41215. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41216. {
  41217. front: {
  41218. height: math.unit(170, "cm"),
  41219. weight: math.unit(66, "kg"),
  41220. name: "Front",
  41221. image: {
  41222. source: "./media/characters/thux-ei/front.svg",
  41223. extra: 1109/1011,
  41224. bottom: 8/1117
  41225. }
  41226. },
  41227. },
  41228. [
  41229. {
  41230. name: "Normal",
  41231. height: math.unit(170, "cm"),
  41232. default: true
  41233. },
  41234. ]
  41235. ))
  41236. characterMakers.push(() => makeCharacter(
  41237. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41238. {
  41239. front: {
  41240. height: math.unit(5, "feet"),
  41241. weight: math.unit(120, "lb"),
  41242. name: "Front",
  41243. image: {
  41244. source: "./media/characters/roxanne-voltaire/front.svg",
  41245. extra: 1901/1779,
  41246. bottom: 53/1954
  41247. }
  41248. },
  41249. },
  41250. [
  41251. {
  41252. name: "Normal",
  41253. height: math.unit(5, "feet"),
  41254. default: true
  41255. },
  41256. {
  41257. name: "Giant",
  41258. height: math.unit(50, "feet")
  41259. },
  41260. {
  41261. name: "Titan",
  41262. height: math.unit(500, "feet")
  41263. },
  41264. {
  41265. name: "Macro",
  41266. height: math.unit(5000, "feet")
  41267. },
  41268. {
  41269. name: "Megamacro",
  41270. height: math.unit(50000, "feet")
  41271. },
  41272. {
  41273. name: "Gigamacro",
  41274. height: math.unit(500000, "feet")
  41275. },
  41276. {
  41277. name: "Teramacro",
  41278. height: math.unit(5e6, "feet")
  41279. },
  41280. ]
  41281. ))
  41282. characterMakers.push(() => makeCharacter(
  41283. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41284. {
  41285. front: {
  41286. height: math.unit(6 + 2/12, "feet"),
  41287. name: "Front",
  41288. image: {
  41289. source: "./media/characters/squeaks/front.svg",
  41290. extra: 1823/1768,
  41291. bottom: 138/1961
  41292. }
  41293. },
  41294. },
  41295. [
  41296. {
  41297. name: "Micro",
  41298. height: math.unit(0.5, "inches")
  41299. },
  41300. {
  41301. name: "Normal",
  41302. height: math.unit(6 + 2/12, "feet"),
  41303. default: true
  41304. },
  41305. {
  41306. name: "Macro",
  41307. height: math.unit(600, "feet")
  41308. },
  41309. ]
  41310. ))
  41311. characterMakers.push(() => makeCharacter(
  41312. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41313. {
  41314. front: {
  41315. height: math.unit(1.72, "meters"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/archinger/front.svg",
  41319. extra: 1861/1675,
  41320. bottom: 125/1986
  41321. }
  41322. },
  41323. back: {
  41324. height: math.unit(1.72, "meters"),
  41325. name: "Back",
  41326. image: {
  41327. source: "./media/characters/archinger/back.svg",
  41328. extra: 1844/1701,
  41329. bottom: 104/1948
  41330. }
  41331. },
  41332. cock: {
  41333. height: math.unit(0.59, "feet"),
  41334. name: "Cock",
  41335. image: {
  41336. source: "./media/characters/archinger/cock.svg"
  41337. }
  41338. },
  41339. },
  41340. [
  41341. {
  41342. name: "Normal",
  41343. height: math.unit(1.72, "meters"),
  41344. default: true
  41345. },
  41346. {
  41347. name: "Macro",
  41348. height: math.unit(84, "meters")
  41349. },
  41350. {
  41351. name: "Macro+",
  41352. height: math.unit(112, "meters")
  41353. },
  41354. {
  41355. name: "Macro++",
  41356. height: math.unit(960, "meters")
  41357. },
  41358. {
  41359. name: "Macro+++",
  41360. height: math.unit(4, "km")
  41361. },
  41362. {
  41363. name: "Macro++++",
  41364. height: math.unit(48, "km")
  41365. },
  41366. {
  41367. name: "Macro+++++",
  41368. height: math.unit(4500, "km")
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(5 + 5/12, "feet"),
  41377. name: "Front",
  41378. image: {
  41379. source: "./media/characters/alsnapz/front.svg",
  41380. extra: 1157/1065,
  41381. bottom: 42/1199
  41382. }
  41383. },
  41384. },
  41385. [
  41386. {
  41387. name: "Normal",
  41388. height: math.unit(5 + 5/12, "feet"),
  41389. default: true
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41395. {
  41396. side: {
  41397. height: math.unit(3.2, "earths"),
  41398. name: "Side",
  41399. image: {
  41400. source: "./media/characters/mag/side.svg",
  41401. extra: 1331/1008,
  41402. bottom: 52/1383
  41403. }
  41404. },
  41405. wing: {
  41406. height: math.unit(1.94, "earths"),
  41407. name: "Wing",
  41408. image: {
  41409. source: "./media/characters/mag/wing.svg"
  41410. }
  41411. },
  41412. dick: {
  41413. height: math.unit(1.8, "earths"),
  41414. name: "Dick",
  41415. image: {
  41416. source: "./media/characters/mag/dick.svg"
  41417. }
  41418. },
  41419. ass: {
  41420. height: math.unit(1.33, "earths"),
  41421. name: "Ass",
  41422. image: {
  41423. source: "./media/characters/mag/ass.svg"
  41424. }
  41425. },
  41426. head: {
  41427. height: math.unit(1.1, "earths"),
  41428. name: "Head",
  41429. image: {
  41430. source: "./media/characters/mag/head.svg"
  41431. }
  41432. },
  41433. maw: {
  41434. height: math.unit(1.62, "earths"),
  41435. name: "Maw",
  41436. image: {
  41437. source: "./media/characters/mag/maw.svg"
  41438. }
  41439. },
  41440. },
  41441. [
  41442. {
  41443. name: "Small",
  41444. height: math.unit(162, "feet")
  41445. },
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(3.2, "earths"),
  41449. default: true
  41450. },
  41451. ]
  41452. ))
  41453. characterMakers.push(() => makeCharacter(
  41454. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41455. {
  41456. front: {
  41457. height: math.unit(512, "feet"),
  41458. weight: math.unit(63509, "tonnes"),
  41459. name: "Front",
  41460. image: {
  41461. source: "./media/characters/vorrel-harroc/front.svg",
  41462. extra: 1075/1063,
  41463. bottom: 62/1137
  41464. }
  41465. },
  41466. },
  41467. [
  41468. {
  41469. name: "Normal",
  41470. height: math.unit(10, "feet")
  41471. },
  41472. {
  41473. name: "Macro",
  41474. height: math.unit(512, "feet"),
  41475. default: true
  41476. },
  41477. {
  41478. name: "Megamacro",
  41479. height: math.unit(256, "miles")
  41480. },
  41481. {
  41482. name: "Gigamacro",
  41483. height: math.unit(4096, "miles")
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41489. {
  41490. side: {
  41491. height: math.unit(50, "feet"),
  41492. name: "Side",
  41493. image: {
  41494. source: "./media/characters/froimar/side.svg",
  41495. extra: 855/638,
  41496. bottom: 99/954
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Macro",
  41503. height: math.unit(50, "feet"),
  41504. default: true
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(210, "miles"),
  41513. name: "Front",
  41514. image: {
  41515. source: "./media/characters/timothy/front.svg",
  41516. extra: 1007/943,
  41517. bottom: 62/1069
  41518. }
  41519. },
  41520. frontSkirt: {
  41521. height: math.unit(210, "miles"),
  41522. name: "Front (Skirt)",
  41523. image: {
  41524. source: "./media/characters/timothy/front-skirt.svg",
  41525. extra: 1007/943,
  41526. bottom: 62/1069
  41527. }
  41528. },
  41529. frontCoat: {
  41530. height: math.unit(210, "miles"),
  41531. name: "Front (Coat)",
  41532. image: {
  41533. source: "./media/characters/timothy/front-coat.svg",
  41534. extra: 1007/943,
  41535. bottom: 62/1069
  41536. }
  41537. },
  41538. },
  41539. [
  41540. {
  41541. name: "Macro",
  41542. height: math.unit(210, "miles"),
  41543. default: true
  41544. },
  41545. {
  41546. name: "Megamacro",
  41547. height: math.unit(210000, "miles")
  41548. },
  41549. ]
  41550. ))
  41551. characterMakers.push(() => makeCharacter(
  41552. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41553. {
  41554. front: {
  41555. height: math.unit(188, "feet"),
  41556. name: "Front",
  41557. image: {
  41558. source: "./media/characters/pyotr/front.svg",
  41559. extra: 1912/1826,
  41560. bottom: 18/1930
  41561. }
  41562. },
  41563. },
  41564. [
  41565. {
  41566. name: "Macro",
  41567. height: math.unit(188, "feet"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Megamacro",
  41572. height: math.unit(8, "miles")
  41573. },
  41574. ]
  41575. ))
  41576. characterMakers.push(() => makeCharacter(
  41577. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41578. {
  41579. side: {
  41580. height: math.unit(10, "feet"),
  41581. weight: math.unit(4500, "lb"),
  41582. name: "Side",
  41583. image: {
  41584. source: "./media/characters/ackart/side.svg",
  41585. extra: 1776/1668,
  41586. bottom: 116/1892
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Normal",
  41593. height: math.unit(10, "feet"),
  41594. default: true
  41595. },
  41596. ]
  41597. ))
  41598. characterMakers.push(() => makeCharacter(
  41599. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41600. {
  41601. side: {
  41602. height: math.unit(21, "feet"),
  41603. name: "Side",
  41604. image: {
  41605. source: "./media/characters/nolow/side.svg",
  41606. extra: 1484/1434,
  41607. bottom: 85/1569
  41608. }
  41609. },
  41610. sideErect: {
  41611. height: math.unit(21, "feet"),
  41612. name: "Side-erect",
  41613. image: {
  41614. source: "./media/characters/nolow/side-erect.svg",
  41615. extra: 1484/1434,
  41616. bottom: 85/1569
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Regular",
  41623. height: math.unit(12, "feet")
  41624. },
  41625. {
  41626. name: "Big Chee",
  41627. height: math.unit(21, "feet"),
  41628. default: true
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41634. {
  41635. front: {
  41636. height: math.unit(7, "feet"),
  41637. weight: math.unit(250, "lb"),
  41638. name: "Front",
  41639. image: {
  41640. source: "./media/characters/nines/front.svg",
  41641. extra: 1741/1607,
  41642. bottom: 41/1782
  41643. }
  41644. },
  41645. side: {
  41646. height: math.unit(7, "feet"),
  41647. weight: math.unit(250, "lb"),
  41648. name: "Side",
  41649. image: {
  41650. source: "./media/characters/nines/side.svg",
  41651. extra: 1854/1735,
  41652. bottom: 93/1947
  41653. }
  41654. },
  41655. back: {
  41656. height: math.unit(7, "feet"),
  41657. weight: math.unit(250, "lb"),
  41658. name: "Back",
  41659. image: {
  41660. source: "./media/characters/nines/back.svg",
  41661. extra: 1748/1615,
  41662. bottom: 20/1768
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Megamacro",
  41669. height: math.unit(99, "km"),
  41670. default: true
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41676. {
  41677. front: {
  41678. height: math.unit(5 + 10/12, "feet"),
  41679. weight: math.unit(210, "lb"),
  41680. name: "Front",
  41681. image: {
  41682. source: "./media/characters/zenith/front.svg",
  41683. extra: 1531/1452,
  41684. bottom: 198/1729
  41685. }
  41686. },
  41687. back: {
  41688. height: math.unit(5 + 10/12, "feet"),
  41689. weight: math.unit(210, "lb"),
  41690. name: "Back",
  41691. image: {
  41692. source: "./media/characters/zenith/back.svg",
  41693. extra: 1571/1487,
  41694. bottom: 75/1646
  41695. }
  41696. },
  41697. },
  41698. [
  41699. {
  41700. name: "Normal",
  41701. height: math.unit(5 + 10/12, "feet"),
  41702. default: true
  41703. }
  41704. ]
  41705. ))
  41706. characterMakers.push(() => makeCharacter(
  41707. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41708. {
  41709. front: {
  41710. height: math.unit(4, "feet"),
  41711. weight: math.unit(60, "lb"),
  41712. name: "Front",
  41713. image: {
  41714. source: "./media/characters/jasper/front.svg",
  41715. extra: 1450/1379,
  41716. bottom: 19/1469
  41717. }
  41718. },
  41719. },
  41720. [
  41721. {
  41722. name: "Normal",
  41723. height: math.unit(4, "feet"),
  41724. default: true
  41725. },
  41726. ]
  41727. ))
  41728. characterMakers.push(() => makeCharacter(
  41729. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41730. {
  41731. front: {
  41732. height: math.unit(6 + 5/12, "feet"),
  41733. weight: math.unit(290, "lb"),
  41734. name: "Front",
  41735. image: {
  41736. source: "./media/characters/tiberius-thyben/front.svg",
  41737. extra: 757/739,
  41738. bottom: 39/796
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Micro",
  41745. height: math.unit(1.5, "inches")
  41746. },
  41747. {
  41748. name: "Normal",
  41749. height: math.unit(6 + 5/12, "feet"),
  41750. default: true
  41751. },
  41752. {
  41753. name: "Macro",
  41754. height: math.unit(300, "feet")
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(5 + 6/12, "feet"),
  41763. weight: math.unit(60, "kg"),
  41764. name: "Front",
  41765. image: {
  41766. source: "./media/characters/sabre/front.svg",
  41767. extra: 738/671,
  41768. bottom: 27/765
  41769. }
  41770. },
  41771. },
  41772. [
  41773. {
  41774. name: "Teeny",
  41775. height: math.unit(2, "inches")
  41776. },
  41777. {
  41778. name: "Smol",
  41779. height: math.unit(8, "inches")
  41780. },
  41781. {
  41782. name: "Normal",
  41783. height: math.unit(5 + 6/12, "feet"),
  41784. default: true
  41785. },
  41786. {
  41787. name: "Mini-Macro",
  41788. height: math.unit(15, "feet")
  41789. },
  41790. {
  41791. name: "Macro",
  41792. height: math.unit(50, "feet")
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41798. {
  41799. front: {
  41800. height: math.unit(6 + 4/12, "feet"),
  41801. weight: math.unit(170, "lb"),
  41802. name: "Front",
  41803. image: {
  41804. source: "./media/characters/charlie/front.svg",
  41805. extra: 1348/1228,
  41806. bottom: 15/1363
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Macro",
  41813. height: math.unit(1700, "meters"),
  41814. default: true
  41815. },
  41816. {
  41817. name: "MegaMacro",
  41818. height: math.unit(20400, "meters")
  41819. },
  41820. ]
  41821. ))
  41822. characterMakers.push(() => makeCharacter(
  41823. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41824. {
  41825. front: {
  41826. height: math.unit(6 + 3/12, "feet"),
  41827. weight: math.unit(185, "lb"),
  41828. name: "Front",
  41829. image: {
  41830. source: "./media/characters/susan-grant/front.svg",
  41831. extra: 1351/1327,
  41832. bottom: 26/1377
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Normal",
  41839. height: math.unit(6 + 3/12, "feet"),
  41840. default: true
  41841. },
  41842. {
  41843. name: "Macro",
  41844. height: math.unit(225, "feet")
  41845. },
  41846. {
  41847. name: "Macro+",
  41848. height: math.unit(900, "feet")
  41849. },
  41850. {
  41851. name: "MegaMacro",
  41852. height: math.unit(14400, "feet")
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41858. {
  41859. front: {
  41860. height: math.unit(5 + 4/12, "feet"),
  41861. weight: math.unit(110, "lb"),
  41862. name: "Front",
  41863. image: {
  41864. source: "./media/characters/axel-isanov/front.svg",
  41865. extra: 1096/1065,
  41866. bottom: 13/1109
  41867. }
  41868. },
  41869. },
  41870. [
  41871. {
  41872. name: "Normal",
  41873. height: math.unit(5 + 4/12, "feet"),
  41874. default: true
  41875. },
  41876. ]
  41877. ))
  41878. characterMakers.push(() => makeCharacter(
  41879. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41880. {
  41881. front: {
  41882. height: math.unit(9, "feet"),
  41883. weight: math.unit(467, "lb"),
  41884. name: "Front",
  41885. image: {
  41886. source: "./media/characters/necahual/front.svg",
  41887. extra: 920/873,
  41888. bottom: 26/946
  41889. }
  41890. },
  41891. back: {
  41892. height: math.unit(9, "feet"),
  41893. weight: math.unit(467, "lb"),
  41894. name: "Back",
  41895. image: {
  41896. source: "./media/characters/necahual/back.svg",
  41897. extra: 930/884,
  41898. bottom: 16/946
  41899. }
  41900. },
  41901. frontUnderwear: {
  41902. height: math.unit(9, "feet"),
  41903. weight: math.unit(467, "lb"),
  41904. name: "Front (Underwear)",
  41905. image: {
  41906. source: "./media/characters/necahual/front-underwear.svg",
  41907. extra: 920/873,
  41908. bottom: 26/946
  41909. }
  41910. },
  41911. frontDressed: {
  41912. height: math.unit(9, "feet"),
  41913. weight: math.unit(467, "lb"),
  41914. name: "Front (Dressed)",
  41915. image: {
  41916. source: "./media/characters/necahual/front-dressed.svg",
  41917. extra: 920/873,
  41918. bottom: 26/946
  41919. }
  41920. },
  41921. },
  41922. [
  41923. {
  41924. name: "Comprsesed",
  41925. height: math.unit(9, "feet")
  41926. },
  41927. {
  41928. name: "Natural",
  41929. height: math.unit(15, "feet"),
  41930. default: true
  41931. },
  41932. {
  41933. name: "Boosted",
  41934. height: math.unit(50, "feet")
  41935. },
  41936. {
  41937. name: "Boosted+",
  41938. height: math.unit(150, "feet")
  41939. },
  41940. {
  41941. name: "Max",
  41942. height: math.unit(500, "feet")
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41948. {
  41949. front: {
  41950. height: math.unit(22 + 1/12, "feet"),
  41951. weight: math.unit(3200, "lb"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/theo-acacia/front.svg",
  41955. extra: 1796/1741,
  41956. bottom: 83/1879
  41957. }
  41958. },
  41959. frontUnderwear: {
  41960. height: math.unit(22 + 1/12, "feet"),
  41961. weight: math.unit(3200, "lb"),
  41962. name: "Front (Underwear)",
  41963. image: {
  41964. source: "./media/characters/theo-acacia/front-underwear.svg",
  41965. extra: 1796/1741,
  41966. bottom: 83/1879
  41967. }
  41968. },
  41969. frontNude: {
  41970. height: math.unit(22 + 1/12, "feet"),
  41971. weight: math.unit(3200, "lb"),
  41972. name: "Front (Nude)",
  41973. image: {
  41974. source: "./media/characters/theo-acacia/front-nude.svg",
  41975. extra: 1796/1741,
  41976. bottom: 83/1879
  41977. }
  41978. },
  41979. },
  41980. [
  41981. {
  41982. name: "Normal",
  41983. height: math.unit(22 + 1/12, "feet"),
  41984. default: true
  41985. },
  41986. ]
  41987. ))
  41988. characterMakers.push(() => makeCharacter(
  41989. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41990. {
  41991. front: {
  41992. height: math.unit(20, "feet"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/astra/front.svg",
  41996. extra: 1850/1714,
  41997. bottom: 106/1956
  41998. }
  41999. },
  42000. frontUndressed: {
  42001. height: math.unit(20, "feet"),
  42002. name: "Front (Undressed)",
  42003. image: {
  42004. source: "./media/characters/astra/front-undressed.svg",
  42005. extra: 1926/1749,
  42006. bottom: 0/1926
  42007. }
  42008. },
  42009. hand: {
  42010. height: math.unit(1.53, "feet"),
  42011. name: "Hand",
  42012. image: {
  42013. source: "./media/characters/astra/hand.svg"
  42014. }
  42015. },
  42016. paw: {
  42017. height: math.unit(1.53, "feet"),
  42018. name: "Paw",
  42019. image: {
  42020. source: "./media/characters/astra/paw.svg"
  42021. }
  42022. },
  42023. },
  42024. [
  42025. {
  42026. name: "Smallest",
  42027. height: math.unit(20, "feet")
  42028. },
  42029. {
  42030. name: "Normal",
  42031. height: math.unit(1e9, "miles"),
  42032. default: true
  42033. },
  42034. {
  42035. name: "Larger",
  42036. height: math.unit(5, "multiverses")
  42037. },
  42038. {
  42039. name: "Largest",
  42040. height: math.unit(1e9, "multiverses")
  42041. },
  42042. ]
  42043. ))
  42044. characterMakers.push(() => makeCharacter(
  42045. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42046. {
  42047. front: {
  42048. height: math.unit(8, "feet"),
  42049. name: "Front",
  42050. image: {
  42051. source: "./media/characters/breanna/front.svg",
  42052. extra: 1912/1632,
  42053. bottom: 33/1945
  42054. }
  42055. },
  42056. },
  42057. [
  42058. {
  42059. name: "Smallest",
  42060. height: math.unit(8, "feet")
  42061. },
  42062. {
  42063. name: "Normal",
  42064. height: math.unit(1, "mile"),
  42065. default: true
  42066. },
  42067. {
  42068. name: "Maximum",
  42069. height: math.unit(1500000000000, "lightyears")
  42070. },
  42071. ]
  42072. ))
  42073. characterMakers.push(() => makeCharacter(
  42074. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42075. {
  42076. front: {
  42077. height: math.unit(5 + 11/12, "feet"),
  42078. weight: math.unit(155, "lb"),
  42079. name: "Front",
  42080. image: {
  42081. source: "./media/characters/cai/front.svg",
  42082. extra: 1823/1702,
  42083. bottom: 32/1855
  42084. }
  42085. },
  42086. back: {
  42087. height: math.unit(5 + 11/12, "feet"),
  42088. weight: math.unit(155, "lb"),
  42089. name: "Back",
  42090. image: {
  42091. source: "./media/characters/cai/back.svg",
  42092. extra: 1809/1708,
  42093. bottom: 31/1840
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Normal",
  42100. height: math.unit(5 + 11/12, "feet"),
  42101. default: true
  42102. },
  42103. {
  42104. name: "Big",
  42105. height: math.unit(15, "feet")
  42106. },
  42107. {
  42108. name: "Macro",
  42109. height: math.unit(200, "feet")
  42110. },
  42111. ]
  42112. ))
  42113. characterMakers.push(() => makeCharacter(
  42114. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42115. {
  42116. front: {
  42117. height: math.unit(5 + 6/12, "feet"),
  42118. weight: math.unit(160, "lb"),
  42119. name: "Front",
  42120. image: {
  42121. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42122. extra: 1227/1174,
  42123. bottom: 37/1264
  42124. }
  42125. },
  42126. },
  42127. [
  42128. {
  42129. name: "Macro",
  42130. height: math.unit(444, "meters"),
  42131. default: true
  42132. },
  42133. ]
  42134. ))
  42135. characterMakers.push(() => makeCharacter(
  42136. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42137. {
  42138. front: {
  42139. height: math.unit(18 + 7/12, "feet"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/rex/front.svg",
  42143. extra: 1941/1807,
  42144. bottom: 66/2007
  42145. }
  42146. },
  42147. back: {
  42148. height: math.unit(18 + 7/12, "feet"),
  42149. name: "Back",
  42150. image: {
  42151. source: "./media/characters/rex/back.svg",
  42152. extra: 1937/1822,
  42153. bottom: 42/1979
  42154. }
  42155. },
  42156. boot: {
  42157. height: math.unit(3.45, "feet"),
  42158. name: "Boot",
  42159. image: {
  42160. source: "./media/characters/rex/boot.svg"
  42161. }
  42162. },
  42163. paw: {
  42164. height: math.unit(4.17, "feet"),
  42165. name: "Paw",
  42166. image: {
  42167. source: "./media/characters/rex/paw.svg"
  42168. }
  42169. },
  42170. head: {
  42171. height: math.unit(6.728, "feet"),
  42172. name: "Head",
  42173. image: {
  42174. source: "./media/characters/rex/head.svg"
  42175. }
  42176. },
  42177. },
  42178. [
  42179. {
  42180. name: "Nano",
  42181. height: math.unit(18 + 7/12, "feet")
  42182. },
  42183. {
  42184. name: "Micro",
  42185. height: math.unit(1.5, "megameters")
  42186. },
  42187. {
  42188. name: "Normal",
  42189. height: math.unit(440, "megameters"),
  42190. default: true
  42191. },
  42192. {
  42193. name: "Macro",
  42194. height: math.unit(2.5, "gigameters")
  42195. },
  42196. {
  42197. name: "Gigamacro",
  42198. height: math.unit(2, "galaxies")
  42199. },
  42200. ]
  42201. ))
  42202. characterMakers.push(() => makeCharacter(
  42203. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42204. {
  42205. side: {
  42206. height: math.unit(32, "feet"),
  42207. weight: math.unit(250000, "lb"),
  42208. name: "Side",
  42209. image: {
  42210. source: "./media/characters/silverwing/side.svg",
  42211. extra: 1100/1019,
  42212. bottom: 204/1304
  42213. }
  42214. },
  42215. },
  42216. [
  42217. {
  42218. name: "Normal",
  42219. height: math.unit(32, "feet"),
  42220. default: true
  42221. },
  42222. ]
  42223. ))
  42224. characterMakers.push(() => makeCharacter(
  42225. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42226. {
  42227. front: {
  42228. height: math.unit(6 + 6/12, "feet"),
  42229. weight: math.unit(350, "lb"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/tristan-hawthorne/front.svg",
  42233. extra: 1159/1124,
  42234. bottom: 37/1196
  42235. },
  42236. form: "labrador",
  42237. default: true
  42238. },
  42239. skunkFront: {
  42240. height: math.unit(4 + 6/12, "feet"),
  42241. weight: math.unit(120, "lb"),
  42242. name: "Front",
  42243. image: {
  42244. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42245. extra: 1609/1551,
  42246. bottom: 169/1778
  42247. },
  42248. form: "skunk",
  42249. default: true
  42250. },
  42251. },
  42252. [
  42253. {
  42254. name: "Normal",
  42255. height: math.unit(6 + 6/12, "feet"),
  42256. form: "labrador",
  42257. default: true
  42258. },
  42259. {
  42260. name: "Normal",
  42261. height: math.unit(4 + 6/12, "feet"),
  42262. form: "skunk",
  42263. default: true
  42264. },
  42265. ],
  42266. {
  42267. "labrador": {
  42268. name: "Labrador",
  42269. default: true
  42270. },
  42271. "skunk": {
  42272. name: "Skunk"
  42273. }
  42274. }
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42278. {
  42279. front: {
  42280. height: math.unit(5 + 11/12, "feet"),
  42281. weight: math.unit(190, "lb"),
  42282. name: "Front",
  42283. image: {
  42284. source: "./media/characters/mizu/front.svg",
  42285. extra: 1988/1788,
  42286. bottom: 14/2002
  42287. }
  42288. },
  42289. },
  42290. [
  42291. {
  42292. name: "Normal",
  42293. height: math.unit(5 + 11/12, "feet"),
  42294. default: true
  42295. },
  42296. ]
  42297. ))
  42298. characterMakers.push(() => makeCharacter(
  42299. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42300. {
  42301. front: {
  42302. height: math.unit(1.7, "feet"),
  42303. weight: math.unit(50, "lb"),
  42304. name: "Front",
  42305. image: {
  42306. source: "./media/characters/dechroma/front.svg",
  42307. extra: 1095/859,
  42308. bottom: 64/1159
  42309. }
  42310. },
  42311. },
  42312. [
  42313. {
  42314. name: "Normal",
  42315. height: math.unit(1.7, "feet"),
  42316. default: true
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42322. {
  42323. side: {
  42324. height: math.unit(30, "feet"),
  42325. name: "Side",
  42326. image: {
  42327. source: "./media/characters/veluren-thanazel/side.svg",
  42328. extra: 1611/633,
  42329. bottom: 118/1729
  42330. }
  42331. },
  42332. front: {
  42333. height: math.unit(30, "feet"),
  42334. name: "Front",
  42335. image: {
  42336. source: "./media/characters/veluren-thanazel/front.svg",
  42337. extra: 1486/636,
  42338. bottom: 238/1724
  42339. }
  42340. },
  42341. head: {
  42342. height: math.unit(21.4, "feet"),
  42343. name: "Head",
  42344. image: {
  42345. source: "./media/characters/veluren-thanazel/head.svg"
  42346. }
  42347. },
  42348. genitals: {
  42349. height: math.unit(19.4, "feet"),
  42350. name: "Genitals",
  42351. image: {
  42352. source: "./media/characters/veluren-thanazel/genitals.svg"
  42353. }
  42354. },
  42355. },
  42356. [
  42357. {
  42358. name: "Social",
  42359. height: math.unit(6, "feet")
  42360. },
  42361. {
  42362. name: "Play",
  42363. height: math.unit(12, "feet")
  42364. },
  42365. {
  42366. name: "True",
  42367. height: math.unit(30, "feet"),
  42368. default: true
  42369. },
  42370. ]
  42371. ))
  42372. characterMakers.push(() => makeCharacter(
  42373. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42374. {
  42375. front: {
  42376. height: math.unit(7 + 6/12, "feet"),
  42377. weight: math.unit(500, "kg"),
  42378. name: "Front",
  42379. image: {
  42380. source: "./media/characters/arcturas/front.svg",
  42381. extra: 1700/1500,
  42382. bottom: 145/1845
  42383. }
  42384. },
  42385. },
  42386. [
  42387. {
  42388. name: "Normal",
  42389. height: math.unit(7 + 6/12, "feet"),
  42390. default: true
  42391. },
  42392. ]
  42393. ))
  42394. characterMakers.push(() => makeCharacter(
  42395. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42396. {
  42397. side: {
  42398. height: math.unit(6, "feet"),
  42399. weight: math.unit(2, "tons"),
  42400. name: "Side",
  42401. image: {
  42402. source: "./media/characters/vitaen/side.svg",
  42403. extra: 1157/617,
  42404. bottom: 122/1279
  42405. }
  42406. },
  42407. },
  42408. [
  42409. {
  42410. name: "Normal",
  42411. height: math.unit(6, "feet"),
  42412. default: true
  42413. },
  42414. ]
  42415. ))
  42416. characterMakers.push(() => makeCharacter(
  42417. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42418. {
  42419. front: {
  42420. height: math.unit(19, "feet"),
  42421. name: "Front",
  42422. image: {
  42423. source: "./media/characters/fia-dreamweaver/front.svg",
  42424. extra: 1630/1504,
  42425. bottom: 25/1655
  42426. }
  42427. },
  42428. },
  42429. [
  42430. {
  42431. name: "Normal",
  42432. height: math.unit(19, "feet"),
  42433. default: true
  42434. },
  42435. ]
  42436. ))
  42437. characterMakers.push(() => makeCharacter(
  42438. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42439. {
  42440. front: {
  42441. height: math.unit(5 + 4/12, "feet"),
  42442. name: "Front",
  42443. image: {
  42444. source: "./media/characters/artan/front.svg",
  42445. extra: 1618/1535,
  42446. bottom: 46/1664
  42447. }
  42448. },
  42449. back: {
  42450. height: math.unit(5 + 4/12, "feet"),
  42451. name: "Back",
  42452. image: {
  42453. source: "./media/characters/artan/back.svg",
  42454. extra: 1618/1543,
  42455. bottom: 31/1649
  42456. }
  42457. },
  42458. },
  42459. [
  42460. {
  42461. name: "Normal",
  42462. height: math.unit(5 + 4/12, "feet"),
  42463. default: true
  42464. },
  42465. ]
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42469. {
  42470. side: {
  42471. height: math.unit(182, "cm"),
  42472. weight: math.unit(1000, "lb"),
  42473. name: "Side",
  42474. image: {
  42475. source: "./media/characters/silver-dragon/side.svg",
  42476. extra: 710/287,
  42477. bottom: 88/798
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "Normal",
  42484. height: math.unit(182, "cm"),
  42485. default: true
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42491. {
  42492. side: {
  42493. height: math.unit(6 + 6/12, "feet"),
  42494. weight: math.unit(1.5, "tons"),
  42495. name: "Side",
  42496. image: {
  42497. source: "./media/characters/zephyr/side.svg",
  42498. extra: 1433/586,
  42499. bottom: 109/1542
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Normal",
  42506. height: math.unit(6 + 6/12, "feet"),
  42507. default: true
  42508. },
  42509. ]
  42510. ))
  42511. characterMakers.push(() => makeCharacter(
  42512. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42513. {
  42514. side: {
  42515. height: math.unit(1, "feet"),
  42516. name: "Side",
  42517. image: {
  42518. source: "./media/characters/vixye/side.svg",
  42519. extra: 632/541,
  42520. bottom: 0/632
  42521. }
  42522. },
  42523. },
  42524. [
  42525. {
  42526. name: "Normal",
  42527. height: math.unit(1, "feet"),
  42528. default: true
  42529. },
  42530. {
  42531. name: "True",
  42532. height: math.unit(1e15, "multiverses")
  42533. },
  42534. ]
  42535. ))
  42536. characterMakers.push(() => makeCharacter(
  42537. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42538. {
  42539. front: {
  42540. height: math.unit(8 + 2/12, "feet"),
  42541. weight: math.unit(650, "lb"),
  42542. name: "Front",
  42543. image: {
  42544. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42545. extra: 1174/1137,
  42546. bottom: 82/1256
  42547. }
  42548. },
  42549. back: {
  42550. height: math.unit(8 + 2/12, "feet"),
  42551. weight: math.unit(650, "lb"),
  42552. name: "Back",
  42553. image: {
  42554. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42555. extra: 1204/1157,
  42556. bottom: 46/1250
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Wildform",
  42563. height: math.unit(8 + 2/12, "feet"),
  42564. default: true
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42570. {
  42571. front: {
  42572. height: math.unit(18, "feet"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/cyphin/front.svg",
  42576. extra: 970/886,
  42577. bottom: 42/1012
  42578. }
  42579. },
  42580. back: {
  42581. height: math.unit(18, "feet"),
  42582. name: "Back",
  42583. image: {
  42584. source: "./media/characters/cyphin/back.svg",
  42585. extra: 1009/894,
  42586. bottom: 24/1033
  42587. }
  42588. },
  42589. head: {
  42590. height: math.unit(5.05, "feet"),
  42591. name: "Head",
  42592. image: {
  42593. source: "./media/characters/cyphin/head.svg"
  42594. }
  42595. },
  42596. tailbud: {
  42597. height: math.unit(5, "feet"),
  42598. name: "Tailbud",
  42599. image: {
  42600. source: "./media/characters/cyphin/tailbud.svg"
  42601. }
  42602. },
  42603. },
  42604. [
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42609. {
  42610. side: {
  42611. height: math.unit(10, "feet"),
  42612. weight: math.unit(6, "tons"),
  42613. name: "Side",
  42614. image: {
  42615. source: "./media/characters/raijin/side.svg",
  42616. extra: 1529/613,
  42617. bottom: 337/1866
  42618. }
  42619. },
  42620. },
  42621. [
  42622. {
  42623. name: "Normal",
  42624. height: math.unit(10, "feet"),
  42625. default: true
  42626. },
  42627. ]
  42628. ))
  42629. characterMakers.push(() => makeCharacter(
  42630. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42631. {
  42632. side: {
  42633. height: math.unit(9, "feet"),
  42634. name: "Side",
  42635. image: {
  42636. source: "./media/characters/nilghais/side.svg",
  42637. extra: 1047/744,
  42638. bottom: 91/1138
  42639. }
  42640. },
  42641. head: {
  42642. height: math.unit(3.14, "feet"),
  42643. name: "Head",
  42644. image: {
  42645. source: "./media/characters/nilghais/head.svg"
  42646. }
  42647. },
  42648. mouth: {
  42649. height: math.unit(4.6, "feet"),
  42650. name: "Mouth",
  42651. image: {
  42652. source: "./media/characters/nilghais/mouth.svg"
  42653. }
  42654. },
  42655. wings: {
  42656. height: math.unit(24, "feet"),
  42657. name: "Wings",
  42658. image: {
  42659. source: "./media/characters/nilghais/wings.svg"
  42660. }
  42661. },
  42662. ass: {
  42663. height: math.unit(6.12, "feet"),
  42664. name: "Ass",
  42665. image: {
  42666. source: "./media/characters/nilghais/ass.svg"
  42667. }
  42668. },
  42669. },
  42670. [
  42671. {
  42672. name: "Normal",
  42673. height: math.unit(9, "feet"),
  42674. default: true
  42675. },
  42676. ]
  42677. ))
  42678. characterMakers.push(() => makeCharacter(
  42679. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42680. {
  42681. regular: {
  42682. height: math.unit(16 + 2/12, "feet"),
  42683. weight: math.unit(2300, "lb"),
  42684. name: "Regular",
  42685. image: {
  42686. source: "./media/characters/zolgar/regular.svg",
  42687. extra: 1246/1004,
  42688. bottom: 124/1370
  42689. }
  42690. },
  42691. boxers: {
  42692. height: math.unit(16 + 2/12, "feet"),
  42693. weight: math.unit(2300, "lb"),
  42694. name: "Boxers",
  42695. image: {
  42696. source: "./media/characters/zolgar/boxers.svg",
  42697. extra: 1246/1004,
  42698. bottom: 124/1370
  42699. }
  42700. },
  42701. armored: {
  42702. height: math.unit(16 + 2/12, "feet"),
  42703. weight: math.unit(2300, "lb"),
  42704. name: "Armored",
  42705. image: {
  42706. source: "./media/characters/zolgar/armored.svg",
  42707. extra: 1246/1004,
  42708. bottom: 124/1370
  42709. }
  42710. },
  42711. goth: {
  42712. height: math.unit(16 + 2/12, "feet"),
  42713. weight: math.unit(2300, "lb"),
  42714. name: "Goth",
  42715. image: {
  42716. source: "./media/characters/zolgar/goth.svg",
  42717. extra: 1246/1004,
  42718. bottom: 124/1370
  42719. }
  42720. },
  42721. },
  42722. [
  42723. {
  42724. name: "Shrunken Down",
  42725. height: math.unit(9 + 2/12, "feet")
  42726. },
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(16 + 2/12, "feet"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42736. {
  42737. front: {
  42738. height: math.unit(6, "feet"),
  42739. weight: math.unit(168, "lb"),
  42740. name: "Front",
  42741. image: {
  42742. source: "./media/characters/luca/front.svg",
  42743. extra: 841/667,
  42744. bottom: 102/943
  42745. }
  42746. },
  42747. },
  42748. [
  42749. {
  42750. name: "Normal",
  42751. height: math.unit(6, "feet"),
  42752. default: true
  42753. },
  42754. ]
  42755. ))
  42756. characterMakers.push(() => makeCharacter(
  42757. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42758. {
  42759. side: {
  42760. height: math.unit(7 + 3/12, "feet"),
  42761. weight: math.unit(312, "lb"),
  42762. name: "Side",
  42763. image: {
  42764. source: "./media/characters/zezo/side.svg",
  42765. extra: 1192/1067,
  42766. bottom: 63/1255
  42767. }
  42768. },
  42769. },
  42770. [
  42771. {
  42772. name: "Normal",
  42773. height: math.unit(7 + 3/12, "feet"),
  42774. default: true
  42775. },
  42776. ]
  42777. ))
  42778. characterMakers.push(() => makeCharacter(
  42779. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42780. {
  42781. front: {
  42782. height: math.unit(5 + 5/12, "feet"),
  42783. weight: math.unit(170, "lb"),
  42784. name: "Front",
  42785. image: {
  42786. source: "./media/characters/mayso/front.svg",
  42787. extra: 1215/1108,
  42788. bottom: 16/1231
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Normal",
  42795. height: math.unit(5 + 5/12, "feet"),
  42796. default: true
  42797. },
  42798. ]
  42799. ))
  42800. characterMakers.push(() => makeCharacter(
  42801. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42802. {
  42803. front: {
  42804. height: math.unit(4 + 3/12, "feet"),
  42805. weight: math.unit(80, "lb"),
  42806. name: "Front",
  42807. image: {
  42808. source: "./media/characters/hess/front.svg",
  42809. extra: 1200/1123,
  42810. bottom: 16/1216
  42811. }
  42812. },
  42813. },
  42814. [
  42815. {
  42816. name: "Normal",
  42817. height: math.unit(4 + 3/12, "feet"),
  42818. default: true
  42819. },
  42820. ]
  42821. ))
  42822. characterMakers.push(() => makeCharacter(
  42823. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42824. {
  42825. front: {
  42826. height: math.unit(1.9, "meters"),
  42827. name: "Front",
  42828. image: {
  42829. source: "./media/characters/ashgar/front.svg",
  42830. extra: 1177/1146,
  42831. bottom: 99/1276
  42832. }
  42833. },
  42834. back: {
  42835. height: math.unit(1.9, "meters"),
  42836. name: "Back",
  42837. image: {
  42838. source: "./media/characters/ashgar/back.svg",
  42839. extra: 1201/1183,
  42840. bottom: 53/1254
  42841. }
  42842. },
  42843. feral: {
  42844. height: math.unit(1.4, "meters"),
  42845. name: "Feral",
  42846. image: {
  42847. source: "./media/characters/ashgar/feral.svg",
  42848. extra: 370/345,
  42849. bottom: 45/415
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Normal",
  42856. height: math.unit(1.9, "meters"),
  42857. default: true
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42863. {
  42864. regular: {
  42865. height: math.unit(6, "feet"),
  42866. weight: math.unit(220, "lb"),
  42867. name: "Regular",
  42868. image: {
  42869. source: "./media/characters/phillip/regular.svg",
  42870. extra: 1373/1277,
  42871. bottom: 75/1448
  42872. }
  42873. },
  42874. dressed: {
  42875. height: math.unit(6, "feet"),
  42876. weight: math.unit(220, "lb"),
  42877. name: "Dressed",
  42878. image: {
  42879. source: "./media/characters/phillip/dressed.svg",
  42880. extra: 1373/1277,
  42881. bottom: 75/1448
  42882. }
  42883. },
  42884. paw: {
  42885. height: math.unit(1.44, "feet"),
  42886. name: "Paw",
  42887. image: {
  42888. source: "./media/characters/phillip/paw.svg"
  42889. }
  42890. },
  42891. },
  42892. [
  42893. {
  42894. name: "Normal",
  42895. height: math.unit(6, "feet"),
  42896. default: true
  42897. },
  42898. ]
  42899. ))
  42900. characterMakers.push(() => makeCharacter(
  42901. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42902. {
  42903. side: {
  42904. height: math.unit(42, "feet"),
  42905. name: "Side",
  42906. image: {
  42907. source: "./media/characters/uvula/side.svg",
  42908. extra: 683/586,
  42909. bottom: 60/743
  42910. }
  42911. },
  42912. front: {
  42913. height: math.unit(42, "feet"),
  42914. name: "Front",
  42915. image: {
  42916. source: "./media/characters/uvula/front.svg",
  42917. extra: 705/613,
  42918. bottom: 54/759
  42919. }
  42920. },
  42921. maw: {
  42922. height: math.unit(23.5, "feet"),
  42923. name: "Maw",
  42924. image: {
  42925. source: "./media/characters/uvula/maw.svg"
  42926. }
  42927. },
  42928. },
  42929. [
  42930. {
  42931. name: "Original Size",
  42932. height: math.unit(14, "inches")
  42933. },
  42934. {
  42935. name: "Human Size",
  42936. height: math.unit(6, "feet")
  42937. },
  42938. {
  42939. name: "Big",
  42940. height: math.unit(42, "feet"),
  42941. default: true
  42942. },
  42943. {
  42944. name: "Bigger",
  42945. height: math.unit(100, "feet")
  42946. },
  42947. ]
  42948. ))
  42949. characterMakers.push(() => makeCharacter(
  42950. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42951. {
  42952. front: {
  42953. height: math.unit(5 + 11/12, "feet"),
  42954. name: "Front",
  42955. image: {
  42956. source: "./media/characters/lannah/front.svg",
  42957. extra: 1208/1113,
  42958. bottom: 97/1305
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Normal",
  42965. height: math.unit(5 + 11/12, "feet"),
  42966. default: true
  42967. },
  42968. ]
  42969. ))
  42970. characterMakers.push(() => makeCharacter(
  42971. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42972. {
  42973. front: {
  42974. height: math.unit(6 + 3/12, "feet"),
  42975. weight: math.unit(3.5, "tons"),
  42976. name: "Front",
  42977. image: {
  42978. source: "./media/characters/emberflame/front.svg",
  42979. extra: 1198/672,
  42980. bottom: 82/1280
  42981. }
  42982. },
  42983. side: {
  42984. height: math.unit(6 + 3/12, "feet"),
  42985. weight: math.unit(3.5, "tons"),
  42986. name: "Side",
  42987. image: {
  42988. source: "./media/characters/emberflame/side.svg",
  42989. extra: 938/527,
  42990. bottom: 56/994
  42991. }
  42992. },
  42993. },
  42994. [
  42995. {
  42996. name: "Normal",
  42997. height: math.unit(6 + 3/12, "feet"),
  42998. default: true
  42999. },
  43000. ]
  43001. ))
  43002. characterMakers.push(() => makeCharacter(
  43003. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43004. {
  43005. side: {
  43006. height: math.unit(17.5, "feet"),
  43007. weight: math.unit(35, "tons"),
  43008. name: "Side",
  43009. image: {
  43010. source: "./media/characters/sophie-ambrose/side.svg",
  43011. extra: 1573/1242,
  43012. bottom: 71/1644
  43013. }
  43014. },
  43015. maw: {
  43016. height: math.unit(7.4, "feet"),
  43017. name: "Maw",
  43018. image: {
  43019. source: "./media/characters/sophie-ambrose/maw.svg"
  43020. }
  43021. },
  43022. },
  43023. [
  43024. {
  43025. name: "Normal",
  43026. height: math.unit(17.5, "feet"),
  43027. default: true
  43028. },
  43029. ]
  43030. ))
  43031. characterMakers.push(() => makeCharacter(
  43032. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43033. {
  43034. front: {
  43035. height: math.unit(280, "feet"),
  43036. weight: math.unit(550, "tons"),
  43037. name: "Front",
  43038. image: {
  43039. source: "./media/characters/king-mugi/front.svg",
  43040. extra: 1102/947,
  43041. bottom: 104/1206
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "King Mugi",
  43048. height: math.unit(280, "feet"),
  43049. default: true
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(64, "meters"),
  43058. name: "Front",
  43059. image: {
  43060. source: "./media/characters/nova-fox/front.svg",
  43061. extra: 1310/1246,
  43062. bottom: 65/1375
  43063. }
  43064. },
  43065. },
  43066. [
  43067. {
  43068. name: "Macro",
  43069. height: math.unit(64, "meters"),
  43070. default: true
  43071. },
  43072. ]
  43073. ))
  43074. characterMakers.push(() => makeCharacter(
  43075. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43076. {
  43077. front: {
  43078. height: math.unit(6 + 3/12, "feet"),
  43079. weight: math.unit(170, "lb"),
  43080. name: "Front",
  43081. image: {
  43082. source: "./media/characters/sam-bat/front.svg",
  43083. extra: 1601/1411,
  43084. bottom: 125/1726
  43085. }
  43086. },
  43087. back: {
  43088. height: math.unit(6 + 3/12, "feet"),
  43089. weight: math.unit(170, "lb"),
  43090. name: "Back",
  43091. image: {
  43092. source: "./media/characters/sam-bat/back.svg",
  43093. extra: 1577/1405,
  43094. bottom: 58/1635
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Normal",
  43101. height: math.unit(6 + 3/12, "feet"),
  43102. default: true
  43103. },
  43104. ]
  43105. ))
  43106. characterMakers.push(() => makeCharacter(
  43107. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43108. {
  43109. front: {
  43110. height: math.unit(59, "feet"),
  43111. weight: math.unit(40000, "lb"),
  43112. name: "Front",
  43113. image: {
  43114. source: "./media/characters/inari/front.svg",
  43115. extra: 1884/1350,
  43116. bottom: 95/1979
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Gigantamax",
  43123. height: math.unit(59, "feet"),
  43124. default: true
  43125. },
  43126. ]
  43127. ))
  43128. characterMakers.push(() => makeCharacter(
  43129. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43130. {
  43131. front: {
  43132. height: math.unit(5 + 8/12, "feet"),
  43133. name: "Front",
  43134. image: {
  43135. source: "./media/characters/elizabeth/front.svg",
  43136. extra: 1395/1298,
  43137. bottom: 54/1449
  43138. }
  43139. },
  43140. mouth: {
  43141. height: math.unit(1.97, "feet"),
  43142. name: "Mouth",
  43143. image: {
  43144. source: "./media/characters/elizabeth/mouth.svg"
  43145. }
  43146. },
  43147. foot: {
  43148. height: math.unit(1.17, "feet"),
  43149. name: "Foot",
  43150. image: {
  43151. source: "./media/characters/elizabeth/foot.svg"
  43152. }
  43153. },
  43154. },
  43155. [
  43156. {
  43157. name: "Normal",
  43158. height: math.unit(5 + 8/12, "feet"),
  43159. default: true
  43160. },
  43161. {
  43162. name: "Minimacro",
  43163. height: math.unit(18, "feet")
  43164. },
  43165. {
  43166. name: "Macro",
  43167. height: math.unit(180, "feet")
  43168. },
  43169. ]
  43170. ))
  43171. characterMakers.push(() => makeCharacter(
  43172. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43173. {
  43174. front: {
  43175. height: math.unit(5 + 2/12, "feet"),
  43176. name: "Front",
  43177. image: {
  43178. source: "./media/characters/october-gossamer/front.svg",
  43179. extra: 505/454,
  43180. bottom: 7/512
  43181. }
  43182. },
  43183. back: {
  43184. height: math.unit(5 + 2/12, "feet"),
  43185. name: "Back",
  43186. image: {
  43187. source: "./media/characters/october-gossamer/back.svg",
  43188. extra: 501/454,
  43189. bottom: 11/512
  43190. }
  43191. },
  43192. },
  43193. [
  43194. {
  43195. name: "Normal",
  43196. height: math.unit(5 + 2/12, "feet"),
  43197. default: true
  43198. },
  43199. ]
  43200. ))
  43201. characterMakers.push(() => makeCharacter(
  43202. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43203. {
  43204. front: {
  43205. height: math.unit(5, "feet"),
  43206. name: "Front",
  43207. image: {
  43208. source: "./media/characters/epiglottis/front.svg",
  43209. extra: 923/849,
  43210. bottom: 17/940
  43211. }
  43212. },
  43213. },
  43214. [
  43215. {
  43216. name: "Original Size",
  43217. height: math.unit(10, "inches")
  43218. },
  43219. {
  43220. name: "Human Size",
  43221. height: math.unit(5, "feet"),
  43222. default: true
  43223. },
  43224. {
  43225. name: "Big",
  43226. height: math.unit(25, "feet")
  43227. },
  43228. {
  43229. name: "Bigger",
  43230. height: math.unit(50, "feet")
  43231. },
  43232. {
  43233. name: "oh lawd",
  43234. height: math.unit(75, "feet")
  43235. },
  43236. ]
  43237. ))
  43238. characterMakers.push(() => makeCharacter(
  43239. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43240. {
  43241. front: {
  43242. height: math.unit(2 + 4/12, "feet"),
  43243. weight: math.unit(60, "lb"),
  43244. name: "Front",
  43245. image: {
  43246. source: "./media/characters/lerm/front.svg",
  43247. extra: 796/790,
  43248. bottom: 79/875
  43249. }
  43250. },
  43251. },
  43252. [
  43253. {
  43254. name: "Normal",
  43255. height: math.unit(2 + 4/12, "feet"),
  43256. default: true
  43257. },
  43258. ]
  43259. ))
  43260. characterMakers.push(() => makeCharacter(
  43261. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43262. {
  43263. front: {
  43264. height: math.unit(5.5, "feet"),
  43265. weight: math.unit(130, "lb"),
  43266. name: "Front",
  43267. image: {
  43268. source: "./media/characters/xena-nebadon/front.svg",
  43269. extra: 1828/1730,
  43270. bottom: 79/1907
  43271. }
  43272. },
  43273. },
  43274. [
  43275. {
  43276. name: "Tiny Puppy",
  43277. height: math.unit(3, "inches")
  43278. },
  43279. {
  43280. name: "Normal",
  43281. height: math.unit(5.5, "feet"),
  43282. default: true
  43283. },
  43284. {
  43285. name: "Lotta Lady",
  43286. height: math.unit(12, "feet")
  43287. },
  43288. {
  43289. name: "Pretty Big",
  43290. height: math.unit(100, "feet")
  43291. },
  43292. {
  43293. name: "Big",
  43294. height: math.unit(500, "feet")
  43295. },
  43296. {
  43297. name: "Skyscraper Toys",
  43298. height: math.unit(2500, "feet")
  43299. },
  43300. {
  43301. name: "Plane Catcher",
  43302. height: math.unit(8, "miles")
  43303. },
  43304. {
  43305. name: "Planet Toys",
  43306. height: math.unit(15, "earths")
  43307. },
  43308. {
  43309. name: "Stardust",
  43310. height: math.unit(0.25, "galaxies")
  43311. },
  43312. {
  43313. name: "Snacks",
  43314. height: math.unit(70, "universes")
  43315. },
  43316. ]
  43317. ))
  43318. characterMakers.push(() => makeCharacter(
  43319. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43320. {
  43321. front: {
  43322. height: math.unit(1.6, "meters"),
  43323. weight: math.unit(60, "kg"),
  43324. name: "Front",
  43325. image: {
  43326. source: "./media/characters/bounty/front.svg",
  43327. extra: 1426/1308,
  43328. bottom: 15/1441
  43329. }
  43330. },
  43331. back: {
  43332. height: math.unit(1.6, "meters"),
  43333. weight: math.unit(60, "kg"),
  43334. name: "Back",
  43335. image: {
  43336. source: "./media/characters/bounty/back.svg",
  43337. extra: 1417/1307,
  43338. bottom: 8/1425
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "Normal",
  43345. height: math.unit(1.6, "meters"),
  43346. default: true
  43347. },
  43348. {
  43349. name: "Macro",
  43350. height: math.unit(300, "meters")
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43356. {
  43357. front: {
  43358. height: math.unit(2 + 8/12, "feet"),
  43359. weight: math.unit(15, "lb"),
  43360. name: "Front",
  43361. image: {
  43362. source: "./media/characters/mochi/front.svg",
  43363. extra: 1022/852,
  43364. bottom: 435/1457
  43365. }
  43366. },
  43367. back: {
  43368. height: math.unit(2 + 8/12, "feet"),
  43369. weight: math.unit(15, "lb"),
  43370. name: "Back",
  43371. image: {
  43372. source: "./media/characters/mochi/back.svg",
  43373. extra: 1335/1119,
  43374. bottom: 39/1374
  43375. }
  43376. },
  43377. bird: {
  43378. height: math.unit(2 + 8/12, "feet"),
  43379. weight: math.unit(15, "lb"),
  43380. name: "Bird",
  43381. image: {
  43382. source: "./media/characters/mochi/bird.svg",
  43383. extra: 1251/1113,
  43384. bottom: 178/1429
  43385. }
  43386. },
  43387. kaiju: {
  43388. height: math.unit(154, "feet"),
  43389. weight: math.unit(1e7, "lb"),
  43390. name: "Kaiju",
  43391. image: {
  43392. source: "./media/characters/mochi/kaiju.svg",
  43393. extra: 460/324,
  43394. bottom: 40/500
  43395. }
  43396. },
  43397. head: {
  43398. height: math.unit(1.21, "feet"),
  43399. name: "Head",
  43400. image: {
  43401. source: "./media/characters/mochi/head.svg"
  43402. }
  43403. },
  43404. alternateTail: {
  43405. height: math.unit(2 + 8/12, "feet"),
  43406. weight: math.unit(45, "lb"),
  43407. name: "Alternate Tail",
  43408. image: {
  43409. source: "./media/characters/mochi/alternate-tail.svg",
  43410. extra: 139/76,
  43411. bottom: 45/184
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Micro",
  43418. height: math.unit(2, "inches")
  43419. },
  43420. {
  43421. name: "Normal",
  43422. height: math.unit(2 + 8/12, "feet"),
  43423. default: true
  43424. },
  43425. {
  43426. name: "Macro",
  43427. height: math.unit(106, "feet")
  43428. },
  43429. ]
  43430. ))
  43431. characterMakers.push(() => makeCharacter(
  43432. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43433. {
  43434. front: {
  43435. height: math.unit(5.67, "feet"),
  43436. weight: math.unit(135, "lb"),
  43437. name: "Front",
  43438. image: {
  43439. source: "./media/characters/sarel/front.svg",
  43440. extra: 865/788,
  43441. bottom: 97/962
  43442. }
  43443. },
  43444. back: {
  43445. height: math.unit(5.67, "feet"),
  43446. weight: math.unit(135, "lb"),
  43447. name: "Back",
  43448. image: {
  43449. source: "./media/characters/sarel/back.svg",
  43450. extra: 857/777,
  43451. bottom: 32/889
  43452. }
  43453. },
  43454. chozoan: {
  43455. height: math.unit(5.67, "feet"),
  43456. weight: math.unit(135, "lb"),
  43457. name: "Chozoan",
  43458. image: {
  43459. source: "./media/characters/sarel/chozoan.svg",
  43460. extra: 865/788,
  43461. bottom: 97/962
  43462. }
  43463. },
  43464. current: {
  43465. height: math.unit(5.67, "feet"),
  43466. weight: math.unit(135, "lb"),
  43467. name: "Current",
  43468. image: {
  43469. source: "./media/characters/sarel/current.svg",
  43470. extra: 865/788,
  43471. bottom: 97/962
  43472. }
  43473. },
  43474. head: {
  43475. height: math.unit(1.77, "feet"),
  43476. name: "Head",
  43477. image: {
  43478. source: "./media/characters/sarel/head.svg"
  43479. }
  43480. },
  43481. claws: {
  43482. height: math.unit(1.8, "feet"),
  43483. name: "Claws",
  43484. image: {
  43485. source: "./media/characters/sarel/claws.svg"
  43486. }
  43487. },
  43488. clawsAlt: {
  43489. height: math.unit(1.8, "feet"),
  43490. name: "Claws-alt",
  43491. image: {
  43492. source: "./media/characters/sarel/claws-alt.svg"
  43493. }
  43494. },
  43495. },
  43496. [
  43497. {
  43498. name: "Normal",
  43499. height: math.unit(5.67, "feet"),
  43500. default: true
  43501. },
  43502. ]
  43503. ))
  43504. characterMakers.push(() => makeCharacter(
  43505. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43506. {
  43507. front: {
  43508. height: math.unit(5500, "feet"),
  43509. name: "Front",
  43510. image: {
  43511. source: "./media/characters/alyonia/front.svg",
  43512. extra: 1200/1135,
  43513. bottom: 29/1229
  43514. }
  43515. },
  43516. back: {
  43517. height: math.unit(5500, "feet"),
  43518. name: "Back",
  43519. image: {
  43520. source: "./media/characters/alyonia/back.svg",
  43521. extra: 1205/1138,
  43522. bottom: 10/1215
  43523. }
  43524. },
  43525. },
  43526. [
  43527. {
  43528. name: "Small",
  43529. height: math.unit(10, "feet")
  43530. },
  43531. {
  43532. name: "Macro",
  43533. height: math.unit(500, "feet")
  43534. },
  43535. {
  43536. name: "Mega Macro",
  43537. height: math.unit(5500, "feet"),
  43538. default: true
  43539. },
  43540. {
  43541. name: "Mega Macro+",
  43542. height: math.unit(500000, "feet")
  43543. },
  43544. {
  43545. name: "Giga Macro",
  43546. height: math.unit(3000, "miles")
  43547. },
  43548. {
  43549. name: "Tera Macro",
  43550. height: math.unit(2.8e6, "miles")
  43551. },
  43552. {
  43553. name: "Galactic",
  43554. height: math.unit(120000, "lightyears")
  43555. },
  43556. ]
  43557. ))
  43558. characterMakers.push(() => makeCharacter(
  43559. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43560. {
  43561. werewolf: {
  43562. height: math.unit(8, "feet"),
  43563. weight: math.unit(425, "lb"),
  43564. name: "Werewolf",
  43565. image: {
  43566. source: "./media/characters/autumn/werewolf.svg",
  43567. extra: 2154/2031,
  43568. bottom: 160/2314
  43569. }
  43570. },
  43571. human: {
  43572. height: math.unit(5 + 8/12, "feet"),
  43573. weight: math.unit(150, "lb"),
  43574. name: "Human",
  43575. image: {
  43576. source: "./media/characters/autumn/human.svg",
  43577. extra: 1200/1149,
  43578. bottom: 30/1230
  43579. }
  43580. },
  43581. },
  43582. [
  43583. {
  43584. name: "Normal",
  43585. height: math.unit(8, "feet"),
  43586. default: true
  43587. },
  43588. ]
  43589. ))
  43590. characterMakers.push(() => makeCharacter(
  43591. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43592. {
  43593. front: {
  43594. height: math.unit(8 + 5/12, "feet"),
  43595. weight: math.unit(825, "lb"),
  43596. name: "Front",
  43597. image: {
  43598. source: "./media/characters/cobalt-charizard/front.svg",
  43599. extra: 1268/1155,
  43600. bottom: 122/1390
  43601. }
  43602. },
  43603. side: {
  43604. height: math.unit(8 + 5/12, "feet"),
  43605. weight: math.unit(825, "lb"),
  43606. name: "Side",
  43607. image: {
  43608. source: "./media/characters/cobalt-charizard/side.svg",
  43609. extra: 1348/1257,
  43610. bottom: 58/1406
  43611. }
  43612. },
  43613. gMax: {
  43614. height: math.unit(134 + 11/12, "feet"),
  43615. name: "G-Max",
  43616. image: {
  43617. source: "./media/characters/cobalt-charizard/g-max.svg",
  43618. extra: 1835/1541,
  43619. bottom: 151/1986
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Normal",
  43626. height: math.unit(8 + 5/12, "feet"),
  43627. default: true
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43633. {
  43634. front: {
  43635. height: math.unit(6 + 3/12, "feet"),
  43636. weight: math.unit(210, "lb"),
  43637. name: "Front",
  43638. image: {
  43639. source: "./media/characters/stella/front.svg",
  43640. extra: 3549/3335,
  43641. bottom: 51/3600
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Normal",
  43648. height: math.unit(6 + 3/12, "feet"),
  43649. default: true
  43650. },
  43651. ]
  43652. ))
  43653. characterMakers.push(() => makeCharacter(
  43654. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43655. {
  43656. front: {
  43657. height: math.unit(5, "feet"),
  43658. weight: math.unit(90, "lb"),
  43659. name: "Front",
  43660. image: {
  43661. source: "./media/characters/riley-bishop/front.svg",
  43662. extra: 1450/1428,
  43663. bottom: 152/1602
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Normal",
  43670. height: math.unit(5, "feet"),
  43671. default: true
  43672. },
  43673. ]
  43674. ))
  43675. characterMakers.push(() => makeCharacter(
  43676. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43677. {
  43678. side: {
  43679. height: math.unit(8 + 2/12, "feet"),
  43680. weight: math.unit(500, "kg"),
  43681. name: "Side",
  43682. image: {
  43683. source: "./media/characters/theo-arcanine/side.svg",
  43684. extra: 1342/1074,
  43685. bottom: 111/1453
  43686. }
  43687. },
  43688. },
  43689. [
  43690. {
  43691. name: "Normal",
  43692. height: math.unit(8 + 2/12, "feet"),
  43693. default: true
  43694. },
  43695. ]
  43696. ))
  43697. characterMakers.push(() => makeCharacter(
  43698. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43699. {
  43700. front: {
  43701. height: math.unit(4, "feet"),
  43702. name: "Front",
  43703. image: {
  43704. source: "./media/characters/kali/front.svg",
  43705. extra: 1921/1357,
  43706. bottom: 70/1991
  43707. }
  43708. },
  43709. },
  43710. [
  43711. {
  43712. name: "Normal",
  43713. height: math.unit(4, "feet"),
  43714. default: true
  43715. },
  43716. {
  43717. name: "Macro",
  43718. height: math.unit(32, "meters")
  43719. },
  43720. {
  43721. name: "Macro+",
  43722. height: math.unit(150, "meters")
  43723. },
  43724. {
  43725. name: "Megamacro",
  43726. height: math.unit(7500, "meters")
  43727. },
  43728. {
  43729. name: "Megamacro+",
  43730. height: math.unit(80, "kilometers")
  43731. },
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43736. {
  43737. side: {
  43738. height: math.unit(5 + 11/12, "feet"),
  43739. weight: math.unit(236, "lb"),
  43740. name: "Side",
  43741. image: {
  43742. source: "./media/characters/gapp/side.svg",
  43743. extra: 775/340,
  43744. bottom: 58/833
  43745. }
  43746. },
  43747. mouth: {
  43748. height: math.unit(2.98, "feet"),
  43749. name: "Mouth",
  43750. image: {
  43751. source: "./media/characters/gapp/mouth.svg"
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Normal",
  43758. height: math.unit(5 + 1/12, "feet"),
  43759. default: true
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43765. {
  43766. front: {
  43767. height: math.unit(6, "feet"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/persephone/front.svg",
  43771. extra: 1895/1717,
  43772. bottom: 96/1991
  43773. }
  43774. },
  43775. back: {
  43776. height: math.unit(6, "feet"),
  43777. name: "Back",
  43778. image: {
  43779. source: "./media/characters/persephone/back.svg",
  43780. extra: 1868/1679,
  43781. bottom: 26/1894
  43782. }
  43783. },
  43784. casual: {
  43785. height: math.unit(6, "feet"),
  43786. name: "Casual",
  43787. image: {
  43788. source: "./media/characters/persephone/casual.svg",
  43789. extra: 1713/1541,
  43790. bottom: 76/1789
  43791. }
  43792. },
  43793. },
  43794. [
  43795. {
  43796. name: "Human Size",
  43797. height: math.unit(6, "feet")
  43798. },
  43799. {
  43800. name: "Big Steppy",
  43801. height: math.unit(600, "meters"),
  43802. default: true
  43803. },
  43804. {
  43805. name: "Galaxy Brain",
  43806. height: math.unit(1, "zettameter")
  43807. },
  43808. ]
  43809. ))
  43810. characterMakers.push(() => makeCharacter(
  43811. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43812. {
  43813. front: {
  43814. height: math.unit(1.85, "meters"),
  43815. name: "Front",
  43816. image: {
  43817. source: "./media/characters/riley-foxthing/front.svg",
  43818. extra: 1495/1354,
  43819. bottom: 122/1617
  43820. }
  43821. },
  43822. frontAlt: {
  43823. height: math.unit(1.85, "meters"),
  43824. name: "Front (Alt)",
  43825. image: {
  43826. source: "./media/characters/riley-foxthing/front-alt.svg",
  43827. extra: 1572/1389,
  43828. bottom: 116/1688
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal Sized",
  43835. height: math.unit(1.85, "meters"),
  43836. default: true
  43837. },
  43838. {
  43839. name: "Quite Sizable",
  43840. height: math.unit(5, "meters")
  43841. },
  43842. {
  43843. name: "Rather Large",
  43844. height: math.unit(20, "meters")
  43845. },
  43846. {
  43847. name: "Macro",
  43848. height: math.unit(450, "meters")
  43849. },
  43850. {
  43851. name: "Giga",
  43852. height: math.unit(5, "km")
  43853. },
  43854. ]
  43855. ))
  43856. characterMakers.push(() => makeCharacter(
  43857. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43858. {
  43859. front: {
  43860. height: math.unit(6, "feet"),
  43861. weight: math.unit(200, "lb"),
  43862. name: "Front",
  43863. image: {
  43864. source: "./media/characters/blizzard/front.svg",
  43865. extra: 1136/990,
  43866. bottom: 136/1272
  43867. }
  43868. },
  43869. back: {
  43870. height: math.unit(6, "feet"),
  43871. weight: math.unit(200, "lb"),
  43872. name: "Back",
  43873. image: {
  43874. source: "./media/characters/blizzard/back.svg",
  43875. extra: 1175/1034,
  43876. bottom: 97/1272
  43877. }
  43878. },
  43879. sitting: {
  43880. height: math.unit(3.725, "feet"),
  43881. weight: math.unit(200, "lb"),
  43882. name: "Sitting",
  43883. image: {
  43884. source: "./media/characters/blizzard/sitting.svg",
  43885. extra: 581/485,
  43886. bottom: 90/671
  43887. }
  43888. },
  43889. frontWizard: {
  43890. height: math.unit(7.9, "feet"),
  43891. weight: math.unit(200, "lb"),
  43892. name: "Front (Wizard)",
  43893. image: {
  43894. source: "./media/characters/blizzard/front-wizard.svg"
  43895. }
  43896. },
  43897. backWizard: {
  43898. height: math.unit(7.9, "feet"),
  43899. weight: math.unit(200, "lb"),
  43900. name: "Back (Wizard)",
  43901. image: {
  43902. source: "./media/characters/blizzard/back-wizard.svg"
  43903. }
  43904. },
  43905. frontNsfw: {
  43906. height: math.unit(6, "feet"),
  43907. weight: math.unit(200, "lb"),
  43908. name: "Front (NSFW)",
  43909. image: {
  43910. source: "./media/characters/blizzard/front-nsfw.svg",
  43911. extra: 1136/990,
  43912. bottom: 136/1272
  43913. }
  43914. },
  43915. backNsfw: {
  43916. height: math.unit(6, "feet"),
  43917. weight: math.unit(200, "lb"),
  43918. name: "Back (NSFW)",
  43919. image: {
  43920. source: "./media/characters/blizzard/back-nsfw.svg",
  43921. extra: 1175/1034,
  43922. bottom: 97/1272
  43923. }
  43924. },
  43925. sittingNsfw: {
  43926. height: math.unit(3.725, "feet"),
  43927. weight: math.unit(200, "lb"),
  43928. name: "Sitting (NSFW)",
  43929. image: {
  43930. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43931. extra: 581/485,
  43932. bottom: 90/671
  43933. }
  43934. },
  43935. wizardFrontNsfw: {
  43936. height: math.unit(7.9, "feet"),
  43937. weight: math.unit(200, "lb"),
  43938. name: "Wizard (Front, NSFW)",
  43939. image: {
  43940. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43941. }
  43942. },
  43943. },
  43944. [
  43945. {
  43946. name: "Normal",
  43947. height: math.unit(6, "feet"),
  43948. default: true
  43949. },
  43950. ]
  43951. ))
  43952. characterMakers.push(() => makeCharacter(
  43953. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43954. {
  43955. front: {
  43956. height: math.unit(5 + 2/12, "feet"),
  43957. name: "Front",
  43958. image: {
  43959. source: "./media/characters/lumi/front.svg",
  43960. extra: 1328/1268,
  43961. bottom: 103/1431
  43962. }
  43963. },
  43964. back: {
  43965. height: math.unit(5 + 2/12, "feet"),
  43966. name: "Back",
  43967. image: {
  43968. source: "./media/characters/lumi/back.svg",
  43969. extra: 1381/1327,
  43970. bottom: 43/1424
  43971. }
  43972. },
  43973. },
  43974. [
  43975. {
  43976. name: "Normal",
  43977. height: math.unit(5 + 2/12, "feet"),
  43978. default: true
  43979. },
  43980. ]
  43981. ))
  43982. characterMakers.push(() => makeCharacter(
  43983. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43984. {
  43985. front: {
  43986. height: math.unit(5 + 9/12, "feet"),
  43987. name: "Front",
  43988. image: {
  43989. source: "./media/characters/aliya-cotton/front.svg",
  43990. extra: 577/564,
  43991. bottom: 29/606
  43992. }
  43993. },
  43994. },
  43995. [
  43996. {
  43997. name: "Normal",
  43998. height: math.unit(5 + 9/12, "feet"),
  43999. default: true
  44000. },
  44001. ]
  44002. ))
  44003. characterMakers.push(() => makeCharacter(
  44004. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44005. {
  44006. front: {
  44007. height: math.unit(2.7, "meters"),
  44008. weight: math.unit(25000, "lb"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/noah-luxray/front.svg",
  44012. extra: 1644/825,
  44013. bottom: 339/1983
  44014. }
  44015. },
  44016. side: {
  44017. height: math.unit(2.97, "meters"),
  44018. weight: math.unit(25000, "lb"),
  44019. name: "Side",
  44020. image: {
  44021. source: "./media/characters/noah-luxray/side.svg",
  44022. extra: 1319/650,
  44023. bottom: 163/1482
  44024. }
  44025. },
  44026. dick: {
  44027. height: math.unit(7.4, "feet"),
  44028. weight: math.unit(2500, "lb"),
  44029. name: "Dick",
  44030. image: {
  44031. source: "./media/characters/noah-luxray/dick.svg"
  44032. }
  44033. },
  44034. dickAlt: {
  44035. height: math.unit(10.83, "feet"),
  44036. weight: math.unit(2500, "lb"),
  44037. name: "Dick-alt",
  44038. image: {
  44039. source: "./media/characters/noah-luxray/dick-alt.svg"
  44040. }
  44041. },
  44042. },
  44043. [
  44044. {
  44045. name: "BIG",
  44046. height: math.unit(2.7, "meters"),
  44047. default: true
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44053. {
  44054. standing: {
  44055. height: math.unit(183, "cm"),
  44056. weight: math.unit(68, "kg"),
  44057. name: "Standing",
  44058. image: {
  44059. source: "./media/characters/arion/standing.svg",
  44060. extra: 1869/1807,
  44061. bottom: 93/1962
  44062. }
  44063. },
  44064. reclining: {
  44065. height: math.unit(70.5, "cm"),
  44066. weight: math.unit(68, "lb"),
  44067. name: "Reclining",
  44068. image: {
  44069. source: "./media/characters/arion/reclining.svg",
  44070. extra: 937/870,
  44071. bottom: 63/1000
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Colossus Size, Low",
  44078. height: math.unit(33, "meters"),
  44079. default: true
  44080. },
  44081. {
  44082. name: "Colossus Size, Mid",
  44083. height: math.unit(52, "meters")
  44084. },
  44085. {
  44086. name: "Colossus Size, High",
  44087. height: math.unit(60, "meters")
  44088. },
  44089. {
  44090. name: "Titan Size, Low",
  44091. height: math.unit(91, "meters"),
  44092. },
  44093. {
  44094. name: "Titan Size, Mid",
  44095. height: math.unit(122, "meters")
  44096. },
  44097. {
  44098. name: "Titan Size, High",
  44099. height: math.unit(162, "meters")
  44100. },
  44101. ]
  44102. ))
  44103. characterMakers.push(() => makeCharacter(
  44104. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44105. {
  44106. front: {
  44107. height: math.unit(53, "meters"),
  44108. name: "Front",
  44109. image: {
  44110. source: "./media/characters/stellar-marbey/front.svg",
  44111. extra: 1913/1805,
  44112. bottom: 92/2005
  44113. }
  44114. },
  44115. back: {
  44116. height: math.unit(53, "meters"),
  44117. name: "Back",
  44118. image: {
  44119. source: "./media/characters/stellar-marbey/back.svg",
  44120. extra: 1960/1851,
  44121. bottom: 28/1988
  44122. }
  44123. },
  44124. mouth: {
  44125. height: math.unit(3.5, "meters"),
  44126. name: "Mouth",
  44127. image: {
  44128. source: "./media/characters/stellar-marbey/mouth.svg"
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Macro",
  44135. height: math.unit(53, "meters"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44142. {
  44143. front: {
  44144. height: math.unit(8 + 1/12, "feet"),
  44145. weight: math.unit(233, "lb"),
  44146. name: "Front",
  44147. image: {
  44148. source: "./media/characters/matsu/front.svg",
  44149. extra: 832/772,
  44150. bottom: 40/872
  44151. }
  44152. },
  44153. back: {
  44154. height: math.unit(8 + 1/12, "feet"),
  44155. weight: math.unit(233, "lb"),
  44156. name: "Back",
  44157. image: {
  44158. source: "./media/characters/matsu/back.svg",
  44159. extra: 839/780,
  44160. bottom: 47/886
  44161. }
  44162. },
  44163. },
  44164. [
  44165. {
  44166. name: "Normal",
  44167. height: math.unit(8 + 1/12, "feet"),
  44168. default: true
  44169. },
  44170. ]
  44171. ))
  44172. characterMakers.push(() => makeCharacter(
  44173. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44174. {
  44175. front: {
  44176. height: math.unit(4, "feet"),
  44177. weight: math.unit(148, "lb"),
  44178. name: "Front",
  44179. image: {
  44180. source: "./media/characters/thiz/front.svg",
  44181. extra: 1913/1748,
  44182. bottom: 62/1975
  44183. }
  44184. },
  44185. },
  44186. [
  44187. {
  44188. name: "Normal",
  44189. height: math.unit(4, "feet"),
  44190. default: true
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44196. {
  44197. front: {
  44198. height: math.unit(7 + 6/12, "feet"),
  44199. weight: math.unit(267, "lb"),
  44200. name: "Front",
  44201. image: {
  44202. source: "./media/characters/marcel/front.svg",
  44203. extra: 1221/1096,
  44204. bottom: 76/1297
  44205. }
  44206. },
  44207. },
  44208. [
  44209. {
  44210. name: "Normal",
  44211. height: math.unit(7 + 6/12, "feet"),
  44212. default: true
  44213. },
  44214. ]
  44215. ))
  44216. characterMakers.push(() => makeCharacter(
  44217. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44218. {
  44219. side: {
  44220. height: math.unit(42, "meters"),
  44221. name: "Side",
  44222. image: {
  44223. source: "./media/characters/flake/side.svg",
  44224. extra: 1525/1306,
  44225. bottom: 209/1734
  44226. }
  44227. },
  44228. },
  44229. [
  44230. {
  44231. name: "Normal",
  44232. height: math.unit(42, "meters"),
  44233. default: true
  44234. },
  44235. ]
  44236. ))
  44237. characterMakers.push(() => makeCharacter(
  44238. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44239. {
  44240. dressed: {
  44241. height: math.unit(6 + 4/12, "feet"),
  44242. weight: math.unit(520, "lb"),
  44243. name: "Dressed",
  44244. image: {
  44245. source: "./media/characters/someonne/dressed.svg",
  44246. extra: 1020/1010,
  44247. bottom: 178/1198
  44248. }
  44249. },
  44250. undressed: {
  44251. height: math.unit(6 + 4/12, "feet"),
  44252. weight: math.unit(520, "lb"),
  44253. name: "Undressed",
  44254. image: {
  44255. source: "./media/characters/someonne/undressed.svg",
  44256. extra: 1019/1014,
  44257. bottom: 169/1188
  44258. }
  44259. },
  44260. },
  44261. [
  44262. {
  44263. name: "Normal",
  44264. height: math.unit(6 + 4/12, "feet"),
  44265. default: true
  44266. },
  44267. ]
  44268. ))
  44269. characterMakers.push(() => makeCharacter(
  44270. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44271. {
  44272. front: {
  44273. height: math.unit(3, "feet"),
  44274. weight: math.unit(30, "lb"),
  44275. name: "Front",
  44276. image: {
  44277. source: "./media/characters/till/front.svg",
  44278. extra: 892/823,
  44279. bottom: 55/947
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Normal",
  44286. height: math.unit(3, "feet"),
  44287. default: true
  44288. },
  44289. ]
  44290. ))
  44291. characterMakers.push(() => makeCharacter(
  44292. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44293. {
  44294. front: {
  44295. height: math.unit(9 + 8/12, "feet"),
  44296. weight: math.unit(800, "lb"),
  44297. name: "Front",
  44298. image: {
  44299. source: "./media/characters/sydney-heki/front.svg",
  44300. extra: 1360/1300,
  44301. bottom: 22/1382
  44302. }
  44303. },
  44304. back: {
  44305. height: math.unit(9 + 8/12, "feet"),
  44306. weight: math.unit(800, "lb"),
  44307. name: "Back",
  44308. image: {
  44309. source: "./media/characters/sydney-heki/back.svg",
  44310. extra: 1356/1293,
  44311. bottom: 12/1368
  44312. }
  44313. },
  44314. frontDressed: {
  44315. height: math.unit(9 + 8/12, "feet"),
  44316. weight: math.unit(800, "lb"),
  44317. name: "Front-dressed",
  44318. image: {
  44319. source: "./media/characters/sydney-heki/front-dressed.svg",
  44320. extra: 1360/1300,
  44321. bottom: 22/1382
  44322. }
  44323. },
  44324. },
  44325. [
  44326. {
  44327. name: "Normal",
  44328. height: math.unit(9 + 8/12, "feet"),
  44329. default: true
  44330. },
  44331. {
  44332. name: "Macro",
  44333. height: math.unit(500, "feet")
  44334. },
  44335. {
  44336. name: "Megamacro",
  44337. height: math.unit(3.6, "miles")
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(200, "cm"),
  44346. weight: math.unit(250, "lb"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/fowler-karlsson/front.svg",
  44350. extra: 897/845,
  44351. bottom: 123/1020
  44352. }
  44353. },
  44354. back: {
  44355. height: math.unit(200, "cm"),
  44356. weight: math.unit(250, "lb"),
  44357. name: "Back",
  44358. image: {
  44359. source: "./media/characters/fowler-karlsson/back.svg",
  44360. extra: 999/944,
  44361. bottom: 26/1025
  44362. }
  44363. },
  44364. dick: {
  44365. height: math.unit(1.92, "feet"),
  44366. weight: math.unit(150, "lb"),
  44367. name: "Dick",
  44368. image: {
  44369. source: "./media/characters/fowler-karlsson/dick.svg"
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "Normal",
  44376. height: math.unit(200, "cm"),
  44377. default: true
  44378. },
  44379. {
  44380. name: "Smaller Macro",
  44381. height: math.unit(90, "m")
  44382. },
  44383. {
  44384. name: "Macro",
  44385. height: math.unit(150, "m")
  44386. },
  44387. {
  44388. name: "Bigger Macro",
  44389. height: math.unit(300, "m")
  44390. },
  44391. ]
  44392. ))
  44393. characterMakers.push(() => makeCharacter(
  44394. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44395. {
  44396. side: {
  44397. height: math.unit(8 + 2/12, "feet"),
  44398. weight: math.unit(1, "tonne"),
  44399. name: "Side",
  44400. image: {
  44401. source: "./media/characters/rylide/side.svg",
  44402. extra: 1318/1034,
  44403. bottom: 106/1424
  44404. }
  44405. },
  44406. sitting: {
  44407. height: math.unit(303, "cm"),
  44408. weight: math.unit(1, "tonne"),
  44409. name: "Sitting",
  44410. image: {
  44411. source: "./media/characters/rylide/sitting.svg",
  44412. extra: 1303/1103,
  44413. bottom: 36/1339
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Normal",
  44420. height: math.unit(8 + 2/12, "feet"),
  44421. default: true
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44427. {
  44428. front: {
  44429. height: math.unit(5 + 10/12, "feet"),
  44430. weight: math.unit(160, "lb"),
  44431. name: "Front",
  44432. image: {
  44433. source: "./media/characters/pudask/front.svg",
  44434. extra: 1616/1590,
  44435. bottom: 161/1777
  44436. }
  44437. },
  44438. },
  44439. [
  44440. {
  44441. name: "Ferret Height",
  44442. height: math.unit(2 + 5/12, "feet")
  44443. },
  44444. {
  44445. name: "Canon Height",
  44446. height: math.unit(5 + 10/12, "feet"),
  44447. default: true
  44448. },
  44449. ]
  44450. ))
  44451. characterMakers.push(() => makeCharacter(
  44452. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44453. {
  44454. front: {
  44455. height: math.unit(3 + 6/12, "feet"),
  44456. weight: math.unit(60, "lb"),
  44457. name: "Front",
  44458. image: {
  44459. source: "./media/characters/ramita/front.svg",
  44460. extra: 1402/1232,
  44461. bottom: 62/1464
  44462. }
  44463. },
  44464. dressed: {
  44465. height: math.unit(3 + 6/12, "feet"),
  44466. weight: math.unit(60, "lb"),
  44467. name: "Dressed",
  44468. image: {
  44469. source: "./media/characters/ramita/dressed.svg",
  44470. extra: 1534/1249,
  44471. bottom: 50/1584
  44472. }
  44473. },
  44474. },
  44475. [
  44476. {
  44477. name: "Normal",
  44478. height: math.unit(3 + 6/12, "feet"),
  44479. default: true
  44480. },
  44481. ]
  44482. ))
  44483. characterMakers.push(() => makeCharacter(
  44484. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44485. {
  44486. front: {
  44487. height: math.unit(8, "feet"),
  44488. name: "Front",
  44489. image: {
  44490. source: "./media/characters/ark/front.svg",
  44491. extra: 772/693,
  44492. bottom: 45/817
  44493. }
  44494. },
  44495. },
  44496. [
  44497. {
  44498. name: "Normal",
  44499. height: math.unit(8, "feet"),
  44500. default: true
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44506. {
  44507. front: {
  44508. height: math.unit(6, "feet"),
  44509. weight: math.unit(250, "lb"),
  44510. volume: math.unit(5/8, "gallons"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/ludwig-horn/front.svg",
  44514. extra: 1782/1635,
  44515. bottom: 96/1878
  44516. }
  44517. },
  44518. back: {
  44519. height: math.unit(6, "feet"),
  44520. weight: math.unit(250, "lb"),
  44521. volume: math.unit(5/8, "gallons"),
  44522. name: "Back",
  44523. image: {
  44524. source: "./media/characters/ludwig-horn/back.svg",
  44525. extra: 1874/1729,
  44526. bottom: 27/1901
  44527. }
  44528. },
  44529. dick: {
  44530. height: math.unit(1.05, "feet"),
  44531. weight: math.unit(15, "lb"),
  44532. volume: math.unit(5/8, "gallons"),
  44533. name: "Dick",
  44534. image: {
  44535. source: "./media/characters/ludwig-horn/dick.svg"
  44536. }
  44537. },
  44538. },
  44539. [
  44540. {
  44541. name: "Small",
  44542. height: math.unit(6, "feet")
  44543. },
  44544. {
  44545. name: "Typical",
  44546. height: math.unit(12, "feet"),
  44547. default: true
  44548. },
  44549. {
  44550. name: "Building",
  44551. height: math.unit(80, "feet")
  44552. },
  44553. {
  44554. name: "Town",
  44555. height: math.unit(800, "feet")
  44556. },
  44557. {
  44558. name: "Kingdom",
  44559. height: math.unit(80000, "feet")
  44560. },
  44561. {
  44562. name: "Planet",
  44563. height: math.unit(8000000, "feet")
  44564. },
  44565. {
  44566. name: "Universe",
  44567. height: math.unit(8000000000, "feet")
  44568. },
  44569. {
  44570. name: "Transcended",
  44571. height: math.unit(8e27, "feet")
  44572. },
  44573. ]
  44574. ))
  44575. characterMakers.push(() => makeCharacter(
  44576. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44577. {
  44578. front: {
  44579. height: math.unit(5, "feet"),
  44580. weight: math.unit(50, "kg"),
  44581. name: "Front",
  44582. image: {
  44583. source: "./media/characters/biot-avery/front.svg",
  44584. extra: 1295/1232,
  44585. bottom: 86/1381
  44586. }
  44587. },
  44588. },
  44589. [
  44590. {
  44591. name: "Normal",
  44592. height: math.unit(5, "feet"),
  44593. default: true
  44594. },
  44595. ]
  44596. ))
  44597. characterMakers.push(() => makeCharacter(
  44598. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44599. {
  44600. front: {
  44601. height: math.unit(6, "feet"),
  44602. name: "Front",
  44603. image: {
  44604. source: "./media/characters/kitsune-kiro/front.svg",
  44605. extra: 1270/1158,
  44606. bottom: 42/1312
  44607. }
  44608. },
  44609. frontAlt: {
  44610. height: math.unit(6, "feet"),
  44611. name: "Front-alt",
  44612. image: {
  44613. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44614. extra: 1130/1081,
  44615. bottom: 36/1166
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Smol",
  44622. height: math.unit(3, "feet")
  44623. },
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(6, "feet"),
  44627. default: true
  44628. },
  44629. ]
  44630. ))
  44631. characterMakers.push(() => makeCharacter(
  44632. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44633. {
  44634. front: {
  44635. height: math.unit(6, "feet"),
  44636. weight: math.unit(125, "lb"),
  44637. name: "Front",
  44638. image: {
  44639. source: "./media/characters/jack-thatcher/front.svg",
  44640. extra: 1474/1370,
  44641. bottom: 26/1500
  44642. }
  44643. },
  44644. back: {
  44645. height: math.unit(6, "feet"),
  44646. weight: math.unit(125, "lb"),
  44647. name: "Back",
  44648. image: {
  44649. source: "./media/characters/jack-thatcher/back.svg",
  44650. extra: 1489/1384,
  44651. bottom: 18/1507
  44652. }
  44653. },
  44654. },
  44655. [
  44656. {
  44657. name: "Normal",
  44658. height: math.unit(6, "feet"),
  44659. default: true
  44660. },
  44661. {
  44662. name: "Macro",
  44663. height: math.unit(75, "feet")
  44664. },
  44665. {
  44666. name: "Macro-er",
  44667. height: math.unit(250, "feet")
  44668. },
  44669. ]
  44670. ))
  44671. characterMakers.push(() => makeCharacter(
  44672. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44673. {
  44674. front: {
  44675. height: math.unit(7, "feet"),
  44676. weight: math.unit(110, "kg"),
  44677. name: "Front",
  44678. image: {
  44679. source: "./media/characters/max-hyper/front.svg",
  44680. extra: 1969/1881,
  44681. bottom: 49/2018
  44682. }
  44683. },
  44684. },
  44685. [
  44686. {
  44687. name: "Normal",
  44688. height: math.unit(7, "feet"),
  44689. default: true
  44690. },
  44691. ]
  44692. ))
  44693. characterMakers.push(() => makeCharacter(
  44694. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44695. {
  44696. front: {
  44697. height: math.unit(5 + 5/12, "feet"),
  44698. weight: math.unit(160, "lb"),
  44699. name: "Front",
  44700. image: {
  44701. source: "./media/characters/spook/front.svg",
  44702. extra: 794/791,
  44703. bottom: 54/848
  44704. }
  44705. },
  44706. back: {
  44707. height: math.unit(5 + 5/12, "feet"),
  44708. weight: math.unit(160, "lb"),
  44709. name: "Back",
  44710. image: {
  44711. source: "./media/characters/spook/back.svg",
  44712. extra: 812/798,
  44713. bottom: 32/844
  44714. }
  44715. },
  44716. },
  44717. [
  44718. {
  44719. name: "Normal",
  44720. height: math.unit(5 + 5/12, "feet"),
  44721. default: true
  44722. },
  44723. ]
  44724. ))
  44725. characterMakers.push(() => makeCharacter(
  44726. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44727. {
  44728. front: {
  44729. height: math.unit(18, "feet"),
  44730. name: "Front",
  44731. image: {
  44732. source: "./media/characters/xeaduulix/front.svg",
  44733. extra: 1380/1166,
  44734. bottom: 110/1490
  44735. }
  44736. },
  44737. back: {
  44738. height: math.unit(18, "feet"),
  44739. name: "Back",
  44740. image: {
  44741. source: "./media/characters/xeaduulix/back.svg",
  44742. extra: 1592/1170,
  44743. bottom: 128/1720
  44744. }
  44745. },
  44746. frontNsfw: {
  44747. height: math.unit(18, "feet"),
  44748. name: "Front (NSFW)",
  44749. image: {
  44750. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44751. extra: 1380/1166,
  44752. bottom: 110/1490
  44753. }
  44754. },
  44755. backNsfw: {
  44756. height: math.unit(18, "feet"),
  44757. name: "Back (NSFW)",
  44758. image: {
  44759. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44760. extra: 1592/1170,
  44761. bottom: 128/1720
  44762. }
  44763. },
  44764. },
  44765. [
  44766. {
  44767. name: "Normal",
  44768. height: math.unit(18, "feet"),
  44769. default: true
  44770. },
  44771. ]
  44772. ))
  44773. characterMakers.push(() => makeCharacter(
  44774. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44775. {
  44776. spreadWings: {
  44777. height: math.unit(20, "feet"),
  44778. name: "Spread Wings",
  44779. image: {
  44780. source: "./media/characters/fledge/spread-wings.svg",
  44781. extra: 693/635,
  44782. bottom: 26/719
  44783. }
  44784. },
  44785. front: {
  44786. height: math.unit(20, "feet"),
  44787. name: "Front",
  44788. image: {
  44789. source: "./media/characters/fledge/front.svg",
  44790. extra: 684/637,
  44791. bottom: 18/702
  44792. }
  44793. },
  44794. frontAlt: {
  44795. height: math.unit(20, "feet"),
  44796. name: "Front (Alt)",
  44797. image: {
  44798. source: "./media/characters/fledge/front-alt.svg",
  44799. extra: 708/664,
  44800. bottom: 13/721
  44801. }
  44802. },
  44803. back: {
  44804. height: math.unit(20, "feet"),
  44805. name: "Back",
  44806. image: {
  44807. source: "./media/characters/fledge/back.svg",
  44808. extra: 718/634,
  44809. bottom: 22/740
  44810. }
  44811. },
  44812. head: {
  44813. height: math.unit(5.55, "feet"),
  44814. name: "Head",
  44815. image: {
  44816. source: "./media/characters/fledge/head.svg"
  44817. }
  44818. },
  44819. headAlt: {
  44820. height: math.unit(5.1, "feet"),
  44821. name: "Head (Alt)",
  44822. image: {
  44823. source: "./media/characters/fledge/head-alt.svg"
  44824. }
  44825. },
  44826. },
  44827. [
  44828. {
  44829. name: "Small",
  44830. height: math.unit(6 + 2/12, "feet")
  44831. },
  44832. {
  44833. name: "Big",
  44834. height: math.unit(20, "feet"),
  44835. default: true
  44836. },
  44837. {
  44838. name: "Giant",
  44839. height: math.unit(100, "feet")
  44840. },
  44841. {
  44842. name: "Macro",
  44843. height: math.unit(200, "feet")
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44849. {
  44850. front: {
  44851. height: math.unit(1, "meter"),
  44852. name: "Front",
  44853. image: {
  44854. source: "./media/characters/atlas-morenai/front.svg",
  44855. extra: 1275/1043,
  44856. bottom: 19/1294
  44857. }
  44858. },
  44859. back: {
  44860. height: math.unit(1, "meter"),
  44861. name: "Back",
  44862. image: {
  44863. source: "./media/characters/atlas-morenai/back.svg",
  44864. extra: 1141/1001,
  44865. bottom: 25/1166
  44866. }
  44867. },
  44868. },
  44869. [
  44870. {
  44871. name: "Normal",
  44872. height: math.unit(1, "meter"),
  44873. default: true
  44874. },
  44875. {
  44876. name: "Magic-Infused",
  44877. height: math.unit(5, "meters")
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44883. {
  44884. front: {
  44885. height: math.unit(5, "meters"),
  44886. name: "Front",
  44887. image: {
  44888. source: "./media/characters/cintia/front.svg",
  44889. extra: 1312/1228,
  44890. bottom: 38/1350
  44891. }
  44892. },
  44893. back: {
  44894. height: math.unit(5, "meters"),
  44895. name: "Back",
  44896. image: {
  44897. source: "./media/characters/cintia/back.svg",
  44898. extra: 1260/1166,
  44899. bottom: 98/1358
  44900. }
  44901. },
  44902. frontDick: {
  44903. height: math.unit(5, "meters"),
  44904. name: "Front (Dick)",
  44905. image: {
  44906. source: "./media/characters/cintia/front-dick.svg",
  44907. extra: 1312/1228,
  44908. bottom: 38/1350
  44909. }
  44910. },
  44911. backDick: {
  44912. height: math.unit(5, "meters"),
  44913. name: "Back (Dick)",
  44914. image: {
  44915. source: "./media/characters/cintia/back-dick.svg",
  44916. extra: 1260/1166,
  44917. bottom: 98/1358
  44918. }
  44919. },
  44920. bust: {
  44921. height: math.unit(1.97, "meters"),
  44922. name: "Bust",
  44923. image: {
  44924. source: "./media/characters/cintia/bust.svg",
  44925. extra: 617/565,
  44926. bottom: 0/617
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Normal",
  44933. height: math.unit(5, "meters"),
  44934. default: true
  44935. },
  44936. ]
  44937. ))
  44938. characterMakers.push(() => makeCharacter(
  44939. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44940. {
  44941. side: {
  44942. height: math.unit(100, "feet"),
  44943. name: "Side",
  44944. image: {
  44945. source: "./media/characters/denora/side.svg",
  44946. extra: 875/803,
  44947. bottom: 9/884
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Standard",
  44954. height: math.unit(100, "feet"),
  44955. default: true
  44956. },
  44957. {
  44958. name: "Grand",
  44959. height: math.unit(1000, "feet")
  44960. },
  44961. {
  44962. name: "Conquering",
  44963. height: math.unit(10000, "feet")
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44969. {
  44970. dressed: {
  44971. height: math.unit(8 + 5/12, "feet"),
  44972. weight: math.unit(700, "lb"),
  44973. name: "Dressed",
  44974. image: {
  44975. source: "./media/characters/kiva/dressed.svg",
  44976. extra: 1102/1055,
  44977. bottom: 60/1162
  44978. }
  44979. },
  44980. nude: {
  44981. height: math.unit(8 + 5/12, "feet"),
  44982. weight: math.unit(700, "lb"),
  44983. name: "Nude",
  44984. image: {
  44985. source: "./media/characters/kiva/nude.svg",
  44986. extra: 1102/1055,
  44987. bottom: 60/1162
  44988. }
  44989. },
  44990. },
  44991. [
  44992. {
  44993. name: "Base Height",
  44994. height: math.unit(8 + 5/12, "feet"),
  44995. default: true
  44996. },
  44997. {
  44998. name: "Macro",
  44999. height: math.unit(100, "feet")
  45000. },
  45001. {
  45002. name: "Max",
  45003. height: math.unit(3280, "feet")
  45004. },
  45005. ]
  45006. ))
  45007. characterMakers.push(() => makeCharacter(
  45008. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45009. {
  45010. front: {
  45011. height: math.unit(6 + 8/12, "feet"),
  45012. weight: math.unit(250, "lb"),
  45013. name: "Front",
  45014. image: {
  45015. source: "./media/characters/ztragon/front.svg",
  45016. extra: 1825/1684,
  45017. bottom: 98/1923
  45018. }
  45019. },
  45020. },
  45021. [
  45022. {
  45023. name: "Normal",
  45024. height: math.unit(6 + 8/12, "feet"),
  45025. default: true
  45026. },
  45027. {
  45028. name: "Macro",
  45029. height: math.unit(80, "feet")
  45030. },
  45031. ]
  45032. ))
  45033. characterMakers.push(() => makeCharacter(
  45034. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45035. {
  45036. front: {
  45037. height: math.unit(10.4, "feet"),
  45038. weight: math.unit(2, "tons"),
  45039. name: "Front",
  45040. image: {
  45041. source: "./media/characters/yesenia/front.svg",
  45042. extra: 1479/1474,
  45043. bottom: 233/1712
  45044. }
  45045. },
  45046. },
  45047. [
  45048. {
  45049. name: "Normal",
  45050. height: math.unit(10.4, "feet"),
  45051. default: true
  45052. },
  45053. ]
  45054. ))
  45055. characterMakers.push(() => makeCharacter(
  45056. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45057. {
  45058. normal: {
  45059. height: math.unit(6 + 1/12, "feet"),
  45060. weight: math.unit(180, "lb"),
  45061. name: "Normal",
  45062. image: {
  45063. source: "./media/characters/leanne-lycheborne/normal.svg",
  45064. extra: 1748/1660,
  45065. bottom: 98/1846
  45066. }
  45067. },
  45068. were: {
  45069. height: math.unit(12, "feet"),
  45070. weight: math.unit(1600, "lb"),
  45071. name: "Were",
  45072. image: {
  45073. source: "./media/characters/leanne-lycheborne/were.svg",
  45074. extra: 1485/1432,
  45075. bottom: 66/1551
  45076. }
  45077. },
  45078. },
  45079. [
  45080. {
  45081. name: "Normal",
  45082. height: math.unit(6 + 1/12, "feet"),
  45083. default: true
  45084. },
  45085. ]
  45086. ))
  45087. characterMakers.push(() => makeCharacter(
  45088. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45089. {
  45090. side: {
  45091. height: math.unit(13, "feet"),
  45092. name: "Side",
  45093. image: {
  45094. source: "./media/characters/kira-tyler/side.svg",
  45095. extra: 693/393,
  45096. bottom: 58/751
  45097. }
  45098. },
  45099. },
  45100. [
  45101. {
  45102. name: "Normal",
  45103. height: math.unit(13, "feet"),
  45104. default: true
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45110. {
  45111. front: {
  45112. height: math.unit(10.3, "feet"),
  45113. weight: math.unit(150, "lb"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/blaze/front.svg",
  45117. extra: 1378/1286,
  45118. bottom: 172/1550
  45119. }
  45120. },
  45121. },
  45122. [
  45123. {
  45124. name: "Normal",
  45125. height: math.unit(10.3, "feet"),
  45126. default: true
  45127. },
  45128. ]
  45129. ))
  45130. characterMakers.push(() => makeCharacter(
  45131. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45132. {
  45133. side: {
  45134. height: math.unit(2, "meters"),
  45135. weight: math.unit(400, "kg"),
  45136. name: "Side",
  45137. image: {
  45138. source: "./media/characters/anu/side.svg",
  45139. extra: 506/394,
  45140. bottom: 18/524
  45141. }
  45142. },
  45143. },
  45144. [
  45145. {
  45146. name: "Humanoid",
  45147. height: math.unit(2, "meters")
  45148. },
  45149. {
  45150. name: "Normal",
  45151. height: math.unit(5, "meters"),
  45152. default: true
  45153. },
  45154. ]
  45155. ))
  45156. characterMakers.push(() => makeCharacter(
  45157. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45158. {
  45159. front: {
  45160. height: math.unit(5 + 5/12, "feet"),
  45161. weight: math.unit(170, "lb"),
  45162. name: "Front",
  45163. image: {
  45164. source: "./media/characters/synx-the-lynx/front.svg",
  45165. extra: 1893/1745,
  45166. bottom: 17/1910
  45167. }
  45168. },
  45169. side: {
  45170. height: math.unit(5 + 5/12, "feet"),
  45171. weight: math.unit(170, "lb"),
  45172. name: "Side",
  45173. image: {
  45174. source: "./media/characters/synx-the-lynx/side.svg",
  45175. extra: 1884/1740,
  45176. bottom: 39/1923
  45177. }
  45178. },
  45179. back: {
  45180. height: math.unit(5 + 5/12, "feet"),
  45181. weight: math.unit(170, "lb"),
  45182. name: "Back",
  45183. image: {
  45184. source: "./media/characters/synx-the-lynx/back.svg",
  45185. extra: 1903/1755,
  45186. bottom: 14/1917
  45187. }
  45188. },
  45189. },
  45190. [
  45191. {
  45192. name: "Normal",
  45193. height: math.unit(5 + 5/12, "feet"),
  45194. default: true
  45195. },
  45196. ]
  45197. ))
  45198. characterMakers.push(() => makeCharacter(
  45199. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45200. {
  45201. back: {
  45202. height: math.unit(15, "feet"),
  45203. name: "Back",
  45204. image: {
  45205. source: "./media/characters/nadezda-fex/back.svg",
  45206. extra: 1695/1481,
  45207. bottom: 25/1720
  45208. }
  45209. },
  45210. },
  45211. [
  45212. {
  45213. name: "Normal",
  45214. height: math.unit(15, "feet"),
  45215. default: true
  45216. },
  45217. {
  45218. name: "Macro",
  45219. height: math.unit(2.5, "miles")
  45220. },
  45221. {
  45222. name: "Goddess",
  45223. height: math.unit(2, "multiverses")
  45224. },
  45225. ]
  45226. ))
  45227. characterMakers.push(() => makeCharacter(
  45228. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45229. {
  45230. front: {
  45231. height: math.unit(216, "cm"),
  45232. name: "Front",
  45233. image: {
  45234. source: "./media/characters/lev/front.svg",
  45235. extra: 1728/1670,
  45236. bottom: 82/1810
  45237. }
  45238. },
  45239. back: {
  45240. height: math.unit(216, "cm"),
  45241. name: "Back",
  45242. image: {
  45243. source: "./media/characters/lev/back.svg",
  45244. extra: 1738/1675,
  45245. bottom: 24/1762
  45246. }
  45247. },
  45248. dressed: {
  45249. height: math.unit(216, "cm"),
  45250. name: "Dressed",
  45251. image: {
  45252. source: "./media/characters/lev/dressed.svg",
  45253. extra: 1397/1351,
  45254. bottom: 73/1470
  45255. }
  45256. },
  45257. head: {
  45258. height: math.unit(0.51, "meter"),
  45259. name: "Head",
  45260. image: {
  45261. source: "./media/characters/lev/head.svg"
  45262. }
  45263. },
  45264. },
  45265. [
  45266. {
  45267. name: "Normal",
  45268. height: math.unit(216, "cm"),
  45269. default: true
  45270. },
  45271. {
  45272. name: "Relatively Macro",
  45273. height: math.unit(80, "meters")
  45274. },
  45275. {
  45276. name: "Megamacro",
  45277. height: math.unit(21600, "meters")
  45278. },
  45279. {
  45280. name: "Megamacro+",
  45281. height: math.unit(64800, "meters")
  45282. },
  45283. ]
  45284. ))
  45285. characterMakers.push(() => makeCharacter(
  45286. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45287. {
  45288. front: {
  45289. height: math.unit(2, "meters"),
  45290. weight: math.unit(80, "kg"),
  45291. name: "Front",
  45292. image: {
  45293. source: "./media/characters/moka/front.svg",
  45294. extra: 1337/1255,
  45295. bottom: 58/1395
  45296. }
  45297. },
  45298. },
  45299. [
  45300. {
  45301. name: "Micro",
  45302. height: math.unit(15, "cm")
  45303. },
  45304. {
  45305. name: "Normal",
  45306. height: math.unit(2, "meters"),
  45307. default: true
  45308. },
  45309. {
  45310. name: "Macro",
  45311. height: math.unit(20, "meters"),
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45317. {
  45318. front: {
  45319. height: math.unit(9, "feet"),
  45320. weight: math.unit(240, "lb"),
  45321. name: "Front",
  45322. image: {
  45323. source: "./media/characters/kuzco/front.svg",
  45324. extra: 1593/1487,
  45325. bottom: 32/1625
  45326. }
  45327. },
  45328. side: {
  45329. height: math.unit(9, "feet"),
  45330. weight: math.unit(240, "lb"),
  45331. name: "Side",
  45332. image: {
  45333. source: "./media/characters/kuzco/side.svg",
  45334. extra: 1575/1485,
  45335. bottom: 30/1605
  45336. }
  45337. },
  45338. back: {
  45339. height: math.unit(9, "feet"),
  45340. weight: math.unit(240, "lb"),
  45341. name: "Back",
  45342. image: {
  45343. source: "./media/characters/kuzco/back.svg",
  45344. extra: 1603/1514,
  45345. bottom: 14/1617
  45346. }
  45347. },
  45348. },
  45349. [
  45350. {
  45351. name: "Normal",
  45352. height: math.unit(9, "feet"),
  45353. default: true
  45354. },
  45355. ]
  45356. ))
  45357. characterMakers.push(() => makeCharacter(
  45358. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45359. {
  45360. side: {
  45361. height: math.unit(2, "meters"),
  45362. weight: math.unit(300, "kg"),
  45363. name: "Side",
  45364. image: {
  45365. source: "./media/characters/ceruleus/side.svg",
  45366. extra: 1068/974,
  45367. bottom: 126/1194
  45368. }
  45369. },
  45370. },
  45371. [
  45372. {
  45373. name: "Normal",
  45374. height: math.unit(16, "meters"),
  45375. default: true
  45376. },
  45377. ]
  45378. ))
  45379. characterMakers.push(() => makeCharacter(
  45380. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45381. {
  45382. front: {
  45383. height: math.unit(9, "feet"),
  45384. weight: math.unit(500, "kg"),
  45385. name: "Front",
  45386. image: {
  45387. source: "./media/characters/acouya/front.svg",
  45388. extra: 1660/1473,
  45389. bottom: 28/1688
  45390. }
  45391. },
  45392. },
  45393. [
  45394. {
  45395. name: "Normal",
  45396. height: math.unit(9, "feet"),
  45397. default: true
  45398. },
  45399. ]
  45400. ))
  45401. characterMakers.push(() => makeCharacter(
  45402. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45403. {
  45404. front: {
  45405. height: math.unit(5 + 6/12, "feet"),
  45406. weight: math.unit(195, "lb"),
  45407. name: "Front",
  45408. image: {
  45409. source: "./media/characters/vant/front.svg",
  45410. extra: 1396/1320,
  45411. bottom: 20/1416
  45412. }
  45413. },
  45414. back: {
  45415. height: math.unit(5 + 6/12, "feet"),
  45416. weight: math.unit(195, "lb"),
  45417. name: "Back",
  45418. image: {
  45419. source: "./media/characters/vant/back.svg",
  45420. extra: 1396/1320,
  45421. bottom: 20/1416
  45422. }
  45423. },
  45424. maw: {
  45425. height: math.unit(0.75, "feet"),
  45426. name: "Maw",
  45427. image: {
  45428. source: "./media/characters/vant/maw.svg"
  45429. }
  45430. },
  45431. paw: {
  45432. height: math.unit(1.07, "feet"),
  45433. name: "Paw",
  45434. image: {
  45435. source: "./media/characters/vant/paw.svg"
  45436. }
  45437. },
  45438. },
  45439. [
  45440. {
  45441. name: "Micro",
  45442. height: math.unit(0.25, "inches")
  45443. },
  45444. {
  45445. name: "Normal",
  45446. height: math.unit(5 + 6/12, "feet"),
  45447. default: true
  45448. },
  45449. {
  45450. name: "Macro",
  45451. height: math.unit(75, "feet")
  45452. },
  45453. ]
  45454. ))
  45455. characterMakers.push(() => makeCharacter(
  45456. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45457. {
  45458. front: {
  45459. height: math.unit(30, "meters"),
  45460. weight: math.unit(363, "tons"),
  45461. name: "Front",
  45462. image: {
  45463. source: "./media/characters/ahra/front.svg",
  45464. extra: 1914/1814,
  45465. bottom: 46/1960
  45466. }
  45467. },
  45468. },
  45469. [
  45470. {
  45471. name: "Macro",
  45472. height: math.unit(30, "meters"),
  45473. default: true
  45474. },
  45475. ]
  45476. ))
  45477. characterMakers.push(() => makeCharacter(
  45478. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45479. {
  45480. undressed: {
  45481. height: math.unit(2, "m"),
  45482. weight: math.unit(250, "kg"),
  45483. name: "Undressed",
  45484. image: {
  45485. source: "./media/characters/coriander/undressed.svg",
  45486. extra: 1757/1606,
  45487. bottom: 107/1864
  45488. }
  45489. },
  45490. dressed: {
  45491. height: math.unit(2, "m"),
  45492. weight: math.unit(250, "kg"),
  45493. name: "Dressed",
  45494. image: {
  45495. source: "./media/characters/coriander/dressed.svg",
  45496. extra: 1757/1606,
  45497. bottom: 107/1864
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "Normal",
  45504. height: math.unit(4, "meters"),
  45505. default: true
  45506. },
  45507. {
  45508. name: "XL",
  45509. height: math.unit(6, "meters")
  45510. },
  45511. {
  45512. name: "XXL",
  45513. height: math.unit(8, "meters")
  45514. },
  45515. ]
  45516. ))
  45517. characterMakers.push(() => makeCharacter(
  45518. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45519. {
  45520. front: {
  45521. height: math.unit(6, "feet"),
  45522. name: "Front",
  45523. image: {
  45524. source: "./media/characters/syrinx/front.svg",
  45525. extra: 1557/1259,
  45526. bottom: 171/1728
  45527. }
  45528. },
  45529. },
  45530. [
  45531. {
  45532. name: "Normal",
  45533. height: math.unit(6 + 3/12, "feet"),
  45534. default: true
  45535. },
  45536. ]
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45540. {
  45541. front: {
  45542. height: math.unit(11 + 6/12, "feet"),
  45543. weight: math.unit(1.5, "tons"),
  45544. name: "Front",
  45545. image: {
  45546. source: "./media/characters/bor/front.svg",
  45547. extra: 1189/1109,
  45548. bottom: 170/1359
  45549. }
  45550. },
  45551. },
  45552. [
  45553. {
  45554. name: "Normal",
  45555. height: math.unit(11 + 6/12, "feet"),
  45556. default: true
  45557. },
  45558. {
  45559. name: "Macro",
  45560. height: math.unit(32 + 9/12, "feet")
  45561. },
  45562. ]
  45563. ))
  45564. characterMakers.push(() => makeCharacter(
  45565. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45566. {
  45567. anthro: {
  45568. height: math.unit(9, "feet"),
  45569. weight: math.unit(2076, "lb"),
  45570. name: "Anthro",
  45571. image: {
  45572. source: "./media/characters/abacus/anthro.svg",
  45573. extra: 1540/1494,
  45574. bottom: 233/1773
  45575. }
  45576. },
  45577. pigeon: {
  45578. height: math.unit(1, "feet"),
  45579. name: "Pigeon",
  45580. image: {
  45581. source: "./media/characters/abacus/pigeon.svg",
  45582. extra: 528/525,
  45583. bottom: 46/574
  45584. }
  45585. },
  45586. },
  45587. [
  45588. {
  45589. name: "Normal",
  45590. height: math.unit(9, "feet"),
  45591. default: true
  45592. },
  45593. ]
  45594. ))
  45595. characterMakers.push(() => makeCharacter(
  45596. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45597. {
  45598. side: {
  45599. height: math.unit(6, "feet"),
  45600. name: "Side",
  45601. image: {
  45602. source: "./media/characters/delkhan/side.svg",
  45603. extra: 1884/1786,
  45604. bottom: 308/2192
  45605. }
  45606. },
  45607. head: {
  45608. height: math.unit(3.38, "feet"),
  45609. name: "Head",
  45610. image: {
  45611. source: "./media/characters/delkhan/head.svg"
  45612. }
  45613. },
  45614. },
  45615. [
  45616. {
  45617. name: "Normal",
  45618. height: math.unit(72, "feet"),
  45619. default: true
  45620. },
  45621. {
  45622. name: "Giant",
  45623. height: math.unit(172, "feet")
  45624. },
  45625. ]
  45626. ))
  45627. characterMakers.push(() => makeCharacter(
  45628. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45629. {
  45630. standing: {
  45631. height: math.unit(6, "feet"),
  45632. name: "Standing",
  45633. image: {
  45634. source: "./media/characters/euchidat/standing.svg",
  45635. extra: 1612/1553,
  45636. bottom: 116/1728
  45637. }
  45638. },
  45639. leaning: {
  45640. height: math.unit(6, "feet"),
  45641. name: "Leaning",
  45642. image: {
  45643. source: "./media/characters/euchidat/leaning.svg",
  45644. extra: 1719/1674,
  45645. bottom: 27/1746
  45646. }
  45647. },
  45648. },
  45649. [
  45650. {
  45651. name: "Normal",
  45652. height: math.unit(175, "feet"),
  45653. default: true
  45654. },
  45655. {
  45656. name: "Megamacro",
  45657. height: math.unit(190, "miles")
  45658. },
  45659. {
  45660. name: "Gigamacro",
  45661. height: math.unit(190000, "miles")
  45662. },
  45663. ]
  45664. ))
  45665. characterMakers.push(() => makeCharacter(
  45666. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45667. {
  45668. front: {
  45669. height: math.unit(6, "feet"),
  45670. weight: math.unit(150, "lb"),
  45671. name: "Front",
  45672. image: {
  45673. source: "./media/characters/rebecca-stack/front.svg",
  45674. extra: 1256/1201,
  45675. bottom: 18/1274
  45676. }
  45677. },
  45678. },
  45679. [
  45680. {
  45681. name: "Normal",
  45682. height: math.unit(5 + 8/12, "feet"),
  45683. default: true
  45684. },
  45685. {
  45686. name: "Demolitionist",
  45687. height: math.unit(200, "feet")
  45688. },
  45689. {
  45690. name: "Out of Control",
  45691. height: math.unit(2, "miles")
  45692. },
  45693. {
  45694. name: "Giga",
  45695. height: math.unit(7200, "miles")
  45696. },
  45697. ]
  45698. ))
  45699. characterMakers.push(() => makeCharacter(
  45700. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45701. {
  45702. front: {
  45703. height: math.unit(6, "feet"),
  45704. weight: math.unit(150, "lb"),
  45705. name: "Front",
  45706. image: {
  45707. source: "./media/characters/jenny-cartwright/front.svg",
  45708. extra: 1384/1376,
  45709. bottom: 58/1442
  45710. }
  45711. },
  45712. },
  45713. [
  45714. {
  45715. name: "Normal",
  45716. height: math.unit(6 + 7/12, "feet"),
  45717. default: true
  45718. },
  45719. {
  45720. name: "Librarian",
  45721. height: math.unit(55, "feet")
  45722. },
  45723. {
  45724. name: "Sightseer",
  45725. height: math.unit(50, "miles")
  45726. },
  45727. {
  45728. name: "Giga",
  45729. height: math.unit(30000, "miles")
  45730. },
  45731. ]
  45732. ))
  45733. characterMakers.push(() => makeCharacter(
  45734. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45735. {
  45736. nude: {
  45737. height: math.unit(8, "feet"),
  45738. weight: math.unit(225, "lb"),
  45739. name: "Nude",
  45740. image: {
  45741. source: "./media/characters/marvy/nude.svg",
  45742. extra: 1900/1683,
  45743. bottom: 89/1989
  45744. }
  45745. },
  45746. dressed: {
  45747. height: math.unit(8, "feet"),
  45748. weight: math.unit(225, "lb"),
  45749. name: "Dressed",
  45750. image: {
  45751. source: "./media/characters/marvy/dressed.svg",
  45752. extra: 1900/1683,
  45753. bottom: 89/1989
  45754. }
  45755. },
  45756. head: {
  45757. height: math.unit(2.85, "feet"),
  45758. name: "Head",
  45759. image: {
  45760. source: "./media/characters/marvy/head.svg"
  45761. }
  45762. },
  45763. },
  45764. [
  45765. {
  45766. name: "Normal",
  45767. height: math.unit(8, "feet"),
  45768. default: true
  45769. },
  45770. ]
  45771. ))
  45772. characterMakers.push(() => makeCharacter(
  45773. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45774. {
  45775. front: {
  45776. height: math.unit(8, "feet"),
  45777. weight: math.unit(250, "lb"),
  45778. name: "Front",
  45779. image: {
  45780. source: "./media/characters/leah/front.svg",
  45781. extra: 1257/1149,
  45782. bottom: 109/1366
  45783. }
  45784. },
  45785. },
  45786. [
  45787. {
  45788. name: "Normal",
  45789. height: math.unit(8, "feet"),
  45790. default: true
  45791. },
  45792. {
  45793. name: "Minimacro",
  45794. height: math.unit(40, "feet")
  45795. },
  45796. {
  45797. name: "Macro",
  45798. height: math.unit(124, "feet")
  45799. },
  45800. {
  45801. name: "Megamacro",
  45802. height: math.unit(850, "feet")
  45803. },
  45804. ]
  45805. ))
  45806. characterMakers.push(() => makeCharacter(
  45807. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45808. {
  45809. side: {
  45810. height: math.unit(13 + 6/12, "feet"),
  45811. weight: math.unit(3200, "lb"),
  45812. name: "Side",
  45813. image: {
  45814. source: "./media/characters/alvir/side.svg",
  45815. extra: 896/589,
  45816. bottom: 26/922
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Normal",
  45823. height: math.unit(13 + 6/12, "feet"),
  45824. default: true
  45825. },
  45826. ]
  45827. ))
  45828. characterMakers.push(() => makeCharacter(
  45829. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45830. {
  45831. front: {
  45832. height: math.unit(5 + 4/12, "feet"),
  45833. weight: math.unit(236, "lb"),
  45834. name: "Front",
  45835. image: {
  45836. source: "./media/characters/zaina-khalil/front.svg",
  45837. extra: 1533/1485,
  45838. bottom: 94/1627
  45839. }
  45840. },
  45841. side: {
  45842. height: math.unit(5 + 4/12, "feet"),
  45843. weight: math.unit(236, "lb"),
  45844. name: "Side",
  45845. image: {
  45846. source: "./media/characters/zaina-khalil/side.svg",
  45847. extra: 1537/1498,
  45848. bottom: 66/1603
  45849. }
  45850. },
  45851. back: {
  45852. height: math.unit(5 + 4/12, "feet"),
  45853. weight: math.unit(236, "lb"),
  45854. name: "Back",
  45855. image: {
  45856. source: "./media/characters/zaina-khalil/back.svg",
  45857. extra: 1546/1494,
  45858. bottom: 89/1635
  45859. }
  45860. },
  45861. },
  45862. [
  45863. {
  45864. name: "Normal",
  45865. height: math.unit(5 + 4/12, "feet"),
  45866. default: true
  45867. },
  45868. ]
  45869. ))
  45870. characterMakers.push(() => makeCharacter(
  45871. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45872. {
  45873. side: {
  45874. height: math.unit(12, "feet"),
  45875. weight: math.unit(4000, "lb"),
  45876. name: "Side",
  45877. image: {
  45878. source: "./media/characters/terry/side.svg",
  45879. extra: 1518/1439,
  45880. bottom: 149/1667
  45881. }
  45882. },
  45883. },
  45884. [
  45885. {
  45886. name: "Normal",
  45887. height: math.unit(12, "feet"),
  45888. default: true
  45889. },
  45890. ]
  45891. ))
  45892. characterMakers.push(() => makeCharacter(
  45893. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45894. {
  45895. front: {
  45896. height: math.unit(12, "feet"),
  45897. weight: math.unit(1500, "lb"),
  45898. name: "Front",
  45899. image: {
  45900. source: "./media/characters/kahea/front.svg",
  45901. extra: 1722/1617,
  45902. bottom: 179/1901
  45903. }
  45904. },
  45905. },
  45906. [
  45907. {
  45908. name: "Normal",
  45909. height: math.unit(12, "feet"),
  45910. default: true
  45911. },
  45912. ]
  45913. ))
  45914. characterMakers.push(() => makeCharacter(
  45915. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45916. {
  45917. demonFront: {
  45918. height: math.unit(36, "feet"),
  45919. name: "Front",
  45920. image: {
  45921. source: "./media/characters/alex-xuria/demon-front.svg",
  45922. extra: 1705/1673,
  45923. bottom: 198/1903
  45924. },
  45925. form: "demon",
  45926. default: true
  45927. },
  45928. demonBack: {
  45929. height: math.unit(36, "feet"),
  45930. name: "Back",
  45931. image: {
  45932. source: "./media/characters/alex-xuria/demon-back.svg",
  45933. extra: 1725/1693,
  45934. bottom: 70/1795
  45935. },
  45936. form: "demon"
  45937. },
  45938. demonHead: {
  45939. height: math.unit(2.14, "meters"),
  45940. name: "Head",
  45941. image: {
  45942. source: "./media/characters/alex-xuria/demon-head.svg"
  45943. },
  45944. form: "demon"
  45945. },
  45946. demonHand: {
  45947. height: math.unit(1.61, "meters"),
  45948. name: "Hand",
  45949. image: {
  45950. source: "./media/characters/alex-xuria/demon-hand.svg"
  45951. },
  45952. form: "demon"
  45953. },
  45954. demonPaw: {
  45955. height: math.unit(1.35, "meters"),
  45956. name: "Paw",
  45957. image: {
  45958. source: "./media/characters/alex-xuria/demon-paw.svg"
  45959. },
  45960. form: "demon"
  45961. },
  45962. demonFoot: {
  45963. height: math.unit(2.2, "meters"),
  45964. name: "Foot",
  45965. image: {
  45966. source: "./media/characters/alex-xuria/demon-foot.svg"
  45967. },
  45968. form: "demon"
  45969. },
  45970. demonCock: {
  45971. height: math.unit(1.74, "meters"),
  45972. name: "Cock",
  45973. image: {
  45974. source: "./media/characters/alex-xuria/demon-cock.svg"
  45975. },
  45976. form: "demon"
  45977. },
  45978. demonTailClosed: {
  45979. height: math.unit(1.47, "meters"),
  45980. name: "Tail (Closed)",
  45981. image: {
  45982. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45983. },
  45984. form: "demon"
  45985. },
  45986. demonTailOpen: {
  45987. height: math.unit(2.85, "meters"),
  45988. name: "Tail (Open)",
  45989. image: {
  45990. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45991. },
  45992. form: "demon"
  45993. },
  45994. incubusFront: {
  45995. height: math.unit(12, "feet"),
  45996. name: "Front",
  45997. image: {
  45998. source: "./media/characters/alex-xuria/incubus-front.svg",
  45999. extra: 1754/1677,
  46000. bottom: 125/1879
  46001. },
  46002. form: "incubus",
  46003. default: true
  46004. },
  46005. incubusBack: {
  46006. height: math.unit(12, "feet"),
  46007. name: "Back",
  46008. image: {
  46009. source: "./media/characters/alex-xuria/incubus-back.svg",
  46010. extra: 1702/1647,
  46011. bottom: 30/1732
  46012. },
  46013. form: "incubus"
  46014. },
  46015. incubusHead: {
  46016. height: math.unit(3.45, "feet"),
  46017. name: "Head",
  46018. image: {
  46019. source: "./media/characters/alex-xuria/incubus-head.svg"
  46020. },
  46021. form: "incubus"
  46022. },
  46023. rabbitFront: {
  46024. height: math.unit(6, "feet"),
  46025. name: "Front",
  46026. image: {
  46027. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46028. extra: 1369/1349,
  46029. bottom: 45/1414
  46030. },
  46031. form: "rabbit",
  46032. default: true
  46033. },
  46034. rabbitSide: {
  46035. height: math.unit(6, "feet"),
  46036. name: "Side",
  46037. image: {
  46038. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46039. extra: 1370/1356,
  46040. bottom: 37/1407
  46041. },
  46042. form: "rabbit"
  46043. },
  46044. rabbitBack: {
  46045. height: math.unit(6, "feet"),
  46046. name: "Back",
  46047. image: {
  46048. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46049. extra: 1375/1358,
  46050. bottom: 43/1418
  46051. },
  46052. form: "rabbit"
  46053. },
  46054. },
  46055. [
  46056. {
  46057. name: "Normal",
  46058. height: math.unit(6, "feet"),
  46059. default: true,
  46060. form: "rabbit"
  46061. },
  46062. {
  46063. name: "Incubus",
  46064. height: math.unit(12, "feet"),
  46065. default: true,
  46066. form: "incubus"
  46067. },
  46068. {
  46069. name: "Demon",
  46070. height: math.unit(36, "feet"),
  46071. default: true,
  46072. form: "demon"
  46073. }
  46074. ],
  46075. {
  46076. "demon": {
  46077. name: "Demon",
  46078. default: true
  46079. },
  46080. "incubus": {
  46081. name: "Incubus",
  46082. },
  46083. "rabbit": {
  46084. name: "Rabbit"
  46085. }
  46086. }
  46087. ))
  46088. characterMakers.push(() => makeCharacter(
  46089. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46090. {
  46091. front: {
  46092. height: math.unit(7 + 5/12, "feet"),
  46093. weight: math.unit(510, "lb"),
  46094. name: "Front",
  46095. image: {
  46096. source: "./media/characters/syrup/front.svg",
  46097. extra: 932/916,
  46098. bottom: 26/958
  46099. }
  46100. },
  46101. },
  46102. [
  46103. {
  46104. name: "Normal",
  46105. height: math.unit(7 + 5/12, "feet"),
  46106. default: true
  46107. },
  46108. {
  46109. name: "Big",
  46110. height: math.unit(50, "feet")
  46111. },
  46112. {
  46113. name: "Macro",
  46114. height: math.unit(300, "feet")
  46115. },
  46116. {
  46117. name: "Megamacro",
  46118. height: math.unit(1, "mile")
  46119. },
  46120. ]
  46121. ))
  46122. characterMakers.push(() => makeCharacter(
  46123. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46124. {
  46125. front: {
  46126. height: math.unit(6 + 9/12, "feet"),
  46127. name: "Front",
  46128. image: {
  46129. source: "./media/characters/zeimne/front.svg",
  46130. extra: 1969/1806,
  46131. bottom: 53/2022
  46132. }
  46133. },
  46134. },
  46135. [
  46136. {
  46137. name: "Normal",
  46138. height: math.unit(6 + 9/12, "feet"),
  46139. default: true
  46140. },
  46141. {
  46142. name: "Giant",
  46143. height: math.unit(550, "feet")
  46144. },
  46145. {
  46146. name: "Mega",
  46147. height: math.unit(3, "miles")
  46148. },
  46149. {
  46150. name: "Giga",
  46151. height: math.unit(250, "miles")
  46152. },
  46153. {
  46154. name: "Tera",
  46155. height: math.unit(1, "AU")
  46156. },
  46157. ]
  46158. ))
  46159. characterMakers.push(() => makeCharacter(
  46160. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46161. {
  46162. front: {
  46163. height: math.unit(5 + 2/12, "feet"),
  46164. name: "Front",
  46165. image: {
  46166. source: "./media/characters/grar/front.svg",
  46167. extra: 1331/1119,
  46168. bottom: 60/1391
  46169. }
  46170. },
  46171. back: {
  46172. height: math.unit(5 + 2/12, "feet"),
  46173. name: "Back",
  46174. image: {
  46175. source: "./media/characters/grar/back.svg",
  46176. extra: 1385/1169,
  46177. bottom: 23/1408
  46178. }
  46179. },
  46180. },
  46181. [
  46182. {
  46183. name: "Normal",
  46184. height: math.unit(5 + 2/12, "feet"),
  46185. default: true
  46186. },
  46187. ]
  46188. ))
  46189. characterMakers.push(() => makeCharacter(
  46190. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46191. {
  46192. front: {
  46193. height: math.unit(13 + 7/12, "feet"),
  46194. weight: math.unit(2200, "lb"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/endraya/front.svg",
  46198. extra: 1289/1215,
  46199. bottom: 50/1339
  46200. }
  46201. },
  46202. nude: {
  46203. height: math.unit(13 + 7/12, "feet"),
  46204. weight: math.unit(2200, "lb"),
  46205. name: "Nude",
  46206. image: {
  46207. source: "./media/characters/endraya/nude.svg",
  46208. extra: 1247/1171,
  46209. bottom: 40/1287
  46210. }
  46211. },
  46212. head: {
  46213. height: math.unit(2.6, "feet"),
  46214. name: "Head",
  46215. image: {
  46216. source: "./media/characters/endraya/head.svg"
  46217. }
  46218. },
  46219. slit: {
  46220. height: math.unit(3.4, "feet"),
  46221. name: "Slit",
  46222. image: {
  46223. source: "./media/characters/endraya/slit.svg"
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Normal",
  46230. height: math.unit(13 + 7/12, "feet"),
  46231. default: true
  46232. },
  46233. {
  46234. name: "Macro",
  46235. height: math.unit(200, "feet")
  46236. },
  46237. ]
  46238. ))
  46239. characterMakers.push(() => makeCharacter(
  46240. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46241. {
  46242. front: {
  46243. height: math.unit(1.81, "meters"),
  46244. weight: math.unit(69, "kg"),
  46245. name: "Front",
  46246. image: {
  46247. source: "./media/characters/rodryana/front.svg",
  46248. extra: 2002/1921,
  46249. bottom: 53/2055
  46250. }
  46251. },
  46252. back: {
  46253. height: math.unit(1.81, "meters"),
  46254. weight: math.unit(69, "kg"),
  46255. name: "Back",
  46256. image: {
  46257. source: "./media/characters/rodryana/back.svg",
  46258. extra: 1993/1926,
  46259. bottom: 48/2041
  46260. }
  46261. },
  46262. maw: {
  46263. height: math.unit(0.19769417475, "meters"),
  46264. name: "Maw",
  46265. image: {
  46266. source: "./media/characters/rodryana/maw.svg"
  46267. }
  46268. },
  46269. slit: {
  46270. height: math.unit(0.31631067961, "meters"),
  46271. name: "Slit",
  46272. image: {
  46273. source: "./media/characters/rodryana/slit.svg"
  46274. }
  46275. },
  46276. },
  46277. [
  46278. {
  46279. name: "Normal",
  46280. height: math.unit(1.81, "meters")
  46281. },
  46282. {
  46283. name: "Mini Macro",
  46284. height: math.unit(181, "meters")
  46285. },
  46286. {
  46287. name: "Macro",
  46288. height: math.unit(452, "meters"),
  46289. default: true
  46290. },
  46291. {
  46292. name: "Mega Macro",
  46293. height: math.unit(1.375, "km")
  46294. },
  46295. {
  46296. name: "Giga Macro",
  46297. height: math.unit(13.575, "km")
  46298. },
  46299. ]
  46300. ))
  46301. characterMakers.push(() => makeCharacter(
  46302. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46303. {
  46304. front: {
  46305. height: math.unit(6, "feet"),
  46306. weight: math.unit(1000, "lb"),
  46307. name: "Front",
  46308. image: {
  46309. source: "./media/characters/asaya/front.svg",
  46310. extra: 1460/1200,
  46311. bottom: 71/1531
  46312. }
  46313. },
  46314. },
  46315. [
  46316. {
  46317. name: "Normal",
  46318. height: math.unit(8, "km"),
  46319. default: true
  46320. },
  46321. ]
  46322. ))
  46323. characterMakers.push(() => makeCharacter(
  46324. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46325. {
  46326. front: {
  46327. height: math.unit(3.5, "meters"),
  46328. name: "Front",
  46329. image: {
  46330. source: "./media/characters/sarzu-and-israz/front.svg",
  46331. extra: 1570/1558,
  46332. bottom: 150/1720
  46333. },
  46334. },
  46335. back: {
  46336. height: math.unit(3.5, "meters"),
  46337. name: "Back",
  46338. image: {
  46339. source: "./media/characters/sarzu-and-israz/back.svg",
  46340. extra: 1523/1509,
  46341. bottom: 132/1655
  46342. },
  46343. },
  46344. frontFemale: {
  46345. height: math.unit(3.5, "meters"),
  46346. name: "Front (Female)",
  46347. image: {
  46348. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46349. extra: 1570/1558,
  46350. bottom: 150/1720
  46351. },
  46352. },
  46353. frontHerm: {
  46354. height: math.unit(3.5, "meters"),
  46355. name: "Front (Herm)",
  46356. image: {
  46357. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46358. extra: 1570/1558,
  46359. bottom: 150/1720
  46360. },
  46361. },
  46362. },
  46363. [
  46364. {
  46365. name: "Normal",
  46366. height: math.unit(3.5, "meters"),
  46367. default: true,
  46368. },
  46369. {
  46370. name: "Macro",
  46371. height: math.unit(65.5, "meters"),
  46372. },
  46373. ],
  46374. ))
  46375. characterMakers.push(() => makeCharacter(
  46376. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46377. {
  46378. front: {
  46379. height: math.unit(6, "feet"),
  46380. weight: math.unit(250, "lb"),
  46381. name: "Front",
  46382. image: {
  46383. source: "./media/characters/zenimma/front.svg",
  46384. extra: 1346/1320,
  46385. bottom: 58/1404
  46386. }
  46387. },
  46388. back: {
  46389. height: math.unit(6, "feet"),
  46390. weight: math.unit(250, "lb"),
  46391. name: "Back",
  46392. image: {
  46393. source: "./media/characters/zenimma/back.svg",
  46394. extra: 1324/1308,
  46395. bottom: 44/1368
  46396. }
  46397. },
  46398. dick: {
  46399. height: math.unit(1.44, "feet"),
  46400. name: "Dick",
  46401. image: {
  46402. source: "./media/characters/zenimma/dick.svg"
  46403. }
  46404. },
  46405. },
  46406. [
  46407. {
  46408. name: "Canon Height",
  46409. height: math.unit(66, "miles"),
  46410. default: true
  46411. },
  46412. ]
  46413. ))
  46414. characterMakers.push(() => makeCharacter(
  46415. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46416. {
  46417. nude: {
  46418. height: math.unit(6, "feet"),
  46419. weight: math.unit(150, "lb"),
  46420. name: "Nude",
  46421. image: {
  46422. source: "./media/characters/shavon/nude.svg",
  46423. extra: 1242/1096,
  46424. bottom: 98/1340
  46425. }
  46426. },
  46427. dressed: {
  46428. height: math.unit(6, "feet"),
  46429. weight: math.unit(150, "lb"),
  46430. name: "Dressed",
  46431. image: {
  46432. source: "./media/characters/shavon/dressed.svg",
  46433. extra: 1242/1096,
  46434. bottom: 98/1340
  46435. }
  46436. },
  46437. },
  46438. [
  46439. {
  46440. name: "Macro",
  46441. height: math.unit(255, "feet"),
  46442. default: true
  46443. },
  46444. ]
  46445. ))
  46446. characterMakers.push(() => makeCharacter(
  46447. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46448. {
  46449. front: {
  46450. height: math.unit(6, "feet"),
  46451. name: "Front",
  46452. image: {
  46453. source: "./media/characters/steph/front.svg",
  46454. extra: 1430/1330,
  46455. bottom: 54/1484
  46456. }
  46457. },
  46458. },
  46459. [
  46460. {
  46461. name: "Normal",
  46462. height: math.unit(6, "feet"),
  46463. default: true
  46464. },
  46465. ]
  46466. ))
  46467. characterMakers.push(() => makeCharacter(
  46468. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46469. {
  46470. front: {
  46471. height: math.unit(9, "feet"),
  46472. weight: math.unit(400, "lb"),
  46473. name: "Front",
  46474. image: {
  46475. source: "./media/characters/kil'aman/front.svg",
  46476. extra: 1210/1159,
  46477. bottom: 109/1319
  46478. }
  46479. },
  46480. head: {
  46481. height: math.unit(2.14, "feet"),
  46482. name: "Head",
  46483. image: {
  46484. source: "./media/characters/kil'aman/head.svg"
  46485. }
  46486. },
  46487. maw: {
  46488. height: math.unit(1.21, "feet"),
  46489. name: "Maw",
  46490. image: {
  46491. source: "./media/characters/kil'aman/maw.svg"
  46492. }
  46493. },
  46494. foot: {
  46495. height: math.unit(1.7, "feet"),
  46496. name: "Foot",
  46497. image: {
  46498. source: "./media/characters/kil'aman/foot.svg"
  46499. }
  46500. },
  46501. dick: {
  46502. height: math.unit(2.1, "feet"),
  46503. name: "Dick",
  46504. image: {
  46505. source: "./media/characters/kil'aman/dick.svg"
  46506. }
  46507. },
  46508. },
  46509. [
  46510. {
  46511. name: "Normal",
  46512. height: math.unit(9, "feet")
  46513. },
  46514. {
  46515. name: "Canon Height",
  46516. height: math.unit(10, "miles"),
  46517. default: true
  46518. },
  46519. {
  46520. name: "Maximum",
  46521. height: math.unit(6e9, "miles")
  46522. },
  46523. ]
  46524. ))
  46525. characterMakers.push(() => makeCharacter(
  46526. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46527. {
  46528. front: {
  46529. height: math.unit(90, "feet"),
  46530. weight: math.unit(675000, "lb"),
  46531. name: "Front",
  46532. image: {
  46533. source: "./media/characters/qadan/front.svg",
  46534. extra: 1012/1004,
  46535. bottom: 78/1090
  46536. }
  46537. },
  46538. back: {
  46539. height: math.unit(90, "feet"),
  46540. weight: math.unit(675000, "lb"),
  46541. name: "Back",
  46542. image: {
  46543. source: "./media/characters/qadan/back.svg",
  46544. extra: 1042/1031,
  46545. bottom: 55/1097
  46546. }
  46547. },
  46548. armored: {
  46549. height: math.unit(90, "feet"),
  46550. weight: math.unit(675000, "lb"),
  46551. name: "Armored",
  46552. image: {
  46553. source: "./media/characters/qadan/armored.svg",
  46554. extra: 1047/1037,
  46555. bottom: 48/1095
  46556. }
  46557. },
  46558. },
  46559. [
  46560. {
  46561. name: "Normal",
  46562. height: math.unit(90, "feet"),
  46563. default: true
  46564. },
  46565. ]
  46566. ))
  46567. characterMakers.push(() => makeCharacter(
  46568. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46569. {
  46570. front: {
  46571. height: math.unit(6, "feet"),
  46572. weight: math.unit(225, "lb"),
  46573. name: "Front",
  46574. image: {
  46575. source: "./media/characters/brooke/front.svg",
  46576. extra: 1050/1010,
  46577. bottom: 66/1116
  46578. }
  46579. },
  46580. back: {
  46581. height: math.unit(6, "feet"),
  46582. weight: math.unit(225, "lb"),
  46583. name: "Back",
  46584. image: {
  46585. source: "./media/characters/brooke/back.svg",
  46586. extra: 1053/1013,
  46587. bottom: 41/1094
  46588. }
  46589. },
  46590. dressed: {
  46591. height: math.unit(6, "feet"),
  46592. weight: math.unit(225, "lb"),
  46593. name: "Dressed",
  46594. image: {
  46595. source: "./media/characters/brooke/dressed.svg",
  46596. extra: 1050/1010,
  46597. bottom: 66/1116
  46598. }
  46599. },
  46600. },
  46601. [
  46602. {
  46603. name: "Canon Height",
  46604. height: math.unit(500, "miles"),
  46605. default: true
  46606. },
  46607. ]
  46608. ))
  46609. characterMakers.push(() => makeCharacter(
  46610. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46611. {
  46612. front: {
  46613. height: math.unit(6 + 2/12, "feet"),
  46614. weight: math.unit(210, "lb"),
  46615. name: "Front",
  46616. image: {
  46617. source: "./media/characters/wubs/front.svg",
  46618. extra: 1345/1325,
  46619. bottom: 70/1415
  46620. }
  46621. },
  46622. back: {
  46623. height: math.unit(6 + 2/12, "feet"),
  46624. weight: math.unit(210, "lb"),
  46625. name: "Back",
  46626. image: {
  46627. source: "./media/characters/wubs/back.svg",
  46628. extra: 1296/1275,
  46629. bottom: 58/1354
  46630. }
  46631. },
  46632. },
  46633. [
  46634. {
  46635. name: "Normal",
  46636. height: math.unit(6 + 2/12, "feet"),
  46637. default: true
  46638. },
  46639. {
  46640. name: "Macro",
  46641. height: math.unit(1000, "feet")
  46642. },
  46643. {
  46644. name: "Megamacro",
  46645. height: math.unit(1, "mile")
  46646. },
  46647. ]
  46648. ))
  46649. characterMakers.push(() => makeCharacter(
  46650. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46651. {
  46652. front: {
  46653. height: math.unit(4, "feet"),
  46654. weight: math.unit(120, "lb"),
  46655. name: "Front",
  46656. image: {
  46657. source: "./media/characters/blue/front.svg",
  46658. extra: 1636/1525,
  46659. bottom: 43/1679
  46660. }
  46661. },
  46662. back: {
  46663. height: math.unit(4, "feet"),
  46664. weight: math.unit(120, "lb"),
  46665. name: "Back",
  46666. image: {
  46667. source: "./media/characters/blue/back.svg",
  46668. extra: 1660/1560,
  46669. bottom: 57/1717
  46670. }
  46671. },
  46672. paws: {
  46673. height: math.unit(0.826, "feet"),
  46674. name: "Paws",
  46675. image: {
  46676. source: "./media/characters/blue/paws.svg"
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Micro",
  46683. height: math.unit(3, "inches")
  46684. },
  46685. {
  46686. name: "Normal",
  46687. height: math.unit(4, "feet"),
  46688. default: true
  46689. },
  46690. {
  46691. name: "Femenine Form",
  46692. height: math.unit(14, "feet")
  46693. },
  46694. {
  46695. name: "Werebat Form",
  46696. height: math.unit(18, "feet")
  46697. },
  46698. ]
  46699. ))
  46700. characterMakers.push(() => makeCharacter(
  46701. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46702. {
  46703. female: {
  46704. height: math.unit(7 + 4/12, "feet"),
  46705. weight: math.unit(243, "lb"),
  46706. name: "Female",
  46707. image: {
  46708. source: "./media/characters/kaya/female.svg",
  46709. extra: 975/898,
  46710. bottom: 34/1009
  46711. }
  46712. },
  46713. herm: {
  46714. height: math.unit(7 + 4/12, "feet"),
  46715. weight: math.unit(243, "lb"),
  46716. name: "Herm",
  46717. image: {
  46718. source: "./media/characters/kaya/herm.svg",
  46719. extra: 975/898,
  46720. bottom: 34/1009
  46721. }
  46722. },
  46723. },
  46724. [
  46725. {
  46726. name: "Normal",
  46727. height: math.unit(7 + 4/12, "feet"),
  46728. default: true
  46729. },
  46730. ]
  46731. ))
  46732. characterMakers.push(() => makeCharacter(
  46733. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46734. {
  46735. female: {
  46736. height: math.unit(9 + 4/12, "feet"),
  46737. weight: math.unit(398, "lb"),
  46738. name: "Female",
  46739. image: {
  46740. source: "./media/characters/kassandra/female.svg",
  46741. extra: 908/839,
  46742. bottom: 61/969
  46743. }
  46744. },
  46745. intersex: {
  46746. height: math.unit(9 + 4/12, "feet"),
  46747. weight: math.unit(398, "lb"),
  46748. name: "Intersex",
  46749. image: {
  46750. source: "./media/characters/kassandra/intersex.svg",
  46751. extra: 908/839,
  46752. bottom: 61/969
  46753. }
  46754. },
  46755. },
  46756. [
  46757. {
  46758. name: "Normal",
  46759. height: math.unit(9 + 4/12, "feet"),
  46760. default: true
  46761. },
  46762. ]
  46763. ))
  46764. characterMakers.push(() => makeCharacter(
  46765. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46766. {
  46767. front: {
  46768. height: math.unit(3, "meters"),
  46769. name: "Front",
  46770. image: {
  46771. source: "./media/characters/amy/front.svg",
  46772. extra: 1380/1343,
  46773. bottom: 70/1450
  46774. }
  46775. },
  46776. back: {
  46777. height: math.unit(3, "meters"),
  46778. name: "Back",
  46779. image: {
  46780. source: "./media/characters/amy/back.svg",
  46781. extra: 1380/1347,
  46782. bottom: 66/1446
  46783. }
  46784. },
  46785. },
  46786. [
  46787. {
  46788. name: "Normal",
  46789. height: math.unit(3, "meters"),
  46790. default: true
  46791. },
  46792. ]
  46793. ))
  46794. characterMakers.push(() => makeCharacter(
  46795. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46796. {
  46797. side: {
  46798. height: math.unit(47, "cm"),
  46799. weight: math.unit(10.8, "kg"),
  46800. name: "Side",
  46801. image: {
  46802. source: "./media/characters/alphaschakal/side.svg",
  46803. extra: 1058/568,
  46804. bottom: 62/1120
  46805. }
  46806. },
  46807. back: {
  46808. height: math.unit(78, "cm"),
  46809. weight: math.unit(10.8, "kg"),
  46810. name: "Back",
  46811. image: {
  46812. source: "./media/characters/alphaschakal/back.svg",
  46813. extra: 1102/942,
  46814. bottom: 185/1287
  46815. }
  46816. },
  46817. head: {
  46818. height: math.unit(28, "cm"),
  46819. name: "Head",
  46820. image: {
  46821. source: "./media/characters/alphaschakal/head.svg",
  46822. extra: 696/508,
  46823. bottom: 0/696
  46824. }
  46825. },
  46826. paw: {
  46827. height: math.unit(16, "cm"),
  46828. name: "Paw",
  46829. image: {
  46830. source: "./media/characters/alphaschakal/paw.svg"
  46831. }
  46832. },
  46833. },
  46834. [
  46835. {
  46836. name: "Normal",
  46837. height: math.unit(47, "cm"),
  46838. default: true
  46839. },
  46840. {
  46841. name: "Macro",
  46842. height: math.unit(340, "cm")
  46843. },
  46844. ]
  46845. ))
  46846. characterMakers.push(() => makeCharacter(
  46847. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46848. {
  46849. front: {
  46850. height: math.unit(36, "earths"),
  46851. name: "Front",
  46852. image: {
  46853. source: "./media/characters/ecobyss/front.svg",
  46854. extra: 1282/1215,
  46855. bottom: 11/1293
  46856. }
  46857. },
  46858. back: {
  46859. height: math.unit(36, "earths"),
  46860. name: "Back",
  46861. image: {
  46862. source: "./media/characters/ecobyss/back.svg",
  46863. extra: 1291/1222,
  46864. bottom: 8/1299
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Normal",
  46871. height: math.unit(36, "earths"),
  46872. default: true
  46873. },
  46874. ]
  46875. ))
  46876. characterMakers.push(() => makeCharacter(
  46877. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46878. {
  46879. front: {
  46880. height: math.unit(12, "feet"),
  46881. name: "Front",
  46882. image: {
  46883. source: "./media/characters/vasuk/front.svg",
  46884. extra: 1326/1207,
  46885. bottom: 64/1390
  46886. }
  46887. },
  46888. },
  46889. [
  46890. {
  46891. name: "Normal",
  46892. height: math.unit(12, "feet"),
  46893. default: true
  46894. },
  46895. ]
  46896. ))
  46897. characterMakers.push(() => makeCharacter(
  46898. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46899. {
  46900. side: {
  46901. height: math.unit(100, "feet"),
  46902. name: "Side",
  46903. image: {
  46904. source: "./media/characters/linneaus/side.svg",
  46905. extra: 987/807,
  46906. bottom: 47/1034
  46907. }
  46908. },
  46909. },
  46910. [
  46911. {
  46912. name: "Macro",
  46913. height: math.unit(100, "feet"),
  46914. default: true
  46915. },
  46916. ]
  46917. ))
  46918. characterMakers.push(() => makeCharacter(
  46919. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46920. {
  46921. front: {
  46922. height: math.unit(8, "feet"),
  46923. weight: math.unit(1200, "lb"),
  46924. name: "Front",
  46925. image: {
  46926. source: "./media/characters/nyterious-daligdig/front.svg",
  46927. extra: 1284/1094,
  46928. bottom: 84/1368
  46929. }
  46930. },
  46931. back: {
  46932. height: math.unit(8, "feet"),
  46933. weight: math.unit(1200, "lb"),
  46934. name: "Back",
  46935. image: {
  46936. source: "./media/characters/nyterious-daligdig/back.svg",
  46937. extra: 1301/1121,
  46938. bottom: 129/1430
  46939. }
  46940. },
  46941. mouth: {
  46942. height: math.unit(1.464, "feet"),
  46943. name: "Mouth",
  46944. image: {
  46945. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46946. }
  46947. },
  46948. },
  46949. [
  46950. {
  46951. name: "Small",
  46952. height: math.unit(8, "feet"),
  46953. default: true
  46954. },
  46955. {
  46956. name: "Normal",
  46957. height: math.unit(15, "feet")
  46958. },
  46959. {
  46960. name: "Macro",
  46961. height: math.unit(90, "feet")
  46962. },
  46963. ]
  46964. ))
  46965. characterMakers.push(() => makeCharacter(
  46966. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46967. {
  46968. front: {
  46969. height: math.unit(7 + 4/12, "feet"),
  46970. weight: math.unit(252, "lb"),
  46971. name: "Front",
  46972. image: {
  46973. source: "./media/characters/bandel/front.svg",
  46974. extra: 1946/1775,
  46975. bottom: 26/1972
  46976. }
  46977. },
  46978. back: {
  46979. height: math.unit(7 + 4/12, "feet"),
  46980. weight: math.unit(252, "lb"),
  46981. name: "Back",
  46982. image: {
  46983. source: "./media/characters/bandel/back.svg",
  46984. extra: 1940/1770,
  46985. bottom: 25/1965
  46986. }
  46987. },
  46988. maw: {
  46989. height: math.unit(2.15, "feet"),
  46990. name: "Maw",
  46991. image: {
  46992. source: "./media/characters/bandel/maw.svg"
  46993. }
  46994. },
  46995. stomach: {
  46996. height: math.unit(1.95, "feet"),
  46997. name: "Stomach",
  46998. image: {
  46999. source: "./media/characters/bandel/stomach.svg"
  47000. }
  47001. },
  47002. },
  47003. [
  47004. {
  47005. name: "Normal",
  47006. height: math.unit(7 + 4/12, "feet"),
  47007. default: true
  47008. },
  47009. ]
  47010. ))
  47011. characterMakers.push(() => makeCharacter(
  47012. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47013. {
  47014. front: {
  47015. height: math.unit(10 + 5/12, "feet"),
  47016. weight: math.unit(773.5, "kg"),
  47017. name: "Front",
  47018. image: {
  47019. source: "./media/characters/zed/front.svg",
  47020. extra: 987/941,
  47021. bottom: 52/1039
  47022. }
  47023. },
  47024. },
  47025. [
  47026. {
  47027. name: "Short",
  47028. height: math.unit(5 + 4/12, "feet")
  47029. },
  47030. {
  47031. name: "Average",
  47032. height: math.unit(10 + 5/12, "feet"),
  47033. default: true
  47034. },
  47035. {
  47036. name: "Mini-Macro",
  47037. height: math.unit(24 + 9/12, "feet")
  47038. },
  47039. {
  47040. name: "Macro",
  47041. height: math.unit(249, "feet")
  47042. },
  47043. {
  47044. name: "Mega-Macro",
  47045. height: math.unit(12490, "feet")
  47046. },
  47047. {
  47048. name: "Giga-Macro",
  47049. height: math.unit(24.9, "miles")
  47050. },
  47051. {
  47052. name: "Tera-Macro",
  47053. height: math.unit(24900, "miles")
  47054. },
  47055. {
  47056. name: "Cosmic Scale",
  47057. height: math.unit(38.9, "lightyears")
  47058. },
  47059. {
  47060. name: "Universal Scale",
  47061. height: math.unit(138e12, "lightyears")
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(1561, "inches"),
  47070. name: "Front",
  47071. image: {
  47072. source: "./media/characters/ivan/front.svg",
  47073. extra: 1126/1071,
  47074. bottom: 26/1152
  47075. }
  47076. },
  47077. back: {
  47078. height: math.unit(1561, "inches"),
  47079. name: "Back",
  47080. image: {
  47081. source: "./media/characters/ivan/back.svg",
  47082. extra: 1134/1079,
  47083. bottom: 30/1164
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Normal",
  47090. height: math.unit(1561, "inches"),
  47091. default: true
  47092. },
  47093. ]
  47094. ))
  47095. characterMakers.push(() => makeCharacter(
  47096. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47097. {
  47098. front: {
  47099. height: math.unit(5 + 7/12, "feet"),
  47100. weight: math.unit(150, "lb"),
  47101. name: "Front",
  47102. image: {
  47103. source: "./media/characters/robin-arctic-hare/front.svg",
  47104. extra: 1148/974,
  47105. bottom: 20/1168
  47106. }
  47107. },
  47108. },
  47109. [
  47110. {
  47111. name: "Normal",
  47112. height: math.unit(5 + 7/12, "feet"),
  47113. default: true
  47114. },
  47115. ]
  47116. ))
  47117. characterMakers.push(() => makeCharacter(
  47118. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47119. {
  47120. side: {
  47121. height: math.unit(5, "feet"),
  47122. name: "Side",
  47123. image: {
  47124. source: "./media/characters/birch/side.svg",
  47125. extra: 985/796,
  47126. bottom: 111/1096
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Normal",
  47133. height: math.unit(5, "feet"),
  47134. default: true
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47140. {
  47141. front: {
  47142. height: math.unit(4, "feet"),
  47143. name: "Front",
  47144. image: {
  47145. source: "./media/characters/rasp/front.svg",
  47146. extra: 561/478,
  47147. bottom: 74/635
  47148. }
  47149. },
  47150. },
  47151. [
  47152. {
  47153. name: "Normal",
  47154. height: math.unit(4, "feet"),
  47155. default: true
  47156. },
  47157. ]
  47158. ))
  47159. characterMakers.push(() => makeCharacter(
  47160. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47161. {
  47162. front: {
  47163. height: math.unit(4 + 6/12, "feet"),
  47164. name: "Front",
  47165. image: {
  47166. source: "./media/characters/agatha/front.svg",
  47167. extra: 947/933,
  47168. bottom: 42/989
  47169. }
  47170. },
  47171. back: {
  47172. height: math.unit(4 + 6/12, "feet"),
  47173. name: "Back",
  47174. image: {
  47175. source: "./media/characters/agatha/back.svg",
  47176. extra: 935/922,
  47177. bottom: 48/983
  47178. }
  47179. },
  47180. },
  47181. [
  47182. {
  47183. name: "Normal",
  47184. height: math.unit(4 + 6 /12, "feet"),
  47185. default: true
  47186. },
  47187. {
  47188. name: "Max Size",
  47189. height: math.unit(500, "feet")
  47190. },
  47191. ]
  47192. ))
  47193. characterMakers.push(() => makeCharacter(
  47194. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47195. {
  47196. side: {
  47197. height: math.unit(30, "feet"),
  47198. name: "Side",
  47199. image: {
  47200. source: "./media/characters/roggy/side.svg",
  47201. extra: 909/643,
  47202. bottom: 63/972
  47203. }
  47204. },
  47205. lounging: {
  47206. height: math.unit(20, "feet"),
  47207. name: "Lounging",
  47208. image: {
  47209. source: "./media/characters/roggy/lounging.svg",
  47210. extra: 643/479,
  47211. bottom: 145/788
  47212. }
  47213. },
  47214. handpaw: {
  47215. height: math.unit(13.1, "feet"),
  47216. name: "Handpaw",
  47217. image: {
  47218. source: "./media/characters/roggy/handpaw.svg"
  47219. }
  47220. },
  47221. footpaw: {
  47222. height: math.unit(15.8, "feet"),
  47223. name: "Footpaw",
  47224. image: {
  47225. source: "./media/characters/roggy/footpaw.svg"
  47226. }
  47227. },
  47228. },
  47229. [
  47230. {
  47231. name: "Menacing",
  47232. height: math.unit(30, "feet"),
  47233. default: true
  47234. },
  47235. ]
  47236. ))
  47237. characterMakers.push(() => makeCharacter(
  47238. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47239. {
  47240. front: {
  47241. height: math.unit(5 + 7/12, "feet"),
  47242. weight: math.unit(135, "lb"),
  47243. name: "Front",
  47244. image: {
  47245. source: "./media/characters/naomi/front.svg",
  47246. extra: 1209/1154,
  47247. bottom: 129/1338
  47248. }
  47249. },
  47250. back: {
  47251. height: math.unit(5 + 7/12, "feet"),
  47252. weight: math.unit(135, "lb"),
  47253. name: "Back",
  47254. image: {
  47255. source: "./media/characters/naomi/back.svg",
  47256. extra: 1252/1190,
  47257. bottom: 23/1275
  47258. }
  47259. },
  47260. },
  47261. [
  47262. {
  47263. name: "Normal",
  47264. height: math.unit(5 + 7 /12, "feet"),
  47265. default: true
  47266. },
  47267. ]
  47268. ))
  47269. characterMakers.push(() => makeCharacter(
  47270. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47271. {
  47272. side: {
  47273. height: math.unit(35, "meters"),
  47274. name: "Side",
  47275. image: {
  47276. source: "./media/characters/kimpi/side.svg",
  47277. extra: 419/382,
  47278. bottom: 63/482
  47279. }
  47280. },
  47281. hand: {
  47282. height: math.unit(8.96, "meters"),
  47283. name: "Hand",
  47284. image: {
  47285. source: "./media/characters/kimpi/hand.svg"
  47286. }
  47287. },
  47288. },
  47289. [
  47290. {
  47291. name: "Normal",
  47292. height: math.unit(35, "meters"),
  47293. default: true
  47294. },
  47295. ]
  47296. ))
  47297. characterMakers.push(() => makeCharacter(
  47298. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47299. {
  47300. front: {
  47301. height: math.unit(4 + 4/12, "feet"),
  47302. name: "Front",
  47303. image: {
  47304. source: "./media/characters/pepper-purrloin/front.svg",
  47305. extra: 1141/1024,
  47306. bottom: 21/1162
  47307. }
  47308. },
  47309. },
  47310. [
  47311. {
  47312. name: "Normal",
  47313. height: math.unit(4 + 4/12, "feet"),
  47314. default: true
  47315. },
  47316. ]
  47317. ))
  47318. characterMakers.push(() => makeCharacter(
  47319. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47320. {
  47321. front: {
  47322. height: math.unit(6 + 2/12, "feet"),
  47323. name: "Front",
  47324. image: {
  47325. source: "./media/characters/raphael/front.svg",
  47326. extra: 1101/962,
  47327. bottom: 59/1160
  47328. }
  47329. },
  47330. },
  47331. [
  47332. {
  47333. name: "Normal",
  47334. height: math.unit(6 + 2/12, "feet"),
  47335. default: true
  47336. },
  47337. ]
  47338. ))
  47339. characterMakers.push(() => makeCharacter(
  47340. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47341. {
  47342. front: {
  47343. height: math.unit(6, "feet"),
  47344. weight: math.unit(150, "lb"),
  47345. name: "Front",
  47346. image: {
  47347. source: "./media/characters/victor-williams/front.svg",
  47348. extra: 1894/1825,
  47349. bottom: 67/1961
  47350. }
  47351. },
  47352. },
  47353. [
  47354. {
  47355. name: "Normal",
  47356. height: math.unit(6, "feet"),
  47357. default: true
  47358. },
  47359. ]
  47360. ))
  47361. characterMakers.push(() => makeCharacter(
  47362. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47363. {
  47364. front: {
  47365. height: math.unit(5 + 8/12, "feet"),
  47366. weight: math.unit(150, "lb"),
  47367. name: "Front",
  47368. image: {
  47369. source: "./media/characters/rachel/front.svg",
  47370. extra: 1902/1787,
  47371. bottom: 46/1948
  47372. }
  47373. },
  47374. },
  47375. [
  47376. {
  47377. name: "Base Height",
  47378. height: math.unit(5 + 8/12, "feet"),
  47379. default: true
  47380. },
  47381. {
  47382. name: "Macro",
  47383. height: math.unit(200, "feet")
  47384. },
  47385. {
  47386. name: "Mega Macro",
  47387. height: math.unit(1, "mile")
  47388. },
  47389. {
  47390. name: "Giga Macro",
  47391. height: math.unit(1500, "miles")
  47392. },
  47393. {
  47394. name: "Tera Macro",
  47395. height: math.unit(8000, "miles")
  47396. },
  47397. {
  47398. name: "Tera Macro+",
  47399. height: math.unit(2e5, "miles")
  47400. },
  47401. ]
  47402. ))
  47403. characterMakers.push(() => makeCharacter(
  47404. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47405. {
  47406. front: {
  47407. height: math.unit(6.5, "feet"),
  47408. name: "Front",
  47409. image: {
  47410. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47411. extra: 860/819,
  47412. bottom: 307/1167
  47413. }
  47414. },
  47415. back: {
  47416. height: math.unit(6.5, "feet"),
  47417. name: "Back",
  47418. image: {
  47419. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47420. extra: 880/837,
  47421. bottom: 395/1275
  47422. }
  47423. },
  47424. sleeping: {
  47425. height: math.unit(2.79, "feet"),
  47426. name: "Sleeping",
  47427. image: {
  47428. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47429. extra: 465/383,
  47430. bottom: 263/728
  47431. }
  47432. },
  47433. maw: {
  47434. height: math.unit(2.52, "feet"),
  47435. name: "Maw",
  47436. image: {
  47437. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47438. }
  47439. },
  47440. },
  47441. [
  47442. {
  47443. name: "Normal",
  47444. height: math.unit(6.5, "feet"),
  47445. default: true
  47446. },
  47447. ]
  47448. ))
  47449. characterMakers.push(() => makeCharacter(
  47450. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47451. {
  47452. front: {
  47453. height: math.unit(5, "feet"),
  47454. name: "Front",
  47455. image: {
  47456. source: "./media/characters/nova-nerium/front.svg",
  47457. extra: 1548/1392,
  47458. bottom: 374/1922
  47459. }
  47460. },
  47461. back: {
  47462. height: math.unit(5, "feet"),
  47463. name: "Back",
  47464. image: {
  47465. source: "./media/characters/nova-nerium/back.svg",
  47466. extra: 1658/1468,
  47467. bottom: 257/1915
  47468. }
  47469. },
  47470. },
  47471. [
  47472. {
  47473. name: "Normal",
  47474. height: math.unit(5, "feet"),
  47475. default: true
  47476. },
  47477. ]
  47478. ))
  47479. characterMakers.push(() => makeCharacter(
  47480. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47481. {
  47482. front: {
  47483. height: math.unit(5 + 4/12, "feet"),
  47484. name: "Front",
  47485. image: {
  47486. source: "./media/characters/ashe-pyriph/front.svg",
  47487. extra: 1935/1747,
  47488. bottom: 60/1995
  47489. }
  47490. },
  47491. },
  47492. [
  47493. {
  47494. name: "Normal",
  47495. height: math.unit(5 + 4/12, "feet"),
  47496. default: true
  47497. },
  47498. ]
  47499. ))
  47500. characterMakers.push(() => makeCharacter(
  47501. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47502. {
  47503. front: {
  47504. height: math.unit(8.7, "feet"),
  47505. name: "Front",
  47506. image: {
  47507. source: "./media/characters/flicker-wisp/front.svg",
  47508. extra: 1835/1613,
  47509. bottom: 449/2284
  47510. }
  47511. },
  47512. side: {
  47513. height: math.unit(8.7, "feet"),
  47514. name: "Side",
  47515. image: {
  47516. source: "./media/characters/flicker-wisp/side.svg",
  47517. extra: 1841/1642,
  47518. bottom: 336/2177
  47519. },
  47520. default: true
  47521. },
  47522. maw: {
  47523. height: math.unit(3.35, "feet"),
  47524. name: "Maw",
  47525. image: {
  47526. source: "./media/characters/flicker-wisp/maw.svg",
  47527. extra: 2338/1506,
  47528. bottom: 0/2338
  47529. }
  47530. },
  47531. ovipositor: {
  47532. height: math.unit(4.95, "feet"),
  47533. name: "Ovipositor",
  47534. image: {
  47535. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47536. }
  47537. },
  47538. egg: {
  47539. height: math.unit(0.385, "feet"),
  47540. weight: math.unit(2, "lb"),
  47541. name: "Egg",
  47542. image: {
  47543. source: "./media/characters/flicker-wisp/egg.svg"
  47544. }
  47545. },
  47546. },
  47547. [
  47548. {
  47549. name: "Normal",
  47550. height: math.unit(8.7, "feet"),
  47551. default: true
  47552. },
  47553. ]
  47554. ))
  47555. characterMakers.push(() => makeCharacter(
  47556. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47557. {
  47558. side: {
  47559. height: math.unit(11, "feet"),
  47560. name: "Side",
  47561. image: {
  47562. source: "./media/characters/faefnul/side.svg",
  47563. extra: 1100/1007,
  47564. bottom: 0/1100
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Normal",
  47571. height: math.unit(11, "feet"),
  47572. default: true
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47578. {
  47579. front: {
  47580. height: math.unit(6 + 2/12, "feet"),
  47581. name: "Front",
  47582. image: {
  47583. source: "./media/characters/shady/front.svg",
  47584. extra: 502/461,
  47585. bottom: 9/511
  47586. }
  47587. },
  47588. kneeling: {
  47589. height: math.unit(4.6, "feet"),
  47590. name: "Kneeling",
  47591. image: {
  47592. source: "./media/characters/shady/kneeling.svg",
  47593. extra: 1328/1219,
  47594. bottom: 117/1445
  47595. }
  47596. },
  47597. maw: {
  47598. height: math.unit(2, "feet"),
  47599. name: "Maw",
  47600. image: {
  47601. source: "./media/characters/shady/maw.svg"
  47602. }
  47603. },
  47604. },
  47605. [
  47606. {
  47607. name: "Nano",
  47608. height: math.unit(1, "mm")
  47609. },
  47610. {
  47611. name: "Micro",
  47612. height: math.unit(12, "mm")
  47613. },
  47614. {
  47615. name: "Tiny",
  47616. height: math.unit(3, "inches")
  47617. },
  47618. {
  47619. name: "Normal",
  47620. height: math.unit(6 + 2/12, "feet"),
  47621. default: true
  47622. },
  47623. {
  47624. name: "Big",
  47625. height: math.unit(15, "feet")
  47626. },
  47627. {
  47628. name: "Macro",
  47629. height: math.unit(150, "feet")
  47630. },
  47631. {
  47632. name: "Titanic",
  47633. height: math.unit(500, "feet")
  47634. },
  47635. ]
  47636. ))
  47637. characterMakers.push(() => makeCharacter(
  47638. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47639. {
  47640. front: {
  47641. height: math.unit(12, "feet"),
  47642. name: "Front",
  47643. image: {
  47644. source: "./media/characters/fenrir/front.svg",
  47645. extra: 968/875,
  47646. bottom: 22/990
  47647. }
  47648. },
  47649. },
  47650. [
  47651. {
  47652. name: "Big",
  47653. height: math.unit(12, "feet"),
  47654. default: true
  47655. },
  47656. ]
  47657. ))
  47658. characterMakers.push(() => makeCharacter(
  47659. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47660. {
  47661. front: {
  47662. height: math.unit(5 + 4/12, "feet"),
  47663. name: "Front",
  47664. image: {
  47665. source: "./media/characters/makar/front.svg",
  47666. extra: 1181/1112,
  47667. bottom: 78/1259
  47668. }
  47669. },
  47670. },
  47671. [
  47672. {
  47673. name: "Normal",
  47674. height: math.unit(5 + 4/12, "feet"),
  47675. default: true
  47676. },
  47677. ]
  47678. ))
  47679. characterMakers.push(() => makeCharacter(
  47680. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47681. {
  47682. front: {
  47683. height: math.unit(5 + 7/12, "feet"),
  47684. name: "Front",
  47685. image: {
  47686. source: "./media/characters/callow/front.svg",
  47687. extra: 1482/1304,
  47688. bottom: 23/1505
  47689. }
  47690. },
  47691. back: {
  47692. height: math.unit(5 + 7/12, "feet"),
  47693. name: "Back",
  47694. image: {
  47695. source: "./media/characters/callow/back.svg",
  47696. extra: 1484/1296,
  47697. bottom: 25/1509
  47698. }
  47699. },
  47700. },
  47701. [
  47702. {
  47703. name: "Micro",
  47704. height: math.unit(3, "inches"),
  47705. default: true
  47706. },
  47707. {
  47708. name: "Normal",
  47709. height: math.unit(5 + 7/12, "feet")
  47710. },
  47711. ]
  47712. ))
  47713. characterMakers.push(() => makeCharacter(
  47714. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47715. {
  47716. front: {
  47717. height: math.unit(6 + 2/12, "feet"),
  47718. name: "Front",
  47719. image: {
  47720. source: "./media/characters/natel/front.svg",
  47721. extra: 1833/1692,
  47722. bottom: 166/1999
  47723. }
  47724. },
  47725. },
  47726. [
  47727. {
  47728. name: "Normal",
  47729. height: math.unit(6 + 2/12, "feet"),
  47730. default: true
  47731. },
  47732. ]
  47733. ))
  47734. characterMakers.push(() => makeCharacter(
  47735. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47736. {
  47737. front: {
  47738. height: math.unit(1.75, "meters"),
  47739. name: "Front",
  47740. image: {
  47741. source: "./media/characters/misu/front.svg",
  47742. extra: 1690/1558,
  47743. bottom: 234/1924
  47744. }
  47745. },
  47746. back: {
  47747. height: math.unit(1.75, "meters"),
  47748. name: "Back",
  47749. image: {
  47750. source: "./media/characters/misu/back.svg",
  47751. extra: 1762/1618,
  47752. bottom: 146/1908
  47753. }
  47754. },
  47755. frontNude: {
  47756. height: math.unit(1.75, "meters"),
  47757. name: "Front (Nude)",
  47758. image: {
  47759. source: "./media/characters/misu/front-nude.svg",
  47760. extra: 1690/1558,
  47761. bottom: 234/1924
  47762. }
  47763. },
  47764. backNude: {
  47765. height: math.unit(1.75, "meters"),
  47766. name: "Back (Nude)",
  47767. image: {
  47768. source: "./media/characters/misu/back-nude.svg",
  47769. extra: 1762/1618,
  47770. bottom: 146/1908
  47771. }
  47772. },
  47773. frontErect: {
  47774. height: math.unit(1.75, "meters"),
  47775. name: "Front (Erect)",
  47776. image: {
  47777. source: "./media/characters/misu/front-erect.svg",
  47778. extra: 1690/1558,
  47779. bottom: 234/1924
  47780. }
  47781. },
  47782. maw: {
  47783. height: math.unit(0.47, "meters"),
  47784. name: "Maw",
  47785. image: {
  47786. source: "./media/characters/misu/maw.svg"
  47787. }
  47788. },
  47789. head: {
  47790. height: math.unit(0.35, "meters"),
  47791. name: "Head",
  47792. image: {
  47793. source: "./media/characters/misu/head.svg"
  47794. }
  47795. },
  47796. rear: {
  47797. height: math.unit(0.47, "meters"),
  47798. name: "Rear",
  47799. image: {
  47800. source: "./media/characters/misu/rear.svg"
  47801. }
  47802. },
  47803. },
  47804. [
  47805. {
  47806. name: "Normal",
  47807. height: math.unit(1.75, "meters")
  47808. },
  47809. {
  47810. name: "Not good for the people",
  47811. height: math.unit(42, "meters")
  47812. },
  47813. {
  47814. name: "Not good for the neighborhood",
  47815. height: math.unit(135, "meters")
  47816. },
  47817. {
  47818. name: "Bit bigger problem",
  47819. height: math.unit(380, "meters"),
  47820. default: true
  47821. },
  47822. {
  47823. name: "Not good for the city",
  47824. height: math.unit(1.5, "km")
  47825. },
  47826. {
  47827. name: "Not good for the county",
  47828. height: math.unit(5.5, "km")
  47829. },
  47830. {
  47831. name: "Not good for the state",
  47832. height: math.unit(25, "km")
  47833. },
  47834. {
  47835. name: "Not good for the country",
  47836. height: math.unit(125, "km")
  47837. },
  47838. {
  47839. name: "Not good for the continent",
  47840. height: math.unit(2100, "km")
  47841. },
  47842. {
  47843. name: "Not good for the planet",
  47844. height: math.unit(35000, "km")
  47845. },
  47846. {
  47847. name: "Just no",
  47848. height: math.unit(8.5e18, "km")
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47854. {
  47855. front: {
  47856. height: math.unit(6.5, "feet"),
  47857. name: "Front",
  47858. image: {
  47859. source: "./media/characters/poppy/front.svg",
  47860. extra: 1878/1812,
  47861. bottom: 43/1921
  47862. }
  47863. },
  47864. feet: {
  47865. height: math.unit(1.06, "feet"),
  47866. name: "Feet",
  47867. image: {
  47868. source: "./media/characters/poppy/feet.svg",
  47869. extra: 1083/1083,
  47870. bottom: 87/1170
  47871. }
  47872. },
  47873. },
  47874. [
  47875. {
  47876. name: "Human",
  47877. height: math.unit(6.5, "feet")
  47878. },
  47879. {
  47880. name: "Default",
  47881. height: math.unit(300, "feet"),
  47882. default: true
  47883. },
  47884. {
  47885. name: "Huge",
  47886. height: math.unit(850, "feet")
  47887. },
  47888. {
  47889. name: "Mega",
  47890. height: math.unit(8000, "feet")
  47891. },
  47892. {
  47893. name: "Giga",
  47894. height: math.unit(300, "miles")
  47895. },
  47896. ]
  47897. ))
  47898. characterMakers.push(() => makeCharacter(
  47899. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47900. {
  47901. bipedal: {
  47902. height: math.unit(7, "feet"),
  47903. name: "Bipedal",
  47904. image: {
  47905. source: "./media/characters/zener/bipedal.svg",
  47906. extra: 874/805,
  47907. bottom: 109/983
  47908. }
  47909. },
  47910. quadrupedal: {
  47911. height: math.unit(4.64, "feet"),
  47912. name: "Quadrupedal",
  47913. image: {
  47914. source: "./media/characters/zener/quadrupedal.svg",
  47915. extra: 638/507,
  47916. bottom: 190/828
  47917. }
  47918. },
  47919. cock: {
  47920. height: math.unit(18, "inches"),
  47921. name: "Cock",
  47922. image: {
  47923. source: "./media/characters/zener/cock.svg"
  47924. }
  47925. },
  47926. },
  47927. [
  47928. {
  47929. name: "Normal",
  47930. height: math.unit(7, "feet"),
  47931. default: true
  47932. },
  47933. ]
  47934. ))
  47935. characterMakers.push(() => makeCharacter(
  47936. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  47937. {
  47938. nude: {
  47939. height: math.unit(5 + 6/12, "feet"),
  47940. name: "Nude",
  47941. image: {
  47942. source: "./media/characters/charlie-dog/nude.svg",
  47943. extra: 768/734,
  47944. bottom: 26/794
  47945. }
  47946. },
  47947. dressed: {
  47948. height: math.unit(5 + 6/12, "feet"),
  47949. name: "Dressed",
  47950. image: {
  47951. source: "./media/characters/charlie-dog/dressed.svg",
  47952. extra: 768/734,
  47953. bottom: 26/794
  47954. }
  47955. },
  47956. },
  47957. [
  47958. {
  47959. name: "Normal",
  47960. height: math.unit(5 + 6/12, "feet"),
  47961. default: true
  47962. },
  47963. ]
  47964. ))
  47965. characterMakers.push(() => makeCharacter(
  47966. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  47967. {
  47968. front: {
  47969. height: math.unit(6 + 4/12, "feet"),
  47970. name: "Front",
  47971. image: {
  47972. source: "./media/characters/ir'istrasz/front.svg",
  47973. extra: 1014/977,
  47974. bottom: 65/1079
  47975. }
  47976. },
  47977. back: {
  47978. height: math.unit(6 + 4/12, "feet"),
  47979. name: "Back",
  47980. image: {
  47981. source: "./media/characters/ir'istrasz/back.svg",
  47982. extra: 1024/992,
  47983. bottom: 34/1058
  47984. }
  47985. },
  47986. },
  47987. [
  47988. {
  47989. name: "Normal",
  47990. height: math.unit(6 + 4/12, "feet"),
  47991. default: true
  47992. },
  47993. ]
  47994. ))
  47995. characterMakers.push(() => makeCharacter(
  47996. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  47997. {
  47998. front: {
  47999. height: math.unit(5 + 8/12, "feet"),
  48000. name: "Front",
  48001. image: {
  48002. source: "./media/characters/dee-ditto/front.svg",
  48003. extra: 1874/1785,
  48004. bottom: 68/1942
  48005. }
  48006. },
  48007. back: {
  48008. height: math.unit(5 + 8/12, "feet"),
  48009. name: "Back",
  48010. image: {
  48011. source: "./media/characters/dee-ditto/back.svg",
  48012. extra: 1870/1783,
  48013. bottom: 77/1947
  48014. }
  48015. },
  48016. },
  48017. [
  48018. {
  48019. name: "Normal",
  48020. height: math.unit(5 + 8/12, "feet"),
  48021. default: true
  48022. },
  48023. ]
  48024. ))
  48025. characterMakers.push(() => makeCharacter(
  48026. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48027. {
  48028. front: {
  48029. height: math.unit(7 + 6/12, "feet"),
  48030. name: "Front",
  48031. image: {
  48032. source: "./media/characters/fey/front.svg",
  48033. extra: 995/979,
  48034. bottom: 30/1025
  48035. }
  48036. },
  48037. back: {
  48038. height: math.unit(7 + 6/12, "feet"),
  48039. name: "Back",
  48040. image: {
  48041. source: "./media/characters/fey/back.svg",
  48042. extra: 1079/1008,
  48043. bottom: 5/1084
  48044. }
  48045. },
  48046. dressed: {
  48047. height: math.unit(7 + 6/12, "feet"),
  48048. name: "Dressed",
  48049. image: {
  48050. source: "./media/characters/fey/dressed.svg",
  48051. extra: 995/979,
  48052. bottom: 30/1025
  48053. }
  48054. },
  48055. },
  48056. [
  48057. {
  48058. name: "Normal",
  48059. height: math.unit(7 + 6/12, "feet"),
  48060. default: true
  48061. },
  48062. ]
  48063. ))
  48064. characterMakers.push(() => makeCharacter(
  48065. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48066. {
  48067. standing: {
  48068. height: math.unit(17, "feet"),
  48069. name: "Standing",
  48070. image: {
  48071. source: "./media/characters/aster/standing.svg",
  48072. extra: 1798/1598,
  48073. bottom: 117/1915
  48074. }
  48075. },
  48076. },
  48077. [
  48078. {
  48079. name: "Normal",
  48080. height: math.unit(17, "feet"),
  48081. default: true
  48082. },
  48083. {
  48084. name: "Homewrecker",
  48085. height: math.unit(95, "feet")
  48086. },
  48087. {
  48088. name: "Planet Devourer",
  48089. height: math.unit(1008000, "miles")
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48095. {
  48096. front: {
  48097. height: math.unit(6 + 5/12, "feet"),
  48098. weight: math.unit(265, "lb"),
  48099. name: "Front",
  48100. image: {
  48101. source: "./media/characters/devon-childs/front.svg",
  48102. extra: 1795/1721,
  48103. bottom: 41/1836
  48104. }
  48105. },
  48106. side: {
  48107. height: math.unit(6 + 5/12, "feet"),
  48108. weight: math.unit(265, "lb"),
  48109. name: "Side",
  48110. image: {
  48111. source: "./media/characters/devon-childs/side.svg",
  48112. extra: 1812/1738,
  48113. bottom: 30/1842
  48114. }
  48115. },
  48116. back: {
  48117. height: math.unit(6 + 5/12, "feet"),
  48118. weight: math.unit(265, "lb"),
  48119. name: "Back",
  48120. image: {
  48121. source: "./media/characters/devon-childs/back.svg",
  48122. extra: 1808/1735,
  48123. bottom: 23/1831
  48124. }
  48125. },
  48126. hand: {
  48127. height: math.unit(1.464, "feet"),
  48128. name: "Hand",
  48129. image: {
  48130. source: "./media/characters/devon-childs/hand.svg"
  48131. }
  48132. },
  48133. foot: {
  48134. height: math.unit(1.6, "feet"),
  48135. name: "Foot",
  48136. image: {
  48137. source: "./media/characters/devon-childs/foot.svg"
  48138. }
  48139. },
  48140. },
  48141. [
  48142. {
  48143. name: "Micro",
  48144. height: math.unit(7, "cm")
  48145. },
  48146. {
  48147. name: "Normal",
  48148. height: math.unit(6 + 5/12, "feet"),
  48149. default: true
  48150. },
  48151. {
  48152. name: "Macro",
  48153. height: math.unit(154, "feet")
  48154. },
  48155. ]
  48156. ))
  48157. characterMakers.push(() => makeCharacter(
  48158. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48159. {
  48160. front: {
  48161. height: math.unit(6, "feet"),
  48162. weight: math.unit(180, "lb"),
  48163. name: "Front",
  48164. image: {
  48165. source: "./media/characters/lydemox-vir/front.svg",
  48166. extra: 1632/1435,
  48167. bottom: 58/1690
  48168. }
  48169. },
  48170. frontSFW: {
  48171. height: math.unit(6, "feet"),
  48172. weight: math.unit(180, "lb"),
  48173. name: "Front (SFW)",
  48174. image: {
  48175. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48176. extra: 1632/1435,
  48177. bottom: 58/1690
  48178. }
  48179. },
  48180. back: {
  48181. height: math.unit(6, "feet"),
  48182. weight: math.unit(180, "lb"),
  48183. name: "Back",
  48184. image: {
  48185. source: "./media/characters/lydemox-vir/back.svg",
  48186. extra: 1593/1408,
  48187. bottom: 31/1624
  48188. }
  48189. },
  48190. paw: {
  48191. height: math.unit(1.85, "feet"),
  48192. name: "Paw",
  48193. image: {
  48194. source: "./media/characters/lydemox-vir/paw.svg"
  48195. }
  48196. },
  48197. dick: {
  48198. height: math.unit(1.8, "feet"),
  48199. name: "Dick",
  48200. image: {
  48201. source: "./media/characters/lydemox-vir/dick.svg"
  48202. }
  48203. },
  48204. },
  48205. [
  48206. {
  48207. name: "Macro",
  48208. height: math.unit(100, "feet"),
  48209. default: true
  48210. },
  48211. {
  48212. name: "Teramacro",
  48213. height: math.unit(1, "earth")
  48214. },
  48215. {
  48216. name: "Planetary",
  48217. height: math.unit(20, "earths")
  48218. },
  48219. ]
  48220. ))
  48221. characterMakers.push(() => makeCharacter(
  48222. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48223. {
  48224. front: {
  48225. height: math.unit(15 + 8/12, "feet"),
  48226. weight: math.unit(1237, "kg"),
  48227. name: "Front",
  48228. image: {
  48229. source: "./media/characters/mia/front.svg",
  48230. extra: 1573/1446,
  48231. bottom: 58/1631
  48232. }
  48233. },
  48234. },
  48235. [
  48236. {
  48237. name: "Small",
  48238. height: math.unit(9 + 5/12, "feet")
  48239. },
  48240. {
  48241. name: "Normal",
  48242. height: math.unit(15 + 8/12, "feet"),
  48243. default: true
  48244. },
  48245. ]
  48246. ))
  48247. characterMakers.push(() => makeCharacter(
  48248. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48249. {
  48250. front: {
  48251. height: math.unit(10 + 6/12, "feet"),
  48252. weight: math.unit(1.3, "tons"),
  48253. name: "Front",
  48254. image: {
  48255. source: "./media/characters/mr-graves/front.svg",
  48256. extra: 1779/1695,
  48257. bottom: 198/1977
  48258. }
  48259. },
  48260. },
  48261. [
  48262. {
  48263. name: "Normal",
  48264. height: math.unit(10 + 6 /12, "feet"),
  48265. default: true
  48266. },
  48267. ]
  48268. ))
  48269. //characters
  48270. function makeCharacters() {
  48271. const results = [];
  48272. characterMakers.forEach(character => {
  48273. results.push(character());
  48274. });
  48275. return results;
  48276. }