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.
 
 
 

46558 lines
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["mammal"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. }
  1816. //species
  1817. function getSpeciesInfo(speciesList) {
  1818. let result = new Set();
  1819. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1820. result.add(entry)
  1821. });
  1822. return Array.from(result);
  1823. };
  1824. function getSpeciesInfoHelper(species) {
  1825. if (!speciesData[species]) {
  1826. console.warn(species + " doesn't exist");
  1827. return [];
  1828. }
  1829. if (speciesData[species].parents) {
  1830. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1831. } else {
  1832. return [species];
  1833. }
  1834. }
  1835. characterMakers.push(() => makeCharacter(
  1836. {
  1837. name: "Fen",
  1838. species: ["crux"],
  1839. description: {
  1840. title: "Bio",
  1841. text: "Very furry. Sheds on everything."
  1842. },
  1843. tags: [
  1844. "anthro",
  1845. "goo"
  1846. ]
  1847. },
  1848. {
  1849. front: {
  1850. height: math.unit(12, "feet"),
  1851. weight: math.unit(1600, "lb"),
  1852. name: "Front",
  1853. image: {
  1854. source: "./media/characters/fen/front.svg",
  1855. extra: 1804/1562,
  1856. bottom: 205/2009
  1857. }
  1858. },
  1859. diving: {
  1860. height: math.unit(4.9, "meters"),
  1861. weight: math.unit(1600, "lb"),
  1862. name: "Diving",
  1863. image: {
  1864. source: "./media/characters/fen/diving.svg"
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(12, "feet"),
  1869. weight: math.unit(1600, "lb"),
  1870. capacity: math.unit(6, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. extra: 1307/1071,
  1875. bottom: 134/1441
  1876. }
  1877. },
  1878. maw: {
  1879. height: math.unit(5.03, "feet"),
  1880. name: "Maw",
  1881. image: {
  1882. source: "./media/characters/fen/maw.svg"
  1883. }
  1884. },
  1885. gooCeiling: {
  1886. height: math.unit(6.6, "feet"),
  1887. weight: math.unit(1600, "lb"),
  1888. capacity: math.unit(6, "people"),
  1889. name: "Goo (Ceiling)",
  1890. image: {
  1891. source: "./media/characters/fen/goo-ceiling.svg"
  1892. }
  1893. },
  1894. back: {
  1895. height: math.unit(12, "feet"),
  1896. weight: math.unit(1600, "lb"),
  1897. name: "Back",
  1898. image: {
  1899. source: "./media/characters/fen/back.svg",
  1900. },
  1901. info: {
  1902. description: {
  1903. mode: "append",
  1904. text: "\n\nHe is not currently looking at you."
  1905. }
  1906. }
  1907. },
  1908. full: {
  1909. height: math.unit(1.6, "meter"),
  1910. weight: math.unit(2200, "lb"),
  1911. name: "Full",
  1912. image: {
  1913. source: "./media/characters/fen/full.svg",
  1914. extra: 1133/859,
  1915. bottom: 145/1278
  1916. },
  1917. info: {
  1918. description: {
  1919. mode: "append",
  1920. text: "\n\nMunch."
  1921. }
  1922. }
  1923. },
  1924. gooLounging: {
  1925. height: math.unit(4.53, "feet"),
  1926. weight: math.unit(1600, "lb"),
  1927. capacity: math.unit(6, "people"),
  1928. name: "Goo (Lounging)",
  1929. image: {
  1930. source: "./media/characters/fen/goo.svg",
  1931. bottom: 116 / 613
  1932. }
  1933. },
  1934. lounging: {
  1935. height: math.unit(10.52, "feet"),
  1936. weight: math.unit(1600, "lb"),
  1937. name: "Lounging",
  1938. image: {
  1939. source: "./media/characters/fen/lounging.svg"
  1940. }
  1941. },
  1942. },
  1943. [
  1944. {
  1945. name: "Small",
  1946. height: math.unit(2.2428, "meter")
  1947. },
  1948. {
  1949. name: "Normal",
  1950. height: math.unit(12, "feet"),
  1951. default: true,
  1952. },
  1953. {
  1954. name: "Big",
  1955. height: math.unit(20, "feet")
  1956. },
  1957. {
  1958. name: "Minimacro",
  1959. height: math.unit(40, "feet"),
  1960. info: {
  1961. description: {
  1962. mode: "append",
  1963. text: "\n\nTOO DAMN BIG"
  1964. }
  1965. }
  1966. },
  1967. {
  1968. name: "Macro",
  1969. height: math.unit(100, "feet"),
  1970. info: {
  1971. description: {
  1972. mode: "append",
  1973. text: "\n\nTOO DAMN BIG"
  1974. }
  1975. }
  1976. },
  1977. {
  1978. name: "Megamacro",
  1979. height: math.unit(2, "miles")
  1980. },
  1981. {
  1982. name: "Gigamacro",
  1983. height: math.unit(10, "earths")
  1984. },
  1985. ]
  1986. ))
  1987. characterMakers.push(() => makeCharacter(
  1988. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1989. {
  1990. front: {
  1991. height: math.unit(183, "cm"),
  1992. weight: math.unit(80, "kg"),
  1993. name: "Front",
  1994. image: {
  1995. source: "./media/characters/sofia-fluttertail/front.svg",
  1996. bottom: 0.01,
  1997. extra: 2154 / 2081
  1998. }
  1999. },
  2000. frontAlt: {
  2001. height: math.unit(183, "cm"),
  2002. weight: math.unit(80, "kg"),
  2003. name: "Front (alt)",
  2004. image: {
  2005. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2006. }
  2007. },
  2008. back: {
  2009. height: math.unit(183, "cm"),
  2010. weight: math.unit(80, "kg"),
  2011. name: "Back",
  2012. image: {
  2013. source: "./media/characters/sofia-fluttertail/back.svg"
  2014. }
  2015. },
  2016. kneeling: {
  2017. height: math.unit(125, "cm"),
  2018. weight: math.unit(80, "kg"),
  2019. name: "Kneeling",
  2020. image: {
  2021. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2022. extra: 1033 / 977,
  2023. bottom: 23.7 / 1057
  2024. }
  2025. },
  2026. maw: {
  2027. height: math.unit(183 / 5, "cm"),
  2028. name: "Maw",
  2029. image: {
  2030. source: "./media/characters/sofia-fluttertail/maw.svg"
  2031. }
  2032. },
  2033. mawcloseup: {
  2034. height: math.unit(183 / 5 * 0.41, "cm"),
  2035. name: "Maw (Closeup)",
  2036. image: {
  2037. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2038. }
  2039. },
  2040. paws: {
  2041. height: math.unit(1.17, "feet"),
  2042. name: "Paws",
  2043. image: {
  2044. source: "./media/characters/sofia-fluttertail/paws.svg",
  2045. extra: 851 / 851,
  2046. bottom: 17 / 868
  2047. }
  2048. },
  2049. },
  2050. [
  2051. {
  2052. name: "Normal",
  2053. height: math.unit(1.83, "meter")
  2054. },
  2055. {
  2056. name: "Size Thief",
  2057. height: math.unit(18, "feet")
  2058. },
  2059. {
  2060. name: "50 Foot Collie",
  2061. height: math.unit(50, "feet")
  2062. },
  2063. {
  2064. name: "Macro",
  2065. height: math.unit(96, "feet"),
  2066. default: true
  2067. },
  2068. {
  2069. name: "Megamerger",
  2070. height: math.unit(650, "feet")
  2071. },
  2072. ]
  2073. ))
  2074. characterMakers.push(() => makeCharacter(
  2075. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2076. {
  2077. front: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(100, "kg"),
  2080. name: "Front",
  2081. image: {
  2082. source: "./media/characters/march/front.svg",
  2083. extra: 1992/1851,
  2084. bottom: 39/2031
  2085. }
  2086. },
  2087. foot: {
  2088. height: math.unit(0.9, "feet"),
  2089. name: "Foot",
  2090. image: {
  2091. source: "./media/characters/march/foot.svg"
  2092. }
  2093. },
  2094. },
  2095. [
  2096. {
  2097. name: "Normal",
  2098. height: math.unit(7.9, "feet")
  2099. },
  2100. {
  2101. name: "Macro",
  2102. height: math.unit(220, "meters")
  2103. },
  2104. {
  2105. name: "Megamacro",
  2106. height: math.unit(2.98, "km"),
  2107. default: true
  2108. },
  2109. {
  2110. name: "Gigamacro",
  2111. height: math.unit(15963, "km")
  2112. },
  2113. {
  2114. name: "Teramacro",
  2115. height: math.unit(2980000000, "km")
  2116. },
  2117. {
  2118. name: "Examacro",
  2119. height: math.unit(250, "parsecs")
  2120. },
  2121. ]
  2122. ))
  2123. characterMakers.push(() => makeCharacter(
  2124. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2125. {
  2126. front: {
  2127. height: math.unit(6, "feet"),
  2128. weight: math.unit(60, "kg"),
  2129. name: "Front",
  2130. image: {
  2131. source: "./media/characters/noir/front.svg",
  2132. extra: 1,
  2133. bottom: 0.032
  2134. }
  2135. },
  2136. },
  2137. [
  2138. {
  2139. name: "Normal",
  2140. height: math.unit(6.6, "feet")
  2141. },
  2142. {
  2143. name: "Macro",
  2144. height: math.unit(500, "feet")
  2145. },
  2146. {
  2147. name: "Megamacro",
  2148. height: math.unit(2.5, "km"),
  2149. default: true
  2150. },
  2151. {
  2152. name: "Gigamacro",
  2153. height: math.unit(22500, "km")
  2154. },
  2155. {
  2156. name: "Teramacro",
  2157. height: math.unit(2500000000, "km")
  2158. },
  2159. {
  2160. name: "Examacro",
  2161. height: math.unit(200, "parsecs")
  2162. },
  2163. ]
  2164. ))
  2165. characterMakers.push(() => makeCharacter(
  2166. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2167. {
  2168. front: {
  2169. height: math.unit(7, "feet"),
  2170. weight: math.unit(100, "kg"),
  2171. name: "Front",
  2172. image: {
  2173. source: "./media/characters/okuri/front.svg",
  2174. extra: 1,
  2175. bottom: 0.037
  2176. }
  2177. },
  2178. back: {
  2179. height: math.unit(7, "feet"),
  2180. weight: math.unit(100, "kg"),
  2181. name: "Back",
  2182. image: {
  2183. source: "./media/characters/okuri/back.svg",
  2184. extra: 1,
  2185. bottom: 0.007
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Megamacro",
  2192. height: math.unit(100, "miles"),
  2193. default: true
  2194. },
  2195. ]
  2196. ))
  2197. characterMakers.push(() => makeCharacter(
  2198. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2199. {
  2200. front: {
  2201. height: math.unit(7, "feet"),
  2202. weight: math.unit(100, "kg"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/manny/front.svg",
  2206. extra: 1,
  2207. bottom: 0.06
  2208. }
  2209. },
  2210. back: {
  2211. height: math.unit(7, "feet"),
  2212. weight: math.unit(100, "kg"),
  2213. name: "Back",
  2214. image: {
  2215. source: "./media/characters/manny/back.svg",
  2216. extra: 1,
  2217. bottom: 0.014
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(7, "feet"),
  2225. },
  2226. {
  2227. name: "Macro",
  2228. height: math.unit(78, "feet"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Macro+",
  2233. height: math.unit(300, "meters")
  2234. },
  2235. {
  2236. name: "Macro++",
  2237. height: math.unit(2400, "meters")
  2238. },
  2239. {
  2240. name: "Megamacro",
  2241. height: math.unit(5167, "meters")
  2242. },
  2243. {
  2244. name: "Gigamacro",
  2245. height: math.unit(41769, "miles")
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(100, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/adake/front-1.svg"
  2258. }
  2259. },
  2260. frontAlt: {
  2261. height: math.unit(7, "feet"),
  2262. weight: math.unit(100, "kg"),
  2263. name: "Front (Alt)",
  2264. image: {
  2265. source: "./media/characters/adake/front-2.svg",
  2266. extra: 1,
  2267. bottom: 0.01
  2268. }
  2269. },
  2270. back: {
  2271. height: math.unit(7, "feet"),
  2272. weight: math.unit(100, "kg"),
  2273. name: "Back",
  2274. image: {
  2275. source: "./media/characters/adake/back.svg",
  2276. }
  2277. },
  2278. kneel: {
  2279. height: math.unit(5.385, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Kneeling",
  2282. image: {
  2283. source: "./media/characters/adake/kneel.svg",
  2284. bottom: 0.052
  2285. }
  2286. },
  2287. },
  2288. [
  2289. {
  2290. name: "Normal",
  2291. height: math.unit(7, "feet"),
  2292. },
  2293. {
  2294. name: "Macro",
  2295. height: math.unit(78, "feet"),
  2296. default: true
  2297. },
  2298. {
  2299. name: "Macro+",
  2300. height: math.unit(300, "meters")
  2301. },
  2302. {
  2303. name: "Macro++",
  2304. height: math.unit(2400, "meters")
  2305. },
  2306. {
  2307. name: "Megamacro",
  2308. height: math.unit(5167, "meters")
  2309. },
  2310. {
  2311. name: "Gigamacro",
  2312. height: math.unit(41769, "miles")
  2313. },
  2314. ]
  2315. ))
  2316. characterMakers.push(() => makeCharacter(
  2317. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2318. {
  2319. front: {
  2320. height: math.unit(1.65, "meters"),
  2321. weight: math.unit(50, "kg"),
  2322. name: "Front",
  2323. image: {
  2324. source: "./media/characters/elijah/front.svg",
  2325. extra: 858 / 830,
  2326. bottom: 95.5 / 953.8559
  2327. }
  2328. },
  2329. back: {
  2330. height: math.unit(1.65, "meters"),
  2331. weight: math.unit(50, "kg"),
  2332. name: "Back",
  2333. image: {
  2334. source: "./media/characters/elijah/back.svg",
  2335. extra: 895 / 850,
  2336. bottom: 5.3 / 897.956
  2337. }
  2338. },
  2339. frontNsfw: {
  2340. height: math.unit(1.65, "meters"),
  2341. weight: math.unit(50, "kg"),
  2342. name: "Front (NSFW)",
  2343. image: {
  2344. source: "./media/characters/elijah/front-nsfw.svg",
  2345. extra: 858 / 830,
  2346. bottom: 95.5 / 953.8559
  2347. }
  2348. },
  2349. backNsfw: {
  2350. height: math.unit(1.65, "meters"),
  2351. weight: math.unit(50, "kg"),
  2352. name: "Back (NSFW)",
  2353. image: {
  2354. source: "./media/characters/elijah/back-nsfw.svg",
  2355. extra: 895 / 850,
  2356. bottom: 5.3 / 897.956
  2357. }
  2358. },
  2359. dick: {
  2360. height: math.unit(1, "feet"),
  2361. name: "Dick",
  2362. image: {
  2363. source: "./media/characters/elijah/dick.svg"
  2364. }
  2365. },
  2366. beakOpen: {
  2367. height: math.unit(1.25, "feet"),
  2368. name: "Beak (Open)",
  2369. image: {
  2370. source: "./media/characters/elijah/beak-open.svg"
  2371. }
  2372. },
  2373. beakShut: {
  2374. height: math.unit(1.25, "feet"),
  2375. name: "Beak (Shut)",
  2376. image: {
  2377. source: "./media/characters/elijah/beak-shut.svg"
  2378. }
  2379. },
  2380. footFlexing: {
  2381. height: math.unit(1.61, "feet"),
  2382. name: "Foot (Flexing)",
  2383. image: {
  2384. source: "./media/characters/elijah/foot-flexing.svg"
  2385. }
  2386. },
  2387. footStepping: {
  2388. height: math.unit(1.44, "feet"),
  2389. name: "Foot (Stepping)",
  2390. image: {
  2391. source: "./media/characters/elijah/foot-stepping.svg"
  2392. }
  2393. },
  2394. plantigradeLeg: {
  2395. height: math.unit(2.34, "feet"),
  2396. name: "Plantigrade Leg",
  2397. image: {
  2398. source: "./media/characters/elijah/plantigrade-leg.svg"
  2399. }
  2400. },
  2401. plantigradeFootLeft: {
  2402. height: math.unit(0.9, "feet"),
  2403. name: "Plantigrade Foot (Left)",
  2404. image: {
  2405. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2406. }
  2407. },
  2408. plantigradeFootRight: {
  2409. height: math.unit(0.9, "feet"),
  2410. name: "Plantigrade Foot (Right)",
  2411. image: {
  2412. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2413. }
  2414. },
  2415. },
  2416. [
  2417. {
  2418. name: "Normal",
  2419. height: math.unit(1.65, "meters")
  2420. },
  2421. {
  2422. name: "Macro",
  2423. height: math.unit(55, "meters"),
  2424. default: true
  2425. },
  2426. {
  2427. name: "Macro+",
  2428. height: math.unit(105, "meters")
  2429. },
  2430. ]
  2431. ))
  2432. characterMakers.push(() => makeCharacter(
  2433. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2434. {
  2435. front: {
  2436. height: math.unit(7 + 2/12, "feet"),
  2437. weight: math.unit(320, "kg"),
  2438. name: "Front",
  2439. image: {
  2440. source: "./media/characters/rai/front.svg",
  2441. extra: 1802/1696,
  2442. bottom: 68/1870
  2443. }
  2444. },
  2445. frontDressed: {
  2446. height: math.unit(7 + 2/12, "feet"),
  2447. weight: math.unit(320, "kg"),
  2448. name: "Front (Dressed)",
  2449. image: {
  2450. source: "./media/characters/rai/front-dressed.svg",
  2451. extra: 1802/1696,
  2452. bottom: 68/1870
  2453. }
  2454. },
  2455. side: {
  2456. height: math.unit(7 + 2/12, "feet"),
  2457. weight: math.unit(320, "kg"),
  2458. name: "Side",
  2459. image: {
  2460. source: "./media/characters/rai/side.svg",
  2461. extra: 1789/1710,
  2462. bottom: 115/1904
  2463. }
  2464. },
  2465. back: {
  2466. height: math.unit(7 + 2/12, "feet"),
  2467. weight: math.unit(320, "kg"),
  2468. name: "Back",
  2469. image: {
  2470. source: "./media/characters/rai/back.svg",
  2471. extra: 1770/1707,
  2472. bottom: 28/1798
  2473. }
  2474. },
  2475. feral: {
  2476. height: math.unit(9.5, "feet"),
  2477. weight: math.unit(640, "kg"),
  2478. name: "Feral",
  2479. image: {
  2480. source: "./media/characters/rai/feral.svg",
  2481. extra: 945/553,
  2482. bottom: 176/1121
  2483. }
  2484. },
  2485. dragon: {
  2486. height: math.unit(23, "feet"),
  2487. weight: math.unit(50000, "lb"),
  2488. name: "Dragon",
  2489. image: {
  2490. source: "./media/characters/rai/dragon.svg",
  2491. extra: 2498 / 2030,
  2492. bottom: 85.2 / 2584
  2493. }
  2494. },
  2495. maw: {
  2496. height: math.unit(1.69, "feet"),
  2497. name: "Maw",
  2498. image: {
  2499. source: "./media/characters/rai/maw.svg"
  2500. }
  2501. },
  2502. },
  2503. [
  2504. {
  2505. name: "Normal",
  2506. height: math.unit(7 + 2/12, "feet")
  2507. },
  2508. {
  2509. name: "Big",
  2510. height: math.unit(11, "feet")
  2511. },
  2512. {
  2513. name: "Macro",
  2514. height: math.unit(302, "feet"),
  2515. default: true
  2516. },
  2517. ]
  2518. ))
  2519. characterMakers.push(() => makeCharacter(
  2520. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2521. {
  2522. frontDressed: {
  2523. height: math.unit(216, "feet"),
  2524. weight: math.unit(7000000, "lb"),
  2525. name: "Front (Dressed)",
  2526. image: {
  2527. source: "./media/characters/jazzy/front-dressed.svg",
  2528. extra: 2738 / 2651,
  2529. bottom: 41.8 / 2786
  2530. }
  2531. },
  2532. backDressed: {
  2533. height: math.unit(216, "feet"),
  2534. weight: math.unit(7000000, "lb"),
  2535. name: "Back (Dressed)",
  2536. image: {
  2537. source: "./media/characters/jazzy/back-dressed.svg",
  2538. extra: 2775 / 2673,
  2539. bottom: 36.8 / 2817
  2540. }
  2541. },
  2542. front: {
  2543. height: math.unit(216, "feet"),
  2544. weight: math.unit(7000000, "lb"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/jazzy/front.svg",
  2548. extra: 2738 / 2651,
  2549. bottom: 41.8 / 2786
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(216, "feet"),
  2554. weight: math.unit(7000000, "lb"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/jazzy/back.svg",
  2558. extra: 2775 / 2673,
  2559. bottom: 36.8 / 2817
  2560. }
  2561. },
  2562. maw: {
  2563. height: math.unit(20, "feet"),
  2564. name: "Maw",
  2565. image: {
  2566. source: "./media/characters/jazzy/maw.svg"
  2567. }
  2568. },
  2569. paws: {
  2570. height: math.unit(27.5, "feet"),
  2571. name: "Paws",
  2572. image: {
  2573. source: "./media/characters/jazzy/paws.svg"
  2574. }
  2575. },
  2576. eye: {
  2577. height: math.unit(4.4, "feet"),
  2578. name: "Eye",
  2579. image: {
  2580. source: "./media/characters/jazzy/eye.svg"
  2581. }
  2582. },
  2583. droneOffense: {
  2584. height: math.unit(9.5, "inches"),
  2585. name: "Drone (Offense)",
  2586. image: {
  2587. source: "./media/characters/jazzy/drone-offense.svg"
  2588. }
  2589. },
  2590. droneRecon: {
  2591. height: math.unit(9.5, "inches"),
  2592. name: "Drone (Recon)",
  2593. image: {
  2594. source: "./media/characters/jazzy/drone-recon.svg"
  2595. }
  2596. },
  2597. droneDefense: {
  2598. height: math.unit(9.5, "inches"),
  2599. name: "Drone (Defense)",
  2600. image: {
  2601. source: "./media/characters/jazzy/drone-defense.svg"
  2602. }
  2603. },
  2604. },
  2605. [
  2606. {
  2607. name: "Macro",
  2608. height: math.unit(216, "feet"),
  2609. default: true
  2610. },
  2611. ]
  2612. ))
  2613. characterMakers.push(() => makeCharacter(
  2614. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2615. {
  2616. front: {
  2617. height: math.unit(9 + 6/12, "feet"),
  2618. weight: math.unit(700, "lb"),
  2619. name: "Front",
  2620. image: {
  2621. source: "./media/characters/flamm/front.svg",
  2622. extra: 1751/1632,
  2623. bottom: 46/1797
  2624. }
  2625. },
  2626. buff: {
  2627. height: math.unit(9 + 6/12, "feet"),
  2628. weight: math.unit(950, "lb"),
  2629. name: "Buff",
  2630. image: {
  2631. source: "./media/characters/flamm/buff.svg",
  2632. extra: 3018/2874,
  2633. bottom: 221/3239
  2634. }
  2635. },
  2636. },
  2637. [
  2638. {
  2639. name: "Normal",
  2640. height: math.unit(9.5, "feet")
  2641. },
  2642. {
  2643. name: "Macro",
  2644. height: math.unit(200, "feet"),
  2645. default: true
  2646. },
  2647. ]
  2648. ))
  2649. characterMakers.push(() => makeCharacter(
  2650. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2651. {
  2652. front: {
  2653. height: math.unit(5 + 3/12, "feet"),
  2654. weight: math.unit(60, "kg"),
  2655. name: "Front",
  2656. image: {
  2657. source: "./media/characters/zephiro/front.svg",
  2658. extra: 2309 / 2162,
  2659. bottom: 0.069
  2660. }
  2661. },
  2662. side: {
  2663. height: math.unit(5 + 3/12, "feet"),
  2664. weight: math.unit(60, "kg"),
  2665. name: "Side",
  2666. image: {
  2667. source: "./media/characters/zephiro/side.svg",
  2668. extra: 2403 / 2279,
  2669. bottom: 0.015
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5 + 3/12, "feet"),
  2674. weight: math.unit(60, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/zephiro/back.svg",
  2678. extra: 2373 / 2244,
  2679. bottom: 0.013
  2680. }
  2681. },
  2682. hand: {
  2683. height: math.unit(0.68, "feet"),
  2684. name: "Hand",
  2685. image: {
  2686. source: "./media/characters/zephiro/hand.svg"
  2687. }
  2688. },
  2689. paw: {
  2690. height: math.unit(1, "feet"),
  2691. name: "Paw",
  2692. image: {
  2693. source: "./media/characters/zephiro/paw.svg"
  2694. }
  2695. },
  2696. beans: {
  2697. height: math.unit(0.93, "feet"),
  2698. name: "Beans",
  2699. image: {
  2700. source: "./media/characters/zephiro/beans.svg"
  2701. }
  2702. },
  2703. },
  2704. [
  2705. {
  2706. name: "Micro",
  2707. height: math.unit(3, "inches")
  2708. },
  2709. {
  2710. name: "Normal",
  2711. height: math.unit(5 + 3 / 12, "feet"),
  2712. default: true
  2713. },
  2714. {
  2715. name: "Macro",
  2716. height: math.unit(118, "feet")
  2717. },
  2718. ]
  2719. ))
  2720. characterMakers.push(() => makeCharacter(
  2721. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2722. {
  2723. front: {
  2724. height: math.unit(5, "feet"),
  2725. weight: math.unit(90, "kg"),
  2726. name: "Front",
  2727. image: {
  2728. source: "./media/characters/fory/front.svg",
  2729. extra: 2862 / 2674,
  2730. bottom: 180 / 3043.8
  2731. }
  2732. },
  2733. back: {
  2734. height: math.unit(5, "feet"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Back",
  2737. image: {
  2738. source: "./media/characters/fory/back.svg",
  2739. extra: 2962 / 2791,
  2740. bottom: 106 / 3071.8
  2741. }
  2742. },
  2743. foot: {
  2744. height: math.unit(2.14, "feet"),
  2745. name: "Foot",
  2746. image: {
  2747. source: "./media/characters/fory/foot.svg"
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Normal",
  2754. height: math.unit(5, "feet")
  2755. },
  2756. {
  2757. name: "Macro",
  2758. height: math.unit(50, "feet"),
  2759. default: true
  2760. },
  2761. {
  2762. name: "Megamacro",
  2763. height: math.unit(10, "miles")
  2764. },
  2765. {
  2766. name: "Gigamacro",
  2767. height: math.unit(5, "earths")
  2768. },
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(7, "feet"),
  2776. weight: math.unit(90, "kg"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/kurrikage/front.svg",
  2780. extra: 1845/1733,
  2781. bottom: 119/1964
  2782. }
  2783. },
  2784. back: {
  2785. height: math.unit(7, "feet"),
  2786. weight: math.unit(90, "kg"),
  2787. name: "Back",
  2788. image: {
  2789. source: "./media/characters/kurrikage/back.svg",
  2790. extra: 1790/1677,
  2791. bottom: 61/1851
  2792. }
  2793. },
  2794. dressed: {
  2795. height: math.unit(7, "feet"),
  2796. weight: math.unit(90, "kg"),
  2797. name: "Dressed",
  2798. image: {
  2799. source: "./media/characters/kurrikage/dressed.svg",
  2800. extra: 1845/1733,
  2801. bottom: 119/1964
  2802. }
  2803. },
  2804. foot: {
  2805. height: math.unit(1.5, "feet"),
  2806. name: "Foot",
  2807. image: {
  2808. source: "./media/characters/kurrikage/foot.svg"
  2809. }
  2810. },
  2811. staff: {
  2812. height: math.unit(6.7, "feet"),
  2813. name: "Staff",
  2814. image: {
  2815. source: "./media/characters/kurrikage/staff.svg"
  2816. }
  2817. },
  2818. peek: {
  2819. height: math.unit(1.05, "feet"),
  2820. name: "Peeking",
  2821. image: {
  2822. source: "./media/characters/kurrikage/peek.svg",
  2823. bottom: 0.08
  2824. }
  2825. },
  2826. },
  2827. [
  2828. {
  2829. name: "Normal",
  2830. height: math.unit(12, "feet"),
  2831. default: true
  2832. },
  2833. {
  2834. name: "Big",
  2835. height: math.unit(20, "feet")
  2836. },
  2837. {
  2838. name: "Macro",
  2839. height: math.unit(500, "feet")
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(20, "miles")
  2844. },
  2845. ]
  2846. ))
  2847. characterMakers.push(() => makeCharacter(
  2848. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2849. {
  2850. front: {
  2851. height: math.unit(6, "feet"),
  2852. weight: math.unit(75, "kg"),
  2853. name: "Front",
  2854. image: {
  2855. source: "./media/characters/shingo/front.svg",
  2856. extra: 1900/1825,
  2857. bottom: 82/1982
  2858. }
  2859. },
  2860. side: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(75, "kg"),
  2863. name: "Side",
  2864. image: {
  2865. source: "./media/characters/shingo/side.svg",
  2866. extra: 1930/1865,
  2867. bottom: 16/1946
  2868. }
  2869. },
  2870. back: {
  2871. height: math.unit(6, "feet"),
  2872. weight: math.unit(75, "kg"),
  2873. name: "Back",
  2874. image: {
  2875. source: "./media/characters/shingo/back.svg",
  2876. extra: 1922/1852,
  2877. bottom: 16/1938
  2878. }
  2879. },
  2880. frontDressed: {
  2881. height: math.unit(6, "feet"),
  2882. weight: math.unit(150, "lb"),
  2883. name: "Front-dressed",
  2884. image: {
  2885. source: "./media/characters/shingo/front-dressed.svg",
  2886. extra: 1900/1825,
  2887. bottom: 82/1982
  2888. }
  2889. },
  2890. paw: {
  2891. height: math.unit(1.29, "feet"),
  2892. name: "Paw",
  2893. image: {
  2894. source: "./media/characters/shingo/paw.svg"
  2895. }
  2896. },
  2897. hand: {
  2898. height: math.unit(1.07, "feet"),
  2899. name: "Hand",
  2900. image: {
  2901. source: "./media/characters/shingo/hand.svg"
  2902. }
  2903. },
  2904. frontAlt: {
  2905. height: math.unit(6, "feet"),
  2906. weight: math.unit(75, "kg"),
  2907. name: "Front (Alt)",
  2908. image: {
  2909. source: "./media/characters/shingo/front-alt.svg",
  2910. extra: 3511 / 3338,
  2911. bottom: 0.005
  2912. }
  2913. },
  2914. frontAlt2: {
  2915. height: math.unit(6, "feet"),
  2916. weight: math.unit(75, "kg"),
  2917. name: "Front (Alt 2)",
  2918. image: {
  2919. source: "./media/characters/shingo/front-alt-2.svg",
  2920. extra: 706/681,
  2921. bottom: 11/717
  2922. }
  2923. },
  2924. pawAlt: {
  2925. height: math.unit(1, "feet"),
  2926. name: "Paw (Alt)",
  2927. image: {
  2928. source: "./media/characters/shingo/paw-alt.svg"
  2929. }
  2930. },
  2931. },
  2932. [
  2933. {
  2934. name: "Micro",
  2935. height: math.unit(4, "inches")
  2936. },
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(6, "feet"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(108, "feet")
  2945. },
  2946. {
  2947. name: "Macro+",
  2948. height: math.unit(1500, "feet")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2954. {
  2955. side: {
  2956. height: math.unit(6, "feet"),
  2957. weight: math.unit(75, "kg"),
  2958. name: "Side",
  2959. image: {
  2960. source: "./media/characters/aigey/side.svg"
  2961. }
  2962. },
  2963. },
  2964. [
  2965. {
  2966. name: "Macro",
  2967. height: math.unit(200, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Megamacro",
  2972. height: math.unit(100, "miles")
  2973. },
  2974. ]
  2975. )
  2976. )
  2977. characterMakers.push(() => makeCharacter(
  2978. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2979. {
  2980. front: {
  2981. height: math.unit(5 + 5 / 12, "feet"),
  2982. weight: math.unit(75, "kg"),
  2983. name: "Front",
  2984. image: {
  2985. source: "./media/characters/natasha/front.svg",
  2986. extra: 859 / 824,
  2987. bottom: 23 / 879.6
  2988. }
  2989. },
  2990. frontNsfw: {
  2991. height: math.unit(5 + 5 / 12, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front (NSFW)",
  2994. image: {
  2995. source: "./media/characters/natasha/front-nsfw.svg",
  2996. extra: 859 / 824,
  2997. bottom: 23 / 879.6
  2998. }
  2999. },
  3000. frontErect: {
  3001. height: math.unit(5 + 5 / 12, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Front (Erect)",
  3004. image: {
  3005. source: "./media/characters/natasha/front-erect.svg",
  3006. extra: 859 / 824,
  3007. bottom: 23 / 879.6
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(5 + 5 / 12, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/natasha/back.svg",
  3016. extra: 887.9 / 852.6,
  3017. bottom: 9.7 / 896.4
  3018. }
  3019. },
  3020. backAlt: {
  3021. height: math.unit(5 + 5 / 12, "feet"),
  3022. weight: math.unit(75, "kg"),
  3023. name: "Back (Alt)",
  3024. image: {
  3025. source: "./media/characters/natasha/back-alt.svg",
  3026. extra: 1236.7 / 1192,
  3027. bottom: 22.3 / 1258.2
  3028. }
  3029. },
  3030. dick: {
  3031. height: math.unit(1.772, "feet"),
  3032. name: "Dick",
  3033. image: {
  3034. source: "./media/characters/natasha/dick.svg"
  3035. }
  3036. },
  3037. paw: {
  3038. height: math.unit(0.250, "meters"),
  3039. name: "Paw",
  3040. image: {
  3041. source: "./media/characters/natasha/paw.svg"
  3042. }
  3043. },
  3044. },
  3045. [
  3046. {
  3047. name: "Normal",
  3048. height: math.unit(5 + 5 / 12, "feet")
  3049. },
  3050. {
  3051. name: "Large",
  3052. height: math.unit(12, "feet")
  3053. },
  3054. {
  3055. name: "Macro",
  3056. height: math.unit(100, "feet"),
  3057. default: true
  3058. },
  3059. {
  3060. name: "Macro+",
  3061. height: math.unit(260, "feet")
  3062. },
  3063. {
  3064. name: "Macro++",
  3065. height: math.unit(1, "mile")
  3066. },
  3067. ]
  3068. ))
  3069. characterMakers.push(() => makeCharacter(
  3070. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3071. {
  3072. front: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front",
  3076. image: {
  3077. source: "./media/characters/malik/front.svg"
  3078. }
  3079. },
  3080. side: {
  3081. height: math.unit(6, "feet"),
  3082. weight: math.unit(75, "kg"),
  3083. name: "Side",
  3084. image: {
  3085. source: "./media/characters/malik/side.svg",
  3086. extra: 1.1539
  3087. }
  3088. },
  3089. back: {
  3090. height: math.unit(6, "feet"),
  3091. weight: math.unit(75, "kg"),
  3092. name: "Back",
  3093. image: {
  3094. source: "./media/characters/malik/back.svg"
  3095. }
  3096. },
  3097. },
  3098. [
  3099. {
  3100. name: "Macro",
  3101. height: math.unit(156, "feet"),
  3102. default: true
  3103. },
  3104. {
  3105. name: "Macro+",
  3106. height: math.unit(1188, "feet")
  3107. },
  3108. ]
  3109. ))
  3110. characterMakers.push(() => makeCharacter(
  3111. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3112. {
  3113. front: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Front",
  3117. image: {
  3118. source: "./media/characters/sefer/front.svg",
  3119. extra: 848 / 659,
  3120. bottom: 28.3 / 876.442
  3121. }
  3122. },
  3123. back: {
  3124. height: math.unit(6, "feet"),
  3125. weight: math.unit(75, "kg"),
  3126. name: "Back",
  3127. image: {
  3128. source: "./media/characters/sefer/back.svg",
  3129. extra: 864 / 695,
  3130. bottom: 10 / 871
  3131. }
  3132. },
  3133. frontDressed: {
  3134. height: math.unit(6, "feet"),
  3135. weight: math.unit(75, "kg"),
  3136. name: "Front (Dressed)",
  3137. image: {
  3138. source: "./media/characters/sefer/front-dressed.svg",
  3139. extra: 839 / 653,
  3140. bottom: 37.6 / 878
  3141. }
  3142. },
  3143. },
  3144. [
  3145. {
  3146. name: "Normal",
  3147. height: math.unit(6, "feet"),
  3148. default: true
  3149. },
  3150. ]
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3154. {
  3155. body: {
  3156. height: math.unit(2.2428, "meter"),
  3157. weight: math.unit(124.738, "kg"),
  3158. name: "Body",
  3159. image: {
  3160. extra: 1225 / 1050,
  3161. source: "./media/characters/north/front.svg"
  3162. }
  3163. }
  3164. },
  3165. [
  3166. {
  3167. name: "Micro",
  3168. height: math.unit(4, "inches")
  3169. },
  3170. {
  3171. name: "Macro",
  3172. height: math.unit(63, "meters")
  3173. },
  3174. {
  3175. name: "Megamacro",
  3176. height: math.unit(101, "miles"),
  3177. default: true
  3178. }
  3179. ]
  3180. ))
  3181. characterMakers.push(() => makeCharacter(
  3182. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3183. {
  3184. angled: {
  3185. height: math.unit(4, "meter"),
  3186. weight: math.unit(150, "kg"),
  3187. name: "Angled",
  3188. image: {
  3189. source: "./media/characters/talan/angled-sfw.svg",
  3190. bottom: 29 / 3734
  3191. }
  3192. },
  3193. angledNsfw: {
  3194. height: math.unit(4, "meter"),
  3195. weight: math.unit(150, "kg"),
  3196. name: "Angled (NSFW)",
  3197. image: {
  3198. source: "./media/characters/talan/angled-nsfw.svg",
  3199. bottom: 29 / 3734
  3200. }
  3201. },
  3202. frontNsfw: {
  3203. height: math.unit(4, "meter"),
  3204. weight: math.unit(150, "kg"),
  3205. name: "Front (NSFW)",
  3206. image: {
  3207. source: "./media/characters/talan/front-nsfw.svg",
  3208. bottom: 29 / 3734
  3209. }
  3210. },
  3211. sideNsfw: {
  3212. height: math.unit(4, "meter"),
  3213. weight: math.unit(150, "kg"),
  3214. name: "Side (NSFW)",
  3215. image: {
  3216. source: "./media/characters/talan/side-nsfw.svg",
  3217. bottom: 29 / 3734
  3218. }
  3219. },
  3220. back: {
  3221. height: math.unit(4, "meter"),
  3222. weight: math.unit(150, "kg"),
  3223. name: "Back",
  3224. image: {
  3225. source: "./media/characters/talan/back.svg"
  3226. }
  3227. },
  3228. dickBottom: {
  3229. height: math.unit(0.621, "meter"),
  3230. name: "Dick (Bottom)",
  3231. image: {
  3232. source: "./media/characters/talan/dick-bottom.svg"
  3233. }
  3234. },
  3235. dickTop: {
  3236. height: math.unit(0.621, "meter"),
  3237. name: "Dick (Top)",
  3238. image: {
  3239. source: "./media/characters/talan/dick-top.svg"
  3240. }
  3241. },
  3242. dickSide: {
  3243. height: math.unit(0.305, "meter"),
  3244. name: "Dick (Side)",
  3245. image: {
  3246. source: "./media/characters/talan/dick-side.svg"
  3247. }
  3248. },
  3249. dickFront: {
  3250. height: math.unit(0.305, "meter"),
  3251. name: "Dick (Front)",
  3252. image: {
  3253. source: "./media/characters/talan/dick-front.svg"
  3254. }
  3255. },
  3256. },
  3257. [
  3258. {
  3259. name: "Normal",
  3260. height: math.unit(4, "meters")
  3261. },
  3262. {
  3263. name: "Macro",
  3264. height: math.unit(100, "meters")
  3265. },
  3266. {
  3267. name: "Megamacro",
  3268. height: math.unit(2, "miles"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Gigamacro",
  3273. height: math.unit(5000, "miles")
  3274. },
  3275. {
  3276. name: "Teramacro",
  3277. height: math.unit(100, "parsecs")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(90, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/gael'rathus/front.svg"
  3290. }
  3291. },
  3292. frontAlt: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(90, "kg"),
  3295. name: "Front (alt)",
  3296. image: {
  3297. source: "./media/characters/gael'rathus/front-alt.svg"
  3298. }
  3299. },
  3300. frontAlt2: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(90, "kg"),
  3303. name: "Front (alt 2)",
  3304. image: {
  3305. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(9, "feet"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Large",
  3317. height: math.unit(25, "feet")
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(0.25, "miles")
  3322. },
  3323. {
  3324. name: "Megamacro",
  3325. height: math.unit(10, "miles")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3331. {
  3332. side: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(140, "kg"),
  3335. name: "Side",
  3336. image: {
  3337. source: "./media/characters/sosha/side.svg",
  3338. bottom: 0.042
  3339. }
  3340. },
  3341. },
  3342. [
  3343. {
  3344. name: "Normal",
  3345. height: math.unit(12, "feet"),
  3346. default: true
  3347. }
  3348. ]
  3349. ))
  3350. characterMakers.push(() => makeCharacter(
  3351. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3352. {
  3353. side: {
  3354. height: math.unit(5 + 5 / 12, "feet"),
  3355. weight: math.unit(170, "kg"),
  3356. name: "Side",
  3357. image: {
  3358. source: "./media/characters/runnola/side.svg",
  3359. extra: 741 / 448,
  3360. bottom: 0.05
  3361. }
  3362. },
  3363. },
  3364. [
  3365. {
  3366. name: "Small",
  3367. height: math.unit(3, "feet")
  3368. },
  3369. {
  3370. name: "Normal",
  3371. height: math.unit(5 + 5 / 12, "feet"),
  3372. default: true
  3373. },
  3374. {
  3375. name: "Big",
  3376. height: math.unit(10, "feet")
  3377. },
  3378. ]
  3379. ))
  3380. characterMakers.push(() => makeCharacter(
  3381. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3382. {
  3383. front: {
  3384. height: math.unit(2, "meter"),
  3385. weight: math.unit(50, "kg"),
  3386. name: "Front",
  3387. image: {
  3388. source: "./media/characters/kurribird/front.svg",
  3389. bottom: 0.015
  3390. }
  3391. },
  3392. frontAlt: {
  3393. height: math.unit(1.5, "meter"),
  3394. weight: math.unit(50, "kg"),
  3395. name: "Front (Alt)",
  3396. image: {
  3397. source: "./media/characters/kurribird/front-alt.svg",
  3398. extra: 1.45
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(7, "feet")
  3406. },
  3407. {
  3408. name: "Big",
  3409. height: math.unit(12, "feet"),
  3410. default: true
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(1500, "feet")
  3415. },
  3416. {
  3417. name: "Megamacro",
  3418. height: math.unit(2, "miles")
  3419. }
  3420. ]
  3421. ))
  3422. characterMakers.push(() => makeCharacter(
  3423. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3424. {
  3425. front: {
  3426. height: math.unit(2, "meter"),
  3427. weight: math.unit(80, "kg"),
  3428. name: "Front",
  3429. image: {
  3430. source: "./media/characters/elbial/front.svg",
  3431. extra: 1643 / 1556,
  3432. bottom: 60.2 / 1696
  3433. }
  3434. },
  3435. side: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(80, "kg"),
  3438. name: "Side",
  3439. image: {
  3440. source: "./media/characters/elbial/side.svg",
  3441. extra: 1630 / 1565,
  3442. bottom: 71.5 / 1697
  3443. }
  3444. },
  3445. back: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(80, "kg"),
  3448. name: "Back",
  3449. image: {
  3450. source: "./media/characters/elbial/back.svg",
  3451. extra: 1668 / 1595,
  3452. bottom: 5.6 / 1672
  3453. }
  3454. },
  3455. frontDressed: {
  3456. height: math.unit(2, "meter"),
  3457. weight: math.unit(80, "kg"),
  3458. name: "Front (Dressed)",
  3459. image: {
  3460. source: "./media/characters/elbial/front-dressed.svg",
  3461. extra: 1653 / 1584,
  3462. bottom: 57 / 1708
  3463. }
  3464. },
  3465. genitals: {
  3466. height: math.unit(2 / 3.367, "meter"),
  3467. name: "Genitals",
  3468. image: {
  3469. source: "./media/characters/elbial/genitals.svg"
  3470. }
  3471. },
  3472. },
  3473. [
  3474. {
  3475. name: "Large",
  3476. height: math.unit(100, "feet")
  3477. },
  3478. {
  3479. name: "Macro",
  3480. height: math.unit(500, "feet"),
  3481. default: true
  3482. },
  3483. {
  3484. name: "Megamacro",
  3485. height: math.unit(10, "miles")
  3486. },
  3487. {
  3488. name: "Gigamacro",
  3489. height: math.unit(25000, "miles")
  3490. },
  3491. {
  3492. name: "Full-Size",
  3493. height: math.unit(8000000, "gigaparsecs")
  3494. }
  3495. ]
  3496. ))
  3497. characterMakers.push(() => makeCharacter(
  3498. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3499. {
  3500. front: {
  3501. height: math.unit(2, "meter"),
  3502. weight: math.unit(60, "kg"),
  3503. name: "Front",
  3504. image: {
  3505. source: "./media/characters/noah/front.svg"
  3506. }
  3507. },
  3508. talons: {
  3509. height: math.unit(0.315, "meter"),
  3510. name: "Talons",
  3511. image: {
  3512. source: "./media/characters/noah/talons.svg"
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Large",
  3519. height: math.unit(50, "feet")
  3520. },
  3521. {
  3522. name: "Macro",
  3523. height: math.unit(750, "feet"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Megamacro",
  3528. height: math.unit(50, "miles")
  3529. },
  3530. {
  3531. name: "Gigamacro",
  3532. height: math.unit(100000, "miles")
  3533. },
  3534. {
  3535. name: "Full-Size",
  3536. height: math.unit(3000000000, "miles")
  3537. }
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(80, "kg"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/natalya/front.svg"
  3549. }
  3550. },
  3551. back: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(80, "kg"),
  3554. name: "Back",
  3555. image: {
  3556. source: "./media/characters/natalya/back.svg"
  3557. }
  3558. }
  3559. },
  3560. [
  3561. {
  3562. name: "Normal",
  3563. height: math.unit(150, "feet"),
  3564. default: true
  3565. },
  3566. {
  3567. name: "Megamacro",
  3568. height: math.unit(5, "miles")
  3569. },
  3570. {
  3571. name: "Full-Size",
  3572. height: math.unit(600, "kiloparsecs")
  3573. }
  3574. ]
  3575. ))
  3576. characterMakers.push(() => makeCharacter(
  3577. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3578. {
  3579. front: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(50, "kg"),
  3582. name: "Front",
  3583. image: {
  3584. source: "./media/characters/erestrebah/front.svg",
  3585. extra: 1262/1162,
  3586. bottom: 96/1358
  3587. }
  3588. },
  3589. back: {
  3590. height: math.unit(2, "meter"),
  3591. weight: math.unit(50, "kg"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/erestrebah/back.svg",
  3595. extra: 1257/1139,
  3596. bottom: 13/1270
  3597. }
  3598. },
  3599. wing: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(50, "kg"),
  3602. name: "Wing",
  3603. image: {
  3604. source: "./media/characters/erestrebah/wing.svg",
  3605. extra: 1262/1162,
  3606. bottom: 96/1358
  3607. }
  3608. },
  3609. mouth: {
  3610. height: math.unit(0.39, "feet"),
  3611. name: "Mouth",
  3612. image: {
  3613. source: "./media/characters/erestrebah/mouth.svg"
  3614. }
  3615. }
  3616. },
  3617. [
  3618. {
  3619. name: "Normal",
  3620. height: math.unit(10, "feet")
  3621. },
  3622. {
  3623. name: "Large",
  3624. height: math.unit(50, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(300, "feet")
  3630. },
  3631. {
  3632. name: "Macro+",
  3633. height: math.unit(750, "feet")
  3634. },
  3635. {
  3636. name: "Megamacro",
  3637. height: math.unit(3, "miles")
  3638. }
  3639. ]
  3640. ))
  3641. characterMakers.push(() => makeCharacter(
  3642. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3643. {
  3644. front: {
  3645. height: math.unit(2, "meter"),
  3646. weight: math.unit(80, "kg"),
  3647. name: "Front",
  3648. image: {
  3649. source: "./media/characters/jennifer/front.svg",
  3650. bottom: 0.11,
  3651. extra: 1.16
  3652. }
  3653. },
  3654. frontAlt: {
  3655. height: math.unit(2, "meter"),
  3656. weight: math.unit(80, "kg"),
  3657. name: "Front (Alt)",
  3658. image: {
  3659. source: "./media/characters/jennifer/front-alt.svg"
  3660. }
  3661. }
  3662. },
  3663. [
  3664. {
  3665. name: "Canon Height",
  3666. height: math.unit(120, "feet"),
  3667. default: true
  3668. },
  3669. {
  3670. name: "Macro+",
  3671. height: math.unit(300, "feet")
  3672. },
  3673. {
  3674. name: "Megamacro",
  3675. height: math.unit(20000, "feet")
  3676. }
  3677. ]
  3678. ))
  3679. characterMakers.push(() => makeCharacter(
  3680. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3681. {
  3682. front: {
  3683. height: math.unit(2, "meter"),
  3684. weight: math.unit(50, "kg"),
  3685. name: "Front",
  3686. image: {
  3687. source: "./media/characters/kalista/front.svg",
  3688. extra: 1314/1145,
  3689. bottom: 101/1415
  3690. }
  3691. },
  3692. back: {
  3693. height: math.unit(2, "meter"),
  3694. weight: math.unit(50, "kg"),
  3695. name: "Back",
  3696. image: {
  3697. source: "./media/characters/kalista/back.svg",
  3698. extra: 1366 / 1156,
  3699. bottom: 33.9 / 1362.78
  3700. }
  3701. }
  3702. },
  3703. [
  3704. {
  3705. name: "Uncomfortably Small",
  3706. height: math.unit(10, "feet")
  3707. },
  3708. {
  3709. name: "Small",
  3710. height: math.unit(30, "feet")
  3711. },
  3712. {
  3713. name: "Macro",
  3714. height: math.unit(100, "feet"),
  3715. default: true
  3716. },
  3717. {
  3718. name: "Macro+",
  3719. height: math.unit(2000, "feet")
  3720. },
  3721. {
  3722. name: "True Form",
  3723. height: math.unit(8924, "miles")
  3724. }
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3729. {
  3730. front: {
  3731. height: math.unit(2, "meter"),
  3732. weight: math.unit(120, "kg"),
  3733. name: "Front",
  3734. image: {
  3735. source: "./media/characters/ggv/front.svg"
  3736. }
  3737. },
  3738. side: {
  3739. height: math.unit(2, "meter"),
  3740. weight: math.unit(120, "kg"),
  3741. name: "Side",
  3742. image: {
  3743. source: "./media/characters/ggv/side.svg"
  3744. }
  3745. }
  3746. },
  3747. [
  3748. {
  3749. name: "Extremely Puny",
  3750. height: math.unit(9 + 5 / 12, "feet")
  3751. },
  3752. {
  3753. name: "Horribly Small",
  3754. height: math.unit(47.7, "miles"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Reasonably Sized",
  3759. height: math.unit(25000, "parsecs")
  3760. },
  3761. {
  3762. name: "Slightly Uncompressed",
  3763. height: math.unit(7.77e31, "parsecs")
  3764. },
  3765. {
  3766. name: "Omniversal",
  3767. height: math.unit(1e300, "meters")
  3768. },
  3769. ]
  3770. ))
  3771. characterMakers.push(() => makeCharacter(
  3772. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3773. {
  3774. front: {
  3775. height: math.unit(2, "meter"),
  3776. weight: math.unit(75, "lb"),
  3777. name: "Front",
  3778. image: {
  3779. source: "./media/characters/napalm/front.svg"
  3780. }
  3781. },
  3782. back: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(75, "lb"),
  3785. name: "Back",
  3786. image: {
  3787. source: "./media/characters/napalm/back.svg"
  3788. }
  3789. }
  3790. },
  3791. [
  3792. {
  3793. name: "Standard",
  3794. height: math.unit(55, "feet"),
  3795. default: true
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(7 + 5 / 6, "feet"),
  3804. weight: math.unit(325, "lb"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/asana/front.svg",
  3808. extra: 1133 / 1060,
  3809. bottom: 15.2 / 1148.6
  3810. }
  3811. },
  3812. back: {
  3813. height: math.unit(7 + 5 / 6, "feet"),
  3814. weight: math.unit(325, "lb"),
  3815. name: "Back",
  3816. image: {
  3817. source: "./media/characters/asana/back.svg",
  3818. extra: 1114 / 1043,
  3819. bottom: 5 / 1120
  3820. }
  3821. },
  3822. dressedDark: {
  3823. height: math.unit(7 + 5 / 6, "feet"),
  3824. weight: math.unit(325, "lb"),
  3825. name: "Dressed (Dark)",
  3826. image: {
  3827. source: "./media/characters/asana/dressed-dark.svg",
  3828. extra: 1133 / 1060,
  3829. bottom: 15.2 / 1148.6
  3830. }
  3831. },
  3832. dressedLight: {
  3833. height: math.unit(7 + 5 / 6, "feet"),
  3834. weight: math.unit(325, "lb"),
  3835. name: "Dressed (Light)",
  3836. image: {
  3837. source: "./media/characters/asana/dressed-light.svg",
  3838. extra: 1133 / 1060,
  3839. bottom: 15.2 / 1148.6
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Standard",
  3846. height: math.unit(7 + 5 / 6, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Large",
  3851. height: math.unit(10, "meters")
  3852. },
  3853. {
  3854. name: "Macro",
  3855. height: math.unit(2500, "meters")
  3856. },
  3857. {
  3858. name: "Megamacro",
  3859. height: math.unit(5e6, "meters")
  3860. },
  3861. {
  3862. name: "Examacro",
  3863. height: math.unit(5e12, "lightyears")
  3864. },
  3865. {
  3866. name: "Max Size",
  3867. height: math.unit(1e31, "lightyears")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(60, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/ebony/front.svg",
  3880. bottom: 0.03,
  3881. extra: 1045 / 810 + 0.03
  3882. }
  3883. },
  3884. side: {
  3885. height: math.unit(2, "meter"),
  3886. weight: math.unit(60, "kg"),
  3887. name: "Side",
  3888. image: {
  3889. source: "./media/characters/ebony/side.svg",
  3890. bottom: 0.03,
  3891. extra: 1045 / 810 + 0.03
  3892. }
  3893. },
  3894. back: {
  3895. height: math.unit(2, "meter"),
  3896. weight: math.unit(60, "kg"),
  3897. name: "Back",
  3898. image: {
  3899. source: "./media/characters/ebony/back.svg",
  3900. bottom: 0.01,
  3901. extra: 1045 / 810 + 0.01
  3902. }
  3903. },
  3904. },
  3905. [
  3906. // TODO check why I did this lol
  3907. {
  3908. name: "Standard",
  3909. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3910. default: true
  3911. },
  3912. {
  3913. name: "Macro",
  3914. height: math.unit(200, "feet")
  3915. },
  3916. {
  3917. name: "Gigamacro",
  3918. height: math.unit(13000, "km")
  3919. }
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(175, "lb"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/mountain/front.svg",
  3931. extra: 972 / 955,
  3932. bottom: 64 / 1036.6
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(175, "lb"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/mountain/back.svg",
  3941. extra: 970 / 950,
  3942. bottom: 28.25 / 999
  3943. }
  3944. },
  3945. },
  3946. [
  3947. {
  3948. name: "Large",
  3949. height: math.unit(20, "meters")
  3950. },
  3951. {
  3952. name: "Macro",
  3953. height: math.unit(300, "meters")
  3954. },
  3955. {
  3956. name: "Gigamacro",
  3957. height: math.unit(10000, "km"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Examacro",
  3962. height: math.unit(10e9, "lightyears")
  3963. }
  3964. ]
  3965. ))
  3966. characterMakers.push(() => makeCharacter(
  3967. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3968. {
  3969. front: {
  3970. height: math.unit(8, "feet"),
  3971. weight: math.unit(500, "lb"),
  3972. name: "Front",
  3973. image: {
  3974. source: "./media/characters/rick/front.svg"
  3975. }
  3976. }
  3977. },
  3978. [
  3979. {
  3980. name: "Normal",
  3981. height: math.unit(8, "feet"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Macro",
  3986. height: math.unit(5, "km")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(8, "feet"),
  3995. weight: math.unit(120, "lb"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/ona/front.svg"
  3999. }
  4000. },
  4001. frontAlt: {
  4002. height: math.unit(8, "feet"),
  4003. weight: math.unit(120, "lb"),
  4004. name: "Front (Alt)",
  4005. image: {
  4006. source: "./media/characters/ona/front-alt.svg"
  4007. }
  4008. },
  4009. back: {
  4010. height: math.unit(8, "feet"),
  4011. weight: math.unit(120, "lb"),
  4012. name: "Back",
  4013. image: {
  4014. source: "./media/characters/ona/back.svg"
  4015. }
  4016. },
  4017. foot: {
  4018. height: math.unit(1.1, "feet"),
  4019. name: "Foot",
  4020. image: {
  4021. source: "./media/characters/ona/foot.svg"
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Megamacro",
  4028. height: math.unit(70, "km"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Gigamacro",
  4033. height: math.unit(681818, "miles")
  4034. },
  4035. {
  4036. name: "Examacro",
  4037. height: math.unit(3800000, "lightyears")
  4038. },
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(12, "feet"),
  4046. weight: math.unit(3000, "lb"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/mech/front.svg",
  4050. extra: 2900 / 2770,
  4051. bottom: 110 / 3010
  4052. }
  4053. },
  4054. back: {
  4055. height: math.unit(12, "feet"),
  4056. weight: math.unit(3000, "lb"),
  4057. name: "Back",
  4058. image: {
  4059. source: "./media/characters/mech/back.svg",
  4060. extra: 3011 / 2890,
  4061. bottom: 94 / 3105
  4062. }
  4063. },
  4064. maw: {
  4065. height: math.unit(3.07, "feet"),
  4066. name: "Maw",
  4067. image: {
  4068. source: "./media/characters/mech/maw.svg"
  4069. }
  4070. },
  4071. head: {
  4072. height: math.unit(2.82, "feet"),
  4073. name: "Head",
  4074. image: {
  4075. source: "./media/characters/mech/head.svg"
  4076. }
  4077. },
  4078. dick: {
  4079. height: math.unit(1.43, "feet"),
  4080. name: "Dick",
  4081. image: {
  4082. source: "./media/characters/mech/dick.svg"
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Normal",
  4089. height: math.unit(12, "feet")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "feet"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Macro+",
  4098. height: math.unit(1500, "feet")
  4099. },
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(1.3, "meter"),
  4107. weight: math.unit(30, "kg"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/gregory/front.svg",
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(1.3, "meter"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(20, "meter")
  4123. }
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(2.8, "meter"),
  4131. weight: math.unit(200, "kg"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/elory/front.svg",
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(2.8, "meter"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Macro",
  4146. height: math.unit(38, "meter")
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4152. {
  4153. front: {
  4154. height: math.unit(470, "feet"),
  4155. weight: math.unit(924, "tons"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/angelpatamon/front.svg",
  4159. }
  4160. }
  4161. },
  4162. [
  4163. {
  4164. name: "Normal",
  4165. height: math.unit(470, "feet"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Deity Size I",
  4170. height: math.unit(28651.2, "km")
  4171. },
  4172. {
  4173. name: "Deity Size II",
  4174. height: math.unit(171907.2, "km")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4180. {
  4181. side: {
  4182. height: math.unit(7.2, "meter"),
  4183. weight: math.unit(8.2, "tons"),
  4184. name: "Side",
  4185. image: {
  4186. source: "./media/characters/cryae/side.svg",
  4187. extra: 3500 / 1500
  4188. }
  4189. }
  4190. },
  4191. [
  4192. {
  4193. name: "Normal",
  4194. height: math.unit(7.2, "meter"),
  4195. default: true
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4201. {
  4202. front: {
  4203. height: math.unit(6, "feet"),
  4204. weight: math.unit(175, "lb"),
  4205. name: "Front",
  4206. image: {
  4207. source: "./media/characters/xera/front.svg",
  4208. extra: 2377 / 1972,
  4209. bottom: 75.5 / 2452
  4210. }
  4211. },
  4212. side: {
  4213. height: math.unit(6, "feet"),
  4214. weight: math.unit(175, "lb"),
  4215. name: "Side",
  4216. image: {
  4217. source: "./media/characters/xera/side.svg",
  4218. extra: 2345 / 2019,
  4219. bottom: 39.7 / 2384
  4220. }
  4221. },
  4222. back: {
  4223. height: math.unit(6, "feet"),
  4224. weight: math.unit(175, "lb"),
  4225. name: "Back",
  4226. image: {
  4227. source: "./media/characters/xera/back.svg",
  4228. extra: 2095 / 1984,
  4229. bottom: 67 / 2166
  4230. }
  4231. },
  4232. },
  4233. [
  4234. {
  4235. name: "Small",
  4236. height: math.unit(10, "feet")
  4237. },
  4238. {
  4239. name: "Macro",
  4240. height: math.unit(500, "meters"),
  4241. default: true
  4242. },
  4243. {
  4244. name: "Macro+",
  4245. height: math.unit(10, "km")
  4246. },
  4247. {
  4248. name: "Gigamacro",
  4249. height: math.unit(25000, "km")
  4250. },
  4251. {
  4252. name: "Teramacro",
  4253. height: math.unit(3e6, "km")
  4254. }
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4259. {
  4260. front: {
  4261. height: math.unit(6, "feet"),
  4262. weight: math.unit(175, "lb"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/nebula/front.svg",
  4266. extra: 2566 / 2362,
  4267. bottom: 81 / 2644
  4268. }
  4269. }
  4270. },
  4271. [
  4272. {
  4273. name: "Small",
  4274. height: math.unit(4.5, "meters")
  4275. },
  4276. {
  4277. name: "Macro",
  4278. height: math.unit(1500, "meters"),
  4279. default: true
  4280. },
  4281. {
  4282. name: "Megamacro",
  4283. height: math.unit(150, "km")
  4284. },
  4285. {
  4286. name: "Gigamacro",
  4287. height: math.unit(27000, "km")
  4288. }
  4289. ]
  4290. ))
  4291. characterMakers.push(() => makeCharacter(
  4292. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4293. {
  4294. front: {
  4295. height: math.unit(6, "feet"),
  4296. weight: math.unit(225, "lb"),
  4297. name: "Front",
  4298. image: {
  4299. source: "./media/characters/abysgar/front.svg"
  4300. }
  4301. }
  4302. },
  4303. [
  4304. {
  4305. name: "Small",
  4306. height: math.unit(4.5, "meters")
  4307. },
  4308. {
  4309. name: "Macro",
  4310. height: math.unit(1250, "meters"),
  4311. default: true
  4312. },
  4313. {
  4314. name: "Megamacro",
  4315. height: math.unit(125, "km")
  4316. },
  4317. {
  4318. name: "Gigamacro",
  4319. height: math.unit(26000, "km")
  4320. }
  4321. ]
  4322. ))
  4323. characterMakers.push(() => makeCharacter(
  4324. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4325. {
  4326. front: {
  4327. height: math.unit(6, "feet"),
  4328. weight: math.unit(180, "lb"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/yakuz/front.svg"
  4332. }
  4333. }
  4334. },
  4335. [
  4336. {
  4337. name: "Small",
  4338. height: math.unit(5, "meters")
  4339. },
  4340. {
  4341. name: "Macro",
  4342. height: math.unit(1500, "meters"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Megamacro",
  4347. height: math.unit(200, "km")
  4348. },
  4349. {
  4350. name: "Gigamacro",
  4351. height: math.unit(100000, "km")
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4357. {
  4358. front: {
  4359. height: math.unit(6, "feet"),
  4360. weight: math.unit(175, "lb"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/mirova/front.svg",
  4364. extra: 3334 / 3071,
  4365. bottom: 42 / 3375.6
  4366. }
  4367. }
  4368. },
  4369. [
  4370. {
  4371. name: "Small",
  4372. height: math.unit(5, "meters")
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(900, "meters"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Megamacro",
  4381. height: math.unit(135, "km")
  4382. },
  4383. {
  4384. name: "Gigamacro",
  4385. height: math.unit(20000, "km")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4391. {
  4392. side: {
  4393. height: math.unit(28.35, "feet"),
  4394. weight: math.unit(99.75, "tons"),
  4395. name: "Side",
  4396. image: {
  4397. source: "./media/characters/asana-mech/side.svg",
  4398. extra: 923 / 699,
  4399. bottom: 50 / 975
  4400. }
  4401. },
  4402. chaingun: {
  4403. height: math.unit(7, "feet"),
  4404. weight: math.unit(2400, "lb"),
  4405. name: "Chaingun",
  4406. image: {
  4407. source: "./media/characters/asana-mech/chaingun.svg"
  4408. }
  4409. },
  4410. laser: {
  4411. height: math.unit(7.12, "feet"),
  4412. weight: math.unit(2000, "lb"),
  4413. name: "Laser",
  4414. image: {
  4415. source: "./media/characters/asana-mech/laser.svg"
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "Normal",
  4422. height: math.unit(28.35, "feet"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "Macro",
  4427. height: math.unit(2500, "feet")
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(25, "miles")
  4432. },
  4433. {
  4434. name: "Examacro",
  4435. height: math.unit(6e8, "lightyears")
  4436. },
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(5, "meters"),
  4444. weight: math.unit(1000, "kg"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/asche/front.svg",
  4448. extra: 1258 / 1190,
  4449. bottom: 47 / 1305
  4450. }
  4451. },
  4452. frontUnderwear: {
  4453. height: math.unit(5, "meters"),
  4454. weight: math.unit(1000, "kg"),
  4455. name: "Front (Underwear)",
  4456. image: {
  4457. source: "./media/characters/asche/front-underwear.svg",
  4458. extra: 1258 / 1190,
  4459. bottom: 47 / 1305
  4460. }
  4461. },
  4462. frontDressed: {
  4463. height: math.unit(5, "meters"),
  4464. weight: math.unit(1000, "kg"),
  4465. name: "Front (Dressed)",
  4466. image: {
  4467. source: "./media/characters/asche/front-dressed.svg",
  4468. extra: 1258 / 1190,
  4469. bottom: 47 / 1305
  4470. }
  4471. },
  4472. frontArmor: {
  4473. height: math.unit(5, "meters"),
  4474. weight: math.unit(1000, "kg"),
  4475. name: "Front (Armored)",
  4476. image: {
  4477. source: "./media/characters/asche/front-armored.svg",
  4478. extra: 1374 / 1308,
  4479. bottom: 23 / 1397
  4480. }
  4481. },
  4482. mp724: {
  4483. height: math.unit(0.96, "meters"),
  4484. weight: math.unit(38, "kg"),
  4485. name: "H&K MP724",
  4486. image: {
  4487. source: "./media/characters/asche/h&k-mp724.svg"
  4488. }
  4489. },
  4490. side: {
  4491. height: math.unit(5, "meters"),
  4492. weight: math.unit(1000, "kg"),
  4493. name: "Side",
  4494. image: {
  4495. source: "./media/characters/asche/side.svg",
  4496. extra: 1717 / 1609,
  4497. bottom: 0.005
  4498. }
  4499. },
  4500. back: {
  4501. height: math.unit(5, "meters"),
  4502. weight: math.unit(1000, "kg"),
  4503. name: "Back",
  4504. image: {
  4505. source: "./media/characters/asche/back.svg",
  4506. extra: 1570 / 1501
  4507. }
  4508. },
  4509. },
  4510. [
  4511. {
  4512. name: "DEFCON 5",
  4513. height: math.unit(5, "meters")
  4514. },
  4515. {
  4516. name: "DEFCON 4",
  4517. height: math.unit(500, "meters"),
  4518. default: true
  4519. },
  4520. {
  4521. name: "DEFCON 3",
  4522. height: math.unit(5, "km")
  4523. },
  4524. {
  4525. name: "DEFCON 2",
  4526. height: math.unit(500, "km")
  4527. },
  4528. {
  4529. name: "DEFCON 1",
  4530. height: math.unit(500000, "km")
  4531. },
  4532. {
  4533. name: "DEFCON 0",
  4534. height: math.unit(3, "gigaparsecs")
  4535. },
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4540. {
  4541. front: {
  4542. height: math.unit(2, "meters"),
  4543. weight: math.unit(76, "kg"),
  4544. name: "Front",
  4545. image: {
  4546. source: "./media/characters/gale/front.svg"
  4547. }
  4548. },
  4549. frontAlt1: {
  4550. height: math.unit(2, "meters"),
  4551. weight: math.unit(76, "kg"),
  4552. name: "Front (Alt 1)",
  4553. image: {
  4554. source: "./media/characters/gale/front-alt-1.svg"
  4555. }
  4556. },
  4557. frontAlt2: {
  4558. height: math.unit(2, "meters"),
  4559. weight: math.unit(76, "kg"),
  4560. name: "Front (Alt 2)",
  4561. image: {
  4562. source: "./media/characters/gale/front-alt-2.svg"
  4563. }
  4564. },
  4565. },
  4566. [
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(7, "feet")
  4570. },
  4571. {
  4572. name: "Macro",
  4573. height: math.unit(150, "feet"),
  4574. default: true
  4575. },
  4576. {
  4577. name: "Macro+",
  4578. height: math.unit(300, "feet")
  4579. },
  4580. ]
  4581. ))
  4582. characterMakers.push(() => makeCharacter(
  4583. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4584. {
  4585. front: {
  4586. height: math.unit(5 + 10/12, "feet"),
  4587. weight: math.unit(67, "kg"),
  4588. name: "Front",
  4589. image: {
  4590. source: "./media/characters/draylen/front.svg",
  4591. extra: 832/777,
  4592. bottom: 85/917
  4593. }
  4594. }
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(5 + 10/12, "feet")
  4600. },
  4601. {
  4602. name: "Macro",
  4603. height: math.unit(150, "feet"),
  4604. default: true
  4605. }
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4610. {
  4611. front: {
  4612. height: math.unit(7 + 9 / 12, "feet"),
  4613. weight: math.unit(379, "lbs"),
  4614. name: "Front",
  4615. image: {
  4616. source: "./media/characters/chez/front.svg"
  4617. }
  4618. },
  4619. side: {
  4620. height: math.unit(7 + 9 / 12, "feet"),
  4621. weight: math.unit(379, "lbs"),
  4622. name: "Side",
  4623. image: {
  4624. source: "./media/characters/chez/side.svg"
  4625. }
  4626. }
  4627. },
  4628. [
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(7 + 9 / 12, "feet"),
  4632. default: true
  4633. },
  4634. {
  4635. name: "God King",
  4636. height: math.unit(9750000, "meters")
  4637. }
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4642. {
  4643. front: {
  4644. height: math.unit(6, "feet"),
  4645. weight: math.unit(275, "lbs"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/kaylum/front.svg",
  4649. bottom: 0.01,
  4650. extra: 1166 / 1031
  4651. }
  4652. },
  4653. frontWingless: {
  4654. height: math.unit(6, "feet"),
  4655. weight: math.unit(275, "lbs"),
  4656. name: "Front (Wingless)",
  4657. image: {
  4658. source: "./media/characters/kaylum/front-wingless.svg",
  4659. bottom: 0.01,
  4660. extra: 1117 / 1031
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(3.05, "meters")
  4668. },
  4669. {
  4670. name: "Master",
  4671. height: math.unit(5.5, "meters")
  4672. },
  4673. {
  4674. name: "Rampage",
  4675. height: math.unit(19, "meters")
  4676. },
  4677. {
  4678. name: "Macro Lite",
  4679. height: math.unit(37, "meters")
  4680. },
  4681. {
  4682. name: "Hyper Predator",
  4683. height: math.unit(61, "meters")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(138, "meters"),
  4688. default: true
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(150, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/geta/front.svg"
  4701. }
  4702. }
  4703. },
  4704. [
  4705. {
  4706. name: "Micro",
  4707. height: math.unit(3, "inches"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Normal",
  4712. height: math.unit(5 + 5 / 12, "feet")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(6, "feet"),
  4721. weight: math.unit(300, "lbs"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/tyrnn/front.svg"
  4725. }
  4726. }
  4727. },
  4728. [
  4729. {
  4730. name: "Main Height",
  4731. height: math.unit(355, "feet"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Fave. Height",
  4736. height: math.unit(2400, "feet")
  4737. }
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(6, "feet"),
  4745. weight: math.unit(300, "lbs"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/appledectomy/front.svg"
  4749. }
  4750. }
  4751. },
  4752. [
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(2500, "feet")
  4756. },
  4757. {
  4758. name: "Megamacro",
  4759. height: math.unit(50, "miles"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Gigamacro",
  4764. height: math.unit(5000, "miles")
  4765. },
  4766. {
  4767. name: "Teramacro",
  4768. height: math.unit(250000, "miles")
  4769. },
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4774. {
  4775. front: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(200, "lbs"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/vulpes/front.svg",
  4781. extra: 573 / 543,
  4782. bottom: 0.033
  4783. }
  4784. },
  4785. side: {
  4786. height: math.unit(6, "feet"),
  4787. weight: math.unit(200, "lbs"),
  4788. name: "Side",
  4789. image: {
  4790. source: "./media/characters/vulpes/side.svg",
  4791. extra: 577 / 549,
  4792. bottom: 11 / 588
  4793. }
  4794. },
  4795. back: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(200, "lbs"),
  4798. name: "Back",
  4799. image: {
  4800. source: "./media/characters/vulpes/back.svg",
  4801. extra: 573 / 549,
  4802. bottom: 20 / 593
  4803. }
  4804. },
  4805. feet: {
  4806. height: math.unit(1.276, "feet"),
  4807. name: "Feet",
  4808. image: {
  4809. source: "./media/characters/vulpes/feet.svg"
  4810. }
  4811. },
  4812. maw: {
  4813. height: math.unit(1.18, "feet"),
  4814. name: "Maw",
  4815. image: {
  4816. source: "./media/characters/vulpes/maw.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Micro",
  4823. height: math.unit(2, "inches")
  4824. },
  4825. {
  4826. name: "Normal",
  4827. height: math.unit(6.3, "feet")
  4828. },
  4829. {
  4830. name: "Macro",
  4831. height: math.unit(850, "feet")
  4832. },
  4833. {
  4834. name: "Megamacro",
  4835. height: math.unit(7500, "feet"),
  4836. default: true
  4837. },
  4838. {
  4839. name: "Gigamacro",
  4840. height: math.unit(570000, "miles")
  4841. }
  4842. ]
  4843. ))
  4844. characterMakers.push(() => makeCharacter(
  4845. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4846. {
  4847. front: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(210, "lbs"),
  4850. name: "Front",
  4851. image: {
  4852. source: "./media/characters/rain-fallen/front.svg"
  4853. }
  4854. },
  4855. side: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(210, "lbs"),
  4858. name: "Side",
  4859. image: {
  4860. source: "./media/characters/rain-fallen/side.svg"
  4861. }
  4862. },
  4863. back: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(210, "lbs"),
  4866. name: "Back",
  4867. image: {
  4868. source: "./media/characters/rain-fallen/back.svg"
  4869. }
  4870. },
  4871. feral: {
  4872. height: math.unit(9, "feet"),
  4873. weight: math.unit(700, "lbs"),
  4874. name: "Feral",
  4875. image: {
  4876. source: "./media/characters/rain-fallen/feral.svg"
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Meddling with Mortals",
  4883. height: math.unit(8 + 8/12, "feet")
  4884. },
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(5, "meter")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(150, "meter"),
  4892. default: true
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(278e6, "meter")
  4897. },
  4898. {
  4899. name: "Gigamacro",
  4900. height: math.unit(2e9, "meter")
  4901. },
  4902. {
  4903. name: "Teramacro",
  4904. height: math.unit(8e12, "meter")
  4905. },
  4906. {
  4907. name: "Devourer",
  4908. height: math.unit(14, "zettameters")
  4909. },
  4910. {
  4911. name: "Scarlet King",
  4912. height: math.unit(18, "yottameters")
  4913. },
  4914. {
  4915. name: "Void",
  4916. height: math.unit(1e88, "yottameters")
  4917. }
  4918. ]
  4919. ))
  4920. characterMakers.push(() => makeCharacter(
  4921. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4922. {
  4923. standing: {
  4924. height: math.unit(6, "feet"),
  4925. weight: math.unit(180, "lbs"),
  4926. name: "Standing",
  4927. image: {
  4928. source: "./media/characters/zaakira/standing.svg",
  4929. extra: 1599/1504,
  4930. bottom: 39/1638
  4931. }
  4932. },
  4933. laying: {
  4934. height: math.unit(3, "feet"),
  4935. weight: math.unit(180, "lbs"),
  4936. name: "Laying",
  4937. image: {
  4938. source: "./media/characters/zaakira/laying.svg"
  4939. }
  4940. },
  4941. },
  4942. [
  4943. {
  4944. name: "Normal",
  4945. height: math.unit(12, "feet")
  4946. },
  4947. {
  4948. name: "Macro",
  4949. height: math.unit(279, "feet"),
  4950. default: true
  4951. }
  4952. ]
  4953. ))
  4954. characterMakers.push(() => makeCharacter(
  4955. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4956. {
  4957. femSfw: {
  4958. height: math.unit(8, "feet"),
  4959. weight: math.unit(350, "lb"),
  4960. name: "Fem",
  4961. image: {
  4962. source: "./media/characters/sigvald/fem-sfw.svg",
  4963. extra: 182 / 164,
  4964. bottom: 8.7 / 190.5
  4965. }
  4966. },
  4967. femNsfw: {
  4968. height: math.unit(8, "feet"),
  4969. weight: math.unit(350, "lb"),
  4970. name: "Fem (NSFW)",
  4971. image: {
  4972. source: "./media/characters/sigvald/fem-nsfw.svg",
  4973. extra: 182 / 164,
  4974. bottom: 8.7 / 190.5
  4975. }
  4976. },
  4977. maleNsfw: {
  4978. height: math.unit(8, "feet"),
  4979. weight: math.unit(350, "lb"),
  4980. name: "Male (NSFW)",
  4981. image: {
  4982. source: "./media/characters/sigvald/male-nsfw.svg",
  4983. extra: 182 / 164,
  4984. bottom: 8.7 / 190.5
  4985. }
  4986. },
  4987. hermNsfw: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(350, "lb"),
  4990. name: "Herm (NSFW)",
  4991. image: {
  4992. source: "./media/characters/sigvald/herm-nsfw.svg",
  4993. extra: 182 / 164,
  4994. bottom: 8.7 / 190.5
  4995. }
  4996. },
  4997. dick: {
  4998. height: math.unit(2.36, "feet"),
  4999. name: "Dick",
  5000. image: {
  5001. source: "./media/characters/sigvald/dick.svg"
  5002. }
  5003. },
  5004. eye: {
  5005. height: math.unit(0.31, "feet"),
  5006. name: "Eye",
  5007. image: {
  5008. source: "./media/characters/sigvald/eye.svg"
  5009. }
  5010. },
  5011. mouth: {
  5012. height: math.unit(0.92, "feet"),
  5013. name: "Mouth",
  5014. image: {
  5015. source: "./media/characters/sigvald/mouth.svg"
  5016. }
  5017. },
  5018. paws: {
  5019. height: math.unit(2.2, "feet"),
  5020. name: "Paws",
  5021. image: {
  5022. source: "./media/characters/sigvald/paws.svg"
  5023. }
  5024. }
  5025. },
  5026. [
  5027. {
  5028. name: "Normal",
  5029. height: math.unit(8, "feet")
  5030. },
  5031. {
  5032. name: "Large",
  5033. height: math.unit(12, "feet")
  5034. },
  5035. {
  5036. name: "Larger",
  5037. height: math.unit(20, "feet")
  5038. },
  5039. {
  5040. name: "Macro",
  5041. height: math.unit(150, "feet")
  5042. },
  5043. {
  5044. name: "Macro+",
  5045. height: math.unit(200, "feet"),
  5046. default: true
  5047. },
  5048. ]
  5049. ))
  5050. characterMakers.push(() => makeCharacter(
  5051. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5052. {
  5053. side: {
  5054. height: math.unit(12, "feet"),
  5055. weight: math.unit(2000, "kg"),
  5056. name: "Side",
  5057. image: {
  5058. source: "./media/characters/scott/side.svg",
  5059. extra: 754 / 724,
  5060. bottom: 0.069
  5061. }
  5062. },
  5063. upright: {
  5064. height: math.unit(12, "feet"),
  5065. weight: math.unit(2000, "kg"),
  5066. name: "Upright",
  5067. image: {
  5068. source: "./media/characters/scott/upright.svg",
  5069. extra: 3881 / 3722,
  5070. bottom: 0.05
  5071. }
  5072. },
  5073. },
  5074. [
  5075. {
  5076. name: "Normal",
  5077. height: math.unit(12, "feet"),
  5078. default: true
  5079. },
  5080. ]
  5081. ))
  5082. characterMakers.push(() => makeCharacter(
  5083. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5084. {
  5085. side: {
  5086. height: math.unit(8, "meters"),
  5087. weight: math.unit(84755, "lbs"),
  5088. name: "Side",
  5089. image: {
  5090. source: "./media/characters/tobias/side.svg",
  5091. extra: 1474 / 1096,
  5092. bottom: 38.9 / 1513.1235
  5093. }
  5094. },
  5095. },
  5096. [
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(8, "meters"),
  5100. default: true
  5101. },
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5106. {
  5107. front: {
  5108. height: math.unit(5.5, "feet"),
  5109. weight: math.unit(400, "lbs"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/kieran/front.svg",
  5113. extra: 2694 / 2364,
  5114. bottom: 217 / 2908
  5115. }
  5116. },
  5117. side: {
  5118. height: math.unit(5.5, "feet"),
  5119. weight: math.unit(400, "lbs"),
  5120. name: "Side",
  5121. image: {
  5122. source: "./media/characters/kieran/side.svg",
  5123. extra: 875 / 777,
  5124. bottom: 84.6 / 959
  5125. }
  5126. },
  5127. },
  5128. [
  5129. {
  5130. name: "Normal",
  5131. height: math.unit(5.5, "feet"),
  5132. default: true
  5133. },
  5134. ]
  5135. ))
  5136. characterMakers.push(() => makeCharacter(
  5137. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5138. {
  5139. side: {
  5140. height: math.unit(2, "meters"),
  5141. weight: math.unit(70, "kg"),
  5142. name: "Side",
  5143. image: {
  5144. source: "./media/characters/sanya/side.svg",
  5145. bottom: 0.02,
  5146. extra: 1.02
  5147. }
  5148. },
  5149. },
  5150. [
  5151. {
  5152. name: "Small",
  5153. height: math.unit(2, "meters")
  5154. },
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(3, "meters")
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(16, "meters"),
  5162. default: true
  5163. },
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5168. {
  5169. front: {
  5170. height: math.unit(2, "meters"),
  5171. weight: math.unit(120, "kg"),
  5172. name: "Front",
  5173. image: {
  5174. source: "./media/characters/miranda/front.svg",
  5175. extra: 195 / 185,
  5176. bottom: 10.9 / 206.5
  5177. }
  5178. },
  5179. back: {
  5180. height: math.unit(2, "meters"),
  5181. weight: math.unit(120, "kg"),
  5182. name: "Back",
  5183. image: {
  5184. source: "./media/characters/miranda/back.svg",
  5185. extra: 201 / 193,
  5186. bottom: 2.3 / 203.7
  5187. }
  5188. },
  5189. },
  5190. [
  5191. {
  5192. name: "Normal",
  5193. height: math.unit(10, "feet"),
  5194. default: true
  5195. }
  5196. ]
  5197. ))
  5198. characterMakers.push(() => makeCharacter(
  5199. { name: "James", species: ["deer"], tags: ["anthro"] },
  5200. {
  5201. side: {
  5202. height: math.unit(2, "meters"),
  5203. weight: math.unit(100, "kg"),
  5204. name: "Front",
  5205. image: {
  5206. source: "./media/characters/james/front.svg",
  5207. extra: 10 / 8.5
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(8.5, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5221. {
  5222. side: {
  5223. height: math.unit(9.5, "feet"),
  5224. weight: math.unit(2500, "lbs"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/heather/side.svg"
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(9.5, "feet"),
  5235. default: true
  5236. }
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5241. {
  5242. side: {
  5243. height: math.unit(6.5, "feet"),
  5244. weight: math.unit(400, "lbs"),
  5245. name: "Side",
  5246. image: {
  5247. source: "./media/characters/lukas/side.svg",
  5248. extra: 7.25 / 6.5
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(6.5, "feet"),
  5256. default: true
  5257. }
  5258. ]
  5259. ))
  5260. characterMakers.push(() => makeCharacter(
  5261. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5262. {
  5263. side: {
  5264. height: math.unit(5, "feet"),
  5265. weight: math.unit(3000, "lbs"),
  5266. name: "Side",
  5267. image: {
  5268. source: "./media/characters/louise/side.svg"
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(5, "feet"),
  5276. default: true
  5277. }
  5278. ]
  5279. ))
  5280. characterMakers.push(() => makeCharacter(
  5281. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5282. {
  5283. side: {
  5284. height: math.unit(6, "feet"),
  5285. weight: math.unit(150, "lbs"),
  5286. name: "Side",
  5287. image: {
  5288. source: "./media/characters/ramona/side.svg",
  5289. extra: 871/854,
  5290. bottom: 41/912
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(5.3, "meters"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Macro",
  5302. height: math.unit(20, "stories")
  5303. },
  5304. {
  5305. name: "Macro+",
  5306. height: math.unit(50, "stories")
  5307. },
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5312. {
  5313. standing: {
  5314. height: math.unit(5.75, "feet"),
  5315. weight: math.unit(160, "lbs"),
  5316. name: "Standing",
  5317. image: {
  5318. source: "./media/characters/deerpuff/standing.svg",
  5319. extra: 682 / 624
  5320. }
  5321. },
  5322. sitting: {
  5323. height: math.unit(5.75 / 1.79, "feet"),
  5324. weight: math.unit(160, "lbs"),
  5325. name: "Sitting",
  5326. image: {
  5327. source: "./media/characters/deerpuff/sitting.svg",
  5328. bottom: 44 / 400,
  5329. extra: 1
  5330. }
  5331. },
  5332. taurLaying: {
  5333. height: math.unit(6, "feet"),
  5334. weight: math.unit(400, "lbs"),
  5335. name: "Taur (Laying)",
  5336. image: {
  5337. source: "./media/characters/deerpuff/taur-laying.svg"
  5338. }
  5339. },
  5340. },
  5341. [
  5342. {
  5343. name: "Puffball",
  5344. height: math.unit(6, "inches")
  5345. },
  5346. {
  5347. name: "Normalpuff",
  5348. height: math.unit(5.75, "feet")
  5349. },
  5350. {
  5351. name: "Macropuff",
  5352. height: math.unit(1500, "feet"),
  5353. default: true
  5354. },
  5355. {
  5356. name: "Megapuff",
  5357. height: math.unit(500, "miles")
  5358. },
  5359. {
  5360. name: "Gigapuff",
  5361. height: math.unit(250000, "miles")
  5362. },
  5363. {
  5364. name: "Omegapuff",
  5365. height: math.unit(1000, "lightyears")
  5366. },
  5367. ]
  5368. ))
  5369. characterMakers.push(() => makeCharacter(
  5370. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5371. {
  5372. stomping: {
  5373. height: math.unit(6, "feet"),
  5374. weight: math.unit(170, "lbs"),
  5375. name: "Stomping",
  5376. image: {
  5377. source: "./media/characters/vivian/stomping.svg"
  5378. }
  5379. },
  5380. sitting: {
  5381. height: math.unit(6 / 1.75, "feet"),
  5382. weight: math.unit(170, "lbs"),
  5383. name: "Sitting",
  5384. image: {
  5385. source: "./media/characters/vivian/sitting.svg",
  5386. bottom: 1 / 6.4,
  5387. extra: 1,
  5388. }
  5389. },
  5390. },
  5391. [
  5392. {
  5393. name: "Normal",
  5394. height: math.unit(7, "feet"),
  5395. default: true
  5396. },
  5397. {
  5398. name: "Macro",
  5399. height: math.unit(10, "stories")
  5400. },
  5401. {
  5402. name: "Macro+",
  5403. height: math.unit(30, "stories")
  5404. },
  5405. {
  5406. name: "Megamacro",
  5407. height: math.unit(10, "miles")
  5408. },
  5409. {
  5410. name: "Megamacro+",
  5411. height: math.unit(2750000, "meters")
  5412. },
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5417. {
  5418. front: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(160, "lbs"),
  5421. name: "Front",
  5422. image: {
  5423. source: "./media/characters/prince/front.svg",
  5424. extra: 3400 / 3000
  5425. }
  5426. },
  5427. jumping: {
  5428. height: math.unit(6, "feet"),
  5429. weight: math.unit(160, "lbs"),
  5430. name: "Jumping",
  5431. image: {
  5432. source: "./media/characters/prince/jump.svg",
  5433. extra: 2555 / 2134
  5434. }
  5435. },
  5436. },
  5437. [
  5438. {
  5439. name: "Normal",
  5440. height: math.unit(7.75, "feet"),
  5441. default: true
  5442. },
  5443. {
  5444. name: "Not cute",
  5445. height: math.unit(17, "feet")
  5446. },
  5447. {
  5448. name: "I said NOT",
  5449. height: math.unit(91, "feet")
  5450. },
  5451. {
  5452. name: "Please stop",
  5453. height: math.unit(560, "feet")
  5454. },
  5455. {
  5456. name: "What have you done",
  5457. height: math.unit(2200, "feet")
  5458. },
  5459. {
  5460. name: "Deer God",
  5461. height: math.unit(3.6, "miles")
  5462. },
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5467. {
  5468. standing: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(300, "lbs"),
  5471. name: "Standing",
  5472. image: {
  5473. source: "./media/characters/psymon/standing.svg",
  5474. extra: 1888 / 1810,
  5475. bottom: 0.05
  5476. }
  5477. },
  5478. slithering: {
  5479. height: math.unit(6, "feet"),
  5480. weight: math.unit(300, "lbs"),
  5481. name: "Slithering",
  5482. image: {
  5483. source: "./media/characters/psymon/slithering.svg",
  5484. extra: 1330 / 1224
  5485. }
  5486. },
  5487. slitheringAlt: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(300, "lbs"),
  5490. name: "Slithering (Alt)",
  5491. image: {
  5492. source: "./media/characters/psymon/slithering-alt.svg",
  5493. extra: 1330 / 1224
  5494. }
  5495. },
  5496. },
  5497. [
  5498. {
  5499. name: "Normal",
  5500. height: math.unit(11.25, "feet"),
  5501. default: true
  5502. },
  5503. {
  5504. name: "Large",
  5505. height: math.unit(27, "feet")
  5506. },
  5507. {
  5508. name: "Giant",
  5509. height: math.unit(87, "feet")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(365, "feet")
  5514. },
  5515. {
  5516. name: "Megamacro",
  5517. height: math.unit(3, "miles")
  5518. },
  5519. {
  5520. name: "World Serpent",
  5521. height: math.unit(8000, "miles")
  5522. },
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5527. {
  5528. front: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(180, "lbs"),
  5531. name: "Front",
  5532. image: {
  5533. source: "./media/characters/daimos/front.svg",
  5534. extra: 4160 / 3897,
  5535. bottom: 0.021
  5536. }
  5537. }
  5538. },
  5539. [
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(8, "feet"),
  5543. default: true
  5544. },
  5545. {
  5546. name: "Big Dog",
  5547. height: math.unit(22, "feet")
  5548. },
  5549. {
  5550. name: "Macro",
  5551. height: math.unit(127, "feet")
  5552. },
  5553. {
  5554. name: "Megamacro",
  5555. height: math.unit(3600, "feet")
  5556. },
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5561. {
  5562. side: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(180, "lbs"),
  5565. name: "Side",
  5566. image: {
  5567. source: "./media/characters/blake/side.svg",
  5568. extra: 1212 / 1120,
  5569. bottom: 0.05
  5570. }
  5571. },
  5572. crouched: {
  5573. height: math.unit(6 * 0.57, "feet"),
  5574. weight: math.unit(180, "lbs"),
  5575. name: "Crouched",
  5576. image: {
  5577. source: "./media/characters/blake/crouched.svg",
  5578. extra: 840 / 587,
  5579. bottom: 0.04
  5580. }
  5581. },
  5582. bent: {
  5583. height: math.unit(6 * 0.75, "feet"),
  5584. weight: math.unit(180, "lbs"),
  5585. name: "Bent",
  5586. image: {
  5587. source: "./media/characters/blake/bent.svg",
  5588. extra: 592 / 544,
  5589. bottom: 0.035
  5590. }
  5591. },
  5592. },
  5593. [
  5594. {
  5595. name: "Normal",
  5596. height: math.unit(8 + 1 / 6, "feet"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Big Backside",
  5601. height: math.unit(37, "feet")
  5602. },
  5603. {
  5604. name: "Subway Shredder",
  5605. height: math.unit(72, "feet")
  5606. },
  5607. {
  5608. name: "City Carver",
  5609. height: math.unit(1675, "feet")
  5610. },
  5611. {
  5612. name: "Tectonic Tweaker",
  5613. height: math.unit(2300, "miles")
  5614. },
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(180, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/guisetto/front.svg",
  5626. extra: 856 / 817,
  5627. bottom: 0.06
  5628. }
  5629. },
  5630. airborne: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(180, "lbs"),
  5633. name: "Airborne",
  5634. image: {
  5635. source: "./media/characters/guisetto/airborne.svg",
  5636. extra: 584 / 525
  5637. }
  5638. },
  5639. },
  5640. [
  5641. {
  5642. name: "Normal",
  5643. height: math.unit(10 + 11 / 12, "feet"),
  5644. default: true
  5645. },
  5646. {
  5647. name: "Large",
  5648. height: math.unit(35, "feet")
  5649. },
  5650. {
  5651. name: "Macro",
  5652. height: math.unit(475, "feet")
  5653. },
  5654. ]
  5655. ))
  5656. characterMakers.push(() => makeCharacter(
  5657. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5658. {
  5659. front: {
  5660. height: math.unit(6, "feet"),
  5661. weight: math.unit(180, "lbs"),
  5662. name: "Front",
  5663. image: {
  5664. source: "./media/characters/luxor/front.svg",
  5665. extra: 2940 / 2152
  5666. }
  5667. },
  5668. back: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(180, "lbs"),
  5671. name: "Back",
  5672. image: {
  5673. source: "./media/characters/luxor/back.svg",
  5674. extra: 1083 / 960
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5 + 5 / 6, "feet"),
  5682. default: true
  5683. },
  5684. {
  5685. name: "Lamp",
  5686. height: math.unit(50, "feet")
  5687. },
  5688. {
  5689. name: "Lämp",
  5690. height: math.unit(300, "feet")
  5691. },
  5692. {
  5693. name: "The sun is a lamp",
  5694. height: math.unit(250000, "miles")
  5695. },
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5700. {
  5701. front: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(50, "lbs"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/huoyan/front.svg"
  5707. }
  5708. },
  5709. side: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(180, "lbs"),
  5712. name: "Side",
  5713. image: {
  5714. source: "./media/characters/huoyan/side.svg"
  5715. }
  5716. },
  5717. },
  5718. [
  5719. {
  5720. name: "Chef",
  5721. height: math.unit(9, "feet")
  5722. },
  5723. {
  5724. name: "Normal",
  5725. height: math.unit(65, "feet"),
  5726. default: true
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(780, "feet")
  5731. },
  5732. {
  5733. name: "Flaming Mountain",
  5734. height: math.unit(4.8, "miles")
  5735. },
  5736. {
  5737. name: "Celestial",
  5738. height: math.unit(765000, "miles")
  5739. },
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(5 + 3 / 4, "feet"),
  5747. weight: math.unit(120, "lbs"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/tails/front.svg"
  5751. }
  5752. }
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(5 + 3 / 4, "feet"),
  5758. default: true
  5759. }
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(4, "feet"),
  5767. weight: math.unit(50, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/rainy/front.svg"
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Macro",
  5777. height: math.unit(800, "feet"),
  5778. default: true
  5779. }
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(150, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/rainier/front.svg"
  5791. }
  5792. }
  5793. },
  5794. [
  5795. {
  5796. name: "Micro",
  5797. height: math.unit(2, "mm"),
  5798. default: true
  5799. }
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(8 + 4/12, "feet"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/andy-renard/front.svg",
  5810. extra: 1839/1726,
  5811. bottom: 134/1973
  5812. }
  5813. },
  5814. back: {
  5815. height: math.unit(8 + 4/12, "feet"),
  5816. name: "Back",
  5817. image: {
  5818. source: "./media/characters/andy-renard/back.svg",
  5819. extra: 1838/1710,
  5820. bottom: 105/1943
  5821. }
  5822. },
  5823. },
  5824. [
  5825. {
  5826. name: "Tall",
  5827. height: math.unit(8 + 4/12, "feet")
  5828. },
  5829. {
  5830. name: "Mini Macro",
  5831. height: math.unit(15, "feet"),
  5832. default: true
  5833. },
  5834. {
  5835. name: "Macro",
  5836. height: math.unit(100, "feet")
  5837. },
  5838. {
  5839. name: "Mega Macro",
  5840. height: math.unit(1000, "feet")
  5841. },
  5842. {
  5843. name: "Giga Macro",
  5844. height: math.unit(10, "miles")
  5845. },
  5846. {
  5847. name: "God Macro",
  5848. height: math.unit(1, "multiverse")
  5849. },
  5850. ]
  5851. ))
  5852. characterMakers.push(() => makeCharacter(
  5853. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5854. {
  5855. front: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(210, "lbs"),
  5858. name: "Front",
  5859. image: {
  5860. source: "./media/characters/cimmaron/front-sfw.svg",
  5861. extra: 701 / 676,
  5862. bottom: 0.046
  5863. }
  5864. },
  5865. back: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(210, "lbs"),
  5868. name: "Back",
  5869. image: {
  5870. source: "./media/characters/cimmaron/back-sfw.svg",
  5871. extra: 701 / 676,
  5872. bottom: 0.046
  5873. }
  5874. },
  5875. frontNsfw: {
  5876. height: math.unit(6, "feet"),
  5877. weight: math.unit(210, "lbs"),
  5878. name: "Front (NSFW)",
  5879. image: {
  5880. source: "./media/characters/cimmaron/front-nsfw.svg",
  5881. extra: 701 / 676,
  5882. bottom: 0.046
  5883. }
  5884. },
  5885. backNsfw: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(210, "lbs"),
  5888. name: "Back (NSFW)",
  5889. image: {
  5890. source: "./media/characters/cimmaron/back-nsfw.svg",
  5891. extra: 701 / 676,
  5892. bottom: 0.046
  5893. }
  5894. },
  5895. dick: {
  5896. height: math.unit(1.714, "feet"),
  5897. name: "Dick",
  5898. image: {
  5899. source: "./media/characters/cimmaron/dick.svg"
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(6, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Macro Mayor",
  5911. height: math.unit(350, "meters")
  5912. },
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(200, "lbs"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/akari/front.svg",
  5924. extra: 962 / 901,
  5925. bottom: 0.04
  5926. }
  5927. }
  5928. },
  5929. [
  5930. {
  5931. name: "Micro",
  5932. height: math.unit(5, "inches"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Normal",
  5937. height: math.unit(7, "feet")
  5938. },
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(140, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/cynosura/front.svg",
  5950. extra: 896 / 847
  5951. }
  5952. },
  5953. back: {
  5954. height: math.unit(6, "feet"),
  5955. weight: math.unit(140, "lbs"),
  5956. name: "Back",
  5957. image: {
  5958. source: "./media/characters/cynosura/back.svg",
  5959. extra: 1365 / 1250
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Micro",
  5966. height: math.unit(4, "inches")
  5967. },
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(5.75, "feet"),
  5971. default: true
  5972. },
  5973. {
  5974. name: "Tall",
  5975. height: math.unit(10, "feet")
  5976. },
  5977. {
  5978. name: "Big",
  5979. height: math.unit(20, "feet")
  5980. },
  5981. {
  5982. name: "Macro",
  5983. height: math.unit(50, "feet")
  5984. },
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5989. {
  5990. front: {
  5991. height: math.unit(13 + 2/12, "feet"),
  5992. weight: math.unit(800, "kg"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/gin/front.svg",
  5996. extra: 1312/1191,
  5997. bottom: 45/1357
  5998. }
  5999. },
  6000. mouth: {
  6001. height: math.unit(2.39 * 1.8, "feet"),
  6002. name: "Mouth",
  6003. image: {
  6004. source: "./media/characters/gin/mouth.svg"
  6005. }
  6006. },
  6007. hand: {
  6008. height: math.unit(1.57 * 2.19, "feet"),
  6009. name: "Hand",
  6010. image: {
  6011. source: "./media/characters/gin/hand.svg"
  6012. }
  6013. },
  6014. foot: {
  6015. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6016. name: "Foot",
  6017. image: {
  6018. source: "./media/characters/gin/foot.svg"
  6019. }
  6020. },
  6021. sole: {
  6022. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6023. name: "Sole",
  6024. image: {
  6025. source: "./media/characters/gin/sole.svg"
  6026. }
  6027. },
  6028. },
  6029. [
  6030. {
  6031. name: "Very Small",
  6032. height: math.unit(13 + 2 / 12, "feet")
  6033. },
  6034. {
  6035. name: "Micro",
  6036. height: math.unit(600, "miles")
  6037. },
  6038. {
  6039. name: "Regular",
  6040. height: math.unit(20, "earths"),
  6041. default: true
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(2.2, "solarradii")
  6046. },
  6047. {
  6048. name: "Teramacro",
  6049. height: math.unit(1.2, "galaxies")
  6050. },
  6051. {
  6052. name: "Omegamacro",
  6053. height: math.unit(200, "universes")
  6054. },
  6055. ]
  6056. ))
  6057. characterMakers.push(() => makeCharacter(
  6058. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6059. {
  6060. front: {
  6061. height: math.unit(6 + 1 / 6, "feet"),
  6062. weight: math.unit(178, "lbs"),
  6063. name: "Front",
  6064. image: {
  6065. source: "./media/characters/guy/front.svg"
  6066. }
  6067. }
  6068. },
  6069. [
  6070. {
  6071. name: "Normal",
  6072. height: math.unit(6 + 1 / 6, "feet"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Large",
  6077. height: math.unit(25 + 7 / 12, "feet")
  6078. },
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(60 + 9 / 12, "feet")
  6082. },
  6083. {
  6084. name: "Macro+",
  6085. height: math.unit(246, "feet")
  6086. },
  6087. {
  6088. name: "Macro++",
  6089. height: math.unit(878, "feet")
  6090. }
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6095. {
  6096. front: {
  6097. height: math.unit(9, "feet"),
  6098. weight: math.unit(800, "lbs"),
  6099. name: "Front",
  6100. image: {
  6101. source: "./media/characters/tiberius/front.svg",
  6102. extra: 2295 / 2071
  6103. }
  6104. },
  6105. back: {
  6106. height: math.unit(9, "feet"),
  6107. weight: math.unit(800, "lbs"),
  6108. name: "Back",
  6109. image: {
  6110. source: "./media/characters/tiberius/back.svg",
  6111. extra: 2373 / 2160
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(9, "feet"),
  6119. default: true
  6120. }
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6125. {
  6126. front: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(600, "lbs"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/surgo/front.svg",
  6132. extra: 3591 / 2227
  6133. }
  6134. },
  6135. back: {
  6136. height: math.unit(6, "feet"),
  6137. weight: math.unit(600, "lbs"),
  6138. name: "Back",
  6139. image: {
  6140. source: "./media/characters/surgo/back.svg",
  6141. extra: 3557 / 2228
  6142. }
  6143. },
  6144. laying: {
  6145. height: math.unit(6 * 0.85, "feet"),
  6146. weight: math.unit(600, "lbs"),
  6147. name: "Laying",
  6148. image: {
  6149. source: "./media/characters/surgo/laying.svg"
  6150. }
  6151. },
  6152. },
  6153. [
  6154. {
  6155. name: "Normal",
  6156. height: math.unit(6, "feet"),
  6157. default: true
  6158. }
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6163. {
  6164. side: {
  6165. height: math.unit(6, "feet"),
  6166. weight: math.unit(150, "lbs"),
  6167. name: "Side",
  6168. image: {
  6169. source: "./media/characters/cibus/side.svg",
  6170. extra: 800 / 400
  6171. }
  6172. },
  6173. },
  6174. [
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(6, "feet"),
  6178. default: true
  6179. }
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6184. {
  6185. front: {
  6186. height: math.unit(6, "feet"),
  6187. weight: math.unit(240, "lbs"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/nibbles/front.svg"
  6191. }
  6192. },
  6193. side: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(240, "lbs"),
  6196. name: "Side",
  6197. image: {
  6198. source: "./media/characters/nibbles/side.svg"
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(9, "feet"),
  6206. default: true
  6207. }
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6212. {
  6213. side: {
  6214. height: math.unit(5 + 1 / 6, "feet"),
  6215. weight: math.unit(130, "lbs"),
  6216. name: "Side",
  6217. image: {
  6218. source: "./media/characters/rikky/side.svg",
  6219. extra: 851 / 801
  6220. }
  6221. },
  6222. },
  6223. [
  6224. {
  6225. name: "Normal",
  6226. height: math.unit(5 + 1 / 6, "feet")
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(152, "feet"),
  6231. default: true
  6232. },
  6233. {
  6234. name: "Megamacro",
  6235. height: math.unit(7, "miles")
  6236. }
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6241. {
  6242. side: {
  6243. height: math.unit(370, "cm"),
  6244. weight: math.unit(350, "lbs"),
  6245. name: "Side",
  6246. image: {
  6247. source: "./media/characters/malfressa/side.svg"
  6248. }
  6249. },
  6250. walking: {
  6251. height: math.unit(370, "cm"),
  6252. weight: math.unit(350, "lbs"),
  6253. name: "Walking",
  6254. image: {
  6255. source: "./media/characters/malfressa/walking.svg"
  6256. }
  6257. },
  6258. feral: {
  6259. height: math.unit(2500, "cm"),
  6260. weight: math.unit(100000, "lbs"),
  6261. name: "Feral",
  6262. image: {
  6263. source: "./media/characters/malfressa/feral.svg",
  6264. extra: 2108 / 837,
  6265. bottom: 0.02
  6266. }
  6267. },
  6268. },
  6269. [
  6270. {
  6271. name: "Normal",
  6272. height: math.unit(370, "cm")
  6273. },
  6274. {
  6275. name: "Macro",
  6276. height: math.unit(300, "meters"),
  6277. default: true
  6278. }
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6283. {
  6284. front: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(60, "kg"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/jaro/front.svg"
  6290. }
  6291. },
  6292. back: {
  6293. height: math.unit(6, "feet"),
  6294. weight: math.unit(60, "kg"),
  6295. name: "Back",
  6296. image: {
  6297. source: "./media/characters/jaro/back.svg"
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Micro",
  6304. height: math.unit(7, "inches")
  6305. },
  6306. {
  6307. name: "Normal",
  6308. height: math.unit(5.5, "feet"),
  6309. default: true
  6310. },
  6311. {
  6312. name: "Minimacro",
  6313. height: math.unit(20, "feet")
  6314. },
  6315. {
  6316. name: "Macro",
  6317. height: math.unit(200, "meters")
  6318. }
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6323. {
  6324. front: {
  6325. height: math.unit(6, "feet"),
  6326. weight: math.unit(195, "lb"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/rogue/front.svg"
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Macro",
  6336. height: math.unit(90, "feet"),
  6337. default: true
  6338. },
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(5 + 8 / 12, "feet"),
  6346. weight: math.unit(140, "lb"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/piper/front.svg",
  6350. extra: 3948/3655,
  6351. bottom: 0/3948
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Micro",
  6358. height: math.unit(2, "inches")
  6359. },
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(5 + 8 / 12, "feet")
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(250, "feet"),
  6367. default: true
  6368. },
  6369. {
  6370. name: "Megamacro",
  6371. height: math.unit(7, "miles")
  6372. },
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6377. {
  6378. front: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(220, "lb"),
  6381. name: "Front",
  6382. image: {
  6383. source: "./media/characters/gemini/front.svg"
  6384. }
  6385. },
  6386. back: {
  6387. height: math.unit(6, "feet"),
  6388. weight: math.unit(220, "lb"),
  6389. name: "Back",
  6390. image: {
  6391. source: "./media/characters/gemini/back.svg"
  6392. }
  6393. },
  6394. kneeling: {
  6395. height: math.unit(6 / 1.5, "feet"),
  6396. weight: math.unit(220, "lb"),
  6397. name: "Kneeling",
  6398. image: {
  6399. source: "./media/characters/gemini/kneeling.svg",
  6400. bottom: 0.02
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(300, "meters"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Megamacro",
  6412. height: math.unit(6900, "meters")
  6413. },
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6418. {
  6419. anthro: {
  6420. height: math.unit(2.35, "meters"),
  6421. weight: math.unit(73, "kg"),
  6422. name: "Anthro",
  6423. image: {
  6424. source: "./media/characters/alicia/anthro.svg",
  6425. extra: 2571 / 2385,
  6426. bottom: 75 / 2648
  6427. }
  6428. },
  6429. paw: {
  6430. height: math.unit(1.32, "feet"),
  6431. name: "Paw",
  6432. image: {
  6433. source: "./media/characters/alicia/paw.svg"
  6434. }
  6435. },
  6436. feral: {
  6437. height: math.unit(1.69, "meters"),
  6438. weight: math.unit(73, "kg"),
  6439. name: "Feral",
  6440. image: {
  6441. source: "./media/characters/alicia/feral.svg",
  6442. extra: 2123 / 1715,
  6443. bottom: 222 / 2349
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(2.35, "meters")
  6451. },
  6452. {
  6453. name: "Macro",
  6454. height: math.unit(60, "meters"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Megamacro",
  6459. height: math.unit(10000, "kilometers")
  6460. },
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(7, "feet"),
  6468. weight: math.unit(250, "lbs"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/archy/front.svg"
  6472. }
  6473. }
  6474. },
  6475. [
  6476. {
  6477. name: "Micro",
  6478. height: math.unit(1, "inch")
  6479. },
  6480. {
  6481. name: "Shorty",
  6482. height: math.unit(5, "feet")
  6483. },
  6484. {
  6485. name: "Normal",
  6486. height: math.unit(7, "feet")
  6487. },
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(600, "meters"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Megamacro",
  6495. height: math.unit(1, "mile")
  6496. },
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(1.65, "meters"),
  6504. weight: math.unit(74, "kg"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/berri/front.svg",
  6508. extra: 857 / 837,
  6509. bottom: 18 / 877
  6510. }
  6511. },
  6512. bum: {
  6513. height: math.unit(1.46, "feet"),
  6514. name: "Bum",
  6515. image: {
  6516. source: "./media/characters/berri/bum.svg"
  6517. }
  6518. },
  6519. mouth: {
  6520. height: math.unit(0.44, "feet"),
  6521. name: "Mouth",
  6522. image: {
  6523. source: "./media/characters/berri/mouth.svg"
  6524. }
  6525. },
  6526. paw: {
  6527. height: math.unit(0.826, "feet"),
  6528. name: "Paw",
  6529. image: {
  6530. source: "./media/characters/berri/paw.svg"
  6531. }
  6532. },
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(1.65, "meters")
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(60, "m"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(9.213, "km")
  6547. },
  6548. {
  6549. name: "Planet Eater",
  6550. height: math.unit(489, "megameters")
  6551. },
  6552. {
  6553. name: "Teramacro",
  6554. height: math.unit(2471635000000, "meters")
  6555. },
  6556. {
  6557. name: "Examacro",
  6558. height: math.unit(8.0624e+26, "meters")
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(1.72, "meters"),
  6567. weight: math.unit(68, "kg"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/lexi/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Very Smol",
  6577. height: math.unit(10, "mm")
  6578. },
  6579. {
  6580. name: "Micro",
  6581. height: math.unit(6.8, "cm"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Normal",
  6586. height: math.unit(1.72, "m")
  6587. }
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(1.69, "meters"),
  6595. weight: math.unit(68, "kg"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/martin/front.svg",
  6599. extra: 596 / 581
  6600. }
  6601. }
  6602. },
  6603. [
  6604. {
  6605. name: "Micro",
  6606. height: math.unit(6.85, "cm"),
  6607. default: true
  6608. },
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(1.69, "m")
  6612. }
  6613. ]
  6614. ))
  6615. characterMakers.push(() => makeCharacter(
  6616. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6617. {
  6618. front: {
  6619. height: math.unit(1.69, "meters"),
  6620. weight: math.unit(68, "kg"),
  6621. name: "Front",
  6622. image: {
  6623. source: "./media/characters/juno/front.svg"
  6624. }
  6625. }
  6626. },
  6627. [
  6628. {
  6629. name: "Micro",
  6630. height: math.unit(7, "cm")
  6631. },
  6632. {
  6633. name: "Normal",
  6634. height: math.unit(1.89, "m")
  6635. },
  6636. {
  6637. name: "Macro",
  6638. height: math.unit(353, "meters"),
  6639. default: true
  6640. }
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(1.93, "meters"),
  6648. weight: math.unit(83, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/samantha/front.svg"
  6652. }
  6653. },
  6654. frontClothed: {
  6655. height: math.unit(1.93, "meters"),
  6656. weight: math.unit(83, "kg"),
  6657. name: "Front (Clothed)",
  6658. image: {
  6659. source: "./media/characters/samantha/front-clothed.svg"
  6660. }
  6661. },
  6662. back: {
  6663. height: math.unit(1.93, "meters"),
  6664. weight: math.unit(83, "kg"),
  6665. name: "Back",
  6666. image: {
  6667. source: "./media/characters/samantha/back.svg"
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(1.93, "m")
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(74, "meters"),
  6679. default: true
  6680. },
  6681. {
  6682. name: "Macro+",
  6683. height: math.unit(223, "meters"),
  6684. },
  6685. {
  6686. name: "Megamacro",
  6687. height: math.unit(8381, "meters"),
  6688. },
  6689. {
  6690. name: "Megamacro+",
  6691. height: math.unit(12000, "kilometers")
  6692. },
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(1.92, "meters"),
  6700. weight: math.unit(80, "kg"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/dr-clay/front.svg"
  6704. }
  6705. },
  6706. frontClothed: {
  6707. height: math.unit(1.92, "meters"),
  6708. weight: math.unit(80, "kg"),
  6709. name: "Front (Clothed)",
  6710. image: {
  6711. source: "./media/characters/dr-clay/front-clothed.svg"
  6712. }
  6713. }
  6714. },
  6715. [
  6716. {
  6717. name: "Normal",
  6718. height: math.unit(1.92, "m")
  6719. },
  6720. {
  6721. name: "Macro",
  6722. height: math.unit(214, "meters"),
  6723. default: true
  6724. },
  6725. {
  6726. name: "Macro+",
  6727. height: math.unit(12.237, "meters"),
  6728. },
  6729. {
  6730. name: "Megamacro",
  6731. height: math.unit(557, "megameters"),
  6732. },
  6733. {
  6734. name: "Unimaginable",
  6735. height: math.unit(120e9, "lightyears")
  6736. },
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6741. {
  6742. front: {
  6743. height: math.unit(2, "meters"),
  6744. weight: math.unit(80, "kg"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6748. }
  6749. }
  6750. },
  6751. [
  6752. {
  6753. name: "Teramacro",
  6754. height: math.unit(500000, "lightyears"),
  6755. default: true
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6761. {
  6762. crux: {
  6763. height: math.unit(2, "meters"),
  6764. weight: math.unit(150, "kg"),
  6765. name: "Crux",
  6766. image: {
  6767. source: "./media/characters/vemus/crux.svg",
  6768. extra: 1074/936,
  6769. bottom: 23/1097
  6770. }
  6771. },
  6772. skunkTanuki: {
  6773. height: math.unit(2, "meters"),
  6774. weight: math.unit(150, "kg"),
  6775. name: "Skunk-Tanuki",
  6776. image: {
  6777. source: "./media/characters/vemus/skunk-tanuki.svg",
  6778. extra: 926/893,
  6779. bottom: 20/946
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Normal",
  6786. height: math.unit(3.75, "meters"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Big",
  6791. height: math.unit(8, "meters")
  6792. },
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(100, "meters")
  6796. },
  6797. {
  6798. name: "Macro+",
  6799. height: math.unit(1500, "meters")
  6800. },
  6801. {
  6802. name: "Stellar",
  6803. height: math.unit(14e8, "meters")
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(2, "meters"),
  6812. weight: math.unit(70, "kg"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/beherit/front.svg",
  6816. extra: 1408 / 1242
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(6, "feet")
  6824. },
  6825. {
  6826. name: "Lorg",
  6827. height: math.unit(25, "feet"),
  6828. default: true
  6829. },
  6830. {
  6831. name: "Lorger",
  6832. height: math.unit(75, "feet")
  6833. },
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(200, "meters")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(2, "meters"),
  6845. weight: math.unit(150, "kg"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/everett/front.svg",
  6849. extra: 2038 / 1737,
  6850. bottom: 0.03
  6851. }
  6852. },
  6853. paw: {
  6854. height: math.unit(2 / 3.6, "meters"),
  6855. name: "Paw",
  6856. image: {
  6857. source: "./media/characters/everett/paw.svg"
  6858. }
  6859. },
  6860. },
  6861. [
  6862. {
  6863. name: "Normal",
  6864. height: math.unit(15, "feet"),
  6865. default: true
  6866. },
  6867. {
  6868. name: "Lorg",
  6869. height: math.unit(70, "feet"),
  6870. default: true
  6871. },
  6872. {
  6873. name: "Lorger",
  6874. height: math.unit(250, "feet")
  6875. },
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(500, "meters")
  6879. },
  6880. ]
  6881. ))
  6882. characterMakers.push(() => makeCharacter(
  6883. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6884. {
  6885. front: {
  6886. height: math.unit(2, "meters"),
  6887. weight: math.unit(86, "kg"),
  6888. name: "Front",
  6889. image: {
  6890. source: "./media/characters/rose/front.svg",
  6891. extra: 1785/1636,
  6892. bottom: 30/1815
  6893. }
  6894. },
  6895. frontSporty: {
  6896. height: math.unit(2, "meters"),
  6897. weight: math.unit(86, "kg"),
  6898. name: "Front (Sporty)",
  6899. image: {
  6900. source: "./media/characters/rose/front-sporty.svg",
  6901. extra: 350/335,
  6902. bottom: 10/360
  6903. }
  6904. },
  6905. frontAlt: {
  6906. height: math.unit(1.6, "meters"),
  6907. weight: math.unit(86, "kg"),
  6908. name: "Front (Alt)",
  6909. image: {
  6910. source: "./media/characters/rose/front-alt.svg",
  6911. extra: 299/283,
  6912. bottom: 3/302
  6913. }
  6914. },
  6915. plush: {
  6916. height: math.unit(2, "meters"),
  6917. weight: math.unit(86/3, "kg"),
  6918. name: "Plush",
  6919. image: {
  6920. source: "./media/characters/rose/plush.svg",
  6921. extra: 361/337,
  6922. bottom: 11/372
  6923. }
  6924. },
  6925. },
  6926. [
  6927. {
  6928. name: "True Micro",
  6929. height: math.unit(9, "cm")
  6930. },
  6931. {
  6932. name: "Micro",
  6933. height: math.unit(16, "cm")
  6934. },
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(1.85, "meters"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Mini-Macro",
  6942. height: math.unit(5, "meters")
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(15, "meters")
  6947. },
  6948. {
  6949. name: "True Macro",
  6950. height: math.unit(40, "meters")
  6951. },
  6952. {
  6953. name: "City Scale",
  6954. height: math.unit(1, "km")
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6960. {
  6961. front: {
  6962. height: math.unit(2, "meters"),
  6963. weight: math.unit(350, "lbs"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/regal/front.svg"
  6967. }
  6968. },
  6969. back: {
  6970. height: math.unit(2, "meters"),
  6971. weight: math.unit(350, "lbs"),
  6972. name: "Back",
  6973. image: {
  6974. source: "./media/characters/regal/back.svg"
  6975. }
  6976. },
  6977. },
  6978. [
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(350, "feet"),
  6982. default: true
  6983. }
  6984. ]
  6985. ))
  6986. characterMakers.push(() => makeCharacter(
  6987. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6988. {
  6989. front: {
  6990. height: math.unit(4 + 11 / 12, "feet"),
  6991. weight: math.unit(100, "lbs"),
  6992. name: "Front",
  6993. image: {
  6994. source: "./media/characters/opal/front.svg"
  6995. }
  6996. },
  6997. frontAlt: {
  6998. height: math.unit(4 + 11 / 12, "feet"),
  6999. weight: math.unit(100, "lbs"),
  7000. name: "Front (Alt)",
  7001. image: {
  7002. source: "./media/characters/opal/front-alt.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Small",
  7009. height: math.unit(4 + 11 / 12, "feet")
  7010. },
  7011. {
  7012. name: "Normal",
  7013. height: math.unit(20, "feet"),
  7014. default: true
  7015. },
  7016. {
  7017. name: "Macro",
  7018. height: math.unit(120, "feet")
  7019. },
  7020. {
  7021. name: "Megamacro",
  7022. height: math.unit(80, "miles")
  7023. },
  7024. {
  7025. name: "True Size",
  7026. height: math.unit(100000, "lightyears")
  7027. },
  7028. ]
  7029. ))
  7030. characterMakers.push(() => makeCharacter(
  7031. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7032. {
  7033. front: {
  7034. height: math.unit(6, "feet"),
  7035. weight: math.unit(200, "lbs"),
  7036. name: "Front",
  7037. image: {
  7038. source: "./media/characters/vector-wuff/front.svg"
  7039. }
  7040. }
  7041. },
  7042. [
  7043. {
  7044. name: "Normal",
  7045. height: math.unit(2.8, "meters")
  7046. },
  7047. {
  7048. name: "Macro",
  7049. height: math.unit(450, "meters"),
  7050. default: true
  7051. },
  7052. {
  7053. name: "Megamacro",
  7054. height: math.unit(15, "kilometers")
  7055. }
  7056. ]
  7057. ))
  7058. characterMakers.push(() => makeCharacter(
  7059. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7060. {
  7061. front: {
  7062. height: math.unit(6, "feet"),
  7063. weight: math.unit(256, "lbs"),
  7064. name: "Front",
  7065. image: {
  7066. source: "./media/characters/dannik/front.svg"
  7067. }
  7068. }
  7069. },
  7070. [
  7071. {
  7072. name: "Macro",
  7073. height: math.unit(69.57, "meters"),
  7074. default: true
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(120, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/azura-saharah/front.svg"
  7087. }
  7088. },
  7089. back: {
  7090. height: math.unit(6, "feet"),
  7091. weight: math.unit(120, "lbs"),
  7092. name: "Back",
  7093. image: {
  7094. source: "./media/characters/azura-saharah/back.svg"
  7095. }
  7096. },
  7097. },
  7098. [
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(100, "feet"),
  7102. default: true
  7103. },
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7108. {
  7109. side: {
  7110. height: math.unit(5 + 4 / 12, "feet"),
  7111. weight: math.unit(163, "lbs"),
  7112. name: "Side",
  7113. image: {
  7114. source: "./media/characters/kennedy/side.svg"
  7115. }
  7116. }
  7117. },
  7118. [
  7119. {
  7120. name: "Standard Doggo",
  7121. height: math.unit(5 + 4 / 12, "feet")
  7122. },
  7123. {
  7124. name: "Big Doggo",
  7125. height: math.unit(25 + 3 / 12, "feet"),
  7126. default: true
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(5 + 5/12, "feet"),
  7135. weight: math.unit(100, "lbs"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/odios-de-lunar/front.svg",
  7139. extra: 1468/1323,
  7140. bottom: 22/1490
  7141. }
  7142. }
  7143. },
  7144. [
  7145. {
  7146. name: "Micro",
  7147. height: math.unit(3, "inches")
  7148. },
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(5.5, "feet"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Macro",
  7156. height: math.unit(100, "feet")
  7157. },
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7162. {
  7163. back: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(220, "lbs"),
  7166. name: "Back",
  7167. image: {
  7168. source: "./media/characters/mandake/back.svg"
  7169. }
  7170. }
  7171. },
  7172. [
  7173. {
  7174. name: "Normal",
  7175. height: math.unit(7, "feet"),
  7176. default: true
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(78, "feet")
  7181. },
  7182. {
  7183. name: "Macro+",
  7184. height: math.unit(300, "meters")
  7185. },
  7186. {
  7187. name: "Macro++",
  7188. height: math.unit(2400, "feet")
  7189. },
  7190. {
  7191. name: "Megamacro",
  7192. height: math.unit(5167, "meters")
  7193. },
  7194. {
  7195. name: "Gigamacro",
  7196. height: math.unit(41769, "miles")
  7197. },
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7202. {
  7203. front: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(120, "lbs"),
  7206. name: "Front",
  7207. image: {
  7208. source: "./media/characters/yozey/front.svg"
  7209. }
  7210. },
  7211. frontAlt: {
  7212. height: math.unit(6, "feet"),
  7213. weight: math.unit(120, "lbs"),
  7214. name: "Front (Alt)",
  7215. image: {
  7216. source: "./media/characters/yozey/front-alt.svg"
  7217. }
  7218. },
  7219. side: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(120, "lbs"),
  7222. name: "Side",
  7223. image: {
  7224. source: "./media/characters/yozey/side.svg"
  7225. }
  7226. },
  7227. },
  7228. [
  7229. {
  7230. name: "Micro",
  7231. height: math.unit(3, "inches"),
  7232. default: true
  7233. },
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(6, "feet")
  7237. }
  7238. ]
  7239. ))
  7240. characterMakers.push(() => makeCharacter(
  7241. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7242. {
  7243. front: {
  7244. height: math.unit(6, "feet"),
  7245. weight: math.unit(103, "lbs"),
  7246. name: "Front",
  7247. image: {
  7248. source: "./media/characters/valeska-voss/front.svg"
  7249. }
  7250. }
  7251. },
  7252. [
  7253. {
  7254. name: "Mini-Sized Sub",
  7255. height: math.unit(3.1, "inches")
  7256. },
  7257. {
  7258. name: "Mid-Sized Sub",
  7259. height: math.unit(6.2, "inches")
  7260. },
  7261. {
  7262. name: "Full-Sized Sub",
  7263. height: math.unit(9.3, "inches")
  7264. },
  7265. {
  7266. name: "Normal",
  7267. height: math.unit(5 + 2 / 12, "foot"),
  7268. default: true
  7269. },
  7270. ]
  7271. ))
  7272. characterMakers.push(() => makeCharacter(
  7273. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7274. {
  7275. front: {
  7276. height: math.unit(6, "feet"),
  7277. weight: math.unit(160, "lbs"),
  7278. name: "Front",
  7279. image: {
  7280. source: "./media/characters/gene-zeta/front.svg",
  7281. extra: 3006 / 2826,
  7282. bottom: 182 / 3188
  7283. }
  7284. }
  7285. },
  7286. [
  7287. {
  7288. name: "Micro",
  7289. height: math.unit(6, "inches")
  7290. },
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(5 + 11 / 12, "foot"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Macro",
  7298. height: math.unit(140, "feet")
  7299. },
  7300. {
  7301. name: "Supercharged",
  7302. height: math.unit(2500, "feet")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(6, "feet"),
  7311. weight: math.unit(350, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/razinox/front.svg",
  7315. extra: 1686 / 1548,
  7316. bottom: 28.2 / 1868
  7317. }
  7318. },
  7319. back: {
  7320. height: math.unit(6, "feet"),
  7321. weight: math.unit(350, "lbs"),
  7322. name: "Back",
  7323. image: {
  7324. source: "./media/characters/razinox/back.svg",
  7325. extra: 1660 / 1590,
  7326. bottom: 15 / 1665
  7327. }
  7328. },
  7329. },
  7330. [
  7331. {
  7332. name: "Normal",
  7333. height: math.unit(10 + 8 / 12, "foot")
  7334. },
  7335. {
  7336. name: "Minimacro",
  7337. height: math.unit(15, "foot")
  7338. },
  7339. {
  7340. name: "Macro",
  7341. height: math.unit(60, "foot"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Megamacro",
  7346. height: math.unit(5, "miles")
  7347. },
  7348. {
  7349. name: "Gigamacro",
  7350. height: math.unit(6000, "miles")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(150, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/cobalt/front.svg"
  7363. }
  7364. }
  7365. },
  7366. [
  7367. {
  7368. name: "Normal",
  7369. height: math.unit(8 + 1 / 12, "foot")
  7370. },
  7371. {
  7372. name: "Macro",
  7373. height: math.unit(111, "foot"),
  7374. default: true
  7375. },
  7376. {
  7377. name: "Supracosmic",
  7378. height: math.unit(1e42, "feet")
  7379. },
  7380. ]
  7381. ))
  7382. characterMakers.push(() => makeCharacter(
  7383. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7384. {
  7385. front: {
  7386. height: math.unit(6, "feet"),
  7387. weight: math.unit(140, "lbs"),
  7388. name: "Front",
  7389. image: {
  7390. source: "./media/characters/amanda/front.svg"
  7391. }
  7392. }
  7393. },
  7394. [
  7395. {
  7396. name: "Micro",
  7397. height: math.unit(5, "inches"),
  7398. default: true
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(2.75, "meters"),
  7407. weight: math.unit(1200, "lb"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/teal/front.svg",
  7411. extra: 2463 / 2320,
  7412. bottom: 166 / 2629
  7413. }
  7414. },
  7415. back: {
  7416. height: math.unit(2.75, "meters"),
  7417. weight: math.unit(1200, "lb"),
  7418. name: "Back",
  7419. image: {
  7420. source: "./media/characters/teal/back.svg",
  7421. extra: 2580 / 2489,
  7422. bottom: 151 / 2731
  7423. }
  7424. },
  7425. sitting: {
  7426. height: math.unit(1.9, "meters"),
  7427. weight: math.unit(1200, "lb"),
  7428. name: "Sitting",
  7429. image: {
  7430. source: "./media/characters/teal/sitting.svg",
  7431. extra: 623 / 590,
  7432. bottom: 121 / 744
  7433. }
  7434. },
  7435. standing: {
  7436. height: math.unit(2.75, "meters"),
  7437. weight: math.unit(1200, "lb"),
  7438. name: "Standing",
  7439. image: {
  7440. source: "./media/characters/teal/standing.svg",
  7441. extra: 923 / 893,
  7442. bottom: 60 / 983
  7443. }
  7444. },
  7445. stretching: {
  7446. height: math.unit(3.65, "meters"),
  7447. weight: math.unit(1200, "lb"),
  7448. name: "Stretching",
  7449. image: {
  7450. source: "./media/characters/teal/stretching.svg",
  7451. extra: 1276 / 1244,
  7452. bottom: 0 / 1276
  7453. }
  7454. },
  7455. legged: {
  7456. height: math.unit(1.3, "meters"),
  7457. weight: math.unit(100, "lb"),
  7458. name: "Legged",
  7459. image: {
  7460. source: "./media/characters/teal/legged.svg",
  7461. extra: 462 / 437,
  7462. bottom: 24 / 486
  7463. }
  7464. },
  7465. naga: {
  7466. height: math.unit(5.4, "meters"),
  7467. weight: math.unit(4000, "lb"),
  7468. name: "Naga",
  7469. image: {
  7470. source: "./media/characters/teal/naga.svg",
  7471. extra: 1902 / 1858,
  7472. bottom: 0 / 1902
  7473. }
  7474. },
  7475. hand: {
  7476. height: math.unit(0.52, "meters"),
  7477. name: "Hand",
  7478. image: {
  7479. source: "./media/characters/teal/hand.svg"
  7480. }
  7481. },
  7482. maw: {
  7483. height: math.unit(0.43, "meters"),
  7484. name: "Maw",
  7485. image: {
  7486. source: "./media/characters/teal/maw.svg"
  7487. }
  7488. },
  7489. slit: {
  7490. height: math.unit(0.25, "meters"),
  7491. name: "Slit",
  7492. image: {
  7493. source: "./media/characters/teal/slit.svg"
  7494. }
  7495. },
  7496. },
  7497. [
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(2.75, "meters"),
  7501. default: true
  7502. },
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(300, "feet")
  7506. },
  7507. {
  7508. name: "Macro+",
  7509. height: math.unit(2000, "feet")
  7510. },
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7515. {
  7516. frontCat: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(180, "lbs"),
  7519. name: "Front (Cat)",
  7520. image: {
  7521. source: "./media/characters/ravin-amulet/front-cat.svg"
  7522. }
  7523. },
  7524. frontCatAlt: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(180, "lbs"),
  7527. name: "Front (Alt, Cat)",
  7528. image: {
  7529. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7530. }
  7531. },
  7532. frontWerewolf: {
  7533. height: math.unit(6 * 1.2, "feet"),
  7534. weight: math.unit(225, "lbs"),
  7535. name: "Front (Werewolf)",
  7536. image: {
  7537. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7538. }
  7539. },
  7540. backWerewolf: {
  7541. height: math.unit(6 * 1.2, "feet"),
  7542. weight: math.unit(225, "lbs"),
  7543. name: "Back (Werewolf)",
  7544. image: {
  7545. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Nano",
  7552. height: math.unit(1, "micrometer")
  7553. },
  7554. {
  7555. name: "Micro",
  7556. height: math.unit(1, "inch")
  7557. },
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(6, "feet"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(60, "feet")
  7566. }
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(165, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/fluoresce/front.svg"
  7578. }
  7579. }
  7580. },
  7581. [
  7582. {
  7583. name: "Micro",
  7584. height: math.unit(6, "cm")
  7585. },
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(5 + 7 / 12, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(56, "feet")
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(1.9, "miles")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(9 + 6 / 12, "feet"),
  7606. weight: math.unit(523, "lbs"),
  7607. name: "Side",
  7608. image: {
  7609. source: "./media/characters/aurora/side.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(9 + 6 / 12, "feet")
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(96, "feet"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Macro+",
  7625. height: math.unit(243, "feet")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(194, "cm"),
  7634. weight: math.unit(90, "kg"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/ranek/front.svg"
  7638. }
  7639. },
  7640. side: {
  7641. height: math.unit(194, "cm"),
  7642. weight: math.unit(90, "kg"),
  7643. name: "Side",
  7644. image: {
  7645. source: "./media/characters/ranek/side.svg"
  7646. }
  7647. },
  7648. back: {
  7649. height: math.unit(194, "cm"),
  7650. weight: math.unit(90, "kg"),
  7651. name: "Back",
  7652. image: {
  7653. source: "./media/characters/ranek/back.svg"
  7654. }
  7655. },
  7656. feral: {
  7657. height: math.unit(30, "cm"),
  7658. weight: math.unit(1.6, "lbs"),
  7659. name: "Feral",
  7660. image: {
  7661. source: "./media/characters/ranek/feral.svg"
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(194, "cm"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(100, "meters")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(5 + 6 / 12, "feet"),
  7682. weight: math.unit(153, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/andrew-cooper/front.svg"
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Nano",
  7692. height: math.unit(1, "mm")
  7693. },
  7694. {
  7695. name: "Micro",
  7696. height: math.unit(2, "inches")
  7697. },
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(5 + 6 / 12, "feet"),
  7701. default: true
  7702. }
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7707. {
  7708. front: {
  7709. height: math.unit(6, "feet"),
  7710. weight: math.unit(180, "lbs"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/akane-sato/front.svg",
  7714. extra: 1219 / 1140
  7715. }
  7716. },
  7717. back: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(180, "lbs"),
  7720. name: "Back",
  7721. image: {
  7722. source: "./media/characters/akane-sato/back.svg",
  7723. extra: 1219 / 1170
  7724. }
  7725. },
  7726. },
  7727. [
  7728. {
  7729. name: "Normal",
  7730. height: math.unit(2.5, "meters")
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(250, "meters"),
  7735. default: true
  7736. },
  7737. {
  7738. name: "Megamacro",
  7739. height: math.unit(25, "km")
  7740. },
  7741. ]
  7742. ))
  7743. characterMakers.push(() => makeCharacter(
  7744. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7745. {
  7746. front: {
  7747. height: math.unit(6, "feet"),
  7748. weight: math.unit(65, "kg"),
  7749. name: "Front",
  7750. image: {
  7751. source: "./media/characters/rook/front.svg",
  7752. extra: 960 / 950
  7753. }
  7754. }
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(8.8, "feet")
  7760. },
  7761. {
  7762. name: "Macro",
  7763. height: math.unit(88, "feet"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Megamacro",
  7768. height: math.unit(8, "miles")
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(12 + 2 / 12, "feet"),
  7777. weight: math.unit(808, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/prodigy/front.svg"
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(12 + 2 / 12, "feet"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(143, "feet")
  7793. },
  7794. {
  7795. name: "Macro+",
  7796. height: math.unit(400, "feet")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(225, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/daniel/front.svg"
  7809. }
  7810. },
  7811. leaning: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(225, "lbs"),
  7814. name: "Leaning",
  7815. image: {
  7816. source: "./media/characters/daniel/leaning.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(1000, "feet"),
  7824. default: true
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(88, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/chiros/front.svg",
  7837. extra: 306 / 226
  7838. }
  7839. },
  7840. side: {
  7841. height: math.unit(6, "feet"),
  7842. weight: math.unit(88, "lbs"),
  7843. name: "Side",
  7844. image: {
  7845. source: "./media/characters/chiros/side.svg",
  7846. extra: 306 / 226
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(6, "cm"),
  7854. default: true
  7855. },
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7860. {
  7861. front: {
  7862. height: math.unit(6, "feet"),
  7863. weight: math.unit(100, "lbs"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/selka/front.svg",
  7867. extra: 947 / 887
  7868. }
  7869. }
  7870. },
  7871. [
  7872. {
  7873. name: "Normal",
  7874. height: math.unit(5, "cm"),
  7875. default: true
  7876. },
  7877. ]
  7878. ))
  7879. characterMakers.push(() => makeCharacter(
  7880. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7881. {
  7882. front: {
  7883. height: math.unit(8 + 3 / 12, "feet"),
  7884. weight: math.unit(424, "lbs"),
  7885. name: "Front",
  7886. image: {
  7887. source: "./media/characters/verin/front.svg",
  7888. extra: 1845 / 1550
  7889. }
  7890. },
  7891. frontArmored: {
  7892. height: math.unit(8 + 3 / 12, "feet"),
  7893. weight: math.unit(424, "lbs"),
  7894. name: "Front (Armored)",
  7895. image: {
  7896. source: "./media/characters/verin/front-armor.svg",
  7897. extra: 1845 / 1550,
  7898. bottom: 0.01
  7899. }
  7900. },
  7901. back: {
  7902. height: math.unit(8 + 3 / 12, "feet"),
  7903. weight: math.unit(424, "lbs"),
  7904. name: "Back",
  7905. image: {
  7906. source: "./media/characters/verin/back.svg",
  7907. bottom: 0.1,
  7908. extra: 1
  7909. }
  7910. },
  7911. foot: {
  7912. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7913. name: "Foot",
  7914. image: {
  7915. source: "./media/characters/verin/foot.svg"
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(8 + 3 / 12, "feet")
  7923. },
  7924. {
  7925. name: "Minimacro",
  7926. height: math.unit(21, "feet"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(626, "feet")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7937. {
  7938. front: {
  7939. height: math.unit(2.718, "meters"),
  7940. weight: math.unit(150, "lbs"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/sovrim-terraquian/front.svg"
  7944. }
  7945. },
  7946. back: {
  7947. height: math.unit(2.718, "meters"),
  7948. weight: math.unit(150, "lbs"),
  7949. name: "Back",
  7950. image: {
  7951. source: "./media/characters/sovrim-terraquian/back.svg"
  7952. }
  7953. }
  7954. },
  7955. [
  7956. {
  7957. name: "Micro",
  7958. height: math.unit(2, "inches")
  7959. },
  7960. {
  7961. name: "Small",
  7962. height: math.unit(1, "meter")
  7963. },
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(Math.E, "meters"),
  7967. default: true
  7968. },
  7969. {
  7970. name: "Macro",
  7971. height: math.unit(20, "meters")
  7972. },
  7973. {
  7974. name: "Macro+",
  7975. height: math.unit(400, "meters")
  7976. },
  7977. ]
  7978. ))
  7979. characterMakers.push(() => makeCharacter(
  7980. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7981. {
  7982. front: {
  7983. height: math.unit(7, "feet"),
  7984. weight: math.unit(489, "lbs"),
  7985. name: "Front",
  7986. image: {
  7987. source: "./media/characters/reece-silvermane/front.svg",
  7988. bottom: 0.02,
  7989. extra: 1
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(1.5, "miles"),
  7997. default: true
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(78, "kg"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/kane/front.svg",
  8010. extra: 978 / 899
  8011. }
  8012. },
  8013. },
  8014. [
  8015. {
  8016. name: "Normal",
  8017. height: math.unit(2.1, "m"),
  8018. },
  8019. {
  8020. name: "Macro",
  8021. height: math.unit(1, "km"),
  8022. default: true
  8023. },
  8024. ]
  8025. ))
  8026. characterMakers.push(() => makeCharacter(
  8027. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8028. {
  8029. front: {
  8030. height: math.unit(6, "feet"),
  8031. weight: math.unit(200, "kg"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/tegon/front.svg",
  8035. bottom: 0.01,
  8036. extra: 1
  8037. }
  8038. },
  8039. },
  8040. [
  8041. {
  8042. name: "Micro",
  8043. height: math.unit(1, "inch")
  8044. },
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(6 + 3 / 12, "feet"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(300, "feet")
  8053. },
  8054. {
  8055. name: "Megamacro",
  8056. height: math.unit(69, "miles")
  8057. },
  8058. ]
  8059. ))
  8060. characterMakers.push(() => makeCharacter(
  8061. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8062. {
  8063. side: {
  8064. height: math.unit(6, "feet"),
  8065. weight: math.unit(2304, "lbs"),
  8066. name: "Side",
  8067. image: {
  8068. source: "./media/characters/arcturax/side.svg",
  8069. extra: 790 / 376,
  8070. bottom: 0.01
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Micro",
  8077. height: math.unit(2, "inch")
  8078. },
  8079. {
  8080. name: "Normal",
  8081. height: math.unit(6, "feet")
  8082. },
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(39, "feet"),
  8086. default: true
  8087. },
  8088. {
  8089. name: "Megamacro",
  8090. height: math.unit(7, "miles")
  8091. },
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(6, "feet"),
  8099. weight: math.unit(50, "lbs"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/sentri/front.svg",
  8103. extra: 1750 / 1570,
  8104. bottom: 0.025
  8105. }
  8106. },
  8107. frontAlt: {
  8108. height: math.unit(6, "feet"),
  8109. weight: math.unit(50, "lbs"),
  8110. name: "Front (Alt)",
  8111. image: {
  8112. source: "./media/characters/sentri/front-alt.svg",
  8113. extra: 1750 / 1570,
  8114. bottom: 0.025
  8115. }
  8116. },
  8117. },
  8118. [
  8119. {
  8120. name: "Normal",
  8121. height: math.unit(15, "feet"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(2500, "feet")
  8127. }
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(5 + 8 / 12, "feet"),
  8135. weight: math.unit(130, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/corvin/front.svg",
  8139. extra: 1803 / 1629
  8140. }
  8141. },
  8142. frontShirt: {
  8143. height: math.unit(5 + 8 / 12, "feet"),
  8144. weight: math.unit(130, "lbs"),
  8145. name: "Front (Shirt)",
  8146. image: {
  8147. source: "./media/characters/corvin/front-shirt.svg",
  8148. extra: 1803 / 1629
  8149. }
  8150. },
  8151. frontPoncho: {
  8152. height: math.unit(5 + 8 / 12, "feet"),
  8153. weight: math.unit(130, "lbs"),
  8154. name: "Front (Poncho)",
  8155. image: {
  8156. source: "./media/characters/corvin/front-poncho.svg",
  8157. extra: 1803 / 1629
  8158. }
  8159. },
  8160. side: {
  8161. height: math.unit(5 + 8 / 12, "feet"),
  8162. weight: math.unit(130, "lbs"),
  8163. name: "Side",
  8164. image: {
  8165. source: "./media/characters/corvin/side.svg",
  8166. extra: 1012 / 945
  8167. }
  8168. },
  8169. back: {
  8170. height: math.unit(5 + 8 / 12, "feet"),
  8171. weight: math.unit(130, "lbs"),
  8172. name: "Back",
  8173. image: {
  8174. source: "./media/characters/corvin/back.svg",
  8175. extra: 1803 / 1629
  8176. }
  8177. },
  8178. },
  8179. [
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(3, "inches")
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(5 + 8 / 12, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(300, "feet"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(500, "miles")
  8196. }
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(135, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/q/front.svg",
  8208. extra: 854 / 752,
  8209. bottom: 0.005
  8210. }
  8211. },
  8212. back: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(130, "lbs"),
  8215. name: "Back",
  8216. image: {
  8217. source: "./media/characters/q/back.svg",
  8218. extra: 854 / 752
  8219. }
  8220. },
  8221. },
  8222. [
  8223. {
  8224. name: "Macro",
  8225. height: math.unit(90, "feet"),
  8226. default: true
  8227. },
  8228. {
  8229. name: "Extra Macro",
  8230. height: math.unit(300, "feet"),
  8231. },
  8232. {
  8233. name: "BIG WALF",
  8234. height: math.unit(750, "feet"),
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(6, "feet"),
  8243. weight: math.unit(150, "lbs"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/carley/front.svg",
  8247. extra: 3927 / 3540,
  8248. bottom: 29.2 / 735
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(6 + 3 / 12, "feet")
  8256. },
  8257. {
  8258. name: "Macro",
  8259. height: math.unit(185, "feet"),
  8260. default: true
  8261. },
  8262. {
  8263. name: "Megamacro",
  8264. height: math.unit(8, "miles"),
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(3, "feet"),
  8273. weight: math.unit(28, "lbs"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/citrine/front.svg"
  8277. }
  8278. }
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(3, "feet"),
  8284. default: true
  8285. }
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8290. {
  8291. front: {
  8292. height: math.unit(14, "feet"),
  8293. weight: math.unit(1450, "kg"),
  8294. capacity: math.unit(15, "people"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/aura-starwind/front.svg",
  8298. extra: 1440/1327,
  8299. bottom: 11/1451
  8300. }
  8301. },
  8302. side: {
  8303. height: math.unit(14, "feet"),
  8304. weight: math.unit(1450, "kg"),
  8305. capacity: math.unit(15, "people"),
  8306. name: "Side",
  8307. image: {
  8308. source: "./media/characters/aura-starwind/side.svg",
  8309. extra: 1654 / 1497
  8310. }
  8311. },
  8312. taur: {
  8313. height: math.unit(18, "feet"),
  8314. weight: math.unit(5500, "kg"),
  8315. capacity: math.unit(50, "people"),
  8316. name: "Taur",
  8317. image: {
  8318. source: "./media/characters/aura-starwind/taur.svg",
  8319. extra: 1760 / 1650
  8320. }
  8321. },
  8322. feral: {
  8323. height: math.unit(46, "feet"),
  8324. weight: math.unit(25000, "kg"),
  8325. capacity: math.unit(120, "people"),
  8326. name: "Feral",
  8327. image: {
  8328. source: "./media/characters/aura-starwind/feral.svg"
  8329. }
  8330. },
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(14, "feet"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(50, "meters")
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(5000, "meters")
  8345. },
  8346. {
  8347. name: "Gigamacro",
  8348. height: math.unit(100000, "kilometers")
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(2 + 7 / 12, "feet"),
  8357. weight: math.unit(32, "lbs"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/rivet/front.svg",
  8361. extra: 1716 / 1658,
  8362. bottom: 0.03
  8363. }
  8364. },
  8365. foot: {
  8366. height: math.unit(0.551, "feet"),
  8367. name: "Rivet's Foot",
  8368. image: {
  8369. source: "./media/characters/rivet/foot.svg"
  8370. },
  8371. rename: true
  8372. }
  8373. },
  8374. [
  8375. {
  8376. name: "Micro",
  8377. height: math.unit(1.5, "inches"),
  8378. },
  8379. {
  8380. name: "Normal",
  8381. height: math.unit(2 + 7 / 12, "feet"),
  8382. default: true
  8383. },
  8384. {
  8385. name: "Macro",
  8386. height: math.unit(85, "feet")
  8387. },
  8388. {
  8389. name: "Megamacro",
  8390. height: math.unit(2.2, "km")
  8391. }
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(5 + 9 / 12, "feet"),
  8399. weight: math.unit(150, "lbs"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/coffee/front.svg",
  8403. extra: 3666 / 3032,
  8404. bottom: 0.04
  8405. }
  8406. },
  8407. foot: {
  8408. height: math.unit(1.29, "feet"),
  8409. name: "Foot",
  8410. image: {
  8411. source: "./media/characters/coffee/foot.svg"
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Micro",
  8418. height: math.unit(2, "inches"),
  8419. },
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(5 + 9 / 12, "feet"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Macro",
  8427. height: math.unit(800, "feet")
  8428. },
  8429. {
  8430. name: "Megamacro",
  8431. height: math.unit(25, "miles")
  8432. }
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8437. {
  8438. front: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(200, "lbs"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/chari-gal/front.svg",
  8444. extra: 1568 / 1385,
  8445. bottom: 0.047
  8446. }
  8447. },
  8448. gigantamax: {
  8449. height: math.unit(6 * 16, "feet"),
  8450. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8451. name: "Gigantamax",
  8452. image: {
  8453. source: "./media/characters/chari-gal/gigantamax.svg",
  8454. extra: 1124 / 888,
  8455. bottom: 0.03
  8456. }
  8457. },
  8458. },
  8459. [
  8460. {
  8461. name: "Normal",
  8462. height: math.unit(5 + 7 / 12, "feet")
  8463. },
  8464. {
  8465. name: "Macro",
  8466. height: math.unit(200, "feet"),
  8467. default: true
  8468. }
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(6, "feet"),
  8476. weight: math.unit(150, "lbs"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/nova/front.svg",
  8480. extra: 5000 / 4722,
  8481. bottom: 0.02
  8482. }
  8483. }
  8484. },
  8485. [
  8486. {
  8487. name: "Micro-",
  8488. height: math.unit(0.8, "inches")
  8489. },
  8490. {
  8491. name: "Micro",
  8492. height: math.unit(2, "inches"),
  8493. default: true
  8494. },
  8495. ]
  8496. ))
  8497. characterMakers.push(() => makeCharacter(
  8498. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8499. {
  8500. front: {
  8501. height: math.unit(3 + 1 / 12, "feet"),
  8502. weight: math.unit(21.7, "lbs"),
  8503. name: "Front",
  8504. image: {
  8505. source: "./media/characters/argent/front.svg",
  8506. extra: 1471 / 1331,
  8507. bottom: 100.8 / 1575.5
  8508. }
  8509. }
  8510. },
  8511. [
  8512. {
  8513. name: "Micro",
  8514. height: math.unit(2, "inches")
  8515. },
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(3 + 1 / 12, "feet"),
  8519. default: true
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(120, "feet")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8529. {
  8530. lamp: {
  8531. height: math.unit(7 * 1559 / 989, "feet"),
  8532. name: "Magic Lamp",
  8533. image: {
  8534. source: "./media/characters/mira-al-cul/lamp.svg",
  8535. extra: 1617 / 1559
  8536. }
  8537. },
  8538. front: {
  8539. height: math.unit(7, "feet"),
  8540. name: "Front",
  8541. image: {
  8542. source: "./media/characters/mira-al-cul/front.svg",
  8543. extra: 1044 / 990
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Heavily Restricted",
  8550. height: math.unit(7 * 1559 / 989, "feet")
  8551. },
  8552. {
  8553. name: "Freshly Freed",
  8554. height: math.unit(50 * 1559 / 989, "feet")
  8555. },
  8556. {
  8557. name: "World Encompassing",
  8558. height: math.unit(10000 * 1559 / 989, "miles")
  8559. },
  8560. {
  8561. name: "Galactic",
  8562. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8563. },
  8564. {
  8565. name: "Palmed Universe",
  8566. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8567. default: true
  8568. },
  8569. {
  8570. name: "Multiversal Matriarch",
  8571. height: math.unit(8.87e10, "yottameters")
  8572. },
  8573. {
  8574. name: "Void Mother",
  8575. height: math.unit(3.14e110, "yottaparsecs")
  8576. },
  8577. {
  8578. name: "Toying with Transcendence",
  8579. height: math.unit(1e307, "meters")
  8580. },
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8585. {
  8586. front: {
  8587. height: math.unit(17 + 1 / 12, "feet"),
  8588. weight: math.unit(476.2 * 5, "lbs"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/kuro-shi-uchū/front.svg",
  8592. extra: 2329 / 1835,
  8593. bottom: 0.02
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Micro",
  8600. height: math.unit(2, "inches")
  8601. },
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(12, "meters")
  8605. },
  8606. {
  8607. name: "Planetary",
  8608. height: math.unit(0.00929, "AU"),
  8609. default: true
  8610. },
  8611. {
  8612. name: "Universal",
  8613. height: math.unit(20, "gigaparsecs")
  8614. },
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(5 + 2 / 12, "feet"),
  8622. weight: math.unit(120, "lbs"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/katherine/front.svg",
  8626. extra: 2075 / 1969
  8627. }
  8628. },
  8629. dress: {
  8630. height: math.unit(5 + 2 / 12, "feet"),
  8631. weight: math.unit(120, "lbs"),
  8632. name: "Dress",
  8633. image: {
  8634. source: "./media/characters/katherine/dress.svg",
  8635. extra: 2258 / 2064
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Micro",
  8642. height: math.unit(1, "inches"),
  8643. default: true
  8644. },
  8645. {
  8646. name: "Normal",
  8647. height: math.unit(5 + 2 / 12, "feet")
  8648. },
  8649. {
  8650. name: "Macro",
  8651. height: math.unit(100, "meters")
  8652. },
  8653. {
  8654. name: "Megamacro",
  8655. height: math.unit(80, "miles")
  8656. },
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(7 + 8 / 12, "feet"),
  8664. weight: math.unit(250, "lbs"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/yevis/front.svg",
  8668. extra: 1938 / 1755
  8669. }
  8670. }
  8671. },
  8672. [
  8673. {
  8674. name: "Mortal",
  8675. height: math.unit(7 + 8 / 12, "feet")
  8676. },
  8677. {
  8678. name: "Battle",
  8679. height: math.unit(25 + 11 / 12, "feet")
  8680. },
  8681. {
  8682. name: "Wrath",
  8683. height: math.unit(1654 + 11 / 12, "feet")
  8684. },
  8685. {
  8686. name: "Planet Destroyer",
  8687. height: math.unit(12000, "miles")
  8688. },
  8689. {
  8690. name: "Galaxy Conqueror",
  8691. height: math.unit(1.45, "zettameters"),
  8692. default: true
  8693. },
  8694. {
  8695. name: "Universal War",
  8696. height: math.unit(184, "gigaparsecs")
  8697. },
  8698. {
  8699. name: "Eternity War",
  8700. height: math.unit(1.98e55, "yottaparsecs")
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8706. {
  8707. front: {
  8708. height: math.unit(5 + 8 / 12, "feet"),
  8709. weight: math.unit(63, "kg"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/xavier/front.svg",
  8713. extra: 944 / 883
  8714. }
  8715. },
  8716. frontStretch: {
  8717. height: math.unit(5 + 8 / 12, "feet"),
  8718. weight: math.unit(63, "kg"),
  8719. name: "Stretching",
  8720. image: {
  8721. source: "./media/characters/xavier/front-stretch.svg",
  8722. extra: 962 / 820
  8723. }
  8724. },
  8725. },
  8726. [
  8727. {
  8728. name: "Normal",
  8729. height: math.unit(5 + 8 / 12, "feet")
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(100, "meters"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "McLargeHuge",
  8738. height: math.unit(10, "miles")
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(5 + 5 / 12, "feet"),
  8747. weight: math.unit(150, "lb"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/joshii/front.svg",
  8751. extra: 765 / 653,
  8752. bottom: 51 / 816
  8753. }
  8754. },
  8755. foot: {
  8756. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8757. name: "Foot",
  8758. image: {
  8759. source: "./media/characters/joshii/foot.svg"
  8760. }
  8761. },
  8762. },
  8763. [
  8764. {
  8765. name: "Micro",
  8766. height: math.unit(2, "inches"),
  8767. default: true
  8768. },
  8769. {
  8770. name: "Normal",
  8771. height: math.unit(5 + 5 / 12, "feet")
  8772. },
  8773. {
  8774. name: "Macro",
  8775. height: math.unit(785, "feet")
  8776. },
  8777. {
  8778. name: "Megamacro",
  8779. height: math.unit(24.5, "miles")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(6, "feet"),
  8788. weight: math.unit(150, "lb"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/goddess-elizabeth/front.svg",
  8792. extra: 1800 / 1525,
  8793. bottom: 0.005
  8794. }
  8795. },
  8796. foot: {
  8797. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8798. name: "Foot",
  8799. image: {
  8800. source: "./media/characters/goddess-elizabeth/foot.svg"
  8801. }
  8802. },
  8803. mouth: {
  8804. height: math.unit(6, "feet"),
  8805. name: "Mouth",
  8806. image: {
  8807. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(12, "feet")
  8815. },
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(80, "miles"),
  8819. default: true
  8820. },
  8821. {
  8822. name: "Macro",
  8823. height: math.unit(15000, "parsecs")
  8824. },
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(5 + 9 / 12, "feet"),
  8832. weight: math.unit(144, "lb"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/kara/front.svg"
  8836. }
  8837. },
  8838. feet: {
  8839. height: math.unit(6 / 6.765, "feet"),
  8840. name: "Kara's Feet",
  8841. rename: true,
  8842. image: {
  8843. source: "./media/characters/kara/feet.svg"
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(5 + 9 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(174, "feet"),
  8855. default: true
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8861. {
  8862. front: {
  8863. height: math.unit(18, "feet"),
  8864. weight: math.unit(4050, "lb"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/tyrone/front.svg",
  8868. extra: 2405 / 2270,
  8869. bottom: 182 / 2587
  8870. }
  8871. },
  8872. },
  8873. [
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(18, "feet"),
  8877. default: true
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(300, "feet")
  8882. },
  8883. {
  8884. name: "Megamacro",
  8885. height: math.unit(15, "km")
  8886. },
  8887. {
  8888. name: "Gigamacro",
  8889. height: math.unit(500, "km")
  8890. },
  8891. {
  8892. name: "Teramacro",
  8893. height: math.unit(0.5, "gigameters")
  8894. },
  8895. {
  8896. name: "Omnimacro",
  8897. height: math.unit(1e252, "yottauniverse")
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(7 + 8 / 12, "feet"),
  8906. weight: math.unit(120, "lb"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/danny/front.svg",
  8910. extra: 1490 / 1350
  8911. }
  8912. },
  8913. back: {
  8914. height: math.unit(7 + 8 / 12, "feet"),
  8915. weight: math.unit(120, "lb"),
  8916. name: "Back",
  8917. image: {
  8918. source: "./media/characters/danny/back.svg",
  8919. extra: 1490 / 1350
  8920. }
  8921. },
  8922. },
  8923. [
  8924. {
  8925. name: "Normal",
  8926. height: math.unit(7 + 8 / 12, "feet"),
  8927. default: true
  8928. },
  8929. ]
  8930. ))
  8931. characterMakers.push(() => makeCharacter(
  8932. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8933. {
  8934. front: {
  8935. height: math.unit(3.5, "inches"),
  8936. weight: math.unit(19, "grams"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/mallow/front.svg",
  8940. extra: 471 / 431
  8941. }
  8942. },
  8943. back: {
  8944. height: math.unit(3.5, "inches"),
  8945. weight: math.unit(19, "grams"),
  8946. name: "Back",
  8947. image: {
  8948. source: "./media/characters/mallow/back.svg",
  8949. extra: 471 / 431
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Normal",
  8956. height: math.unit(3.5, "inches"),
  8957. default: true
  8958. },
  8959. ]
  8960. ))
  8961. characterMakers.push(() => makeCharacter(
  8962. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8963. {
  8964. front: {
  8965. height: math.unit(9, "feet"),
  8966. weight: math.unit(230, "kg"),
  8967. name: "Front",
  8968. image: {
  8969. source: "./media/characters/starry-aqua/front.svg"
  8970. }
  8971. },
  8972. back: {
  8973. height: math.unit(9, "feet"),
  8974. weight: math.unit(230, "kg"),
  8975. name: "Back",
  8976. image: {
  8977. source: "./media/characters/starry-aqua/back.svg"
  8978. }
  8979. },
  8980. hand: {
  8981. height: math.unit(9 * 0.1168, "feet"),
  8982. name: "Hand",
  8983. image: {
  8984. source: "./media/characters/starry-aqua/hand.svg"
  8985. }
  8986. },
  8987. foot: {
  8988. height: math.unit(9 * 0.18, "feet"),
  8989. name: "Foot",
  8990. image: {
  8991. source: "./media/characters/starry-aqua/foot.svg"
  8992. }
  8993. }
  8994. },
  8995. [
  8996. {
  8997. name: "Micro",
  8998. height: math.unit(3, "inches")
  8999. },
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(9, "feet")
  9003. },
  9004. {
  9005. name: "Macro",
  9006. height: math.unit(300, "feet"),
  9007. default: true
  9008. },
  9009. {
  9010. name: "Megamacro",
  9011. height: math.unit(3200, "feet")
  9012. }
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(15, "feet"),
  9020. weight: math.unit(5026, "lb"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/luka-towers/front.svg",
  9024. extra: 1269/1133,
  9025. bottom: 51/1320
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(15, "feet"),
  9033. default: true
  9034. },
  9035. {
  9036. name: "Minimacro",
  9037. height: math.unit(25, "feet")
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(320, "feet")
  9042. },
  9043. {
  9044. name: "Megamacro",
  9045. height: math.unit(35000, "feet")
  9046. },
  9047. {
  9048. name: "Gigamacro",
  9049. height: math.unit(4000, "miles")
  9050. },
  9051. {
  9052. name: "Teramacro",
  9053. height: math.unit(15000, "miles")
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9059. {
  9060. front: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(150, "lb"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/natalie-nightring/front.svg",
  9066. extra: 1,
  9067. bottom: 0.06
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Uh Oh",
  9074. height: math.unit(0.1, "mm")
  9075. },
  9076. {
  9077. name: "Small",
  9078. height: math.unit(3, "inches")
  9079. },
  9080. {
  9081. name: "Human Scale",
  9082. height: math.unit(6, "feet")
  9083. },
  9084. {
  9085. name: "Librarian",
  9086. height: math.unit(50, "feet"),
  9087. default: true
  9088. },
  9089. {
  9090. name: "Immense",
  9091. height: math.unit(200, "miles")
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(6, "feet"),
  9100. weight: math.unit(180, "lbs"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/danni-rosie/front.svg",
  9104. extra: 1260 / 1128,
  9105. bottom: 0.022
  9106. }
  9107. },
  9108. },
  9109. [
  9110. {
  9111. name: "Micro",
  9112. height: math.unit(2, "inches"),
  9113. default: true
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(5 + 9 / 12, "feet"),
  9122. weight: math.unit(220, "lb"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/samantha-kruse/front.svg",
  9126. extra: (985 / 935),
  9127. bottom: 0.03
  9128. }
  9129. },
  9130. frontUndressed: {
  9131. height: math.unit(5 + 9 / 12, "feet"),
  9132. weight: math.unit(220, "lb"),
  9133. name: "Front (Undressed)",
  9134. image: {
  9135. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9136. extra: (973 / 923),
  9137. bottom: 0.025
  9138. }
  9139. },
  9140. fat: {
  9141. height: math.unit(5 + 9 / 12, "feet"),
  9142. weight: math.unit(900, "lb"),
  9143. name: "Front (Fat)",
  9144. image: {
  9145. source: "./media/characters/samantha-kruse/fat.svg",
  9146. extra: 2688 / 2561
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(5 + 9 / 12, "feet"),
  9154. default: true
  9155. }
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9160. {
  9161. back: {
  9162. height: math.unit(5 + 4 / 12, "feet"),
  9163. weight: math.unit(4963, "lb"),
  9164. name: "Back",
  9165. image: {
  9166. source: "./media/characters/amelia-rosie/back.svg",
  9167. extra: 1113 / 963,
  9168. bottom: 0.01
  9169. }
  9170. },
  9171. },
  9172. [
  9173. {
  9174. name: "Level 0",
  9175. height: math.unit(5 + 4 / 12, "feet")
  9176. },
  9177. {
  9178. name: "Level 1",
  9179. height: math.unit(164597, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Level 2",
  9184. height: math.unit(956243, "miles")
  9185. },
  9186. {
  9187. name: "Level 3",
  9188. height: math.unit(29421709423, "miles")
  9189. },
  9190. {
  9191. name: "Level 4",
  9192. height: math.unit(154, "lightyears")
  9193. },
  9194. {
  9195. name: "Level 5",
  9196. height: math.unit(4738272, "lightyears")
  9197. },
  9198. {
  9199. name: "Level 6",
  9200. height: math.unit(145787152896, "lightyears")
  9201. },
  9202. ]
  9203. ))
  9204. characterMakers.push(() => makeCharacter(
  9205. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9206. {
  9207. front: {
  9208. height: math.unit(5 + 11 / 12, "feet"),
  9209. weight: math.unit(65, "kg"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/rook-kitara/front.svg",
  9213. extra: 1347 / 1274,
  9214. bottom: 0.005
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Totally Unfair",
  9221. height: math.unit(1.8, "mm")
  9222. },
  9223. {
  9224. name: "Lap Rookie",
  9225. height: math.unit(1.4, "feet")
  9226. },
  9227. {
  9228. name: "Normal",
  9229. height: math.unit(5 + 11 / 12, "feet"),
  9230. default: true
  9231. },
  9232. {
  9233. name: "How Did This Happen",
  9234. height: math.unit(80, "miles")
  9235. }
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(7, "feet"),
  9243. weight: math.unit(300, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/pisces/front.svg",
  9247. extra: 2255 / 2115,
  9248. bottom: 0.03
  9249. }
  9250. },
  9251. back: {
  9252. height: math.unit(7, "feet"),
  9253. weight: math.unit(300, "lb"),
  9254. name: "Back",
  9255. image: {
  9256. source: "./media/characters/pisces/back.svg",
  9257. extra: 2146 / 2055,
  9258. bottom: 0.04
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(7, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Swimming Pool",
  9270. height: math.unit(12.2, "meters")
  9271. },
  9272. {
  9273. name: "Olympic Swimming Pool",
  9274. height: math.unit(56.3, "meters")
  9275. },
  9276. {
  9277. name: "Lake Superior",
  9278. height: math.unit(93900, "meters")
  9279. },
  9280. {
  9281. name: "Mediterranean Sea",
  9282. height: math.unit(644457, "meters")
  9283. },
  9284. {
  9285. name: "World's Oceans",
  9286. height: math.unit(4567491, "meters")
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(2.3, "meters"),
  9295. weight: math.unit(120, "kg"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/zelas/front.svg"
  9299. }
  9300. },
  9301. side: {
  9302. height: math.unit(2.3, "meters"),
  9303. weight: math.unit(120, "kg"),
  9304. name: "Side",
  9305. image: {
  9306. source: "./media/characters/zelas/side.svg"
  9307. }
  9308. },
  9309. back: {
  9310. height: math.unit(2.3, "meters"),
  9311. weight: math.unit(120, "kg"),
  9312. name: "Back",
  9313. image: {
  9314. source: "./media/characters/zelas/back.svg"
  9315. }
  9316. },
  9317. foot: {
  9318. height: math.unit(1.116, "feet"),
  9319. name: "Foot",
  9320. image: {
  9321. source: "./media/characters/zelas/foot.svg"
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(2.3, "meters")
  9329. },
  9330. {
  9331. name: "Macro",
  9332. height: math.unit(30, "meters"),
  9333. default: true
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9339. {
  9340. front: {
  9341. height: math.unit(1, "inch"),
  9342. weight: math.unit(0.21, "grams"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/talbot/front.svg",
  9346. extra: 594 / 544
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Micro",
  9353. height: math.unit(1, "inch"),
  9354. default: true
  9355. },
  9356. ]
  9357. ))
  9358. characterMakers.push(() => makeCharacter(
  9359. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9360. {
  9361. front: {
  9362. height: math.unit(3 + 3 / 12, "feet"),
  9363. weight: math.unit(51.8, "lb"),
  9364. name: "Front",
  9365. image: {
  9366. source: "./media/characters/fliss/front.svg",
  9367. extra: 840 / 640
  9368. }
  9369. },
  9370. },
  9371. [
  9372. {
  9373. name: "Teeny Tiny",
  9374. height: math.unit(1, "mm")
  9375. },
  9376. {
  9377. name: "Small",
  9378. height: math.unit(1, "inch"),
  9379. default: true
  9380. },
  9381. {
  9382. name: "Standard Sylveon",
  9383. height: math.unit(3 + 3 / 12, "feet")
  9384. },
  9385. {
  9386. name: "Large Nuisance",
  9387. height: math.unit(33, "feet")
  9388. },
  9389. {
  9390. name: "City Filler",
  9391. height: math.unit(3000, "feet")
  9392. },
  9393. {
  9394. name: "New Horizon",
  9395. height: math.unit(6000, "miles")
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(5, "cm"),
  9404. weight: math.unit(1.94, "g"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/fleta/front.svg",
  9408. extra: 835 / 803
  9409. }
  9410. },
  9411. back: {
  9412. height: math.unit(5, "cm"),
  9413. weight: math.unit(1.94, "g"),
  9414. name: "Back",
  9415. image: {
  9416. source: "./media/characters/fleta/back.svg",
  9417. extra: 835 / 803
  9418. }
  9419. },
  9420. },
  9421. [
  9422. {
  9423. name: "Micro",
  9424. height: math.unit(5, "cm"),
  9425. default: true
  9426. },
  9427. ]
  9428. ))
  9429. characterMakers.push(() => makeCharacter(
  9430. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9431. {
  9432. front: {
  9433. height: math.unit(6, "feet"),
  9434. weight: math.unit(225, "lb"),
  9435. name: "Front",
  9436. image: {
  9437. source: "./media/characters/dominic/front.svg",
  9438. extra: 1770 / 1620,
  9439. bottom: 0.025
  9440. }
  9441. },
  9442. back: {
  9443. height: math.unit(6, "feet"),
  9444. weight: math.unit(225, "lb"),
  9445. name: "Back",
  9446. image: {
  9447. source: "./media/characters/dominic/back.svg",
  9448. extra: 1745 / 1620,
  9449. bottom: 0.065
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Nano",
  9456. height: math.unit(0.1, "mm")
  9457. },
  9458. {
  9459. name: "Micro-",
  9460. height: math.unit(1, "mm")
  9461. },
  9462. {
  9463. name: "Micro",
  9464. height: math.unit(4, "inches")
  9465. },
  9466. {
  9467. name: "Normal",
  9468. height: math.unit(6 + 4 / 12, "feet"),
  9469. default: true
  9470. },
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(115, "feet")
  9474. },
  9475. {
  9476. name: "Macro+",
  9477. height: math.unit(955, "feet")
  9478. },
  9479. {
  9480. name: "Megamacro",
  9481. height: math.unit(8990, "feet")
  9482. },
  9483. {
  9484. name: "Gigmacro",
  9485. height: math.unit(9310, "miles")
  9486. },
  9487. {
  9488. name: "Teramacro",
  9489. height: math.unit(1567005010, "miles")
  9490. },
  9491. {
  9492. name: "Examacro",
  9493. height: math.unit(1425, "parsecs")
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9499. {
  9500. front: {
  9501. height: math.unit(400, "feet"),
  9502. weight: math.unit(44444444, "lb"),
  9503. name: "Front",
  9504. image: {
  9505. source: "./media/characters/major-colonel/front.svg"
  9506. }
  9507. },
  9508. back: {
  9509. height: math.unit(400, "feet"),
  9510. weight: math.unit(44444444, "lb"),
  9511. name: "Back",
  9512. image: {
  9513. source: "./media/characters/major-colonel/back.svg"
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Macro",
  9520. height: math.unit(400, "feet"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9527. {
  9528. catFront: {
  9529. height: math.unit(6, "feet"),
  9530. weight: math.unit(120, "lb"),
  9531. name: "Front (Cat Side)",
  9532. image: {
  9533. source: "./media/characters/axel-lycan/cat-front.svg",
  9534. extra: 430 / 402,
  9535. bottom: 43 / 472.35
  9536. }
  9537. },
  9538. catBack: {
  9539. height: math.unit(6, "feet"),
  9540. weight: math.unit(120, "lb"),
  9541. name: "Back (Cat Side)",
  9542. image: {
  9543. source: "./media/characters/axel-lycan/cat-back.svg",
  9544. extra: 447 / 419,
  9545. bottom: 23.3 / 469
  9546. }
  9547. },
  9548. wolfFront: {
  9549. height: math.unit(6, "feet"),
  9550. weight: math.unit(120, "lb"),
  9551. name: "Front (Wolf Side)",
  9552. image: {
  9553. source: "./media/characters/axel-lycan/wolf-front.svg",
  9554. extra: 485 / 456,
  9555. bottom: 19 / 504
  9556. }
  9557. },
  9558. wolfBack: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(120, "lb"),
  9561. name: "Back (Wolf Side)",
  9562. image: {
  9563. source: "./media/characters/axel-lycan/wolf-back.svg",
  9564. extra: 475 / 438,
  9565. bottom: 39.2 / 514
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Macro",
  9572. height: math.unit(1, "km"),
  9573. default: true
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9579. {
  9580. front: {
  9581. height: math.unit(5 + 9 / 12, "feet"),
  9582. weight: math.unit(175, "lb"),
  9583. name: "Front",
  9584. image: {
  9585. source: "./media/characters/vanrel-hyena/front.svg",
  9586. extra: 1086 / 1010,
  9587. bottom: 0.04
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(5 + 9 / 12, "feet"),
  9595. default: true
  9596. },
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9601. {
  9602. front: {
  9603. height: math.unit(6, "feet"),
  9604. weight: math.unit(103, "lb"),
  9605. name: "Front",
  9606. image: {
  9607. source: "./media/characters/abbott-absol/front.svg",
  9608. extra: 2010 / 1842
  9609. }
  9610. },
  9611. },
  9612. [
  9613. {
  9614. name: "Megamicro",
  9615. height: math.unit(0.1, "mm")
  9616. },
  9617. {
  9618. name: "Micro",
  9619. height: math.unit(1, "inch")
  9620. },
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(6, "feet"),
  9624. default: true
  9625. },
  9626. ]
  9627. ))
  9628. characterMakers.push(() => makeCharacter(
  9629. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9630. {
  9631. front: {
  9632. height: math.unit(6, "feet"),
  9633. weight: math.unit(264, "lb"),
  9634. name: "Front",
  9635. image: {
  9636. source: "./media/characters/hector/front.svg",
  9637. extra: 2280 / 2130,
  9638. bottom: 0.07
  9639. }
  9640. },
  9641. },
  9642. [
  9643. {
  9644. name: "Normal",
  9645. height: math.unit(12.25, "foot"),
  9646. default: true
  9647. },
  9648. {
  9649. name: "Macro",
  9650. height: math.unit(160, "feet")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(6, "feet"),
  9659. weight: math.unit(150, "lb"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/sal/front.svg",
  9663. extra: 1846 / 1699,
  9664. bottom: 0.04
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Megamacro",
  9671. height: math.unit(10, "miles"),
  9672. default: true
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9678. {
  9679. front: {
  9680. height: math.unit(3, "meters"),
  9681. weight: math.unit(450, "kg"),
  9682. name: "front",
  9683. image: {
  9684. source: "./media/characters/ranger/front.svg",
  9685. extra: 2401 / 2243,
  9686. bottom: 0.05
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(3, "meters"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9700. {
  9701. front: {
  9702. height: math.unit(14, "feet"),
  9703. weight: math.unit(800, "kg"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/theresa/front.svg",
  9707. extra: 3575 / 3346,
  9708. bottom: 0.03
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(14, "feet"),
  9716. default: true
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9722. {
  9723. front: {
  9724. height: math.unit(6, "feet"),
  9725. weight: math.unit(3, "kg"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/ine/front.svg",
  9729. extra: 678 / 539,
  9730. bottom: 0.023
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(2.265, "feet"),
  9738. default: true
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(5, "feet"),
  9747. weight: math.unit(30, "kg"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/vial/front.svg",
  9751. extra: 1365 / 1277,
  9752. bottom: 0.04
  9753. }
  9754. },
  9755. },
  9756. [
  9757. {
  9758. name: "Normal",
  9759. height: math.unit(5, "feet"),
  9760. default: true
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9766. {
  9767. side: {
  9768. height: math.unit(3.4, "meters"),
  9769. weight: math.unit(1000, "lb"),
  9770. name: "Side",
  9771. image: {
  9772. source: "./media/characters/rovoska/side.svg",
  9773. extra: 4403 / 1515
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(3.4, "meters"),
  9781. default: true
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9787. {
  9788. front: {
  9789. height: math.unit(8, "feet"),
  9790. weight: math.unit(315, "lb"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/gunner-rotthbauer/front.svg"
  9794. }
  9795. },
  9796. back: {
  9797. height: math.unit(8, "feet"),
  9798. weight: math.unit(315, "lb"),
  9799. name: "Back",
  9800. image: {
  9801. source: "./media/characters/gunner-rotthbauer/back.svg"
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Micro",
  9808. height: math.unit(3.5, "inches")
  9809. },
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(8, "feet"),
  9813. default: true
  9814. },
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(250, "feet")
  9818. },
  9819. {
  9820. name: "Megamacro",
  9821. height: math.unit(1, "AU")
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9827. {
  9828. front: {
  9829. height: math.unit(5 + 5 / 12, "feet"),
  9830. weight: math.unit(140, "lb"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/allatia/front.svg",
  9834. extra: 1227 / 1180,
  9835. bottom: 0.027
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(5 + 5 / 12, "feet")
  9843. },
  9844. {
  9845. name: "Macro",
  9846. height: math.unit(250, "feet"),
  9847. default: true
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(8, "miles")
  9852. }
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9857. {
  9858. front: {
  9859. height: math.unit(6, "feet"),
  9860. weight: math.unit(120, "lb"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/tene/front.svg",
  9864. extra: 1728 / 1578,
  9865. bottom: 0.022
  9866. }
  9867. },
  9868. stomping: {
  9869. height: math.unit(2.025, "meters"),
  9870. weight: math.unit(120, "lb"),
  9871. name: "Stomping",
  9872. image: {
  9873. source: "./media/characters/tene/stomping.svg",
  9874. extra: 938 / 873,
  9875. bottom: 0.01
  9876. }
  9877. },
  9878. sitting: {
  9879. height: math.unit(1, "meter"),
  9880. weight: math.unit(120, "lb"),
  9881. name: "Sitting",
  9882. image: {
  9883. source: "./media/characters/tene/sitting.svg",
  9884. extra: 437 / 415,
  9885. bottom: 0.1
  9886. }
  9887. },
  9888. feral: {
  9889. height: math.unit(3.9, "feet"),
  9890. weight: math.unit(250, "lb"),
  9891. name: "Feral",
  9892. image: {
  9893. source: "./media/characters/tene/feral.svg",
  9894. extra: 717 / 458,
  9895. bottom: 0.179
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(6, "feet")
  9903. },
  9904. {
  9905. name: "Macro",
  9906. height: math.unit(300, "feet"),
  9907. default: true
  9908. },
  9909. {
  9910. name: "Megamacro",
  9911. height: math.unit(5, "miles")
  9912. },
  9913. ]
  9914. ))
  9915. characterMakers.push(() => makeCharacter(
  9916. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9917. {
  9918. side: {
  9919. height: math.unit(6, "feet"),
  9920. name: "Side",
  9921. image: {
  9922. source: "./media/characters/evander/side.svg",
  9923. extra: 877 / 477
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(0.83, "meters"),
  9931. default: true
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(12, "feet"),
  9940. weight: math.unit(1000, "lb"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9944. extra: 1762 / 1611
  9945. }
  9946. },
  9947. back: {
  9948. height: math.unit(12, "feet"),
  9949. weight: math.unit(1000, "lb"),
  9950. name: "Back",
  9951. image: {
  9952. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9953. extra: 1762 / 1611
  9954. }
  9955. },
  9956. },
  9957. [
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(12, "feet"),
  9961. default: true
  9962. },
  9963. {
  9964. name: "Kaiju",
  9965. height: math.unit(150, "feet")
  9966. },
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9971. {
  9972. front: {
  9973. height: math.unit(6, "feet"),
  9974. weight: math.unit(150, "lb"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/zero-alurus/front.svg"
  9978. }
  9979. },
  9980. back: {
  9981. height: math.unit(6, "feet"),
  9982. weight: math.unit(150, "lb"),
  9983. name: "Back",
  9984. image: {
  9985. source: "./media/characters/zero-alurus/back.svg"
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Normal",
  9992. height: math.unit(5 + 10 / 12, "feet")
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(60, "feet"),
  9997. default: true
  9998. },
  9999. {
  10000. name: "Macro+",
  10001. height: math.unit(450, "feet")
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(200, "lb"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/mega-shi/front.svg",
  10014. extra: 1279 / 1250,
  10015. bottom: 0.02
  10016. }
  10017. },
  10018. back: {
  10019. height: math.unit(6, "feet"),
  10020. weight: math.unit(200, "lb"),
  10021. name: "Back",
  10022. image: {
  10023. source: "./media/characters/mega-shi/back.svg",
  10024. extra: 1279 / 1250,
  10025. bottom: 0.02
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Micro",
  10032. height: math.unit(16 + 6 / 12, "feet")
  10033. },
  10034. {
  10035. name: "Third Dimension",
  10036. height: math.unit(40, "meters")
  10037. },
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(660, "feet"),
  10041. default: true
  10042. },
  10043. {
  10044. name: "Megamacro",
  10045. height: math.unit(10, "miles")
  10046. },
  10047. {
  10048. name: "Planetary Launch",
  10049. height: math.unit(500, "miles")
  10050. },
  10051. {
  10052. name: "Interstellar",
  10053. height: math.unit(1e9, "miles")
  10054. },
  10055. {
  10056. name: "Leaving the Universe",
  10057. height: math.unit(1, "gigaparsec")
  10058. },
  10059. {
  10060. name: "Travelling Universes",
  10061. height: math.unit(30e15, "parsecs")
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(6, "feet"),
  10070. weight: math.unit(150, "lb"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/odyssey/front.svg",
  10074. extra: 1782 / 1582,
  10075. bottom: 0.01
  10076. }
  10077. },
  10078. side: {
  10079. height: math.unit(5.7, "feet"),
  10080. weight: math.unit(140, "lb"),
  10081. name: "Side",
  10082. image: {
  10083. source: "./media/characters/odyssey/side.svg",
  10084. extra: 6462 / 5700
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(5 + 4 / 12, "feet")
  10092. },
  10093. {
  10094. name: "Macro",
  10095. height: math.unit(1, "km")
  10096. },
  10097. {
  10098. name: "Megamacro",
  10099. height: math.unit(3000, "km")
  10100. },
  10101. {
  10102. name: "Gigamacro",
  10103. height: math.unit(1, "AU"),
  10104. default: true
  10105. },
  10106. {
  10107. name: "Omniversal",
  10108. height: math.unit(100e14, "lightyears")
  10109. },
  10110. ]
  10111. ))
  10112. characterMakers.push(() => makeCharacter(
  10113. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10114. {
  10115. front: {
  10116. height: math.unit(6, "feet"),
  10117. weight: math.unit(300, "lb"),
  10118. name: "Front",
  10119. image: {
  10120. source: "./media/characters/mekuto/front.svg",
  10121. extra: 921 / 832,
  10122. bottom: 0.03
  10123. }
  10124. },
  10125. hand: {
  10126. height: math.unit(6 / 10.24, "feet"),
  10127. name: "Hand",
  10128. image: {
  10129. source: "./media/characters/mekuto/hand.svg"
  10130. }
  10131. },
  10132. foot: {
  10133. height: math.unit(6 / 5.05, "feet"),
  10134. name: "Foot",
  10135. image: {
  10136. source: "./media/characters/mekuto/foot.svg"
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Minimicro",
  10143. height: math.unit(0.2, "inches")
  10144. },
  10145. {
  10146. name: "Micro",
  10147. height: math.unit(1.5, "inches")
  10148. },
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(5 + 11 / 12, "feet"),
  10152. default: true
  10153. },
  10154. {
  10155. name: "Minimacro",
  10156. height: math.unit(17 + 9 / 12, "feet")
  10157. },
  10158. {
  10159. name: "Macro",
  10160. height: math.unit(177.5, "feet")
  10161. },
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(152, "miles")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(6.5, "inches"),
  10173. weight: math.unit(13, "oz"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/dafydd-tomos/front.svg",
  10177. extra: 2990 / 2603,
  10178. bottom: 0.03
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Micro",
  10185. height: math.unit(6.5, "inches"),
  10186. default: true
  10187. },
  10188. ]
  10189. ))
  10190. characterMakers.push(() => makeCharacter(
  10191. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10192. {
  10193. front: {
  10194. height: math.unit(6, "feet"),
  10195. weight: math.unit(150, "lb"),
  10196. name: "Front",
  10197. image: {
  10198. source: "./media/characters/splinter/front.svg",
  10199. extra: 2990 / 2882,
  10200. bottom: 0.04
  10201. }
  10202. },
  10203. back: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(150, "lb"),
  10206. name: "Back",
  10207. image: {
  10208. source: "./media/characters/splinter/back.svg",
  10209. extra: 2990 / 2882,
  10210. bottom: 0.04
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(6, "feet")
  10218. },
  10219. {
  10220. name: "Macro",
  10221. height: math.unit(230, "meters"),
  10222. default: true
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(4 + 10 / 12, "feet"),
  10231. weight: math.unit(480, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/snow-gabumon/front.svg",
  10235. extra: 1140 / 963,
  10236. bottom: 0.058
  10237. }
  10238. },
  10239. back: {
  10240. height: math.unit(4 + 10 / 12, "feet"),
  10241. weight: math.unit(480, "lb"),
  10242. name: "Back",
  10243. image: {
  10244. source: "./media/characters/snow-gabumon/back.svg",
  10245. extra: 1115 / 962,
  10246. bottom: 0.041
  10247. }
  10248. },
  10249. frontUndresed: {
  10250. height: math.unit(4 + 10 / 12, "feet"),
  10251. weight: math.unit(480, "lb"),
  10252. name: "Front (Undressed)",
  10253. image: {
  10254. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10255. extra: 1061 / 960,
  10256. bottom: 0.045
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Micro",
  10263. height: math.unit(1, "inch")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(4 + 10 / 12, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(200, "feet")
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(120, "miles")
  10277. },
  10278. {
  10279. name: "Gigamacro",
  10280. height: math.unit(9800, "miles")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(1.7, "meters"),
  10289. weight: math.unit(140, "lb"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/moody/front.svg",
  10293. extra: 3226 / 3007,
  10294. bottom: 0.087
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(1, "mm")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(1.7, "meters"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Macro",
  10310. height: math.unit(80, "meters")
  10311. },
  10312. {
  10313. name: "Macro+",
  10314. height: math.unit(500, "meters")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(6, "feet"),
  10323. weight: math.unit(150, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/zyas/front.svg",
  10327. extra: 1180 / 1120,
  10328. bottom: 0.045
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(10, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Macro",
  10340. height: math.unit(500, "feet")
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(5, "miles")
  10345. },
  10346. {
  10347. name: "Teramacro",
  10348. height: math.unit(150000, "miles")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(150, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/cuon/front.svg",
  10361. extra: 1390 / 1320,
  10362. bottom: 0.008
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Micro",
  10369. height: math.unit(3, "inches")
  10370. },
  10371. {
  10372. name: "Normal",
  10373. height: math.unit(18 + 9 / 12, "feet"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(360, "feet")
  10379. },
  10380. {
  10381. name: "Megamacro",
  10382. height: math.unit(360, "miles")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(2.4, "meters"),
  10391. weight: math.unit(70, "kg"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/nyanuxk/front.svg",
  10395. extra: 1172 / 1084,
  10396. bottom: 0.065
  10397. }
  10398. },
  10399. side: {
  10400. height: math.unit(2.4, "meters"),
  10401. weight: math.unit(70, "kg"),
  10402. name: "Side",
  10403. image: {
  10404. source: "./media/characters/nyanuxk/side.svg",
  10405. extra: 1190 / 1132,
  10406. bottom: 0.007
  10407. }
  10408. },
  10409. back: {
  10410. height: math.unit(2.4, "meters"),
  10411. weight: math.unit(70, "kg"),
  10412. name: "Back",
  10413. image: {
  10414. source: "./media/characters/nyanuxk/back.svg",
  10415. extra: 1200 / 1141,
  10416. bottom: 0.015
  10417. }
  10418. },
  10419. foot: {
  10420. height: math.unit(0.52, "meters"),
  10421. name: "Foot",
  10422. image: {
  10423. source: "./media/characters/nyanuxk/foot.svg"
  10424. }
  10425. },
  10426. },
  10427. [
  10428. {
  10429. name: "Micro",
  10430. height: math.unit(2, "cm")
  10431. },
  10432. {
  10433. name: "Normal",
  10434. height: math.unit(2.4, "meters"),
  10435. default: true
  10436. },
  10437. {
  10438. name: "Smaller Macro",
  10439. height: math.unit(120, "meters")
  10440. },
  10441. {
  10442. name: "Bigger Macro",
  10443. height: math.unit(1.2, "km")
  10444. },
  10445. {
  10446. name: "Megamacro",
  10447. height: math.unit(15, "kilometers")
  10448. },
  10449. {
  10450. name: "Gigamacro",
  10451. height: math.unit(2000, "km")
  10452. },
  10453. {
  10454. name: "Teramacro",
  10455. height: math.unit(500000, "km")
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10461. {
  10462. side: {
  10463. height: math.unit(6, "feet"),
  10464. name: "Side",
  10465. image: {
  10466. source: "./media/characters/ailbhe/side.svg",
  10467. extra: 757 / 464,
  10468. bottom: 0.041
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Normal",
  10475. height: math.unit(1.07, "meters"),
  10476. default: true
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(120, "kg"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/zevulfius/front.svg",
  10489. extra: 965 / 903
  10490. }
  10491. },
  10492. side: {
  10493. height: math.unit(6, "feet"),
  10494. weight: math.unit(120, "kg"),
  10495. name: "Side",
  10496. image: {
  10497. source: "./media/characters/zevulfius/side.svg",
  10498. extra: 939 / 900
  10499. }
  10500. },
  10501. back: {
  10502. height: math.unit(6, "feet"),
  10503. weight: math.unit(120, "kg"),
  10504. name: "Back",
  10505. image: {
  10506. source: "./media/characters/zevulfius/back.svg",
  10507. extra: 918 / 854,
  10508. bottom: 0.005
  10509. }
  10510. },
  10511. foot: {
  10512. height: math.unit(6 / 3.72, "feet"),
  10513. name: "Foot",
  10514. image: {
  10515. source: "./media/characters/zevulfius/foot.svg"
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(750, "meters")
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(20, "km"),
  10527. default: true
  10528. },
  10529. {
  10530. name: "Gigamacro",
  10531. height: math.unit(2000, "km")
  10532. },
  10533. {
  10534. name: "Teramacro",
  10535. height: math.unit(250000, "km")
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(100, "feet"),
  10544. weight: math.unit(350, "kg"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/rikes/front.svg",
  10548. extra: 1565 / 1483,
  10549. bottom: 0.017
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Macro",
  10556. height: math.unit(100, "feet"),
  10557. default: true
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(8, "feet"),
  10566. weight: math.unit(356, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/adam-silver-mane/front.svg",
  10570. extra: 1036/937,
  10571. bottom: 63/1099
  10572. }
  10573. },
  10574. side: {
  10575. height: math.unit(8, "feet"),
  10576. weight: math.unit(356, "lb"),
  10577. name: "Side",
  10578. image: {
  10579. source: "./media/characters/adam-silver-mane/side.svg",
  10580. extra: 997/901,
  10581. bottom: 59/1056
  10582. }
  10583. },
  10584. frontNsfw: {
  10585. height: math.unit(8, "feet"),
  10586. weight: math.unit(356, "lb"),
  10587. name: "Front (NSFW)",
  10588. image: {
  10589. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10590. extra: 1036/937,
  10591. bottom: 63/1099
  10592. }
  10593. },
  10594. sideNsfw: {
  10595. height: math.unit(8, "feet"),
  10596. weight: math.unit(356, "lb"),
  10597. name: "Side (NSFW)",
  10598. image: {
  10599. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10600. extra: 997/901,
  10601. bottom: 59/1056
  10602. }
  10603. },
  10604. dick: {
  10605. height: math.unit(2.1, "feet"),
  10606. name: "Dick",
  10607. image: {
  10608. source: "./media/characters/adam-silver-mane/dick.svg"
  10609. }
  10610. },
  10611. taur: {
  10612. height: math.unit(16, "feet"),
  10613. weight: math.unit(1500, "kg"),
  10614. name: "Taur",
  10615. image: {
  10616. source: "./media/characters/adam-silver-mane/taur.svg",
  10617. extra: 1713 / 1571,
  10618. bottom: 0.01
  10619. }
  10620. },
  10621. },
  10622. [
  10623. {
  10624. name: "Normal",
  10625. height: math.unit(8, "feet")
  10626. },
  10627. {
  10628. name: "Minimacro",
  10629. height: math.unit(80, "feet")
  10630. },
  10631. {
  10632. name: "MDA",
  10633. height: math.unit(80, "meters")
  10634. },
  10635. {
  10636. name: "Macro",
  10637. height: math.unit(800, "feet"),
  10638. default: true
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(8000, "feet")
  10643. },
  10644. {
  10645. name: "Gigamacro",
  10646. height: math.unit(800, "miles")
  10647. },
  10648. {
  10649. name: "Teramacro",
  10650. height: math.unit(80000, "miles")
  10651. },
  10652. {
  10653. name: "Celestial",
  10654. height: math.unit(8e6, "miles")
  10655. },
  10656. {
  10657. name: "Star Dragon",
  10658. height: math.unit(800000, "parsecs")
  10659. },
  10660. {
  10661. name: "Godly",
  10662. height: math.unit(800, "teraparsecs")
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10668. {
  10669. front: {
  10670. height: math.unit(6, "feet"),
  10671. weight: math.unit(150, "lb"),
  10672. name: "Front",
  10673. image: {
  10674. source: "./media/characters/ky'owin/front.svg",
  10675. extra: 3888 / 3068,
  10676. bottom: 0.015
  10677. }
  10678. },
  10679. },
  10680. [
  10681. {
  10682. name: "Normal",
  10683. height: math.unit(6 + 8 / 12, "feet")
  10684. },
  10685. {
  10686. name: "Large",
  10687. height: math.unit(68, "feet")
  10688. },
  10689. {
  10690. name: "Macro",
  10691. height: math.unit(132, "feet")
  10692. },
  10693. {
  10694. name: "Macro+",
  10695. height: math.unit(340, "feet")
  10696. },
  10697. {
  10698. name: "Macro++",
  10699. height: math.unit(680, "feet"),
  10700. default: true
  10701. },
  10702. {
  10703. name: "Megamacro",
  10704. height: math.unit(1, "mile")
  10705. },
  10706. {
  10707. name: "Megamacro+",
  10708. height: math.unit(10, "miles")
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(4, "feet"),
  10717. weight: math.unit(50, "lb"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/mal/front.svg",
  10721. extra: 785 / 724,
  10722. bottom: 0.07
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Micro",
  10729. height: math.unit(4, "inches")
  10730. },
  10731. {
  10732. name: "Normal",
  10733. height: math.unit(4, "feet"),
  10734. default: true
  10735. },
  10736. {
  10737. name: "Macro",
  10738. height: math.unit(200, "feet")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/jordan-deware/front.svg",
  10751. extra: 1191 / 1012
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Nano",
  10758. height: math.unit(0.01, "mm")
  10759. },
  10760. {
  10761. name: "Minimicro",
  10762. height: math.unit(1, "mm")
  10763. },
  10764. {
  10765. name: "Micro",
  10766. height: math.unit(0.5, "inches")
  10767. },
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(4, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Minimacro",
  10775. height: math.unit(40, "meters")
  10776. },
  10777. {
  10778. name: "Small Macro",
  10779. height: math.unit(400, "meters")
  10780. },
  10781. {
  10782. name: "Macro",
  10783. height: math.unit(4, "miles")
  10784. },
  10785. {
  10786. name: "Megamacro",
  10787. height: math.unit(40, "miles")
  10788. },
  10789. {
  10790. name: "Megamacro+",
  10791. height: math.unit(400, "miles")
  10792. },
  10793. {
  10794. name: "Gigamacro",
  10795. height: math.unit(400000, "miles")
  10796. },
  10797. ]
  10798. ))
  10799. characterMakers.push(() => makeCharacter(
  10800. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10801. {
  10802. side: {
  10803. height: math.unit(6, "feet"),
  10804. weight: math.unit(150, "lb"),
  10805. name: "Side",
  10806. image: {
  10807. source: "./media/characters/kimiko/side.svg",
  10808. extra: 600 / 358
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(15, "feet"),
  10816. default: true
  10817. },
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(220, "feet")
  10821. },
  10822. {
  10823. name: "Macro+",
  10824. height: math.unit(1450, "feet")
  10825. },
  10826. {
  10827. name: "Megamacro",
  10828. height: math.unit(11500, "feet")
  10829. },
  10830. {
  10831. name: "Gigamacro",
  10832. height: math.unit(9500, "miles")
  10833. },
  10834. {
  10835. name: "Teramacro",
  10836. height: math.unit(2208005005, "miles")
  10837. },
  10838. {
  10839. name: "Examacro",
  10840. height: math.unit(2750, "parsecs")
  10841. },
  10842. {
  10843. name: "Zettamacro",
  10844. height: math.unit(101500, "parsecs")
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(70, "kg"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/andrew-sleepy/front.svg"
  10857. }
  10858. },
  10859. side: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(70, "kg"),
  10862. name: "Side",
  10863. image: {
  10864. source: "./media/characters/andrew-sleepy/side.svg"
  10865. }
  10866. },
  10867. },
  10868. [
  10869. {
  10870. name: "Micro",
  10871. height: math.unit(1, "mm"),
  10872. default: true
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(150, "lb"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/judio/front.svg",
  10885. extra: 1258 / 1110
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(5 + 6 / 12, "feet")
  10893. },
  10894. {
  10895. name: "Macro",
  10896. height: math.unit(1000, "feet"),
  10897. default: true
  10898. },
  10899. {
  10900. name: "Megamacro",
  10901. height: math.unit(10, "miles")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(6, "feet"),
  10910. weight: math.unit(68, "kg"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/nomaxice/front.svg",
  10914. extra: 1498 / 1073,
  10915. bottom: 0.075
  10916. }
  10917. },
  10918. foot: {
  10919. height: math.unit(1.1, "feet"),
  10920. name: "Foot",
  10921. image: {
  10922. source: "./media/characters/nomaxice/foot.svg"
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Micro",
  10929. height: math.unit(8, "cm")
  10930. },
  10931. {
  10932. name: "Norm",
  10933. height: math.unit(1.82, "m")
  10934. },
  10935. {
  10936. name: "Norm+",
  10937. height: math.unit(8.8, "feet")
  10938. },
  10939. {
  10940. name: "Big",
  10941. height: math.unit(8, "meters"),
  10942. default: true
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(18, "meters")
  10947. },
  10948. {
  10949. name: "Macro+",
  10950. height: math.unit(88, "meters")
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(12, "feet"),
  10959. weight: math.unit(1.5, "tons"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/dydros/front.svg",
  10963. extra: 863 / 800,
  10964. bottom: 0.015
  10965. }
  10966. },
  10967. back: {
  10968. height: math.unit(12, "feet"),
  10969. weight: math.unit(1.5, "tons"),
  10970. name: "Back",
  10971. image: {
  10972. source: "./media/characters/dydros/back.svg",
  10973. extra: 900 / 843,
  10974. bottom: 0.005
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Normal",
  10981. height: math.unit(12, "feet"),
  10982. default: true
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10988. {
  10989. front: {
  10990. height: math.unit(6, "feet"),
  10991. weight: math.unit(100, "kg"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/riggi/front.svg",
  10995. extra: 5787 / 5303
  10996. }
  10997. },
  10998. hyper: {
  10999. height: math.unit(6 * 5 / 3, "feet"),
  11000. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11001. name: "Hyper",
  11002. image: {
  11003. source: "./media/characters/riggi/hyper.svg",
  11004. extra: 3595 / 3485
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Small Macro",
  11011. height: math.unit(50, "feet")
  11012. },
  11013. {
  11014. name: "Default",
  11015. height: math.unit(200, "feet"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Loom",
  11020. height: math.unit(10000, "feet")
  11021. },
  11022. {
  11023. name: "Cruising Altitude",
  11024. height: math.unit(30000, "feet")
  11025. },
  11026. {
  11027. name: "Megamacro",
  11028. height: math.unit(100, "miles")
  11029. },
  11030. {
  11031. name: "Continent Sized",
  11032. height: math.unit(2800, "miles")
  11033. },
  11034. {
  11035. name: "Earth Sized",
  11036. height: math.unit(8000, "miles")
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11042. {
  11043. front: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(250, "lb"),
  11046. name: "Front",
  11047. image: {
  11048. source: "./media/characters/alexi/front.svg",
  11049. extra: 3483 / 3291,
  11050. bottom: 0.04
  11051. }
  11052. },
  11053. back: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(250, "lb"),
  11056. name: "Back",
  11057. image: {
  11058. source: "./media/characters/alexi/back.svg",
  11059. extra: 3533 / 3356,
  11060. bottom: 0.021
  11061. }
  11062. },
  11063. frontTransforming: {
  11064. height: math.unit(8.58, "feet"),
  11065. weight: math.unit(1300, "lb"),
  11066. name: "Transforming",
  11067. image: {
  11068. source: "./media/characters/alexi/front-transforming.svg",
  11069. extra: 437 / 409,
  11070. bottom: 19 / 458.66
  11071. }
  11072. },
  11073. frontTransformed: {
  11074. height: math.unit(12.5, "feet"),
  11075. weight: math.unit(4000, "lb"),
  11076. name: "Transformed",
  11077. image: {
  11078. source: "./media/characters/alexi/front-transformed.svg",
  11079. extra: 639 / 614,
  11080. bottom: 30.55 / 671
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(14, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Minimacro",
  11092. height: math.unit(30, "meters")
  11093. },
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(500, "meters")
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(9000, "km")
  11101. },
  11102. {
  11103. name: "Teramacro",
  11104. height: math.unit(384000, "km")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/kayroo/front.svg",
  11117. extra: 1153 / 1038,
  11118. bottom: 0.06
  11119. }
  11120. },
  11121. foot: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(150, "lb"),
  11124. name: "Foot",
  11125. image: {
  11126. source: "./media/characters/kayroo/foot.svg"
  11127. }
  11128. },
  11129. },
  11130. [
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(8, "feet"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Minimacro",
  11138. height: math.unit(250, "feet")
  11139. },
  11140. {
  11141. name: "Macro",
  11142. height: math.unit(2800, "feet")
  11143. },
  11144. {
  11145. name: "Megamacro",
  11146. height: math.unit(5200, "feet")
  11147. },
  11148. {
  11149. name: "Gigamacro",
  11150. height: math.unit(27000, "feet")
  11151. },
  11152. {
  11153. name: "Omega",
  11154. height: math.unit(45000, "feet")
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(18, "feet"),
  11163. weight: math.unit(5800, "lb"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/rhys/front.svg",
  11167. extra: 3386 / 3090,
  11168. bottom: 0.07
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Normal",
  11175. height: math.unit(18, "feet"),
  11176. default: true
  11177. },
  11178. {
  11179. name: "Working Size",
  11180. height: math.unit(200, "feet")
  11181. },
  11182. {
  11183. name: "Demolition Size",
  11184. height: math.unit(2000, "feet")
  11185. },
  11186. {
  11187. name: "Maximum Licensed Size",
  11188. height: math.unit(5, "miles")
  11189. },
  11190. {
  11191. name: "Maximum Observed Size",
  11192. height: math.unit(10, "yottameters")
  11193. },
  11194. ]
  11195. ))
  11196. characterMakers.push(() => makeCharacter(
  11197. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11198. {
  11199. front: {
  11200. height: math.unit(6, "feet"),
  11201. weight: math.unit(250, "lb"),
  11202. name: "Front",
  11203. image: {
  11204. source: "./media/characters/toto/front.svg",
  11205. extra: 527 / 479,
  11206. bottom: 0.05
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Micro",
  11213. height: math.unit(3, "feet")
  11214. },
  11215. {
  11216. name: "Normal",
  11217. height: math.unit(10, "feet")
  11218. },
  11219. {
  11220. name: "Macro",
  11221. height: math.unit(150, "feet"),
  11222. default: true
  11223. },
  11224. {
  11225. name: "Megamacro",
  11226. height: math.unit(1200, "feet")
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "King", species: ["lion"], tags: ["anthro"] },
  11232. {
  11233. back: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Back",
  11237. image: {
  11238. source: "./media/characters/king/back.svg"
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Micro",
  11245. height: math.unit(2, "inches")
  11246. },
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(8, "feet")
  11250. },
  11251. {
  11252. name: "Macro",
  11253. height: math.unit(200, "feet"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Megamacro",
  11258. height: math.unit(50, "miles")
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11264. {
  11265. front: {
  11266. height: math.unit(11, "feet"),
  11267. weight: math.unit(1400, "lb"),
  11268. name: "Front",
  11269. image: {
  11270. source: "./media/characters/cordite/front.svg",
  11271. extra: 1919/1827,
  11272. bottom: 40/1959
  11273. }
  11274. },
  11275. side: {
  11276. height: math.unit(11, "feet"),
  11277. weight: math.unit(1400, "lb"),
  11278. name: "Side",
  11279. image: {
  11280. source: "./media/characters/cordite/side.svg",
  11281. extra: 1908/1793,
  11282. bottom: 38/1946
  11283. }
  11284. },
  11285. back: {
  11286. height: math.unit(11, "feet"),
  11287. weight: math.unit(1400, "lb"),
  11288. name: "Back",
  11289. image: {
  11290. source: "./media/characters/cordite/back.svg",
  11291. extra: 1938/1837,
  11292. bottom: 10/1948
  11293. }
  11294. },
  11295. feral: {
  11296. height: math.unit(2, "feet"),
  11297. weight: math.unit(90, "lb"),
  11298. name: "Feral",
  11299. image: {
  11300. source: "./media/characters/cordite/feral.svg",
  11301. extra: 1260 / 755,
  11302. bottom: 0.05
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(11, "feet"),
  11310. default: true
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(6, "feet"),
  11319. weight: math.unit(150, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/pianostrong/front.svg",
  11323. extra: 6577 / 6254,
  11324. bottom: 0.02
  11325. }
  11326. },
  11327. side: {
  11328. height: math.unit(6, "feet"),
  11329. weight: math.unit(150, "lb"),
  11330. name: "Side",
  11331. image: {
  11332. source: "./media/characters/pianostrong/side.svg",
  11333. extra: 6106 / 5730
  11334. }
  11335. },
  11336. back: {
  11337. height: math.unit(6, "feet"),
  11338. weight: math.unit(150, "lb"),
  11339. name: "Back",
  11340. image: {
  11341. source: "./media/characters/pianostrong/back.svg",
  11342. extra: 6085 / 5733,
  11343. bottom: 0.01
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Macro",
  11350. height: math.unit(100, "feet")
  11351. },
  11352. {
  11353. name: "Macro+",
  11354. height: math.unit(300, "feet"),
  11355. default: true
  11356. },
  11357. {
  11358. name: "Macro++",
  11359. height: math.unit(1000, "feet")
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11365. {
  11366. front: {
  11367. height: math.unit(6, "feet"),
  11368. weight: math.unit(150, "lb"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/kona/front.svg",
  11372. extra: 2960 / 2629,
  11373. bottom: 0.005
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Normal",
  11380. height: math.unit(11 + 8 / 12, "feet")
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(850, "feet"),
  11385. default: true
  11386. },
  11387. {
  11388. name: "Macro+",
  11389. height: math.unit(1.5, "km"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Megamacro",
  11394. height: math.unit(80, "miles")
  11395. },
  11396. {
  11397. name: "Gigamacro",
  11398. height: math.unit(3500, "miles")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11404. {
  11405. side: {
  11406. height: math.unit(1.9, "meters"),
  11407. weight: math.unit(326, "kg"),
  11408. name: "Side",
  11409. image: {
  11410. source: "./media/characters/levi/side.svg",
  11411. extra: 1704 / 1334,
  11412. bottom: 0.02
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(1.9, "meters"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Macro",
  11424. height: math.unit(20, "meters")
  11425. },
  11426. {
  11427. name: "Macro+",
  11428. height: math.unit(200, "meters")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(2, "km")
  11433. },
  11434. {
  11435. name: "Megamacro+",
  11436. height: math.unit(20, "km")
  11437. },
  11438. {
  11439. name: "Gigamacro",
  11440. height: math.unit(2500, "km")
  11441. },
  11442. {
  11443. name: "Gigamacro+",
  11444. height: math.unit(120000, "km")
  11445. },
  11446. {
  11447. name: "Teramacro",
  11448. height: math.unit(7.77e6, "km")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(6 + 4/12, "feet"),
  11457. weight: math.unit(190, "lb"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/bmc/front.svg",
  11461. extra: 1626/1472,
  11462. bottom: 79/1705
  11463. }
  11464. },
  11465. back: {
  11466. height: math.unit(6 + 4/12, "feet"),
  11467. weight: math.unit(190, "lb"),
  11468. name: "Back",
  11469. image: {
  11470. source: "./media/characters/bmc/back.svg",
  11471. extra: 1640/1479,
  11472. bottom: 45/1685
  11473. }
  11474. },
  11475. frontArmor: {
  11476. height: math.unit(6 + 4/12, "feet"),
  11477. weight: math.unit(190, "lb"),
  11478. name: "Front-armor",
  11479. image: {
  11480. source: "./media/characters/bmc/front-armor.svg",
  11481. extra: 1538/1468,
  11482. bottom: 79/1617
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Human-sized",
  11489. height: math.unit(6 + 4 / 12, "feet")
  11490. },
  11491. {
  11492. name: "Interactive Size",
  11493. height: math.unit(25, "feet")
  11494. },
  11495. {
  11496. name: "Small",
  11497. height: math.unit(250, "feet")
  11498. },
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(1250, "feet"),
  11502. default: true
  11503. },
  11504. {
  11505. name: "Good Day",
  11506. height: math.unit(88, "miles")
  11507. },
  11508. {
  11509. name: "Largest Measured Size",
  11510. height: math.unit(105.960, "galaxies")
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11516. {
  11517. front: {
  11518. height: math.unit(20, "feet"),
  11519. weight: math.unit(2016, "kg"),
  11520. name: "Front",
  11521. image: {
  11522. source: "./media/characters/sven-the-kaiju/front.svg",
  11523. extra: 1277/1250,
  11524. bottom: 35/1312
  11525. }
  11526. },
  11527. mouth: {
  11528. height: math.unit(1.85, "feet"),
  11529. name: "Mouth",
  11530. image: {
  11531. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11532. }
  11533. },
  11534. },
  11535. [
  11536. {
  11537. name: "Fairy",
  11538. height: math.unit(6, "inches")
  11539. },
  11540. {
  11541. name: "Normal",
  11542. height: math.unit(20, "feet"),
  11543. default: true
  11544. },
  11545. {
  11546. name: "Rampage",
  11547. height: math.unit(200, "feet")
  11548. },
  11549. {
  11550. name: "Archfey Forest Guardian",
  11551. height: math.unit(1, "mile")
  11552. },
  11553. ]
  11554. ))
  11555. characterMakers.push(() => makeCharacter(
  11556. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11557. {
  11558. front: {
  11559. height: math.unit(4, "meters"),
  11560. weight: math.unit(2, "tons"),
  11561. name: "Front",
  11562. image: {
  11563. source: "./media/characters/marik/front.svg",
  11564. extra: 1057 / 1003,
  11565. bottom: 0.08
  11566. }
  11567. },
  11568. },
  11569. [
  11570. {
  11571. name: "Normal",
  11572. height: math.unit(4, "meters"),
  11573. default: true
  11574. },
  11575. {
  11576. name: "Macro",
  11577. height: math.unit(20, "meters")
  11578. },
  11579. {
  11580. name: "Megamacro",
  11581. height: math.unit(50, "km")
  11582. },
  11583. {
  11584. name: "Gigamacro",
  11585. height: math.unit(100, "km")
  11586. },
  11587. {
  11588. name: "Alpha Macro",
  11589. height: math.unit(7.88e7, "yottameters")
  11590. },
  11591. ]
  11592. ))
  11593. characterMakers.push(() => makeCharacter(
  11594. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11595. {
  11596. front: {
  11597. height: math.unit(6, "feet"),
  11598. weight: math.unit(110, "lb"),
  11599. name: "Front",
  11600. image: {
  11601. source: "./media/characters/mel/front.svg",
  11602. extra: 736 / 617,
  11603. bottom: 0.017
  11604. }
  11605. },
  11606. },
  11607. [
  11608. {
  11609. name: "Pico",
  11610. height: math.unit(3, "pm")
  11611. },
  11612. {
  11613. name: "Nano",
  11614. height: math.unit(3, "nm")
  11615. },
  11616. {
  11617. name: "Micro",
  11618. height: math.unit(0.3, "mm"),
  11619. default: true
  11620. },
  11621. {
  11622. name: "Micro+",
  11623. height: math.unit(3, "mm")
  11624. },
  11625. {
  11626. name: "Normal",
  11627. height: math.unit(5 + 10.5 / 12, "feet")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11633. {
  11634. kaiju: {
  11635. height: math.unit(1.75, "meters"),
  11636. weight: math.unit(55, "kg"),
  11637. name: "Kaiju",
  11638. image: {
  11639. source: "./media/characters/lykonous/kaiju.svg",
  11640. extra: 1055 / 946,
  11641. bottom: 0.135
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(2.5, "meters"),
  11649. default: true
  11650. },
  11651. {
  11652. name: "Kaiju Dragon",
  11653. height: math.unit(60, "meters")
  11654. },
  11655. {
  11656. name: "Mega Kaiju",
  11657. height: math.unit(120, "km")
  11658. },
  11659. {
  11660. name: "Giga Kaiju",
  11661. height: math.unit(200, "megameters")
  11662. },
  11663. {
  11664. name: "Terra Kaiju",
  11665. height: math.unit(400, "gigameters")
  11666. },
  11667. {
  11668. name: "Kaiju Dragon God",
  11669. height: math.unit(13000, "exaparsecs")
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11675. {
  11676. front: {
  11677. height: math.unit(6, "feet"),
  11678. weight: math.unit(150, "lb"),
  11679. name: "Front",
  11680. image: {
  11681. source: "./media/characters/blü/front.svg",
  11682. extra: 1883 / 1564,
  11683. bottom: 0.031
  11684. }
  11685. },
  11686. },
  11687. [
  11688. {
  11689. name: "Normal",
  11690. height: math.unit(13, "feet"),
  11691. default: true
  11692. },
  11693. {
  11694. name: "Big Boi",
  11695. height: math.unit(150, "meters")
  11696. },
  11697. {
  11698. name: "Mini Stomper",
  11699. height: math.unit(300, "meters")
  11700. },
  11701. {
  11702. name: "Macro",
  11703. height: math.unit(1000, "meters")
  11704. },
  11705. {
  11706. name: "Megamacro",
  11707. height: math.unit(11000, "meters")
  11708. },
  11709. {
  11710. name: "Gigamacro",
  11711. height: math.unit(11000, "km")
  11712. },
  11713. {
  11714. name: "Teramacro",
  11715. height: math.unit(420000, "km")
  11716. },
  11717. {
  11718. name: "Examacro",
  11719. height: math.unit(120, "parsecs")
  11720. },
  11721. {
  11722. name: "God Tho",
  11723. height: math.unit(98000000000, "parsecs")
  11724. },
  11725. ]
  11726. ))
  11727. characterMakers.push(() => makeCharacter(
  11728. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11729. {
  11730. taurFront: {
  11731. height: math.unit(6, "feet"),
  11732. weight: math.unit(200, "lb"),
  11733. name: "Taur (Front)",
  11734. image: {
  11735. source: "./media/characters/scales/taur-front.svg",
  11736. extra: 1,
  11737. bottom: 0.05
  11738. }
  11739. },
  11740. taurBack: {
  11741. height: math.unit(6, "feet"),
  11742. weight: math.unit(200, "lb"),
  11743. name: "Taur (Back)",
  11744. image: {
  11745. source: "./media/characters/scales/taur-back.svg",
  11746. extra: 1,
  11747. bottom: 0.08
  11748. }
  11749. },
  11750. anthro: {
  11751. height: math.unit(6 * 7 / 12, "feet"),
  11752. weight: math.unit(100, "lb"),
  11753. name: "Anthro",
  11754. image: {
  11755. source: "./media/characters/scales/anthro.svg",
  11756. extra: 1,
  11757. bottom: 0.06
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(12, "feet"),
  11765. default: true
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11771. {
  11772. front: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(150, "lb"),
  11775. name: "Front",
  11776. image: {
  11777. source: "./media/characters/koragos/front.svg",
  11778. extra: 841 / 794,
  11779. bottom: 0.035
  11780. }
  11781. },
  11782. back: {
  11783. height: math.unit(6, "feet"),
  11784. weight: math.unit(150, "lb"),
  11785. name: "Back",
  11786. image: {
  11787. source: "./media/characters/koragos/back.svg",
  11788. extra: 841 / 810,
  11789. bottom: 0.022
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(6 + 11 / 12, "feet"),
  11797. default: true
  11798. },
  11799. {
  11800. name: "Macro",
  11801. height: math.unit(490, "feet")
  11802. },
  11803. {
  11804. name: "Megamacro",
  11805. height: math.unit(10, "miles")
  11806. },
  11807. {
  11808. name: "Gigamacro",
  11809. height: math.unit(50, "miles")
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(6, "feet"),
  11818. weight: math.unit(250, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/xylrem/front.svg",
  11822. extra: 3323 / 3050,
  11823. bottom: 0.065
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Micro",
  11830. height: math.unit(4, "feet")
  11831. },
  11832. {
  11833. name: "Normal",
  11834. height: math.unit(16, "feet"),
  11835. default: true
  11836. },
  11837. {
  11838. name: "Macro",
  11839. height: math.unit(2720, "feet")
  11840. },
  11841. {
  11842. name: "Megamacro",
  11843. height: math.unit(25000, "miles")
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(8, "feet"),
  11852. weight: math.unit(250, "kg"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/ikideru/front.svg",
  11856. extra: 930 / 870,
  11857. bottom: 0.087
  11858. }
  11859. },
  11860. back: {
  11861. height: math.unit(8, "feet"),
  11862. weight: math.unit(250, "kg"),
  11863. name: "Back",
  11864. image: {
  11865. source: "./media/characters/ikideru/back.svg",
  11866. extra: 919 / 852,
  11867. bottom: 0.055
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Rare",
  11874. height: math.unit(8, "feet"),
  11875. default: true
  11876. },
  11877. {
  11878. name: "Playful Loom",
  11879. height: math.unit(80, "feet")
  11880. },
  11881. {
  11882. name: "City Leaner",
  11883. height: math.unit(230, "feet")
  11884. },
  11885. {
  11886. name: "Megamacro",
  11887. height: math.unit(2500, "feet")
  11888. },
  11889. {
  11890. name: "Gigamacro",
  11891. height: math.unit(26400, "feet")
  11892. },
  11893. {
  11894. name: "Tectonic Shifter",
  11895. height: math.unit(1.7, "megameters")
  11896. },
  11897. {
  11898. name: "Planet Carer",
  11899. height: math.unit(21, "megameters")
  11900. },
  11901. {
  11902. name: "God",
  11903. height: math.unit(11157.22, "parsecs")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(120, "lb"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/neo/front.svg"
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Micro",
  11922. height: math.unit(2, "inches"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Human Size",
  11927. height: math.unit(5 + 8 / 12, "feet")
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11933. {
  11934. front: {
  11935. height: math.unit(13 + 10 / 12, "feet"),
  11936. weight: math.unit(5320, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/chauncey-chantz/front.svg",
  11940. extra: 1587 / 1435,
  11941. bottom: 0.02
  11942. }
  11943. },
  11944. },
  11945. [
  11946. {
  11947. name: "Normal",
  11948. height: math.unit(13 + 10 / 12, "feet"),
  11949. default: true
  11950. },
  11951. {
  11952. name: "Macro",
  11953. height: math.unit(45, "feet")
  11954. },
  11955. {
  11956. name: "Megamacro",
  11957. height: math.unit(250, "miles")
  11958. },
  11959. {
  11960. name: "Planetary",
  11961. height: math.unit(10000, "miles")
  11962. },
  11963. {
  11964. name: "Galactic",
  11965. height: math.unit(40000, "parsecs")
  11966. },
  11967. {
  11968. name: "Universal",
  11969. height: math.unit(1, "yottameter")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11975. {
  11976. front: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/epifox/front.svg",
  11982. extra: 1,
  11983. bottom: 0.075
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Micro",
  11990. height: math.unit(6, "inches")
  11991. },
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(12, "feet"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Macro",
  11999. height: math.unit(3810, "feet")
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(500, "miles")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(1.8796, "m"),
  12012. weight: math.unit(230, "lb"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/colin-t/front.svg",
  12016. extra: 1272 / 1193,
  12017. bottom: 0.07
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Micro",
  12024. height: math.unit(0.571, "meters")
  12025. },
  12026. {
  12027. name: "Normal",
  12028. height: math.unit(1.8796, "meters"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Tall",
  12033. height: math.unit(4, "meters")
  12034. },
  12035. {
  12036. name: "Macro",
  12037. height: math.unit(67.241, "meters")
  12038. },
  12039. {
  12040. name: "Megamacro",
  12041. height: math.unit(371.856, "meters")
  12042. },
  12043. {
  12044. name: "Planetary",
  12045. height: math.unit(12631.5689, "km")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(1.85, "meters"),
  12054. weight: math.unit(80, "kg"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/matvei/front.svg",
  12058. extra: 614 / 594,
  12059. bottom: 0.01
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Normal",
  12066. height: math.unit(1.85, "meters"),
  12067. default: true
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(5 + 9 / 12, "feet"),
  12076. weight: math.unit(70, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/quincy/front.svg",
  12080. extra: 3041 / 2751
  12081. }
  12082. },
  12083. back: {
  12084. height: math.unit(5 + 9 / 12, "feet"),
  12085. weight: math.unit(70, "lb"),
  12086. name: "Back",
  12087. image: {
  12088. source: "./media/characters/quincy/back.svg",
  12089. extra: 3041 / 2751
  12090. }
  12091. },
  12092. flying: {
  12093. height: math.unit(5 + 4 / 12, "feet"),
  12094. weight: math.unit(70, "lb"),
  12095. name: "Flying",
  12096. image: {
  12097. source: "./media/characters/quincy/flying.svg",
  12098. extra: 1044 / 930
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Micro",
  12105. height: math.unit(3, "cm")
  12106. },
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(5 + 9 / 12, "feet")
  12110. },
  12111. {
  12112. name: "Macro",
  12113. height: math.unit(200, "meters"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(1000, "meters")
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(3 + 11/12, "feet"),
  12127. weight: math.unit(50, "lb"),
  12128. name: "Front",
  12129. image: {
  12130. source: "./media/characters/vanrel/front.svg",
  12131. extra: 1104/949,
  12132. bottom: 52/1156
  12133. }
  12134. },
  12135. back: {
  12136. height: math.unit(3 + 11/12, "feet"),
  12137. weight: math.unit(50, "lb"),
  12138. name: "Back",
  12139. image: {
  12140. source: "./media/characters/vanrel/back.svg",
  12141. extra: 1119/976,
  12142. bottom: 37/1156
  12143. }
  12144. },
  12145. tome: {
  12146. height: math.unit(1.35, "feet"),
  12147. weight: math.unit(10, "lb"),
  12148. name: "Vanrel's Tome",
  12149. rename: true,
  12150. image: {
  12151. source: "./media/characters/vanrel/tome.svg"
  12152. }
  12153. },
  12154. beans: {
  12155. height: math.unit(0.89, "feet"),
  12156. name: "Beans",
  12157. image: {
  12158. source: "./media/characters/vanrel/beans.svg"
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Normal",
  12165. height: math.unit(3 + 11/12, "feet"),
  12166. default: true
  12167. },
  12168. ]
  12169. ))
  12170. characterMakers.push(() => makeCharacter(
  12171. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12172. {
  12173. front: {
  12174. height: math.unit(7 + 5 / 12, "feet"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/kuiper-vanrel/front.svg",
  12178. extra: 1219/1169,
  12179. bottom: 69/1288
  12180. }
  12181. },
  12182. back: {
  12183. height: math.unit(7 + 5 / 12, "feet"),
  12184. name: "Back",
  12185. image: {
  12186. source: "./media/characters/kuiper-vanrel/back.svg",
  12187. extra: 1236/1193,
  12188. bottom: 27/1263
  12189. }
  12190. },
  12191. foot: {
  12192. height: math.unit(0.55, "meters"),
  12193. name: "Foot",
  12194. image: {
  12195. source: "./media/characters/kuiper-vanrel/foot.svg",
  12196. }
  12197. },
  12198. battle: {
  12199. height: math.unit(6.824, "feet"),
  12200. name: "Battle",
  12201. image: {
  12202. source: "./media/characters/kuiper-vanrel/battle.svg",
  12203. extra: 1466 / 1327,
  12204. bottom: 29 / 1492.5
  12205. }
  12206. },
  12207. meerkui: {
  12208. height: math.unit(18, "inches"),
  12209. name: "Meerkui",
  12210. image: {
  12211. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12212. extra: 1354/1289,
  12213. bottom: 69/1423
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(7 + 5 / 12, "feet"),
  12221. default: true
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(8 + 5 / 12, "feet"),
  12230. name: "Front",
  12231. image: {
  12232. source: "./media/characters/keset-vanrel/front.svg",
  12233. extra: 1231/1148,
  12234. bottom: 82/1313
  12235. }
  12236. },
  12237. back: {
  12238. height: math.unit(8 + 5 / 12, "feet"),
  12239. name: "Back",
  12240. image: {
  12241. source: "./media/characters/keset-vanrel/back.svg",
  12242. extra: 1240/1174,
  12243. bottom: 33/1273
  12244. }
  12245. },
  12246. hand: {
  12247. height: math.unit(0.6, "meters"),
  12248. name: "Hand",
  12249. image: {
  12250. source: "./media/characters/keset-vanrel/hand.svg"
  12251. }
  12252. },
  12253. foot: {
  12254. height: math.unit(0.94978, "meters"),
  12255. name: "Foot",
  12256. image: {
  12257. source: "./media/characters/keset-vanrel/foot.svg"
  12258. }
  12259. },
  12260. battle: {
  12261. height: math.unit(7.408, "feet"),
  12262. name: "Battle",
  12263. image: {
  12264. source: "./media/characters/keset-vanrel/battle.svg",
  12265. extra: 1890 / 1386,
  12266. bottom: 73.28 / 1970
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(8 + 5 / 12, "feet"),
  12274. default: true
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(6, "feet"),
  12283. weight: math.unit(150, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/neos/front.svg",
  12287. extra: 1696 / 992,
  12288. bottom: 0.14
  12289. }
  12290. },
  12291. },
  12292. [
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(54, "cm"),
  12296. default: true
  12297. },
  12298. {
  12299. name: "Macro",
  12300. height: math.unit(100, "m")
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(10, "km")
  12305. },
  12306. {
  12307. name: "Megamacro+",
  12308. height: math.unit(100, "km")
  12309. },
  12310. {
  12311. name: "Gigamacro",
  12312. height: math.unit(100, "Mm")
  12313. },
  12314. {
  12315. name: "Teramacro",
  12316. height: math.unit(100, "Gm")
  12317. },
  12318. {
  12319. name: "Examacro",
  12320. height: math.unit(100, "Em")
  12321. },
  12322. {
  12323. name: "Godly",
  12324. height: math.unit(10000, "Ym")
  12325. },
  12326. {
  12327. name: "Beyond Godly",
  12328. height: math.unit(25, "multiverses")
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12334. {
  12335. feminine: {
  12336. height: math.unit(5, "feet"),
  12337. weight: math.unit(100, "lb"),
  12338. name: "Feminine",
  12339. image: {
  12340. source: "./media/characters/sammy-mouse/feminine.svg",
  12341. extra: 2526 / 2425,
  12342. bottom: 0.123
  12343. }
  12344. },
  12345. masculine: {
  12346. height: math.unit(5, "feet"),
  12347. weight: math.unit(100, "lb"),
  12348. name: "Masculine",
  12349. image: {
  12350. source: "./media/characters/sammy-mouse/masculine.svg",
  12351. extra: 2526 / 2425,
  12352. bottom: 0.123
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Micro",
  12359. height: math.unit(5, "inches")
  12360. },
  12361. {
  12362. name: "Normal",
  12363. height: math.unit(5, "feet"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Macro",
  12368. height: math.unit(60, "feet")
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12374. {
  12375. front: {
  12376. height: math.unit(4, "feet"),
  12377. weight: math.unit(50, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/kole/front.svg",
  12381. extra: 1423 / 1303,
  12382. bottom: 0.025
  12383. }
  12384. },
  12385. back: {
  12386. height: math.unit(4, "feet"),
  12387. weight: math.unit(50, "lb"),
  12388. name: "Back",
  12389. image: {
  12390. source: "./media/characters/kole/back.svg",
  12391. extra: 1426 / 1280,
  12392. bottom: 0.02
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Normal",
  12399. height: math.unit(4, "feet"),
  12400. default: true
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12406. {
  12407. front: {
  12408. height: math.unit(2.5, "feet"),
  12409. weight: math.unit(32, "lb"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/rufran/front.svg",
  12413. extra: 1313/885,
  12414. bottom: 94/1407
  12415. }
  12416. },
  12417. side: {
  12418. height: math.unit(2.5, "feet"),
  12419. weight: math.unit(32, "lb"),
  12420. name: "Side",
  12421. image: {
  12422. source: "./media/characters/rufran/side.svg",
  12423. extra: 1109/852,
  12424. bottom: 118/1227
  12425. }
  12426. },
  12427. back: {
  12428. height: math.unit(2.5, "feet"),
  12429. weight: math.unit(32, "lb"),
  12430. name: "Back",
  12431. image: {
  12432. source: "./media/characters/rufran/back.svg",
  12433. extra: 1280/878,
  12434. bottom: 131/1411
  12435. }
  12436. },
  12437. mouth: {
  12438. height: math.unit(1.13, "feet"),
  12439. name: "Mouth",
  12440. image: {
  12441. source: "./media/characters/rufran/mouth.svg"
  12442. }
  12443. },
  12444. foot: {
  12445. height: math.unit(1.33, "feet"),
  12446. name: "Foot",
  12447. image: {
  12448. source: "./media/characters/rufran/foot.svg"
  12449. }
  12450. },
  12451. koboldFront: {
  12452. height: math.unit(2 + 6 / 12, "feet"),
  12453. weight: math.unit(20, "lb"),
  12454. name: "Front (Kobold)",
  12455. image: {
  12456. source: "./media/characters/rufran/kobold-front.svg",
  12457. extra: 2041 / 1839,
  12458. bottom: 0.055
  12459. }
  12460. },
  12461. koboldBack: {
  12462. height: math.unit(2 + 6 / 12, "feet"),
  12463. weight: math.unit(20, "lb"),
  12464. name: "Back (Kobold)",
  12465. image: {
  12466. source: "./media/characters/rufran/kobold-back.svg",
  12467. extra: 2054 / 1839,
  12468. bottom: 0.01
  12469. }
  12470. },
  12471. koboldHand: {
  12472. height: math.unit(0.2166, "meters"),
  12473. name: "Hand (Kobold)",
  12474. image: {
  12475. source: "./media/characters/rufran/kobold-hand.svg"
  12476. }
  12477. },
  12478. koboldFoot: {
  12479. height: math.unit(0.185, "meters"),
  12480. name: "Foot (Kobold)",
  12481. image: {
  12482. source: "./media/characters/rufran/kobold-foot.svg"
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Micro",
  12489. height: math.unit(1, "inch")
  12490. },
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(2 + 6 / 12, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Big",
  12498. height: math.unit(60, "feet")
  12499. },
  12500. {
  12501. name: "Macro",
  12502. height: math.unit(325, "feet")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(0.3, "meters"),
  12511. weight: math.unit(3.5, "kg"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/chip/front.svg",
  12515. extra: 748 / 674
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Micro",
  12522. height: math.unit(1, "inch"),
  12523. default: true
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12529. {
  12530. side: {
  12531. height: math.unit(2.3, "meters"),
  12532. weight: math.unit(3500, "lb"),
  12533. name: "Side",
  12534. image: {
  12535. source: "./media/characters/torvid/side.svg",
  12536. extra: 1972 / 722,
  12537. bottom: 0.035
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(2.3, "meters"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(2, "meters"),
  12554. weight: math.unit(150.5, "kg"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/susan/front.svg",
  12558. extra: 693 / 635,
  12559. bottom: 0.05
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Megamacro",
  12566. height: math.unit(505, "miles"),
  12567. default: true
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(6, "feet"),
  12576. weight: math.unit(150, "lb"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/raindrops/front.svg",
  12580. extra: 2655 / 2461,
  12581. bottom: 49 / 2705
  12582. }
  12583. },
  12584. back: {
  12585. height: math.unit(6, "feet"),
  12586. weight: math.unit(150, "lb"),
  12587. name: "Back",
  12588. image: {
  12589. source: "./media/characters/raindrops/back.svg",
  12590. extra: 2574 / 2400,
  12591. bottom: 65 / 2634
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Micro",
  12598. height: math.unit(6, "inches")
  12599. },
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(6 + 2 / 12, "feet")
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(131, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(15, "miles")
  12612. },
  12613. {
  12614. name: "Gigamacro",
  12615. height: math.unit(4000, "miles")
  12616. },
  12617. {
  12618. name: "Teramacro",
  12619. height: math.unit(315000, "miles")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(2.794, "meters"),
  12628. weight: math.unit(325, "kg"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/tezwa/front.svg",
  12632. extra: 2083 / 1906,
  12633. bottom: 0.031
  12634. }
  12635. },
  12636. foot: {
  12637. height: math.unit(0.687, "meters"),
  12638. name: "Foot",
  12639. image: {
  12640. source: "./media/characters/tezwa/foot.svg"
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Normal",
  12647. height: math.unit(9 + 2 / 12, "feet"),
  12648. default: true
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(58, "feet"),
  12657. weight: math.unit(89000, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/typhus/front.svg",
  12661. extra: 816 / 800,
  12662. bottom: 0.065
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(58, "feet"),
  12670. default: true
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12676. {
  12677. front: {
  12678. height: math.unit(12, "feet"),
  12679. weight: math.unit(6, "tonnes"),
  12680. name: "Front",
  12681. image: {
  12682. source: "./media/characters/lyra-von-wulf/front.svg",
  12683. extra: 1,
  12684. bottom: 0.10
  12685. }
  12686. },
  12687. frontMecha: {
  12688. height: math.unit(12, "feet"),
  12689. weight: math.unit(12, "tonnes"),
  12690. name: "Front (Mecha)",
  12691. image: {
  12692. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12693. extra: 1,
  12694. bottom: 0.042
  12695. }
  12696. },
  12697. maw: {
  12698. height: math.unit(2.2, "feet"),
  12699. name: "Maw",
  12700. image: {
  12701. source: "./media/characters/lyra-von-wulf/maw.svg"
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Normal",
  12708. height: math.unit(12, "feet"),
  12709. default: true
  12710. },
  12711. {
  12712. name: "Classic",
  12713. height: math.unit(50, "feet")
  12714. },
  12715. {
  12716. name: "Macro",
  12717. height: math.unit(500, "feet")
  12718. },
  12719. {
  12720. name: "Megamacro",
  12721. height: math.unit(1, "mile")
  12722. },
  12723. {
  12724. name: "Gigamacro",
  12725. height: math.unit(400, "miles")
  12726. },
  12727. {
  12728. name: "Teramacro",
  12729. height: math.unit(22000, "miles")
  12730. },
  12731. {
  12732. name: "Solarmacro",
  12733. height: math.unit(8600000, "miles")
  12734. },
  12735. {
  12736. name: "Galactic",
  12737. height: math.unit(1057000, "lightyears")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12743. {
  12744. front: {
  12745. height: math.unit(6 + 10 / 12, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Front",
  12748. image: {
  12749. source: "./media/characters/dixon/front.svg",
  12750. extra: 3361 / 3209,
  12751. bottom: 0.01
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(6 + 10 / 12, "feet"),
  12759. default: true
  12760. },
  12761. {
  12762. name: "Big",
  12763. height: math.unit(12, "meters")
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(500, "meters")
  12768. },
  12769. {
  12770. name: "Megamacro",
  12771. height: math.unit(2, "km")
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12777. {
  12778. front: {
  12779. height: math.unit(185, "cm"),
  12780. weight: math.unit(68, "kg"),
  12781. name: "Front",
  12782. image: {
  12783. source: "./media/characters/kauko/front.svg",
  12784. extra: 1455 / 1421,
  12785. bottom: 0.03
  12786. }
  12787. },
  12788. back: {
  12789. height: math.unit(185, "cm"),
  12790. weight: math.unit(68, "kg"),
  12791. name: "Back",
  12792. image: {
  12793. source: "./media/characters/kauko/back.svg",
  12794. extra: 1455 / 1421,
  12795. bottom: 0.004
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(185, "cm"),
  12803. default: true
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(150, "kg"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/varg/front.svg",
  12816. extra: 1108 / 1018,
  12817. bottom: 0.0375
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Normal",
  12824. height: math.unit(5, "meters")
  12825. },
  12826. {
  12827. name: "Macro",
  12828. height: math.unit(200, "meters")
  12829. },
  12830. {
  12831. name: "Megamacro",
  12832. height: math.unit(20, "kilometers")
  12833. },
  12834. {
  12835. name: "True Size",
  12836. height: math.unit(211, "km"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Gigamacro",
  12841. height: math.unit(1000, "km")
  12842. },
  12843. {
  12844. name: "Gigamacro+",
  12845. height: math.unit(8000, "km")
  12846. },
  12847. {
  12848. name: "Teramacro",
  12849. height: math.unit(1000000, "km")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(7 + 7 / 12, "feet"),
  12858. weight: math.unit(267, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/dayza/front.svg",
  12862. extra: 1262 / 1200,
  12863. bottom: 0.035
  12864. }
  12865. },
  12866. side: {
  12867. height: math.unit(7 + 7 / 12, "feet"),
  12868. weight: math.unit(267, "lb"),
  12869. name: "Side",
  12870. image: {
  12871. source: "./media/characters/dayza/side.svg",
  12872. extra: 1295 / 1245,
  12873. bottom: 0.05
  12874. }
  12875. },
  12876. back: {
  12877. height: math.unit(7 + 7 / 12, "feet"),
  12878. weight: math.unit(267, "lb"),
  12879. name: "Back",
  12880. image: {
  12881. source: "./media/characters/dayza/back.svg",
  12882. extra: 1241 / 1170
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Normal",
  12889. height: math.unit(7 + 7 / 12, "feet"),
  12890. default: true
  12891. },
  12892. {
  12893. name: "Macro",
  12894. height: math.unit(155, "feet")
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6 + 5 / 12, "feet"),
  12903. weight: math.unit(160, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/xanthos/front.svg",
  12907. extra: 1,
  12908. bottom: 0.04
  12909. }
  12910. },
  12911. back: {
  12912. height: math.unit(6 + 5 / 12, "feet"),
  12913. weight: math.unit(160, "lb"),
  12914. name: "Back",
  12915. image: {
  12916. source: "./media/characters/xanthos/back.svg",
  12917. extra: 1,
  12918. bottom: 0.03
  12919. }
  12920. },
  12921. hand: {
  12922. height: math.unit(0.928, "feet"),
  12923. name: "Hand",
  12924. image: {
  12925. source: "./media/characters/xanthos/hand.svg"
  12926. }
  12927. },
  12928. foot: {
  12929. height: math.unit(1.286, "feet"),
  12930. name: "Foot",
  12931. image: {
  12932. source: "./media/characters/xanthos/foot.svg"
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Normal",
  12939. height: math.unit(6 + 5 / 12, "feet"),
  12940. default: true
  12941. },
  12942. {
  12943. name: "Normal+",
  12944. height: math.unit(6, "meters")
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(40, "feet")
  12949. },
  12950. {
  12951. name: "Macro+",
  12952. height: math.unit(200, "meters")
  12953. },
  12954. {
  12955. name: "Megamacro",
  12956. height: math.unit(20, "km")
  12957. },
  12958. {
  12959. name: "Megamacro+",
  12960. height: math.unit(100, "km")
  12961. },
  12962. {
  12963. name: "Gigamacro",
  12964. height: math.unit(200, "megameters")
  12965. },
  12966. {
  12967. name: "Gigamacro+",
  12968. height: math.unit(1.5, "gigameters")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(6 + 3 / 12, "feet"),
  12977. weight: math.unit(215, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/grynn/front.svg",
  12981. extra: 4627 / 4209,
  12982. bottom: 0.047
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Micro",
  12989. height: math.unit(6, "inches")
  12990. },
  12991. {
  12992. name: "Normal",
  12993. height: math.unit(6 + 3 / 12, "feet"),
  12994. default: true
  12995. },
  12996. {
  12997. name: "Big",
  12998. height: math.unit(104, "feet")
  12999. },
  13000. {
  13001. name: "Macro",
  13002. height: math.unit(944, "feet")
  13003. },
  13004. {
  13005. name: "Macro+",
  13006. height: math.unit(9480, "feet")
  13007. },
  13008. {
  13009. name: "Megamacro",
  13010. height: math.unit(78752, "feet")
  13011. },
  13012. {
  13013. name: "Megamacro+",
  13014. height: math.unit(630128, "feet")
  13015. },
  13016. {
  13017. name: "Megamacro++",
  13018. height: math.unit(3150695, "feet")
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13024. {
  13025. front: {
  13026. height: math.unit(7 + 5 / 12, "feet"),
  13027. weight: math.unit(450, "lb"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/mocha-aura/front.svg",
  13031. extra: 1907 / 1817,
  13032. bottom: 0.04
  13033. }
  13034. },
  13035. back: {
  13036. height: math.unit(7 + 5 / 12, "feet"),
  13037. weight: math.unit(450, "lb"),
  13038. name: "Back",
  13039. image: {
  13040. source: "./media/characters/mocha-aura/back.svg",
  13041. extra: 1900 / 1825,
  13042. bottom: 0.045
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Nano",
  13049. height: math.unit(1, "nm")
  13050. },
  13051. {
  13052. name: "Megamicro",
  13053. height: math.unit(1, "mm")
  13054. },
  13055. {
  13056. name: "Micro",
  13057. height: math.unit(3, "inches")
  13058. },
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(7 + 5 / 12, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(30, "feet")
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(3500, "feet")
  13071. },
  13072. {
  13073. name: "Teramacro",
  13074. height: math.unit(500000, "miles")
  13075. },
  13076. {
  13077. name: "Petamacro",
  13078. height: math.unit(50000000000000000, "parsecs")
  13079. },
  13080. ]
  13081. ))
  13082. characterMakers.push(() => makeCharacter(
  13083. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13084. {
  13085. front: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(150, "lb"),
  13088. name: "Front",
  13089. image: {
  13090. source: "./media/characters/ilisha-devya/front.svg",
  13091. extra: 1,
  13092. bottom: 0.175
  13093. }
  13094. },
  13095. back: {
  13096. height: math.unit(6, "feet"),
  13097. weight: math.unit(150, "lb"),
  13098. name: "Back",
  13099. image: {
  13100. source: "./media/characters/ilisha-devya/back.svg",
  13101. extra: 1,
  13102. bottom: 0.015
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(500, "feet"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Megamacro",
  13114. height: math.unit(10, "miles")
  13115. },
  13116. {
  13117. name: "Gigamacro",
  13118. height: math.unit(100000, "miles")
  13119. },
  13120. {
  13121. name: "Examacro",
  13122. height: math.unit(1e9, "lightyears")
  13123. },
  13124. {
  13125. name: "Omniversal",
  13126. height: math.unit(1e33, "lightyears")
  13127. },
  13128. {
  13129. name: "Beyond Infinite",
  13130. height: math.unit(1e100, "lightyears")
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13136. {
  13137. Side: {
  13138. height: math.unit(6, "feet"),
  13139. weight: math.unit(150, "lb"),
  13140. name: "Side",
  13141. image: {
  13142. source: "./media/characters/mira/side.svg",
  13143. extra: 900 / 799,
  13144. bottom: 0.02
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Human Size",
  13151. height: math.unit(6, "feet")
  13152. },
  13153. {
  13154. name: "Macro",
  13155. height: math.unit(100, "feet"),
  13156. default: true
  13157. },
  13158. {
  13159. name: "Megamacro",
  13160. height: math.unit(10, "miles")
  13161. },
  13162. {
  13163. name: "Gigamacro",
  13164. height: math.unit(25000, "miles")
  13165. },
  13166. {
  13167. name: "Teramacro",
  13168. height: math.unit(300, "AU")
  13169. },
  13170. {
  13171. name: "Full Size",
  13172. height: math.unit(4.5e10, "lightyears")
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(150, "lb"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/holly/front.svg",
  13185. extra: 639 / 606
  13186. }
  13187. },
  13188. back: {
  13189. height: math.unit(6, "feet"),
  13190. weight: math.unit(150, "lb"),
  13191. name: "Back",
  13192. image: {
  13193. source: "./media/characters/holly/back.svg",
  13194. extra: 623 / 598
  13195. }
  13196. },
  13197. frontWorking: {
  13198. height: math.unit(6, "feet"),
  13199. weight: math.unit(150, "lb"),
  13200. name: "Front (Working)",
  13201. image: {
  13202. source: "./media/characters/holly/front-working.svg",
  13203. extra: 607 / 577,
  13204. bottom: 0.048
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Normal",
  13211. height: math.unit(12 + 3 / 12, "feet"),
  13212. default: true
  13213. },
  13214. ]
  13215. ))
  13216. characterMakers.push(() => makeCharacter(
  13217. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13218. {
  13219. front: {
  13220. height: math.unit(6, "feet"),
  13221. weight: math.unit(150, "lb"),
  13222. name: "Front",
  13223. image: {
  13224. source: "./media/characters/porter/front.svg",
  13225. extra: 1,
  13226. bottom: 0.01
  13227. }
  13228. },
  13229. frontRobes: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Front (Robes)",
  13233. image: {
  13234. source: "./media/characters/porter/front-robes.svg",
  13235. extra: 1.01,
  13236. bottom: 0.01
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Normal",
  13243. height: math.unit(11 + 9 / 12, "feet"),
  13244. default: true
  13245. },
  13246. ]
  13247. ))
  13248. characterMakers.push(() => makeCharacter(
  13249. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13250. {
  13251. legendary: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(150, "lb"),
  13254. name: "Legendary",
  13255. image: {
  13256. source: "./media/characters/lucy/legendary.svg",
  13257. extra: 1355 / 1100,
  13258. bottom: 0.045
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "Legendary",
  13265. height: math.unit(86882 * 2, "miles"),
  13266. default: true
  13267. },
  13268. ]
  13269. ))
  13270. characterMakers.push(() => makeCharacter(
  13271. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13272. {
  13273. front: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(150, "lb"),
  13276. name: "Front",
  13277. image: {
  13278. source: "./media/characters/drusilla/front.svg",
  13279. extra: 678 / 635,
  13280. bottom: 0.03
  13281. }
  13282. },
  13283. back: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(150, "lb"),
  13286. name: "Back",
  13287. image: {
  13288. source: "./media/characters/drusilla/back.svg",
  13289. extra: 678 / 635,
  13290. bottom: 0.005
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(100, "feet")
  13298. },
  13299. {
  13300. name: "Canon Height",
  13301. height: math.unit(2000, "feet"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(6, "feet"),
  13311. weight: math.unit(180, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/renard-thatch/front.svg",
  13315. extra: 2411 / 2275,
  13316. bottom: 0.01
  13317. }
  13318. },
  13319. frontPosing: {
  13320. height: math.unit(6, "feet"),
  13321. weight: math.unit(180, "lb"),
  13322. name: "Front (Posing)",
  13323. image: {
  13324. source: "./media/characters/renard-thatch/front-posing.svg",
  13325. extra: 2381 / 2261,
  13326. bottom: 0.01
  13327. }
  13328. },
  13329. back: {
  13330. height: math.unit(6, "feet"),
  13331. weight: math.unit(180, "lb"),
  13332. name: "Back",
  13333. image: {
  13334. source: "./media/characters/renard-thatch/back.svg",
  13335. extra: 2428 / 2288
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Micro",
  13342. height: math.unit(3, "inches")
  13343. },
  13344. {
  13345. name: "Default",
  13346. height: math.unit(6, "feet"),
  13347. default: true
  13348. },
  13349. {
  13350. name: "Macro",
  13351. height: math.unit(75, "feet")
  13352. },
  13353. ]
  13354. ))
  13355. characterMakers.push(() => makeCharacter(
  13356. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13357. {
  13358. front: {
  13359. height: math.unit(1450, "feet"),
  13360. weight: math.unit(1.21e6, "tons"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/sekvra/front.svg",
  13364. extra: 1,
  13365. bottom: 0.03
  13366. }
  13367. },
  13368. frontClothed: {
  13369. height: math.unit(1450, "feet"),
  13370. weight: math.unit(1.21e6, "tons"),
  13371. name: "Front (Clothed)",
  13372. image: {
  13373. source: "./media/characters/sekvra/front-clothed.svg",
  13374. extra: 1,
  13375. bottom: 0.03
  13376. }
  13377. },
  13378. side: {
  13379. height: math.unit(1450, "feet"),
  13380. weight: math.unit(1.21e6, "tons"),
  13381. name: "Side",
  13382. image: {
  13383. source: "./media/characters/sekvra/side.svg",
  13384. extra: 1,
  13385. bottom: 0.025
  13386. }
  13387. },
  13388. back: {
  13389. height: math.unit(1450, "feet"),
  13390. weight: math.unit(1.21e6, "tons"),
  13391. name: "Back",
  13392. image: {
  13393. source: "./media/characters/sekvra/back.svg",
  13394. extra: 1,
  13395. bottom: 0.005
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Macro",
  13402. height: math.unit(1450, "feet"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Megamacro",
  13407. height: math.unit(15000, "feet")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(6, "feet"),
  13416. weight: math.unit(150, "lb"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/carmine/front.svg",
  13420. extra: 1,
  13421. bottom: 0.035
  13422. }
  13423. },
  13424. frontArmor: {
  13425. height: math.unit(6, "feet"),
  13426. weight: math.unit(150, "lb"),
  13427. name: "Front (Armor)",
  13428. image: {
  13429. source: "./media/characters/carmine/front-armor.svg",
  13430. extra: 1,
  13431. bottom: 0.035
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Large",
  13438. height: math.unit(1, "mile")
  13439. },
  13440. {
  13441. name: "Huge",
  13442. height: math.unit(40, "miles"),
  13443. default: true
  13444. },
  13445. {
  13446. name: "Colossal",
  13447. height: math.unit(2500, "miles")
  13448. },
  13449. ]
  13450. ))
  13451. characterMakers.push(() => makeCharacter(
  13452. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13453. {
  13454. front: {
  13455. height: math.unit(6, "feet"),
  13456. weight: math.unit(150, "lb"),
  13457. name: "Front",
  13458. image: {
  13459. source: "./media/characters/elyssia/front.svg",
  13460. extra: 2201 / 2035,
  13461. bottom: 0.05
  13462. }
  13463. },
  13464. frontClothed: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(150, "lb"),
  13467. name: "Front (Clothed)",
  13468. image: {
  13469. source: "./media/characters/elyssia/front-clothed.svg",
  13470. extra: 2201 / 2035,
  13471. bottom: 0.05
  13472. }
  13473. },
  13474. back: {
  13475. height: math.unit(6, "feet"),
  13476. weight: math.unit(150, "lb"),
  13477. name: "Back",
  13478. image: {
  13479. source: "./media/characters/elyssia/back.svg",
  13480. extra: 2201 / 2035,
  13481. bottom: 0.013
  13482. }
  13483. },
  13484. },
  13485. [
  13486. {
  13487. name: "Smaller",
  13488. height: math.unit(150, "feet")
  13489. },
  13490. {
  13491. name: "Standard",
  13492. height: math.unit(1400, "feet"),
  13493. default: true
  13494. },
  13495. {
  13496. name: "Distracted",
  13497. height: math.unit(15000, "feet")
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(7 + 4/12, "feet"),
  13506. weight: math.unit(690, "lb"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/geno-maxwell/front.svg",
  13510. extra: 984/856,
  13511. bottom: 87/1071
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(7 + 4/12, "feet"),
  13516. weight: math.unit(690, "lb"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/geno-maxwell/back.svg",
  13520. extra: 981/854,
  13521. bottom: 57/1038
  13522. }
  13523. },
  13524. frontCostume: {
  13525. height: math.unit(7 + 4/12, "feet"),
  13526. weight: math.unit(690, "lb"),
  13527. name: "Front (Costume)",
  13528. image: {
  13529. source: "./media/characters/geno-maxwell/front-costume.svg",
  13530. extra: 984/856,
  13531. bottom: 87/1071
  13532. }
  13533. },
  13534. backcostume: {
  13535. height: math.unit(7 + 4/12, "feet"),
  13536. weight: math.unit(690, "lb"),
  13537. name: "Back (Costume)",
  13538. image: {
  13539. source: "./media/characters/geno-maxwell/back-costume.svg",
  13540. extra: 981/854,
  13541. bottom: 57/1038
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Micro",
  13548. height: math.unit(3, "inches")
  13549. },
  13550. {
  13551. name: "Normal",
  13552. height: math.unit(7 + 4 / 12, "feet"),
  13553. default: true
  13554. },
  13555. {
  13556. name: "Macro",
  13557. height: math.unit(220, "feet")
  13558. },
  13559. {
  13560. name: "Megamacro",
  13561. height: math.unit(11, "miles")
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(7 + 4/12, "feet"),
  13570. weight: math.unit(750, "lb"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/regena-maxwell/front.svg",
  13574. extra: 984/856,
  13575. bottom: 87/1071
  13576. }
  13577. },
  13578. back: {
  13579. height: math.unit(7 + 4/12, "feet"),
  13580. weight: math.unit(750, "lb"),
  13581. name: "Back",
  13582. image: {
  13583. source: "./media/characters/regena-maxwell/back.svg",
  13584. extra: 981/854,
  13585. bottom: 57/1038
  13586. }
  13587. },
  13588. frontCostume: {
  13589. height: math.unit(7 + 4/12, "feet"),
  13590. weight: math.unit(750, "lb"),
  13591. name: "Front (Costume)",
  13592. image: {
  13593. source: "./media/characters/regena-maxwell/front-costume.svg",
  13594. extra: 984/856,
  13595. bottom: 87/1071
  13596. }
  13597. },
  13598. backcostume: {
  13599. height: math.unit(7 + 4/12, "feet"),
  13600. weight: math.unit(750, "lb"),
  13601. name: "Back (Costume)",
  13602. image: {
  13603. source: "./media/characters/regena-maxwell/back-costume.svg",
  13604. extra: 981/854,
  13605. bottom: 57/1038
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(7 + 4 / 12, "feet"),
  13613. default: true
  13614. },
  13615. {
  13616. name: "Macro",
  13617. height: math.unit(220, "feet")
  13618. },
  13619. {
  13620. name: "Megamacro",
  13621. height: math.unit(11, "miles")
  13622. },
  13623. ]
  13624. ))
  13625. characterMakers.push(() => makeCharacter(
  13626. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13627. {
  13628. front: {
  13629. height: math.unit(6, "feet"),
  13630. weight: math.unit(150, "lb"),
  13631. name: "Front",
  13632. image: {
  13633. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13634. extra: 860 / 690,
  13635. bottom: 0.03
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Normal",
  13642. height: math.unit(1.7, "meters"),
  13643. default: true
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(6, "feet"),
  13652. weight: math.unit(150, "lb"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/quilly/front.svg",
  13656. extra: 890 / 776
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Gigamacro",
  13663. height: math.unit(404090, "miles"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(7 + 8 / 12, "feet"),
  13673. weight: math.unit(350, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/tempest/front.svg",
  13677. extra: 1175 / 1086,
  13678. bottom: 0.02
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(7 + 8 / 12, "feet"),
  13686. default: true
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13692. {
  13693. side: {
  13694. height: math.unit(4 + 5 / 12, "feet"),
  13695. weight: math.unit(80, "lb"),
  13696. name: "Side",
  13697. image: {
  13698. source: "./media/characters/rodger/side.svg",
  13699. extra: 1235 / 1118
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Micro",
  13706. height: math.unit(1, "inch")
  13707. },
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(4 + 5 / 12, "feet"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Macro",
  13715. height: math.unit(120, "feet")
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(6, "feet"),
  13724. weight: math.unit(150, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/danyel/front.svg",
  13728. extra: 1185 / 1123,
  13729. bottom: 0.05
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Shrunken",
  13736. height: math.unit(0.5, "mm")
  13737. },
  13738. {
  13739. name: "Micro",
  13740. height: math.unit(1, "mm"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Upsized",
  13745. height: math.unit(5 + 5 / 12, "feet")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(5 + 6 / 12, "feet"),
  13754. weight: math.unit(200, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/vivian-bijoux/front.svg",
  13758. extra: 1217/1209,
  13759. bottom: 76/1293
  13760. }
  13761. },
  13762. back: {
  13763. height: math.unit(5 + 6 / 12, "feet"),
  13764. weight: math.unit(200, "lb"),
  13765. name: "Back",
  13766. image: {
  13767. source: "./media/characters/vivian-bijoux/back.svg",
  13768. extra: 1214/1208,
  13769. bottom: 51/1265
  13770. }
  13771. },
  13772. dressed: {
  13773. height: math.unit(5 + 6 / 12, "feet"),
  13774. weight: math.unit(200, "lb"),
  13775. name: "Dressed",
  13776. image: {
  13777. source: "./media/characters/vivian-bijoux/dressed.svg",
  13778. extra: 1217/1209,
  13779. bottom: 76/1293
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Normal",
  13786. height: math.unit(5 + 6 / 12, "feet"),
  13787. default: true
  13788. },
  13789. {
  13790. name: "Bad Dream",
  13791. height: math.unit(500, "feet")
  13792. },
  13793. {
  13794. name: "Nightmare",
  13795. height: math.unit(500, "miles")
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(6 + 1 / 12, "feet"),
  13804. weight: math.unit(260, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/zeta/front.svg",
  13808. extra: 1968 / 1889,
  13809. bottom: 0.06
  13810. }
  13811. },
  13812. back: {
  13813. height: math.unit(6 + 1 / 12, "feet"),
  13814. weight: math.unit(260, "lb"),
  13815. name: "Back",
  13816. image: {
  13817. source: "./media/characters/zeta/back.svg",
  13818. extra: 1944 / 1858,
  13819. bottom: 0.03
  13820. }
  13821. },
  13822. hand: {
  13823. height: math.unit(1.112, "feet"),
  13824. name: "Hand",
  13825. image: {
  13826. source: "./media/characters/zeta/hand.svg"
  13827. }
  13828. },
  13829. foot: {
  13830. height: math.unit(1.48, "feet"),
  13831. name: "Foot",
  13832. image: {
  13833. source: "./media/characters/zeta/foot.svg"
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Micro",
  13840. height: math.unit(6, "inches")
  13841. },
  13842. {
  13843. name: "Normal",
  13844. height: math.unit(6 + 1 / 12, "feet"),
  13845. default: true
  13846. },
  13847. {
  13848. name: "Macro",
  13849. height: math.unit(20, "feet")
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13855. {
  13856. front: {
  13857. height: math.unit(6, "feet"),
  13858. weight: math.unit(150, "lb"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/jamie-larsen/front.svg",
  13862. extra: 962 / 933,
  13863. bottom: 0.02
  13864. }
  13865. },
  13866. back: {
  13867. height: math.unit(6, "feet"),
  13868. weight: math.unit(150, "lb"),
  13869. name: "Back",
  13870. image: {
  13871. source: "./media/characters/jamie-larsen/back.svg",
  13872. extra: 997 / 946
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "Macro",
  13879. height: math.unit(28 + 7 / 12, "feet"),
  13880. default: true
  13881. },
  13882. {
  13883. name: "Macro+",
  13884. height: math.unit(180, "feet")
  13885. },
  13886. {
  13887. name: "Megamacro",
  13888. height: math.unit(10, "miles")
  13889. },
  13890. {
  13891. name: "Gigamacro",
  13892. height: math.unit(200000, "miles")
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13898. {
  13899. front: {
  13900. height: math.unit(6, "feet"),
  13901. weight: math.unit(120, "lb"),
  13902. name: "Front",
  13903. image: {
  13904. source: "./media/characters/vance/front.svg",
  13905. extra: 1980 / 1890,
  13906. bottom: 0.09
  13907. }
  13908. },
  13909. back: {
  13910. height: math.unit(6, "feet"),
  13911. weight: math.unit(120, "lb"),
  13912. name: "Back",
  13913. image: {
  13914. source: "./media/characters/vance/back.svg",
  13915. extra: 2081 / 1994,
  13916. bottom: 0.014
  13917. }
  13918. },
  13919. hand: {
  13920. height: math.unit(0.88, "feet"),
  13921. name: "Hand",
  13922. image: {
  13923. source: "./media/characters/vance/hand.svg"
  13924. }
  13925. },
  13926. foot: {
  13927. height: math.unit(0.64, "feet"),
  13928. name: "Foot",
  13929. image: {
  13930. source: "./media/characters/vance/foot.svg"
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Small",
  13937. height: math.unit(90, "feet"),
  13938. default: true
  13939. },
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(100, "meters")
  13943. },
  13944. {
  13945. name: "Megamacro",
  13946. height: math.unit(15, "miles")
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(180, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/xochitl/front.svg",
  13959. extra: 2297 / 2261,
  13960. bottom: 0.065
  13961. }
  13962. },
  13963. back: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(180, "lb"),
  13966. name: "Back",
  13967. image: {
  13968. source: "./media/characters/xochitl/back.svg",
  13969. extra: 2386 / 2354,
  13970. bottom: 0.01
  13971. }
  13972. },
  13973. foot: {
  13974. height: math.unit(6 / 5 * 1.15, "feet"),
  13975. weight: math.unit(150, "lb"),
  13976. name: "Foot",
  13977. image: {
  13978. source: "./media/characters/xochitl/foot.svg"
  13979. }
  13980. },
  13981. },
  13982. [
  13983. {
  13984. name: "Macro",
  13985. height: math.unit(80, "feet")
  13986. },
  13987. {
  13988. name: "Macro+",
  13989. height: math.unit(400, "feet"),
  13990. default: true
  13991. },
  13992. {
  13993. name: "Gigamacro",
  13994. height: math.unit(80000, "miles")
  13995. },
  13996. {
  13997. name: "Gigamacro+",
  13998. height: math.unit(400000, "miles")
  13999. },
  14000. {
  14001. name: "Teramacro",
  14002. height: math.unit(300, "AU")
  14003. },
  14004. ]
  14005. ))
  14006. characterMakers.push(() => makeCharacter(
  14007. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14008. {
  14009. front: {
  14010. height: math.unit(6, "feet"),
  14011. weight: math.unit(150, "lb"),
  14012. name: "Front",
  14013. image: {
  14014. source: "./media/characters/vincent/front.svg",
  14015. extra: 1130 / 1080,
  14016. bottom: 0.055
  14017. }
  14018. },
  14019. beak: {
  14020. height: math.unit(6 * 0.1, "feet"),
  14021. name: "Beak",
  14022. image: {
  14023. source: "./media/characters/vincent/beak.svg"
  14024. }
  14025. },
  14026. hand: {
  14027. height: math.unit(6 * 0.85, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Hand",
  14030. image: {
  14031. source: "./media/characters/vincent/hand.svg"
  14032. }
  14033. },
  14034. foot: {
  14035. height: math.unit(6 * 0.19, "feet"),
  14036. weight: math.unit(150, "lb"),
  14037. name: "Foot",
  14038. image: {
  14039. source: "./media/characters/vincent/foot.svg"
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Base",
  14046. height: math.unit(6 + 5 / 12, "feet"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Macro",
  14051. height: math.unit(300, "feet")
  14052. },
  14053. {
  14054. name: "Megamacro",
  14055. height: math.unit(2, "miles")
  14056. },
  14057. {
  14058. name: "Gigamacro",
  14059. height: math.unit(1000, "miles")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(2, "meters"),
  14068. weight: math.unit(500, "kg"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/coatl/front.svg",
  14072. extra: 3948 / 3500,
  14073. bottom: 0.082
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Normal",
  14080. height: math.unit(4, "meters")
  14081. },
  14082. {
  14083. name: "Macro",
  14084. height: math.unit(100, "meters"),
  14085. default: true
  14086. },
  14087. {
  14088. name: "Macro+",
  14089. height: math.unit(300, "meters")
  14090. },
  14091. {
  14092. name: "Megamacro",
  14093. height: math.unit(3, "gigameters")
  14094. },
  14095. {
  14096. name: "Megamacro+",
  14097. height: math.unit(300, "terameters")
  14098. },
  14099. {
  14100. name: "Megamacro++",
  14101. height: math.unit(3, "lightyears")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14107. {
  14108. front: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(50, "kg"),
  14111. name: "front",
  14112. image: {
  14113. source: "./media/characters/shiroryu/front.svg",
  14114. extra: 1990 / 1935
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Mortal Mingling",
  14121. height: math.unit(3, "meters")
  14122. },
  14123. {
  14124. name: "Kaiju-ish",
  14125. height: math.unit(250, "meters")
  14126. },
  14127. {
  14128. name: "Somewhat Godly",
  14129. height: math.unit(400, "km"),
  14130. default: true
  14131. },
  14132. {
  14133. name: "Planetary",
  14134. height: math.unit(300, "megameters")
  14135. },
  14136. {
  14137. name: "Galaxy-dwarfing",
  14138. height: math.unit(450, "kiloparsecs")
  14139. },
  14140. {
  14141. name: "Universe Eater",
  14142. height: math.unit(150, "gigaparsecs")
  14143. },
  14144. {
  14145. name: "Almost Immeasurable",
  14146. height: math.unit(1.3e266, "yottaparsecs")
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(6, "feet"),
  14155. weight: math.unit(150, "lb"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/umeko/front.svg",
  14159. extra: 1,
  14160. bottom: 0.019
  14161. }
  14162. },
  14163. frontArmored: {
  14164. height: math.unit(6, "feet"),
  14165. weight: math.unit(150, "lb"),
  14166. name: "Front (Armored)",
  14167. image: {
  14168. source: "./media/characters/umeko/front-armored.svg",
  14169. extra: 1,
  14170. bottom: 0.021
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "Macro",
  14177. height: math.unit(220, "feet"),
  14178. default: true
  14179. },
  14180. {
  14181. name: "Guardian Dragon",
  14182. height: math.unit(50, "miles")
  14183. },
  14184. {
  14185. name: "Cosmic",
  14186. height: math.unit(800000, "miles")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(6, "feet"),
  14195. weight: math.unit(150, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/cassidy/front.svg",
  14199. extra: 1,
  14200. bottom: 0.043
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Canon Height",
  14207. height: math.unit(120, "feet"),
  14208. default: true
  14209. },
  14210. {
  14211. name: "Macro+",
  14212. height: math.unit(400, "feet")
  14213. },
  14214. {
  14215. name: "Macro++",
  14216. height: math.unit(4000, "feet")
  14217. },
  14218. {
  14219. name: "Megamacro",
  14220. height: math.unit(3, "miles")
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(6, "feet"),
  14229. weight: math.unit(150, "lb"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/isaac/front.svg",
  14233. extra: 896 / 815,
  14234. bottom: 0.11
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Human Size",
  14241. height: math.unit(8, "feet"),
  14242. default: true
  14243. },
  14244. {
  14245. name: "Macro",
  14246. height: math.unit(400, "feet")
  14247. },
  14248. {
  14249. name: "Megamacro",
  14250. height: math.unit(50, "miles")
  14251. },
  14252. {
  14253. name: "Canon Height",
  14254. height: math.unit(200, "AU")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(72, "kg"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/sleekit/front.svg",
  14267. extra: 4693 / 4487,
  14268. bottom: 0.012
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Minimum Height",
  14275. height: math.unit(10, "meters")
  14276. },
  14277. {
  14278. name: "Smaller",
  14279. height: math.unit(25, "meters")
  14280. },
  14281. {
  14282. name: "Larger",
  14283. height: math.unit(38, "meters"),
  14284. default: true
  14285. },
  14286. {
  14287. name: "Maximum height",
  14288. height: math.unit(100, "meters")
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(6, "feet"),
  14297. weight: math.unit(150, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/nillia/front.svg",
  14301. extra: 2195 / 2037,
  14302. bottom: 0.005
  14303. }
  14304. },
  14305. back: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Back",
  14309. image: {
  14310. source: "./media/characters/nillia/back.svg",
  14311. extra: 2195 / 2037,
  14312. bottom: 0.005
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Canon Height",
  14319. height: math.unit(489, "feet"),
  14320. default: true
  14321. }
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14326. {
  14327. front: {
  14328. height: math.unit(6, "feet"),
  14329. weight: math.unit(150, "lb"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/mesmyriza/front.svg",
  14333. extra: 2067 / 1784,
  14334. bottom: 0.035
  14335. }
  14336. },
  14337. foot: {
  14338. height: math.unit(6 / (250 / 35), "feet"),
  14339. name: "Foot",
  14340. image: {
  14341. source: "./media/characters/mesmyriza/foot.svg"
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Macro",
  14348. height: math.unit(457, "meters"),
  14349. default: true
  14350. },
  14351. {
  14352. name: "Megamacro",
  14353. height: math.unit(8, "megameters")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(250, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/saudade/front.svg",
  14366. extra: 1172 / 1139,
  14367. bottom: 0.035
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Micro",
  14374. height: math.unit(3, "inches")
  14375. },
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(6, "feet"),
  14379. default: true
  14380. },
  14381. {
  14382. name: "Macro",
  14383. height: math.unit(50, "feet")
  14384. },
  14385. {
  14386. name: "Megamacro",
  14387. height: math.unit(2800, "feet")
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14393. {
  14394. front: {
  14395. height: math.unit(5 + 4 / 12, "feet"),
  14396. weight: math.unit(100, "lb"),
  14397. name: "Front",
  14398. image: {
  14399. source: "./media/characters/keireer/front.svg",
  14400. extra: 716 / 666,
  14401. bottom: 0.05
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(5 + 4 / 12, "feet"),
  14409. default: true
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14415. {
  14416. front: {
  14417. height: math.unit(6, "feet"),
  14418. weight: math.unit(90, "kg"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/mirja/front.svg",
  14422. extra: 1789 / 1683,
  14423. bottom: 0.05
  14424. }
  14425. },
  14426. frontDressed: {
  14427. height: math.unit(6, "feet"),
  14428. weight: math.unit(90, "lb"),
  14429. name: "Front (Dressed)",
  14430. image: {
  14431. source: "./media/characters/mirja/front-dressed.svg",
  14432. extra: 1789 / 1683,
  14433. bottom: 0.05
  14434. }
  14435. },
  14436. back: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(90, "lb"),
  14439. name: "Back",
  14440. image: {
  14441. source: "./media/characters/mirja/back.svg",
  14442. extra: 953 / 917,
  14443. bottom: 0.017
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "\"Incognito\"",
  14450. height: math.unit(3, "meters")
  14451. },
  14452. {
  14453. name: "Strolling Size",
  14454. height: math.unit(15, "km")
  14455. },
  14456. {
  14457. name: "Larger Strolling Size",
  14458. height: math.unit(400, "km")
  14459. },
  14460. {
  14461. name: "Preferred Size",
  14462. height: math.unit(5000, "km")
  14463. },
  14464. {
  14465. name: "True Size",
  14466. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14473. {
  14474. front: {
  14475. height: math.unit(15, "feet"),
  14476. weight: math.unit(880, "kg"),
  14477. name: "Front",
  14478. image: {
  14479. source: "./media/characters/nightraver/front.svg",
  14480. extra: 2444 / 2160,
  14481. bottom: 0.027
  14482. }
  14483. },
  14484. back: {
  14485. height: math.unit(15, "feet"),
  14486. weight: math.unit(880, "kg"),
  14487. name: "Back",
  14488. image: {
  14489. source: "./media/characters/nightraver/back.svg",
  14490. extra: 2309 / 2180,
  14491. bottom: 0.005
  14492. }
  14493. },
  14494. sole: {
  14495. height: math.unit(2.878, "feet"),
  14496. name: "Sole",
  14497. image: {
  14498. source: "./media/characters/nightraver/sole.svg"
  14499. }
  14500. },
  14501. foot: {
  14502. height: math.unit(2.285, "feet"),
  14503. name: "Foot",
  14504. image: {
  14505. source: "./media/characters/nightraver/foot.svg"
  14506. }
  14507. },
  14508. maw: {
  14509. height: math.unit(2.67, "feet"),
  14510. name: "Maw",
  14511. image: {
  14512. source: "./media/characters/nightraver/maw.svg"
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Micro",
  14519. height: math.unit(1, "cm")
  14520. },
  14521. {
  14522. name: "Normal",
  14523. height: math.unit(15, "feet"),
  14524. default: true
  14525. },
  14526. {
  14527. name: "Macro",
  14528. height: math.unit(300, "feet")
  14529. },
  14530. {
  14531. name: "Megamacro",
  14532. height: math.unit(300, "miles")
  14533. },
  14534. {
  14535. name: "Gigamacro",
  14536. height: math.unit(10000, "miles")
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14542. {
  14543. side: {
  14544. height: math.unit(2, "inches"),
  14545. weight: math.unit(5, "grams"),
  14546. name: "Side",
  14547. image: {
  14548. source: "./media/characters/arc/side.svg"
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Micro",
  14555. height: math.unit(2, "inches"),
  14556. default: true
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(1.1938, "meters"),
  14565. weight: math.unit(54, "kg"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/nebula-shahar/front.svg",
  14569. extra: 1642 / 1436,
  14570. bottom: 0.06
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Megamicro",
  14577. height: math.unit(0.3, "mm")
  14578. },
  14579. {
  14580. name: "Micro",
  14581. height: math.unit(3, "cm")
  14582. },
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(138, "cm"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(30, "m")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14596. {
  14597. front: {
  14598. height: math.unit(5.24, "feet"),
  14599. weight: math.unit(150, "lb"),
  14600. name: "Front",
  14601. image: {
  14602. source: "./media/characters/shayla/front.svg",
  14603. extra: 1512 / 1414,
  14604. bottom: 0.01
  14605. }
  14606. },
  14607. back: {
  14608. height: math.unit(5.24, "feet"),
  14609. weight: math.unit(150, "lb"),
  14610. name: "Back",
  14611. image: {
  14612. source: "./media/characters/shayla/back.svg",
  14613. extra: 1512 / 1414
  14614. }
  14615. },
  14616. hand: {
  14617. height: math.unit(0.7781496062992126, "feet"),
  14618. name: "Hand",
  14619. image: {
  14620. source: "./media/characters/shayla/hand.svg"
  14621. }
  14622. },
  14623. foot: {
  14624. height: math.unit(1.4206036745406823, "feet"),
  14625. name: "Foot",
  14626. image: {
  14627. source: "./media/characters/shayla/foot.svg"
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Micro",
  14634. height: math.unit(0.32, "feet")
  14635. },
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(5.24, "feet"),
  14639. default: true
  14640. },
  14641. {
  14642. name: "Macro",
  14643. height: math.unit(492.12, "feet")
  14644. },
  14645. {
  14646. name: "Megamacro",
  14647. height: math.unit(186.41, "miles")
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(2.2, "m"),
  14656. weight: math.unit(120, "kg"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/pia-jr/front.svg",
  14660. extra: 1000 / 970,
  14661. bottom: 0.035
  14662. }
  14663. },
  14664. hand: {
  14665. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14666. name: "Hand",
  14667. image: {
  14668. source: "./media/characters/pia-jr/hand.svg"
  14669. }
  14670. },
  14671. paw: {
  14672. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14673. name: "Paw",
  14674. image: {
  14675. source: "./media/characters/pia-jr/paw.svg"
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Micro",
  14682. height: math.unit(1.2, "cm")
  14683. },
  14684. {
  14685. name: "Normal",
  14686. height: math.unit(2.2, "m"),
  14687. default: true
  14688. },
  14689. {
  14690. name: "Macro",
  14691. height: math.unit(180, "m")
  14692. },
  14693. {
  14694. name: "Megamacro",
  14695. height: math.unit(420, "km")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(2, "m"),
  14704. weight: math.unit(115, "kg"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/pia-sr/front.svg",
  14708. extra: 760 / 730,
  14709. bottom: 0.015
  14710. }
  14711. },
  14712. back: {
  14713. height: math.unit(2, "m"),
  14714. weight: math.unit(115, "kg"),
  14715. name: "Back",
  14716. image: {
  14717. source: "./media/characters/pia-sr/back.svg",
  14718. extra: 760 / 730,
  14719. bottom: 0.01
  14720. }
  14721. },
  14722. hand: {
  14723. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14724. name: "Hand",
  14725. image: {
  14726. source: "./media/characters/pia-sr/hand.svg"
  14727. }
  14728. },
  14729. foot: {
  14730. height: math.unit(1.83, "feet"),
  14731. name: "Foot",
  14732. image: {
  14733. source: "./media/characters/pia-sr/foot.svg"
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Micro",
  14740. height: math.unit(88, "mm")
  14741. },
  14742. {
  14743. name: "Normal",
  14744. height: math.unit(2, "m"),
  14745. default: true
  14746. },
  14747. {
  14748. name: "Macro",
  14749. height: math.unit(200, "m")
  14750. },
  14751. {
  14752. name: "Megamacro",
  14753. height: math.unit(420, "km")
  14754. },
  14755. ]
  14756. ))
  14757. characterMakers.push(() => makeCharacter(
  14758. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14759. {
  14760. front: {
  14761. height: math.unit(8 + 2 / 12, "feet"),
  14762. weight: math.unit(300, "lb"),
  14763. name: "Front",
  14764. image: {
  14765. source: "./media/characters/kibibyte/front.svg",
  14766. extra: 2221 / 2098,
  14767. bottom: 0.04
  14768. }
  14769. },
  14770. },
  14771. [
  14772. {
  14773. name: "Normal",
  14774. height: math.unit(8 + 2 / 12, "feet"),
  14775. default: true
  14776. },
  14777. {
  14778. name: "Socialable Macro",
  14779. height: math.unit(50, "feet")
  14780. },
  14781. {
  14782. name: "Macro",
  14783. height: math.unit(300, "feet")
  14784. },
  14785. {
  14786. name: "Megamacro",
  14787. height: math.unit(500, "miles")
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(6, "feet"),
  14796. weight: math.unit(150, "lb"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/felix/front.svg",
  14800. extra: 762 / 722,
  14801. bottom: 0.02
  14802. }
  14803. },
  14804. frontClothed: {
  14805. height: math.unit(6, "feet"),
  14806. weight: math.unit(150, "lb"),
  14807. name: "Front (Clothed)",
  14808. image: {
  14809. source: "./media/characters/felix/front-clothed.svg",
  14810. extra: 762 / 722,
  14811. bottom: 0.02
  14812. }
  14813. },
  14814. },
  14815. [
  14816. {
  14817. name: "Normal",
  14818. height: math.unit(6 + 8 / 12, "feet"),
  14819. default: true
  14820. },
  14821. {
  14822. name: "Macro",
  14823. height: math.unit(2600, "feet")
  14824. },
  14825. {
  14826. name: "Megamacro",
  14827. height: math.unit(450, "miles")
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14833. {
  14834. front: {
  14835. height: math.unit(6 + 1 / 12, "feet"),
  14836. weight: math.unit(250, "lb"),
  14837. name: "Front",
  14838. image: {
  14839. source: "./media/characters/tobo/front.svg",
  14840. extra: 608 / 586,
  14841. bottom: 0.023
  14842. }
  14843. },
  14844. back: {
  14845. height: math.unit(6 + 1 / 12, "feet"),
  14846. weight: math.unit(250, "lb"),
  14847. name: "Back",
  14848. image: {
  14849. source: "./media/characters/tobo/back.svg",
  14850. extra: 608 / 586
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Nano",
  14857. height: math.unit(2, "nm")
  14858. },
  14859. {
  14860. name: "Megamicro",
  14861. height: math.unit(0.1, "mm")
  14862. },
  14863. {
  14864. name: "Micro",
  14865. height: math.unit(1, "inch"),
  14866. default: true
  14867. },
  14868. {
  14869. name: "Human-sized",
  14870. height: math.unit(6 + 1 / 12, "feet")
  14871. },
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(250, "feet")
  14875. },
  14876. {
  14877. name: "Megamacro",
  14878. height: math.unit(75, "miles")
  14879. },
  14880. {
  14881. name: "Texas-sized",
  14882. height: math.unit(750, "miles")
  14883. },
  14884. {
  14885. name: "Teramacro",
  14886. height: math.unit(50000, "miles")
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(269, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/danny-kapowsky/front.svg",
  14899. extra: 766 / 736,
  14900. bottom: 0.044
  14901. }
  14902. },
  14903. back: {
  14904. height: math.unit(6, "feet"),
  14905. weight: math.unit(269, "lb"),
  14906. name: "Back",
  14907. image: {
  14908. source: "./media/characters/danny-kapowsky/back.svg",
  14909. extra: 797 / 760,
  14910. bottom: 0.025
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Macro",
  14917. height: math.unit(150, "feet"),
  14918. default: true
  14919. },
  14920. {
  14921. name: "Macro+",
  14922. height: math.unit(200, "feet")
  14923. },
  14924. {
  14925. name: "Macro++",
  14926. height: math.unit(300, "feet")
  14927. },
  14928. {
  14929. name: "Macro+++",
  14930. height: math.unit(400, "feet")
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14936. {
  14937. side: {
  14938. height: math.unit(6, "feet"),
  14939. weight: math.unit(170, "lb"),
  14940. name: "Side",
  14941. image: {
  14942. source: "./media/characters/finn/side.svg",
  14943. extra: 1953 / 1807,
  14944. bottom: 0.057
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Megamacro",
  14951. height: math.unit(14445, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14958. {
  14959. front: {
  14960. height: math.unit(5 + 6 / 12, "feet"),
  14961. weight: math.unit(125, "lb"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/roy/front.svg",
  14965. extra: 1,
  14966. bottom: 0.11
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Micro",
  14973. height: math.unit(3, "inches"),
  14974. default: true
  14975. },
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(5 + 6 / 12, "feet")
  14979. },
  14980. {
  14981. name: "Lesser Macro",
  14982. height: math.unit(60, "feet")
  14983. },
  14984. {
  14985. name: "Greater Macro",
  14986. height: math.unit(120, "feet")
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(6, "feet"),
  14995. weight: math.unit(100, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/aevsivs/front.svg",
  14999. extra: 1,
  15000. bottom: 0.03
  15001. }
  15002. },
  15003. back: {
  15004. height: math.unit(6, "feet"),
  15005. weight: math.unit(100, "lb"),
  15006. name: "Back",
  15007. image: {
  15008. source: "./media/characters/aevsivs/back.svg"
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Micro",
  15015. height: math.unit(2, "inches"),
  15016. default: true
  15017. },
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(5, "feet")
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(5 + 7 / 12, "feet"),
  15029. weight: math.unit(159, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/hildegard/front.svg",
  15033. extra: 289 / 269,
  15034. bottom: 7.63 / 297.8
  15035. }
  15036. },
  15037. back: {
  15038. height: math.unit(5 + 7 / 12, "feet"),
  15039. weight: math.unit(159, "lb"),
  15040. name: "Back",
  15041. image: {
  15042. source: "./media/characters/hildegard/back.svg",
  15043. extra: 280 / 260,
  15044. bottom: 2.3 / 282
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(5 + 7 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15058. {
  15059. bernard: {
  15060. height: math.unit(2 + 7 / 12, "feet"),
  15061. weight: math.unit(66, "lb"),
  15062. name: "Bernard",
  15063. rename: true,
  15064. image: {
  15065. source: "./media/characters/bernard-wilder/bernard.svg",
  15066. extra: 192 / 128,
  15067. bottom: 0.05
  15068. }
  15069. },
  15070. wilder: {
  15071. height: math.unit(5 + 8 / 12, "feet"),
  15072. weight: math.unit(143, "lb"),
  15073. name: "Wilder",
  15074. rename: true,
  15075. image: {
  15076. source: "./media/characters/bernard-wilder/wilder.svg",
  15077. extra: 361 / 312,
  15078. bottom: 0.02
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(2 + 7 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15092. {
  15093. anthro: {
  15094. height: math.unit(6 + 1 / 12, "feet"),
  15095. weight: math.unit(155, "lb"),
  15096. name: "Anthro",
  15097. image: {
  15098. source: "./media/characters/hearth/anthro.svg",
  15099. extra: 1178/1136,
  15100. bottom: 28/1206
  15101. }
  15102. },
  15103. feral: {
  15104. height: math.unit(3.78, "feet"),
  15105. weight: math.unit(35, "kg"),
  15106. name: "Feral",
  15107. image: {
  15108. source: "./media/characters/hearth/feral.svg",
  15109. extra: 153 / 135,
  15110. bottom: 0.03
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(6 + 1 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(6, "feet"),
  15127. weight: math.unit(182, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/ingrid/front.svg",
  15131. extra: 294 / 268,
  15132. bottom: 0.027
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(6, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15146. {
  15147. eevee: {
  15148. height: math.unit(2 + 10 / 12, "feet"),
  15149. weight: math.unit(86, "lb"),
  15150. name: "Malgam",
  15151. image: {
  15152. source: "./media/characters/malgam/eevee.svg",
  15153. extra: 952/784,
  15154. bottom: 38/990
  15155. }
  15156. },
  15157. sylveon: {
  15158. height: math.unit(4, "feet"),
  15159. weight: math.unit(101, "lb"),
  15160. name: "Future Malgam",
  15161. rename: true,
  15162. image: {
  15163. source: "./media/characters/malgam/sylveon.svg",
  15164. extra: 371 / 325,
  15165. bottom: 0.015
  15166. }
  15167. },
  15168. gigantamax: {
  15169. height: math.unit(50, "feet"),
  15170. name: "Gigantamax Malgam",
  15171. rename: true,
  15172. image: {
  15173. source: "./media/characters/malgam/gigantamax.svg"
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(2 + 10 / 12, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(5 + 11 / 12, "feet"),
  15190. weight: math.unit(188, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/fleur/front.svg",
  15194. extra: 309 / 283,
  15195. bottom: 0.007
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(5 + 11 / 12, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15209. {
  15210. front: {
  15211. height: math.unit(5 + 4 / 12, "feet"),
  15212. weight: math.unit(122, "lb"),
  15213. name: "Front",
  15214. image: {
  15215. source: "./media/characters/jude/front.svg",
  15216. extra: 288 / 273,
  15217. bottom: 0.03
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(5 + 4 / 12, "feet"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(5 + 11 / 12, "feet"),
  15234. weight: math.unit(190, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/seara/front.svg",
  15238. extra: 1,
  15239. bottom: 0.05
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(5 + 11 / 12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(16 + 5 / 12, "feet"),
  15256. weight: math.unit(524, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/caspian/front.svg",
  15260. extra: 1,
  15261. bottom: 0.04
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(16 + 5 / 12, "feet"),
  15269. default: true
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(5 + 7 / 12, "feet"),
  15278. weight: math.unit(170, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/mika/front.svg",
  15282. extra: 1,
  15283. bottom: 0.016
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(5 + 7 / 12, "feet"),
  15291. default: true
  15292. },
  15293. ]
  15294. ))
  15295. characterMakers.push(() => makeCharacter(
  15296. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15297. {
  15298. front: {
  15299. height: math.unit(6 + 2 / 12, "feet"),
  15300. weight: math.unit(268, "lb"),
  15301. name: "Front",
  15302. image: {
  15303. source: "./media/characters/sol/front.svg",
  15304. extra: 247 / 231,
  15305. bottom: 0.05
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(6 + 2 / 12, "feet"),
  15313. default: true
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15319. {
  15320. buizel: {
  15321. height: math.unit(2 + 5 / 12, "feet"),
  15322. weight: math.unit(87, "lb"),
  15323. name: "Buizel",
  15324. image: {
  15325. source: "./media/characters/umiko/buizel.svg",
  15326. extra: 172 / 157,
  15327. bottom: 0.01
  15328. }
  15329. },
  15330. floatzel: {
  15331. height: math.unit(5 + 9 / 12, "feet"),
  15332. weight: math.unit(250, "lb"),
  15333. name: "Floatzel",
  15334. image: {
  15335. source: "./media/characters/umiko/floatzel.svg",
  15336. extra: 262 / 248
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(2 + 5 / 12, "feet"),
  15344. default: true
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(6 + 2 / 12, "feet"),
  15353. weight: math.unit(146, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/iliac/front.svg",
  15357. extra: 389 / 365,
  15358. bottom: 0.035
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(6 + 2 / 12, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(170, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/topaz/front.svg",
  15379. extra: 317 / 303,
  15380. bottom: 0.055
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(6, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(5 + 11 / 12, "feet"),
  15397. weight: math.unit(144, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/gabriel/front.svg",
  15401. extra: 285 / 262,
  15402. bottom: 0.004
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(5 + 11 / 12, "feet"),
  15410. default: true
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15416. {
  15417. side: {
  15418. height: math.unit(6 + 5 / 12, "feet"),
  15419. weight: math.unit(300, "lb"),
  15420. name: "Side",
  15421. image: {
  15422. source: "./media/characters/tempest-suicune/side.svg",
  15423. extra: 195 / 154,
  15424. bottom: 0.04
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(6 + 5 / 12, "feet"),
  15432. default: true
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(7 + 2 / 12, "feet"),
  15441. weight: math.unit(322, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/vulcan/front.svg",
  15445. extra: 154 / 147,
  15446. bottom: 0.04
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(7 + 2 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(5 + 10 / 12, "feet"),
  15463. weight: math.unit(264, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/gault/front.svg",
  15467. extra: 161 / 140,
  15468. bottom: 0.028
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(5 + 10 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(6, "feet"),
  15485. weight: math.unit(150, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/shard/front.svg",
  15489. extra: 273 / 238,
  15490. bottom: 0.02
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Normal",
  15497. height: math.unit(3 + 6 / 12, "feet"),
  15498. default: true
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(5 + 11 / 12, "feet"),
  15507. weight: math.unit(146, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/ashe/front.svg",
  15511. extra: 400 / 373,
  15512. bottom: 0.01
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(5 + 11 / 12, "feet"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(5 + 5 / 12, "feet"),
  15529. weight: math.unit(135, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/beatrix/front.svg",
  15533. extra: 392 / 379,
  15534. bottom: 0.01
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(6, "feet"),
  15542. default: true
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6 + 2/12, "feet"),
  15551. weight: math.unit(135, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/ignatius/front.svg",
  15555. extra: 1380/1259,
  15556. bottom: 27/1407
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(6 + 2/12, "feet"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(6 + 2 / 12, "feet"),
  15573. weight: math.unit(138, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/mei-li/front.svg",
  15577. extra: 237 / 229,
  15578. bottom: 0.03
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(6 + 2 / 12, "feet"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15592. {
  15593. front: {
  15594. height: math.unit(2 + 4 / 12, "feet"),
  15595. weight: math.unit(62, "lb"),
  15596. name: "Front",
  15597. image: {
  15598. source: "./media/characters/puru/front.svg",
  15599. extra: 206 / 149,
  15600. bottom: 0.06
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Normal",
  15607. height: math.unit(2 + 4 / 12, "feet"),
  15608. default: true
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15614. {
  15615. anthro: {
  15616. height: math.unit(5 + 8/12, "feet"),
  15617. weight: math.unit(200, "lb"),
  15618. energyNeed: math.unit(2000, "kcal"),
  15619. name: "Anthro",
  15620. image: {
  15621. source: "./media/characters/kee/anthro.svg",
  15622. extra: 3251/3184,
  15623. bottom: 250/3501
  15624. }
  15625. },
  15626. taur: {
  15627. height: math.unit(11, "feet"),
  15628. weight: math.unit(500, "lb"),
  15629. energyNeed: math.unit(5000, "kcal"),
  15630. name: "Taur",
  15631. image: {
  15632. source: "./media/characters/kee/taur.svg",
  15633. extra: 1362/1320,
  15634. bottom: 83/1445
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(5 + 8/12, "feet"),
  15642. default: true
  15643. },
  15644. {
  15645. name: "Macro",
  15646. height: math.unit(35, "feet")
  15647. },
  15648. ]
  15649. ))
  15650. characterMakers.push(() => makeCharacter(
  15651. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15652. {
  15653. anthro: {
  15654. height: math.unit(7, "feet"),
  15655. weight: math.unit(190, "lb"),
  15656. name: "Anthro",
  15657. image: {
  15658. source: "./media/characters/cobalt-dracha/anthro.svg",
  15659. extra: 231 / 225,
  15660. bottom: 0.04
  15661. }
  15662. },
  15663. feral: {
  15664. height: math.unit(9 + 7 / 12, "feet"),
  15665. weight: math.unit(294, "lb"),
  15666. name: "Feral",
  15667. image: {
  15668. source: "./media/characters/cobalt-dracha/feral.svg",
  15669. extra: 692 / 633,
  15670. bottom: 0.05
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Normal",
  15677. height: math.unit(7, "feet"),
  15678. default: true
  15679. },
  15680. ]
  15681. ))
  15682. characterMakers.push(() => makeCharacter(
  15683. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15684. {
  15685. fallen: {
  15686. height: math.unit(11 + 8 / 12, "feet"),
  15687. weight: math.unit(485, "lb"),
  15688. name: "Java (Fallen)",
  15689. rename: true,
  15690. image: {
  15691. source: "./media/characters/java/fallen.svg",
  15692. extra: 226 / 208,
  15693. bottom: 0.005
  15694. }
  15695. },
  15696. godkin: {
  15697. height: math.unit(10 + 6 / 12, "feet"),
  15698. weight: math.unit(328, "lb"),
  15699. name: "Java (Godkin)",
  15700. rename: true,
  15701. image: {
  15702. source: "./media/characters/java/godkin.svg",
  15703. extra: 1104/1068,
  15704. bottom: 36/1140
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(11 + 8 / 12, "feet"),
  15712. default: true
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(5 + 9 / 12, "feet"),
  15721. weight: math.unit(170, "lb"),
  15722. name: "Front",
  15723. image: {
  15724. source: "./media/characters/purna/front.svg",
  15725. extra: 239 / 229,
  15726. bottom: 0.01
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(5 + 9 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(5 + 9 / 12, "feet"),
  15743. weight: math.unit(142, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/kuva/front.svg",
  15747. extra: 281 / 271,
  15748. bottom: 0.006
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(5 + 9 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15762. {
  15763. anthro: {
  15764. height: math.unit(9 + 2 / 12, "feet"),
  15765. weight: math.unit(270, "lb"),
  15766. name: "Anthro",
  15767. image: {
  15768. source: "./media/characters/embra/anthro.svg",
  15769. extra: 200 / 187,
  15770. bottom: 0.02
  15771. }
  15772. },
  15773. feral: {
  15774. height: math.unit(18 + 8 / 12, "feet"),
  15775. weight: math.unit(576, "lb"),
  15776. name: "Feral",
  15777. image: {
  15778. source: "./media/characters/embra/feral.svg",
  15779. extra: 152 / 137,
  15780. bottom: 0.037
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Normal",
  15787. height: math.unit(9 + 2 / 12, "feet"),
  15788. default: true
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15794. {
  15795. anthro: {
  15796. height: math.unit(10 + 9 / 12, "feet"),
  15797. weight: math.unit(224, "lb"),
  15798. name: "Anthro",
  15799. image: {
  15800. source: "./media/characters/grottos/anthro.svg",
  15801. extra: 350 / 332,
  15802. bottom: 0.045
  15803. }
  15804. },
  15805. feral: {
  15806. height: math.unit(20 + 7 / 12, "feet"),
  15807. weight: math.unit(629, "lb"),
  15808. name: "Feral",
  15809. image: {
  15810. source: "./media/characters/grottos/feral.svg",
  15811. extra: 207 / 190,
  15812. bottom: 0.05
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(10 + 9 / 12, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15826. {
  15827. anthro: {
  15828. height: math.unit(9 + 6 / 12, "feet"),
  15829. weight: math.unit(298, "lb"),
  15830. name: "Anthro",
  15831. image: {
  15832. source: "./media/characters/frifna/anthro.svg",
  15833. extra: 282 / 269,
  15834. bottom: 0.015
  15835. }
  15836. },
  15837. feral: {
  15838. height: math.unit(16 + 2 / 12, "feet"),
  15839. weight: math.unit(624, "lb"),
  15840. name: "Feral",
  15841. image: {
  15842. source: "./media/characters/frifna/feral.svg"
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Normal",
  15849. height: math.unit(9 + 6 / 12, "feet"),
  15850. default: true
  15851. },
  15852. ]
  15853. ))
  15854. characterMakers.push(() => makeCharacter(
  15855. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15856. {
  15857. front: {
  15858. height: math.unit(6 + 2 / 12, "feet"),
  15859. weight: math.unit(168, "lb"),
  15860. name: "Front",
  15861. image: {
  15862. source: "./media/characters/elise/front.svg",
  15863. extra: 276 / 271
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(6 + 2 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(5 + 10 / 12, "feet"),
  15880. weight: math.unit(210, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/glade/front.svg",
  15884. extra: 258 / 247,
  15885. bottom: 0.008
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(5 + 10 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(5 + 10 / 12, "feet"),
  15902. weight: math.unit(129, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/rina/front.svg",
  15906. extra: 266 / 255,
  15907. bottom: 0.005
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 10 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(6 + 1 / 12, "feet"),
  15924. weight: math.unit(192, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/veronica/front.svg",
  15928. extra: 319 / 309,
  15929. bottom: 0.005
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(6 + 1 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(9 + 3 / 12, "feet"),
  15946. weight: math.unit(1100, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/braxton/front.svg",
  15950. extra: 1057 / 984,
  15951. bottom: 0.05
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(9 + 3 / 12, "feet")
  15959. },
  15960. {
  15961. name: "Giant",
  15962. height: math.unit(300, "feet"),
  15963. default: true
  15964. },
  15965. {
  15966. name: "Macro",
  15967. height: math.unit(700, "feet")
  15968. },
  15969. {
  15970. name: "Megamacro",
  15971. height: math.unit(6000, "feet")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(6 + 7 / 12, "feet"),
  15980. weight: math.unit(150, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/blue-feyonics/front.svg",
  15984. extra: 1403 / 1306,
  15985. bottom: 0.047
  15986. }
  15987. },
  15988. },
  15989. [
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(6 + 7 / 12, "feet"),
  15993. default: true
  15994. },
  15995. ]
  15996. ))
  15997. characterMakers.push(() => makeCharacter(
  15998. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15999. {
  16000. front: {
  16001. height: math.unit(1.8, "meters"),
  16002. weight: math.unit(60, "kg"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/maxwell/front.svg",
  16006. extra: 2060 / 1873
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Micro",
  16013. height: math.unit(1, "mm")
  16014. },
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(1.8, "meter"),
  16018. default: true
  16019. },
  16020. {
  16021. name: "Macro",
  16022. height: math.unit(30, "meters")
  16023. },
  16024. {
  16025. name: "Megamacro",
  16026. height: math.unit(10, "km")
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(6, "feet"),
  16035. weight: math.unit(150, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/jack/front.svg",
  16039. extra: 1754 / 1640,
  16040. bottom: 0.01
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(80000, "feet"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Max size",
  16052. height: math.unit(10, "lightyears")
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16058. {
  16059. urban: {
  16060. height: math.unit(5, "feet"),
  16061. weight: math.unit(240, "lb"),
  16062. name: "Urban",
  16063. image: {
  16064. source: "./media/characters/cafat/urban.svg",
  16065. extra: 1223/1126,
  16066. bottom: 205/1428
  16067. }
  16068. },
  16069. summer: {
  16070. height: math.unit(5, "feet"),
  16071. weight: math.unit(240, "lb"),
  16072. name: "Summer",
  16073. image: {
  16074. source: "./media/characters/cafat/summer.svg",
  16075. extra: 1223/1126,
  16076. bottom: 205/1428
  16077. }
  16078. },
  16079. winter: {
  16080. height: math.unit(5, "feet"),
  16081. weight: math.unit(240, "lb"),
  16082. name: "Winter",
  16083. image: {
  16084. source: "./media/characters/cafat/winter.svg",
  16085. extra: 1223/1126,
  16086. bottom: 205/1428
  16087. }
  16088. },
  16089. lingerie: {
  16090. height: math.unit(5, "feet"),
  16091. weight: math.unit(240, "lb"),
  16092. name: "Lingerie",
  16093. image: {
  16094. source: "./media/characters/cafat/lingerie.svg",
  16095. extra: 1223/1126,
  16096. bottom: 205/1428
  16097. }
  16098. },
  16099. upright: {
  16100. height: math.unit(6.3, "feet"),
  16101. weight: math.unit(240, "lb"),
  16102. name: "Upright",
  16103. image: {
  16104. source: "./media/characters/cafat/upright.svg",
  16105. bottom: 0.01
  16106. }
  16107. },
  16108. uprightFull: {
  16109. height: math.unit(6.3, "feet"),
  16110. weight: math.unit(240, "lb"),
  16111. name: "Upright (Full)",
  16112. image: {
  16113. source: "./media/characters/cafat/upright-full.svg",
  16114. bottom: 0.01
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Small",
  16121. height: math.unit(5, "feet"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Large",
  16126. height: math.unit(13, "feet")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(150, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/verin-raharra/front.svg",
  16139. extra: 5019 / 4835,
  16140. bottom: 0.023
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(7 + 5 / 12, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Upsized",
  16152. height: math.unit(20, "feet")
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16158. {
  16159. front: {
  16160. height: math.unit(7, "feet"),
  16161. weight: math.unit(230, "lb"),
  16162. name: "Front",
  16163. image: {
  16164. source: "./media/characters/nakata/front.svg",
  16165. extra: 1.005,
  16166. bottom: 0.01
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Normal",
  16173. height: math.unit(7, "feet"),
  16174. default: true
  16175. },
  16176. {
  16177. name: "Big",
  16178. height: math.unit(14, "feet")
  16179. },
  16180. {
  16181. name: "Macro",
  16182. height: math.unit(400, "feet")
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(4.91, "feet"),
  16191. weight: math.unit(100, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/lily/front.svg",
  16195. extra: 1585 / 1415,
  16196. bottom: 0.02
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(4.91, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16210. {
  16211. laying: {
  16212. height: math.unit(4 + 4 / 12, "feet"),
  16213. weight: math.unit(600, "lb"),
  16214. name: "Laying",
  16215. image: {
  16216. source: "./media/characters/sheila/laying.svg",
  16217. extra: 1333 / 1265,
  16218. bottom: 0.16
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(4 + 4 / 12, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(6, "feet"),
  16235. weight: math.unit(190, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/sax/front.svg",
  16239. extra: 1187 / 973,
  16240. bottom: 0.042
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Micro",
  16247. height: math.unit(4, "inches"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(150, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/pandora/front.svg",
  16261. extra: 2720 / 2556,
  16262. bottom: 0.015
  16263. }
  16264. },
  16265. back: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Back",
  16269. image: {
  16270. source: "./media/characters/pandora/back.svg",
  16271. extra: 2720 / 2556,
  16272. bottom: 0.01
  16273. }
  16274. },
  16275. beans: {
  16276. height: math.unit(6 / 8, "feet"),
  16277. name: "Beans",
  16278. image: {
  16279. source: "./media/characters/pandora/beans.svg"
  16280. }
  16281. },
  16282. collar: {
  16283. height: math.unit(0.31, "feet"),
  16284. name: "Collar",
  16285. image: {
  16286. source: "./media/characters/pandora/collar.svg"
  16287. }
  16288. },
  16289. skirt: {
  16290. height: math.unit(6, "feet"),
  16291. weight: math.unit(150, "lb"),
  16292. name: "Skirt",
  16293. image: {
  16294. source: "./media/characters/pandora/skirt.svg",
  16295. extra: 1622 / 1525,
  16296. bottom: 0.015
  16297. }
  16298. },
  16299. hoodie: {
  16300. height: math.unit(6, "feet"),
  16301. weight: math.unit(150, "lb"),
  16302. name: "Hoodie",
  16303. image: {
  16304. source: "./media/characters/pandora/hoodie.svg",
  16305. extra: 1622 / 1525,
  16306. bottom: 0.015
  16307. }
  16308. },
  16309. casual: {
  16310. height: math.unit(6, "feet"),
  16311. weight: math.unit(150, "lb"),
  16312. name: "Casual",
  16313. image: {
  16314. source: "./media/characters/pandora/casual.svg",
  16315. extra: 1622 / 1525,
  16316. bottom: 0.015
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(6, "feet")
  16324. },
  16325. {
  16326. name: "Big Steppy",
  16327. height: math.unit(1, "km"),
  16328. default: true
  16329. },
  16330. {
  16331. name: "Galactic Steppy",
  16332. height: math.unit(2, "gigameters")
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16338. {
  16339. side: {
  16340. height: math.unit(10, "feet"),
  16341. weight: math.unit(800, "kg"),
  16342. name: "Side",
  16343. image: {
  16344. source: "./media/characters/venio-darcony/side.svg",
  16345. extra: 1373 / 1003,
  16346. bottom: 0.037
  16347. }
  16348. },
  16349. front: {
  16350. height: math.unit(19, "feet"),
  16351. weight: math.unit(800, "kg"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/venio-darcony/front.svg"
  16355. }
  16356. },
  16357. back: {
  16358. height: math.unit(19, "feet"),
  16359. weight: math.unit(800, "kg"),
  16360. name: "Back",
  16361. image: {
  16362. source: "./media/characters/venio-darcony/back.svg"
  16363. }
  16364. },
  16365. sideNsfw: {
  16366. height: math.unit(10, "feet"),
  16367. weight: math.unit(800, "kg"),
  16368. name: "Side (NSFW)",
  16369. image: {
  16370. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16371. extra: 1373 / 1003,
  16372. bottom: 0.037
  16373. }
  16374. },
  16375. frontNsfw: {
  16376. height: math.unit(19, "feet"),
  16377. weight: math.unit(800, "kg"),
  16378. name: "Front (NSFW)",
  16379. image: {
  16380. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16381. }
  16382. },
  16383. backNsfw: {
  16384. height: math.unit(19, "feet"),
  16385. weight: math.unit(800, "kg"),
  16386. name: "Back (NSFW)",
  16387. image: {
  16388. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16389. }
  16390. },
  16391. sideArmored: {
  16392. height: math.unit(10, "feet"),
  16393. weight: math.unit(800, "kg"),
  16394. name: "Side (Armored)",
  16395. image: {
  16396. source: "./media/characters/venio-darcony/side-armored.svg",
  16397. extra: 1373 / 1003,
  16398. bottom: 0.037
  16399. }
  16400. },
  16401. frontArmored: {
  16402. height: math.unit(19, "feet"),
  16403. weight: math.unit(900, "kg"),
  16404. name: "Front (Armored)",
  16405. image: {
  16406. source: "./media/characters/venio-darcony/front-armored.svg"
  16407. }
  16408. },
  16409. backArmored: {
  16410. height: math.unit(19, "feet"),
  16411. weight: math.unit(900, "kg"),
  16412. name: "Back (Armored)",
  16413. image: {
  16414. source: "./media/characters/venio-darcony/back-armored.svg"
  16415. }
  16416. },
  16417. sword: {
  16418. height: math.unit(10, "feet"),
  16419. weight: math.unit(50, "lb"),
  16420. name: "Sword",
  16421. image: {
  16422. source: "./media/characters/venio-darcony/sword.svg"
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(10, "feet")
  16430. },
  16431. {
  16432. name: "Macro",
  16433. height: math.unit(130, "feet"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro+",
  16438. height: math.unit(240, "feet")
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(6, "feet"),
  16447. weight: math.unit(150, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/veski/front.svg",
  16451. extra: 1299 / 1225,
  16452. bottom: 0.04
  16453. }
  16454. },
  16455. back: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(150, "lb"),
  16458. name: "Back",
  16459. image: {
  16460. source: "./media/characters/veski/back.svg",
  16461. extra: 1299 / 1225,
  16462. bottom: 0.008
  16463. }
  16464. },
  16465. maw: {
  16466. height: math.unit(1.5 * 1.21, "feet"),
  16467. name: "Maw",
  16468. image: {
  16469. source: "./media/characters/veski/maw.svg"
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Macro",
  16476. height: math.unit(2, "km"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 7 / 12, "feet"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/isabelle/front.svg",
  16489. extra: 2130 / 1976,
  16490. bottom: 0.05
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Supermicro",
  16497. height: math.unit(10, "micrometers")
  16498. },
  16499. {
  16500. name: "Micro",
  16501. height: math.unit(1, "inch")
  16502. },
  16503. {
  16504. name: "Tiny",
  16505. height: math.unit(5, "inches")
  16506. },
  16507. {
  16508. name: "Standard",
  16509. height: math.unit(5 + 7 / 12, "inches")
  16510. },
  16511. {
  16512. name: "Macro",
  16513. height: math.unit(80, "meters"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Megamacro",
  16518. height: math.unit(250, "meters")
  16519. },
  16520. {
  16521. name: "Gigamacro",
  16522. height: math.unit(5, "km")
  16523. },
  16524. {
  16525. name: "Cosmic",
  16526. height: math.unit(2.5e6, "miles")
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(6, "feet"),
  16535. weight: math.unit(150, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/hanzo/front.svg",
  16539. extra: 374 / 344,
  16540. bottom: 0.02
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(8, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(7, "feet"),
  16557. weight: math.unit(130, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/anna/front.svg",
  16561. extra: 169 / 145,
  16562. bottom: 0.06
  16563. }
  16564. },
  16565. full: {
  16566. height: math.unit(4.96, "feet"),
  16567. weight: math.unit(220, "lb"),
  16568. name: "Full",
  16569. image: {
  16570. source: "./media/characters/anna/full.svg",
  16571. extra: 138 / 114,
  16572. bottom: 0.15
  16573. }
  16574. },
  16575. tongue: {
  16576. height: math.unit(2.53, "feet"),
  16577. name: "Tongue",
  16578. image: {
  16579. source: "./media/characters/anna/tongue.svg"
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(7, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(7, "feet"),
  16596. weight: math.unit(150, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/ian-corvid/front.svg",
  16600. extra: 150 / 142,
  16601. bottom: 0.02
  16602. }
  16603. },
  16604. back: {
  16605. height: math.unit(7, "feet"),
  16606. weight: math.unit(150, "lb"),
  16607. name: "Back",
  16608. image: {
  16609. source: "./media/characters/ian-corvid/back.svg",
  16610. extra: 150 / 143,
  16611. bottom: 0.01
  16612. }
  16613. },
  16614. stomping: {
  16615. height: math.unit(7, "feet"),
  16616. weight: math.unit(150, "lb"),
  16617. name: "Stomping",
  16618. image: {
  16619. source: "./media/characters/ian-corvid/stomping.svg",
  16620. extra: 76 / 72
  16621. }
  16622. },
  16623. sitting: {
  16624. height: math.unit(7 / 1.8, "feet"),
  16625. weight: math.unit(150, "lb"),
  16626. name: "Sitting",
  16627. image: {
  16628. source: "./media/characters/ian-corvid/sitting.svg",
  16629. extra: 1400 / 1269,
  16630. bottom: 0.15
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Tiny Microw",
  16637. height: math.unit(1, "inch")
  16638. },
  16639. {
  16640. name: "Microw",
  16641. height: math.unit(6, "inches")
  16642. },
  16643. {
  16644. name: "Crow",
  16645. height: math.unit(7 + 1 / 12, "feet"),
  16646. default: true
  16647. },
  16648. {
  16649. name: "Macrow",
  16650. height: math.unit(176, "feet")
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(5 + 7 / 12, "feet"),
  16659. weight: math.unit(147, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/natalie-kellon/front.svg",
  16663. extra: 1214 / 1141,
  16664. bottom: 0.02
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Micro",
  16671. height: math.unit(1 / 16, "inch")
  16672. },
  16673. {
  16674. name: "Tiny",
  16675. height: math.unit(4, "inches")
  16676. },
  16677. {
  16678. name: "Normal",
  16679. height: math.unit(5 + 7 / 12, "feet"),
  16680. default: true
  16681. },
  16682. {
  16683. name: "Amazon",
  16684. height: math.unit(12, "feet")
  16685. },
  16686. {
  16687. name: "Giantess",
  16688. height: math.unit(160, "meters")
  16689. },
  16690. {
  16691. name: "Titaness",
  16692. height: math.unit(800, "meters")
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16698. {
  16699. front: {
  16700. height: math.unit(6, "feet"),
  16701. weight: math.unit(150, "lb"),
  16702. name: "Front",
  16703. image: {
  16704. source: "./media/characters/alluria/front.svg",
  16705. extra: 806 / 738,
  16706. bottom: 0.01
  16707. }
  16708. },
  16709. side: {
  16710. height: math.unit(6, "feet"),
  16711. weight: math.unit(150, "lb"),
  16712. name: "Side",
  16713. image: {
  16714. source: "./media/characters/alluria/side.svg",
  16715. extra: 800 / 750,
  16716. }
  16717. },
  16718. back: {
  16719. height: math.unit(6, "feet"),
  16720. weight: math.unit(150, "lb"),
  16721. name: "Back",
  16722. image: {
  16723. source: "./media/characters/alluria/back.svg",
  16724. extra: 806 / 738,
  16725. }
  16726. },
  16727. frontMaid: {
  16728. height: math.unit(6, "feet"),
  16729. weight: math.unit(150, "lb"),
  16730. name: "Front (Maid)",
  16731. image: {
  16732. source: "./media/characters/alluria/front-maid.svg",
  16733. extra: 806 / 738,
  16734. bottom: 0.01
  16735. }
  16736. },
  16737. sideMaid: {
  16738. height: math.unit(6, "feet"),
  16739. weight: math.unit(150, "lb"),
  16740. name: "Side (Maid)",
  16741. image: {
  16742. source: "./media/characters/alluria/side-maid.svg",
  16743. extra: 800 / 750,
  16744. bottom: 0.005
  16745. }
  16746. },
  16747. backMaid: {
  16748. height: math.unit(6, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Back (Maid)",
  16751. image: {
  16752. source: "./media/characters/alluria/back-maid.svg",
  16753. extra: 806 / 738,
  16754. }
  16755. },
  16756. },
  16757. [
  16758. {
  16759. name: "Micro",
  16760. height: math.unit(6, "inches"),
  16761. default: true
  16762. },
  16763. ]
  16764. ))
  16765. characterMakers.push(() => makeCharacter(
  16766. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16767. {
  16768. front: {
  16769. height: math.unit(6, "feet"),
  16770. weight: math.unit(150, "lb"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/kyle/front.svg",
  16774. extra: 1069 / 962,
  16775. bottom: 77.228 / 1727.45
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Macro",
  16782. height: math.unit(150, "feet"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16789. {
  16790. front: {
  16791. height: math.unit(6, "feet"),
  16792. weight: math.unit(300, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/duncan/front.svg",
  16796. extra: 1650 / 1482,
  16797. bottom: 0.05
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Macro",
  16804. height: math.unit(100, "feet"),
  16805. default: true
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16811. {
  16812. front: {
  16813. height: math.unit(5 + 4 / 12, "feet"),
  16814. weight: math.unit(220, "lb"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/memory/front.svg",
  16818. extra: 3641 / 3545,
  16819. bottom: 0.03
  16820. }
  16821. },
  16822. back: {
  16823. height: math.unit(5 + 4 / 12, "feet"),
  16824. weight: math.unit(220, "lb"),
  16825. name: "Back",
  16826. image: {
  16827. source: "./media/characters/memory/back.svg",
  16828. extra: 3641 / 3545,
  16829. bottom: 0.025
  16830. }
  16831. },
  16832. frontSkirt: {
  16833. height: math.unit(5 + 4 / 12, "feet"),
  16834. weight: math.unit(220, "lb"),
  16835. name: "Front (Skirt)",
  16836. image: {
  16837. source: "./media/characters/memory/front-skirt.svg",
  16838. extra: 3641 / 3545,
  16839. bottom: 0.03
  16840. }
  16841. },
  16842. frontDress: {
  16843. height: math.unit(5 + 4 / 12, "feet"),
  16844. weight: math.unit(220, "lb"),
  16845. name: "Front (Dress)",
  16846. image: {
  16847. source: "./media/characters/memory/front-dress.svg",
  16848. extra: 3641 / 3545,
  16849. bottom: 0.03
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Micro",
  16856. height: math.unit(6, "inches"),
  16857. default: true
  16858. },
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(5 + 4 / 12, "feet")
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(4 + 11 / 12, "feet"),
  16870. weight: math.unit(100, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/luno/front.svg",
  16874. extra: 1535 / 1487,
  16875. bottom: 0.03
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Micro",
  16882. height: math.unit(3, "inches")
  16883. },
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(4 + 11 / 12, "feet"),
  16887. default: true
  16888. },
  16889. {
  16890. name: "Macro",
  16891. height: math.unit(300, "feet")
  16892. },
  16893. {
  16894. name: "Megamacro",
  16895. height: math.unit(700, "miles")
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(6 + 2 / 12, "feet"),
  16904. weight: math.unit(170, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/jamesy/front.svg",
  16908. extra: 440 / 382,
  16909. bottom: 0.005
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Micro",
  16916. height: math.unit(3, "inches")
  16917. },
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(6 + 2 / 12, "feet"),
  16921. default: true
  16922. },
  16923. {
  16924. name: "Macro",
  16925. height: math.unit(300, "feet")
  16926. },
  16927. {
  16928. name: "Megamacro",
  16929. height: math.unit(700, "miles")
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16935. {
  16936. front: {
  16937. height: math.unit(6, "feet"),
  16938. weight: math.unit(160, "lb"),
  16939. name: "Front",
  16940. image: {
  16941. source: "./media/characters/mark/front.svg",
  16942. extra: 3300 / 3100,
  16943. bottom: 136.42 / 3440.47
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Macro",
  16950. height: math.unit(120, "meters")
  16951. },
  16952. {
  16953. name: "Bigger Macro",
  16954. height: math.unit(350, "meters")
  16955. },
  16956. {
  16957. name: "Megamacro",
  16958. height: math.unit(8, "km"),
  16959. default: true
  16960. },
  16961. {
  16962. name: "Continental",
  16963. height: math.unit(4550, "km")
  16964. },
  16965. {
  16966. name: "Planetary",
  16967. height: math.unit(65000, "km")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(400, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/mac/front.svg",
  16980. extra: 1048 / 987.7,
  16981. bottom: 60 / 1107.6,
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(500, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(5 + 2 / 12, "feet"),
  16998. weight: math.unit(190, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/bari/front.svg",
  17002. extra: 3156 / 2880,
  17003. bottom: 0.03
  17004. }
  17005. },
  17006. back: {
  17007. height: math.unit(5 + 2 / 12, "feet"),
  17008. weight: math.unit(190, "lb"),
  17009. name: "Back",
  17010. image: {
  17011. source: "./media/characters/bari/back.svg",
  17012. extra: 3260 / 2834,
  17013. bottom: 0.025
  17014. }
  17015. },
  17016. frontPlush: {
  17017. height: math.unit(5 + 2 / 12, "feet"),
  17018. weight: math.unit(190, "lb"),
  17019. name: "Front (Plush)",
  17020. image: {
  17021. source: "./media/characters/bari/front-plush.svg",
  17022. extra: 1112 / 1061,
  17023. bottom: 0.002
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Micro",
  17030. height: math.unit(3, "inches")
  17031. },
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(5 + 2 / 12, "feet"),
  17035. default: true
  17036. },
  17037. {
  17038. name: "Macro",
  17039. height: math.unit(20, "feet")
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(6 + 1 / 12, "feet"),
  17048. weight: math.unit(275, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/hunter-misha-raven/front.svg"
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Mortal",
  17058. height: math.unit(6 + 1 / 12, "feet")
  17059. },
  17060. {
  17061. name: "Divine",
  17062. height: math.unit(1.12134e34, "parsecs"),
  17063. default: true
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17069. {
  17070. front: {
  17071. height: math.unit(6 + 3 / 12, "feet"),
  17072. weight: math.unit(220, "lb"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/max-calore/front.svg",
  17076. extra: 1700 / 1648,
  17077. bottom: 0.01
  17078. }
  17079. },
  17080. back: {
  17081. height: math.unit(6 + 3 / 12, "feet"),
  17082. weight: math.unit(220, "lb"),
  17083. name: "Back",
  17084. image: {
  17085. source: "./media/characters/max-calore/back.svg",
  17086. extra: 1700 / 1648,
  17087. bottom: 0.01
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(6 + 3 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17101. {
  17102. side: {
  17103. height: math.unit(2 + 8 / 12, "feet"),
  17104. weight: math.unit(99, "lb"),
  17105. name: "Side",
  17106. image: {
  17107. source: "./media/characters/aspen/side.svg",
  17108. extra: 152 / 138,
  17109. bottom: 0.032
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(2 + 8 / 12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17123. {
  17124. side: {
  17125. height: math.unit(3 + 2 / 12, "feet"),
  17126. weight: math.unit(224, "lb"),
  17127. name: "Side",
  17128. image: {
  17129. source: "./media/characters/sheila-feral-wolf/side.svg",
  17130. extra: 179 / 166,
  17131. bottom: 0.03
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(3 + 2 / 12, "feet"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17145. {
  17146. side: {
  17147. height: math.unit(1 + 9 / 12, "feet"),
  17148. weight: math.unit(38, "lb"),
  17149. name: "Side",
  17150. image: {
  17151. source: "./media/characters/michelle/side.svg",
  17152. extra: 147 / 136.7,
  17153. bottom: 0.03
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(1 + 9 / 12, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(1.54, "feet"),
  17170. weight: math.unit(50, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/nino/front.svg"
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(1.54, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(1, "feet"),
  17190. weight: math.unit(16, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/viola/front.svg"
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(1, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(6 + 5 / 12, "feet"),
  17210. weight: math.unit(580, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/atlas/front.svg",
  17214. extra: 298.5 / 290,
  17215. bottom: 0.015
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(6 + 5 / 12, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17229. {
  17230. side: {
  17231. height: math.unit(1 + 10 / 12, "feet"),
  17232. weight: math.unit(25, "lb"),
  17233. name: "Side",
  17234. image: {
  17235. source: "./media/characters/davy/side.svg",
  17236. extra: 200 / 170,
  17237. bottom: 0.01
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(1 + 10 / 12, "feet"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17251. {
  17252. side: {
  17253. height: math.unit(4 + 8 / 12, "feet"),
  17254. weight: math.unit(166, "lb"),
  17255. name: "Side",
  17256. image: {
  17257. source: "./media/characters/fiona/side.svg",
  17258. extra: 232 / 220,
  17259. bottom: 0.03
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(4 + 8 / 12, "feet"),
  17267. default: true
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17273. {
  17274. front: {
  17275. height: math.unit(3, "feet"),
  17276. weight: math.unit(100, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/lyla/front.svg",
  17280. bottom: 0.1
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(3, "feet"),
  17288. default: true
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17294. {
  17295. side: {
  17296. height: math.unit(1.8, "feet"),
  17297. weight: math.unit(44, "lb"),
  17298. name: "Side",
  17299. image: {
  17300. source: "./media/characters/perseus/side.svg",
  17301. bottom: 0.21
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(1.8, "feet"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17315. {
  17316. side: {
  17317. height: math.unit(4 + 2 / 12, "feet"),
  17318. weight: math.unit(20, "lb"),
  17319. name: "Side",
  17320. image: {
  17321. source: "./media/characters/remus/side.svg"
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(4 + 2 / 12, "feet"),
  17329. default: true
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17335. {
  17336. front: {
  17337. height: math.unit(4 + 11 / 12, "feet"),
  17338. weight: math.unit(114, "lb"),
  17339. name: "Front",
  17340. image: {
  17341. source: "./media/characters/raf/front.svg",
  17342. extra: 1504/1339,
  17343. bottom: 26/1530
  17344. }
  17345. },
  17346. side: {
  17347. height: math.unit(4 + 11 / 12, "feet"),
  17348. weight: math.unit(114, "lb"),
  17349. name: "Side",
  17350. image: {
  17351. source: "./media/characters/raf/side.svg",
  17352. extra: 1466/1316,
  17353. bottom: 29/1495
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Micro",
  17360. height: math.unit(2, "inches")
  17361. },
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(4 + 11 / 12, "feet"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "Macro",
  17369. height: math.unit(70, "feet")
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(1.5, "meters"),
  17378. weight: math.unit(68, "kg"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/liam-einarr/front.svg",
  17382. extra: 2822 / 2666
  17383. }
  17384. },
  17385. back: {
  17386. height: math.unit(1.5, "meters"),
  17387. weight: math.unit(68, "kg"),
  17388. name: "Back",
  17389. image: {
  17390. source: "./media/characters/liam-einarr/back.svg",
  17391. extra: 2822 / 2666,
  17392. bottom: 0.015
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(1.5, "meters"),
  17400. default: true
  17401. },
  17402. {
  17403. name: "Macro",
  17404. height: math.unit(150, "meters")
  17405. },
  17406. {
  17407. name: "Megamacro",
  17408. height: math.unit(35, "km")
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(6, "feet"),
  17417. weight: math.unit(75, "kg"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/linda/front.svg",
  17421. extra: 930 / 874,
  17422. bottom: 0.004
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(6, "feet"),
  17430. default: true
  17431. },
  17432. ]
  17433. ))
  17434. characterMakers.push(() => makeCharacter(
  17435. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17436. {
  17437. front: {
  17438. height: math.unit(6 + 8 / 12, "feet"),
  17439. weight: math.unit(220, "lb"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/caylex/front.svg",
  17443. extra: 821 / 772,
  17444. bottom: 0.07
  17445. }
  17446. },
  17447. back: {
  17448. height: math.unit(6 + 8 / 12, "feet"),
  17449. weight: math.unit(220, "lb"),
  17450. name: "Back",
  17451. image: {
  17452. source: "./media/characters/caylex/back.svg",
  17453. extra: 821 / 772,
  17454. bottom: 0.022
  17455. }
  17456. },
  17457. hand: {
  17458. height: math.unit(1.25, "feet"),
  17459. name: "Hand",
  17460. image: {
  17461. source: "./media/characters/caylex/hand.svg"
  17462. }
  17463. },
  17464. foot: {
  17465. height: math.unit(1.6, "feet"),
  17466. name: "Foot",
  17467. image: {
  17468. source: "./media/characters/caylex/foot.svg"
  17469. }
  17470. },
  17471. armored: {
  17472. height: math.unit(6 + 8 / 12, "feet"),
  17473. weight: math.unit(250, "lb"),
  17474. name: "Armored",
  17475. image: {
  17476. source: "./media/characters/caylex/armored.svg",
  17477. extra: 1420 / 1310,
  17478. bottom: 0.045
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(6 + 8 / 12, "feet"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Normal+",
  17490. height: math.unit(12, "feet")
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(7 + 6 / 12, "feet"),
  17499. weight: math.unit(288, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/alana/front.svg",
  17503. extra: 679 / 653,
  17504. bottom: 22.5 / 701
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(7 + 6 / 12, "feet")
  17512. },
  17513. {
  17514. name: "Large",
  17515. height: math.unit(50, "feet")
  17516. },
  17517. {
  17518. name: "Macro",
  17519. height: math.unit(100, "feet"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Macro+",
  17524. height: math.unit(200, "feet")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(6 + 1 / 12, "feet"),
  17533. weight: math.unit(210, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/hasani/front.svg",
  17537. extra: 244 / 232,
  17538. bottom: 0.01
  17539. }
  17540. },
  17541. back: {
  17542. height: math.unit(6 + 1 / 12, "feet"),
  17543. weight: math.unit(210, "lb"),
  17544. name: "Back",
  17545. image: {
  17546. source: "./media/characters/hasani/back.svg",
  17547. extra: 244 / 232,
  17548. bottom: 0.01
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(6 + 1 / 12, "feet")
  17556. },
  17557. {
  17558. name: "Macro",
  17559. height: math.unit(175, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17566. {
  17567. front: {
  17568. height: math.unit(1.82, "meters"),
  17569. weight: math.unit(140, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/nita/front.svg",
  17573. extra: 2473 / 2363,
  17574. bottom: 0.01
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(1.82, "m")
  17582. },
  17583. {
  17584. name: "Macro",
  17585. height: math.unit(300, "m")
  17586. },
  17587. {
  17588. name: "Mistake Canon",
  17589. height: math.unit(0.5, "miles"),
  17590. default: true
  17591. },
  17592. {
  17593. name: "Big Mistake",
  17594. height: math.unit(13, "miles")
  17595. },
  17596. {
  17597. name: "Playing God",
  17598. height: math.unit(2450, "miles")
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17604. {
  17605. front: {
  17606. height: math.unit(4, "feet"),
  17607. weight: math.unit(120, "lb"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/shiriko/front.svg",
  17611. extra: 970/934,
  17612. bottom: 5/975
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(4, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(6, "feet"),
  17629. name: "front",
  17630. image: {
  17631. source: "./media/characters/deja/front.svg",
  17632. extra: 926 / 840,
  17633. bottom: 0.07
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Planck Length",
  17640. height: math.unit(1.6e-35, "meters")
  17641. },
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(30.48, "meters"),
  17645. default: true
  17646. },
  17647. {
  17648. name: "Universal",
  17649. height: math.unit(8.8e26, "meters")
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17655. {
  17656. side: {
  17657. height: math.unit(8, "feet"),
  17658. weight: math.unit(6300, "lb"),
  17659. name: "Side",
  17660. image: {
  17661. source: "./media/characters/anima/side.svg",
  17662. bottom: 0.035
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(8, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(8, "feet"),
  17679. weight: math.unit(350, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/bianca/front.svg",
  17683. extra: 234 / 225,
  17684. bottom: 0.03
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(8, "feet"),
  17692. default: true
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17698. {
  17699. front: {
  17700. height: math.unit(6, "feet"),
  17701. weight: math.unit(150, "lb"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/adinia/front.svg",
  17705. extra: 1845 / 1672,
  17706. bottom: 0.02
  17707. }
  17708. },
  17709. back: {
  17710. height: math.unit(6, "feet"),
  17711. weight: math.unit(150, "lb"),
  17712. name: "Back",
  17713. image: {
  17714. source: "./media/characters/adinia/back.svg",
  17715. extra: 1845 / 1672,
  17716. bottom: 0.002
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(11 + 5 / 12, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(3, "meters"),
  17733. weight: math.unit(200, "kg"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/lykasa/front.svg",
  17737. extra: 1076 / 976,
  17738. bottom: 0.06
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(3, "meters")
  17746. },
  17747. {
  17748. name: "Kaiju",
  17749. height: math.unit(120, "meters"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Mega Kaiju",
  17754. height: math.unit(240, "km")
  17755. },
  17756. {
  17757. name: "Giga Kaiju",
  17758. height: math.unit(400, "megameters")
  17759. },
  17760. {
  17761. name: "Tera Kaiju",
  17762. height: math.unit(800, "gigameters")
  17763. },
  17764. {
  17765. name: "Kaiju Dragon Goddess",
  17766. height: math.unit(26, "zettaparsecs")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17772. {
  17773. side: {
  17774. height: math.unit(283 / 124 * 6, "feet"),
  17775. weight: math.unit(35000, "lb"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/malfaren/side.svg",
  17779. extra: 2500 / 1010,
  17780. bottom: 0.01
  17781. }
  17782. },
  17783. front: {
  17784. height: math.unit(22.36, "feet"),
  17785. weight: math.unit(35000, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/malfaren/front.svg",
  17789. extra: 1631 / 1476,
  17790. bottom: 0.01
  17791. }
  17792. },
  17793. maw: {
  17794. height: math.unit(6.9, "feet"),
  17795. name: "Maw",
  17796. image: {
  17797. source: "./media/characters/malfaren/maw.svg"
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Big",
  17804. height: math.unit(283 / 162 * 6, "feet"),
  17805. },
  17806. {
  17807. name: "Bigger",
  17808. height: math.unit(283 / 124 * 6, "feet")
  17809. },
  17810. {
  17811. name: "Massive",
  17812. height: math.unit(283 / 92 * 6, "feet"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "👀💦",
  17817. height: math.unit(283 / 73 * 6, "feet"),
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(1.7, "m"),
  17826. weight: math.unit(70, "kg"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/kernel/front.svg",
  17830. extra: 222 / 210,
  17831. bottom: 0.007
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Nano",
  17838. height: math.unit(17, "micrometers")
  17839. },
  17840. {
  17841. name: "Micro",
  17842. height: math.unit(1.7, "mm")
  17843. },
  17844. {
  17845. name: "Small",
  17846. height: math.unit(1.7, "cm")
  17847. },
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(1.7, "m"),
  17851. default: true
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(1.75, "meters"),
  17860. weight: math.unit(65, "kg"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/jayne-folest/front.svg",
  17864. extra: 2115 / 2007,
  17865. bottom: 0.02
  17866. }
  17867. },
  17868. back: {
  17869. height: math.unit(1.75, "meters"),
  17870. weight: math.unit(65, "kg"),
  17871. name: "Back",
  17872. image: {
  17873. source: "./media/characters/jayne-folest/back.svg",
  17874. extra: 2115 / 2007,
  17875. bottom: 0.005
  17876. }
  17877. },
  17878. frontClothed: {
  17879. height: math.unit(1.75, "meters"),
  17880. weight: math.unit(65, "kg"),
  17881. name: "Front (Clothed)",
  17882. image: {
  17883. source: "./media/characters/jayne-folest/front-clothed.svg",
  17884. extra: 2115 / 2007,
  17885. bottom: 0.035
  17886. }
  17887. },
  17888. hand: {
  17889. height: math.unit(1 / 1.260, "feet"),
  17890. name: "Hand",
  17891. image: {
  17892. source: "./media/characters/jayne-folest/hand.svg"
  17893. }
  17894. },
  17895. foot: {
  17896. height: math.unit(1 / 0.918, "feet"),
  17897. name: "Foot",
  17898. image: {
  17899. source: "./media/characters/jayne-folest/foot.svg"
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Micro",
  17906. height: math.unit(4, "cm")
  17907. },
  17908. {
  17909. name: "Normal",
  17910. height: math.unit(1.75, "meters")
  17911. },
  17912. {
  17913. name: "Macro",
  17914. height: math.unit(47.5, "meters"),
  17915. default: true
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17921. {
  17922. front: {
  17923. height: math.unit(180, "cm"),
  17924. weight: math.unit(70, "kg"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/algier/front.svg",
  17928. extra: 596 / 572,
  17929. bottom: 0.04
  17930. }
  17931. },
  17932. back: {
  17933. height: math.unit(180, "cm"),
  17934. weight: math.unit(70, "kg"),
  17935. name: "Back",
  17936. image: {
  17937. source: "./media/characters/algier/back.svg",
  17938. extra: 596 / 572,
  17939. bottom: 0.025
  17940. }
  17941. },
  17942. frontdressed: {
  17943. height: math.unit(180, "cm"),
  17944. weight: math.unit(150, "kg"),
  17945. name: "Front-dressed",
  17946. image: {
  17947. source: "./media/characters/algier/front-dressed.svg",
  17948. extra: 596 / 572,
  17949. bottom: 0.038
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Micro",
  17956. height: math.unit(5, "cm")
  17957. },
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(180, "cm"),
  17961. default: true
  17962. },
  17963. {
  17964. name: "Macro",
  17965. height: math.unit(64, "m")
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17971. {
  17972. upright: {
  17973. height: math.unit(7, "feet"),
  17974. weight: math.unit(300, "lb"),
  17975. name: "Upright",
  17976. image: {
  17977. source: "./media/characters/pretzel/upright.svg",
  17978. extra: 534 / 522,
  17979. bottom: 0.065
  17980. }
  17981. },
  17982. sprawling: {
  17983. height: math.unit(3.75, "feet"),
  17984. weight: math.unit(300, "lb"),
  17985. name: "Sprawling",
  17986. image: {
  17987. source: "./media/characters/pretzel/sprawling.svg",
  17988. extra: 314 / 281,
  17989. bottom: 0.1
  17990. }
  17991. },
  17992. tongue: {
  17993. height: math.unit(2, "feet"),
  17994. name: "Tongue",
  17995. image: {
  17996. source: "./media/characters/pretzel/tongue.svg"
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(7, "feet"),
  18004. default: true
  18005. },
  18006. {
  18007. name: "Oversized",
  18008. height: math.unit(15, "feet")
  18009. },
  18010. {
  18011. name: "Huge",
  18012. height: math.unit(30, "feet")
  18013. },
  18014. {
  18015. name: "Macro",
  18016. height: math.unit(250, "feet")
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18022. {
  18023. sideFront: {
  18024. height: math.unit(5 + 2 / 12, "feet"),
  18025. weight: math.unit(120, "lb"),
  18026. name: "Front Side",
  18027. image: {
  18028. source: "./media/characters/roxi/side-front.svg",
  18029. extra: 2924 / 2717,
  18030. bottom: 0.08
  18031. }
  18032. },
  18033. sideBack: {
  18034. height: math.unit(5 + 2 / 12, "feet"),
  18035. weight: math.unit(120, "lb"),
  18036. name: "Back Side",
  18037. image: {
  18038. source: "./media/characters/roxi/side-back.svg",
  18039. extra: 2904 / 2693,
  18040. bottom: 0.06
  18041. }
  18042. },
  18043. front: {
  18044. height: math.unit(5 + 2 / 12, "feet"),
  18045. weight: math.unit(120, "lb"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/roxi/front.svg",
  18049. extra: 2028 / 1907,
  18050. bottom: 0.01
  18051. }
  18052. },
  18053. frontAlt: {
  18054. height: math.unit(5 + 2 / 12, "feet"),
  18055. weight: math.unit(120, "lb"),
  18056. name: "Front (Alt)",
  18057. image: {
  18058. source: "./media/characters/roxi/front-alt.svg",
  18059. extra: 1828 / 1798,
  18060. bottom: 0.01
  18061. }
  18062. },
  18063. sitting: {
  18064. height: math.unit(2.8, "feet"),
  18065. weight: math.unit(120, "lb"),
  18066. name: "Sitting",
  18067. image: {
  18068. source: "./media/characters/roxi/sitting.svg",
  18069. extra: 2660 / 2462,
  18070. bottom: 0.1
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(5 + 2 / 12, "feet"),
  18078. default: true
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18084. {
  18085. side: {
  18086. height: math.unit(55, "feet"),
  18087. weight: math.unit(153, "tons"),
  18088. name: "Side",
  18089. image: {
  18090. source: "./media/characters/shadow/side.svg",
  18091. extra: 701 / 628,
  18092. bottom: 0.02
  18093. }
  18094. },
  18095. flying: {
  18096. height: math.unit(145, "feet"),
  18097. weight: math.unit(153, "tons"),
  18098. name: "Flying",
  18099. image: {
  18100. source: "./media/characters/shadow/flying.svg"
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Normal",
  18107. height: math.unit(55, "feet"),
  18108. default: true
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(6, "feet"),
  18117. weight: math.unit(200, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/marcie/front.svg",
  18121. extra: 960 / 876,
  18122. bottom: 58 / 1017.87
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Macro",
  18129. height: math.unit(1, "mile"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(7, "feet"),
  18139. weight: math.unit(200, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/kachina/front.svg",
  18143. extra: 1290.68 / 1119,
  18144. bottom: 36.5 / 1327.18
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(7, "feet"),
  18152. default: true
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18158. {
  18159. looking: {
  18160. height: math.unit(2, "meters"),
  18161. weight: math.unit(300, "kg"),
  18162. name: "Looking",
  18163. image: {
  18164. source: "./media/characters/kash/looking.svg",
  18165. extra: 474 / 344,
  18166. bottom: 0.03
  18167. }
  18168. },
  18169. side: {
  18170. height: math.unit(2, "meters"),
  18171. weight: math.unit(300, "kg"),
  18172. name: "Side",
  18173. image: {
  18174. source: "./media/characters/kash/side.svg",
  18175. extra: 302 / 251,
  18176. bottom: 0.03
  18177. }
  18178. },
  18179. front: {
  18180. height: math.unit(2, "meters"),
  18181. weight: math.unit(300, "kg"),
  18182. name: "Front",
  18183. image: {
  18184. source: "./media/characters/kash/front.svg",
  18185. extra: 495 / 360,
  18186. bottom: 0.015
  18187. }
  18188. },
  18189. },
  18190. [
  18191. {
  18192. name: "Normal",
  18193. height: math.unit(2, "meters"),
  18194. default: true
  18195. },
  18196. {
  18197. name: "Big",
  18198. height: math.unit(3, "meters")
  18199. },
  18200. {
  18201. name: "Large",
  18202. height: math.unit(5, "meters")
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18208. {
  18209. feeding: {
  18210. height: math.unit(6.7, "feet"),
  18211. weight: math.unit(350, "lb"),
  18212. name: "Feeding",
  18213. image: {
  18214. source: "./media/characters/lalim/feeding.svg",
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(6.7, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(9.5, "feet"),
  18231. weight: math.unit(600, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/de'vout/front.svg",
  18235. extra: 1443 / 1328,
  18236. bottom: 0.025
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(9.5, "feet"),
  18241. weight: math.unit(600, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/de'vout/back.svg",
  18245. extra: 1443 / 1328
  18246. }
  18247. },
  18248. frontDressed: {
  18249. height: math.unit(9.5, "feet"),
  18250. weight: math.unit(600, "lb"),
  18251. name: "Front (Dressed",
  18252. image: {
  18253. source: "./media/characters/de'vout/front-dressed.svg",
  18254. extra: 1443 / 1328,
  18255. bottom: 0.025
  18256. }
  18257. },
  18258. backDressed: {
  18259. height: math.unit(9.5, "feet"),
  18260. weight: math.unit(600, "lb"),
  18261. name: "Back (Dressed",
  18262. image: {
  18263. source: "./media/characters/de'vout/back-dressed.svg",
  18264. extra: 1443 / 1328
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(9.5, "feet"),
  18272. default: true
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(8, "feet"),
  18281. weight: math.unit(225, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/talana/front.svg",
  18285. extra: 1410 / 1300,
  18286. bottom: 0.015
  18287. }
  18288. },
  18289. frontDressed: {
  18290. height: math.unit(8, "feet"),
  18291. weight: math.unit(225, "lb"),
  18292. name: "Front (Dressed",
  18293. image: {
  18294. source: "./media/characters/talana/front-dressed.svg",
  18295. extra: 1410 / 1300,
  18296. bottom: 0.015
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(8, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18310. {
  18311. side: {
  18312. height: math.unit(7.2, "feet"),
  18313. weight: math.unit(150, "lb"),
  18314. name: "Side",
  18315. image: {
  18316. source: "./media/characters/xeauvok/side.svg",
  18317. extra: 1975 / 1523,
  18318. bottom: 0.07
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(7.2, "feet"),
  18326. default: true
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18332. {
  18333. side: {
  18334. height: math.unit(10, "feet"),
  18335. weight: math.unit(900, "kg"),
  18336. name: "Side",
  18337. image: {
  18338. source: "./media/characters/zara/side.svg",
  18339. extra: 504 / 498
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(10, "feet"),
  18347. default: true
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18353. {
  18354. side: {
  18355. height: math.unit(6, "feet"),
  18356. weight: math.unit(150, "lb"),
  18357. name: "Side",
  18358. image: {
  18359. source: "./media/characters/richard-dragon/side.svg",
  18360. extra: 845 / 340,
  18361. bottom: 0.017
  18362. }
  18363. },
  18364. maw: {
  18365. height: math.unit(2.97, "feet"),
  18366. name: "Maw",
  18367. image: {
  18368. source: "./media/characters/richard-dragon/maw.svg"
  18369. }
  18370. },
  18371. },
  18372. [
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(4, "feet"),
  18380. weight: math.unit(100, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/richard-smeargle/front.svg",
  18384. extra: 2952 / 2820,
  18385. bottom: 0.028
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Normal",
  18392. height: math.unit(4, "feet"),
  18393. default: true
  18394. },
  18395. {
  18396. name: "Dynamax",
  18397. height: math.unit(20, "meters")
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18403. {
  18404. front: {
  18405. height: math.unit(6, "feet"),
  18406. weight: math.unit(110, "lb"),
  18407. name: "Front",
  18408. image: {
  18409. source: "./media/characters/klay/front.svg",
  18410. extra: 962 / 883,
  18411. bottom: 0.04
  18412. }
  18413. },
  18414. back: {
  18415. height: math.unit(6, "feet"),
  18416. weight: math.unit(110, "lb"),
  18417. name: "Back",
  18418. image: {
  18419. source: "./media/characters/klay/back.svg",
  18420. extra: 962 / 883
  18421. }
  18422. },
  18423. beans: {
  18424. height: math.unit(1.15, "feet"),
  18425. name: "Beans",
  18426. image: {
  18427. source: "./media/characters/klay/beans.svg"
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Micro",
  18434. height: math.unit(6, "inches")
  18435. },
  18436. {
  18437. name: "Mini",
  18438. height: math.unit(3, "feet")
  18439. },
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(6, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Big",
  18447. height: math.unit(25, "feet")
  18448. },
  18449. {
  18450. name: "Macro",
  18451. height: math.unit(100, "feet")
  18452. },
  18453. {
  18454. name: "Megamacro",
  18455. height: math.unit(400, "feet")
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(6, "feet"),
  18464. weight: math.unit(160, "lb"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/marcus/front.svg",
  18468. extra: 734 / 676,
  18469. bottom: 0.03
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Little",
  18476. height: math.unit(6, "feet")
  18477. },
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(110, "feet"),
  18481. default: true
  18482. },
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(250, "feet")
  18486. },
  18487. {
  18488. name: "Megamacro",
  18489. height: math.unit(1000, "feet")
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18495. {
  18496. front: {
  18497. height: math.unit(7, "feet"),
  18498. weight: math.unit(275, "lb"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/claude-delroute/front.svg",
  18502. extra: 902/827,
  18503. bottom: 26/928
  18504. }
  18505. },
  18506. side: {
  18507. height: math.unit(7, "feet"),
  18508. weight: math.unit(275, "lb"),
  18509. name: "Side",
  18510. image: {
  18511. source: "./media/characters/claude-delroute/side.svg",
  18512. extra: 908/853,
  18513. bottom: 16/924
  18514. }
  18515. },
  18516. back: {
  18517. height: math.unit(7, "feet"),
  18518. weight: math.unit(275, "lb"),
  18519. name: "Back",
  18520. image: {
  18521. source: "./media/characters/claude-delroute/back.svg",
  18522. extra: 911/829,
  18523. bottom: 18/929
  18524. }
  18525. },
  18526. maw: {
  18527. height: math.unit(0.6407, "meters"),
  18528. name: "Maw",
  18529. image: {
  18530. source: "./media/characters/claude-delroute/maw.svg"
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(7, "feet"),
  18538. default: true
  18539. },
  18540. {
  18541. name: "Lorge",
  18542. height: math.unit(20, "feet")
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(8 + 4 / 12, "feet"),
  18551. weight: math.unit(600, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/dragonien/front.svg",
  18555. extra: 100 / 94,
  18556. bottom: 3.3 / 103.3445
  18557. }
  18558. },
  18559. back: {
  18560. height: math.unit(8 + 4 / 12, "feet"),
  18561. weight: math.unit(600, "lb"),
  18562. name: "Back",
  18563. image: {
  18564. source: "./media/characters/dragonien/back.svg",
  18565. extra: 776 / 746,
  18566. bottom: 6.4 / 782.0616
  18567. }
  18568. },
  18569. foot: {
  18570. height: math.unit(1.54, "feet"),
  18571. name: "Foot",
  18572. image: {
  18573. source: "./media/characters/dragonien/foot.svg",
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(8 + 4 / 12, "feet"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(200, "feet")
  18586. },
  18587. {
  18588. name: "Megamacro",
  18589. height: math.unit(1, "mile")
  18590. },
  18591. {
  18592. name: "Gigamacro",
  18593. height: math.unit(1000, "miles")
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(5 + 2 / 12, "feet"),
  18602. weight: math.unit(110, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/desta/front.svg",
  18606. extra: 767 / 726,
  18607. bottom: 11.7 / 779
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(5 + 2 / 12, "feet"),
  18612. weight: math.unit(110, "lb"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/desta/back.svg",
  18616. extra: 777 / 728,
  18617. bottom: 6 / 784
  18618. }
  18619. },
  18620. frontAlt: {
  18621. height: math.unit(5 + 2 / 12, "feet"),
  18622. weight: math.unit(110, "lb"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/desta/front-alt.svg",
  18626. extra: 1482 / 1417
  18627. }
  18628. },
  18629. side: {
  18630. height: math.unit(5 + 2 / 12, "feet"),
  18631. weight: math.unit(110, "lb"),
  18632. name: "Side",
  18633. image: {
  18634. source: "./media/characters/desta/side.svg",
  18635. extra: 2579 / 2491,
  18636. bottom: 0.053
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Micro",
  18643. height: math.unit(6, "inches")
  18644. },
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(5 + 2 / 12, "feet"),
  18648. default: true
  18649. },
  18650. {
  18651. name: "Macro",
  18652. height: math.unit(62, "feet")
  18653. },
  18654. {
  18655. name: "Megamacro",
  18656. height: math.unit(1800, "feet")
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(10, "feet"),
  18665. weight: math.unit(700, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/storm-alystar/front.svg",
  18669. extra: 2112 / 1898,
  18670. bottom: 0.034
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Micro",
  18677. height: math.unit(3.5, "inches")
  18678. },
  18679. {
  18680. name: "Normal",
  18681. height: math.unit(10, "feet"),
  18682. default: true
  18683. },
  18684. {
  18685. name: "Macro",
  18686. height: math.unit(400, "feet")
  18687. },
  18688. {
  18689. name: "Deific",
  18690. height: math.unit(60, "miles")
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(2.35, "meters"),
  18699. weight: math.unit(119, "kg"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/ilia/front.svg",
  18703. extra: 1285 / 1255,
  18704. bottom: 0.06
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Normal",
  18711. height: math.unit(2.35, "meters")
  18712. },
  18713. {
  18714. name: "Macro",
  18715. height: math.unit(140, "meters"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Megamacro",
  18720. height: math.unit(100, "miles")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(6 + 5 / 12, "feet"),
  18729. weight: math.unit(190, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/kingdead/front.svg",
  18733. extra: 1228 / 1177
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Micro",
  18740. height: math.unit(7, "inches")
  18741. },
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(6 + 5 / 12, "feet")
  18745. },
  18746. {
  18747. name: "Macro",
  18748. height: math.unit(150, "feet"),
  18749. default: true
  18750. },
  18751. {
  18752. name: "Megamacro",
  18753. height: math.unit(200, "miles")
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18759. {
  18760. front: {
  18761. height: math.unit(8, "feet"),
  18762. weight: math.unit(600, "lb"),
  18763. name: "Front",
  18764. image: {
  18765. source: "./media/characters/kyrehx/front.svg",
  18766. extra: 1195 / 1095,
  18767. bottom: 0.034
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Micro",
  18774. height: math.unit(2, "inches")
  18775. },
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(8, "feet"),
  18779. default: true
  18780. },
  18781. {
  18782. name: "Macro",
  18783. height: math.unit(255, "feet")
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18792. weight: math.unit(184, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/xang/front.svg",
  18796. extra: 845 / 755
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Macro",
  18808. height: math.unit(0.935 * 146, "feet")
  18809. },
  18810. {
  18811. name: "Megamacro",
  18812. height: math.unit(0.935 * 3, "miles")
  18813. },
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18818. {
  18819. frontDressed: {
  18820. height: math.unit(5 + 7 / 12, "feet"),
  18821. weight: math.unit(140, "lb"),
  18822. name: "Front (Dressed)",
  18823. image: {
  18824. source: "./media/characters/doc-weardno/front-dressed.svg",
  18825. extra: 263 / 234
  18826. }
  18827. },
  18828. backDressed: {
  18829. height: math.unit(5 + 7 / 12, "feet"),
  18830. weight: math.unit(140, "lb"),
  18831. name: "Back (Dressed)",
  18832. image: {
  18833. source: "./media/characters/doc-weardno/back-dressed.svg",
  18834. extra: 266 / 238
  18835. }
  18836. },
  18837. front: {
  18838. height: math.unit(5 + 7 / 12, "feet"),
  18839. weight: math.unit(140, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/doc-weardno/front.svg",
  18843. extra: 254 / 233
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Micro",
  18850. height: math.unit(3, "inches")
  18851. },
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(5 + 7 / 12, "feet"),
  18855. default: true
  18856. },
  18857. {
  18858. name: "Macro",
  18859. height: math.unit(25, "feet")
  18860. },
  18861. {
  18862. name: "Megamacro",
  18863. height: math.unit(2, "miles")
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(6 + 2 / 12, "feet"),
  18872. weight: math.unit(153, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/seth-whilst/front.svg",
  18876. bottom: 0.07
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Micro",
  18883. height: math.unit(5, "inches")
  18884. },
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(6 + 2 / 12, "feet"),
  18888. default: true
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(3, "inches"),
  18897. weight: math.unit(8, "grams"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/pocket-jabari/front.svg",
  18901. extra: 1024 / 974,
  18902. bottom: 0.039
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Minimicro",
  18909. height: math.unit(8, "mm")
  18910. },
  18911. {
  18912. name: "Micro",
  18913. height: math.unit(3, "inches"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Normal",
  18918. height: math.unit(3, "feet")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(15, "feet"),
  18927. weight: math.unit(3280, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/sapphy/front.svg",
  18931. extra: 671 / 577,
  18932. bottom: 0.085
  18933. }
  18934. },
  18935. back: {
  18936. height: math.unit(15, "feet"),
  18937. weight: math.unit(3280, "lb"),
  18938. name: "Back",
  18939. image: {
  18940. source: "./media/characters/sapphy/back.svg",
  18941. extra: 631 / 607,
  18942. bottom: 0.045
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(15, "feet")
  18950. },
  18951. {
  18952. name: "Casual Macro",
  18953. height: math.unit(120, "feet")
  18954. },
  18955. {
  18956. name: "Macro",
  18957. height: math.unit(2150, "feet"),
  18958. default: true
  18959. },
  18960. {
  18961. name: "Megamacro",
  18962. height: math.unit(8, "miles")
  18963. },
  18964. {
  18965. name: "Galaxy Mom",
  18966. height: math.unit(6, "megalightyears")
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(6, "feet"),
  18975. weight: math.unit(170, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/kiro/front.svg",
  18979. extra: 1064 / 1012,
  18980. bottom: 0.052
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Micro",
  18987. height: math.unit(6, "inches")
  18988. },
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(6, "feet"),
  18992. default: true
  18993. },
  18994. {
  18995. name: "Macro",
  18996. height: math.unit(72, "feet")
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(5 + 9 / 12, "feet"),
  19005. weight: math.unit(175, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/irishfox/front.svg",
  19009. extra: 1912 / 1680,
  19010. bottom: 0.02
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Nano",
  19017. height: math.unit(1, "mm")
  19018. },
  19019. {
  19020. name: "Micro",
  19021. height: math.unit(2, "inches")
  19022. },
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(5 + 9 / 12, "feet"),
  19026. default: true
  19027. },
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(45, "feet")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(6 + 1 / 12, "feet"),
  19039. weight: math.unit(75, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/aronai-sieyes/front.svg",
  19043. extra: 1532/1450,
  19044. bottom: 42/1574
  19045. }
  19046. },
  19047. side: {
  19048. height: math.unit(6 + 1 / 12, "feet"),
  19049. weight: math.unit(75, "lb"),
  19050. name: "Side",
  19051. image: {
  19052. source: "./media/characters/aronai-sieyes/side.svg",
  19053. extra: 1422/1365,
  19054. bottom: 148/1570
  19055. }
  19056. },
  19057. back: {
  19058. height: math.unit(6 + 1 / 12, "feet"),
  19059. weight: math.unit(75, "lb"),
  19060. name: "Back",
  19061. image: {
  19062. source: "./media/characters/aronai-sieyes/back.svg",
  19063. extra: 1526/1464,
  19064. bottom: 51/1577
  19065. }
  19066. },
  19067. dressed: {
  19068. height: math.unit(6 + 1 / 12, "feet"),
  19069. weight: math.unit(75, "lb"),
  19070. name: "Dressed",
  19071. image: {
  19072. source: "./media/characters/aronai-sieyes/dressed.svg",
  19073. extra: 1559/1483,
  19074. bottom: 39/1598
  19075. }
  19076. },
  19077. slit: {
  19078. height: math.unit(1.3, "feet"),
  19079. name: "Slit",
  19080. image: {
  19081. source: "./media/characters/aronai-sieyes/slit.svg"
  19082. }
  19083. },
  19084. slitSpread: {
  19085. height: math.unit(0.9, "feet"),
  19086. name: "Slit (Spread)",
  19087. image: {
  19088. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19089. }
  19090. },
  19091. rump: {
  19092. height: math.unit(1.3, "feet"),
  19093. name: "Rump",
  19094. image: {
  19095. source: "./media/characters/aronai-sieyes/rump.svg"
  19096. }
  19097. },
  19098. maw: {
  19099. height: math.unit(1.25, "feet"),
  19100. name: "Maw",
  19101. image: {
  19102. source: "./media/characters/aronai-sieyes/maw.svg"
  19103. }
  19104. },
  19105. feral: {
  19106. height: math.unit(18, "feet"),
  19107. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19108. name: "Feral",
  19109. image: {
  19110. source: "./media/characters/aronai-sieyes/feral.svg",
  19111. extra: 1530 / 1240,
  19112. bottom: 0.035
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Micro",
  19119. height: math.unit(2, "inches")
  19120. },
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(6 + 1 / 12, "feet"),
  19124. default: true
  19125. }
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(12, "feet"),
  19133. weight: math.unit(410, "kg"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/xuna/front.svg",
  19137. extra: 2184 / 1980
  19138. }
  19139. },
  19140. side: {
  19141. height: math.unit(12, "feet"),
  19142. weight: math.unit(410, "kg"),
  19143. name: "Side",
  19144. image: {
  19145. source: "./media/characters/xuna/side.svg",
  19146. extra: 2184 / 1980
  19147. }
  19148. },
  19149. back: {
  19150. height: math.unit(12, "feet"),
  19151. weight: math.unit(410, "kg"),
  19152. name: "Back",
  19153. image: {
  19154. source: "./media/characters/xuna/back.svg",
  19155. extra: 2184 / 1980
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Nano glow",
  19162. height: math.unit(10, "nm")
  19163. },
  19164. {
  19165. name: "Micro floof",
  19166. height: math.unit(0.3, "m")
  19167. },
  19168. {
  19169. name: "Huggable softy boi",
  19170. height: math.unit(3.6576, "m"),
  19171. default: true
  19172. },
  19173. {
  19174. name: "Admirable floof",
  19175. height: math.unit(80, "meters")
  19176. },
  19177. {
  19178. name: "Gentle macro",
  19179. height: math.unit(300, "meters")
  19180. },
  19181. {
  19182. name: "Very careful floof",
  19183. height: math.unit(3200, "meters")
  19184. },
  19185. {
  19186. name: "The mega floof",
  19187. height: math.unit(36000, "meters")
  19188. },
  19189. {
  19190. name: "Giga-fur-Wicker",
  19191. height: math.unit(4800000, "meters")
  19192. },
  19193. {
  19194. name: "Licky world",
  19195. height: math.unit(20000000, "meters")
  19196. },
  19197. {
  19198. name: "Floofy cyan sun",
  19199. height: math.unit(1500000000, "meters")
  19200. },
  19201. {
  19202. name: "Milky Wicker",
  19203. height: math.unit(1000000000000000000000, "meters")
  19204. },
  19205. {
  19206. name: "The observing Wicker",
  19207. height: math.unit(999999999999999999999999999, "meters")
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(5 + 9 / 12, "feet"),
  19216. weight: math.unit(150, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/arokha-sieyes/front.svg",
  19220. extra: 1425 / 1284,
  19221. bottom: 0.05
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(5 + 9 / 12, "feet")
  19229. },
  19230. {
  19231. name: "Macro",
  19232. height: math.unit(30, "meters"),
  19233. default: true
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19239. {
  19240. front: {
  19241. height: math.unit(6, "feet"),
  19242. weight: math.unit(180, "lb"),
  19243. name: "Front",
  19244. image: {
  19245. source: "./media/characters/arokh-sieyes/front.svg",
  19246. extra: 1830 / 1769,
  19247. bottom: 0.01
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Normal",
  19254. height: math.unit(6, "feet")
  19255. },
  19256. {
  19257. name: "Macro",
  19258. height: math.unit(30, "meters"),
  19259. default: true
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19265. {
  19266. side: {
  19267. height: math.unit(13 + 1 / 12, "feet"),
  19268. weight: math.unit(8.5, "tonnes"),
  19269. name: "Side",
  19270. image: {
  19271. source: "./media/characters/goldeneye/side.svg",
  19272. extra: 1182 / 778,
  19273. bottom: 0.067
  19274. }
  19275. },
  19276. paw: {
  19277. height: math.unit(3.4, "feet"),
  19278. name: "Paw",
  19279. image: {
  19280. source: "./media/characters/goldeneye/paw.svg"
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(13 + 1 / 12, "feet"),
  19288. default: true
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19294. {
  19295. front: {
  19296. height: math.unit(6 + 1 / 12, "feet"),
  19297. weight: math.unit(210, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/leonardo-lycheborne/front.svg",
  19301. extra: 776/723,
  19302. bottom: 34/810
  19303. }
  19304. },
  19305. side: {
  19306. height: math.unit(6 + 1 / 12, "feet"),
  19307. weight: math.unit(210, "lb"),
  19308. name: "Side",
  19309. image: {
  19310. source: "./media/characters/leonardo-lycheborne/side.svg",
  19311. extra: 780/728,
  19312. bottom: 12/792
  19313. }
  19314. },
  19315. back: {
  19316. height: math.unit(6 + 1 / 12, "feet"),
  19317. weight: math.unit(210, "lb"),
  19318. name: "Back",
  19319. image: {
  19320. source: "./media/characters/leonardo-lycheborne/back.svg",
  19321. extra: 775/721,
  19322. bottom: 17/792
  19323. }
  19324. },
  19325. hand: {
  19326. height: math.unit(1.08, "feet"),
  19327. name: "Hand",
  19328. image: {
  19329. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19330. }
  19331. },
  19332. foot: {
  19333. height: math.unit(1.32, "feet"),
  19334. name: "Foot",
  19335. image: {
  19336. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19337. }
  19338. },
  19339. maw: {
  19340. height: math.unit(1, "feet"),
  19341. name: "Maw",
  19342. image: {
  19343. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19344. }
  19345. },
  19346. were: {
  19347. height: math.unit(20, "feet"),
  19348. weight: math.unit(7800, "lb"),
  19349. name: "Were",
  19350. image: {
  19351. source: "./media/characters/leonardo-lycheborne/were.svg",
  19352. extra: 1224/1165,
  19353. bottom: 72/1296
  19354. }
  19355. },
  19356. feral: {
  19357. height: math.unit(7.5, "feet"),
  19358. weight: math.unit(600, "lb"),
  19359. name: "Feral",
  19360. image: {
  19361. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19362. extra: 797/702,
  19363. bottom: 139/936
  19364. }
  19365. },
  19366. taur: {
  19367. height: math.unit(11, "feet"),
  19368. weight: math.unit(3300, "lb"),
  19369. name: "Taur",
  19370. image: {
  19371. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19372. extra: 1271/1197,
  19373. bottom: 47/1318
  19374. }
  19375. },
  19376. barghest: {
  19377. height: math.unit(11, "feet"),
  19378. weight: math.unit(1300, "lb"),
  19379. name: "Barghest",
  19380. image: {
  19381. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19382. extra: 1291/1204,
  19383. bottom: 37/1328
  19384. }
  19385. },
  19386. dick: {
  19387. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19388. name: "Dick",
  19389. image: {
  19390. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19391. }
  19392. },
  19393. dickWere: {
  19394. height: math.unit((20) / 3.8, "feet"),
  19395. name: "Dick (Were)",
  19396. image: {
  19397. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(6 + 1 / 12, "feet"),
  19405. default: true
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(10, "feet"),
  19414. weight: math.unit(350, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/jet/front.svg",
  19418. extra: 2050 / 1980,
  19419. bottom: 0.013
  19420. }
  19421. },
  19422. back: {
  19423. height: math.unit(10, "feet"),
  19424. weight: math.unit(350, "lb"),
  19425. name: "Back",
  19426. image: {
  19427. source: "./media/characters/jet/back.svg",
  19428. extra: 2050 / 1980,
  19429. bottom: 0.013
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Micro",
  19436. height: math.unit(6, "inches")
  19437. },
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(10, "feet"),
  19441. default: true
  19442. },
  19443. {
  19444. name: "Macro",
  19445. height: math.unit(100, "feet")
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(15, "feet"),
  19454. weight: math.unit(2800, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/tanarath/front.svg",
  19458. extra: 2392 / 2220,
  19459. bottom: 0.03
  19460. }
  19461. },
  19462. back: {
  19463. height: math.unit(15, "feet"),
  19464. weight: math.unit(2800, "lb"),
  19465. name: "Back",
  19466. image: {
  19467. source: "./media/characters/tanarath/back.svg",
  19468. extra: 2392 / 2220,
  19469. bottom: 0.03
  19470. }
  19471. },
  19472. },
  19473. [
  19474. {
  19475. name: "Normal",
  19476. height: math.unit(15, "feet"),
  19477. default: true
  19478. },
  19479. ]
  19480. ))
  19481. characterMakers.push(() => makeCharacter(
  19482. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19483. {
  19484. front: {
  19485. height: math.unit(7 + 1 / 12, "feet"),
  19486. weight: math.unit(175, "lb"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/patty-cattybatty/front.svg",
  19490. extra: 908 / 874,
  19491. bottom: 0.025
  19492. }
  19493. },
  19494. },
  19495. [
  19496. {
  19497. name: "Micro",
  19498. height: math.unit(1, "inch")
  19499. },
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(7 + 1 / 12, "feet")
  19503. },
  19504. {
  19505. name: "Mini Macro",
  19506. height: math.unit(155, "feet")
  19507. },
  19508. {
  19509. name: "Macro",
  19510. height: math.unit(1077, "feet")
  19511. },
  19512. {
  19513. name: "Mega Macro",
  19514. height: math.unit(47650, "feet"),
  19515. default: true
  19516. },
  19517. {
  19518. name: "Giga Macro",
  19519. height: math.unit(440, "miles")
  19520. },
  19521. {
  19522. name: "Tera Macro",
  19523. height: math.unit(8700, "miles")
  19524. },
  19525. {
  19526. name: "Planetary Macro",
  19527. height: math.unit(32700, "miles")
  19528. },
  19529. {
  19530. name: "Solar Macro",
  19531. height: math.unit(550000, "miles")
  19532. },
  19533. {
  19534. name: "Celestial Macro",
  19535. height: math.unit(2.5, "AU")
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19541. {
  19542. front: {
  19543. height: math.unit(4 + 5 / 12, "feet"),
  19544. weight: math.unit(90, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/cappu/front.svg",
  19548. extra: 1247 / 1152,
  19549. bottom: 0.012
  19550. }
  19551. },
  19552. },
  19553. [
  19554. {
  19555. name: "Normal",
  19556. height: math.unit(4 + 5 / 12, "feet"),
  19557. default: true
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19563. {
  19564. frontDressed: {
  19565. height: math.unit(70, "cm"),
  19566. weight: math.unit(6, "kg"),
  19567. name: "Front (Dressed)",
  19568. image: {
  19569. source: "./media/characters/sebi/front-dressed.svg",
  19570. extra: 713.5 / 686.5,
  19571. bottom: 0.003
  19572. }
  19573. },
  19574. front: {
  19575. height: math.unit(70, "cm"),
  19576. weight: math.unit(5, "kg"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/sebi/front.svg",
  19580. extra: 713.5 / 686.5,
  19581. bottom: 0.003
  19582. }
  19583. }
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(70, "cm"),
  19589. default: true
  19590. },
  19591. {
  19592. name: "Macro",
  19593. height: math.unit(8, "meters")
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(6, "feet"),
  19602. weight: math.unit(150, "lb"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/typhek/front.svg",
  19606. extra: 1948 / 1929,
  19607. bottom: 0.025
  19608. }
  19609. },
  19610. side: {
  19611. height: math.unit(6, "feet"),
  19612. weight: math.unit(150, "lb"),
  19613. name: "Side",
  19614. image: {
  19615. source: "./media/characters/typhek/side.svg",
  19616. extra: 2034 / 2010,
  19617. bottom: 0.003
  19618. }
  19619. },
  19620. back: {
  19621. height: math.unit(6, "feet"),
  19622. weight: math.unit(150, "lb"),
  19623. name: "Back",
  19624. image: {
  19625. source: "./media/characters/typhek/back.svg",
  19626. extra: 2005 / 1978,
  19627. bottom: 0.004
  19628. }
  19629. },
  19630. palm: {
  19631. height: math.unit(1.2, "feet"),
  19632. name: "Palm",
  19633. image: {
  19634. source: "./media/characters/typhek/palm.svg"
  19635. }
  19636. },
  19637. fist: {
  19638. height: math.unit(1.1, "feet"),
  19639. name: "Fist",
  19640. image: {
  19641. source: "./media/characters/typhek/fist.svg"
  19642. }
  19643. },
  19644. foot: {
  19645. height: math.unit(1.57, "feet"),
  19646. name: "Foot",
  19647. image: {
  19648. source: "./media/characters/typhek/foot.svg"
  19649. }
  19650. },
  19651. sole: {
  19652. height: math.unit(2.05, "feet"),
  19653. name: "Sole",
  19654. image: {
  19655. source: "./media/characters/typhek/sole.svg"
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Macro",
  19662. height: math.unit(40, "stories"),
  19663. default: true
  19664. },
  19665. {
  19666. name: "Megamacro",
  19667. height: math.unit(1, "mile")
  19668. },
  19669. {
  19670. name: "Gigamacro",
  19671. height: math.unit(4000, "solarradii")
  19672. },
  19673. {
  19674. name: "Universal",
  19675. height: math.unit(1.1, "universes")
  19676. }
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19681. {
  19682. side: {
  19683. height: math.unit(5 + 7 / 12, "feet"),
  19684. weight: math.unit(150, "lb"),
  19685. name: "Side",
  19686. image: {
  19687. source: "./media/characters/kassy/side.svg",
  19688. extra: 1280 / 1225,
  19689. bottom: 0.002
  19690. }
  19691. },
  19692. front: {
  19693. height: math.unit(5 + 7 / 12, "feet"),
  19694. weight: math.unit(150, "lb"),
  19695. name: "Front",
  19696. image: {
  19697. source: "./media/characters/kassy/front.svg",
  19698. extra: 1280 / 1225,
  19699. bottom: 0.025
  19700. }
  19701. },
  19702. back: {
  19703. height: math.unit(5 + 7 / 12, "feet"),
  19704. weight: math.unit(150, "lb"),
  19705. name: "Back",
  19706. image: {
  19707. source: "./media/characters/kassy/back.svg",
  19708. extra: 1280 / 1225,
  19709. bottom: 0.002
  19710. }
  19711. },
  19712. foot: {
  19713. height: math.unit(1.266, "feet"),
  19714. name: "Foot",
  19715. image: {
  19716. source: "./media/characters/kassy/foot.svg"
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(5 + 7 / 12, "feet")
  19724. },
  19725. {
  19726. name: "Macro",
  19727. height: math.unit(137, "feet"),
  19728. default: true
  19729. },
  19730. {
  19731. name: "Megamacro",
  19732. height: math.unit(1, "mile")
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(6 + 1 / 12, "feet"),
  19741. weight: math.unit(200, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/neil/front.svg",
  19745. extra: 1326 / 1250,
  19746. bottom: 0.023
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(6 + 1 / 12, "feet"),
  19754. default: true
  19755. },
  19756. {
  19757. name: "Macro",
  19758. height: math.unit(200, "feet")
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(5 + 9 / 12, "feet"),
  19767. weight: math.unit(190, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/atticus/front.svg",
  19771. extra: 2934 / 2785,
  19772. bottom: 0.025
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(5 + 9 / 12, "feet"),
  19780. default: true
  19781. },
  19782. {
  19783. name: "Macro",
  19784. height: math.unit(180, "feet")
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19790. {
  19791. side: {
  19792. height: math.unit(9, "feet"),
  19793. weight: math.unit(650, "lb"),
  19794. name: "Side",
  19795. image: {
  19796. source: "./media/characters/milo/side.svg",
  19797. extra: 2644 / 2310,
  19798. bottom: 0.032
  19799. }
  19800. },
  19801. },
  19802. [
  19803. {
  19804. name: "Normal",
  19805. height: math.unit(9, "feet"),
  19806. default: true
  19807. },
  19808. {
  19809. name: "Macro",
  19810. height: math.unit(300, "feet")
  19811. },
  19812. ]
  19813. ))
  19814. characterMakers.push(() => makeCharacter(
  19815. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19816. {
  19817. side: {
  19818. height: math.unit(8, "meters"),
  19819. weight: math.unit(90000, "kg"),
  19820. name: "Side",
  19821. image: {
  19822. source: "./media/characters/ijzer/side.svg",
  19823. extra: 2756 / 1600,
  19824. bottom: 0.01
  19825. }
  19826. },
  19827. },
  19828. [
  19829. {
  19830. name: "Small",
  19831. height: math.unit(3, "meters")
  19832. },
  19833. {
  19834. name: "Normal",
  19835. height: math.unit(8, "meters"),
  19836. default: true
  19837. },
  19838. {
  19839. name: "Normal+",
  19840. height: math.unit(10, "meters")
  19841. },
  19842. {
  19843. name: "Bigger",
  19844. height: math.unit(24, "meters")
  19845. },
  19846. {
  19847. name: "Huge",
  19848. height: math.unit(80, "meters")
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19854. {
  19855. front: {
  19856. height: math.unit(6 + 2 / 12, "feet"),
  19857. weight: math.unit(153, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/luca-cervicum/front.svg",
  19861. extra: 370 / 327,
  19862. bottom: 0.015
  19863. }
  19864. },
  19865. back: {
  19866. height: math.unit(6 + 2 / 12, "feet"),
  19867. weight: math.unit(153, "lb"),
  19868. name: "Back",
  19869. image: {
  19870. source: "./media/characters/luca-cervicum/back.svg",
  19871. extra: 367 / 333,
  19872. bottom: 0.005
  19873. }
  19874. },
  19875. frontGear: {
  19876. height: math.unit(6 + 2 / 12, "feet"),
  19877. weight: math.unit(173, "lb"),
  19878. name: "Front (Gear)",
  19879. image: {
  19880. source: "./media/characters/luca-cervicum/front-gear.svg",
  19881. extra: 377 / 333,
  19882. bottom: 0.006
  19883. }
  19884. },
  19885. },
  19886. [
  19887. {
  19888. name: "Normal",
  19889. height: math.unit(6 + 2 / 12, "feet"),
  19890. default: true
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19896. {
  19897. front: {
  19898. height: math.unit(6 + 1 / 12, "feet"),
  19899. weight: math.unit(304, "lb"),
  19900. name: "Front",
  19901. image: {
  19902. source: "./media/characters/oliver/front.svg",
  19903. extra: 157 / 143,
  19904. bottom: 0.08
  19905. }
  19906. },
  19907. },
  19908. [
  19909. {
  19910. name: "Normal",
  19911. height: math.unit(6 + 1 / 12, "feet"),
  19912. default: true
  19913. },
  19914. ]
  19915. ))
  19916. characterMakers.push(() => makeCharacter(
  19917. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19918. {
  19919. front: {
  19920. height: math.unit(5 + 7 / 12, "feet"),
  19921. weight: math.unit(140, "lb"),
  19922. name: "Front",
  19923. image: {
  19924. source: "./media/characters/shane/front.svg",
  19925. extra: 304 / 289,
  19926. bottom: 0.005
  19927. }
  19928. },
  19929. },
  19930. [
  19931. {
  19932. name: "Normal",
  19933. height: math.unit(5 + 7 / 12, "feet"),
  19934. default: true
  19935. },
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19940. {
  19941. front: {
  19942. height: math.unit(5 + 9 / 12, "feet"),
  19943. weight: math.unit(178, "lb"),
  19944. name: "Front",
  19945. image: {
  19946. source: "./media/characters/shin/front.svg",
  19947. extra: 159 / 151,
  19948. bottom: 0.015
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(5 + 9 / 12, "feet"),
  19956. default: true
  19957. },
  19958. ]
  19959. ))
  19960. characterMakers.push(() => makeCharacter(
  19961. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19962. {
  19963. front: {
  19964. height: math.unit(5 + 10 / 12, "feet"),
  19965. weight: math.unit(168, "lb"),
  19966. name: "Front",
  19967. image: {
  19968. source: "./media/characters/xerxes/front.svg",
  19969. extra: 282 / 260,
  19970. bottom: 0.045
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(5 + 10 / 12, "feet"),
  19978. default: true
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(6 + 7 / 12, "feet"),
  19987. weight: math.unit(208, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/chaska/front.svg",
  19991. extra: 332 / 319,
  19992. bottom: 0.015
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(6 + 7 / 12, "feet"),
  20000. default: true
  20001. },
  20002. ]
  20003. ))
  20004. characterMakers.push(() => makeCharacter(
  20005. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20006. {
  20007. front: {
  20008. height: math.unit(5 + 8 / 12, "feet"),
  20009. weight: math.unit(208, "lb"),
  20010. name: "Front",
  20011. image: {
  20012. source: "./media/characters/enuk/front.svg",
  20013. extra: 437 / 406,
  20014. bottom: 0.02
  20015. }
  20016. },
  20017. },
  20018. [
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(5 + 8 / 12, "feet"),
  20022. default: true
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20028. {
  20029. front: {
  20030. height: math.unit(5 + 10 / 12, "feet"),
  20031. weight: math.unit(252, "lb"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/bruun/front.svg",
  20035. extra: 197 / 187,
  20036. bottom: 0.012
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(5 + 10 / 12, "feet"),
  20044. default: true
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(6 + 10 / 12, "feet"),
  20053. weight: math.unit(255, "lb"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/alexeev/front.svg",
  20057. extra: 213 / 200,
  20058. bottom: 0.05
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(6 + 10 / 12, "feet"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20072. {
  20073. front: {
  20074. height: math.unit(2 + 8 / 12, "feet"),
  20075. weight: math.unit(22, "lb"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/evelyn/front.svg",
  20079. extra: 208 / 180
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(2 + 8 / 12, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(5 + 9 / 12, "feet"),
  20096. weight: math.unit(139, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/inca/front.svg",
  20100. extra: 294 / 291,
  20101. bottom: 0.03
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(5 + 9 / 12, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(6 + 3 / 12, "feet"),
  20118. weight: math.unit(185, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/mera/front.svg",
  20122. extra: 291 / 277,
  20123. bottom: 0.03
  20124. }
  20125. },
  20126. },
  20127. [
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(6 + 3 / 12, "feet"),
  20131. default: true
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20137. {
  20138. front: {
  20139. height: math.unit(6 + 7 / 12, "feet"),
  20140. weight: math.unit(160, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/ceres/front.svg",
  20144. extra: 1023 / 950,
  20145. bottom: 0.027
  20146. }
  20147. },
  20148. back: {
  20149. height: math.unit(6 + 7 / 12, "feet"),
  20150. weight: math.unit(160, "lb"),
  20151. name: "Back",
  20152. image: {
  20153. source: "./media/characters/ceres/back.svg",
  20154. extra: 1023 / 950
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(6 + 7 / 12, "feet"),
  20162. default: true
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(5 + 10 / 12, "feet"),
  20171. weight: math.unit(150, "lb"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/kris/front.svg",
  20175. extra: 885 / 803,
  20176. bottom: 0.03
  20177. }
  20178. },
  20179. },
  20180. [
  20181. {
  20182. name: "Normal",
  20183. height: math.unit(5 + 10 / 12, "feet"),
  20184. default: true
  20185. },
  20186. ]
  20187. ))
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20190. {
  20191. front: {
  20192. height: math.unit(7, "feet"),
  20193. weight: math.unit(120, "kg"),
  20194. name: "Front",
  20195. image: {
  20196. source: "./media/characters/taluthus/front.svg",
  20197. extra: 903 / 833,
  20198. bottom: 0.015
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Normal",
  20205. height: math.unit(7, "feet"),
  20206. default: true
  20207. },
  20208. {
  20209. name: "Macro",
  20210. height: math.unit(300, "feet")
  20211. },
  20212. ]
  20213. ))
  20214. characterMakers.push(() => makeCharacter(
  20215. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20216. {
  20217. front: {
  20218. height: math.unit(5 + 9 / 12, "feet"),
  20219. weight: math.unit(145, "lb"),
  20220. name: "Front",
  20221. image: {
  20222. source: "./media/characters/dawn/front.svg",
  20223. extra: 2094 / 2016,
  20224. bottom: 0.025
  20225. }
  20226. },
  20227. back: {
  20228. height: math.unit(5 + 9 / 12, "feet"),
  20229. weight: math.unit(160, "lb"),
  20230. name: "Back",
  20231. image: {
  20232. source: "./media/characters/dawn/back.svg",
  20233. extra: 2112 / 2080,
  20234. bottom: 0.005
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(6 + 7 / 12, "feet"),
  20242. default: true
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20248. {
  20249. anthro: {
  20250. height: math.unit(8 + 3 / 12, "feet"),
  20251. weight: math.unit(450, "lb"),
  20252. name: "Anthro",
  20253. image: {
  20254. source: "./media/characters/arador/anthro.svg",
  20255. extra: 1835 / 1718,
  20256. bottom: 0.025
  20257. }
  20258. },
  20259. feral: {
  20260. height: math.unit(4, "feet"),
  20261. weight: math.unit(200, "lb"),
  20262. name: "Feral",
  20263. image: {
  20264. source: "./media/characters/arador/feral.svg",
  20265. extra: 1683 / 1514,
  20266. bottom: 0.07
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(8 + 3 / 12, "feet")
  20274. },
  20275. {
  20276. name: "Macro",
  20277. height: math.unit(82.5, "feet"),
  20278. default: true
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(5 + 10 / 12, "feet"),
  20287. weight: math.unit(125, "lb"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/dharsi/front.svg",
  20291. extra: 716 / 630,
  20292. bottom: 0.035
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Nano",
  20299. height: math.unit(100, "nm")
  20300. },
  20301. {
  20302. name: "Micro",
  20303. height: math.unit(2, "inches")
  20304. },
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(5 + 10 / 12, "feet"),
  20308. default: true
  20309. },
  20310. {
  20311. name: "Macro",
  20312. height: math.unit(1000, "feet")
  20313. },
  20314. {
  20315. name: "Megamacro",
  20316. height: math.unit(10, "miles")
  20317. },
  20318. {
  20319. name: "Gigamacro",
  20320. height: math.unit(3000, "miles")
  20321. },
  20322. {
  20323. name: "Teramacro",
  20324. height: math.unit(500000, "miles")
  20325. },
  20326. {
  20327. name: "Teramacro+",
  20328. height: math.unit(30, "galaxies")
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20334. {
  20335. front: {
  20336. height: math.unit(6, "feet"),
  20337. weight: math.unit(150, "lb"),
  20338. name: "Front",
  20339. image: {
  20340. source: "./media/characters/deathy/front.svg",
  20341. extra: 1552 / 1463,
  20342. bottom: 0.025
  20343. }
  20344. },
  20345. side: {
  20346. height: math.unit(6, "feet"),
  20347. weight: math.unit(150, "lb"),
  20348. name: "Side",
  20349. image: {
  20350. source: "./media/characters/deathy/side.svg",
  20351. extra: 1604 / 1455,
  20352. bottom: 0.025
  20353. }
  20354. },
  20355. back: {
  20356. height: math.unit(6, "feet"),
  20357. weight: math.unit(150, "lb"),
  20358. name: "Back",
  20359. image: {
  20360. source: "./media/characters/deathy/back.svg",
  20361. extra: 1580 / 1463,
  20362. bottom: 0.005
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Micro",
  20369. height: math.unit(5, "millimeters")
  20370. },
  20371. {
  20372. name: "Normal",
  20373. height: math.unit(6 + 5 / 12, "feet"),
  20374. default: true
  20375. },
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20380. {
  20381. front: {
  20382. height: math.unit(16, "feet"),
  20383. weight: math.unit(4000, "lb"),
  20384. name: "Front",
  20385. image: {
  20386. source: "./media/characters/juniper/front.svg",
  20387. bottom: 0.04
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(16, "feet"),
  20395. default: true
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20401. {
  20402. front: {
  20403. height: math.unit(6, "feet"),
  20404. weight: math.unit(150, "lb"),
  20405. name: "Front",
  20406. image: {
  20407. source: "./media/characters/hipster/front.svg",
  20408. extra: 1312 / 1209,
  20409. bottom: 0.025
  20410. }
  20411. },
  20412. back: {
  20413. height: math.unit(6, "feet"),
  20414. weight: math.unit(150, "lb"),
  20415. name: "Back",
  20416. image: {
  20417. source: "./media/characters/hipster/back.svg",
  20418. extra: 1281 / 1196,
  20419. bottom: 0.01
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Micro",
  20426. height: math.unit(1, "mm")
  20427. },
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(4, "inches"),
  20431. default: true
  20432. },
  20433. {
  20434. name: "Macro",
  20435. height: math.unit(500, "feet")
  20436. },
  20437. {
  20438. name: "Megamacro",
  20439. height: math.unit(1000, "miles")
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(6, "feet"),
  20448. weight: math.unit(150, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/tendirmuldr/front.svg",
  20452. extra: 1878 / 1772,
  20453. bottom: 0.015
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Megamacro",
  20460. height: math.unit(1500, "miles"),
  20461. default: true
  20462. },
  20463. ]
  20464. ))
  20465. characterMakers.push(() => makeCharacter(
  20466. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20467. {
  20468. front: {
  20469. height: math.unit(14, "feet"),
  20470. weight: math.unit(12000, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/mort/front.svg",
  20474. extra: 365 / 318,
  20475. bottom: 0.01
  20476. }
  20477. },
  20478. side: {
  20479. height: math.unit(14, "feet"),
  20480. weight: math.unit(12000, "lb"),
  20481. name: "Side",
  20482. image: {
  20483. source: "./media/characters/mort/side.svg",
  20484. extra: 365 / 318,
  20485. bottom: 0.052
  20486. },
  20487. default: true
  20488. },
  20489. back: {
  20490. height: math.unit(14, "feet"),
  20491. weight: math.unit(12000, "lb"),
  20492. name: "Back",
  20493. image: {
  20494. source: "./media/characters/mort/back.svg",
  20495. extra: 371 / 332,
  20496. bottom: 0.18
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(14, "feet"),
  20504. default: true
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20510. {
  20511. front: {
  20512. height: math.unit(8, "feet"),
  20513. weight: math.unit(1, "ton"),
  20514. name: "Front",
  20515. image: {
  20516. source: "./media/characters/lycoa/front.svg",
  20517. extra: 1875 / 1789,
  20518. bottom: 0.022
  20519. }
  20520. },
  20521. back: {
  20522. height: math.unit(8, "feet"),
  20523. weight: math.unit(1, "ton"),
  20524. name: "Back",
  20525. image: {
  20526. source: "./media/characters/lycoa/back.svg",
  20527. extra: 1835 / 1781,
  20528. bottom: 0.03
  20529. }
  20530. },
  20531. head: {
  20532. height: math.unit(2.1, "feet"),
  20533. name: "Head",
  20534. image: {
  20535. source: "./media/characters/lycoa/head.svg"
  20536. }
  20537. },
  20538. tailmaw: {
  20539. height: math.unit(1.9, "feet"),
  20540. name: "Tailmaw",
  20541. image: {
  20542. source: "./media/characters/lycoa/tailmaw.svg"
  20543. }
  20544. },
  20545. tentacles: {
  20546. height: math.unit(2.1, "feet"),
  20547. name: "Tentacles",
  20548. image: {
  20549. source: "./media/characters/lycoa/tentacles.svg"
  20550. }
  20551. },
  20552. dick: {
  20553. height: math.unit(1.73, "feet"),
  20554. name: "Dick",
  20555. image: {
  20556. source: "./media/characters/lycoa/dick.svg"
  20557. }
  20558. },
  20559. },
  20560. [
  20561. {
  20562. name: "Normal",
  20563. height: math.unit(8, "feet"),
  20564. default: true
  20565. },
  20566. {
  20567. name: "Macro",
  20568. height: math.unit(30, "feet")
  20569. },
  20570. ]
  20571. ))
  20572. characterMakers.push(() => makeCharacter(
  20573. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20574. {
  20575. front: {
  20576. height: math.unit(4 + 2 / 12, "feet"),
  20577. weight: math.unit(70, "lb"),
  20578. name: "Front",
  20579. image: {
  20580. source: "./media/characters/naldara/front.svg",
  20581. extra: 841 / 720,
  20582. bottom: 0.04
  20583. }
  20584. },
  20585. naga: {
  20586. height: math.unit(23, "feet"),
  20587. weight: math.unit(15000, "kg"),
  20588. name: "Naga",
  20589. image: {
  20590. source: "./media/characters/naldara/naga.svg",
  20591. extra: 3290 / 2959,
  20592. bottom: 124 / 3432
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(4 + 2 / 12, "feet"),
  20600. default: true
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(13 + 7 / 12, "feet"),
  20609. weight: math.unit(1500, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/briar/front.svg",
  20613. extra: 626 / 596,
  20614. bottom: 0.08
  20615. }
  20616. },
  20617. },
  20618. [
  20619. {
  20620. name: "Normal",
  20621. height: math.unit(13 + 7 / 12, "feet"),
  20622. default: true
  20623. },
  20624. ]
  20625. ))
  20626. characterMakers.push(() => makeCharacter(
  20627. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20628. {
  20629. side: {
  20630. height: math.unit(10, "feet"),
  20631. weight: math.unit(500, "lb"),
  20632. name: "Side",
  20633. image: {
  20634. source: "./media/characters/vanguard/side.svg",
  20635. extra: 502 / 425,
  20636. bottom: 0.087
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "Normal",
  20643. height: math.unit(10, "feet"),
  20644. default: true
  20645. },
  20646. ]
  20647. ))
  20648. characterMakers.push(() => makeCharacter(
  20649. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20650. {
  20651. front: {
  20652. height: math.unit(7.5, "feet"),
  20653. weight: math.unit(2, "lb"),
  20654. name: "Front",
  20655. image: {
  20656. source: "./media/characters/artemis/front.svg",
  20657. extra: 1192 / 1075,
  20658. bottom: 0.07
  20659. }
  20660. },
  20661. frontNsfw: {
  20662. height: math.unit(7.5, "feet"),
  20663. weight: math.unit(2, "lb"),
  20664. name: "Front (NSFW)",
  20665. image: {
  20666. source: "./media/characters/artemis/front-nsfw.svg",
  20667. extra: 1192 / 1075,
  20668. bottom: 0.07
  20669. }
  20670. },
  20671. frontNsfwer: {
  20672. height: math.unit(7.5, "feet"),
  20673. weight: math.unit(2, "lb"),
  20674. name: "Front (NSFW-er)",
  20675. image: {
  20676. source: "./media/characters/artemis/front-nsfwer.svg",
  20677. extra: 1192 / 1075,
  20678. bottom: 0.07
  20679. }
  20680. },
  20681. side: {
  20682. height: math.unit(7.5, "feet"),
  20683. weight: math.unit(2, "lb"),
  20684. name: "Side",
  20685. image: {
  20686. source: "./media/characters/artemis/side.svg",
  20687. extra: 1192 / 1075,
  20688. bottom: 0.07
  20689. }
  20690. },
  20691. sideNsfw: {
  20692. height: math.unit(7.5, "feet"),
  20693. weight: math.unit(2, "lb"),
  20694. name: "Side (NSFW)",
  20695. image: {
  20696. source: "./media/characters/artemis/side-nsfw.svg",
  20697. extra: 1192 / 1075,
  20698. bottom: 0.07
  20699. }
  20700. },
  20701. sideNsfwer: {
  20702. height: math.unit(7.5, "feet"),
  20703. weight: math.unit(2, "lb"),
  20704. name: "Side (NSFW-er)",
  20705. image: {
  20706. source: "./media/characters/artemis/side-nsfwer.svg",
  20707. extra: 1192 / 1075,
  20708. bottom: 0.07
  20709. }
  20710. },
  20711. maw: {
  20712. height: math.unit(1.1, "feet"),
  20713. name: "Maw",
  20714. image: {
  20715. source: "./media/characters/artemis/maw.svg"
  20716. }
  20717. },
  20718. stomach: {
  20719. height: math.unit(0.95, "feet"),
  20720. name: "Stomach",
  20721. image: {
  20722. source: "./media/characters/artemis/stomach.svg"
  20723. }
  20724. },
  20725. dickCanine: {
  20726. height: math.unit(1, "feet"),
  20727. name: "Dick (Canine)",
  20728. image: {
  20729. source: "./media/characters/artemis/dick-canine.svg"
  20730. }
  20731. },
  20732. dickEquine: {
  20733. height: math.unit(0.85, "feet"),
  20734. name: "Dick (Equine)",
  20735. image: {
  20736. source: "./media/characters/artemis/dick-equine.svg"
  20737. }
  20738. },
  20739. dickExotic: {
  20740. height: math.unit(0.85, "feet"),
  20741. name: "Dick (Exotic)",
  20742. image: {
  20743. source: "./media/characters/artemis/dick-exotic.svg"
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(7.5, "feet"),
  20751. default: true
  20752. },
  20753. {
  20754. name: "Enlarged",
  20755. height: math.unit(12, "feet")
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(5 + 3 / 12, "feet"),
  20764. weight: math.unit(160, "lb"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/kira/front.svg",
  20768. extra: 906 / 786,
  20769. bottom: 0.01
  20770. }
  20771. },
  20772. back: {
  20773. height: math.unit(5 + 3 / 12, "feet"),
  20774. weight: math.unit(160, "lb"),
  20775. name: "Back",
  20776. image: {
  20777. source: "./media/characters/kira/back.svg",
  20778. extra: 882 / 757,
  20779. bottom: 0.005
  20780. }
  20781. },
  20782. frontDressed: {
  20783. height: math.unit(5 + 3 / 12, "feet"),
  20784. weight: math.unit(160, "lb"),
  20785. name: "Front (Dressed)",
  20786. image: {
  20787. source: "./media/characters/kira/front-dressed.svg",
  20788. extra: 906 / 786,
  20789. bottom: 0.01
  20790. }
  20791. },
  20792. beans: {
  20793. height: math.unit(0.92, "feet"),
  20794. name: "Beans",
  20795. image: {
  20796. source: "./media/characters/kira/beans.svg"
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Normal",
  20803. height: math.unit(5 + 3 / 12, "feet"),
  20804. default: true
  20805. },
  20806. ]
  20807. ))
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20810. {
  20811. front: {
  20812. height: math.unit(5 + 4 / 12, "feet"),
  20813. weight: math.unit(145, "lb"),
  20814. name: "Front",
  20815. image: {
  20816. source: "./media/characters/scramble/front.svg",
  20817. extra: 763 / 727,
  20818. bottom: 0.05
  20819. }
  20820. },
  20821. back: {
  20822. height: math.unit(5 + 4 / 12, "feet"),
  20823. weight: math.unit(145, "lb"),
  20824. name: "Back",
  20825. image: {
  20826. source: "./media/characters/scramble/back.svg",
  20827. extra: 826 / 737,
  20828. bottom: 0.002
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Normal",
  20835. height: math.unit(5 + 4 / 12, "feet"),
  20836. default: true
  20837. },
  20838. ]
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20842. {
  20843. side: {
  20844. height: math.unit(6 + 2 / 12, "feet"),
  20845. weight: math.unit(190, "lb"),
  20846. name: "Side",
  20847. image: {
  20848. source: "./media/characters/biscuit/side.svg",
  20849. extra: 858 / 791,
  20850. bottom: 0.044
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(6 + 2 / 12, "feet"),
  20858. default: true
  20859. },
  20860. ]
  20861. ))
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20864. {
  20865. front: {
  20866. height: math.unit(5 + 2 / 12, "feet"),
  20867. weight: math.unit(120, "lb"),
  20868. name: "Front",
  20869. image: {
  20870. source: "./media/characters/poffin/front.svg",
  20871. extra: 786 / 680,
  20872. bottom: 0.005
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(5 + 2 / 12, "feet"),
  20880. default: true
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20886. {
  20887. front: {
  20888. height: math.unit(6 + 3 / 12, "feet"),
  20889. weight: math.unit(519, "lb"),
  20890. name: "Front",
  20891. image: {
  20892. source: "./media/characters/dhari/front.svg",
  20893. extra: 1048 / 946,
  20894. bottom: 0.015
  20895. }
  20896. },
  20897. back: {
  20898. height: math.unit(6 + 3 / 12, "feet"),
  20899. weight: math.unit(519, "lb"),
  20900. name: "Back",
  20901. image: {
  20902. source: "./media/characters/dhari/back.svg",
  20903. extra: 1048 / 931,
  20904. bottom: 0.005
  20905. }
  20906. },
  20907. frontDressed: {
  20908. height: math.unit(6 + 3 / 12, "feet"),
  20909. weight: math.unit(519, "lb"),
  20910. name: "Front (Dressed)",
  20911. image: {
  20912. source: "./media/characters/dhari/front-dressed.svg",
  20913. extra: 1713 / 1546,
  20914. bottom: 0.02
  20915. }
  20916. },
  20917. backDressed: {
  20918. height: math.unit(6 + 3 / 12, "feet"),
  20919. weight: math.unit(519, "lb"),
  20920. name: "Back (Dressed)",
  20921. image: {
  20922. source: "./media/characters/dhari/back-dressed.svg",
  20923. extra: 1699 / 1537,
  20924. bottom: 0.01
  20925. }
  20926. },
  20927. maw: {
  20928. height: math.unit(0.95, "feet"),
  20929. name: "Maw",
  20930. image: {
  20931. source: "./media/characters/dhari/maw.svg"
  20932. }
  20933. },
  20934. wereFront: {
  20935. height: math.unit(12 + 8 / 12, "feet"),
  20936. weight: math.unit(4000, "lb"),
  20937. name: "Front (Were)",
  20938. image: {
  20939. source: "./media/characters/dhari/were-front.svg",
  20940. extra: 1065 / 969,
  20941. bottom: 0.015
  20942. }
  20943. },
  20944. wereBack: {
  20945. height: math.unit(12 + 8 / 12, "feet"),
  20946. weight: math.unit(4000, "lb"),
  20947. name: "Back (Were)",
  20948. image: {
  20949. source: "./media/characters/dhari/were-back.svg",
  20950. extra: 1065 / 969,
  20951. bottom: 0.012
  20952. }
  20953. },
  20954. wereMaw: {
  20955. height: math.unit(0.625, "meters"),
  20956. name: "Maw (Were)",
  20957. image: {
  20958. source: "./media/characters/dhari/were-maw.svg"
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Normal",
  20965. height: math.unit(6 + 3 / 12, "feet"),
  20966. default: true
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20972. {
  20973. anthro: {
  20974. height: math.unit(5 + 7 / 12, "feet"),
  20975. weight: math.unit(175, "lb"),
  20976. name: "Anthro",
  20977. image: {
  20978. source: "./media/characters/rena-dyne/anthro.svg",
  20979. extra: 1849 / 1785,
  20980. bottom: 0.005
  20981. }
  20982. },
  20983. taur: {
  20984. height: math.unit(15 + 6 / 12, "feet"),
  20985. weight: math.unit(8000, "lb"),
  20986. name: "Taur",
  20987. image: {
  20988. source: "./media/characters/rena-dyne/taur.svg",
  20989. extra: 2315 / 2234,
  20990. bottom: 0.033
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(5 + 7 / 12, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21004. {
  21005. front: {
  21006. height: math.unit(8, "feet"),
  21007. weight: math.unit(600, "lb"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/weremeep/front.svg",
  21011. extra: 967 / 862,
  21012. bottom: 0.01
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(8, "feet"),
  21020. default: true
  21021. },
  21022. {
  21023. name: "Lorg",
  21024. height: math.unit(12, "feet")
  21025. },
  21026. {
  21027. name: "Oh Lawd She Comin'",
  21028. height: math.unit(20, "feet")
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21034. {
  21035. front: {
  21036. height: math.unit(4, "feet"),
  21037. weight: math.unit(90, "lb"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/reza/front.svg",
  21041. extra: 1183 / 1111,
  21042. bottom: 0.017
  21043. }
  21044. },
  21045. back: {
  21046. height: math.unit(4, "feet"),
  21047. weight: math.unit(90, "lb"),
  21048. name: "Back",
  21049. image: {
  21050. source: "./media/characters/reza/back.svg",
  21051. extra: 1183 / 1111,
  21052. bottom: 0.01
  21053. }
  21054. },
  21055. drake: {
  21056. height: math.unit(30, "feet"),
  21057. weight: math.unit(246960, "lb"),
  21058. name: "Drake",
  21059. image: {
  21060. source: "./media/characters/reza/drake.svg",
  21061. extra: 2350 / 2024,
  21062. bottom: 60.7 / 2403
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(4, "feet"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21076. {
  21077. side: {
  21078. height: math.unit(15, "feet"),
  21079. weight: math.unit(14, "tons"),
  21080. name: "Side",
  21081. image: {
  21082. source: "./media/characters/athea/side.svg",
  21083. extra: 960 / 540,
  21084. bottom: 0.003
  21085. }
  21086. },
  21087. sitting: {
  21088. height: math.unit(6 * 2.85, "feet"),
  21089. weight: math.unit(14, "tons"),
  21090. name: "Sitting",
  21091. image: {
  21092. source: "./media/characters/athea/sitting.svg",
  21093. extra: 621 / 581,
  21094. bottom: 0.075
  21095. }
  21096. },
  21097. maw: {
  21098. height: math.unit(7.59498031496063, "feet"),
  21099. name: "Maw",
  21100. image: {
  21101. source: "./media/characters/athea/maw.svg"
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Lap Cat",
  21108. height: math.unit(2.5, "feet")
  21109. },
  21110. {
  21111. name: "Minimacro",
  21112. height: math.unit(15, "feet"),
  21113. default: true
  21114. },
  21115. {
  21116. name: "Macro",
  21117. height: math.unit(120, "feet")
  21118. },
  21119. {
  21120. name: "Macro+",
  21121. height: math.unit(640, "feet")
  21122. },
  21123. {
  21124. name: "Colossus",
  21125. height: math.unit(2.2, "miles")
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21131. {
  21132. front: {
  21133. height: math.unit(8 + 8 / 12, "feet"),
  21134. weight: math.unit(130, "kg"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/seroko/front.svg",
  21138. extra: 1385 / 1280,
  21139. bottom: 0.025
  21140. }
  21141. },
  21142. back: {
  21143. height: math.unit(8 + 8 / 12, "feet"),
  21144. weight: math.unit(130, "kg"),
  21145. name: "Back",
  21146. image: {
  21147. source: "./media/characters/seroko/back.svg",
  21148. extra: 1369 / 1238,
  21149. bottom: 0.018
  21150. }
  21151. },
  21152. frontDressed: {
  21153. height: math.unit(8 + 8 / 12, "feet"),
  21154. weight: math.unit(130, "kg"),
  21155. name: "Front (Dressed)",
  21156. image: {
  21157. source: "./media/characters/seroko/front-dressed.svg",
  21158. extra: 1366 / 1275,
  21159. bottom: 0.03
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(8 + 8 / 12, "feet"),
  21167. default: true
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21173. {
  21174. front: {
  21175. height: math.unit(5.5, "feet"),
  21176. weight: math.unit(160, "lb"),
  21177. name: "Front",
  21178. image: {
  21179. source: "./media/characters/quatzi/front.svg",
  21180. extra: 2346 / 2242,
  21181. bottom: 0.015
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(5.5, "feet"),
  21189. default: true
  21190. },
  21191. {
  21192. name: "Big",
  21193. height: math.unit(7.7, "feet")
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21199. {
  21200. front: {
  21201. height: math.unit(5 + 11 / 12, "feet"),
  21202. weight: math.unit(180, "lb"),
  21203. name: "Front",
  21204. image: {
  21205. source: "./media/characters/sen/front.svg",
  21206. extra: 1321 / 1254,
  21207. bottom: 0.015
  21208. }
  21209. },
  21210. side: {
  21211. height: math.unit(5 + 11 / 12, "feet"),
  21212. weight: math.unit(180, "lb"),
  21213. name: "Side",
  21214. image: {
  21215. source: "./media/characters/sen/side.svg",
  21216. extra: 1321 / 1254,
  21217. bottom: 0.007
  21218. }
  21219. },
  21220. back: {
  21221. height: math.unit(5 + 11 / 12, "feet"),
  21222. weight: math.unit(180, "lb"),
  21223. name: "Back",
  21224. image: {
  21225. source: "./media/characters/sen/back.svg",
  21226. extra: 1321 / 1254
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(5 + 11 / 12, "feet"),
  21234. default: true
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21240. {
  21241. front: {
  21242. height: math.unit(166.6, "cm"),
  21243. weight: math.unit(66.6, "kg"),
  21244. name: "Front",
  21245. image: {
  21246. source: "./media/characters/fruity/front.svg",
  21247. extra: 1510 / 1386,
  21248. bottom: 0.04
  21249. }
  21250. },
  21251. back: {
  21252. height: math.unit(166.6, "cm"),
  21253. weight: math.unit(66.6, "lb"),
  21254. name: "Back",
  21255. image: {
  21256. source: "./media/characters/fruity/back.svg",
  21257. extra: 1563 / 1435,
  21258. bottom: 0.005
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(166.6, "cm"),
  21266. default: true
  21267. },
  21268. {
  21269. name: "Demonic",
  21270. height: math.unit(166.6, "feet")
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21276. {
  21277. side: {
  21278. height: math.unit(10, "feet"),
  21279. weight: math.unit(500, "lb"),
  21280. name: "Side",
  21281. image: {
  21282. source: "./media/characters/zost/side.svg",
  21283. extra: 966 / 880,
  21284. bottom: 0.075
  21285. }
  21286. },
  21287. mawFront: {
  21288. height: math.unit(1.08, "meters"),
  21289. name: "Maw (Front)",
  21290. image: {
  21291. source: "./media/characters/zost/maw-front.svg"
  21292. }
  21293. },
  21294. mawSide: {
  21295. height: math.unit(2.66, "feet"),
  21296. name: "Maw (Side)",
  21297. image: {
  21298. source: "./media/characters/zost/maw-side.svg"
  21299. }
  21300. },
  21301. },
  21302. [
  21303. {
  21304. name: "Normal",
  21305. height: math.unit(10, "feet"),
  21306. default: true
  21307. },
  21308. ]
  21309. ))
  21310. characterMakers.push(() => makeCharacter(
  21311. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21312. {
  21313. front: {
  21314. height: math.unit(5 + 4 / 12, "feet"),
  21315. weight: math.unit(120, "lb"),
  21316. name: "Front",
  21317. image: {
  21318. source: "./media/characters/luci/front.svg",
  21319. extra: 1985 / 1884,
  21320. bottom: 0.04
  21321. }
  21322. },
  21323. back: {
  21324. height: math.unit(5 + 4 / 12, "feet"),
  21325. weight: math.unit(120, "lb"),
  21326. name: "Back",
  21327. image: {
  21328. source: "./media/characters/luci/back.svg",
  21329. extra: 1892 / 1791,
  21330. bottom: 0.002
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(5 + 4 / 12, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(1500, "feet"),
  21347. weight: math.unit(3.8e6, "tons"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/2th/front.svg",
  21351. extra: 3489 / 3350,
  21352. bottom: 0.1
  21353. }
  21354. },
  21355. foot: {
  21356. height: math.unit(461, "feet"),
  21357. name: "Foot",
  21358. image: {
  21359. source: "./media/characters/2th/foot.svg"
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "\"Micro\"",
  21366. height: math.unit(15 + 7 / 12, "feet")
  21367. },
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(1500, "feet"),
  21371. default: true
  21372. },
  21373. {
  21374. name: "Macro",
  21375. height: math.unit(5000, "feet")
  21376. },
  21377. {
  21378. name: "Megamacro",
  21379. height: math.unit(15, "miles")
  21380. },
  21381. {
  21382. name: "Gigamacro",
  21383. height: math.unit(4000, "miles")
  21384. },
  21385. {
  21386. name: "Galactic",
  21387. height: math.unit(50, "AU")
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21393. {
  21394. front: {
  21395. height: math.unit(5 + 6 / 12, "feet"),
  21396. weight: math.unit(220, "lb"),
  21397. name: "Front",
  21398. image: {
  21399. source: "./media/characters/amethyst/front.svg",
  21400. extra: 2078 / 2040,
  21401. bottom: 0.045
  21402. }
  21403. },
  21404. back: {
  21405. height: math.unit(5 + 6 / 12, "feet"),
  21406. weight: math.unit(220, "lb"),
  21407. name: "Back",
  21408. image: {
  21409. source: "./media/characters/amethyst/back.svg",
  21410. extra: 2021 / 1989,
  21411. bottom: 0.02
  21412. }
  21413. },
  21414. },
  21415. [
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(5 + 6 / 12, "feet"),
  21419. default: true
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(4 + 11 / 12, "feet"),
  21428. weight: math.unit(120, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/yumi-akiyama/front.svg",
  21432. extra: 1327 / 1235,
  21433. bottom: 0.02
  21434. }
  21435. },
  21436. back: {
  21437. height: math.unit(4 + 11 / 12, "feet"),
  21438. weight: math.unit(120, "lb"),
  21439. name: "Back",
  21440. image: {
  21441. source: "./media/characters/yumi-akiyama/back.svg",
  21442. extra: 1287 / 1245,
  21443. bottom: 0.002
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Galactic",
  21450. height: math.unit(50, "galaxies"),
  21451. default: true
  21452. },
  21453. {
  21454. name: "Universal",
  21455. height: math.unit(100, "universes")
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(8, "feet"),
  21464. weight: math.unit(500, "lb"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/rifter-yrmori/front.svg",
  21468. extra: 1180 / 1125,
  21469. bottom: 0.02
  21470. }
  21471. },
  21472. back: {
  21473. height: math.unit(8, "feet"),
  21474. weight: math.unit(500, "lb"),
  21475. name: "Back",
  21476. image: {
  21477. source: "./media/characters/rifter-yrmori/back.svg",
  21478. extra: 1190 / 1145,
  21479. bottom: 0.001
  21480. }
  21481. },
  21482. wings: {
  21483. height: math.unit(7.75, "feet"),
  21484. weight: math.unit(500, "lb"),
  21485. name: "Wings",
  21486. image: {
  21487. source: "./media/characters/rifter-yrmori/wings.svg",
  21488. extra: 1357 / 1285
  21489. }
  21490. },
  21491. maw: {
  21492. height: math.unit(0.8, "feet"),
  21493. name: "Maw",
  21494. image: {
  21495. source: "./media/characters/rifter-yrmori/maw.svg"
  21496. }
  21497. },
  21498. mawfront: {
  21499. height: math.unit(1.45, "feet"),
  21500. name: "Maw (Front)",
  21501. image: {
  21502. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21503. }
  21504. },
  21505. },
  21506. [
  21507. {
  21508. name: "Normal",
  21509. height: math.unit(8, "feet"),
  21510. default: true
  21511. },
  21512. {
  21513. name: "Macro",
  21514. height: math.unit(42, "meters")
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21520. {
  21521. were: {
  21522. height: math.unit(25 + 6 / 12, "feet"),
  21523. weight: math.unit(10000, "lb"),
  21524. name: "Were",
  21525. image: {
  21526. source: "./media/characters/tahajin/were.svg",
  21527. extra: 801 / 770,
  21528. bottom: 0.042
  21529. }
  21530. },
  21531. aquatic: {
  21532. height: math.unit(6 + 4 / 12, "feet"),
  21533. weight: math.unit(160, "lb"),
  21534. name: "Aquatic",
  21535. image: {
  21536. source: "./media/characters/tahajin/aquatic.svg",
  21537. extra: 572 / 542,
  21538. bottom: 0.04
  21539. }
  21540. },
  21541. chow: {
  21542. height: math.unit(8 + 11 / 12, "feet"),
  21543. weight: math.unit(450, "lb"),
  21544. name: "Chow",
  21545. image: {
  21546. source: "./media/characters/tahajin/chow.svg",
  21547. extra: 660 / 640,
  21548. bottom: 0.015
  21549. }
  21550. },
  21551. demiNaga: {
  21552. height: math.unit(6 + 8 / 12, "feet"),
  21553. weight: math.unit(300, "lb"),
  21554. name: "Demi Naga",
  21555. image: {
  21556. source: "./media/characters/tahajin/demi-naga.svg",
  21557. extra: 643 / 615,
  21558. bottom: 0.1
  21559. }
  21560. },
  21561. data: {
  21562. height: math.unit(5, "inches"),
  21563. weight: math.unit(0.1, "lb"),
  21564. name: "Data",
  21565. image: {
  21566. source: "./media/characters/tahajin/data.svg"
  21567. }
  21568. },
  21569. fluu: {
  21570. height: math.unit(5 + 7 / 12, "feet"),
  21571. weight: math.unit(140, "lb"),
  21572. name: "Fluu",
  21573. image: {
  21574. source: "./media/characters/tahajin/fluu.svg",
  21575. extra: 628 / 592,
  21576. bottom: 0.02
  21577. }
  21578. },
  21579. starWarrior: {
  21580. height: math.unit(4 + 5 / 12, "feet"),
  21581. weight: math.unit(50, "lb"),
  21582. name: "Star Warrior",
  21583. image: {
  21584. source: "./media/characters/tahajin/star-warrior.svg"
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(25 + 6 / 12, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(8, "feet"),
  21601. weight: math.unit(350, "lb"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/gabira/front.svg",
  21605. extra: 608 / 580,
  21606. bottom: 0.03
  21607. }
  21608. },
  21609. back: {
  21610. height: math.unit(8, "feet"),
  21611. weight: math.unit(350, "lb"),
  21612. name: "Back",
  21613. image: {
  21614. source: "./media/characters/gabira/back.svg",
  21615. extra: 608 / 580,
  21616. bottom: 0.03
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(8, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(5 + 3 / 12, "feet"),
  21633. weight: math.unit(137, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/sasha-katraine/front.svg",
  21637. bottom: 0.045
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Micro",
  21644. height: math.unit(5, "inches")
  21645. },
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(5 + 3 / 12, "feet"),
  21649. default: true
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21655. {
  21656. side: {
  21657. height: math.unit(4, "inches"),
  21658. weight: math.unit(200, "grams"),
  21659. name: "Side",
  21660. image: {
  21661. source: "./media/characters/der/side.svg",
  21662. extra: 719 / 400,
  21663. bottom: 30.6 / 749.9187
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Micro",
  21670. height: math.unit(4, "inches"),
  21671. default: true
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21677. {
  21678. side: {
  21679. height: math.unit(30, "meters"),
  21680. weight: math.unit(700, "tonnes"),
  21681. name: "Side",
  21682. image: {
  21683. source: "./media/characters/fixerdragon/side.svg",
  21684. extra: (1293.0514 - 116.03) / 1106.86,
  21685. bottom: 116.03 / 1293.0514
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Planck",
  21692. height: math.unit(1.6e-35, "meters")
  21693. },
  21694. {
  21695. name: "Micro",
  21696. height: math.unit(0.4, "meters")
  21697. },
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(30, "meters"),
  21701. default: true
  21702. },
  21703. {
  21704. name: "Megamacro",
  21705. height: math.unit(1.2, "megameters")
  21706. },
  21707. {
  21708. name: "Teramacro",
  21709. height: math.unit(130, "terameters")
  21710. },
  21711. {
  21712. name: "Yottamacro",
  21713. height: math.unit(6200, "yottameters")
  21714. },
  21715. ]
  21716. ));
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21719. {
  21720. front: {
  21721. height: math.unit(8, "feet"),
  21722. weight: math.unit(250, "lb"),
  21723. name: "Front",
  21724. image: {
  21725. source: "./media/characters/kite/front.svg",
  21726. extra: 2796 / 2659,
  21727. bottom: 0.002
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(8, "feet"),
  21735. default: true
  21736. },
  21737. {
  21738. name: "Macro",
  21739. height: math.unit(360, "feet")
  21740. },
  21741. {
  21742. name: "Megamacro",
  21743. height: math.unit(1500, "feet")
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(5 + 11/12, "feet"),
  21752. weight: math.unit(170, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/poojawa-vynar/front.svg",
  21756. extra: 1735/1585,
  21757. bottom: 96/1831
  21758. }
  21759. },
  21760. back: {
  21761. height: math.unit(5 + 11/12, "feet"),
  21762. weight: math.unit(170, "lb"),
  21763. name: "Back",
  21764. image: {
  21765. source: "./media/characters/poojawa-vynar/back.svg",
  21766. extra: 1749/1607,
  21767. bottom: 28/1777
  21768. }
  21769. },
  21770. male: {
  21771. height: math.unit(5 + 11/12, "feet"),
  21772. weight: math.unit(170, "lb"),
  21773. name: "Male",
  21774. image: {
  21775. source: "./media/characters/poojawa-vynar/male.svg",
  21776. extra: 1855/1713,
  21777. bottom: 63/1918
  21778. }
  21779. },
  21780. taur: {
  21781. height: math.unit(5 + 11/12, "feet"),
  21782. weight: math.unit(170, "lb"),
  21783. name: "Taur",
  21784. image: {
  21785. source: "./media/characters/poojawa-vynar/taur.svg",
  21786. extra: 1151/1059,
  21787. bottom: 356/1507
  21788. }
  21789. },
  21790. frontDressed: {
  21791. height: math.unit(5 + 11/12, "feet"),
  21792. weight: math.unit(170, "lb"),
  21793. name: "Front (Dressed)",
  21794. image: {
  21795. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21796. extra: 1735/1585,
  21797. bottom: 96/1831
  21798. }
  21799. },
  21800. backDressed: {
  21801. height: math.unit(5 + 11/12, "feet"),
  21802. weight: math.unit(170, "lb"),
  21803. name: "Back (Dressed)",
  21804. image: {
  21805. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21806. extra: 1749/1607,
  21807. bottom: 28/1777
  21808. }
  21809. },
  21810. maleDressed: {
  21811. height: math.unit(5 + 11/12, "feet"),
  21812. weight: math.unit(170, "lb"),
  21813. name: "Male (Dressed)",
  21814. image: {
  21815. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21816. extra: 1855/1713,
  21817. bottom: 63/1918
  21818. }
  21819. },
  21820. taurDressed: {
  21821. height: math.unit(5 + 11/12, "feet"),
  21822. weight: math.unit(170, "lb"),
  21823. name: "Taur (Dressed)",
  21824. image: {
  21825. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21826. extra: 1151/1059,
  21827. bottom: 356/1507
  21828. }
  21829. },
  21830. maw: {
  21831. height: math.unit(1.46, "feet"),
  21832. name: "Maw",
  21833. image: {
  21834. source: "./media/characters/poojawa-vynar/maw.svg"
  21835. }
  21836. },
  21837. head: {
  21838. height: math.unit(2.34, "feet"),
  21839. name: "Head",
  21840. image: {
  21841. source: "./media/characters/poojawa-vynar/head.svg"
  21842. }
  21843. },
  21844. paw: {
  21845. height: math.unit(1.61, "feet"),
  21846. name: "Paw",
  21847. image: {
  21848. source: "./media/characters/poojawa-vynar/paw.svg"
  21849. }
  21850. },
  21851. pawToering: {
  21852. height: math.unit(1.72, "feet"),
  21853. name: "Paw (Toering)",
  21854. image: {
  21855. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21856. }
  21857. },
  21858. toering: {
  21859. height: math.unit(2.9, "inches"),
  21860. name: "Toering",
  21861. image: {
  21862. source: "./media/characters/poojawa-vynar/toering.svg"
  21863. }
  21864. },
  21865. shaft: {
  21866. height: math.unit(0.625, "feet"),
  21867. name: "Shaft",
  21868. image: {
  21869. source: "./media/characters/poojawa-vynar/shaft.svg"
  21870. }
  21871. },
  21872. spade: {
  21873. height: math.unit(0.42, "feet"),
  21874. name: "Spade",
  21875. image: {
  21876. source: "./media/characters/poojawa-vynar/spade.svg"
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Shortstack",
  21883. height: math.unit(4, "feet")
  21884. },
  21885. {
  21886. name: "Normal",
  21887. height: math.unit(5 + 11 / 12, "feet"),
  21888. default: true
  21889. },
  21890. {
  21891. name: "Tauric",
  21892. height: math.unit(4, "meters")
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21898. {
  21899. front: {
  21900. height: math.unit(293, "meters"),
  21901. weight: math.unit(70400, "tons"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/violette/front.svg",
  21905. extra: 1227 / 1180,
  21906. bottom: 0.005
  21907. }
  21908. },
  21909. back: {
  21910. height: math.unit(293, "meters"),
  21911. weight: math.unit(70400, "tons"),
  21912. name: "Back",
  21913. image: {
  21914. source: "./media/characters/violette/back.svg",
  21915. extra: 1227 / 1180,
  21916. bottom: 0.005
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Macro",
  21923. height: math.unit(293, "meters"),
  21924. default: true
  21925. },
  21926. ]
  21927. ))
  21928. characterMakers.push(() => makeCharacter(
  21929. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21930. {
  21931. front: {
  21932. height: math.unit(1050, "feet"),
  21933. weight: math.unit(200000, "tons"),
  21934. name: "Front",
  21935. image: {
  21936. source: "./media/characters/alessandra/front.svg",
  21937. extra: 960 / 912,
  21938. bottom: 0.06
  21939. }
  21940. },
  21941. },
  21942. [
  21943. {
  21944. name: "Macro",
  21945. height: math.unit(1050, "feet")
  21946. },
  21947. {
  21948. name: "Macro+",
  21949. height: math.unit(900, "meters"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(5, "feet"),
  21959. weight: math.unit(187, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/person/front.svg",
  21963. extra: 3087 / 2945,
  21964. bottom: 91 / 3181
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Micro",
  21971. height: math.unit(3, "inches")
  21972. },
  21973. {
  21974. name: "Normal",
  21975. height: math.unit(5, "feet"),
  21976. default: true
  21977. },
  21978. {
  21979. name: "Macro",
  21980. height: math.unit(90, "feet")
  21981. },
  21982. {
  21983. name: "Max Size",
  21984. height: math.unit(280, "feet")
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21990. {
  21991. front: {
  21992. height: math.unit(4.5, "meters"),
  21993. weight: math.unit(3200, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/ty/front.svg",
  21997. extra: 1038 / 960,
  21998. bottom: 31.156 / 1068
  21999. }
  22000. },
  22001. back: {
  22002. height: math.unit(4.5, "meters"),
  22003. weight: math.unit(3200, "lb"),
  22004. name: "Back",
  22005. image: {
  22006. source: "./media/characters/ty/back.svg",
  22007. extra: 1044 / 966,
  22008. bottom: 7.48 / 1049
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Normal",
  22015. height: math.unit(4.5, "meters"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22022. {
  22023. front: {
  22024. height: math.unit(5 + 4 / 12, "feet"),
  22025. weight: math.unit(115, "lb"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/rocky/front.svg",
  22029. extra: 1012 / 975,
  22030. bottom: 54 / 1066
  22031. }
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Normal",
  22037. height: math.unit(5 + 4 / 12, "feet"),
  22038. default: true
  22039. },
  22040. ]
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22044. {
  22045. upright: {
  22046. height: math.unit(6, "meters"),
  22047. weight: math.unit(4000, "kg"),
  22048. name: "Upright",
  22049. image: {
  22050. source: "./media/characters/ruin/upright.svg",
  22051. extra: 668 / 661,
  22052. bottom: 42 / 799.8396
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Normal",
  22059. height: math.unit(6, "meters"),
  22060. default: true
  22061. },
  22062. ]
  22063. ))
  22064. characterMakers.push(() => makeCharacter(
  22065. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22066. {
  22067. front: {
  22068. height: math.unit(5, "feet"),
  22069. weight: math.unit(106, "lb"),
  22070. name: "Front",
  22071. image: {
  22072. source: "./media/characters/robin/front.svg",
  22073. extra: 862 / 799,
  22074. bottom: 42.4 / 914.8856
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Normal",
  22081. height: math.unit(5, "feet"),
  22082. default: true
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22088. {
  22089. side: {
  22090. height: math.unit(3, "feet"),
  22091. weight: math.unit(225, "lb"),
  22092. name: "Side",
  22093. image: {
  22094. source: "./media/characters/saian/side.svg",
  22095. extra: 566 / 356,
  22096. bottom: 79.7 / 643
  22097. }
  22098. },
  22099. maw: {
  22100. height: math.unit(2.85, "feet"),
  22101. name: "Maw",
  22102. image: {
  22103. source: "./media/characters/saian/maw.svg"
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(3, "feet"),
  22111. default: true
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22117. {
  22118. side: {
  22119. height: math.unit(8, "feet"),
  22120. weight: math.unit(300, "lb"),
  22121. name: "Side",
  22122. image: {
  22123. source: "./media/characters/equus-silvermane/side.svg",
  22124. extra: 2176 / 2050,
  22125. bottom: 65.7 / 2245
  22126. }
  22127. },
  22128. front: {
  22129. height: math.unit(8, "feet"),
  22130. weight: math.unit(300, "lb"),
  22131. name: "Front",
  22132. image: {
  22133. source: "./media/characters/equus-silvermane/front.svg",
  22134. extra: 4633 / 4400,
  22135. bottom: 71.3 / 4706.915
  22136. }
  22137. },
  22138. sideStepping: {
  22139. height: math.unit(8, "feet"),
  22140. weight: math.unit(300, "lb"),
  22141. name: "Side (Stepping)",
  22142. image: {
  22143. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22144. extra: 1968 / 1860,
  22145. bottom: 16.4 / 1989
  22146. }
  22147. },
  22148. },
  22149. [
  22150. {
  22151. name: "Normal",
  22152. height: math.unit(8, "feet")
  22153. },
  22154. {
  22155. name: "Minimacro",
  22156. height: math.unit(75, "feet"),
  22157. default: true
  22158. },
  22159. {
  22160. name: "Macro",
  22161. height: math.unit(150, "feet")
  22162. },
  22163. {
  22164. name: "Macro+",
  22165. height: math.unit(1000, "feet")
  22166. },
  22167. {
  22168. name: "Megamacro",
  22169. height: math.unit(1, "mile")
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22175. {
  22176. side: {
  22177. height: math.unit(20, "feet"),
  22178. weight: math.unit(30000, "kg"),
  22179. name: "Side",
  22180. image: {
  22181. source: "./media/characters/windar/side.svg",
  22182. extra: 1491 / 1248,
  22183. bottom: 82.56 / 1568
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(20, "feet"),
  22191. default: true
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22197. {
  22198. side: {
  22199. height: math.unit(15.66, "feet"),
  22200. weight: math.unit(150, "lb"),
  22201. name: "Side",
  22202. image: {
  22203. source: "./media/characters/melody/side.svg",
  22204. extra: 1097 / 944,
  22205. bottom: 11.8 / 1109
  22206. }
  22207. },
  22208. sideOutfit: {
  22209. height: math.unit(15.66, "feet"),
  22210. weight: math.unit(150, "lb"),
  22211. name: "Side (Outfit)",
  22212. image: {
  22213. source: "./media/characters/melody/side-outfit.svg",
  22214. extra: 1097 / 944,
  22215. bottom: 11.8 / 1109
  22216. }
  22217. },
  22218. },
  22219. [
  22220. {
  22221. name: "Normal",
  22222. height: math.unit(15.66, "feet"),
  22223. default: true
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22229. {
  22230. front: {
  22231. height: math.unit(8, "feet"),
  22232. weight: math.unit(325, "lb"),
  22233. name: "Front",
  22234. image: {
  22235. source: "./media/characters/windera/front.svg",
  22236. extra: 3180 / 2845,
  22237. bottom: 178 / 3365
  22238. }
  22239. },
  22240. },
  22241. [
  22242. {
  22243. name: "Normal",
  22244. height: math.unit(8, "feet"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22251. {
  22252. front: {
  22253. height: math.unit(28.75, "feet"),
  22254. weight: math.unit(2000, "kg"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/sonear/front.svg",
  22258. extra: 1041.1 / 964.9,
  22259. bottom: 53.7 / 1096.6
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(28.75, "feet"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22273. {
  22274. side: {
  22275. height: math.unit(25.5, "feet"),
  22276. weight: math.unit(23000, "kg"),
  22277. name: "Side",
  22278. image: {
  22279. source: "./media/characters/kanara/side.svg"
  22280. }
  22281. },
  22282. },
  22283. [
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(25.5, "feet"),
  22287. default: true
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22293. {
  22294. side: {
  22295. height: math.unit(10, "feet"),
  22296. weight: math.unit(1000, "kg"),
  22297. name: "Side",
  22298. image: {
  22299. source: "./media/characters/ereus/side.svg",
  22300. extra: 1157 / 959,
  22301. bottom: 153 / 1312.5
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "Normal",
  22308. height: math.unit(10, "feet"),
  22309. default: true
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22315. {
  22316. side: {
  22317. height: math.unit(4.5, "feet"),
  22318. weight: math.unit(500, "lb"),
  22319. name: "Side",
  22320. image: {
  22321. source: "./media/characters/e-ter/side.svg",
  22322. extra: 1550 / 1248,
  22323. bottom: 146 / 1694
  22324. }
  22325. },
  22326. },
  22327. [
  22328. {
  22329. name: "Normal",
  22330. height: math.unit(4.5, "feet"),
  22331. default: true
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22337. {
  22338. side: {
  22339. height: math.unit(9.7, "feet"),
  22340. weight: math.unit(4000, "kg"),
  22341. name: "Side",
  22342. image: {
  22343. source: "./media/characters/yamie/side.svg"
  22344. }
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Normal",
  22350. height: math.unit(9.7, "feet"),
  22351. default: true
  22352. },
  22353. ]
  22354. ))
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22357. {
  22358. front: {
  22359. height: math.unit(50, "feet"),
  22360. weight: math.unit(50000, "kg"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/anders/front.svg",
  22364. extra: 570 / 539,
  22365. bottom: 14.7 / 586.7
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Large",
  22372. height: math.unit(50, "feet")
  22373. },
  22374. {
  22375. name: "Macro",
  22376. height: math.unit(2000, "feet"),
  22377. default: true
  22378. },
  22379. {
  22380. name: "Megamacro",
  22381. height: math.unit(12, "miles")
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(7 + 2 / 12, "feet"),
  22390. weight: math.unit(300, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/reban/front.svg",
  22394. extra: 516 / 487,
  22395. bottom: 42.82 / 558.356
  22396. }
  22397. },
  22398. dick: {
  22399. height: math.unit(7 / 5, "feet"),
  22400. name: "Dick",
  22401. image: {
  22402. source: "./media/characters/reban/dick.svg"
  22403. }
  22404. },
  22405. },
  22406. [
  22407. {
  22408. name: "Natural Height",
  22409. height: math.unit(7 + 2 / 12, "feet")
  22410. },
  22411. {
  22412. name: "Macro",
  22413. height: math.unit(500, "feet"),
  22414. default: true
  22415. },
  22416. {
  22417. name: "Canon Height",
  22418. height: math.unit(50, "AU")
  22419. },
  22420. ]
  22421. ))
  22422. characterMakers.push(() => makeCharacter(
  22423. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22424. {
  22425. front: {
  22426. height: math.unit(6, "feet"),
  22427. weight: math.unit(150, "lb"),
  22428. name: "Front",
  22429. image: {
  22430. source: "./media/characters/terrance-keayes/front.svg",
  22431. extra: 1.005,
  22432. bottom: 151 / 1615
  22433. }
  22434. },
  22435. side: {
  22436. height: math.unit(6, "feet"),
  22437. weight: math.unit(150, "lb"),
  22438. name: "Side",
  22439. image: {
  22440. source: "./media/characters/terrance-keayes/side.svg",
  22441. extra: 1.005,
  22442. bottom: 129.4 / 1544
  22443. }
  22444. },
  22445. back: {
  22446. height: math.unit(6, "feet"),
  22447. weight: math.unit(150, "lb"),
  22448. name: "Back",
  22449. image: {
  22450. source: "./media/characters/terrance-keayes/back.svg",
  22451. extra: 1.005,
  22452. bottom: 58.4 / 1557.3
  22453. }
  22454. },
  22455. dick: {
  22456. height: math.unit(6 * 0.208, "feet"),
  22457. name: "Dick",
  22458. image: {
  22459. source: "./media/characters/terrance-keayes/dick.svg"
  22460. }
  22461. },
  22462. },
  22463. [
  22464. {
  22465. name: "Canon Height",
  22466. height: math.unit(35, "miles"),
  22467. default: true
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(6, "feet"),
  22476. weight: math.unit(150, "lb"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/ofelia/front.svg",
  22480. extra: 546 / 541,
  22481. bottom: 39 / 583
  22482. }
  22483. },
  22484. back: {
  22485. height: math.unit(6, "feet"),
  22486. weight: math.unit(150, "lb"),
  22487. name: "Back",
  22488. image: {
  22489. source: "./media/characters/ofelia/back.svg",
  22490. extra: 564 / 559.5,
  22491. bottom: 8.69 / 573.02
  22492. }
  22493. },
  22494. maw: {
  22495. height: math.unit(1, "feet"),
  22496. name: "Maw",
  22497. image: {
  22498. source: "./media/characters/ofelia/maw.svg"
  22499. }
  22500. },
  22501. foot: {
  22502. height: math.unit(1.949, "feet"),
  22503. name: "Foot",
  22504. image: {
  22505. source: "./media/characters/ofelia/foot.svg"
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Canon Height",
  22512. height: math.unit(2000, "miles"),
  22513. default: true
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(6, "feet"),
  22522. weight: math.unit(150, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/samuel/front.svg",
  22526. extra: 265 / 258,
  22527. bottom: 2 / 266.1566
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Macro",
  22534. height: math.unit(100, "feet"),
  22535. default: true
  22536. },
  22537. {
  22538. name: "Full Size",
  22539. height: math.unit(1000, "miles")
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(6, "feet"),
  22548. weight: math.unit(300, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/beishir-kiel/front.svg",
  22552. extra: 569 / 547,
  22553. bottom: 41.9 / 609
  22554. }
  22555. },
  22556. maw: {
  22557. height: math.unit(6 * 0.202, "feet"),
  22558. name: "Maw",
  22559. image: {
  22560. source: "./media/characters/beishir-kiel/maw.svg"
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Macro",
  22567. height: math.unit(300, "feet"),
  22568. default: true
  22569. },
  22570. ]
  22571. ))
  22572. characterMakers.push(() => makeCharacter(
  22573. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22574. {
  22575. front: {
  22576. height: math.unit(5 + 7/12, "feet"),
  22577. weight: math.unit(120, "lb"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/logan-grey/front.svg",
  22581. extra: 1836/1738,
  22582. bottom: 108/1944
  22583. }
  22584. },
  22585. back: {
  22586. height: math.unit(5 + 7/12, "feet"),
  22587. weight: math.unit(120, "lb"),
  22588. name: "Back",
  22589. image: {
  22590. source: "./media/characters/logan-grey/back.svg",
  22591. extra: 1880/1794,
  22592. bottom: 24/1904
  22593. }
  22594. },
  22595. frontSfw: {
  22596. height: math.unit(5 + 7/12, "feet"),
  22597. weight: math.unit(120, "lb"),
  22598. name: "Front (SFW)",
  22599. image: {
  22600. source: "./media/characters/logan-grey/front-sfw.svg",
  22601. extra: 1836/1738,
  22602. bottom: 108/1944
  22603. }
  22604. },
  22605. backSfw: {
  22606. height: math.unit(5 + 7/12, "feet"),
  22607. weight: math.unit(120, "lb"),
  22608. name: "Back (SFW)",
  22609. image: {
  22610. source: "./media/characters/logan-grey/back-sfw.svg",
  22611. extra: 1880/1794,
  22612. bottom: 24/1904
  22613. }
  22614. },
  22615. hands: {
  22616. height: math.unit(0.84, "feet"),
  22617. name: "Hands",
  22618. image: {
  22619. source: "./media/characters/logan-grey/hands.svg"
  22620. }
  22621. },
  22622. paws: {
  22623. height: math.unit(0.72, "feet"),
  22624. name: "Paws",
  22625. image: {
  22626. source: "./media/characters/logan-grey/paws.svg"
  22627. }
  22628. },
  22629. cock: {
  22630. height: math.unit(1.45, "feet"),
  22631. name: "Cock",
  22632. image: {
  22633. source: "./media/characters/logan-grey/cock.svg"
  22634. }
  22635. },
  22636. cockAlt: {
  22637. height: math.unit(1.437, "feet"),
  22638. name: "Cock (alt)",
  22639. image: {
  22640. source: "./media/characters/logan-grey/cock-alt.svg"
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "Normal",
  22647. height: math.unit(5 + 8 / 12, "feet")
  22648. },
  22649. {
  22650. name: "The 500 Foot Femboy",
  22651. height: math.unit(500, "feet"),
  22652. default: true
  22653. },
  22654. {
  22655. name: "Megmacro",
  22656. height: math.unit(20, "miles")
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(8 + 2 / 12, "feet"),
  22665. weight: math.unit(275, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/draganta/front.svg",
  22669. extra: 1177 / 1135,
  22670. bottom: 33.46 / 1212.1
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Normal",
  22677. height: math.unit(8 + 6 / 12, "feet"),
  22678. default: true
  22679. },
  22680. {
  22681. name: "Macro",
  22682. height: math.unit(150, "feet")
  22683. },
  22684. {
  22685. name: "Megamacro",
  22686. height: math.unit(1000, "miles")
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(1.72, "m"),
  22695. weight: math.unit(80, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/voski/front.svg",
  22699. extra: 2076.22 / 2022.4,
  22700. bottom: 102.7 / 2177.3866
  22701. }
  22702. },
  22703. frontNsfw: {
  22704. height: math.unit(1.72, "m"),
  22705. weight: math.unit(80, "lb"),
  22706. name: "Front (NSFW)",
  22707. image: {
  22708. source: "./media/characters/voski/front-nsfw.svg",
  22709. extra: 2076.22 / 2022.4,
  22710. bottom: 102.7 / 2177.3866
  22711. }
  22712. },
  22713. back: {
  22714. height: math.unit(1.72, "m"),
  22715. weight: math.unit(80, "lb"),
  22716. name: "Back",
  22717. image: {
  22718. source: "./media/characters/voski/back.svg",
  22719. extra: 2104 / 2051,
  22720. bottom: 10.45 / 2113.63
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Normal",
  22727. height: math.unit(1.72, "m")
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(55, "m"),
  22732. default: true
  22733. },
  22734. {
  22735. name: "Macro+",
  22736. height: math.unit(300, "m")
  22737. },
  22738. {
  22739. name: "Macro++",
  22740. height: math.unit(700, "m")
  22741. },
  22742. {
  22743. name: "Macro+++",
  22744. height: math.unit(4500, "m")
  22745. },
  22746. {
  22747. name: "Macro++++",
  22748. height: math.unit(45, "km")
  22749. },
  22750. {
  22751. name: "Macro+++++",
  22752. height: math.unit(1220, "km")
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(2.3, "m"),
  22761. weight: math.unit(304, "kg"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/icowom-lee/front.svg",
  22765. extra: 985 / 955,
  22766. bottom: 25.4 / 1012
  22767. }
  22768. },
  22769. fronttentacles: {
  22770. height: math.unit(2.3, "m"),
  22771. weight: math.unit(304, "kg"),
  22772. name: "Front-tentacles",
  22773. image: {
  22774. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22775. extra: 985 / 955,
  22776. bottom: 25.4 / 1012
  22777. }
  22778. },
  22779. back: {
  22780. height: math.unit(2.3, "m"),
  22781. weight: math.unit(304, "kg"),
  22782. name: "Back",
  22783. image: {
  22784. source: "./media/characters/icowom-lee/back.svg",
  22785. extra: 975 / 954,
  22786. bottom: 9.5 / 985
  22787. }
  22788. },
  22789. backtentacles: {
  22790. height: math.unit(2.3, "m"),
  22791. weight: math.unit(304, "kg"),
  22792. name: "Back-tentacles",
  22793. image: {
  22794. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22795. extra: 975 / 954,
  22796. bottom: 9.5 / 985
  22797. }
  22798. },
  22799. frontDressed: {
  22800. height: math.unit(2.3, "m"),
  22801. weight: math.unit(304, "kg"),
  22802. name: "Front (Dressed)",
  22803. image: {
  22804. source: "./media/characters/icowom-lee/front-dressed.svg",
  22805. extra: 3076 / 2933,
  22806. bottom: 51.4 / 3125.1889
  22807. }
  22808. },
  22809. rump: {
  22810. height: math.unit(0.776, "meters"),
  22811. name: "Rump",
  22812. image: {
  22813. source: "./media/characters/icowom-lee/rump.svg"
  22814. }
  22815. },
  22816. genitals: {
  22817. height: math.unit(0.78, "meters"),
  22818. name: "Genitals",
  22819. image: {
  22820. source: "./media/characters/icowom-lee/genitals.svg"
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(2.3, "meters"),
  22828. default: true
  22829. },
  22830. {
  22831. name: "Macro",
  22832. height: math.unit(94, "meters"),
  22833. default: true
  22834. },
  22835. ]
  22836. ))
  22837. characterMakers.push(() => makeCharacter(
  22838. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22839. {
  22840. front: {
  22841. height: math.unit(22, "meters"),
  22842. weight: math.unit(21000, "kg"),
  22843. name: "Front",
  22844. image: {
  22845. source: "./media/characters/shock-diamond/front.svg",
  22846. extra: 2204 / 2053,
  22847. bottom: 65 / 2239.47
  22848. }
  22849. },
  22850. frontNude: {
  22851. height: math.unit(22, "meters"),
  22852. weight: math.unit(21000, "kg"),
  22853. name: "Front (Nude)",
  22854. image: {
  22855. source: "./media/characters/shock-diamond/front-nude.svg",
  22856. extra: 2514 / 2285,
  22857. bottom: 13 / 2527.56
  22858. }
  22859. },
  22860. },
  22861. [
  22862. {
  22863. name: "Normal",
  22864. height: math.unit(3, "meters")
  22865. },
  22866. {
  22867. name: "Macro",
  22868. height: math.unit(22, "meters"),
  22869. default: true
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(5 + 4 / 12, "feet"),
  22878. weight: math.unit(120, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/rory/front.svg",
  22882. extra: 1318/1241,
  22883. bottom: 42/1360
  22884. }
  22885. },
  22886. back: {
  22887. height: math.unit(5 + 4 / 12, "feet"),
  22888. weight: math.unit(120, "lb"),
  22889. name: "Back",
  22890. image: {
  22891. source: "./media/characters/rory/back.svg",
  22892. extra: 1318/1241,
  22893. bottom: 42/1360
  22894. }
  22895. },
  22896. butt: {
  22897. height: math.unit(1.74, "feet"),
  22898. name: "Butt",
  22899. image: {
  22900. source: "./media/characters/rory/butt.svg"
  22901. }
  22902. },
  22903. dick: {
  22904. height: math.unit(1.02, "feet"),
  22905. name: "Dick",
  22906. image: {
  22907. source: "./media/characters/rory/dick.svg"
  22908. }
  22909. },
  22910. paws: {
  22911. height: math.unit(1, "feet"),
  22912. name: "Paws",
  22913. image: {
  22914. source: "./media/characters/rory/paws.svg"
  22915. }
  22916. },
  22917. frontAlt: {
  22918. height: math.unit(5 + 4 / 12, "feet"),
  22919. weight: math.unit(120, "lb"),
  22920. name: "Front (Alt)",
  22921. image: {
  22922. source: "./media/characters/rory/front-alt.svg",
  22923. extra: 589 / 556,
  22924. bottom: 45.7 / 635.76
  22925. }
  22926. },
  22927. frontAltNude: {
  22928. height: math.unit(5 + 4 / 12, "feet"),
  22929. weight: math.unit(120, "lb"),
  22930. name: "Front (Alt, Nude)",
  22931. image: {
  22932. source: "./media/characters/rory/front-alt-nude.svg",
  22933. extra: 589 / 556,
  22934. bottom: 45.7 / 635.76
  22935. }
  22936. },
  22937. side: {
  22938. height: math.unit(5 + 4 / 12, "feet"),
  22939. weight: math.unit(120, "lb"),
  22940. name: "Side",
  22941. image: {
  22942. source: "./media/characters/rory/side.svg",
  22943. extra: 597 / 564,
  22944. bottom: 55 / 653
  22945. }
  22946. },
  22947. backAlt: {
  22948. height: math.unit(5 + 4 / 12, "feet"),
  22949. weight: math.unit(120, "lb"),
  22950. name: "Back (Alt)",
  22951. image: {
  22952. source: "./media/characters/rory/back-alt.svg",
  22953. extra: 620 / 585,
  22954. bottom: 8.86 / 630.43
  22955. }
  22956. },
  22957. dickAlt: {
  22958. height: math.unit(0.86, "feet"),
  22959. name: "Dick (Alt)",
  22960. image: {
  22961. source: "./media/characters/rory/dick-alt.svg"
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(5 + 4 / 12, "feet"),
  22969. default: true
  22970. },
  22971. {
  22972. name: "Macro",
  22973. height: math.unit(100, "feet")
  22974. },
  22975. {
  22976. name: "Macro+",
  22977. height: math.unit(140, "feet")
  22978. },
  22979. {
  22980. name: "Macro++",
  22981. height: math.unit(300, "feet")
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22987. {
  22988. front: {
  22989. height: math.unit(5 + 9 / 12, "feet"),
  22990. weight: math.unit(190, "lb"),
  22991. name: "Front",
  22992. image: {
  22993. source: "./media/characters/sprisk/front.svg",
  22994. extra: 1225 / 1180,
  22995. bottom: 42.7 / 1266.4
  22996. }
  22997. },
  22998. frontNsfw: {
  22999. height: math.unit(5 + 9 / 12, "feet"),
  23000. weight: math.unit(190, "lb"),
  23001. name: "Front (NSFW)",
  23002. image: {
  23003. source: "./media/characters/sprisk/front-nsfw.svg",
  23004. extra: 1225 / 1180,
  23005. bottom: 42.7 / 1266.4
  23006. }
  23007. },
  23008. back: {
  23009. height: math.unit(5 + 9 / 12, "feet"),
  23010. weight: math.unit(190, "lb"),
  23011. name: "Back",
  23012. image: {
  23013. source: "./media/characters/sprisk/back.svg",
  23014. extra: 1247 / 1200,
  23015. bottom: 5.6 / 1253.04
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Tiny",
  23022. height: math.unit(2, "inches")
  23023. },
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(5 + 9 / 12, "feet"),
  23027. default: true
  23028. },
  23029. {
  23030. name: "Mini Macro",
  23031. height: math.unit(18, "feet")
  23032. },
  23033. {
  23034. name: "Macro",
  23035. height: math.unit(100, "feet")
  23036. },
  23037. {
  23038. name: "MACRO",
  23039. height: math.unit(50, "miles")
  23040. },
  23041. {
  23042. name: "M A C R O",
  23043. height: math.unit(300, "miles")
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23049. {
  23050. side: {
  23051. height: math.unit(15.6, "meters"),
  23052. weight: math.unit(700000, "kg"),
  23053. name: "Side",
  23054. image: {
  23055. source: "./media/characters/bunsen/side.svg",
  23056. extra: 1644 / 358
  23057. }
  23058. },
  23059. foot: {
  23060. height: math.unit(1.611 * 1644 / 358, "meter"),
  23061. name: "Foot",
  23062. image: {
  23063. source: "./media/characters/bunsen/foot.svg"
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Small",
  23070. height: math.unit(10, "feet")
  23071. },
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(15.6, "meters"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(4 + 11 / 12, "feet"),
  23084. weight: math.unit(140, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/sesh/front.svg",
  23088. extra: 3420 / 3231,
  23089. bottom: 72 / 3949.5
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Normal",
  23096. height: math.unit(4 + 11 / 12, "feet")
  23097. },
  23098. {
  23099. name: "Grown",
  23100. height: math.unit(15, "feet"),
  23101. default: true
  23102. },
  23103. {
  23104. name: "Macro",
  23105. height: math.unit(1500, "feet")
  23106. },
  23107. {
  23108. name: "Megamacro",
  23109. height: math.unit(30, "miles")
  23110. },
  23111. {
  23112. name: "Continental",
  23113. height: math.unit(3000, "miles")
  23114. },
  23115. {
  23116. name: "Gravity Mass",
  23117. height: math.unit(300000, "miles")
  23118. },
  23119. {
  23120. name: "Planet Buster",
  23121. height: math.unit(30000000, "miles")
  23122. },
  23123. {
  23124. name: "Big",
  23125. height: math.unit(3000000000, "miles")
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23131. {
  23132. front: {
  23133. height: math.unit(9, "feet"),
  23134. weight: math.unit(350, "lb"),
  23135. name: "Front",
  23136. image: {
  23137. source: "./media/characters/pepper/front.svg",
  23138. extra: 1448 / 1312,
  23139. bottom: 9.4 / 1457.88
  23140. }
  23141. },
  23142. back: {
  23143. height: math.unit(9, "feet"),
  23144. weight: math.unit(350, "lb"),
  23145. name: "Back",
  23146. image: {
  23147. source: "./media/characters/pepper/back.svg",
  23148. extra: 1423 / 1300,
  23149. bottom: 4.6 / 1429
  23150. }
  23151. },
  23152. maw: {
  23153. height: math.unit(0.932, "feet"),
  23154. name: "Maw",
  23155. image: {
  23156. source: "./media/characters/pepper/maw.svg"
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(9, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(6, "feet"),
  23173. weight: math.unit(150, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/maelstrom/front.svg",
  23177. extra: 2100 / 1883,
  23178. bottom: 94 / 2196.7
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Less Kaiju",
  23185. height: math.unit(200, "feet")
  23186. },
  23187. {
  23188. name: "Kaiju",
  23189. height: math.unit(400, "feet"),
  23190. default: true
  23191. },
  23192. {
  23193. name: "Kaiju-er",
  23194. height: math.unit(600, "feet")
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23200. {
  23201. front: {
  23202. height: math.unit(6 + 5 / 12, "feet"),
  23203. weight: math.unit(180, "lb"),
  23204. name: "Front",
  23205. image: {
  23206. source: "./media/characters/lexir/front.svg",
  23207. extra: 180 / 172,
  23208. bottom: 12 / 192
  23209. }
  23210. },
  23211. back: {
  23212. height: math.unit(6 + 5 / 12, "feet"),
  23213. weight: math.unit(180, "lb"),
  23214. name: "Back",
  23215. image: {
  23216. source: "./media/characters/lexir/back.svg",
  23217. extra: 183.84 / 175.5,
  23218. bottom: 3.1 / 187
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Very Smal",
  23225. height: math.unit(1, "nm")
  23226. },
  23227. {
  23228. name: "Normal",
  23229. height: math.unit(6 + 5 / 12, "feet"),
  23230. default: true
  23231. },
  23232. {
  23233. name: "Macro",
  23234. height: math.unit(1, "mile")
  23235. },
  23236. {
  23237. name: "Megamacro",
  23238. height: math.unit(50, "miles")
  23239. },
  23240. ]
  23241. ))
  23242. characterMakers.push(() => makeCharacter(
  23243. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23244. {
  23245. front: {
  23246. height: math.unit(1.5, "meters"),
  23247. weight: math.unit(100, "lb"),
  23248. name: "Front",
  23249. image: {
  23250. source: "./media/characters/maksio/front.svg",
  23251. extra: 1549 / 1531,
  23252. bottom: 123.7 / 1674.5429
  23253. }
  23254. },
  23255. back: {
  23256. height: math.unit(1.5, "meters"),
  23257. weight: math.unit(100, "lb"),
  23258. name: "Back",
  23259. image: {
  23260. source: "./media/characters/maksio/back.svg",
  23261. extra: 1541 / 1509,
  23262. bottom: 97 / 1639
  23263. }
  23264. },
  23265. hand: {
  23266. height: math.unit(0.621, "feet"),
  23267. name: "Hand",
  23268. image: {
  23269. source: "./media/characters/maksio/hand.svg"
  23270. }
  23271. },
  23272. foot: {
  23273. height: math.unit(1.611, "feet"),
  23274. name: "Foot",
  23275. image: {
  23276. source: "./media/characters/maksio/foot.svg"
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Shrunken",
  23283. height: math.unit(10, "cm")
  23284. },
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(150, "cm"),
  23288. default: true
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23294. {
  23295. front: {
  23296. height: math.unit(100, "feet"),
  23297. name: "Front",
  23298. image: {
  23299. source: "./media/characters/erza-bear/front.svg",
  23300. extra: 2449 / 2390,
  23301. bottom: 46 / 2494
  23302. }
  23303. },
  23304. back: {
  23305. height: math.unit(100, "feet"),
  23306. name: "Back",
  23307. image: {
  23308. source: "./media/characters/erza-bear/back.svg",
  23309. extra: 2489 / 2430,
  23310. bottom: 85.4 / 2480
  23311. }
  23312. },
  23313. tail: {
  23314. height: math.unit(42, "feet"),
  23315. name: "Tail",
  23316. image: {
  23317. source: "./media/characters/erza-bear/tail.svg"
  23318. }
  23319. },
  23320. tongue: {
  23321. height: math.unit(8, "feet"),
  23322. name: "Tongue",
  23323. image: {
  23324. source: "./media/characters/erza-bear/tongue.svg"
  23325. }
  23326. },
  23327. dick: {
  23328. height: math.unit(10.5, "feet"),
  23329. name: "Dick",
  23330. image: {
  23331. source: "./media/characters/erza-bear/dick.svg"
  23332. }
  23333. },
  23334. dickVertical: {
  23335. height: math.unit(16.9, "feet"),
  23336. name: "Dick (Vertical)",
  23337. image: {
  23338. source: "./media/characters/erza-bear/dick-vertical.svg"
  23339. }
  23340. },
  23341. },
  23342. [
  23343. {
  23344. name: "Macro",
  23345. height: math.unit(100, "feet"),
  23346. default: true
  23347. },
  23348. ]
  23349. ))
  23350. characterMakers.push(() => makeCharacter(
  23351. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23352. {
  23353. front: {
  23354. height: math.unit(172, "cm"),
  23355. weight: math.unit(73, "kg"),
  23356. name: "Front",
  23357. image: {
  23358. source: "./media/characters/violet-flor/front.svg",
  23359. extra: 1530 / 1442,
  23360. bottom: 61.9 / 1588.8
  23361. }
  23362. },
  23363. back: {
  23364. height: math.unit(180, "cm"),
  23365. weight: math.unit(73, "kg"),
  23366. name: "Back",
  23367. image: {
  23368. source: "./media/characters/violet-flor/back.svg",
  23369. extra: 1692 / 1630,
  23370. bottom: 20 / 1712
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(172, "cm"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(6, "feet"),
  23387. weight: math.unit(220, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/lynn-rhea/front.svg",
  23391. extra: 310 / 273
  23392. }
  23393. },
  23394. back: {
  23395. height: math.unit(6, "feet"),
  23396. weight: math.unit(220, "lb"),
  23397. name: "Back",
  23398. image: {
  23399. source: "./media/characters/lynn-rhea/back.svg",
  23400. extra: 310 / 273
  23401. }
  23402. },
  23403. dicks: {
  23404. height: math.unit(0.9, "feet"),
  23405. name: "Dicks",
  23406. image: {
  23407. source: "./media/characters/lynn-rhea/dicks.svg"
  23408. }
  23409. },
  23410. slit: {
  23411. height: math.unit(0.4, "feet"),
  23412. name: "Slit",
  23413. image: {
  23414. source: "./media/characters/lynn-rhea/slit.svg"
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Micro",
  23421. height: math.unit(1, "inch")
  23422. },
  23423. {
  23424. name: "Macro",
  23425. height: math.unit(60, "feet"),
  23426. default: true
  23427. },
  23428. {
  23429. name: "Megamacro",
  23430. height: math.unit(2, "miles")
  23431. },
  23432. {
  23433. name: "Gigamacro",
  23434. height: math.unit(3, "earths")
  23435. },
  23436. {
  23437. name: "Galactic",
  23438. height: math.unit(0.8, "galaxies")
  23439. },
  23440. ]
  23441. ))
  23442. characterMakers.push(() => makeCharacter(
  23443. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23444. {
  23445. front: {
  23446. height: math.unit(1600, "feet"),
  23447. weight: math.unit(85758785169, "kg"),
  23448. name: "Front",
  23449. image: {
  23450. source: "./media/characters/valathos/front.svg",
  23451. extra: 1451 / 1339
  23452. }
  23453. },
  23454. },
  23455. [
  23456. {
  23457. name: "Macro",
  23458. height: math.unit(1600, "feet"),
  23459. default: true
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23465. {
  23466. front: {
  23467. height: math.unit(7 + 5 / 12, "feet"),
  23468. weight: math.unit(300, "lb"),
  23469. name: "Front",
  23470. image: {
  23471. source: "./media/characters/azula/front.svg",
  23472. extra: 3208 / 2880,
  23473. bottom: 80.2 / 3277
  23474. }
  23475. },
  23476. back: {
  23477. height: math.unit(7 + 5 / 12, "feet"),
  23478. weight: math.unit(300, "lb"),
  23479. name: "Back",
  23480. image: {
  23481. source: "./media/characters/azula/back.svg",
  23482. extra: 3169 / 2822,
  23483. bottom: 150.6 / 3321
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(7 + 5 / 12, "feet"),
  23491. default: true
  23492. },
  23493. {
  23494. name: "Big",
  23495. height: math.unit(20, "feet")
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23501. {
  23502. front: {
  23503. height: math.unit(5 + 1 / 12, "feet"),
  23504. weight: math.unit(110, "lb"),
  23505. name: "Front",
  23506. image: {
  23507. source: "./media/characters/rupert/front.svg",
  23508. extra: 1549 / 1495,
  23509. bottom: 54.2 / 1604.4
  23510. }
  23511. },
  23512. },
  23513. [
  23514. {
  23515. name: "Normal",
  23516. height: math.unit(5 + 1 / 12, "feet"),
  23517. default: true
  23518. },
  23519. ]
  23520. ))
  23521. characterMakers.push(() => makeCharacter(
  23522. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23523. {
  23524. front: {
  23525. height: math.unit(8 + 4 / 12, "feet"),
  23526. weight: math.unit(350, "lb"),
  23527. name: "Front",
  23528. image: {
  23529. source: "./media/characters/sheera-castellar/front.svg",
  23530. extra: 1957 / 1894,
  23531. bottom: 26.97 / 1975.017
  23532. }
  23533. },
  23534. side: {
  23535. height: math.unit(8 + 4 / 12, "feet"),
  23536. weight: math.unit(350, "lb"),
  23537. name: "Side",
  23538. image: {
  23539. source: "./media/characters/sheera-castellar/side.svg",
  23540. extra: 1957 / 1894
  23541. }
  23542. },
  23543. back: {
  23544. height: math.unit(8 + 4 / 12, "feet"),
  23545. weight: math.unit(350, "lb"),
  23546. name: "Back",
  23547. image: {
  23548. source: "./media/characters/sheera-castellar/back.svg",
  23549. extra: 1957 / 1894
  23550. }
  23551. },
  23552. angled: {
  23553. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23554. weight: math.unit(350, "lb"),
  23555. name: "Angled",
  23556. image: {
  23557. source: "./media/characters/sheera-castellar/angled.svg",
  23558. extra: 1807 / 1707,
  23559. bottom: 68 / 1875
  23560. }
  23561. },
  23562. genitals: {
  23563. height: math.unit(2.2, "feet"),
  23564. name: "Genitals",
  23565. image: {
  23566. source: "./media/characters/sheera-castellar/genitals.svg"
  23567. }
  23568. },
  23569. taur: {
  23570. height: math.unit(10 + 6/12, "feet"),
  23571. name: "Taur",
  23572. image: {
  23573. source: "./media/characters/sheera-castellar/taur.svg",
  23574. extra: 2017/1909,
  23575. bottom: 185/2202
  23576. }
  23577. },
  23578. },
  23579. [
  23580. {
  23581. name: "Normal",
  23582. height: math.unit(8 + 4 / 12, "feet")
  23583. },
  23584. {
  23585. name: "Macro",
  23586. height: math.unit(150, "feet"),
  23587. default: true
  23588. },
  23589. {
  23590. name: "Macro+",
  23591. height: math.unit(800, "feet")
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(6, "feet"),
  23600. weight: math.unit(150, "lb"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/jaipur/front.svg",
  23604. extra: 3860 / 3731,
  23605. bottom: 287 / 4140
  23606. }
  23607. },
  23608. back: {
  23609. height: math.unit(6, "feet"),
  23610. weight: math.unit(150, "lb"),
  23611. name: "Back",
  23612. image: {
  23613. source: "./media/characters/jaipur/back.svg",
  23614. extra: 4060 / 3930,
  23615. bottom: 151 / 4200
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(1.85, "meters"),
  23623. default: true
  23624. },
  23625. {
  23626. name: "Macro",
  23627. height: math.unit(150, "meters")
  23628. },
  23629. {
  23630. name: "Macro+",
  23631. height: math.unit(0.5, "miles")
  23632. },
  23633. {
  23634. name: "Macro++",
  23635. height: math.unit(2.5, "miles")
  23636. },
  23637. {
  23638. name: "Macro+++",
  23639. height: math.unit(12, "miles")
  23640. },
  23641. {
  23642. name: "Macro++++",
  23643. height: math.unit(120, "miles")
  23644. },
  23645. {
  23646. name: "Macro+++++",
  23647. height: math.unit(1200, "miles")
  23648. },
  23649. ]
  23650. ))
  23651. characterMakers.push(() => makeCharacter(
  23652. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23653. {
  23654. front: {
  23655. height: math.unit(6, "feet"),
  23656. weight: math.unit(150, "lb"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/sheila-wolf/front.svg",
  23660. extra: 1931 / 1808,
  23661. bottom: 29.5 / 1960
  23662. }
  23663. },
  23664. dick: {
  23665. height: math.unit(1.464, "feet"),
  23666. name: "Dick",
  23667. image: {
  23668. source: "./media/characters/sheila-wolf/dick.svg"
  23669. }
  23670. },
  23671. muzzle: {
  23672. height: math.unit(0.513, "feet"),
  23673. name: "Muzzle",
  23674. image: {
  23675. source: "./media/characters/sheila-wolf/muzzle.svg"
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Macro",
  23682. height: math.unit(70, "feet"),
  23683. default: true
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(32, "meters"),
  23692. weight: math.unit(300000, "kg"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/almor/front.svg",
  23696. extra: 1408 / 1322,
  23697. bottom: 94.6 / 1506.5
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(32, "meters"),
  23705. default: true
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23711. {
  23712. front: {
  23713. height: math.unit(7, "feet"),
  23714. weight: math.unit(200, "lb"),
  23715. name: "Front",
  23716. image: {
  23717. source: "./media/characters/silver/front.svg",
  23718. extra: 472.1 / 450.5,
  23719. bottom: 26.5 / 499.424
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Normal",
  23726. height: math.unit(7, "feet"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(800, "feet")
  23732. },
  23733. {
  23734. name: "Megamacro",
  23735. height: math.unit(250, "miles")
  23736. },
  23737. ]
  23738. ))
  23739. characterMakers.push(() => makeCharacter(
  23740. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23741. {
  23742. front: {
  23743. height: math.unit(6, "feet"),
  23744. weight: math.unit(150, "lb"),
  23745. name: "Front",
  23746. image: {
  23747. source: "./media/characters/pliskin/front.svg",
  23748. extra: 1469 / 1359,
  23749. bottom: 70 / 1540
  23750. }
  23751. },
  23752. },
  23753. [
  23754. {
  23755. name: "Micro",
  23756. height: math.unit(3, "inches")
  23757. },
  23758. {
  23759. name: "Normal",
  23760. height: math.unit(5 + 11 / 12, "feet"),
  23761. default: true
  23762. },
  23763. {
  23764. name: "Macro",
  23765. height: math.unit(120, "feet")
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23771. {
  23772. front: {
  23773. height: math.unit(6, "feet"),
  23774. weight: math.unit(150, "lb"),
  23775. name: "Front",
  23776. image: {
  23777. source: "./media/characters/sammy/front.svg",
  23778. extra: 1193 / 1089,
  23779. bottom: 30.5 / 1226
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Macro",
  23786. height: math.unit(1700, "feet"),
  23787. default: true
  23788. },
  23789. {
  23790. name: "Examacro",
  23791. height: math.unit(2.5e9, "lightyears")
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(21, "meters"),
  23800. weight: math.unit(12, "tonnes"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/kuru/front.svg",
  23804. extra: 4301 / 3785,
  23805. bottom: 371.3 / 4691
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Macro",
  23812. height: math.unit(21, "meters"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23819. {
  23820. front: {
  23821. height: math.unit(23, "meters"),
  23822. weight: math.unit(12.2, "tonnes"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/rakka/front.svg",
  23826. extra: 4670 / 4169,
  23827. bottom: 301 / 4968.7
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Macro",
  23834. height: math.unit(23, "meters"),
  23835. default: true
  23836. },
  23837. ]
  23838. ))
  23839. characterMakers.push(() => makeCharacter(
  23840. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23841. {
  23842. front: {
  23843. height: math.unit(6, "feet"),
  23844. weight: math.unit(150, "lb"),
  23845. name: "Front",
  23846. image: {
  23847. source: "./media/characters/rhys-feline/front.svg",
  23848. extra: 2488 / 2308,
  23849. bottom: 35.67 / 2519.19
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Really Small",
  23856. height: math.unit(1, "nm")
  23857. },
  23858. {
  23859. name: "Micro",
  23860. height: math.unit(4, "inches")
  23861. },
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(4 + 10 / 12, "feet"),
  23865. default: true
  23866. },
  23867. {
  23868. name: "Macro",
  23869. height: math.unit(100, "feet")
  23870. },
  23871. {
  23872. name: "Megamacto",
  23873. height: math.unit(50, "miles")
  23874. },
  23875. ]
  23876. ))
  23877. characterMakers.push(() => makeCharacter(
  23878. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23879. {
  23880. side: {
  23881. height: math.unit(30, "feet"),
  23882. weight: math.unit(35000, "kg"),
  23883. name: "Side",
  23884. image: {
  23885. source: "./media/characters/alydar/side.svg",
  23886. extra: 234 / 222,
  23887. bottom: 6.5 / 241
  23888. }
  23889. },
  23890. front: {
  23891. height: math.unit(30, "feet"),
  23892. weight: math.unit(35000, "kg"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/alydar/front.svg",
  23896. extra: 223.37 / 210.2,
  23897. bottom: 22.3 / 246.76
  23898. }
  23899. },
  23900. top: {
  23901. height: math.unit(64.54, "feet"),
  23902. weight: math.unit(35000, "kg"),
  23903. name: "Top",
  23904. image: {
  23905. source: "./media/characters/alydar/top.svg"
  23906. }
  23907. },
  23908. anthro: {
  23909. height: math.unit(30, "feet"),
  23910. weight: math.unit(9000, "kg"),
  23911. name: "Anthro",
  23912. image: {
  23913. source: "./media/characters/alydar/anthro.svg",
  23914. extra: 432 / 421,
  23915. bottom: 7.18 / 440
  23916. }
  23917. },
  23918. maw: {
  23919. height: math.unit(11.693, "feet"),
  23920. name: "Maw",
  23921. image: {
  23922. source: "./media/characters/alydar/maw.svg"
  23923. }
  23924. },
  23925. head: {
  23926. height: math.unit(11.693, "feet"),
  23927. name: "Head",
  23928. image: {
  23929. source: "./media/characters/alydar/head.svg"
  23930. }
  23931. },
  23932. headAlt: {
  23933. height: math.unit(12.861, "feet"),
  23934. name: "Head (Alt)",
  23935. image: {
  23936. source: "./media/characters/alydar/head-alt.svg"
  23937. }
  23938. },
  23939. wing: {
  23940. height: math.unit(20.712, "feet"),
  23941. name: "Wing",
  23942. image: {
  23943. source: "./media/characters/alydar/wing.svg"
  23944. }
  23945. },
  23946. wingFeather: {
  23947. height: math.unit(9.662, "feet"),
  23948. name: "Wing Feather",
  23949. image: {
  23950. source: "./media/characters/alydar/wing-feather.svg"
  23951. }
  23952. },
  23953. countourFeather: {
  23954. height: math.unit(4.154, "feet"),
  23955. name: "Contour Feather",
  23956. image: {
  23957. source: "./media/characters/alydar/contour-feather.svg"
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Diplomatic",
  23964. height: math.unit(13, "feet"),
  23965. default: true
  23966. },
  23967. {
  23968. name: "Small",
  23969. height: math.unit(30, "feet")
  23970. },
  23971. {
  23972. name: "Normal",
  23973. height: math.unit(95, "feet"),
  23974. default: true
  23975. },
  23976. {
  23977. name: "Large",
  23978. height: math.unit(285, "feet")
  23979. },
  23980. {
  23981. name: "Incomprehensible",
  23982. height: math.unit(450, "megameters")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23988. {
  23989. side: {
  23990. height: math.unit(11, "feet"),
  23991. weight: math.unit(1750, "kg"),
  23992. name: "Side",
  23993. image: {
  23994. source: "./media/characters/selicia/side.svg",
  23995. extra: 440 / 396,
  23996. bottom: 24.8 / 465.979
  23997. }
  23998. },
  23999. maw: {
  24000. height: math.unit(4.665, "feet"),
  24001. name: "Maw",
  24002. image: {
  24003. source: "./media/characters/selicia/maw.svg"
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Normal",
  24010. height: math.unit(11, "feet"),
  24011. default: true
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24017. {
  24018. side: {
  24019. height: math.unit(2 + 6 / 12, "feet"),
  24020. weight: math.unit(30, "lb"),
  24021. name: "Side",
  24022. image: {
  24023. source: "./media/characters/layla/side.svg",
  24024. extra: 244 / 188,
  24025. bottom: 18.2 / 262.1
  24026. }
  24027. },
  24028. back: {
  24029. height: math.unit(2 + 6 / 12, "feet"),
  24030. weight: math.unit(30, "lb"),
  24031. name: "Back",
  24032. image: {
  24033. source: "./media/characters/layla/back.svg",
  24034. extra: 308 / 241.5,
  24035. bottom: 8.9 / 316.8
  24036. }
  24037. },
  24038. cumming: {
  24039. height: math.unit(2 + 6 / 12, "feet"),
  24040. weight: math.unit(30, "lb"),
  24041. name: "Cumming",
  24042. image: {
  24043. source: "./media/characters/layla/cumming.svg",
  24044. extra: 342 / 279,
  24045. bottom: 595 / 938
  24046. }
  24047. },
  24048. dickFlaccid: {
  24049. height: math.unit(2.595, "feet"),
  24050. name: "Flaccid Genitals",
  24051. image: {
  24052. source: "./media/characters/layla/dick-flaccid.svg"
  24053. }
  24054. },
  24055. dickErect: {
  24056. height: math.unit(2.359, "feet"),
  24057. name: "Erect Genitals",
  24058. image: {
  24059. source: "./media/characters/layla/dick-erect.svg"
  24060. }
  24061. },
  24062. dragon: {
  24063. height: math.unit(40, "feet"),
  24064. name: "Dragon",
  24065. image: {
  24066. source: "./media/characters/layla/dragon.svg",
  24067. extra: 610/535,
  24068. bottom: 367/977
  24069. }
  24070. },
  24071. taur: {
  24072. height: math.unit(30, "feet"),
  24073. name: "Taur",
  24074. image: {
  24075. source: "./media/characters/layla/taur.svg",
  24076. extra: 1268/1199,
  24077. bottom: 112/1380
  24078. }
  24079. },
  24080. },
  24081. [
  24082. {
  24083. name: "Micro",
  24084. height: math.unit(1, "inch")
  24085. },
  24086. {
  24087. name: "Small",
  24088. height: math.unit(1, "foot")
  24089. },
  24090. {
  24091. name: "Normal",
  24092. height: math.unit(2 + 6 / 12, "feet"),
  24093. default: true
  24094. },
  24095. {
  24096. name: "Macro",
  24097. height: math.unit(200, "feet")
  24098. },
  24099. {
  24100. name: "Megamacro",
  24101. height: math.unit(1000, "miles")
  24102. },
  24103. {
  24104. name: "Planetary",
  24105. height: math.unit(8000, "miles")
  24106. },
  24107. {
  24108. name: "True Layla",
  24109. height: math.unit(200000 * 7, "multiverses")
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24115. {
  24116. back: {
  24117. height: math.unit(10.5, "feet"),
  24118. weight: math.unit(800, "lb"),
  24119. name: "Back",
  24120. image: {
  24121. source: "./media/characters/knox/back.svg",
  24122. extra: 1486 / 1089,
  24123. bottom: 107 / 1601.4
  24124. }
  24125. },
  24126. side: {
  24127. height: math.unit(10.5, "feet"),
  24128. weight: math.unit(800, "lb"),
  24129. name: "Side",
  24130. image: {
  24131. source: "./media/characters/knox/side.svg",
  24132. extra: 244 / 218,
  24133. bottom: 14 / 260
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Compact",
  24140. height: math.unit(10.5, "feet"),
  24141. default: true
  24142. },
  24143. {
  24144. name: "Dynamax",
  24145. height: math.unit(210, "feet")
  24146. },
  24147. {
  24148. name: "Full Macro",
  24149. height: math.unit(850, "feet")
  24150. },
  24151. ]
  24152. ))
  24153. characterMakers.push(() => makeCharacter(
  24154. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24155. {
  24156. front: {
  24157. height: math.unit(28, "feet"),
  24158. weight: math.unit(10500, "lb"),
  24159. name: "Front",
  24160. image: {
  24161. source: "./media/characters/kayda/front.svg",
  24162. extra: 1536 / 1428,
  24163. bottom: 68.7 / 1603
  24164. }
  24165. },
  24166. back: {
  24167. height: math.unit(28, "feet"),
  24168. weight: math.unit(10500, "lb"),
  24169. name: "Back",
  24170. image: {
  24171. source: "./media/characters/kayda/back.svg",
  24172. extra: 1557 / 1464,
  24173. bottom: 39.5 / 1597.49
  24174. }
  24175. },
  24176. dick: {
  24177. height: math.unit(3.858, "feet"),
  24178. name: "Dick",
  24179. image: {
  24180. source: "./media/characters/kayda/dick.svg"
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Macro",
  24187. height: math.unit(28, "feet"),
  24188. default: true
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24194. {
  24195. front: {
  24196. height: math.unit(10 + 11 / 12, "feet"),
  24197. weight: math.unit(1400, "lb"),
  24198. name: "Front",
  24199. image: {
  24200. source: "./media/characters/brian/front.svg",
  24201. extra: 737 / 692,
  24202. bottom: 55.4 / 785
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(10 + 11 / 12, "feet"),
  24210. default: true
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(5 + 8 / 12, "feet"),
  24219. weight: math.unit(140, "lb"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/khemri/front.svg",
  24223. extra: 4780 / 4059,
  24224. bottom: 80.1 / 4859.25
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Micro",
  24231. height: math.unit(6, "inches")
  24232. },
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(5 + 8 / 12, "feet"),
  24236. default: true
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24242. {
  24243. front: {
  24244. height: math.unit(13, "feet"),
  24245. weight: math.unit(1700, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/felix-braveheart/front.svg",
  24249. extra: 1222 / 1157,
  24250. bottom: 53.2 / 1280
  24251. }
  24252. },
  24253. back: {
  24254. height: math.unit(13, "feet"),
  24255. weight: math.unit(1700, "lb"),
  24256. name: "Back",
  24257. image: {
  24258. source: "./media/characters/felix-braveheart/back.svg",
  24259. extra: 1277 / 1203,
  24260. bottom: 50.2 / 1327
  24261. }
  24262. },
  24263. feral: {
  24264. height: math.unit(6, "feet"),
  24265. weight: math.unit(400, "lb"),
  24266. name: "Feral",
  24267. image: {
  24268. source: "./media/characters/felix-braveheart/feral.svg",
  24269. extra: 682 / 625,
  24270. bottom: 6.9 / 688
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(13, "feet"),
  24278. default: true
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24284. {
  24285. side: {
  24286. height: math.unit(5 + 11 / 12, "feet"),
  24287. weight: math.unit(1400, "lb"),
  24288. name: "Side",
  24289. image: {
  24290. source: "./media/characters/shadow-blade/side.svg",
  24291. extra: 1726 / 1267,
  24292. bottom: 58.4 / 1785
  24293. }
  24294. },
  24295. },
  24296. [
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(5 + 11 / 12, "feet"),
  24300. default: true
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(1 + 6 / 12, "feet"),
  24309. weight: math.unit(25, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/karla-halldor/front.svg",
  24313. extra: 1459 / 1383,
  24314. bottom: 12 / 1472
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Normal",
  24321. height: math.unit(1 + 6 / 12, "feet"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(6 + 2 / 12, "feet"),
  24331. weight: math.unit(160, "lb"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/ariam/front.svg",
  24335. extra: 1073/976,
  24336. bottom: 52/1125
  24337. }
  24338. },
  24339. back: {
  24340. height: math.unit(6 + 2/12, "feet"),
  24341. weight: math.unit(160, "lb"),
  24342. name: "Back",
  24343. image: {
  24344. source: "./media/characters/ariam/back.svg",
  24345. extra: 1103/1023,
  24346. bottom: 9/1112
  24347. }
  24348. },
  24349. dressed: {
  24350. height: math.unit(6 + 2/12, "feet"),
  24351. weight: math.unit(160, "lb"),
  24352. name: "Dressed",
  24353. image: {
  24354. source: "./media/characters/ariam/dressed.svg",
  24355. extra: 1099/1009,
  24356. bottom: 25/1124
  24357. }
  24358. },
  24359. squatting: {
  24360. height: math.unit(4.1, "feet"),
  24361. weight: math.unit(160, "lb"),
  24362. name: "Squatting",
  24363. image: {
  24364. source: "./media/characters/ariam/squatting.svg",
  24365. extra: 2617 / 2112,
  24366. bottom: 61.2 / 2681,
  24367. }
  24368. },
  24369. },
  24370. [
  24371. {
  24372. name: "Normal",
  24373. height: math.unit(6 + 2 / 12, "feet"),
  24374. default: true
  24375. },
  24376. {
  24377. name: "Normal+",
  24378. height: math.unit(4, "meters")
  24379. },
  24380. {
  24381. name: "Macro",
  24382. height: math.unit(50, "meters")
  24383. },
  24384. {
  24385. name: "Macro+",
  24386. height: math.unit(100, "meters")
  24387. },
  24388. {
  24389. name: "Megamacro",
  24390. height: math.unit(20, "km")
  24391. },
  24392. {
  24393. name: "Caretaker",
  24394. height: math.unit(444, "megameters")
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(1.67, "meters"),
  24403. weight: math.unit(140, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24407. extra: 438 / 410,
  24408. bottom: 0.75 / 439
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "Shrunken",
  24415. height: math.unit(7.6, "cm")
  24416. },
  24417. {
  24418. name: "Human Scale",
  24419. height: math.unit(1.67, "meters")
  24420. },
  24421. {
  24422. name: "Wolxi Scale",
  24423. height: math.unit(36.7, "meters"),
  24424. default: true
  24425. },
  24426. ]
  24427. ))
  24428. characterMakers.push(() => makeCharacter(
  24429. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24430. {
  24431. front: {
  24432. height: math.unit(1.73, "meters"),
  24433. weight: math.unit(240, "lb"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/izue-two-mothers/front.svg",
  24437. extra: 469 / 437,
  24438. bottom: 1.24 / 470.6
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Shrunken",
  24445. height: math.unit(7.86, "cm")
  24446. },
  24447. {
  24448. name: "Human Scale",
  24449. height: math.unit(1.73, "meters")
  24450. },
  24451. {
  24452. name: "Wolxi Scale",
  24453. height: math.unit(38, "meters"),
  24454. default: true
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24460. {
  24461. front: {
  24462. height: math.unit(1.55, "meters"),
  24463. weight: math.unit(120, "lb"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/teeku-love-shack/front.svg",
  24467. extra: 387 / 362,
  24468. bottom: 1.51 / 388
  24469. }
  24470. },
  24471. },
  24472. [
  24473. {
  24474. name: "Shrunken",
  24475. height: math.unit(7, "cm")
  24476. },
  24477. {
  24478. name: "Human Scale",
  24479. height: math.unit(1.55, "meters")
  24480. },
  24481. {
  24482. name: "Wolxi Scale",
  24483. height: math.unit(34.1, "meters"),
  24484. default: true
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24490. {
  24491. front: {
  24492. height: math.unit(1.83, "meters"),
  24493. weight: math.unit(135, "lb"),
  24494. name: "Front",
  24495. image: {
  24496. source: "./media/characters/dejma-the-red/front.svg",
  24497. extra: 480 / 458,
  24498. bottom: 1.8 / 482
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Shrunken",
  24505. height: math.unit(8.3, "cm")
  24506. },
  24507. {
  24508. name: "Human Scale",
  24509. height: math.unit(1.83, "meters")
  24510. },
  24511. {
  24512. name: "Wolxi Scale",
  24513. height: math.unit(40, "meters"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(1.78, "meters"),
  24523. weight: math.unit(65, "kg"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/aki/front.svg",
  24527. extra: 452 / 415
  24528. }
  24529. },
  24530. frontNsfw: {
  24531. height: math.unit(1.78, "meters"),
  24532. weight: math.unit(65, "kg"),
  24533. name: "Front (NSFW)",
  24534. image: {
  24535. source: "./media/characters/aki/front-nsfw.svg",
  24536. extra: 452 / 415
  24537. }
  24538. },
  24539. back: {
  24540. height: math.unit(1.78, "meters"),
  24541. weight: math.unit(65, "kg"),
  24542. name: "Back",
  24543. image: {
  24544. source: "./media/characters/aki/back.svg",
  24545. extra: 452 / 415
  24546. }
  24547. },
  24548. rump: {
  24549. height: math.unit(2.05, "feet"),
  24550. name: "Rump",
  24551. image: {
  24552. source: "./media/characters/aki/rump.svg"
  24553. }
  24554. },
  24555. dick: {
  24556. height: math.unit(0.95, "feet"),
  24557. name: "Dick",
  24558. image: {
  24559. source: "./media/characters/aki/dick.svg"
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Micro",
  24566. height: math.unit(15, "cm")
  24567. },
  24568. {
  24569. name: "Normal",
  24570. height: math.unit(178, "cm"),
  24571. default: true
  24572. },
  24573. {
  24574. name: "Macro",
  24575. height: math.unit(214, "m")
  24576. },
  24577. {
  24578. name: "Macro+",
  24579. height: math.unit(534, "m")
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24585. {
  24586. front: {
  24587. height: math.unit(5 + 5 / 12, "feet"),
  24588. weight: math.unit(120, "lb"),
  24589. name: "Front",
  24590. image: {
  24591. source: "./media/characters/ari/front.svg",
  24592. extra: 714.5 / 682,
  24593. bottom: 8 / 722.5
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Normal",
  24600. height: math.unit(5 + 5 / 12, "feet")
  24601. },
  24602. {
  24603. name: "Macro",
  24604. height: math.unit(100, "feet"),
  24605. default: true
  24606. },
  24607. {
  24608. name: "Megamacro",
  24609. height: math.unit(100, "miles")
  24610. },
  24611. {
  24612. name: "Gigamacro",
  24613. height: math.unit(80000, "miles")
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24619. {
  24620. side: {
  24621. height: math.unit(9, "feet"),
  24622. weight: math.unit(400, "kg"),
  24623. name: "Side",
  24624. image: {
  24625. source: "./media/characters/bolt/side.svg",
  24626. extra: 1126 / 896,
  24627. bottom: 60 / 1187.3,
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Micro",
  24634. height: math.unit(5, "inches")
  24635. },
  24636. {
  24637. name: "Normal",
  24638. height: math.unit(9, "feet"),
  24639. default: true
  24640. },
  24641. {
  24642. name: "Macro",
  24643. height: math.unit(700, "feet")
  24644. },
  24645. {
  24646. name: "Max Size",
  24647. height: math.unit(1.52e22, "yottameters")
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24653. {
  24654. front: {
  24655. height: math.unit(4.53, "meters"),
  24656. weight: math.unit(3, "tons"),
  24657. name: "Front",
  24658. image: {
  24659. source: "./media/characters/draekon-sylviar/front.svg",
  24660. extra: 1228 / 1068,
  24661. bottom: 41 / 1270
  24662. }
  24663. },
  24664. tail: {
  24665. height: math.unit(1.772, "meter"),
  24666. name: "Tail",
  24667. image: {
  24668. source: "./media/characters/draekon-sylviar/tail.svg"
  24669. }
  24670. },
  24671. head: {
  24672. height: math.unit(1.331, "meter"),
  24673. name: "Head",
  24674. image: {
  24675. source: "./media/characters/draekon-sylviar/head.svg"
  24676. }
  24677. },
  24678. hand: {
  24679. height: math.unit(0.564, "meter"),
  24680. name: "Hand",
  24681. image: {
  24682. source: "./media/characters/draekon-sylviar/hand.svg"
  24683. }
  24684. },
  24685. foot: {
  24686. height: math.unit(0.621, "meter"),
  24687. name: "Foot",
  24688. image: {
  24689. source: "./media/characters/draekon-sylviar/foot.svg",
  24690. bottom: 32 / 324
  24691. }
  24692. },
  24693. dick: {
  24694. height: math.unit(61, "cm"),
  24695. name: "Dick",
  24696. image: {
  24697. source: "./media/characters/draekon-sylviar/dick.svg"
  24698. }
  24699. },
  24700. dickseparated: {
  24701. height: math.unit(61, "cm"),
  24702. name: "Dick-separated",
  24703. image: {
  24704. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Small",
  24711. height: math.unit(4.53 / 2, "meters"),
  24712. default: true
  24713. },
  24714. {
  24715. name: "Normal",
  24716. height: math.unit(4.53, "meters"),
  24717. default: true
  24718. },
  24719. {
  24720. name: "Large",
  24721. height: math.unit(4.53 * 2, "meters"),
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(6 + 2 / 12, "feet"),
  24730. weight: math.unit(180, "lb"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/brawler/front.svg",
  24734. extra: 3301 / 3027,
  24735. bottom: 138 / 3439
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(6 + 2 / 12, "feet"),
  24743. default: true
  24744. },
  24745. ]
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24749. {
  24750. front: {
  24751. height: math.unit(11, "feet"),
  24752. weight: math.unit(1000, "lb"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/alex/front.svg",
  24756. bottom: 44.5 / 620
  24757. }
  24758. },
  24759. },
  24760. [
  24761. {
  24762. name: "Micro",
  24763. height: math.unit(5, "inches")
  24764. },
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(11, "feet"),
  24768. default: true
  24769. },
  24770. {
  24771. name: "Macro",
  24772. height: math.unit(9.5e9, "feet")
  24773. },
  24774. {
  24775. name: "Max Size",
  24776. height: math.unit(1.4e283, "yottameters")
  24777. },
  24778. ]
  24779. ))
  24780. characterMakers.push(() => makeCharacter(
  24781. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24782. {
  24783. female: {
  24784. height: math.unit(29.9, "m"),
  24785. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24786. name: "Female",
  24787. image: {
  24788. source: "./media/characters/zenari/female.svg",
  24789. extra: 3281.6 / 3217,
  24790. bottom: 72.2 / 3353
  24791. }
  24792. },
  24793. male: {
  24794. height: math.unit(27.7, "m"),
  24795. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24796. name: "Male",
  24797. image: {
  24798. source: "./media/characters/zenari/male.svg",
  24799. extra: 3008 / 2991,
  24800. bottom: 54.6 / 3069
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Macro",
  24807. height: math.unit(29.7, "meters"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24814. {
  24815. female: {
  24816. height: math.unit(23.8, "m"),
  24817. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24818. name: "Female",
  24819. image: {
  24820. source: "./media/characters/mactarian/female.svg",
  24821. extra: 2662 / 2569,
  24822. bottom: 73 / 2736
  24823. }
  24824. },
  24825. male: {
  24826. height: math.unit(23.8, "m"),
  24827. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24828. name: "Male",
  24829. image: {
  24830. source: "./media/characters/mactarian/male.svg",
  24831. extra: 2673 / 2600,
  24832. bottom: 76 / 2750
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Macro",
  24839. height: math.unit(23.8, "meters"),
  24840. default: true
  24841. },
  24842. ]
  24843. ))
  24844. characterMakers.push(() => makeCharacter(
  24845. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24846. {
  24847. female: {
  24848. height: math.unit(19.3, "m"),
  24849. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24850. name: "Female",
  24851. image: {
  24852. source: "./media/characters/umok/female.svg",
  24853. extra: 2186 / 2078,
  24854. bottom: 87 / 2277
  24855. }
  24856. },
  24857. male: {
  24858. height: math.unit(19.5, "m"),
  24859. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24860. name: "Male",
  24861. image: {
  24862. source: "./media/characters/umok/male.svg",
  24863. extra: 2233 / 2140,
  24864. bottom: 24.4 / 2258
  24865. }
  24866. },
  24867. },
  24868. [
  24869. {
  24870. name: "Macro",
  24871. height: math.unit(19.3, "meters"),
  24872. default: true
  24873. },
  24874. ]
  24875. ))
  24876. characterMakers.push(() => makeCharacter(
  24877. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24878. {
  24879. female: {
  24880. height: math.unit(26.15, "m"),
  24881. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24882. name: "Female",
  24883. image: {
  24884. source: "./media/characters/joraxian/female.svg",
  24885. extra: 2912 / 2824,
  24886. bottom: 36 / 2956
  24887. }
  24888. },
  24889. male: {
  24890. height: math.unit(25.4, "m"),
  24891. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24892. name: "Male",
  24893. image: {
  24894. source: "./media/characters/joraxian/male.svg",
  24895. extra: 2877 / 2721,
  24896. bottom: 82 / 2967
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Macro",
  24903. height: math.unit(26.15, "meters"),
  24904. default: true
  24905. },
  24906. ]
  24907. ))
  24908. characterMakers.push(() => makeCharacter(
  24909. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24910. {
  24911. female: {
  24912. height: math.unit(21.6, "m"),
  24913. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24914. name: "Female",
  24915. image: {
  24916. source: "./media/characters/sthara/female.svg",
  24917. extra: 2516 / 2347,
  24918. bottom: 21.5 / 2537
  24919. }
  24920. },
  24921. male: {
  24922. height: math.unit(24, "m"),
  24923. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24924. name: "Male",
  24925. image: {
  24926. source: "./media/characters/sthara/male.svg",
  24927. extra: 2732 / 2607,
  24928. bottom: 23 / 2732
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Macro",
  24935. height: math.unit(21.6, "meters"),
  24936. default: true
  24937. },
  24938. ]
  24939. ))
  24940. characterMakers.push(() => makeCharacter(
  24941. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24942. {
  24943. front: {
  24944. height: math.unit(6 + 4 / 12, "feet"),
  24945. weight: math.unit(175, "lb"),
  24946. name: "Front",
  24947. image: {
  24948. source: "./media/characters/luka-bryzant/front.svg",
  24949. extra: 311 / 289,
  24950. bottom: 4 / 315
  24951. }
  24952. },
  24953. back: {
  24954. height: math.unit(6 + 4 / 12, "feet"),
  24955. weight: math.unit(175, "lb"),
  24956. name: "Back",
  24957. image: {
  24958. source: "./media/characters/luka-bryzant/back.svg",
  24959. extra: 311 / 289,
  24960. bottom: 3.8 / 313.7
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Micro",
  24967. height: math.unit(10, "inches")
  24968. },
  24969. {
  24970. name: "Normal",
  24971. height: math.unit(6 + 4 / 12, "feet"),
  24972. default: true
  24973. },
  24974. {
  24975. name: "Large",
  24976. height: math.unit(12, "feet")
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(5 + 7 / 12, "feet"),
  24985. weight: math.unit(185, "lb"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/aman-aquila/front.svg",
  24989. extra: 1013 / 976,
  24990. bottom: 45.6 / 1057
  24991. }
  24992. },
  24993. side: {
  24994. height: math.unit(5 + 7 / 12, "feet"),
  24995. weight: math.unit(185, "lb"),
  24996. name: "Side",
  24997. image: {
  24998. source: "./media/characters/aman-aquila/side.svg",
  24999. extra: 1054 / 1011,
  25000. bottom: 15 / 1070
  25001. }
  25002. },
  25003. back: {
  25004. height: math.unit(5 + 7 / 12, "feet"),
  25005. weight: math.unit(185, "lb"),
  25006. name: "Back",
  25007. image: {
  25008. source: "./media/characters/aman-aquila/back.svg",
  25009. extra: 1026 / 970,
  25010. bottom: 12 / 1039
  25011. }
  25012. },
  25013. head: {
  25014. height: math.unit(1.211, "feet"),
  25015. name: "Head",
  25016. image: {
  25017. source: "./media/characters/aman-aquila/head.svg",
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Minimicro",
  25024. height: math.unit(0.057, "inches")
  25025. },
  25026. {
  25027. name: "Micro",
  25028. height: math.unit(7, "inches")
  25029. },
  25030. {
  25031. name: "Mini",
  25032. height: math.unit(3 + 7 / 12, "feet")
  25033. },
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(5 + 7 / 12, "feet"),
  25037. default: true
  25038. },
  25039. {
  25040. name: "Macro",
  25041. height: math.unit(157 + 7 / 12, "feet")
  25042. },
  25043. {
  25044. name: "Megamacro",
  25045. height: math.unit(1557 + 7 / 12, "feet")
  25046. },
  25047. {
  25048. name: "Gigamacro",
  25049. height: math.unit(15557 + 7 / 12, "feet")
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(3 + 2 / 12, "inches"),
  25058. weight: math.unit(0.3, "ounces"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/hiphae/front.svg",
  25062. extra: 1931 / 1683,
  25063. bottom: 24 / 1955
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Normal",
  25070. height: math.unit(3 + 1 / 2, "inches"),
  25071. default: true
  25072. },
  25073. ]
  25074. ))
  25075. characterMakers.push(() => makeCharacter(
  25076. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25077. {
  25078. front: {
  25079. height: math.unit(5 + 10 / 12, "feet"),
  25080. weight: math.unit(165, "lb"),
  25081. name: "Front",
  25082. image: {
  25083. source: "./media/characters/nicky/front.svg",
  25084. extra: 3144 / 2886,
  25085. bottom: 45.6 / 3192
  25086. }
  25087. },
  25088. back: {
  25089. height: math.unit(5 + 10 / 12, "feet"),
  25090. weight: math.unit(165, "lb"),
  25091. name: "Back",
  25092. image: {
  25093. source: "./media/characters/nicky/back.svg",
  25094. extra: 3055 / 2804,
  25095. bottom: 28.4 / 3087
  25096. }
  25097. },
  25098. frontclothed: {
  25099. height: math.unit(5 + 10 / 12, "feet"),
  25100. weight: math.unit(165, "lb"),
  25101. name: "Front-clothed",
  25102. image: {
  25103. source: "./media/characters/nicky/front-clothed.svg",
  25104. extra: 3184.9 / 2926.9,
  25105. bottom: 86.5 / 3239.9
  25106. }
  25107. },
  25108. foot: {
  25109. height: math.unit(1.16, "feet"),
  25110. name: "Foot",
  25111. image: {
  25112. source: "./media/characters/nicky/foot.svg"
  25113. }
  25114. },
  25115. feet: {
  25116. height: math.unit(1.34, "feet"),
  25117. name: "Feet",
  25118. image: {
  25119. source: "./media/characters/nicky/feet.svg"
  25120. }
  25121. },
  25122. maw: {
  25123. height: math.unit(0.9, "feet"),
  25124. name: "Maw",
  25125. image: {
  25126. source: "./media/characters/nicky/maw.svg"
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Normal",
  25133. height: math.unit(5 + 10 / 12, "feet"),
  25134. default: true
  25135. },
  25136. {
  25137. name: "Macro",
  25138. height: math.unit(60, "feet")
  25139. },
  25140. {
  25141. name: "Megamacro",
  25142. height: math.unit(1, "mile")
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25148. {
  25149. side: {
  25150. height: math.unit(10, "feet"),
  25151. weight: math.unit(600, "lb"),
  25152. name: "Side",
  25153. image: {
  25154. source: "./media/characters/blair/side.svg",
  25155. bottom: 16.6 / 475,
  25156. extra: 458 / 431
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Micro",
  25163. height: math.unit(8, "inches")
  25164. },
  25165. {
  25166. name: "Normal",
  25167. height: math.unit(10, "feet"),
  25168. default: true
  25169. },
  25170. {
  25171. name: "Macro",
  25172. height: math.unit(180, "feet")
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(5 + 4 / 12, "feet"),
  25181. weight: math.unit(125, "lb"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/fisher/front.svg",
  25185. extra: 444 / 390,
  25186. bottom: 2 / 444.8
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Micro",
  25193. height: math.unit(4, "inches")
  25194. },
  25195. {
  25196. name: "Normal",
  25197. height: math.unit(5 + 4 / 12, "feet"),
  25198. default: true
  25199. },
  25200. {
  25201. name: "Macro",
  25202. height: math.unit(100, "feet")
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25208. {
  25209. front: {
  25210. height: math.unit(6.71, "feet"),
  25211. weight: math.unit(200, "lb"),
  25212. capacity: math.unit(1000000, "people"),
  25213. name: "Front",
  25214. image: {
  25215. source: "./media/characters/gliss/front.svg",
  25216. extra: 2347 / 2231,
  25217. bottom: 113 / 2462
  25218. }
  25219. },
  25220. hammerspaceSize: {
  25221. height: math.unit(6.71 * 717, "feet"),
  25222. weight: math.unit(200, "lb"),
  25223. capacity: math.unit(1000000, "people"),
  25224. name: "Hammerspace Size",
  25225. image: {
  25226. source: "./media/characters/gliss/front.svg",
  25227. extra: 2347 / 2231,
  25228. bottom: 113 / 2462
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(6.71, "feet"),
  25236. default: true
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25242. {
  25243. side: {
  25244. height: math.unit(1.44, "m"),
  25245. weight: math.unit(80, "kg"),
  25246. name: "Side",
  25247. image: {
  25248. source: "./media/characters/dune-anderson/side.svg",
  25249. bottom: 49 / 1426
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Wolf-sized",
  25256. height: math.unit(1.44, "meters")
  25257. },
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(5.05, "meters"),
  25261. default: true
  25262. },
  25263. {
  25264. name: "Big",
  25265. height: math.unit(14.4, "meters")
  25266. },
  25267. {
  25268. name: "Huge",
  25269. height: math.unit(144, "meters")
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(7, "feet"),
  25278. weight: math.unit(425, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/hind/front.svg",
  25282. extra: 2091 / 1860,
  25283. bottom: 129 / 2220
  25284. }
  25285. },
  25286. back: {
  25287. height: math.unit(7, "feet"),
  25288. weight: math.unit(425, "lb"),
  25289. name: "Back",
  25290. image: {
  25291. source: "./media/characters/hind/back.svg",
  25292. extra: 2091 / 1860,
  25293. bottom: 24.6 / 2309
  25294. }
  25295. },
  25296. tail: {
  25297. height: math.unit(2.8, "feet"),
  25298. name: "Tail",
  25299. image: {
  25300. source: "./media/characters/hind/tail.svg"
  25301. }
  25302. },
  25303. head: {
  25304. height: math.unit(2.55, "feet"),
  25305. name: "Head",
  25306. image: {
  25307. source: "./media/characters/hind/head.svg"
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "XS",
  25314. height: math.unit(0.7, "feet")
  25315. },
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(7, "feet"),
  25319. default: true
  25320. },
  25321. {
  25322. name: "XL",
  25323. height: math.unit(70, "feet")
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(2.1, "meters"),
  25332. weight: math.unit(150, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/tharquench-sizestealer/front.svg",
  25336. extra: 1605/1470,
  25337. bottom: 36/1641
  25338. }
  25339. },
  25340. frontAlt: {
  25341. height: math.unit(2.1, "meters"),
  25342. weight: math.unit(150, "lb"),
  25343. name: "Front (Alt)",
  25344. image: {
  25345. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25346. extra: 2318 / 2063,
  25347. bottom: 93.4 / 2410
  25348. }
  25349. },
  25350. },
  25351. [
  25352. {
  25353. name: "Nano",
  25354. height: math.unit(1, "mm")
  25355. },
  25356. {
  25357. name: "Micro",
  25358. height: math.unit(1, "cm")
  25359. },
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(2.1, "meters"),
  25363. default: true
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25369. {
  25370. front: {
  25371. height: math.unit(7 + 5 / 12, "feet"),
  25372. weight: math.unit(357, "lb"),
  25373. name: "Front",
  25374. image: {
  25375. source: "./media/characters/solex-draconov/front.svg",
  25376. extra: 1993 / 1865,
  25377. bottom: 117 / 2111
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Natural Height",
  25384. height: math.unit(7 + 5 / 12, "feet"),
  25385. default: true
  25386. },
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(350, "feet")
  25390. },
  25391. {
  25392. name: "Macro+",
  25393. height: math.unit(1000, "feet")
  25394. },
  25395. {
  25396. name: "Megamacro",
  25397. height: math.unit(20, "km")
  25398. },
  25399. {
  25400. name: "Megamacro+",
  25401. height: math.unit(1000, "km")
  25402. },
  25403. {
  25404. name: "Gigamacro",
  25405. height: math.unit(2.5, "Gm")
  25406. },
  25407. {
  25408. name: "Teramacro",
  25409. height: math.unit(15, "Tm")
  25410. },
  25411. {
  25412. name: "Galactic",
  25413. height: math.unit(30, "Zm")
  25414. },
  25415. {
  25416. name: "Universal",
  25417. height: math.unit(21000, "Ym")
  25418. },
  25419. {
  25420. name: "Omniversal",
  25421. height: math.unit(9.861e50, "Ym")
  25422. },
  25423. {
  25424. name: "Existential",
  25425. height: math.unit(1e300, "meters")
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25431. {
  25432. side: {
  25433. height: math.unit(25, "feet"),
  25434. weight: math.unit(90000, "lb"),
  25435. name: "Side",
  25436. image: {
  25437. source: "./media/characters/mandarax/side.svg",
  25438. extra: 614 / 332,
  25439. bottom: 55 / 630
  25440. }
  25441. },
  25442. head: {
  25443. height: math.unit(11.4, "feet"),
  25444. name: "Head",
  25445. image: {
  25446. source: "./media/characters/mandarax/head.svg"
  25447. }
  25448. },
  25449. belly: {
  25450. height: math.unit(33, "feet"),
  25451. name: "Belly",
  25452. capacity: math.unit(500, "people"),
  25453. image: {
  25454. source: "./media/characters/mandarax/belly.svg"
  25455. }
  25456. },
  25457. dick: {
  25458. height: math.unit(8.46, "feet"),
  25459. name: "Dick",
  25460. image: {
  25461. source: "./media/characters/mandarax/dick.svg"
  25462. }
  25463. },
  25464. top: {
  25465. height: math.unit(28, "meters"),
  25466. name: "Top",
  25467. image: {
  25468. source: "./media/characters/mandarax/top.svg"
  25469. }
  25470. },
  25471. },
  25472. [
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(25, "feet"),
  25476. default: true
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(5, "feet"),
  25485. weight: math.unit(90, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/pixil/front.svg",
  25489. extra: 2000 / 1618,
  25490. bottom: 12.3 / 2011
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Normal",
  25497. height: math.unit(5, "feet"),
  25498. default: true
  25499. },
  25500. {
  25501. name: "Megamacro",
  25502. height: math.unit(10, "miles"),
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25508. {
  25509. front: {
  25510. height: math.unit(7 + 2 / 12, "feet"),
  25511. weight: math.unit(200, "lb"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/angel/front.svg",
  25515. extra: 1830 / 1737,
  25516. bottom: 22.6 / 1854,
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Normal",
  25523. height: math.unit(7 + 2 / 12, "feet"),
  25524. default: true
  25525. },
  25526. {
  25527. name: "Macro",
  25528. height: math.unit(1000, "feet")
  25529. },
  25530. {
  25531. name: "Megamacro",
  25532. height: math.unit(2, "miles")
  25533. },
  25534. {
  25535. name: "Gigamacro",
  25536. height: math.unit(20, "earths")
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25542. {
  25543. front: {
  25544. height: math.unit(5, "feet"),
  25545. weight: math.unit(180, "lb"),
  25546. name: "Front",
  25547. image: {
  25548. source: "./media/characters/mekana/front.svg",
  25549. extra: 1671 / 1605,
  25550. bottom: 3.5 / 1691
  25551. }
  25552. },
  25553. side: {
  25554. height: math.unit(5, "feet"),
  25555. weight: math.unit(180, "lb"),
  25556. name: "Side",
  25557. image: {
  25558. source: "./media/characters/mekana/side.svg",
  25559. extra: 1671 / 1605,
  25560. bottom: 3.5 / 1691
  25561. }
  25562. },
  25563. back: {
  25564. height: math.unit(5, "feet"),
  25565. weight: math.unit(180, "lb"),
  25566. name: "Back",
  25567. image: {
  25568. source: "./media/characters/mekana/back.svg",
  25569. extra: 1671 / 1605,
  25570. bottom: 3.5 / 1691
  25571. }
  25572. },
  25573. },
  25574. [
  25575. {
  25576. name: "Normal",
  25577. height: math.unit(5, "feet"),
  25578. default: true
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(4 + 6 / 12, "feet"),
  25587. weight: math.unit(80, "lb"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/pixie/front.svg",
  25591. extra: 1924 / 1825,
  25592. bottom: 22.4 / 1946
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(4 + 6 / 12, "feet"),
  25600. default: true
  25601. },
  25602. {
  25603. name: "Macro",
  25604. height: math.unit(40, "feet")
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(2.1, "meters"),
  25613. weight: math.unit(200, "lb"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/the-lascivious/front.svg",
  25617. extra: 1 / 0.893,
  25618. bottom: 3.5 / 573.7
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Human Scale",
  25625. height: math.unit(2.1, "meters")
  25626. },
  25627. {
  25628. name: "Wolxi Scale",
  25629. height: math.unit(46.2, "m"),
  25630. default: true
  25631. },
  25632. {
  25633. name: "Boinker of Buildings",
  25634. height: math.unit(10, "km")
  25635. },
  25636. {
  25637. name: "Shagger of Skyscrapers",
  25638. height: math.unit(40, "km")
  25639. },
  25640. {
  25641. name: "Banger of Boroughs",
  25642. height: math.unit(4000, "km")
  25643. },
  25644. {
  25645. name: "Screwer of States",
  25646. height: math.unit(100000, "km")
  25647. },
  25648. {
  25649. name: "Pounder of Planets",
  25650. height: math.unit(2000000, "km")
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25656. {
  25657. front: {
  25658. height: math.unit(6, "feet"),
  25659. weight: math.unit(150, "lb"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/aj/front.svg",
  25663. extra: 2039 / 1562,
  25664. bottom: 40 / 2079
  25665. }
  25666. },
  25667. },
  25668. [
  25669. {
  25670. name: "Normal",
  25671. height: math.unit(11 + 6 / 12, "feet"),
  25672. default: true
  25673. },
  25674. {
  25675. name: "Megamacro",
  25676. height: math.unit(60, "megameters")
  25677. },
  25678. ]
  25679. ))
  25680. characterMakers.push(() => makeCharacter(
  25681. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25682. {
  25683. side: {
  25684. height: math.unit(31 + 8 / 12, "feet"),
  25685. weight: math.unit(75000, "kg"),
  25686. name: "Side",
  25687. image: {
  25688. source: "./media/characters/koros/side.svg",
  25689. extra: 1442 / 1297,
  25690. bottom: 122.7 / 1562
  25691. }
  25692. },
  25693. dicksKingsCrown: {
  25694. height: math.unit(6, "feet"),
  25695. name: "Dicks (King's Crown)",
  25696. image: {
  25697. source: "./media/characters/koros/dicks-kings-crown.svg"
  25698. }
  25699. },
  25700. dicksTailSet: {
  25701. height: math.unit(3, "feet"),
  25702. name: "Dicks (Tail Set)",
  25703. image: {
  25704. source: "./media/characters/koros/dicks-tail-set.svg"
  25705. }
  25706. },
  25707. dickCumming: {
  25708. height: math.unit(7.98, "feet"),
  25709. name: "Dick (Cumming)",
  25710. image: {
  25711. source: "./media/characters/koros/dick-cumming.svg"
  25712. }
  25713. },
  25714. dicksBack: {
  25715. height: math.unit(5.9, "feet"),
  25716. name: "Dicks (Back)",
  25717. image: {
  25718. source: "./media/characters/koros/dicks-back.svg"
  25719. }
  25720. },
  25721. dicksFront: {
  25722. height: math.unit(3.72, "feet"),
  25723. name: "Dicks (Front)",
  25724. image: {
  25725. source: "./media/characters/koros/dicks-front.svg"
  25726. }
  25727. },
  25728. dicksPeeking: {
  25729. height: math.unit(3.0, "feet"),
  25730. name: "Dicks (Peeking)",
  25731. image: {
  25732. source: "./media/characters/koros/dicks-peeking.svg"
  25733. }
  25734. },
  25735. eye: {
  25736. height: math.unit(1.7, "feet"),
  25737. name: "Eye",
  25738. image: {
  25739. source: "./media/characters/koros/eye.svg"
  25740. }
  25741. },
  25742. headFront: {
  25743. height: math.unit(11.69, "feet"),
  25744. name: "Head (Front)",
  25745. image: {
  25746. source: "./media/characters/koros/head-front.svg"
  25747. }
  25748. },
  25749. headSide: {
  25750. height: math.unit(14, "feet"),
  25751. name: "Head (Side)",
  25752. image: {
  25753. source: "./media/characters/koros/head-side.svg"
  25754. }
  25755. },
  25756. leg: {
  25757. height: math.unit(17, "feet"),
  25758. name: "Leg",
  25759. image: {
  25760. source: "./media/characters/koros/leg.svg"
  25761. }
  25762. },
  25763. mawSide: {
  25764. height: math.unit(12.8, "feet"),
  25765. name: "Maw (Side)",
  25766. image: {
  25767. source: "./media/characters/koros/maw-side.svg"
  25768. }
  25769. },
  25770. mawSpitting: {
  25771. height: math.unit(17, "feet"),
  25772. name: "Maw (Spitting)",
  25773. image: {
  25774. source: "./media/characters/koros/maw-spitting.svg"
  25775. }
  25776. },
  25777. slit: {
  25778. height: math.unit(2.8, "feet"),
  25779. name: "Slit",
  25780. image: {
  25781. source: "./media/characters/koros/slit.svg"
  25782. }
  25783. },
  25784. stomach: {
  25785. height: math.unit(6.8, "feet"),
  25786. capacity: math.unit(20, "people"),
  25787. name: "Stomach",
  25788. image: {
  25789. source: "./media/characters/koros/stomach.svg"
  25790. }
  25791. },
  25792. wingspanBottom: {
  25793. height: math.unit(114, "feet"),
  25794. name: "Wingspan (Bottom)",
  25795. image: {
  25796. source: "./media/characters/koros/wingspan-bottom.svg"
  25797. }
  25798. },
  25799. wingspanTop: {
  25800. height: math.unit(104, "feet"),
  25801. name: "Wingspan (Top)",
  25802. image: {
  25803. source: "./media/characters/koros/wingspan-top.svg"
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Normal",
  25810. height: math.unit(31 + 8 / 12, "feet"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25817. {
  25818. front: {
  25819. height: math.unit(18 + 5 / 12, "feet"),
  25820. weight: math.unit(3750, "kg"),
  25821. name: "Front",
  25822. image: {
  25823. source: "./media/characters/vexx/front.svg",
  25824. extra: 426 / 396,
  25825. bottom: 31.5 / 458
  25826. }
  25827. },
  25828. maw: {
  25829. height: math.unit(6, "feet"),
  25830. name: "Maw",
  25831. image: {
  25832. source: "./media/characters/vexx/maw.svg"
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(18 + 5 / 12, "feet"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(17 + 6 / 12, "feet"),
  25849. weight: math.unit(150, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/baadra/front.svg",
  25853. extra: 3137 / 2890,
  25854. bottom: 168.4 / 3305
  25855. }
  25856. },
  25857. back: {
  25858. height: math.unit(17 + 6 / 12, "feet"),
  25859. weight: math.unit(150, "lb"),
  25860. name: "Back",
  25861. image: {
  25862. source: "./media/characters/baadra/back.svg",
  25863. extra: 3142 / 2890,
  25864. bottom: 220 / 3371
  25865. }
  25866. },
  25867. head: {
  25868. height: math.unit(5.45, "feet"),
  25869. name: "Head",
  25870. image: {
  25871. source: "./media/characters/baadra/head.svg"
  25872. }
  25873. },
  25874. headAngry: {
  25875. height: math.unit(4.95, "feet"),
  25876. name: "Head (Angry)",
  25877. image: {
  25878. source: "./media/characters/baadra/head-angry.svg"
  25879. }
  25880. },
  25881. headOpen: {
  25882. height: math.unit(6, "feet"),
  25883. name: "Head (Open)",
  25884. image: {
  25885. source: "./media/characters/baadra/head-open.svg"
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(17 + 6 / 12, "feet"),
  25893. default: true
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25899. {
  25900. front: {
  25901. height: math.unit(7 + 3 / 12, "feet"),
  25902. weight: math.unit(180, "lb"),
  25903. name: "Front",
  25904. image: {
  25905. source: "./media/characters/juri/front.svg",
  25906. extra: 1401 / 1237,
  25907. bottom: 18.5 / 1418
  25908. }
  25909. },
  25910. side: {
  25911. height: math.unit(7 + 3 / 12, "feet"),
  25912. weight: math.unit(180, "lb"),
  25913. name: "Side",
  25914. image: {
  25915. source: "./media/characters/juri/side.svg",
  25916. extra: 1424 / 1242,
  25917. bottom: 18.5 / 1447
  25918. }
  25919. },
  25920. sitting: {
  25921. height: math.unit(6, "feet"),
  25922. weight: math.unit(180, "lb"),
  25923. name: "Sitting",
  25924. image: {
  25925. source: "./media/characters/juri/sitting.svg",
  25926. extra: 1270 / 1143,
  25927. bottom: 100 / 1343
  25928. }
  25929. },
  25930. back: {
  25931. height: math.unit(7 + 3 / 12, "feet"),
  25932. weight: math.unit(180, "lb"),
  25933. name: "Back",
  25934. image: {
  25935. source: "./media/characters/juri/back.svg",
  25936. extra: 1377 / 1240,
  25937. bottom: 23.7 / 1405
  25938. }
  25939. },
  25940. maw: {
  25941. height: math.unit(2.8, "feet"),
  25942. name: "Maw",
  25943. image: {
  25944. source: "./media/characters/juri/maw.svg"
  25945. }
  25946. },
  25947. stomach: {
  25948. height: math.unit(0.89, "feet"),
  25949. capacity: math.unit(4, "liters"),
  25950. name: "Stomach",
  25951. image: {
  25952. source: "./media/characters/juri/stomach.svg"
  25953. }
  25954. },
  25955. },
  25956. [
  25957. {
  25958. name: "Normal",
  25959. height: math.unit(7 + 3 / 12, "feet"),
  25960. default: true
  25961. },
  25962. ]
  25963. ))
  25964. characterMakers.push(() => makeCharacter(
  25965. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25966. {
  25967. fox: {
  25968. height: math.unit(5 + 6 / 12, "feet"),
  25969. weight: math.unit(140, "lb"),
  25970. name: "Fox",
  25971. image: {
  25972. source: "./media/characters/maxene-sita/fox.svg",
  25973. extra: 146 / 138,
  25974. bottom: 2.1 / 148.19
  25975. }
  25976. },
  25977. foxLaying: {
  25978. height: math.unit(1.70, "feet"),
  25979. weight: math.unit(140, "lb"),
  25980. name: "Fox (Laying)",
  25981. image: {
  25982. source: "./media/characters/maxene-sita/fox-laying.svg",
  25983. extra: 910 / 572,
  25984. bottom: 71 / 981
  25985. }
  25986. },
  25987. kitsune: {
  25988. height: math.unit(10, "feet"),
  25989. weight: math.unit(800, "lb"),
  25990. name: "Kitsune",
  25991. image: {
  25992. source: "./media/characters/maxene-sita/kitsune.svg",
  25993. extra: 185 / 176,
  25994. bottom: 4.7 / 189.9
  25995. }
  25996. },
  25997. hellhound: {
  25998. height: math.unit(10, "feet"),
  25999. weight: math.unit(700, "lb"),
  26000. name: "Hellhound",
  26001. image: {
  26002. source: "./media/characters/maxene-sita/hellhound.svg",
  26003. extra: 1600 / 1545,
  26004. bottom: 81 / 1681
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Normal",
  26011. height: math.unit(5 + 6 / 12, "feet"),
  26012. default: true
  26013. },
  26014. ]
  26015. ))
  26016. characterMakers.push(() => makeCharacter(
  26017. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26018. {
  26019. front: {
  26020. height: math.unit(3 + 4 / 12, "feet"),
  26021. weight: math.unit(70, "lb"),
  26022. name: "Front",
  26023. image: {
  26024. source: "./media/characters/maia/front.svg",
  26025. extra: 227 / 219.5,
  26026. bottom: 40 / 267
  26027. }
  26028. },
  26029. back: {
  26030. height: math.unit(3 + 4 / 12, "feet"),
  26031. weight: math.unit(70, "lb"),
  26032. name: "Back",
  26033. image: {
  26034. source: "./media/characters/maia/back.svg",
  26035. extra: 237 / 225
  26036. }
  26037. },
  26038. },
  26039. [
  26040. {
  26041. name: "Normal",
  26042. height: math.unit(3 + 4 / 12, "feet"),
  26043. default: true
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(5 + 10 / 12, "feet"),
  26052. weight: math.unit(197, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/jabaro/front.svg",
  26056. extra: 225 / 216,
  26057. bottom: 5.06 / 230
  26058. }
  26059. },
  26060. back: {
  26061. height: math.unit(5 + 10 / 12, "feet"),
  26062. weight: math.unit(197, "lb"),
  26063. name: "Back",
  26064. image: {
  26065. source: "./media/characters/jabaro/back.svg",
  26066. extra: 225 / 219,
  26067. bottom: 1.9 / 227
  26068. }
  26069. },
  26070. },
  26071. [
  26072. {
  26073. name: "Normal",
  26074. height: math.unit(5 + 10 / 12, "feet"),
  26075. default: true
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26081. {
  26082. front: {
  26083. height: math.unit(5 + 8 / 12, "feet"),
  26084. weight: math.unit(139, "lb"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/risa/front.svg",
  26088. extra: 270 / 260,
  26089. bottom: 11.2 / 282
  26090. }
  26091. },
  26092. back: {
  26093. height: math.unit(5 + 8 / 12, "feet"),
  26094. weight: math.unit(139, "lb"),
  26095. name: "Back",
  26096. image: {
  26097. source: "./media/characters/risa/back.svg",
  26098. extra: 264 / 255,
  26099. bottom: 4 / 268
  26100. }
  26101. },
  26102. },
  26103. [
  26104. {
  26105. name: "Normal",
  26106. height: math.unit(5 + 8 / 12, "feet"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(2 + 11 / 12, "feet"),
  26116. weight: math.unit(30, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/weatley/front.svg",
  26120. bottom: 10.7 / 414,
  26121. extra: 403.5 / 362
  26122. }
  26123. },
  26124. back: {
  26125. height: math.unit(2 + 11 / 12, "feet"),
  26126. weight: math.unit(30, "lb"),
  26127. name: "Back",
  26128. image: {
  26129. source: "./media/characters/weatley/back.svg",
  26130. bottom: 10.7 / 414,
  26131. extra: 403.5 / 362
  26132. }
  26133. },
  26134. },
  26135. [
  26136. {
  26137. name: "Normal",
  26138. height: math.unit(2 + 11 / 12, "feet"),
  26139. default: true
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26145. {
  26146. front: {
  26147. height: math.unit(5 + 2 / 12, "feet"),
  26148. weight: math.unit(50, "kg"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/mercury-crescent/front.svg",
  26152. extra: 1088 / 1033,
  26153. bottom: 18.9 / 1109
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(5 + 2 / 12, "feet"),
  26161. default: true
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(2, "feet"),
  26170. weight: math.unit(15, "kg"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/diamond-jones/front.svg",
  26174. extra: 727/723,
  26175. bottom: 46/773
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Normal",
  26182. height: math.unit(2, "feet"),
  26183. default: true
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(3, "feet"),
  26192. weight: math.unit(30, "kg"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/sweet-bit/front.svg",
  26196. extra: 675 / 567,
  26197. bottom: 27.7 / 703
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Normal",
  26204. height: math.unit(3, "feet"),
  26205. default: true
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26211. {
  26212. side: {
  26213. height: math.unit(9.178, "feet"),
  26214. weight: math.unit(500, "lb"),
  26215. name: "Side",
  26216. image: {
  26217. source: "./media/characters/umbrazen/side.svg",
  26218. extra: 1730 / 1473,
  26219. bottom: 34.6 / 1765
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Normal",
  26226. height: math.unit(9.178, "feet"),
  26227. default: true
  26228. },
  26229. ]
  26230. ))
  26231. characterMakers.push(() => makeCharacter(
  26232. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26233. {
  26234. front: {
  26235. height: math.unit(10, "feet"),
  26236. weight: math.unit(750, "lb"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/arlist/front.svg",
  26240. extra: 961 / 778,
  26241. bottom: 6.2 / 986
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(10, "feet"),
  26249. default: true
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(5 + 1 / 12, "feet"),
  26258. weight: math.unit(110, "lb"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/aradel/front.svg",
  26262. extra: 324 / 303,
  26263. bottom: 3.6 / 329.4
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(5 + 1 / 12, "feet"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(3 + 8 / 12, "feet"),
  26280. weight: math.unit(50, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/serryn/front.svg",
  26284. extra: 1792 / 1656,
  26285. bottom: 43.5 / 1840
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(3 + 8 / 12, "feet"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(7 + 10 / 12, "feet"),
  26302. weight: math.unit(255, "lb"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/xavier-thyme/front.svg",
  26306. extra: 3733 / 3642,
  26307. bottom: 131 / 3869
  26308. }
  26309. },
  26310. frontRaven: {
  26311. height: math.unit(7 + 10 / 12, "feet"),
  26312. weight: math.unit(255, "lb"),
  26313. name: "Front (Raven)",
  26314. image: {
  26315. source: "./media/characters/xavier-thyme/front-raven.svg",
  26316. extra: 4385 / 3642,
  26317. bottom: 131 / 4517
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(7 + 10 / 12, "feet"),
  26325. default: true
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26331. {
  26332. front: {
  26333. height: math.unit(1.6, "m"),
  26334. weight: math.unit(50, "kg"),
  26335. name: "Front",
  26336. image: {
  26337. source: "./media/characters/kiki/front.svg",
  26338. extra: 4682 / 3610,
  26339. bottom: 115 / 4777
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Normal",
  26346. height: math.unit(1.6, "meters"),
  26347. default: true
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26353. {
  26354. front: {
  26355. height: math.unit(50, "m"),
  26356. weight: math.unit(500, "tonnes"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/ryoko/front.svg",
  26360. extra: 4632 / 3926,
  26361. bottom: 193 / 4823
  26362. }
  26363. },
  26364. },
  26365. [
  26366. {
  26367. name: "Normal",
  26368. height: math.unit(50, "meters"),
  26369. default: true
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26375. {
  26376. front: {
  26377. height: math.unit(30, "m"),
  26378. weight: math.unit(22, "tonnes"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/elio/front.svg",
  26382. extra: 4582 / 3720,
  26383. bottom: 236 / 4828
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(30, "meters"),
  26391. default: true
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26397. {
  26398. front: {
  26399. height: math.unit(6 + 3 / 12, "feet"),
  26400. weight: math.unit(120, "lb"),
  26401. name: "Front",
  26402. image: {
  26403. source: "./media/characters/azura/front.svg",
  26404. extra: 1149 / 1135,
  26405. bottom: 45 / 1194
  26406. }
  26407. },
  26408. frontClothed: {
  26409. height: math.unit(6 + 3 / 12, "feet"),
  26410. weight: math.unit(120, "lb"),
  26411. name: "Front (Clothed)",
  26412. image: {
  26413. source: "./media/characters/azura/front-clothed.svg",
  26414. extra: 1149 / 1135,
  26415. bottom: 45 / 1194
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(6 + 3 / 12, "feet"),
  26423. default: true
  26424. },
  26425. {
  26426. name: "Macro",
  26427. height: math.unit(20 + 6 / 12, "feet")
  26428. },
  26429. {
  26430. name: "Megamacro",
  26431. height: math.unit(12, "miles")
  26432. },
  26433. {
  26434. name: "Gigamacro",
  26435. height: math.unit(10000, "miles")
  26436. },
  26437. {
  26438. name: "Teramacro",
  26439. height: math.unit(900000, "miles")
  26440. },
  26441. ]
  26442. ))
  26443. characterMakers.push(() => makeCharacter(
  26444. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26445. {
  26446. front: {
  26447. height: math.unit(12, "feet"),
  26448. weight: math.unit(1, "ton"),
  26449. capacity: math.unit(660000, "gallons"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/zeus/front.svg",
  26453. extra: 5005 / 4717,
  26454. bottom: 363 / 5388
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Normal",
  26461. height: math.unit(12, "feet")
  26462. },
  26463. {
  26464. name: "Preferred Size",
  26465. height: math.unit(0.5, "miles"),
  26466. default: true
  26467. },
  26468. {
  26469. name: "Giga Horse",
  26470. height: math.unit(300, "miles")
  26471. },
  26472. {
  26473. name: "Riding Planets",
  26474. height: math.unit(30, "megameters")
  26475. },
  26476. {
  26477. name: "Cosmic Giant",
  26478. height: math.unit(3, "zettameters")
  26479. },
  26480. {
  26481. name: "Breeding God",
  26482. height: math.unit(9.92e22, "yottameters")
  26483. },
  26484. ]
  26485. ))
  26486. characterMakers.push(() => makeCharacter(
  26487. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26488. {
  26489. side: {
  26490. height: math.unit(9, "feet"),
  26491. weight: math.unit(1500, "kg"),
  26492. name: "Side",
  26493. image: {
  26494. source: "./media/characters/fang/side.svg",
  26495. extra: 924 / 866,
  26496. bottom: 47.5 / 972.3
  26497. }
  26498. },
  26499. },
  26500. [
  26501. {
  26502. name: "Normal",
  26503. height: math.unit(9, "feet"),
  26504. default: true
  26505. },
  26506. {
  26507. name: "Macro",
  26508. height: math.unit(75 + 6 / 12, "feet")
  26509. },
  26510. {
  26511. name: "Teramacro",
  26512. height: math.unit(50000, "miles")
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(10, "feet"),
  26521. weight: math.unit(2, "tons"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/rekhit/front.svg",
  26525. extra: 2796 / 2590,
  26526. bottom: 225 / 3022
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(10, "feet"),
  26534. default: true
  26535. },
  26536. {
  26537. name: "Macro",
  26538. height: math.unit(500, "feet")
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(7 + 6.451 / 12, "feet"),
  26547. weight: math.unit(310, "lb"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/dahlia-verrick/front.svg",
  26551. extra: 1488 / 1365,
  26552. bottom: 6.2 / 1495
  26553. }
  26554. },
  26555. back: {
  26556. height: math.unit(7 + 6.451 / 12, "feet"),
  26557. weight: math.unit(310, "lb"),
  26558. name: "Back",
  26559. image: {
  26560. source: "./media/characters/dahlia-verrick/back.svg",
  26561. extra: 1472 / 1351,
  26562. bottom: 5.28 / 1477
  26563. }
  26564. },
  26565. frontBusiness: {
  26566. height: math.unit(7 + 6.451 / 12, "feet"),
  26567. weight: math.unit(200, "lb"),
  26568. name: "Front (Business)",
  26569. image: {
  26570. source: "./media/characters/dahlia-verrick/front-business.svg",
  26571. extra: 1478 / 1381,
  26572. bottom: 5.5 / 1484
  26573. }
  26574. },
  26575. frontCasual: {
  26576. height: math.unit(7 + 6.451 / 12, "feet"),
  26577. weight: math.unit(200, "lb"),
  26578. name: "Front (Casual)",
  26579. image: {
  26580. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26581. extra: 1478 / 1381,
  26582. bottom: 5.5 / 1484
  26583. }
  26584. },
  26585. },
  26586. [
  26587. {
  26588. name: "Travel-Sized",
  26589. height: math.unit(7.45, "inches")
  26590. },
  26591. {
  26592. name: "Normal",
  26593. height: math.unit(7 + 6.451 / 12, "feet"),
  26594. default: true
  26595. },
  26596. {
  26597. name: "Hitting the Town",
  26598. height: math.unit(37 + 8 / 12, "feet")
  26599. },
  26600. {
  26601. name: "Stomp in the Suburbs",
  26602. height: math.unit(964 + 9.728 / 12, "feet")
  26603. },
  26604. {
  26605. name: "Sit on the City",
  26606. height: math.unit(61747 + 10.592 / 12, "feet")
  26607. },
  26608. {
  26609. name: "Glomp the Globe",
  26610. height: math.unit(252919327 + 4.832 / 12, "feet")
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(6 + 4 / 12, "feet"),
  26619. weight: math.unit(320, "lb"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/balina-mahigan/front.svg",
  26623. extra: 447 / 428,
  26624. bottom: 18 / 466
  26625. }
  26626. },
  26627. back: {
  26628. height: math.unit(6 + 4 / 12, "feet"),
  26629. weight: math.unit(320, "lb"),
  26630. name: "Back",
  26631. image: {
  26632. source: "./media/characters/balina-mahigan/back.svg",
  26633. extra: 445 / 428,
  26634. bottom: 4.07 / 448
  26635. }
  26636. },
  26637. arm: {
  26638. height: math.unit(1.88, "feet"),
  26639. name: "Arm",
  26640. image: {
  26641. source: "./media/characters/balina-mahigan/arm.svg"
  26642. }
  26643. },
  26644. backPort: {
  26645. height: math.unit(0.685, "feet"),
  26646. name: "Back Port",
  26647. image: {
  26648. source: "./media/characters/balina-mahigan/back-port.svg"
  26649. }
  26650. },
  26651. hoofpaw: {
  26652. height: math.unit(1.41, "feet"),
  26653. name: "Hoofpaw",
  26654. image: {
  26655. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26656. }
  26657. },
  26658. leftHandBack: {
  26659. height: math.unit(0.938, "feet"),
  26660. name: "Left Hand (Back)",
  26661. image: {
  26662. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26663. }
  26664. },
  26665. leftHandFront: {
  26666. height: math.unit(0.938, "feet"),
  26667. name: "Left Hand (Front)",
  26668. image: {
  26669. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26670. }
  26671. },
  26672. rightHandBack: {
  26673. height: math.unit(0.95, "feet"),
  26674. name: "Right Hand (Back)",
  26675. image: {
  26676. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26677. }
  26678. },
  26679. rightHandFront: {
  26680. height: math.unit(0.95, "feet"),
  26681. name: "Right Hand (Front)",
  26682. image: {
  26683. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26684. }
  26685. },
  26686. },
  26687. [
  26688. {
  26689. name: "Normal",
  26690. height: math.unit(6 + 4 / 12, "feet"),
  26691. default: true
  26692. },
  26693. ]
  26694. ))
  26695. characterMakers.push(() => makeCharacter(
  26696. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26697. {
  26698. front: {
  26699. height: math.unit(6, "feet"),
  26700. weight: math.unit(320, "lb"),
  26701. name: "Front",
  26702. image: {
  26703. source: "./media/characters/balina-mejeri/front.svg",
  26704. extra: 517 / 488,
  26705. bottom: 44.2 / 561
  26706. }
  26707. },
  26708. },
  26709. [
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(6 + 4 / 12, "feet")
  26713. },
  26714. {
  26715. name: "Business",
  26716. height: math.unit(155, "feet"),
  26717. default: true
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26723. {
  26724. kneeling: {
  26725. height: math.unit(6 + 4 / 12, "feet"),
  26726. weight: math.unit(300 * 20, "lb"),
  26727. name: "Kneeling",
  26728. image: {
  26729. source: "./media/characters/balbarian/kneeling.svg",
  26730. extra: 922 / 862,
  26731. bottom: 42.4 / 965
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(6 + 4 / 12, "feet")
  26739. },
  26740. {
  26741. name: "Treasured",
  26742. height: math.unit(18 + 9 / 12, "feet"),
  26743. default: true
  26744. },
  26745. {
  26746. name: "Macro",
  26747. height: math.unit(900, "feet")
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(6 + 4 / 12, "feet"),
  26756. weight: math.unit(325, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/balina-amarini/front.svg",
  26760. extra: 415 / 403,
  26761. bottom: 19 / 433.4
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(6 + 4 / 12, "feet"),
  26766. weight: math.unit(325, "lb"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/balina-amarini/back.svg",
  26770. extra: 415 / 403,
  26771. bottom: 13.5 / 432
  26772. }
  26773. },
  26774. overdrive: {
  26775. height: math.unit(6 + 4 / 12, "feet"),
  26776. weight: math.unit(400, "lb"),
  26777. name: "Overdrive",
  26778. image: {
  26779. source: "./media/characters/balina-amarini/overdrive.svg",
  26780. extra: 269 / 259,
  26781. bottom: 12 / 282
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Boom",
  26788. height: math.unit(9 + 10 / 12, "feet"),
  26789. default: true
  26790. },
  26791. {
  26792. name: "Macro",
  26793. height: math.unit(280, "feet")
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26799. {
  26800. goddess: {
  26801. height: math.unit(600, "feet"),
  26802. weight: math.unit(2000000, "tons"),
  26803. name: "Goddess",
  26804. image: {
  26805. source: "./media/characters/lady-kubwa/goddess.svg",
  26806. extra: 1240.5 / 1223,
  26807. bottom: 22 / 1263
  26808. }
  26809. },
  26810. goddesser: {
  26811. height: math.unit(900, "feet"),
  26812. weight: math.unit(20000000, "lb"),
  26813. name: "Goddess-er",
  26814. image: {
  26815. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26816. extra: 899 / 888,
  26817. bottom: 12.6 / 912
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Macro",
  26824. height: math.unit(600, "feet"),
  26825. default: true
  26826. },
  26827. {
  26828. name: "Megamacro",
  26829. height: math.unit(250, "miles")
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(7 + 7 / 12, "feet"),
  26838. weight: math.unit(250, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/tala-grovehorn/front.svg",
  26842. extra: 2636 / 2525,
  26843. bottom: 147 / 2781
  26844. }
  26845. },
  26846. back: {
  26847. height: math.unit(7 + 7 / 12, "feet"),
  26848. weight: math.unit(250, "lb"),
  26849. name: "Back",
  26850. image: {
  26851. source: "./media/characters/tala-grovehorn/back.svg",
  26852. extra: 2635 / 2539,
  26853. bottom: 100 / 2732.8
  26854. }
  26855. },
  26856. mouth: {
  26857. height: math.unit(1.15, "feet"),
  26858. name: "Mouth",
  26859. image: {
  26860. source: "./media/characters/tala-grovehorn/mouth.svg"
  26861. }
  26862. },
  26863. dick: {
  26864. height: math.unit(2.36, "feet"),
  26865. name: "Dick",
  26866. image: {
  26867. source: "./media/characters/tala-grovehorn/dick.svg"
  26868. }
  26869. },
  26870. slit: {
  26871. height: math.unit(0.61, "feet"),
  26872. name: "Slit",
  26873. image: {
  26874. source: "./media/characters/tala-grovehorn/slit.svg"
  26875. }
  26876. },
  26877. },
  26878. [
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26883. {
  26884. front: {
  26885. height: math.unit(7 + 7 / 12, "feet"),
  26886. weight: math.unit(225, "lb"),
  26887. name: "Front",
  26888. image: {
  26889. source: "./media/characters/epona/front.svg",
  26890. extra: 2445 / 2290,
  26891. bottom: 251 / 2696
  26892. }
  26893. },
  26894. back: {
  26895. height: math.unit(7 + 7 / 12, "feet"),
  26896. weight: math.unit(225, "lb"),
  26897. name: "Back",
  26898. image: {
  26899. source: "./media/characters/epona/back.svg",
  26900. extra: 2546 / 2408,
  26901. bottom: 44 / 2589
  26902. }
  26903. },
  26904. genitals: {
  26905. height: math.unit(1.5, "feet"),
  26906. name: "Genitals",
  26907. image: {
  26908. source: "./media/characters/epona/genitals.svg"
  26909. }
  26910. },
  26911. },
  26912. [
  26913. {
  26914. name: "Normal",
  26915. height: math.unit(7 + 7 / 12, "feet"),
  26916. default: true
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26922. {
  26923. front: {
  26924. height: math.unit(7, "feet"),
  26925. weight: math.unit(518, "lb"),
  26926. name: "Front",
  26927. image: {
  26928. source: "./media/characters/avia-bloodbourn/front.svg",
  26929. extra: 1466 / 1350,
  26930. bottom: 65 / 1527
  26931. }
  26932. },
  26933. },
  26934. [
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(9.35, "feet"),
  26942. weight: math.unit(600, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/amera/front.svg",
  26946. extra: 891 / 818,
  26947. bottom: 30 / 922.7
  26948. }
  26949. },
  26950. back: {
  26951. height: math.unit(9.35, "feet"),
  26952. weight: math.unit(600, "lb"),
  26953. name: "Back",
  26954. image: {
  26955. source: "./media/characters/amera/back.svg",
  26956. extra: 876 / 824,
  26957. bottom: 6.8 / 884
  26958. }
  26959. },
  26960. dick: {
  26961. height: math.unit(2.14, "feet"),
  26962. name: "Dick",
  26963. image: {
  26964. source: "./media/characters/amera/dick.svg"
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(9.35, "feet"),
  26972. default: true
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26978. {
  26979. kneeling: {
  26980. height: math.unit(3 + 4 / 12, "feet"),
  26981. weight: math.unit(90, "lb"),
  26982. name: "Kneeling",
  26983. image: {
  26984. source: "./media/characters/rosewen/kneeling.svg",
  26985. extra: 1835 / 1571,
  26986. bottom: 27.7 / 1862
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Normal",
  26993. height: math.unit(3 + 4 / 12, "feet"),
  26994. default: true
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(5 + 10 / 12, "feet"),
  27003. weight: math.unit(200, "lb"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/sabah/front.svg",
  27007. extra: 849 / 763,
  27008. bottom: 33.9 / 881
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(5 + 10 / 12, "feet"),
  27016. default: true
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27022. {
  27023. front: {
  27024. height: math.unit(3 + 5 / 12, "feet"),
  27025. weight: math.unit(40, "kg"),
  27026. name: "Front",
  27027. image: {
  27028. source: "./media/characters/purple-flame/front.svg",
  27029. extra: 1577 / 1412,
  27030. bottom: 97 / 1694
  27031. }
  27032. },
  27033. frontDressed: {
  27034. height: math.unit(3 + 5 / 12, "feet"),
  27035. weight: math.unit(40, "kg"),
  27036. name: "Front (Dressed)",
  27037. image: {
  27038. source: "./media/characters/purple-flame/front-dressed.svg",
  27039. extra: 1577 / 1412,
  27040. bottom: 97 / 1694
  27041. }
  27042. },
  27043. headphones: {
  27044. height: math.unit(0.85, "feet"),
  27045. name: "Headphones",
  27046. image: {
  27047. source: "./media/characters/purple-flame/headphones.svg"
  27048. }
  27049. },
  27050. },
  27051. [
  27052. {
  27053. name: "Really Small",
  27054. height: math.unit(5, "cm")
  27055. },
  27056. {
  27057. name: "Micro",
  27058. height: math.unit(1 + 5 / 12, "feet")
  27059. },
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(3 + 5 / 12, "feet"),
  27063. default: true
  27064. },
  27065. {
  27066. name: "Minimacro",
  27067. height: math.unit(125, "feet")
  27068. },
  27069. {
  27070. name: "Macro",
  27071. height: math.unit(0.5, "miles")
  27072. },
  27073. {
  27074. name: "Megamacro",
  27075. height: math.unit(50, "miles")
  27076. },
  27077. {
  27078. name: "Gigantic",
  27079. height: math.unit(750, "miles")
  27080. },
  27081. {
  27082. name: "Planetary",
  27083. height: math.unit(15000, "miles")
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27089. {
  27090. front: {
  27091. height: math.unit(14, "feet"),
  27092. weight: math.unit(959, "lb"),
  27093. name: "Front",
  27094. image: {
  27095. source: "./media/characters/arsenal/front.svg",
  27096. extra: 2357 / 2157,
  27097. bottom: 93 / 2458
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Normal",
  27104. height: math.unit(14, "feet"),
  27105. default: true
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27111. {
  27112. front: {
  27113. height: math.unit(6, "feet"),
  27114. weight: math.unit(150, "lb"),
  27115. name: "Front",
  27116. image: {
  27117. source: "./media/characters/adira/front.svg",
  27118. extra: 1078 / 1029,
  27119. bottom: 87 / 1166
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Micro",
  27126. height: math.unit(4, "inches"),
  27127. default: true
  27128. },
  27129. {
  27130. name: "Macro",
  27131. height: math.unit(50, "feet")
  27132. },
  27133. ]
  27134. ))
  27135. characterMakers.push(() => makeCharacter(
  27136. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27137. {
  27138. front: {
  27139. height: math.unit(16, "feet"),
  27140. weight: math.unit(1000, "lb"),
  27141. name: "Front",
  27142. image: {
  27143. source: "./media/characters/grim/front.svg",
  27144. extra: 622 / 614,
  27145. bottom: 18.1 / 642
  27146. }
  27147. },
  27148. back: {
  27149. height: math.unit(16, "feet"),
  27150. weight: math.unit(1000, "lb"),
  27151. name: "Back",
  27152. image: {
  27153. source: "./media/characters/grim/back.svg",
  27154. extra: 610.6 / 602,
  27155. bottom: 40.8 / 652
  27156. }
  27157. },
  27158. hunched: {
  27159. height: math.unit(9.75, "feet"),
  27160. weight: math.unit(1000, "lb"),
  27161. name: "Hunched",
  27162. image: {
  27163. source: "./media/characters/grim/hunched.svg",
  27164. extra: 304 / 297,
  27165. bottom: 35.4 / 394
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(16, "feet"),
  27173. default: true
  27174. },
  27175. ]
  27176. ))
  27177. characterMakers.push(() => makeCharacter(
  27178. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27179. {
  27180. front: {
  27181. height: math.unit(2.3, "meters"),
  27182. weight: math.unit(300, "lb"),
  27183. name: "Front",
  27184. image: {
  27185. source: "./media/characters/sinja/front-sfw.svg",
  27186. extra: 1393 / 1294,
  27187. bottom: 70 / 1463
  27188. }
  27189. },
  27190. frontNsfw: {
  27191. height: math.unit(2.3, "meters"),
  27192. weight: math.unit(300, "lb"),
  27193. name: "Front (NSFW)",
  27194. image: {
  27195. source: "./media/characters/sinja/front-nsfw.svg",
  27196. extra: 1393 / 1294,
  27197. bottom: 70 / 1463
  27198. }
  27199. },
  27200. back: {
  27201. height: math.unit(2.3, "meters"),
  27202. weight: math.unit(300, "lb"),
  27203. name: "Back",
  27204. image: {
  27205. source: "./media/characters/sinja/back.svg",
  27206. extra: 1393 / 1294,
  27207. bottom: 70 / 1463
  27208. }
  27209. },
  27210. head: {
  27211. height: math.unit(1.771, "feet"),
  27212. name: "Head",
  27213. image: {
  27214. source: "./media/characters/sinja/head.svg"
  27215. }
  27216. },
  27217. slit: {
  27218. height: math.unit(0.8, "feet"),
  27219. name: "Slit",
  27220. image: {
  27221. source: "./media/characters/sinja/slit.svg"
  27222. }
  27223. },
  27224. },
  27225. [
  27226. {
  27227. name: "Normal",
  27228. height: math.unit(2.3, "meters")
  27229. },
  27230. {
  27231. name: "Macro",
  27232. height: math.unit(91, "meters"),
  27233. default: true
  27234. },
  27235. {
  27236. name: "Megamacro",
  27237. height: math.unit(91440, "meters")
  27238. },
  27239. {
  27240. name: "Gigamacro",
  27241. height: math.unit(60960000, "meters")
  27242. },
  27243. {
  27244. name: "Teramacro",
  27245. height: math.unit(9144000000, "meters")
  27246. },
  27247. ]
  27248. ))
  27249. characterMakers.push(() => makeCharacter(
  27250. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27251. {
  27252. front: {
  27253. height: math.unit(1.7, "meters"),
  27254. weight: math.unit(130, "lb"),
  27255. name: "Front",
  27256. image: {
  27257. source: "./media/characters/kyu/front.svg",
  27258. extra: 415 / 395,
  27259. bottom: 5 / 420
  27260. }
  27261. },
  27262. head: {
  27263. height: math.unit(1.75, "feet"),
  27264. name: "Head",
  27265. image: {
  27266. source: "./media/characters/kyu/head.svg"
  27267. }
  27268. },
  27269. foot: {
  27270. height: math.unit(0.81, "feet"),
  27271. name: "Foot",
  27272. image: {
  27273. source: "./media/characters/kyu/foot.svg"
  27274. }
  27275. },
  27276. },
  27277. [
  27278. {
  27279. name: "Normal",
  27280. height: math.unit(1.7, "meters")
  27281. },
  27282. {
  27283. name: "Macro",
  27284. height: math.unit(131, "feet"),
  27285. default: true
  27286. },
  27287. {
  27288. name: "Megamacro",
  27289. height: math.unit(91440, "meters")
  27290. },
  27291. {
  27292. name: "Gigamacro",
  27293. height: math.unit(60960000, "meters")
  27294. },
  27295. {
  27296. name: "Teramacro",
  27297. height: math.unit(9144000000, "meters")
  27298. },
  27299. ]
  27300. ))
  27301. characterMakers.push(() => makeCharacter(
  27302. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27303. {
  27304. front: {
  27305. height: math.unit(7 + 1 / 12, "feet"),
  27306. weight: math.unit(250, "lb"),
  27307. name: "Front",
  27308. image: {
  27309. source: "./media/characters/joey/front.svg",
  27310. extra: 1791 / 1537,
  27311. bottom: 28 / 1816
  27312. }
  27313. },
  27314. },
  27315. [
  27316. {
  27317. name: "Micro",
  27318. height: math.unit(3, "inches")
  27319. },
  27320. {
  27321. name: "Normal",
  27322. height: math.unit(7 + 1 / 12, "feet"),
  27323. default: true
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(165, "cm"),
  27332. weight: math.unit(140, "lb"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/sam-evans/front.svg",
  27336. extra: 3417 / 3230,
  27337. bottom: 41.3 / 3417
  27338. }
  27339. },
  27340. frontSixTails: {
  27341. height: math.unit(165, "cm"),
  27342. weight: math.unit(140, "lb"),
  27343. name: "Front-six-tails",
  27344. image: {
  27345. source: "./media/characters/sam-evans/front-six-tails.svg",
  27346. extra: 3417 / 3230,
  27347. bottom: 41.3 / 3417
  27348. }
  27349. },
  27350. back: {
  27351. height: math.unit(165, "cm"),
  27352. weight: math.unit(140, "lb"),
  27353. name: "Back",
  27354. image: {
  27355. source: "./media/characters/sam-evans/back.svg",
  27356. extra: 3227 / 3032,
  27357. bottom: 6.8 / 3234
  27358. }
  27359. },
  27360. face: {
  27361. height: math.unit(0.68, "feet"),
  27362. name: "Face",
  27363. image: {
  27364. source: "./media/characters/sam-evans/face.svg"
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(165, "cm"),
  27372. default: true
  27373. },
  27374. {
  27375. name: "Macro",
  27376. height: math.unit(100, "meters")
  27377. },
  27378. {
  27379. name: "Macro+",
  27380. height: math.unit(800, "meters")
  27381. },
  27382. {
  27383. name: "Macro++",
  27384. height: math.unit(3, "km")
  27385. },
  27386. {
  27387. name: "Macro+++",
  27388. height: math.unit(30, "km")
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(10, "feet"),
  27397. weight: math.unit(750, "lb"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/juliet-a/front.svg",
  27401. extra: 1766 / 1720,
  27402. bottom: 43 / 1809
  27403. }
  27404. },
  27405. back: {
  27406. height: math.unit(10, "feet"),
  27407. weight: math.unit(750, "lb"),
  27408. name: "Back",
  27409. image: {
  27410. source: "./media/characters/juliet-a/back.svg",
  27411. extra: 1781 / 1734,
  27412. bottom: 35 / 1810,
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(10, "feet"),
  27420. default: true
  27421. },
  27422. {
  27423. name: "Dragon Form",
  27424. height: math.unit(250, "feet")
  27425. },
  27426. {
  27427. name: "Macro",
  27428. height: math.unit(1000, "feet")
  27429. },
  27430. {
  27431. name: "Megamacro",
  27432. height: math.unit(10000, "feet")
  27433. }
  27434. ]
  27435. ))
  27436. characterMakers.push(() => makeCharacter(
  27437. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27438. {
  27439. regular: {
  27440. height: math.unit(7 + 3 / 12, "feet"),
  27441. weight: math.unit(260, "lb"),
  27442. name: "Regular",
  27443. image: {
  27444. source: "./media/characters/wild/regular.svg",
  27445. extra: 97.45 / 92,
  27446. bottom: 6.8 / 104.3
  27447. }
  27448. },
  27449. biggums: {
  27450. height: math.unit(8 + 6 / 12, "feet"),
  27451. weight: math.unit(425, "lb"),
  27452. name: "Biggums",
  27453. image: {
  27454. source: "./media/characters/wild/biggums.svg",
  27455. extra: 97.45 / 92,
  27456. bottom: 7.5 / 132.34
  27457. }
  27458. },
  27459. mawRegular: {
  27460. height: math.unit(1.24, "feet"),
  27461. name: "Maw (Regular)",
  27462. image: {
  27463. source: "./media/characters/wild/maw.svg"
  27464. }
  27465. },
  27466. mawBiggums: {
  27467. height: math.unit(1.47, "feet"),
  27468. name: "Maw (Biggums)",
  27469. image: {
  27470. source: "./media/characters/wild/maw.svg"
  27471. }
  27472. },
  27473. },
  27474. [
  27475. {
  27476. name: "Normal",
  27477. height: math.unit(7 + 3 / 12, "feet"),
  27478. default: true
  27479. },
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27484. {
  27485. front: {
  27486. height: math.unit(2.5, "meters"),
  27487. weight: math.unit(200, "kg"),
  27488. name: "Front",
  27489. image: {
  27490. source: "./media/characters/vidar/front.svg",
  27491. extra: 2994 / 2795,
  27492. bottom: 56 / 3061
  27493. }
  27494. },
  27495. back: {
  27496. height: math.unit(2.5, "meters"),
  27497. weight: math.unit(200, "kg"),
  27498. name: "Back",
  27499. image: {
  27500. source: "./media/characters/vidar/back.svg",
  27501. extra: 3131 / 2928,
  27502. bottom: 13.5 / 3141.5
  27503. }
  27504. },
  27505. feral: {
  27506. height: math.unit(2.5, "meters"),
  27507. weight: math.unit(2000, "kg"),
  27508. name: "Feral",
  27509. image: {
  27510. source: "./media/characters/vidar/feral.svg",
  27511. extra: 2790 / 1765,
  27512. bottom: 6 / 2796
  27513. }
  27514. },
  27515. },
  27516. [
  27517. {
  27518. name: "Normal",
  27519. height: math.unit(2.5, "meters"),
  27520. default: true
  27521. },
  27522. {
  27523. name: "Macro",
  27524. height: math.unit(100, "meters")
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27530. {
  27531. front: {
  27532. height: math.unit(5 + 9 / 12, "feet"),
  27533. weight: math.unit(120, "lb"),
  27534. name: "Front",
  27535. image: {
  27536. source: "./media/characters/ash/front.svg",
  27537. extra: 2189 / 1961,
  27538. bottom: 5.2 / 2194
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Normal",
  27545. height: math.unit(5 + 9 / 12, "feet"),
  27546. default: true
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27552. {
  27553. front: {
  27554. height: math.unit(9, "feet"),
  27555. weight: math.unit(10000, "lb"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/gygabite/front.svg",
  27559. bottom: 31.7 / 537.8,
  27560. extra: 505 / 370
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Normal",
  27567. height: math.unit(9, "feet"),
  27568. default: true
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(12, "feet"),
  27577. weight: math.unit(35000, "lb"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/p0tat0/front.svg",
  27581. extra: 1065 / 921,
  27582. bottom: 55.7 / 1121.25
  27583. }
  27584. },
  27585. },
  27586. [
  27587. {
  27588. name: "Normal",
  27589. height: math.unit(12, "feet"),
  27590. default: true
  27591. },
  27592. ]
  27593. ))
  27594. characterMakers.push(() => makeCharacter(
  27595. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27596. {
  27597. side: {
  27598. height: math.unit(6.5, "feet"),
  27599. weight: math.unit(800, "lb"),
  27600. name: "Side",
  27601. image: {
  27602. source: "./media/characters/dusk/side.svg",
  27603. extra: 615 / 373,
  27604. bottom: 53 / 664
  27605. }
  27606. },
  27607. sitting: {
  27608. height: math.unit(7, "feet"),
  27609. weight: math.unit(800, "lb"),
  27610. name: "Sitting",
  27611. image: {
  27612. source: "./media/characters/dusk/sitting.svg",
  27613. extra: 753 / 425,
  27614. bottom: 33 / 774
  27615. }
  27616. },
  27617. head: {
  27618. height: math.unit(6.1, "feet"),
  27619. name: "Head",
  27620. image: {
  27621. source: "./media/characters/dusk/head.svg"
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(7, "feet"),
  27629. default: true
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(15, "feet"),
  27638. weight: math.unit(7000, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/jay-direwolf/front.svg",
  27642. extra: 1810 / 1732,
  27643. bottom: 66 / 1892
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(15, "feet"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(4 + 9 / 12, "feet"),
  27660. weight: math.unit(130, "lb"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/anchovie/front.svg",
  27664. extra: 382 / 350,
  27665. bottom: 25 / 409
  27666. }
  27667. },
  27668. back: {
  27669. height: math.unit(4 + 9 / 12, "feet"),
  27670. weight: math.unit(130, "lb"),
  27671. name: "Back",
  27672. image: {
  27673. source: "./media/characters/anchovie/back.svg",
  27674. extra: 385 / 352,
  27675. bottom: 16.6 / 402
  27676. }
  27677. },
  27678. frontDressed: {
  27679. height: math.unit(4 + 9 / 12, "feet"),
  27680. weight: math.unit(130, "lb"),
  27681. name: "Front (Dressed)",
  27682. image: {
  27683. source: "./media/characters/anchovie/front-dressed.svg",
  27684. extra: 382 / 350,
  27685. bottom: 25 / 409
  27686. }
  27687. },
  27688. backDressed: {
  27689. height: math.unit(4 + 9 / 12, "feet"),
  27690. weight: math.unit(130, "lb"),
  27691. name: "Back (Dressed)",
  27692. image: {
  27693. source: "./media/characters/anchovie/back-dressed.svg",
  27694. extra: 385 / 352,
  27695. bottom: 16.6 / 402
  27696. }
  27697. },
  27698. },
  27699. [
  27700. {
  27701. name: "Micro",
  27702. height: math.unit(6.4, "inches")
  27703. },
  27704. {
  27705. name: "Normal",
  27706. height: math.unit(4 + 9 / 12, "feet"),
  27707. default: true
  27708. },
  27709. ]
  27710. ))
  27711. characterMakers.push(() => makeCharacter(
  27712. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27713. {
  27714. front: {
  27715. height: math.unit(2, "meters"),
  27716. weight: math.unit(180, "lb"),
  27717. name: "Front",
  27718. image: {
  27719. source: "./media/characters/acidrenamon/front.svg",
  27720. extra: 987 / 890,
  27721. bottom: 22.8 / 1009
  27722. }
  27723. },
  27724. back: {
  27725. height: math.unit(2, "meters"),
  27726. weight: math.unit(180, "lb"),
  27727. name: "Back",
  27728. image: {
  27729. source: "./media/characters/acidrenamon/back.svg",
  27730. extra: 983 / 891,
  27731. bottom: 8.4 / 992
  27732. }
  27733. },
  27734. head: {
  27735. height: math.unit(1.92, "feet"),
  27736. name: "Head",
  27737. image: {
  27738. source: "./media/characters/acidrenamon/head.svg"
  27739. }
  27740. },
  27741. rump: {
  27742. height: math.unit(1.72, "feet"),
  27743. name: "Rump",
  27744. image: {
  27745. source: "./media/characters/acidrenamon/rump.svg"
  27746. }
  27747. },
  27748. tail: {
  27749. height: math.unit(4.2, "feet"),
  27750. name: "Tail",
  27751. image: {
  27752. source: "./media/characters/acidrenamon/tail.svg"
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(2, "meters"),
  27760. default: true
  27761. },
  27762. {
  27763. name: "Minimacro",
  27764. height: math.unit(7, "meters")
  27765. },
  27766. {
  27767. name: "Macro",
  27768. height: math.unit(200, "meters")
  27769. },
  27770. {
  27771. name: "Gigamacro",
  27772. height: math.unit(0.2, "earths")
  27773. },
  27774. ]
  27775. ))
  27776. characterMakers.push(() => makeCharacter(
  27777. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27778. {
  27779. front: {
  27780. height: math.unit(152, "feet"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/kenzie-lee/front.svg",
  27784. extra: 1869/1774,
  27785. bottom: 128/1997
  27786. }
  27787. },
  27788. side: {
  27789. height: math.unit(86, "feet"),
  27790. name: "Side",
  27791. image: {
  27792. source: "./media/characters/kenzie-lee/side.svg",
  27793. extra: 930/815,
  27794. bottom: 177/1107
  27795. }
  27796. },
  27797. paw: {
  27798. height: math.unit(15, "feet"),
  27799. name: "Paw",
  27800. image: {
  27801. source: "./media/characters/kenzie-lee/paw.svg"
  27802. }
  27803. },
  27804. },
  27805. [
  27806. {
  27807. name: "Micro",
  27808. height: math.unit(1.5, "inches")
  27809. },
  27810. {
  27811. name: "Normal",
  27812. height: math.unit(152, "feet"),
  27813. default: true
  27814. },
  27815. {
  27816. name: "Megamacro",
  27817. height: math.unit(7, "miles")
  27818. },
  27819. {
  27820. name: "Gigamacro",
  27821. height: math.unit(8000, "miles")
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27827. {
  27828. side: {
  27829. height: math.unit(6, "feet"),
  27830. weight: math.unit(150, "lb"),
  27831. name: "Side",
  27832. image: {
  27833. source: "./media/characters/withers/side.svg",
  27834. extra: 1830 / 1728,
  27835. bottom: 96 / 1927
  27836. }
  27837. },
  27838. front: {
  27839. height: math.unit(6, "feet"),
  27840. weight: math.unit(150, "lb"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/withers/front.svg",
  27844. extra: 1514 / 1438,
  27845. bottom: 118 / 1632
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Macro",
  27852. height: math.unit(168, "feet"),
  27853. default: true
  27854. },
  27855. {
  27856. name: "Megamacro",
  27857. height: math.unit(15, "miles")
  27858. }
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(6 + 7 / 12, "feet"),
  27866. weight: math.unit(250, "lb"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/nemoskii/front.svg",
  27870. extra: 2270 / 1734,
  27871. bottom: 86 / 2354
  27872. }
  27873. },
  27874. back: {
  27875. height: math.unit(6 + 7 / 12, "feet"),
  27876. weight: math.unit(250, "lb"),
  27877. name: "Back",
  27878. image: {
  27879. source: "./media/characters/nemoskii/back.svg",
  27880. extra: 1845 / 1788,
  27881. bottom: 10.5 / 1852
  27882. }
  27883. },
  27884. head: {
  27885. height: math.unit(1.31, "feet"),
  27886. name: "Head",
  27887. image: {
  27888. source: "./media/characters/nemoskii/head.svg"
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Micro",
  27895. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27896. },
  27897. {
  27898. name: "Normal",
  27899. height: math.unit(6 + 7 / 12, "feet"),
  27900. default: true
  27901. },
  27902. {
  27903. name: "Macro",
  27904. height: math.unit((6 + 7 / 12) * 150, "feet")
  27905. },
  27906. {
  27907. name: "Macro+",
  27908. height: math.unit((6 + 7 / 12) * 500, "feet")
  27909. },
  27910. {
  27911. name: "Megamacro",
  27912. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(1, "mile"),
  27921. weight: math.unit(265261.9, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/shui/front.svg",
  27925. extra: 1633 / 1564,
  27926. bottom: 91.5 / 1726
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Macro",
  27933. height: math.unit(1, "mile"),
  27934. default: true
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(12 + 6 / 12, "feet"),
  27943. weight: math.unit(1342, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/arokh-takakura/front.svg",
  27947. extra: 1089 / 1043,
  27948. bottom: 77.4 / 1176.7
  27949. }
  27950. },
  27951. back: {
  27952. height: math.unit(12 + 6 / 12, "feet"),
  27953. weight: math.unit(1342, "lb"),
  27954. name: "Back",
  27955. image: {
  27956. source: "./media/characters/arokh-takakura/back.svg",
  27957. extra: 1046 / 1019,
  27958. bottom: 102 / 1150
  27959. }
  27960. },
  27961. },
  27962. [
  27963. {
  27964. name: "Big",
  27965. height: math.unit(12 + 6 / 12, "feet"),
  27966. default: true
  27967. },
  27968. ]
  27969. ))
  27970. characterMakers.push(() => makeCharacter(
  27971. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27972. {
  27973. front: {
  27974. height: math.unit(5 + 6 / 12, "feet"),
  27975. weight: math.unit(150, "lb"),
  27976. name: "Front",
  27977. image: {
  27978. source: "./media/characters/theo/front.svg",
  27979. extra: 1184 / 1131,
  27980. bottom: 7.4 / 1191
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Micro",
  27987. height: math.unit(5, "inches")
  27988. },
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(5 + 6 / 12, "feet"),
  27992. default: true
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27998. {
  27999. front: {
  28000. height: math.unit(5 + 9 / 12, "feet"),
  28001. weight: math.unit(130, "lb"),
  28002. name: "Front",
  28003. image: {
  28004. source: "./media/characters/cecelia-swift/front.svg",
  28005. extra: 502 / 484,
  28006. bottom: 23 / 523
  28007. }
  28008. },
  28009. back: {
  28010. height: math.unit(5 + 9 / 12, "feet"),
  28011. weight: math.unit(130, "lb"),
  28012. name: "Back",
  28013. image: {
  28014. source: "./media/characters/cecelia-swift/back.svg",
  28015. extra: 499 / 485,
  28016. bottom: 12 / 511
  28017. }
  28018. },
  28019. head: {
  28020. height: math.unit(0.90, "feet"),
  28021. name: "Head",
  28022. image: {
  28023. source: "./media/characters/cecelia-swift/head.svg"
  28024. }
  28025. },
  28026. rump: {
  28027. height: math.unit(1.75, "feet"),
  28028. name: "Rump",
  28029. image: {
  28030. source: "./media/characters/cecelia-swift/rump.svg"
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(5 + 9 / 12, "feet"),
  28038. default: true
  28039. },
  28040. {
  28041. name: "Big",
  28042. height: math.unit(50, "feet")
  28043. },
  28044. {
  28045. name: "Macro",
  28046. height: math.unit(100, "feet")
  28047. },
  28048. {
  28049. name: "Macro+",
  28050. height: math.unit(500, "feet")
  28051. },
  28052. {
  28053. name: "Macro++",
  28054. height: math.unit(1000, "feet")
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(6, "feet"),
  28063. weight: math.unit(150, "lb"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/kaunan/front.svg",
  28067. extra: 2890 / 2523,
  28068. bottom: 49 / 2939
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Macro",
  28075. height: math.unit(150, "feet"),
  28076. default: true
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(175, "cm"),
  28085. weight: math.unit(60, "kg"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/fei/front.svg",
  28089. extra: 1873/1723,
  28090. bottom: 53/1926
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Mortal",
  28097. height: math.unit(175, "cm")
  28098. },
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(3500, "m"),
  28102. default: true
  28103. },
  28104. {
  28105. name: "Stroll",
  28106. height: math.unit(17.5, "km")
  28107. },
  28108. {
  28109. name: "Showoff",
  28110. height: math.unit(175, "km")
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(7, "feet"),
  28119. weight: math.unit(1000, "kg"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/edrax/front.svg",
  28123. extra: 2838 / 2550,
  28124. bottom: 130 / 2968
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Small",
  28131. height: math.unit(7, "feet")
  28132. },
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(1500, "meters")
  28136. },
  28137. {
  28138. name: "Mega",
  28139. height: math.unit(12000000, "km"),
  28140. default: true
  28141. },
  28142. {
  28143. name: "Megamacro",
  28144. height: math.unit(10600000, "lightyears")
  28145. },
  28146. {
  28147. name: "Hypermacro",
  28148. height: math.unit(256, "yottameters")
  28149. },
  28150. ]
  28151. ))
  28152. characterMakers.push(() => makeCharacter(
  28153. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28154. {
  28155. front: {
  28156. height: math.unit(10, "feet"),
  28157. weight: math.unit(750, "lb"),
  28158. name: "Front",
  28159. image: {
  28160. source: "./media/characters/clove/front.svg",
  28161. extra: 1918/1751,
  28162. bottom: 52/1970
  28163. }
  28164. },
  28165. back: {
  28166. height: math.unit(10, "feet"),
  28167. weight: math.unit(750, "lb"),
  28168. name: "Back",
  28169. image: {
  28170. source: "./media/characters/clove/back.svg",
  28171. extra: 1912/1747,
  28172. bottom: 50/1962
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Normal",
  28179. height: math.unit(10, "feet"),
  28180. default: true
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28186. {
  28187. front: {
  28188. height: math.unit(4, "feet"),
  28189. weight: math.unit(50, "lb"),
  28190. name: "Front",
  28191. image: {
  28192. source: "./media/characters/alex-rabbit/front.svg",
  28193. extra: 507 / 458,
  28194. bottom: 18.5 / 527
  28195. }
  28196. },
  28197. back: {
  28198. height: math.unit(4, "feet"),
  28199. weight: math.unit(50, "lb"),
  28200. name: "Back",
  28201. image: {
  28202. source: "./media/characters/alex-rabbit/back.svg",
  28203. extra: 502 / 460,
  28204. bottom: 18.9 / 521
  28205. }
  28206. },
  28207. },
  28208. [
  28209. {
  28210. name: "Normal",
  28211. height: math.unit(4, "feet"),
  28212. default: true
  28213. },
  28214. ]
  28215. ))
  28216. characterMakers.push(() => makeCharacter(
  28217. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28218. {
  28219. front: {
  28220. height: math.unit(1 + 3 / 12, "feet"),
  28221. weight: math.unit(80, "lb"),
  28222. name: "Front",
  28223. image: {
  28224. source: "./media/characters/zander-rose/front.svg",
  28225. extra: 916 / 797,
  28226. bottom: 17 / 933
  28227. }
  28228. },
  28229. back: {
  28230. height: math.unit(1 + 3 / 12, "feet"),
  28231. weight: math.unit(80, "lb"),
  28232. name: "Back",
  28233. image: {
  28234. source: "./media/characters/zander-rose/back.svg",
  28235. extra: 903 / 779,
  28236. bottom: 31 / 934
  28237. }
  28238. },
  28239. },
  28240. [
  28241. {
  28242. name: "Normal",
  28243. height: math.unit(1 + 3 / 12, "feet"),
  28244. default: true
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28250. {
  28251. anthro: {
  28252. height: math.unit(6, "feet"),
  28253. weight: math.unit(150, "lb"),
  28254. name: "Anthro",
  28255. image: {
  28256. source: "./media/characters/razz/anthro.svg",
  28257. extra: 1437 / 1343,
  28258. bottom: 48 / 1485
  28259. }
  28260. },
  28261. feral: {
  28262. height: math.unit(6, "feet"),
  28263. weight: math.unit(150, "lb"),
  28264. name: "Feral",
  28265. image: {
  28266. source: "./media/characters/razz/feral.svg",
  28267. extra: 2569 / 1385,
  28268. bottom: 95 / 2664
  28269. }
  28270. },
  28271. },
  28272. [
  28273. {
  28274. name: "Normal",
  28275. height: math.unit(6, "feet"),
  28276. default: true
  28277. },
  28278. ]
  28279. ))
  28280. characterMakers.push(() => makeCharacter(
  28281. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28282. {
  28283. front: {
  28284. height: math.unit(9 + 4 / 12, "feet"),
  28285. weight: math.unit(500, "lb"),
  28286. name: "Front",
  28287. image: {
  28288. source: "./media/characters/morrigan/front.svg",
  28289. extra: 2707 / 2579,
  28290. bottom: 156 / 2863
  28291. }
  28292. },
  28293. },
  28294. [
  28295. {
  28296. name: "Normal",
  28297. height: math.unit(9 + 4 / 12, "feet"),
  28298. default: true
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28304. {
  28305. front: {
  28306. height: math.unit(5, "stories"),
  28307. weight: math.unit(4000, "lb"),
  28308. name: "Front",
  28309. image: {
  28310. source: "./media/characters/jenene/front.svg",
  28311. extra: 1780 / 1710,
  28312. bottom: 57 / 1837
  28313. }
  28314. },
  28315. },
  28316. [
  28317. {
  28318. name: "Normal",
  28319. height: math.unit(5, "stories"),
  28320. default: true
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28326. {
  28327. taurSfw: {
  28328. height: math.unit(10, "meters"),
  28329. weight: math.unit(17500, "kg"),
  28330. name: "Taur",
  28331. image: {
  28332. source: "./media/characters/faey/taur-sfw.svg",
  28333. extra: 1200 / 968,
  28334. bottom: 41 / 1241
  28335. }
  28336. },
  28337. chestmaw: {
  28338. height: math.unit(2.01, "meters"),
  28339. name: "Chestmaw",
  28340. image: {
  28341. source: "./media/characters/faey/chestmaw.svg"
  28342. }
  28343. },
  28344. foot: {
  28345. height: math.unit(2.43, "meters"),
  28346. name: "Foot",
  28347. image: {
  28348. source: "./media/characters/faey/foot.svg"
  28349. }
  28350. },
  28351. jaws: {
  28352. height: math.unit(1.66, "meters"),
  28353. name: "Jaws",
  28354. image: {
  28355. source: "./media/characters/faey/jaws.svg"
  28356. }
  28357. },
  28358. tongues: {
  28359. height: math.unit(2.01, "meters"),
  28360. name: "Tongues",
  28361. image: {
  28362. source: "./media/characters/faey/tongues.svg"
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Small",
  28369. height: math.unit(10, "meters"),
  28370. default: true
  28371. },
  28372. {
  28373. name: "Big",
  28374. height: math.unit(500000, "km")
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(7, "feet"),
  28383. weight: math.unit(275, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/roku/front.svg",
  28387. extra: 903 / 878,
  28388. bottom: 37 / 940
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(7, "feet"),
  28396. default: true
  28397. },
  28398. {
  28399. name: "Macro",
  28400. height: math.unit(500, "feet")
  28401. },
  28402. {
  28403. name: "Megamacro",
  28404. height: math.unit(200, "miles")
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(6 + 2 / 12, "feet"),
  28413. weight: math.unit(150, "lb"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/lira/front.svg",
  28417. extra: 1727 / 1605,
  28418. bottom: 26 / 1753
  28419. }
  28420. },
  28421. back: {
  28422. height: math.unit(6 + 2 / 12, "feet"),
  28423. weight: math.unit(150, "lb"),
  28424. name: "Back",
  28425. image: {
  28426. source: "./media/characters/lira/back.svg",
  28427. extra: 1713/1621,
  28428. bottom: 20/1733
  28429. }
  28430. },
  28431. hand: {
  28432. height: math.unit(0.75, "feet"),
  28433. name: "Hand",
  28434. image: {
  28435. source: "./media/characters/lira/hand.svg"
  28436. }
  28437. },
  28438. maw: {
  28439. height: math.unit(0.65, "feet"),
  28440. name: "Maw",
  28441. image: {
  28442. source: "./media/characters/lira/maw.svg"
  28443. }
  28444. },
  28445. pawDigi: {
  28446. height: math.unit(1.6, "feet"),
  28447. name: "Paw Digi",
  28448. image: {
  28449. source: "./media/characters/lira/paw-digi.svg"
  28450. }
  28451. },
  28452. pawPlanti: {
  28453. height: math.unit(1.4, "feet"),
  28454. name: "Paw Planti",
  28455. image: {
  28456. source: "./media/characters/lira/paw-planti.svg"
  28457. }
  28458. },
  28459. },
  28460. [
  28461. {
  28462. name: "Normal",
  28463. height: math.unit(6 + 2 / 12, "feet"),
  28464. default: true
  28465. },
  28466. {
  28467. name: "Macro",
  28468. height: math.unit(100, "feet")
  28469. },
  28470. {
  28471. name: "Macro²",
  28472. height: math.unit(1600, "feet")
  28473. },
  28474. {
  28475. name: "Planetary",
  28476. height: math.unit(20, "earths")
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(6, "feet"),
  28485. weight: math.unit(150, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/hadjet/front.svg",
  28489. extra: 1480 / 1346,
  28490. bottom: 26 / 1506
  28491. }
  28492. },
  28493. frontNsfw: {
  28494. height: math.unit(6, "feet"),
  28495. weight: math.unit(150, "lb"),
  28496. name: "Front (NSFW)",
  28497. image: {
  28498. source: "./media/characters/hadjet/front-nsfw.svg",
  28499. extra: 1440 / 1358,
  28500. bottom: 52 / 1492
  28501. }
  28502. },
  28503. },
  28504. [
  28505. {
  28506. name: "Macro",
  28507. height: math.unit(10, "stories"),
  28508. default: true
  28509. },
  28510. {
  28511. name: "Megamacro",
  28512. height: math.unit(1.5, "miles")
  28513. },
  28514. {
  28515. name: "Megamacro+",
  28516. height: math.unit(5, "miles")
  28517. },
  28518. ]
  28519. ))
  28520. characterMakers.push(() => makeCharacter(
  28521. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28522. {
  28523. side: {
  28524. height: math.unit(106, "feet"),
  28525. weight: math.unit(500, "tonnes"),
  28526. name: "Side",
  28527. image: {
  28528. source: "./media/characters/kodran/side.svg",
  28529. extra: 553 / 480,
  28530. bottom: 33 / 586
  28531. }
  28532. },
  28533. front: {
  28534. height: math.unit(132, "feet"),
  28535. weight: math.unit(500, "tonnes"),
  28536. name: "Front",
  28537. image: {
  28538. source: "./media/characters/kodran/front.svg",
  28539. extra: 667 / 643,
  28540. bottom: 42 / 709
  28541. }
  28542. },
  28543. flying: {
  28544. height: math.unit(350, "feet"),
  28545. weight: math.unit(500, "tonnes"),
  28546. name: "Flying",
  28547. image: {
  28548. source: "./media/characters/kodran/flying.svg"
  28549. }
  28550. },
  28551. foot: {
  28552. height: math.unit(33, "feet"),
  28553. name: "Foot",
  28554. image: {
  28555. source: "./media/characters/kodran/foot.svg"
  28556. }
  28557. },
  28558. footFront: {
  28559. height: math.unit(19, "feet"),
  28560. name: "Foot (Front)",
  28561. image: {
  28562. source: "./media/characters/kodran/foot-front.svg",
  28563. extra: 261 / 261,
  28564. bottom: 91 / 352
  28565. }
  28566. },
  28567. headFront: {
  28568. height: math.unit(53, "feet"),
  28569. name: "Head (Front)",
  28570. image: {
  28571. source: "./media/characters/kodran/head-front.svg"
  28572. }
  28573. },
  28574. headSide: {
  28575. height: math.unit(65, "feet"),
  28576. name: "Head (Side)",
  28577. image: {
  28578. source: "./media/characters/kodran/head-side.svg"
  28579. }
  28580. },
  28581. throat: {
  28582. height: math.unit(79, "feet"),
  28583. name: "Throat",
  28584. image: {
  28585. source: "./media/characters/kodran/throat.svg"
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Large",
  28592. height: math.unit(106, "feet"),
  28593. default: true
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28599. {
  28600. side: {
  28601. height: math.unit(11, "feet"),
  28602. weight: math.unit(150, "lb"),
  28603. name: "Side",
  28604. image: {
  28605. source: "./media/characters/pyxaron/side.svg",
  28606. extra: 305 / 195,
  28607. bottom: 17 / 322
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(11, "feet"),
  28615. default: true
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(6, "feet"),
  28624. weight: math.unit(150, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/meep/front.svg",
  28628. extra: 88 / 80,
  28629. bottom: 6 / 94
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Fun Sized",
  28636. height: math.unit(2, "inches"),
  28637. default: true
  28638. },
  28639. {
  28640. name: "Friend Sized",
  28641. height: math.unit(8, "inches")
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(15, "feet"),
  28650. weight: math.unit(2500, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/holly-rabbit/front.svg",
  28654. extra: 1433 / 1233,
  28655. bottom: 125 / 1558
  28656. }
  28657. },
  28658. dick: {
  28659. height: math.unit(4.6, "feet"),
  28660. name: "Dick",
  28661. image: {
  28662. source: "./media/characters/holly-rabbit/dick.svg"
  28663. }
  28664. },
  28665. },
  28666. [
  28667. {
  28668. name: "Normal",
  28669. height: math.unit(15, "feet"),
  28670. default: true
  28671. },
  28672. {
  28673. name: "Macro",
  28674. height: math.unit(250, "feet")
  28675. },
  28676. {
  28677. name: "Macro+",
  28678. height: math.unit(2500, "feet")
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28684. {
  28685. front: {
  28686. height: math.unit(3.02, "meters"),
  28687. weight: math.unit(500, "kg"),
  28688. name: "Front",
  28689. image: {
  28690. source: "./media/characters/drena/front.svg",
  28691. extra: 282 / 243,
  28692. bottom: 8 / 290
  28693. }
  28694. },
  28695. side: {
  28696. height: math.unit(3.02, "meters"),
  28697. weight: math.unit(500, "kg"),
  28698. name: "Side",
  28699. image: {
  28700. source: "./media/characters/drena/side.svg",
  28701. extra: 280 / 245,
  28702. bottom: 10 / 290
  28703. }
  28704. },
  28705. back: {
  28706. height: math.unit(3.02, "meters"),
  28707. weight: math.unit(500, "kg"),
  28708. name: "Back",
  28709. image: {
  28710. source: "./media/characters/drena/back.svg",
  28711. extra: 278 / 243,
  28712. bottom: 2 / 280
  28713. }
  28714. },
  28715. foot: {
  28716. height: math.unit(0.75, "meters"),
  28717. name: "Foot",
  28718. image: {
  28719. source: "./media/characters/drena/foot.svg"
  28720. }
  28721. },
  28722. maw: {
  28723. height: math.unit(0.82, "meters"),
  28724. name: "Maw",
  28725. image: {
  28726. source: "./media/characters/drena/maw.svg"
  28727. }
  28728. },
  28729. rump: {
  28730. height: math.unit(0.93, "meters"),
  28731. name: "Rump",
  28732. image: {
  28733. source: "./media/characters/drena/rump.svg"
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Normal",
  28740. height: math.unit(3.02, "meters"),
  28741. default: true
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(6 + 4 / 12, "feet"),
  28750. weight: math.unit(250, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/remmyzilla/front.svg",
  28754. extra: 4033 / 3588,
  28755. bottom: 123 / 4156
  28756. }
  28757. },
  28758. back: {
  28759. height: math.unit(6 + 4 / 12, "feet"),
  28760. weight: math.unit(250, "lb"),
  28761. name: "Back",
  28762. image: {
  28763. source: "./media/characters/remmyzilla/back.svg",
  28764. extra: 2687 / 2555,
  28765. bottom: 48 / 2735
  28766. }
  28767. },
  28768. paw: {
  28769. height: math.unit(1.73, "feet"),
  28770. name: "Paw",
  28771. image: {
  28772. source: "./media/characters/remmyzilla/paw.svg"
  28773. }
  28774. },
  28775. maw: {
  28776. height: math.unit(1.73, "feet"),
  28777. name: "Maw",
  28778. image: {
  28779. source: "./media/characters/remmyzilla/maw.svg"
  28780. }
  28781. },
  28782. },
  28783. [
  28784. {
  28785. name: "Normal",
  28786. height: math.unit(6 + 4 / 12, "feet")
  28787. },
  28788. {
  28789. name: "Minimacro",
  28790. height: math.unit(12 + 8 / 12, "feet")
  28791. },
  28792. {
  28793. name: "Normal",
  28794. height: math.unit(640, "feet"),
  28795. default: true
  28796. },
  28797. {
  28798. name: "Megamacro",
  28799. height: math.unit(6400, "feet")
  28800. },
  28801. {
  28802. name: "Gigamacro",
  28803. height: math.unit(64000, "miles")
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28809. {
  28810. front: {
  28811. height: math.unit(2.5, "meters"),
  28812. weight: math.unit(300, "lb"),
  28813. name: "Front",
  28814. image: {
  28815. source: "./media/characters/lawrence/front.svg",
  28816. extra: 357 / 335,
  28817. bottom: 30 / 387
  28818. }
  28819. },
  28820. back: {
  28821. height: math.unit(2.5, "meters"),
  28822. weight: math.unit(300, "lb"),
  28823. name: "Back",
  28824. image: {
  28825. source: "./media/characters/lawrence/back.svg",
  28826. extra: 357 / 338,
  28827. bottom: 16 / 373
  28828. }
  28829. },
  28830. head: {
  28831. height: math.unit(0.9, "meter"),
  28832. name: "Head",
  28833. image: {
  28834. source: "./media/characters/lawrence/head.svg"
  28835. }
  28836. },
  28837. maw: {
  28838. height: math.unit(0.7, "meter"),
  28839. name: "Maw",
  28840. image: {
  28841. source: "./media/characters/lawrence/maw.svg"
  28842. }
  28843. },
  28844. footBottom: {
  28845. height: math.unit(0.5, "meter"),
  28846. name: "Foot (Bottom)",
  28847. image: {
  28848. source: "./media/characters/lawrence/foot-bottom.svg"
  28849. }
  28850. },
  28851. footTop: {
  28852. height: math.unit(0.5, "meter"),
  28853. name: "Foot (Top)",
  28854. image: {
  28855. source: "./media/characters/lawrence/foot-top.svg"
  28856. }
  28857. },
  28858. },
  28859. [
  28860. {
  28861. name: "Normal",
  28862. height: math.unit(2.5, "meters"),
  28863. default: true
  28864. },
  28865. {
  28866. name: "Macro",
  28867. height: math.unit(95, "meters")
  28868. },
  28869. {
  28870. name: "Megamacro",
  28871. height: math.unit(150, "km")
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28877. {
  28878. front: {
  28879. height: math.unit(4.2, "meters"),
  28880. name: "Front",
  28881. image: {
  28882. source: "./media/characters/sydney/front.svg",
  28883. extra: 1323 / 1277,
  28884. bottom: 111 / 1434
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Normal",
  28891. height: math.unit(4.2, "meters"),
  28892. default: true
  28893. },
  28894. ]
  28895. ))
  28896. characterMakers.push(() => makeCharacter(
  28897. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28898. {
  28899. back: {
  28900. height: math.unit(201, "feet"),
  28901. name: "Back",
  28902. image: {
  28903. source: "./media/characters/jessica/back.svg",
  28904. extra: 273 / 259,
  28905. bottom: 7 / 280
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(201, "feet"),
  28913. default: true
  28914. },
  28915. {
  28916. name: "Megamacro",
  28917. height: math.unit(8, "miles")
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28923. {
  28924. side: {
  28925. height: math.unit(5.6, "m"),
  28926. weight: math.unit(8000, "kg"),
  28927. name: "Side",
  28928. image: {
  28929. source: "./media/characters/victoria/side.svg",
  28930. extra: 1542/1229,
  28931. bottom: 124/1666
  28932. }
  28933. },
  28934. maw: {
  28935. height: math.unit(7.14, "feet"),
  28936. name: "Maw",
  28937. image: {
  28938. source: "./media/characters/victoria/maw.svg"
  28939. }
  28940. },
  28941. },
  28942. [
  28943. {
  28944. name: "Normal",
  28945. height: math.unit(5.6, "m"),
  28946. default: true
  28947. },
  28948. ]
  28949. ))
  28950. characterMakers.push(() => makeCharacter(
  28951. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28952. {
  28953. front: {
  28954. height: math.unit(5 + 6 / 12, "feet"),
  28955. name: "Front",
  28956. image: {
  28957. source: "./media/characters/cat/front.svg",
  28958. extra: 1449/1295,
  28959. bottom: 34/1483
  28960. }
  28961. },
  28962. back: {
  28963. height: math.unit(5 + 6 / 12, "feet"),
  28964. name: "Back",
  28965. image: {
  28966. source: "./media/characters/cat/back.svg",
  28967. extra: 1466/1301,
  28968. bottom: 19/1485
  28969. }
  28970. },
  28971. taur: {
  28972. height: math.unit(7, "feet"),
  28973. name: "Taur",
  28974. image: {
  28975. source: "./media/characters/cat/taur.svg",
  28976. extra: 1389/1233,
  28977. bottom: 83/1472
  28978. }
  28979. },
  28980. lucarioFront: {
  28981. height: math.unit(4, "feet"),
  28982. name: "Lucario (Front)",
  28983. image: {
  28984. source: "./media/characters/cat/lucario-front.svg",
  28985. extra: 1149/1019,
  28986. bottom: 84/1233
  28987. }
  28988. },
  28989. lucarioBack: {
  28990. height: math.unit(4, "feet"),
  28991. name: "Lucario (Back)",
  28992. image: {
  28993. source: "./media/characters/cat/lucario-back.svg",
  28994. extra: 1190/1059,
  28995. bottom: 33/1223
  28996. }
  28997. },
  28998. megaLucario: {
  28999. height: math.unit(4, "feet"),
  29000. name: "Mega Lucario",
  29001. image: {
  29002. source: "./media/characters/cat/mega-lucario.svg",
  29003. extra: 1515 / 1319,
  29004. bottom: 63 / 1578
  29005. }
  29006. },
  29007. nickit: {
  29008. height: math.unit(2, "feet"),
  29009. name: "Nickit",
  29010. image: {
  29011. source: "./media/characters/cat/nickit.svg",
  29012. extra: 1980 / 1585,
  29013. bottom: 102 / 2082
  29014. }
  29015. },
  29016. lopunnyFront: {
  29017. height: math.unit(5, "feet"),
  29018. name: "Lopunny (Front)",
  29019. image: {
  29020. source: "./media/characters/cat/lopunny-front.svg",
  29021. extra: 1782 / 1469,
  29022. bottom: 38 / 1820
  29023. }
  29024. },
  29025. lopunnyBack: {
  29026. height: math.unit(5, "feet"),
  29027. name: "Lopunny (Back)",
  29028. image: {
  29029. source: "./media/characters/cat/lopunny-back.svg",
  29030. extra: 1660 / 1490,
  29031. bottom: 25 / 1685
  29032. }
  29033. },
  29034. },
  29035. [
  29036. {
  29037. name: "Really small",
  29038. height: math.unit(1, "nm")
  29039. },
  29040. {
  29041. name: "Micro",
  29042. height: math.unit(5, "inches")
  29043. },
  29044. {
  29045. name: "Normal",
  29046. height: math.unit(5 + 6 / 12, "feet"),
  29047. default: true
  29048. },
  29049. {
  29050. name: "Macro",
  29051. height: math.unit(50, "feet")
  29052. },
  29053. {
  29054. name: "Macro+",
  29055. height: math.unit(150, "feet")
  29056. },
  29057. {
  29058. name: "Megamacro",
  29059. height: math.unit(100, "miles")
  29060. },
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(63.4, "meters"),
  29068. weight: math.unit(3.28349e+6, "kilograms"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/kirina-violet/front.svg",
  29072. extra: 2812 / 2725,
  29073. bottom: 0 / 2812
  29074. }
  29075. },
  29076. back: {
  29077. height: math.unit(63.4, "meters"),
  29078. weight: math.unit(3.28349e+6, "kilograms"),
  29079. name: "Back",
  29080. image: {
  29081. source: "./media/characters/kirina-violet/back.svg",
  29082. extra: 2812 / 2725,
  29083. bottom: 0 / 2812
  29084. }
  29085. },
  29086. mouth: {
  29087. height: math.unit(4.35, "meters"),
  29088. name: "Mouth",
  29089. image: {
  29090. source: "./media/characters/kirina-violet/mouth.svg"
  29091. }
  29092. },
  29093. paw: {
  29094. height: math.unit(5.6, "meters"),
  29095. name: "Paw",
  29096. image: {
  29097. source: "./media/characters/kirina-violet/paw.svg"
  29098. }
  29099. },
  29100. tail: {
  29101. height: math.unit(18, "meters"),
  29102. name: "Tail",
  29103. image: {
  29104. source: "./media/characters/kirina-violet/tail.svg"
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Macro",
  29111. height: math.unit(63.4, "meters"),
  29112. default: true
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29118. {
  29119. front: {
  29120. height: math.unit(75, "feet"),
  29121. name: "Front",
  29122. image: {
  29123. source: "./media/characters/cat-gigachu/front.svg",
  29124. extra: 1239/1027,
  29125. bottom: 32/1271
  29126. }
  29127. },
  29128. back: {
  29129. height: math.unit(75, "feet"),
  29130. name: "Back",
  29131. image: {
  29132. source: "./media/characters/cat-gigachu/back.svg",
  29133. extra: 1229/1030,
  29134. bottom: 9/1238
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Dynamax",
  29141. height: math.unit(75, "feet"),
  29142. default: true
  29143. },
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29148. {
  29149. front: {
  29150. height: math.unit(6, "feet"),
  29151. weight: math.unit(150, "lb"),
  29152. name: "Front",
  29153. image: {
  29154. source: "./media/characters/sfaiyan/front.svg",
  29155. extra: 999 / 978,
  29156. bottom: 5 / 1004
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(1.82, "meters")
  29164. },
  29165. {
  29166. name: "Giant",
  29167. height: math.unit(2.27, "km"),
  29168. default: true
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29174. {
  29175. front: {
  29176. height: math.unit(179, "cm"),
  29177. weight: math.unit(100, "kg"),
  29178. name: "Front",
  29179. image: {
  29180. source: "./media/characters/raunehkeli/front.svg",
  29181. extra: 1934 / 1926,
  29182. bottom: 0 / 1934
  29183. }
  29184. },
  29185. },
  29186. [
  29187. {
  29188. name: "Normal",
  29189. height: math.unit(179, "cm")
  29190. },
  29191. {
  29192. name: "Maximum",
  29193. height: math.unit(575, "meters"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29200. {
  29201. front: {
  29202. height: math.unit(6, "feet"),
  29203. weight: math.unit(150, "lb"),
  29204. name: "Front",
  29205. image: {
  29206. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29207. extra: 2625 / 2518,
  29208. bottom: 60 / 2685
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Normal",
  29215. height: math.unit(6 + 2 / 12, "feet")
  29216. },
  29217. {
  29218. name: "Macro",
  29219. height: math.unit(1180, "feet"),
  29220. default: true
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(5 + 6 / 12, "feet"),
  29229. weight: math.unit(108, "lb"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/lilith-zott/front.svg",
  29233. extra: 2510 / 2238,
  29234. bottom: 100 / 2610
  29235. }
  29236. },
  29237. frontDressed: {
  29238. height: math.unit(5 + 6 / 12, "feet"),
  29239. weight: math.unit(108, "lb"),
  29240. name: "Front (Dressed)",
  29241. image: {
  29242. source: "./media/characters/lilith-zott/front-dressed.svg",
  29243. extra: 2510 / 2238,
  29244. bottom: 100 / 2610
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(5 + 6 / 12, "feet")
  29252. },
  29253. {
  29254. name: "Macro",
  29255. height: math.unit(1030, "feet"),
  29256. default: true
  29257. },
  29258. ]
  29259. ))
  29260. characterMakers.push(() => makeCharacter(
  29261. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29262. {
  29263. front: {
  29264. height: math.unit(6, "feet"),
  29265. weight: math.unit(150, "lb"),
  29266. name: "Front",
  29267. image: {
  29268. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29269. extra: 2567 / 2435,
  29270. bottom: 39 / 2606
  29271. }
  29272. },
  29273. frontSuper: {
  29274. height: math.unit(6, "feet"),
  29275. name: "Front (Super)",
  29276. image: {
  29277. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29278. extra: 2567 / 2435,
  29279. bottom: 39 / 2606
  29280. }
  29281. },
  29282. },
  29283. [
  29284. {
  29285. name: "Normal",
  29286. height: math.unit(5 + 10 / 12, "feet")
  29287. },
  29288. {
  29289. name: "Macro",
  29290. height: math.unit(1100, "feet"),
  29291. default: true
  29292. },
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(100, "miles"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/sona/front.svg",
  29303. extra: 2433 / 2201,
  29304. bottom: 53 / 2486
  29305. }
  29306. },
  29307. foot: {
  29308. height: math.unit(16.1, "miles"),
  29309. name: "Foot",
  29310. image: {
  29311. source: "./media/characters/sona/foot.svg"
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Macro",
  29318. height: math.unit(100, "miles"),
  29319. default: true
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29325. {
  29326. front: {
  29327. height: math.unit(6, "feet"),
  29328. weight: math.unit(150, "lb"),
  29329. name: "Front",
  29330. image: {
  29331. source: "./media/characters/bailey/front.svg",
  29332. extra: 1778 / 1724,
  29333. bottom: 30 / 1808
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Micro",
  29340. height: math.unit(4, "inches")
  29341. },
  29342. {
  29343. name: "Normal",
  29344. height: math.unit(5 + 5 / 12, "feet"),
  29345. default: true
  29346. },
  29347. {
  29348. name: "Macro",
  29349. height: math.unit(250, "feet")
  29350. },
  29351. {
  29352. name: "Megamacro",
  29353. height: math.unit(100, "miles")
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29359. {
  29360. front: {
  29361. height: math.unit(5 + 2 / 12, "feet"),
  29362. weight: math.unit(120, "lb"),
  29363. name: "Front",
  29364. image: {
  29365. source: "./media/characters/snaps/front.svg",
  29366. extra: 2370 / 2177,
  29367. bottom: 48 / 2418
  29368. }
  29369. },
  29370. back: {
  29371. height: math.unit(5 + 2 / 12, "feet"),
  29372. weight: math.unit(120, "lb"),
  29373. name: "Back",
  29374. image: {
  29375. source: "./media/characters/snaps/back.svg",
  29376. extra: 2408 / 2258,
  29377. bottom: 15 / 2423
  29378. }
  29379. },
  29380. },
  29381. [
  29382. {
  29383. name: "Micro",
  29384. height: math.unit(9, "inches")
  29385. },
  29386. {
  29387. name: "Normal",
  29388. height: math.unit(5 + 2 / 12, "feet"),
  29389. default: true
  29390. },
  29391. {
  29392. name: "Mini Macro",
  29393. height: math.unit(10, "feet")
  29394. },
  29395. ]
  29396. ))
  29397. characterMakers.push(() => makeCharacter(
  29398. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29399. {
  29400. front: {
  29401. height: math.unit(1.8, "meters"),
  29402. weight: math.unit(85, "kg"),
  29403. name: "Front",
  29404. image: {
  29405. source: "./media/characters/azteck/front.svg",
  29406. extra: 2815 / 2625,
  29407. bottom: 89 / 2904
  29408. }
  29409. },
  29410. back: {
  29411. height: math.unit(1.8, "meters"),
  29412. weight: math.unit(85, "kg"),
  29413. name: "Back",
  29414. image: {
  29415. source: "./media/characters/azteck/back.svg",
  29416. extra: 2856 / 2648,
  29417. bottom: 85 / 2941
  29418. }
  29419. },
  29420. frontDressed: {
  29421. height: math.unit(1.8, "meters"),
  29422. weight: math.unit(85, "kg"),
  29423. name: "Front (Dressed)",
  29424. image: {
  29425. source: "./media/characters/azteck/front-dressed.svg",
  29426. extra: 2147 / 2003,
  29427. bottom: 68 / 2215
  29428. }
  29429. },
  29430. head: {
  29431. height: math.unit(0.47, "meters"),
  29432. weight: math.unit(85, "kg"),
  29433. name: "Head",
  29434. image: {
  29435. source: "./media/characters/azteck/head.svg"
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Bite sized",
  29442. height: math.unit(16, "cm")
  29443. },
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(1.8, "meters"),
  29447. default: true
  29448. },
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29453. {
  29454. front: {
  29455. height: math.unit(6, "feet"),
  29456. weight: math.unit(150, "lb"),
  29457. name: "Front",
  29458. image: {
  29459. source: "./media/characters/pidge/front.svg",
  29460. extra: 620 / 588,
  29461. bottom: 9 / 629
  29462. }
  29463. },
  29464. back: {
  29465. height: math.unit(6, "feet"),
  29466. weight: math.unit(150, "lb"),
  29467. name: "Back",
  29468. image: {
  29469. source: "./media/characters/pidge/back.svg",
  29470. extra: 620 / 588,
  29471. bottom: 9 / 629
  29472. }
  29473. },
  29474. },
  29475. [
  29476. {
  29477. name: "Macro",
  29478. height: math.unit(1, "mile"),
  29479. default: true
  29480. },
  29481. ]
  29482. ))
  29483. characterMakers.push(() => makeCharacter(
  29484. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29485. {
  29486. front: {
  29487. height: math.unit(6, "feet"),
  29488. weight: math.unit(150, "lb"),
  29489. name: "Front",
  29490. image: {
  29491. source: "./media/characters/en/front.svg",
  29492. extra: 1697 / 1563,
  29493. bottom: 103 / 1800
  29494. }
  29495. },
  29496. back: {
  29497. height: math.unit(6, "feet"),
  29498. weight: math.unit(150, "lb"),
  29499. name: "Back",
  29500. image: {
  29501. source: "./media/characters/en/back.svg",
  29502. extra: 1700 / 1570,
  29503. bottom: 51 / 1751
  29504. }
  29505. },
  29506. frontDressed: {
  29507. height: math.unit(6, "feet"),
  29508. weight: math.unit(150, "lb"),
  29509. name: "Front (Dressed)",
  29510. image: {
  29511. source: "./media/characters/en/front-dressed.svg",
  29512. extra: 1697 / 1563,
  29513. bottom: 103 / 1800
  29514. }
  29515. },
  29516. backDressed: {
  29517. height: math.unit(6, "feet"),
  29518. weight: math.unit(150, "lb"),
  29519. name: "Back (Dressed)",
  29520. image: {
  29521. source: "./media/characters/en/back-dressed.svg",
  29522. extra: 1700 / 1570,
  29523. bottom: 51 / 1751
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Macro",
  29530. height: math.unit(210, "feet"),
  29531. default: true
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(6, "feet"),
  29540. weight: math.unit(150, "lb"),
  29541. name: "Front",
  29542. image: {
  29543. source: "./media/characters/haze-orris/front.svg",
  29544. extra: 3975 / 3525,
  29545. bottom: 137 / 4112
  29546. }
  29547. },
  29548. },
  29549. [
  29550. {
  29551. name: "Micro",
  29552. height: math.unit(150, "mm"),
  29553. default: true
  29554. },
  29555. ]
  29556. ))
  29557. characterMakers.push(() => makeCharacter(
  29558. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29559. {
  29560. front: {
  29561. height: math.unit(6, "feet"),
  29562. weight: math.unit(150, "lb"),
  29563. name: "Front",
  29564. image: {
  29565. source: "./media/characters/casselene-yaro/front.svg",
  29566. extra: 4721 / 4541,
  29567. bottom: 82 / 4803
  29568. }
  29569. },
  29570. back: {
  29571. height: math.unit(6, "feet"),
  29572. weight: math.unit(150, "lb"),
  29573. name: "Back",
  29574. image: {
  29575. source: "./media/characters/casselene-yaro/back.svg",
  29576. extra: 4569 / 4377,
  29577. bottom: 69 / 4638
  29578. }
  29579. },
  29580. frontDressed: {
  29581. height: math.unit(6, "feet"),
  29582. weight: math.unit(150, "lb"),
  29583. name: "Front-dressed",
  29584. image: {
  29585. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29586. extra: 4721 / 4541,
  29587. bottom: 82 / 4803
  29588. }
  29589. },
  29590. },
  29591. [
  29592. {
  29593. name: "Macro",
  29594. height: math.unit(190, "feet"),
  29595. default: true
  29596. },
  29597. ]
  29598. ))
  29599. characterMakers.push(() => makeCharacter(
  29600. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29601. {
  29602. front: {
  29603. height: math.unit(6, "feet"),
  29604. weight: math.unit(150, "lb"),
  29605. name: "Front",
  29606. image: {
  29607. source: "./media/characters/myra-rue-delore/front.svg",
  29608. extra: 1340 / 1308,
  29609. bottom: 67 / 1407
  29610. }
  29611. },
  29612. back: {
  29613. height: math.unit(6, "feet"),
  29614. weight: math.unit(150, "lb"),
  29615. name: "Back",
  29616. image: {
  29617. source: "./media/characters/myra-rue-delore/back.svg",
  29618. extra: 1341 / 1310,
  29619. bottom: 40 / 1381
  29620. }
  29621. },
  29622. frontDressed: {
  29623. height: math.unit(6, "feet"),
  29624. weight: math.unit(150, "lb"),
  29625. name: "Front (Dressed)",
  29626. image: {
  29627. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29628. extra: 1340 / 1308,
  29629. bottom: 67 / 1407
  29630. }
  29631. },
  29632. },
  29633. [
  29634. {
  29635. name: "Macro",
  29636. height: math.unit(150, "feet"),
  29637. default: true
  29638. },
  29639. ]
  29640. ))
  29641. characterMakers.push(() => makeCharacter(
  29642. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29643. {
  29644. front: {
  29645. height: math.unit(10, "feet"),
  29646. weight: math.unit(15015, "lb"),
  29647. name: "Front",
  29648. image: {
  29649. source: "./media/characters/fem!plat/front.svg",
  29650. extra: 2799 / 2604,
  29651. bottom: 149 / 2948
  29652. }
  29653. },
  29654. },
  29655. [
  29656. {
  29657. name: "Normal",
  29658. height: math.unit(10, "feet"),
  29659. default: true
  29660. },
  29661. {
  29662. name: "Macro",
  29663. height: math.unit(100, "feet")
  29664. },
  29665. {
  29666. name: "Megamacro",
  29667. height: math.unit(1000, "feet")
  29668. },
  29669. ]
  29670. ))
  29671. characterMakers.push(() => makeCharacter(
  29672. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29673. {
  29674. front: {
  29675. height: math.unit(15 + 5 / 12, "feet"),
  29676. weight: math.unit(4600, "lb"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/neapolitan-ananassa/front.svg",
  29680. extra: 2903 / 2736,
  29681. bottom: 0 / 2903
  29682. }
  29683. },
  29684. side: {
  29685. height: math.unit(15 + 5 / 12, "feet"),
  29686. weight: math.unit(4600, "lb"),
  29687. name: "Side",
  29688. image: {
  29689. source: "./media/characters/neapolitan-ananassa/side.svg",
  29690. extra: 2925 / 2719,
  29691. bottom: 0 / 2925
  29692. }
  29693. },
  29694. back: {
  29695. height: math.unit(15 + 5 / 12, "feet"),
  29696. weight: math.unit(4600, "lb"),
  29697. name: "Back",
  29698. image: {
  29699. source: "./media/characters/neapolitan-ananassa/back.svg",
  29700. extra: 2903 / 2736,
  29701. bottom: 0 / 2903
  29702. }
  29703. },
  29704. },
  29705. [
  29706. {
  29707. name: "Normal",
  29708. height: math.unit(15 + 5 / 12, "feet"),
  29709. default: true
  29710. },
  29711. {
  29712. name: "Post-Millenium",
  29713. height: math.unit(35 + 5 / 12, "feet")
  29714. },
  29715. {
  29716. name: "Post-Era",
  29717. height: math.unit(450 + 5 / 12, "feet")
  29718. },
  29719. ]
  29720. ))
  29721. characterMakers.push(() => makeCharacter(
  29722. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29723. {
  29724. front: {
  29725. height: math.unit(300, "meters"),
  29726. weight: math.unit(125000, "tonnes"),
  29727. name: "Front",
  29728. image: {
  29729. source: "./media/characters/pazuzu/front.svg",
  29730. extra: 877 / 794,
  29731. bottom: 47 / 924
  29732. }
  29733. },
  29734. },
  29735. [
  29736. {
  29737. name: "Macro",
  29738. height: math.unit(300, "meters"),
  29739. default: true
  29740. },
  29741. ]
  29742. ))
  29743. characterMakers.push(() => makeCharacter(
  29744. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29745. {
  29746. side: {
  29747. height: math.unit(10 + 7 / 12, "feet"),
  29748. weight: math.unit(2.5, "tons"),
  29749. name: "Side",
  29750. image: {
  29751. source: "./media/characters/aasha/side.svg",
  29752. extra: 1345 / 1245,
  29753. bottom: 111 / 1456
  29754. }
  29755. },
  29756. back: {
  29757. height: math.unit(10 + 7 / 12, "feet"),
  29758. weight: math.unit(2.5, "tons"),
  29759. name: "Back",
  29760. image: {
  29761. source: "./media/characters/aasha/back.svg",
  29762. extra: 1133 / 1057,
  29763. bottom: 257 / 1390
  29764. }
  29765. },
  29766. },
  29767. [
  29768. {
  29769. name: "Normal",
  29770. height: math.unit(10 + 7 / 12, "feet"),
  29771. default: true
  29772. },
  29773. ]
  29774. ))
  29775. characterMakers.push(() => makeCharacter(
  29776. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29777. {
  29778. front: {
  29779. height: math.unit(6 + 3 / 12, "feet"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/nevan/front.svg",
  29783. extra: 704 / 704,
  29784. bottom: 28 / 732
  29785. }
  29786. },
  29787. back: {
  29788. height: math.unit(6 + 3 / 12, "feet"),
  29789. name: "Back",
  29790. image: {
  29791. source: "./media/characters/nevan/back.svg",
  29792. extra: 714 / 714,
  29793. bottom: 21 / 735
  29794. }
  29795. },
  29796. frontFlaccid: {
  29797. height: math.unit(6 + 3 / 12, "feet"),
  29798. name: "Front (Flaccid)",
  29799. image: {
  29800. source: "./media/characters/nevan/front-flaccid.svg",
  29801. extra: 704 / 704,
  29802. bottom: 28 / 732
  29803. }
  29804. },
  29805. frontErect: {
  29806. height: math.unit(6 + 3 / 12, "feet"),
  29807. name: "Front (Erect)",
  29808. image: {
  29809. source: "./media/characters/nevan/front-erect.svg",
  29810. extra: 704 / 704,
  29811. bottom: 28 / 732
  29812. }
  29813. },
  29814. backFlaccid: {
  29815. height: math.unit(6 + 3 / 12, "feet"),
  29816. name: "Back (Flaccid)",
  29817. image: {
  29818. source: "./media/characters/nevan/back-flaccid.svg",
  29819. extra: 714 / 714,
  29820. bottom: 21 / 735
  29821. }
  29822. },
  29823. },
  29824. [
  29825. {
  29826. name: "Normal",
  29827. height: math.unit(6 + 3 / 12, "feet"),
  29828. default: true
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(4, "feet"),
  29837. name: "Front",
  29838. image: {
  29839. source: "./media/characters/arhan/front.svg",
  29840. extra: 3368 / 3133,
  29841. bottom: 0 / 3368
  29842. }
  29843. },
  29844. side: {
  29845. height: math.unit(4, "feet"),
  29846. name: "Side",
  29847. image: {
  29848. source: "./media/characters/arhan/side.svg",
  29849. extra: 3347 / 3105,
  29850. bottom: 0 / 3347
  29851. }
  29852. },
  29853. tongue: {
  29854. height: math.unit(1.42, "feet"),
  29855. name: "Tongue",
  29856. image: {
  29857. source: "./media/characters/arhan/tongue.svg"
  29858. }
  29859. },
  29860. head: {
  29861. height: math.unit(0.85, "feet"),
  29862. name: "Head",
  29863. image: {
  29864. source: "./media/characters/arhan/head.svg"
  29865. }
  29866. },
  29867. },
  29868. [
  29869. {
  29870. name: "Normal",
  29871. height: math.unit(4, "feet"),
  29872. default: true
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29878. {
  29879. front: {
  29880. height: math.unit(5 + 7.5 / 12, "feet"),
  29881. weight: math.unit(120, "lb"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/digi-duncan/front.svg",
  29885. extra: 330 / 326,
  29886. bottom: 16 / 346
  29887. }
  29888. },
  29889. side: {
  29890. height: math.unit(5 + 7.5 / 12, "feet"),
  29891. weight: math.unit(120, "lb"),
  29892. name: "Side",
  29893. image: {
  29894. source: "./media/characters/digi-duncan/side.svg",
  29895. extra: 341 / 337,
  29896. bottom: 1 / 342
  29897. }
  29898. },
  29899. back: {
  29900. height: math.unit(5 + 7.5 / 12, "feet"),
  29901. weight: math.unit(120, "lb"),
  29902. name: "Back",
  29903. image: {
  29904. source: "./media/characters/digi-duncan/back.svg",
  29905. extra: 330 / 326,
  29906. bottom: 12 / 342
  29907. }
  29908. },
  29909. },
  29910. [
  29911. {
  29912. name: "Speck",
  29913. height: math.unit(0.25, "mm")
  29914. },
  29915. {
  29916. name: "Micro",
  29917. height: math.unit(5, "mm")
  29918. },
  29919. {
  29920. name: "Tiny",
  29921. height: math.unit(0.5, "inches"),
  29922. default: true
  29923. },
  29924. {
  29925. name: "Human",
  29926. height: math.unit(5 + 7.5 / 12, "feet")
  29927. },
  29928. {
  29929. name: "Minigiant",
  29930. height: math.unit(8 + 5.25, "feet")
  29931. },
  29932. {
  29933. name: "Giant",
  29934. height: math.unit(2000, "feet")
  29935. },
  29936. {
  29937. name: "Mega",
  29938. height: math.unit(371.1, "miles")
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(2, "meters"),
  29947. weight: math.unit(350, "kg"),
  29948. name: "Front",
  29949. image: {
  29950. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29951. extra: 898 / 838,
  29952. bottom: 9 / 907
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Micro",
  29959. height: math.unit(8, "meters")
  29960. },
  29961. {
  29962. name: "Normal",
  29963. height: math.unit(50, "meters"),
  29964. default: true
  29965. },
  29966. {
  29967. name: "Macro",
  29968. height: math.unit(500, "meters")
  29969. },
  29970. ]
  29971. ))
  29972. characterMakers.push(() => makeCharacter(
  29973. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29974. {
  29975. front: {
  29976. height: math.unit(6 + 6 / 12, "feet"),
  29977. name: "Front",
  29978. image: {
  29979. source: "./media/characters/khardesh/front.svg",
  29980. extra: 1788/1596,
  29981. bottom: 66/1854
  29982. }
  29983. },
  29984. back: {
  29985. height: math.unit(6 + 6 / 12, "feet"),
  29986. name: "Back",
  29987. image: {
  29988. source: "./media/characters/khardesh/back.svg",
  29989. extra: 1781/1584,
  29990. bottom: 68/1849
  29991. }
  29992. },
  29993. },
  29994. [
  29995. {
  29996. name: "Normal",
  29997. height: math.unit(6 + 6 / 12, "feet"),
  29998. default: true
  29999. },
  30000. {
  30001. name: "Normal+",
  30002. height: math.unit(4, "meters")
  30003. },
  30004. {
  30005. name: "Macro",
  30006. height: math.unit(50, "meters")
  30007. },
  30008. {
  30009. name: "Macro+",
  30010. height: math.unit(100, "meters")
  30011. },
  30012. {
  30013. name: "Megamacro",
  30014. height: math.unit(20, "km")
  30015. },
  30016. ]
  30017. ))
  30018. characterMakers.push(() => makeCharacter(
  30019. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30020. {
  30021. front: {
  30022. height: math.unit(6, "feet"),
  30023. weight: math.unit(150, "lb"),
  30024. name: "Front",
  30025. image: {
  30026. source: "./media/characters/kosho/front.svg",
  30027. extra: 1847 / 1847,
  30028. bottom: 86 / 1933
  30029. }
  30030. },
  30031. },
  30032. [
  30033. {
  30034. name: "Second-stage micro",
  30035. height: math.unit(0.5, "inches")
  30036. },
  30037. {
  30038. name: "First-stage micro",
  30039. height: math.unit(6, "inches")
  30040. },
  30041. {
  30042. name: "Normal",
  30043. height: math.unit(6, "feet"),
  30044. default: true
  30045. },
  30046. {
  30047. name: "First-stage macro",
  30048. height: math.unit(72, "feet")
  30049. },
  30050. {
  30051. name: "Second-stage macro",
  30052. height: math.unit(864, "feet")
  30053. },
  30054. ]
  30055. ))
  30056. characterMakers.push(() => makeCharacter(
  30057. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30058. {
  30059. normal: {
  30060. height: math.unit(4 + 6 / 12, "feet"),
  30061. name: "Normal",
  30062. image: {
  30063. source: "./media/characters/hydra/normal.svg",
  30064. extra: 2833 / 2634,
  30065. bottom: 68 / 2901
  30066. }
  30067. },
  30068. smol: {
  30069. height: math.unit(0.705, "inches"),
  30070. name: "Smol",
  30071. image: {
  30072. source: "./media/characters/hydra/smol.svg",
  30073. extra: 2715 / 2540,
  30074. bottom: 0 / 2715
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Normal",
  30081. height: math.unit(4 + 6 / 12, "feet"),
  30082. default: true
  30083. }
  30084. ]
  30085. ))
  30086. characterMakers.push(() => makeCharacter(
  30087. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30088. {
  30089. front: {
  30090. height: math.unit(0.6, "cm"),
  30091. name: "Front",
  30092. image: {
  30093. source: "./media/characters/daz/front.svg",
  30094. extra: 1682 / 1164,
  30095. bottom: 42 / 1724
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Normal",
  30102. height: math.unit(0.6, "cm"),
  30103. default: true
  30104. },
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30109. {
  30110. front: {
  30111. height: math.unit(6, "feet"),
  30112. weight: math.unit(235, "lb"),
  30113. name: "Front",
  30114. image: {
  30115. source: "./media/characters/theo-pangolin/front.svg",
  30116. extra: 1996 / 1969,
  30117. bottom: 115 / 2111
  30118. }
  30119. },
  30120. back: {
  30121. height: math.unit(6, "feet"),
  30122. weight: math.unit(235, "lb"),
  30123. name: "Back",
  30124. image: {
  30125. source: "./media/characters/theo-pangolin/back.svg",
  30126. extra: 1979 / 1979,
  30127. bottom: 40 / 2019
  30128. }
  30129. },
  30130. feral: {
  30131. height: math.unit(2, "feet"),
  30132. weight: math.unit(30, "lb"),
  30133. name: "Feral",
  30134. image: {
  30135. source: "./media/characters/theo-pangolin/feral.svg",
  30136. extra: 803 / 791,
  30137. bottom: 181 / 984
  30138. }
  30139. },
  30140. footFive: {
  30141. height: math.unit(1.43, "feet"),
  30142. name: "Foot (Five Toes)",
  30143. image: {
  30144. source: "./media/characters/theo-pangolin/foot-five.svg"
  30145. }
  30146. },
  30147. footFour: {
  30148. height: math.unit(1.43, "feet"),
  30149. name: "Foot (Four Toes)",
  30150. image: {
  30151. source: "./media/characters/theo-pangolin/foot-four.svg"
  30152. }
  30153. },
  30154. handFour: {
  30155. height: math.unit(0.81, "feet"),
  30156. name: "Hand (Four Fingers)",
  30157. image: {
  30158. source: "./media/characters/theo-pangolin/hand-four.svg"
  30159. }
  30160. },
  30161. handThree: {
  30162. height: math.unit(0.81, "feet"),
  30163. name: "Hand (Three Fingers)",
  30164. image: {
  30165. source: "./media/characters/theo-pangolin/hand-three.svg"
  30166. }
  30167. },
  30168. headFront: {
  30169. height: math.unit(1.37, "feet"),
  30170. name: "Head (Front)",
  30171. image: {
  30172. source: "./media/characters/theo-pangolin/head-front.svg"
  30173. }
  30174. },
  30175. headSide: {
  30176. height: math.unit(1.43, "feet"),
  30177. name: "Head (Side)",
  30178. image: {
  30179. source: "./media/characters/theo-pangolin/head-side.svg"
  30180. }
  30181. },
  30182. tongue: {
  30183. height: math.unit(2.29, "feet"),
  30184. name: "Tongue",
  30185. image: {
  30186. source: "./media/characters/theo-pangolin/tongue.svg"
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(6, "feet")
  30194. },
  30195. {
  30196. name: "Macro",
  30197. height: math.unit(400, "feet"),
  30198. default: true
  30199. },
  30200. ]
  30201. ))
  30202. characterMakers.push(() => makeCharacter(
  30203. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30204. {
  30205. front: {
  30206. height: math.unit(6, "inches"),
  30207. weight: math.unit(0.036, "kg"),
  30208. name: "Front",
  30209. image: {
  30210. source: "./media/characters/renée/front.svg",
  30211. extra: 900 / 886,
  30212. bottom: 8 / 908
  30213. }
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Nano",
  30219. height: math.unit(1, "nm")
  30220. },
  30221. {
  30222. name: "Micro",
  30223. height: math.unit(1, "mm")
  30224. },
  30225. {
  30226. name: "Normal",
  30227. height: math.unit(6, "inches")
  30228. },
  30229. {
  30230. name: "Macro",
  30231. height: math.unit(2000, "feet"),
  30232. default: true
  30233. },
  30234. {
  30235. name: "Megamacro",
  30236. height: math.unit(2, "km")
  30237. },
  30238. {
  30239. name: "Gigamacro",
  30240. height: math.unit(2000, "km")
  30241. },
  30242. {
  30243. name: "Teramacro",
  30244. height: math.unit(250000, "km")
  30245. },
  30246. ]
  30247. ))
  30248. characterMakers.push(() => makeCharacter(
  30249. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30250. {
  30251. front: {
  30252. height: math.unit(4, "meters"),
  30253. weight: math.unit(150, "kg"),
  30254. name: "Front",
  30255. image: {
  30256. source: "./media/characters/caledvwlch/front.svg",
  30257. extra: 1760 / 1551,
  30258. bottom: 28 / 1788
  30259. }
  30260. },
  30261. side: {
  30262. height: math.unit(4, "meters"),
  30263. weight: math.unit(150, "kg"),
  30264. name: "Side",
  30265. image: {
  30266. source: "./media/characters/caledvwlch/side.svg",
  30267. extra: 1605 / 1536,
  30268. bottom: 31 / 1636
  30269. }
  30270. },
  30271. back: {
  30272. height: math.unit(4, "meters"),
  30273. weight: math.unit(150, "kg"),
  30274. name: "Back",
  30275. image: {
  30276. source: "./media/characters/caledvwlch/back.svg",
  30277. extra: 1635 / 1565,
  30278. bottom: 27 / 1662
  30279. }
  30280. },
  30281. },
  30282. [
  30283. {
  30284. name: "\"Incognito\"",
  30285. height: math.unit(4, "meters")
  30286. },
  30287. {
  30288. name: "Small rampage",
  30289. height: math.unit(600, "meters")
  30290. },
  30291. {
  30292. name: "Mega",
  30293. height: math.unit(30, "km")
  30294. },
  30295. {
  30296. name: "Home-size",
  30297. height: math.unit(50, "km"),
  30298. default: true
  30299. },
  30300. {
  30301. name: "Giga",
  30302. height: math.unit(300, "km")
  30303. },
  30304. {
  30305. name: "Lounging",
  30306. height: math.unit(11000, "km")
  30307. },
  30308. {
  30309. name: "Planet snacking",
  30310. height: math.unit(2000000, "km")
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(6, "feet"),
  30319. weight: math.unit(215, "lb"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/sapphire-svell/front.svg",
  30323. extra: 495 / 455,
  30324. bottom: 20 / 515
  30325. }
  30326. },
  30327. back: {
  30328. height: math.unit(6, "feet"),
  30329. weight: math.unit(216, "lb"),
  30330. name: "Back",
  30331. image: {
  30332. source: "./media/characters/sapphire-svell/back.svg",
  30333. extra: 497 / 477,
  30334. bottom: 7 / 504
  30335. }
  30336. },
  30337. maw: {
  30338. height: math.unit(1.57, "feet"),
  30339. name: "Maw",
  30340. image: {
  30341. source: "./media/characters/sapphire-svell/maw.svg"
  30342. }
  30343. },
  30344. foot: {
  30345. height: math.unit(1.07, "feet"),
  30346. name: "Foot",
  30347. image: {
  30348. source: "./media/characters/sapphire-svell/foot.svg"
  30349. }
  30350. },
  30351. toering: {
  30352. height: math.unit(1.7, "inch"),
  30353. name: "Toering",
  30354. image: {
  30355. source: "./media/characters/sapphire-svell/toering.svg"
  30356. }
  30357. },
  30358. },
  30359. [
  30360. {
  30361. name: "Normal",
  30362. height: math.unit(300, "feet"),
  30363. default: true
  30364. },
  30365. {
  30366. name: "Augmented",
  30367. height: math.unit(1250, "feet")
  30368. },
  30369. {
  30370. name: "Unleashed",
  30371. height: math.unit(3000, "feet")
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30377. {
  30378. side: {
  30379. height: math.unit(2 + 3 / 12, "feet"),
  30380. weight: math.unit(110, "lb"),
  30381. name: "Side",
  30382. image: {
  30383. source: "./media/characters/glitch-flux/side.svg",
  30384. extra: 997 / 805,
  30385. bottom: 20 / 1017
  30386. }
  30387. },
  30388. },
  30389. [
  30390. {
  30391. name: "Normal",
  30392. height: math.unit(2 + 3 / 12, "feet"),
  30393. default: true
  30394. },
  30395. ]
  30396. ))
  30397. characterMakers.push(() => makeCharacter(
  30398. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30399. {
  30400. front: {
  30401. height: math.unit(4, "meters"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/mid/front.svg",
  30405. extra: 507 / 476,
  30406. bottom: 17 / 524
  30407. }
  30408. },
  30409. back: {
  30410. height: math.unit(4, "meters"),
  30411. name: "Back",
  30412. image: {
  30413. source: "./media/characters/mid/back.svg",
  30414. extra: 519 / 487,
  30415. bottom: 7 / 526
  30416. }
  30417. },
  30418. stuck: {
  30419. height: math.unit(2.2, "meters"),
  30420. name: "Stuck",
  30421. image: {
  30422. source: "./media/characters/mid/stuck.svg",
  30423. extra: 1951 / 1869,
  30424. bottom: 88 / 2039
  30425. }
  30426. }
  30427. },
  30428. [
  30429. {
  30430. name: "Normal",
  30431. height: math.unit(4, "meters"),
  30432. default: true
  30433. },
  30434. {
  30435. name: "Big",
  30436. height: math.unit(10, "meters")
  30437. },
  30438. {
  30439. name: "Macro",
  30440. height: math.unit(800, "meters")
  30441. },
  30442. {
  30443. name: "Megamacro",
  30444. height: math.unit(100, "km")
  30445. },
  30446. {
  30447. name: "Overgrown",
  30448. height: math.unit(1, "parsec")
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(2.5, "meters"),
  30457. weight: math.unit(225, "kg"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/iris/front.svg",
  30461. extra: 3348 / 3251,
  30462. bottom: 205 / 3553
  30463. }
  30464. },
  30465. maw: {
  30466. height: math.unit(0.56, "meter"),
  30467. name: "Maw",
  30468. image: {
  30469. source: "./media/characters/iris/maw.svg"
  30470. }
  30471. },
  30472. },
  30473. [
  30474. {
  30475. name: "Mewter cat",
  30476. height: math.unit(1.2, "meters")
  30477. },
  30478. {
  30479. name: "Minimacro",
  30480. height: math.unit(2.5, "meters"),
  30481. default: true
  30482. },
  30483. {
  30484. name: "Macro",
  30485. height: math.unit(180, "meters")
  30486. },
  30487. {
  30488. name: "Megamacro",
  30489. height: math.unit(2746, "meters")
  30490. },
  30491. ]
  30492. ))
  30493. characterMakers.push(() => makeCharacter(
  30494. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30495. {
  30496. front: {
  30497. height: math.unit(6, "feet"),
  30498. weight: math.unit(135, "lb"),
  30499. name: "Front",
  30500. image: {
  30501. source: "./media/characters/axel/front.svg",
  30502. extra: 908 / 908,
  30503. bottom: 58 / 966
  30504. }
  30505. },
  30506. side: {
  30507. height: math.unit(6, "feet"),
  30508. weight: math.unit(135, "lb"),
  30509. name: "Side",
  30510. image: {
  30511. source: "./media/characters/axel/side.svg",
  30512. extra: 958 / 958,
  30513. bottom: 11 / 969
  30514. }
  30515. },
  30516. back: {
  30517. height: math.unit(6, "feet"),
  30518. weight: math.unit(135, "lb"),
  30519. name: "Back",
  30520. image: {
  30521. source: "./media/characters/axel/back.svg",
  30522. extra: 887 / 887,
  30523. bottom: 34 / 921
  30524. }
  30525. },
  30526. head: {
  30527. height: math.unit(1.07, "feet"),
  30528. name: "Head",
  30529. image: {
  30530. source: "./media/characters/axel/head.svg"
  30531. }
  30532. },
  30533. beak: {
  30534. height: math.unit(1.4, "feet"),
  30535. name: "Beak",
  30536. image: {
  30537. source: "./media/characters/axel/beak.svg"
  30538. }
  30539. },
  30540. beakSide: {
  30541. height: math.unit(1.4, "feet"),
  30542. name: "Beak Side",
  30543. image: {
  30544. source: "./media/characters/axel/beak-side.svg"
  30545. }
  30546. },
  30547. sheath: {
  30548. height: math.unit(0.5, "feet"),
  30549. name: "Sheath",
  30550. image: {
  30551. source: "./media/characters/axel/sheath.svg"
  30552. }
  30553. },
  30554. dick: {
  30555. height: math.unit(0.98, "feet"),
  30556. name: "Dick",
  30557. image: {
  30558. source: "./media/characters/axel/dick.svg"
  30559. }
  30560. },
  30561. },
  30562. [
  30563. {
  30564. name: "Macro",
  30565. height: math.unit(68, "meters"),
  30566. default: true
  30567. },
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30572. {
  30573. front: {
  30574. height: math.unit(3.5, "meters"),
  30575. weight: math.unit(1200, "kg"),
  30576. name: "Front",
  30577. image: {
  30578. source: "./media/characters/joanna/front.svg",
  30579. extra: 1596 / 1488,
  30580. bottom: 29 / 1625
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(3.5, "meters"),
  30585. weight: math.unit(1200, "kg"),
  30586. name: "Back",
  30587. image: {
  30588. source: "./media/characters/joanna/back.svg",
  30589. extra: 1594 / 1495,
  30590. bottom: 26 / 1620
  30591. }
  30592. },
  30593. frontShorts: {
  30594. height: math.unit(3.5, "meters"),
  30595. weight: math.unit(1200, "kg"),
  30596. name: "Front (Shorts)",
  30597. image: {
  30598. source: "./media/characters/joanna/front-shorts.svg",
  30599. extra: 1596 / 1488,
  30600. bottom: 29 / 1625
  30601. }
  30602. },
  30603. frontBiker: {
  30604. height: math.unit(3.5, "meters"),
  30605. weight: math.unit(1200, "kg"),
  30606. name: "Front (Biker)",
  30607. image: {
  30608. source: "./media/characters/joanna/front-biker.svg",
  30609. extra: 1596 / 1488,
  30610. bottom: 29 / 1625
  30611. }
  30612. },
  30613. backBiker: {
  30614. height: math.unit(3.5, "meters"),
  30615. weight: math.unit(1200, "kg"),
  30616. name: "Back (Biker)",
  30617. image: {
  30618. source: "./media/characters/joanna/back-biker.svg",
  30619. extra: 1594 / 1495,
  30620. bottom: 88 / 1682
  30621. }
  30622. },
  30623. bikeLeft: {
  30624. height: math.unit(2.4, "meters"),
  30625. weight: math.unit(1600, "kg"),
  30626. name: "Bike (Left)",
  30627. image: {
  30628. source: "./media/characters/joanna/bike-left.svg",
  30629. extra: 720 / 720,
  30630. bottom: 8 / 728
  30631. }
  30632. },
  30633. bikeRight: {
  30634. height: math.unit(2.4, "meters"),
  30635. weight: math.unit(1600, "kg"),
  30636. name: "Bike (Right)",
  30637. image: {
  30638. source: "./media/characters/joanna/bike-right.svg",
  30639. extra: 720 / 720,
  30640. bottom: 8 / 728
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Incognito",
  30647. height: math.unit(3.5, "meters")
  30648. },
  30649. {
  30650. name: "Casual Big",
  30651. height: math.unit(200, "meters")
  30652. },
  30653. {
  30654. name: "Macro",
  30655. height: math.unit(600, "meters")
  30656. },
  30657. {
  30658. name: "Original",
  30659. height: math.unit(20, "km"),
  30660. default: true
  30661. },
  30662. {
  30663. name: "Giga",
  30664. height: math.unit(400, "km")
  30665. },
  30666. {
  30667. name: "Lounging",
  30668. height: math.unit(1500, "km")
  30669. },
  30670. {
  30671. name: "Planetary",
  30672. height: math.unit(200000, "km")
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30678. {
  30679. front: {
  30680. height: math.unit(6, "feet"),
  30681. weight: math.unit(150, "lb"),
  30682. name: "Front",
  30683. image: {
  30684. source: "./media/characters/hugo-sigil/front.svg",
  30685. extra: 522 / 500,
  30686. bottom: 2 / 524
  30687. }
  30688. },
  30689. back: {
  30690. height: math.unit(6, "feet"),
  30691. weight: math.unit(150, "lb"),
  30692. name: "Back",
  30693. image: {
  30694. source: "./media/characters/hugo-sigil/back.svg",
  30695. extra: 519 / 495,
  30696. bottom: 5 / 524
  30697. }
  30698. },
  30699. maw: {
  30700. height: math.unit(1.4, "feet"),
  30701. weight: math.unit(150, "lb"),
  30702. name: "Maw",
  30703. image: {
  30704. source: "./media/characters/hugo-sigil/maw.svg"
  30705. }
  30706. },
  30707. feet: {
  30708. height: math.unit(1.56, "feet"),
  30709. weight: math.unit(150, "lb"),
  30710. name: "Feet",
  30711. image: {
  30712. source: "./media/characters/hugo-sigil/feet.svg",
  30713. extra: 177 / 177,
  30714. bottom: 12 / 189
  30715. }
  30716. },
  30717. },
  30718. [
  30719. {
  30720. name: "Normal",
  30721. height: math.unit(6, "feet")
  30722. },
  30723. {
  30724. name: "Macro",
  30725. height: math.unit(200, "feet"),
  30726. default: true
  30727. },
  30728. ]
  30729. ))
  30730. characterMakers.push(() => makeCharacter(
  30731. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30732. {
  30733. front: {
  30734. height: math.unit(6, "feet"),
  30735. weight: math.unit(150, "lb"),
  30736. name: "Front",
  30737. image: {
  30738. source: "./media/characters/peri/front.svg",
  30739. extra: 2354 / 2233,
  30740. bottom: 49 / 2403
  30741. }
  30742. },
  30743. },
  30744. [
  30745. {
  30746. name: "Really Small",
  30747. height: math.unit(1, "nm")
  30748. },
  30749. {
  30750. name: "Micro",
  30751. height: math.unit(4, "inches")
  30752. },
  30753. {
  30754. name: "Normal",
  30755. height: math.unit(7, "inches"),
  30756. default: true
  30757. },
  30758. {
  30759. name: "Macro",
  30760. height: math.unit(400, "feet")
  30761. },
  30762. {
  30763. name: "Megamacro",
  30764. height: math.unit(100, "miles")
  30765. },
  30766. ]
  30767. ))
  30768. characterMakers.push(() => makeCharacter(
  30769. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30770. {
  30771. frontSlim: {
  30772. height: math.unit(7, "feet"),
  30773. name: "Front (Slim)",
  30774. image: {
  30775. source: "./media/characters/issilora/front-slim.svg",
  30776. extra: 529 / 449,
  30777. bottom: 53 / 582
  30778. }
  30779. },
  30780. sideSlim: {
  30781. height: math.unit(7, "feet"),
  30782. name: "Side (Slim)",
  30783. image: {
  30784. source: "./media/characters/issilora/side-slim.svg",
  30785. extra: 570 / 480,
  30786. bottom: 30 / 600
  30787. }
  30788. },
  30789. backSlim: {
  30790. height: math.unit(7, "feet"),
  30791. name: "Back (Slim)",
  30792. image: {
  30793. source: "./media/characters/issilora/back-slim.svg",
  30794. extra: 537 / 455,
  30795. bottom: 46 / 583
  30796. }
  30797. },
  30798. frontBuff: {
  30799. height: math.unit(7, "feet"),
  30800. name: "Front (Buff)",
  30801. image: {
  30802. source: "./media/characters/issilora/front-buff.svg",
  30803. extra: 2310 / 2035,
  30804. bottom: 335 / 2645
  30805. }
  30806. },
  30807. head: {
  30808. height: math.unit(1.94, "feet"),
  30809. name: "Head",
  30810. image: {
  30811. source: "./media/characters/issilora/head.svg"
  30812. }
  30813. },
  30814. },
  30815. [
  30816. {
  30817. name: "Minimum",
  30818. height: math.unit(7, "feet")
  30819. },
  30820. {
  30821. name: "Comfortable",
  30822. height: math.unit(17, "feet")
  30823. },
  30824. {
  30825. name: "Fun Size",
  30826. height: math.unit(47, "feet")
  30827. },
  30828. {
  30829. name: "Natural Macro",
  30830. height: math.unit(137, "feet"),
  30831. default: true
  30832. },
  30833. {
  30834. name: "Maximum Kaiju",
  30835. height: math.unit(397, "feet")
  30836. },
  30837. ]
  30838. ))
  30839. characterMakers.push(() => makeCharacter(
  30840. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30841. {
  30842. front: {
  30843. height: math.unit(50 + 9/12, "feet"),
  30844. weight: math.unit(32.8, "tons"),
  30845. name: "Front",
  30846. image: {
  30847. source: "./media/characters/irb'iiritaahn/front.svg",
  30848. extra: 1878/1826,
  30849. bottom: 326/2204
  30850. }
  30851. },
  30852. back: {
  30853. height: math.unit(50 + 9/12, "feet"),
  30854. weight: math.unit(32.8, "tons"),
  30855. name: "Back",
  30856. image: {
  30857. source: "./media/characters/irb'iiritaahn/back.svg",
  30858. extra: 2052/2018,
  30859. bottom: 152/2204
  30860. }
  30861. },
  30862. head: {
  30863. height: math.unit(12.86, "feet"),
  30864. name: "Head",
  30865. image: {
  30866. source: "./media/characters/irb'iiritaahn/head.svg"
  30867. }
  30868. },
  30869. maw: {
  30870. height: math.unit(9.66, "feet"),
  30871. name: "Maw",
  30872. image: {
  30873. source: "./media/characters/irb'iiritaahn/maw.svg"
  30874. }
  30875. },
  30876. frontDick: {
  30877. height: math.unit(8.78461, "feet"),
  30878. name: "Front Dick",
  30879. image: {
  30880. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30881. }
  30882. },
  30883. rearDick: {
  30884. height: math.unit(8.78461, "feet"),
  30885. name: "Rear Dick",
  30886. image: {
  30887. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30888. }
  30889. },
  30890. rearDickUnfolded: {
  30891. height: math.unit(8.78, "feet"),
  30892. name: "Rear Dick (Unfolded)",
  30893. image: {
  30894. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30895. }
  30896. },
  30897. wings: {
  30898. height: math.unit(43, "feet"),
  30899. name: "Wings",
  30900. image: {
  30901. source: "./media/characters/irb'iiritaahn/wings.svg"
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Macro",
  30908. height: math.unit(50 + 9/12, "feet"),
  30909. default: true
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(205, "cm"),
  30918. weight: math.unit(102, "kg"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/irbisgreif/front.svg",
  30922. extra: 785/706,
  30923. bottom: 13/798
  30924. }
  30925. },
  30926. back: {
  30927. height: math.unit(205, "cm"),
  30928. weight: math.unit(102, "kg"),
  30929. name: "Back",
  30930. image: {
  30931. source: "./media/characters/irbisgreif/back.svg",
  30932. extra: 713/701,
  30933. bottom: 26/739
  30934. }
  30935. },
  30936. frontDressed: {
  30937. height: math.unit(216, "cm"),
  30938. weight: math.unit(102, "kg"),
  30939. name: "Front-dressed",
  30940. image: {
  30941. source: "./media/characters/irbisgreif/front-dressed.svg",
  30942. extra: 902/776,
  30943. bottom: 14/916
  30944. }
  30945. },
  30946. sideDressed: {
  30947. height: math.unit(195, "cm"),
  30948. weight: math.unit(102, "kg"),
  30949. name: "Side-dressed",
  30950. image: {
  30951. source: "./media/characters/irbisgreif/side-dressed.svg",
  30952. extra: 788/688,
  30953. bottom: 21/809
  30954. }
  30955. },
  30956. backDressed: {
  30957. height: math.unit(216, "cm"),
  30958. weight: math.unit(102, "kg"),
  30959. name: "Back-dressed",
  30960. image: {
  30961. source: "./media/characters/irbisgreif/back-dressed.svg",
  30962. extra: 901/783,
  30963. bottom: 10/911
  30964. }
  30965. },
  30966. dick: {
  30967. height: math.unit(0.49, "feet"),
  30968. name: "Dick",
  30969. image: {
  30970. source: "./media/characters/irbisgreif/dick.svg"
  30971. }
  30972. },
  30973. wingTop: {
  30974. height: math.unit(1.93 , "feet"),
  30975. name: "Wing-top",
  30976. image: {
  30977. source: "./media/characters/irbisgreif/wing-top.svg"
  30978. }
  30979. },
  30980. wingBottom: {
  30981. height: math.unit(1.93 , "feet"),
  30982. name: "Wing-bottom",
  30983. image: {
  30984. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30985. }
  30986. },
  30987. },
  30988. [
  30989. {
  30990. name: "Normal",
  30991. height: math.unit(216, "cm"),
  30992. default: true
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30998. {
  30999. front: {
  31000. height: math.unit(6, "feet"),
  31001. weight: math.unit(150, "lb"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/pride/front.svg",
  31005. extra: 1299/1230,
  31006. bottom: 18/1317
  31007. }
  31008. },
  31009. },
  31010. [
  31011. {
  31012. name: "Normal",
  31013. height: math.unit(7, "feet")
  31014. },
  31015. {
  31016. name: "Mini-macro",
  31017. height: math.unit(11, "feet")
  31018. },
  31019. {
  31020. name: "Macro",
  31021. height: math.unit(15, "meters"),
  31022. default: true
  31023. },
  31024. {
  31025. name: "Macro+",
  31026. height: math.unit(40, "meters")
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31032. {
  31033. front: {
  31034. height: math.unit(4 + 2 / 12, "feet"),
  31035. weight: math.unit(95, "lb"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/vaelophis-nyx/front.svg",
  31039. extra: 2532/2330,
  31040. bottom: 0/2532
  31041. }
  31042. },
  31043. back: {
  31044. height: math.unit(4 + 2 / 12, "feet"),
  31045. weight: math.unit(95, "lb"),
  31046. name: "Back",
  31047. image: {
  31048. source: "./media/characters/vaelophis-nyx/back.svg",
  31049. extra: 2484/2361,
  31050. bottom: 0/2484
  31051. }
  31052. },
  31053. feralSide: {
  31054. height: math.unit(2 + 1/12, "feet"),
  31055. weight: math.unit(20, "lb"),
  31056. name: "Feral (Side)",
  31057. image: {
  31058. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31059. extra: 1721/1581,
  31060. bottom: 70/1791
  31061. }
  31062. },
  31063. feralLazing: {
  31064. height: math.unit(1.08, "feet"),
  31065. weight: math.unit(20, "lb"),
  31066. name: "Feral (Lazing)",
  31067. image: {
  31068. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31069. extra: 822/822,
  31070. bottom: 248/1070
  31071. }
  31072. },
  31073. ear: {
  31074. height: math.unit(0.416, "feet"),
  31075. name: "Ear",
  31076. image: {
  31077. source: "./media/characters/vaelophis-nyx/ear.svg"
  31078. }
  31079. },
  31080. eye: {
  31081. height: math.unit(0.0748, "feet"),
  31082. name: "Eye",
  31083. image: {
  31084. source: "./media/characters/vaelophis-nyx/eye.svg"
  31085. }
  31086. },
  31087. mouth: {
  31088. height: math.unit(0.378, "feet"),
  31089. name: "Mouth",
  31090. image: {
  31091. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31092. }
  31093. },
  31094. spade: {
  31095. height: math.unit(0.55, "feet"),
  31096. name: "Spade",
  31097. image: {
  31098. source: "./media/characters/vaelophis-nyx/spade.svg"
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(4 + 2/12, "feet"),
  31106. default: true
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31112. {
  31113. front: {
  31114. height: math.unit(7, "feet"),
  31115. weight: math.unit(231, "lb"),
  31116. name: "Front",
  31117. image: {
  31118. source: "./media/characters/flux/front.svg",
  31119. extra: 919/871,
  31120. bottom: 0/919
  31121. }
  31122. },
  31123. back: {
  31124. height: math.unit(7, "feet"),
  31125. weight: math.unit(231, "lb"),
  31126. name: "Back",
  31127. image: {
  31128. source: "./media/characters/flux/back.svg",
  31129. extra: 1040/992,
  31130. bottom: 0/1040
  31131. }
  31132. },
  31133. frontDressed: {
  31134. height: math.unit(7, "feet"),
  31135. weight: math.unit(231, "lb"),
  31136. name: "Front (Dressed)",
  31137. image: {
  31138. source: "./media/characters/flux/front-dressed.svg",
  31139. extra: 919/871,
  31140. bottom: 0/919
  31141. }
  31142. },
  31143. feralSide: {
  31144. height: math.unit(5, "feet"),
  31145. weight: math.unit(150, "lb"),
  31146. name: "Feral (Side)",
  31147. image: {
  31148. source: "./media/characters/flux/feral-side.svg",
  31149. extra: 598/528,
  31150. bottom: 28/626
  31151. }
  31152. },
  31153. head: {
  31154. height: math.unit(1.585, "feet"),
  31155. name: "Head",
  31156. image: {
  31157. source: "./media/characters/flux/head.svg"
  31158. }
  31159. },
  31160. headSide: {
  31161. height: math.unit(1.74, "feet"),
  31162. name: "Head (Side)",
  31163. image: {
  31164. source: "./media/characters/flux/head-side.svg"
  31165. }
  31166. },
  31167. headSideFire: {
  31168. height: math.unit(1.76, "feet"),
  31169. name: "Head (Side, Fire)",
  31170. image: {
  31171. source: "./media/characters/flux/head-side-fire.svg"
  31172. }
  31173. },
  31174. },
  31175. [
  31176. {
  31177. name: "Normal",
  31178. height: math.unit(7, "feet"),
  31179. default: true
  31180. },
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31185. {
  31186. front: {
  31187. height: math.unit(9, "feet"),
  31188. weight: math.unit(1012, "lb"),
  31189. name: "Front",
  31190. image: {
  31191. source: "./media/characters/ulfra-lupae/front.svg",
  31192. extra: 1083/1011,
  31193. bottom: 67/1150
  31194. }
  31195. },
  31196. },
  31197. [
  31198. {
  31199. name: "Micro",
  31200. height: math.unit(6, "inches")
  31201. },
  31202. {
  31203. name: "Socializing",
  31204. height: math.unit(6 + 5/12, "feet")
  31205. },
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(9, "feet"),
  31209. default: true
  31210. },
  31211. {
  31212. name: "Macro",
  31213. height: math.unit(150, "feet")
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(5 + 2/12, "feet"),
  31222. weight: math.unit(120, "lb"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/timber/front.svg",
  31226. extra: 2814/2705,
  31227. bottom: 181/2995
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Normal",
  31234. height: math.unit(5 + 2/12, "feet"),
  31235. default: true
  31236. },
  31237. ]
  31238. ))
  31239. characterMakers.push(() => makeCharacter(
  31240. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31241. {
  31242. front: {
  31243. height: math.unit(5 + 7/12, "feet"),
  31244. weight: math.unit(220, "lb"),
  31245. name: "Front",
  31246. image: {
  31247. source: "./media/characters/nicki/front.svg",
  31248. extra: 453/419,
  31249. bottom: 7/460
  31250. }
  31251. },
  31252. frontAlt: {
  31253. height: math.unit(5 + 7/12, "feet"),
  31254. weight: math.unit(220, "lb"),
  31255. name: "Front-alt",
  31256. image: {
  31257. source: "./media/characters/nicki/front-alt.svg",
  31258. extra: 435/411,
  31259. bottom: 12/447
  31260. }
  31261. },
  31262. back: {
  31263. height: math.unit(5 + 7/12, "feet"),
  31264. weight: math.unit(220, "lb"),
  31265. name: "Back",
  31266. image: {
  31267. source: "./media/characters/nicki/back.svg",
  31268. extra: 440/413,
  31269. bottom: 19/459
  31270. }
  31271. },
  31272. taur: {
  31273. height: math.unit(7 + 6/12, "feet"),
  31274. weight: math.unit(700, "lb"),
  31275. name: "Taur",
  31276. image: {
  31277. source: "./media/characters/nicki/taur.svg",
  31278. extra: 975/773,
  31279. bottom: 0/975
  31280. }
  31281. },
  31282. frontNsfw: {
  31283. height: math.unit(5 + 7/12, "feet"),
  31284. weight: math.unit(220, "lb"),
  31285. name: "Front (NSFW)",
  31286. image: {
  31287. source: "./media/characters/nicki/front-nsfw.svg",
  31288. extra: 453/419,
  31289. bottom: 7/460
  31290. }
  31291. },
  31292. frontNsfwAlt: {
  31293. height: math.unit(5 + 7/12, "feet"),
  31294. weight: math.unit(220, "lb"),
  31295. name: "Front (Alt, NSFW)",
  31296. image: {
  31297. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31298. extra: 435/411,
  31299. bottom: 12/447
  31300. }
  31301. },
  31302. backNsfw: {
  31303. height: math.unit(5 + 7/12, "feet"),
  31304. weight: math.unit(220, "lb"),
  31305. name: "Back (NSFW)",
  31306. image: {
  31307. source: "./media/characters/nicki/back-nsfw.svg",
  31308. extra: 440/413,
  31309. bottom: 19/459
  31310. }
  31311. },
  31312. head: {
  31313. height: math.unit(2.1, "feet"),
  31314. name: "Head",
  31315. image: {
  31316. source: "./media/characters/nicki/head.svg"
  31317. }
  31318. },
  31319. paw: {
  31320. height: math.unit(1.88, "feet"),
  31321. name: "Paw",
  31322. image: {
  31323. source: "./media/characters/nicki/paw.svg"
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Normal",
  31330. height: math.unit(5 + 7/12, "feet"),
  31331. default: true
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(7 + 10/12, "feet"),
  31340. weight: math.unit(3.5, "tons"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/lee/front.svg",
  31344. extra: 1773/1615,
  31345. bottom: 86/1859
  31346. }
  31347. },
  31348. hand: {
  31349. height: math.unit(1.78, "feet"),
  31350. name: "Hand",
  31351. image: {
  31352. source: "./media/characters/lee/hand.svg"
  31353. }
  31354. },
  31355. maw: {
  31356. height: math.unit(1.18, "feet"),
  31357. name: "Maw",
  31358. image: {
  31359. source: "./media/characters/lee/maw.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(7 + 10/12, "feet"),
  31367. default: true
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31373. {
  31374. front: {
  31375. height: math.unit(9, "feet"),
  31376. name: "Front",
  31377. image: {
  31378. source: "./media/characters/guti/front.svg",
  31379. extra: 4551/4355,
  31380. bottom: 123/4674
  31381. }
  31382. },
  31383. tongue: {
  31384. height: math.unit(1, "feet"),
  31385. name: "Tongue",
  31386. image: {
  31387. source: "./media/characters/guti/tongue.svg"
  31388. }
  31389. },
  31390. paw: {
  31391. height: math.unit(1.18, "feet"),
  31392. name: "Paw",
  31393. image: {
  31394. source: "./media/characters/guti/paw.svg"
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Normal",
  31401. height: math.unit(9, "feet"),
  31402. default: true
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31408. {
  31409. side: {
  31410. height: math.unit(5, "meters"),
  31411. name: "Side",
  31412. image: {
  31413. source: "./media/characters/vesper/side.svg",
  31414. extra: 1605/1518,
  31415. bottom: 0/1605
  31416. }
  31417. },
  31418. },
  31419. [
  31420. {
  31421. name: "Small",
  31422. height: math.unit(5, "meters")
  31423. },
  31424. {
  31425. name: "Sage",
  31426. height: math.unit(100, "meters"),
  31427. default: true
  31428. },
  31429. {
  31430. name: "Fun Size",
  31431. height: math.unit(600, "meters")
  31432. },
  31433. {
  31434. name: "Goddess",
  31435. height: math.unit(20000, "km")
  31436. },
  31437. {
  31438. name: "Maximum",
  31439. height: math.unit(5, "galaxies")
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31445. {
  31446. front: {
  31447. height: math.unit(6 + 3/12, "feet"),
  31448. weight: math.unit(190, "lb"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/gawain/front.svg",
  31452. extra: 2222/2139,
  31453. bottom: 90/2312
  31454. }
  31455. },
  31456. back: {
  31457. height: math.unit(6 + 3/12, "feet"),
  31458. weight: math.unit(190, "lb"),
  31459. name: "Back",
  31460. image: {
  31461. source: "./media/characters/gawain/back.svg",
  31462. extra: 2199/2111,
  31463. bottom: 73/2272
  31464. }
  31465. },
  31466. },
  31467. [
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(6 + 3/12, "feet"),
  31471. default: true
  31472. },
  31473. ]
  31474. ))
  31475. characterMakers.push(() => makeCharacter(
  31476. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31477. {
  31478. side: {
  31479. height: math.unit(3.5, "meters"),
  31480. weight: math.unit(16000, "lb"),
  31481. name: "Side",
  31482. image: {
  31483. source: "./media/characters/dascalti/side.svg",
  31484. extra: 392/273,
  31485. bottom: 47/439
  31486. }
  31487. },
  31488. breath: {
  31489. height: math.unit(7.4, "feet"),
  31490. name: "Breath",
  31491. image: {
  31492. source: "./media/characters/dascalti/breath.svg"
  31493. }
  31494. },
  31495. fed: {
  31496. height: math.unit(3.6, "meters"),
  31497. weight: math.unit(16000, "lb"),
  31498. name: "Fed",
  31499. image: {
  31500. source: "./media/characters/dascalti/fed.svg",
  31501. extra: 1419/820,
  31502. bottom: 95/1514
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Normal",
  31509. height: math.unit(3.5, "meters"),
  31510. default: true
  31511. },
  31512. ]
  31513. ))
  31514. characterMakers.push(() => makeCharacter(
  31515. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31516. {
  31517. front: {
  31518. height: math.unit(3 + 5/12, "feet"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/mauve/front.svg",
  31522. extra: 1126/1033,
  31523. bottom: 65/1191
  31524. }
  31525. },
  31526. side: {
  31527. height: math.unit(3 + 5/12, "feet"),
  31528. name: "Side",
  31529. image: {
  31530. source: "./media/characters/mauve/side.svg",
  31531. extra: 1089/1001,
  31532. bottom: 29/1118
  31533. }
  31534. },
  31535. back: {
  31536. height: math.unit(3 + 5/12, "feet"),
  31537. name: "Back",
  31538. image: {
  31539. source: "./media/characters/mauve/back.svg",
  31540. extra: 1173/1053,
  31541. bottom: 109/1282
  31542. }
  31543. },
  31544. },
  31545. [
  31546. {
  31547. name: "Normal",
  31548. height: math.unit(3 + 5/12, "feet"),
  31549. default: true
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31555. {
  31556. front: {
  31557. height: math.unit(6 + 3/12, "feet"),
  31558. weight: math.unit(430, "lb"),
  31559. name: "Front",
  31560. image: {
  31561. source: "./media/characters/carlos/front.svg",
  31562. extra: 1964/1913,
  31563. bottom: 70/2034
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Normal",
  31570. height: math.unit(6 + 3/12, "feet"),
  31571. default: true
  31572. },
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31577. {
  31578. back: {
  31579. height: math.unit(5 + 10/12, "feet"),
  31580. weight: math.unit(200, "lb"),
  31581. name: "Back",
  31582. image: {
  31583. source: "./media/characters/jax/back.svg",
  31584. extra: 764/739,
  31585. bottom: 25/789
  31586. }
  31587. },
  31588. },
  31589. [
  31590. {
  31591. name: "Normal",
  31592. height: math.unit(5 + 10/12, "feet"),
  31593. default: true
  31594. },
  31595. ]
  31596. ))
  31597. characterMakers.push(() => makeCharacter(
  31598. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31599. {
  31600. front: {
  31601. height: math.unit(8, "feet"),
  31602. weight: math.unit(250, "lb"),
  31603. name: "Front",
  31604. image: {
  31605. source: "./media/characters/eikthynir/front.svg",
  31606. extra: 1332/1166,
  31607. bottom: 82/1414
  31608. }
  31609. },
  31610. back: {
  31611. height: math.unit(8, "feet"),
  31612. weight: math.unit(250, "lb"),
  31613. name: "Back",
  31614. image: {
  31615. source: "./media/characters/eikthynir/back.svg",
  31616. extra: 1342/1190,
  31617. bottom: 19/1361
  31618. }
  31619. },
  31620. dick: {
  31621. height: math.unit(2.35, "feet"),
  31622. name: "Dick",
  31623. image: {
  31624. source: "./media/characters/eikthynir/dick.svg"
  31625. }
  31626. },
  31627. },
  31628. [
  31629. {
  31630. name: "Normal",
  31631. height: math.unit(8, "feet"),
  31632. default: true
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(99, "meters"),
  31641. weight: math.unit(13000, "tons"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/zlmos/front.svg",
  31645. extra: 2202/1992,
  31646. bottom: 315/2517
  31647. }
  31648. },
  31649. },
  31650. [
  31651. {
  31652. name: "Macro",
  31653. height: math.unit(99, "meters"),
  31654. default: true
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31660. {
  31661. front: {
  31662. height: math.unit(6 + 5/12, "feet"),
  31663. name: "Front",
  31664. image: {
  31665. source: "./media/characters/purri/front.svg",
  31666. extra: 1698/1610,
  31667. bottom: 32/1730
  31668. }
  31669. },
  31670. frontAlt: {
  31671. height: math.unit(6 + 5/12, "feet"),
  31672. name: "Front (Alt)",
  31673. image: {
  31674. source: "./media/characters/purri/front-alt.svg",
  31675. extra: 450/420,
  31676. bottom: 26/476
  31677. }
  31678. },
  31679. boots: {
  31680. height: math.unit(5.5, "feet"),
  31681. name: "Boots",
  31682. image: {
  31683. source: "./media/characters/purri/boots.svg",
  31684. extra: 905/853,
  31685. bottom: 18/923
  31686. }
  31687. },
  31688. lying: {
  31689. height: math.unit(2, "feet"),
  31690. name: "Lying",
  31691. image: {
  31692. source: "./media/characters/purri/lying.svg",
  31693. extra: 940/843,
  31694. bottom: 146/1086
  31695. }
  31696. },
  31697. devious: {
  31698. height: math.unit(1.77, "feet"),
  31699. name: "Devious",
  31700. image: {
  31701. source: "./media/characters/purri/devious.svg",
  31702. extra: 1440/1155,
  31703. bottom: 147/1587
  31704. }
  31705. },
  31706. bean: {
  31707. height: math.unit(1.94, "feet"),
  31708. name: "Bean",
  31709. image: {
  31710. source: "./media/characters/purri/bean.svg"
  31711. }
  31712. },
  31713. },
  31714. [
  31715. {
  31716. name: "Micro",
  31717. height: math.unit(1, "mm")
  31718. },
  31719. {
  31720. name: "Normal",
  31721. height: math.unit(6 + 5/12, "feet"),
  31722. default: true
  31723. },
  31724. {
  31725. name: "Macro :3c",
  31726. height: math.unit(2, "miles")
  31727. },
  31728. ]
  31729. ))
  31730. characterMakers.push(() => makeCharacter(
  31731. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31732. {
  31733. front: {
  31734. height: math.unit(6 + 2/12, "feet"),
  31735. weight: math.unit(250, "lb"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/moonlight/front.svg",
  31739. extra: 1044/908,
  31740. bottom: 56/1100
  31741. }
  31742. },
  31743. feral: {
  31744. height: math.unit(3 + 1/12, "feet"),
  31745. weight: math.unit(50, "kg"),
  31746. name: "Feral",
  31747. image: {
  31748. source: "./media/characters/moonlight/feral.svg",
  31749. extra: 3705/2791,
  31750. bottom: 145/3850
  31751. }
  31752. },
  31753. paw: {
  31754. height: math.unit(1, "feet"),
  31755. name: "Paw",
  31756. image: {
  31757. source: "./media/characters/moonlight/paw.svg"
  31758. }
  31759. },
  31760. paws: {
  31761. height: math.unit(0.98, "feet"),
  31762. name: "Paws",
  31763. image: {
  31764. source: "./media/characters/moonlight/paws.svg",
  31765. extra: 939/939,
  31766. bottom: 50/989
  31767. }
  31768. },
  31769. mouth: {
  31770. height: math.unit(0.48, "feet"),
  31771. name: "Mouth",
  31772. image: {
  31773. source: "./media/characters/moonlight/mouth.svg"
  31774. }
  31775. },
  31776. dick: {
  31777. height: math.unit(1.46, "feet"),
  31778. name: "Dick",
  31779. image: {
  31780. source: "./media/characters/moonlight/dick.svg"
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Normal",
  31787. height: math.unit(6 + 2/12, "feet"),
  31788. default: true
  31789. },
  31790. {
  31791. name: "Macro",
  31792. height: math.unit(300, "feet")
  31793. },
  31794. {
  31795. name: "Macro+",
  31796. height: math.unit(1, "mile")
  31797. },
  31798. {
  31799. name: "Mt. Moon",
  31800. height: math.unit(5, "miles")
  31801. },
  31802. {
  31803. name: "Megamacro",
  31804. height: math.unit(15, "miles")
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31810. {
  31811. back: {
  31812. height: math.unit(6, "feet"),
  31813. weight: math.unit(150, "lb"),
  31814. name: "Back",
  31815. image: {
  31816. source: "./media/characters/sylen/back.svg",
  31817. extra: 1335/1273,
  31818. bottom: 107/1442
  31819. }
  31820. },
  31821. },
  31822. [
  31823. {
  31824. name: "Normal",
  31825. height: math.unit(5 + 5/12, "feet")
  31826. },
  31827. {
  31828. name: "Megamacro",
  31829. height: math.unit(3, "miles"),
  31830. default: true
  31831. },
  31832. ]
  31833. ))
  31834. characterMakers.push(() => makeCharacter(
  31835. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31836. {
  31837. front: {
  31838. height: math.unit(6, "feet"),
  31839. weight: math.unit(190, "lb"),
  31840. name: "Front",
  31841. image: {
  31842. source: "./media/characters/huttser/front.svg",
  31843. extra: 1152/1058,
  31844. bottom: 23/1175
  31845. }
  31846. },
  31847. side: {
  31848. height: math.unit(6, "feet"),
  31849. weight: math.unit(190, "lb"),
  31850. name: "Side",
  31851. image: {
  31852. source: "./media/characters/huttser/side.svg",
  31853. extra: 1174/1065,
  31854. bottom: 18/1192
  31855. }
  31856. },
  31857. back: {
  31858. height: math.unit(6, "feet"),
  31859. weight: math.unit(190, "lb"),
  31860. name: "Back",
  31861. image: {
  31862. source: "./media/characters/huttser/back.svg",
  31863. extra: 1158/1056,
  31864. bottom: 12/1170
  31865. }
  31866. },
  31867. },
  31868. [
  31869. ]
  31870. ))
  31871. characterMakers.push(() => makeCharacter(
  31872. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31873. {
  31874. side: {
  31875. height: math.unit(12 + 9/12, "feet"),
  31876. weight: math.unit(15000, "lb"),
  31877. name: "Side",
  31878. image: {
  31879. source: "./media/characters/faan/side.svg",
  31880. extra: 2747/2697,
  31881. bottom: 0/2747
  31882. }
  31883. },
  31884. front: {
  31885. height: math.unit(12 + 9/12, "feet"),
  31886. weight: math.unit(15000, "lb"),
  31887. name: "Front",
  31888. image: {
  31889. source: "./media/characters/faan/front.svg",
  31890. extra: 607/571,
  31891. bottom: 24/631
  31892. }
  31893. },
  31894. head: {
  31895. height: math.unit(2.85, "feet"),
  31896. name: "Head",
  31897. image: {
  31898. source: "./media/characters/faan/head.svg"
  31899. }
  31900. },
  31901. headAlt: {
  31902. height: math.unit(3.13, "feet"),
  31903. name: "Head-alt",
  31904. image: {
  31905. source: "./media/characters/faan/head-alt.svg"
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Normal",
  31912. height: math.unit(12 + 9/12, "feet"),
  31913. default: true
  31914. },
  31915. ]
  31916. ))
  31917. characterMakers.push(() => makeCharacter(
  31918. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31919. {
  31920. front: {
  31921. height: math.unit(6, "feet"),
  31922. weight: math.unit(300, "lb"),
  31923. name: "Front",
  31924. image: {
  31925. source: "./media/characters/tanio/front.svg",
  31926. extra: 711/673,
  31927. bottom: 25/736
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Normal",
  31934. height: math.unit(6, "feet"),
  31935. default: true
  31936. },
  31937. ]
  31938. ))
  31939. characterMakers.push(() => makeCharacter(
  31940. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31941. {
  31942. front: {
  31943. height: math.unit(3, "inches"),
  31944. name: "Front",
  31945. image: {
  31946. source: "./media/characters/noboru/front.svg",
  31947. extra: 1039/932,
  31948. bottom: 18/1057
  31949. }
  31950. },
  31951. },
  31952. [
  31953. {
  31954. name: "Micro",
  31955. height: math.unit(3, "inches"),
  31956. default: true
  31957. },
  31958. ]
  31959. ))
  31960. characterMakers.push(() => makeCharacter(
  31961. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31962. {
  31963. front: {
  31964. height: math.unit(1.85, "meters"),
  31965. weight: math.unit(80, "kg"),
  31966. name: "Front",
  31967. image: {
  31968. source: "./media/characters/daniel-barrett/front.svg",
  31969. extra: 355/337,
  31970. bottom: 9/364
  31971. }
  31972. },
  31973. },
  31974. [
  31975. {
  31976. name: "Pico",
  31977. height: math.unit(0.0433, "mm")
  31978. },
  31979. {
  31980. name: "Nano",
  31981. height: math.unit(1.5, "mm")
  31982. },
  31983. {
  31984. name: "Micro",
  31985. height: math.unit(5.3, "cm"),
  31986. default: true
  31987. },
  31988. {
  31989. name: "Normal",
  31990. height: math.unit(1.85, "meters")
  31991. },
  31992. {
  31993. name: "Macro",
  31994. height: math.unit(64.7, "meters")
  31995. },
  31996. {
  31997. name: "Megamacro",
  31998. height: math.unit(2.26, "km")
  31999. },
  32000. {
  32001. name: "Gigamacro",
  32002. height: math.unit(79, "km")
  32003. },
  32004. {
  32005. name: "Teramacro",
  32006. height: math.unit(2765, "km")
  32007. },
  32008. {
  32009. name: "Petamacro",
  32010. height: math.unit(96678, "km")
  32011. },
  32012. ]
  32013. ))
  32014. characterMakers.push(() => makeCharacter(
  32015. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32016. {
  32017. front: {
  32018. height: math.unit(30, "meters"),
  32019. weight: math.unit(400, "tons"),
  32020. name: "Front",
  32021. image: {
  32022. source: "./media/characters/zeel/front.svg",
  32023. extra: 2599/2599,
  32024. bottom: 226/2825
  32025. }
  32026. },
  32027. },
  32028. [
  32029. {
  32030. name: "Macro",
  32031. height: math.unit(30, "meters"),
  32032. default: true
  32033. },
  32034. ]
  32035. ))
  32036. characterMakers.push(() => makeCharacter(
  32037. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32038. {
  32039. front: {
  32040. height: math.unit(6 + 7/12, "feet"),
  32041. weight: math.unit(210, "lb"),
  32042. name: "Front",
  32043. image: {
  32044. source: "./media/characters/tarn/front.svg",
  32045. extra: 3517/3220,
  32046. bottom: 91/3608
  32047. }
  32048. },
  32049. back: {
  32050. height: math.unit(6 + 7/12, "feet"),
  32051. weight: math.unit(210, "lb"),
  32052. name: "Back",
  32053. image: {
  32054. source: "./media/characters/tarn/back.svg",
  32055. extra: 3566/3241,
  32056. bottom: 34/3600
  32057. }
  32058. },
  32059. dick: {
  32060. height: math.unit(1.65, "feet"),
  32061. name: "Dick",
  32062. image: {
  32063. source: "./media/characters/tarn/dick.svg"
  32064. }
  32065. },
  32066. paw: {
  32067. height: math.unit(1.80, "feet"),
  32068. name: "Paw",
  32069. image: {
  32070. source: "./media/characters/tarn/paw.svg"
  32071. }
  32072. },
  32073. tongue: {
  32074. height: math.unit(0.97, "feet"),
  32075. name: "Tongue",
  32076. image: {
  32077. source: "./media/characters/tarn/tongue.svg"
  32078. }
  32079. },
  32080. },
  32081. [
  32082. {
  32083. name: "Micro",
  32084. height: math.unit(4, "inches")
  32085. },
  32086. {
  32087. name: "Normal",
  32088. height: math.unit(6 + 7/12, "feet"),
  32089. default: true
  32090. },
  32091. {
  32092. name: "Macro",
  32093. height: math.unit(300, "feet")
  32094. },
  32095. ]
  32096. ))
  32097. characterMakers.push(() => makeCharacter(
  32098. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32099. {
  32100. front: {
  32101. height: math.unit(5 + 7/12, "feet"),
  32102. weight: math.unit(80, "kg"),
  32103. name: "Front",
  32104. image: {
  32105. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32106. extra: 3023/2865,
  32107. bottom: 33/3056
  32108. }
  32109. },
  32110. back: {
  32111. height: math.unit(5 + 7/12, "feet"),
  32112. weight: math.unit(80, "kg"),
  32113. name: "Back",
  32114. image: {
  32115. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32116. extra: 3020/2886,
  32117. bottom: 30/3050
  32118. }
  32119. },
  32120. dick: {
  32121. height: math.unit(0.98, "feet"),
  32122. name: "Dick",
  32123. image: {
  32124. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32125. }
  32126. },
  32127. anatomy: {
  32128. height: math.unit(2.86, "feet"),
  32129. name: "Anatomy",
  32130. image: {
  32131. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32132. }
  32133. },
  32134. },
  32135. [
  32136. {
  32137. name: "Really Small",
  32138. height: math.unit(2, "inches")
  32139. },
  32140. {
  32141. name: "Micro",
  32142. height: math.unit(5.583, "inches")
  32143. },
  32144. {
  32145. name: "Normal",
  32146. height: math.unit(5 + 7/12, "feet"),
  32147. default: true
  32148. },
  32149. {
  32150. name: "Macro",
  32151. height: math.unit(67, "feet")
  32152. },
  32153. {
  32154. name: "Megamacro",
  32155. height: math.unit(134, "feet")
  32156. },
  32157. ]
  32158. ))
  32159. characterMakers.push(() => makeCharacter(
  32160. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32161. {
  32162. front: {
  32163. height: math.unit(9, "feet"),
  32164. weight: math.unit(120, "lb"),
  32165. name: "Front",
  32166. image: {
  32167. source: "./media/characters/sally/front.svg",
  32168. extra: 1506/1349,
  32169. bottom: 66/1572
  32170. }
  32171. },
  32172. },
  32173. [
  32174. {
  32175. name: "Normal",
  32176. height: math.unit(9, "feet"),
  32177. default: true
  32178. },
  32179. ]
  32180. ))
  32181. characterMakers.push(() => makeCharacter(
  32182. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32183. {
  32184. front: {
  32185. height: math.unit(8, "feet"),
  32186. weight: math.unit(900, "lb"),
  32187. name: "Front",
  32188. image: {
  32189. source: "./media/characters/owen/front.svg",
  32190. extra: 1761/1657,
  32191. bottom: 74/1835
  32192. }
  32193. },
  32194. side: {
  32195. height: math.unit(8, "feet"),
  32196. weight: math.unit(900, "lb"),
  32197. name: "Side",
  32198. image: {
  32199. source: "./media/characters/owen/side.svg",
  32200. extra: 1797/1734,
  32201. bottom: 30/1827
  32202. }
  32203. },
  32204. back: {
  32205. height: math.unit(8, "feet"),
  32206. weight: math.unit(900, "lb"),
  32207. name: "Back",
  32208. image: {
  32209. source: "./media/characters/owen/back.svg",
  32210. extra: 1796/1706,
  32211. bottom: 59/1855
  32212. }
  32213. },
  32214. maw: {
  32215. height: math.unit(1.76, "feet"),
  32216. name: "Maw",
  32217. image: {
  32218. source: "./media/characters/owen/maw.svg"
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(8, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32232. {
  32233. front: {
  32234. height: math.unit(4, "feet"),
  32235. weight: math.unit(400, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/ryth/front.svg",
  32239. extra: 1920/1748,
  32240. bottom: 42/1962
  32241. }
  32242. },
  32243. back: {
  32244. height: math.unit(4, "feet"),
  32245. weight: math.unit(400, "lb"),
  32246. name: "Back",
  32247. image: {
  32248. source: "./media/characters/ryth/back.svg",
  32249. extra: 1897/1690,
  32250. bottom: 89/1986
  32251. }
  32252. },
  32253. mouth: {
  32254. height: math.unit(1.39, "feet"),
  32255. name: "Mouth",
  32256. image: {
  32257. source: "./media/characters/ryth/mouth.svg"
  32258. }
  32259. },
  32260. tailmaw: {
  32261. height: math.unit(1.23, "feet"),
  32262. name: "Tailmaw",
  32263. image: {
  32264. source: "./media/characters/ryth/tailmaw.svg"
  32265. }
  32266. },
  32267. goia: {
  32268. height: math.unit(4, "meters"),
  32269. weight: math.unit(10800, "lb"),
  32270. name: "Goia",
  32271. image: {
  32272. source: "./media/characters/ryth/goia.svg",
  32273. extra: 745/640,
  32274. bottom: 107/852
  32275. }
  32276. },
  32277. goiaFront: {
  32278. height: math.unit(4, "meters"),
  32279. weight: math.unit(10800, "lb"),
  32280. name: "Goia (Front)",
  32281. image: {
  32282. source: "./media/characters/ryth/goia-front.svg",
  32283. extra: 750/586,
  32284. bottom: 114/864
  32285. }
  32286. },
  32287. goiaMaw: {
  32288. height: math.unit(5.55, "feet"),
  32289. name: "Goia Maw",
  32290. image: {
  32291. source: "./media/characters/ryth/goia-maw.svg"
  32292. }
  32293. },
  32294. goiaForepaw: {
  32295. height: math.unit(3.5, "feet"),
  32296. name: "Goia Forepaw",
  32297. image: {
  32298. source: "./media/characters/ryth/goia-forepaw.svg"
  32299. }
  32300. },
  32301. goiaHindpaw: {
  32302. height: math.unit(5.55, "feet"),
  32303. name: "Goia Hindpaw",
  32304. image: {
  32305. source: "./media/characters/ryth/goia-hindpaw.svg"
  32306. }
  32307. },
  32308. },
  32309. [
  32310. {
  32311. name: "Normal",
  32312. height: math.unit(4, "feet"),
  32313. default: true
  32314. },
  32315. ]
  32316. ))
  32317. characterMakers.push(() => makeCharacter(
  32318. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32319. {
  32320. front: {
  32321. height: math.unit(7, "feet"),
  32322. weight: math.unit(180, "lb"),
  32323. name: "Front",
  32324. image: {
  32325. source: "./media/characters/necrolance/front.svg",
  32326. extra: 1062/947,
  32327. bottom: 41/1103
  32328. }
  32329. },
  32330. back: {
  32331. height: math.unit(7, "feet"),
  32332. weight: math.unit(180, "lb"),
  32333. name: "Back",
  32334. image: {
  32335. source: "./media/characters/necrolance/back.svg",
  32336. extra: 1045/984,
  32337. bottom: 14/1059
  32338. }
  32339. },
  32340. wing: {
  32341. height: math.unit(2.67, "feet"),
  32342. name: "Wing",
  32343. image: {
  32344. source: "./media/characters/necrolance/wing.svg"
  32345. }
  32346. },
  32347. },
  32348. [
  32349. {
  32350. name: "Normal",
  32351. height: math.unit(7, "feet"),
  32352. default: true
  32353. },
  32354. ]
  32355. ))
  32356. characterMakers.push(() => makeCharacter(
  32357. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32358. {
  32359. front: {
  32360. height: math.unit(76, "meters"),
  32361. weight: math.unit(30000, "tons"),
  32362. name: "Front",
  32363. image: {
  32364. source: "./media/characters/tyler/front.svg",
  32365. extra: 1640/1640,
  32366. bottom: 114/1754
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Macro",
  32373. height: math.unit(76, "meters"),
  32374. default: true
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(4 + 11/12, "feet"),
  32383. weight: math.unit(132, "lb"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/icey/front.svg",
  32387. extra: 2750/2550,
  32388. bottom: 33/2783
  32389. }
  32390. },
  32391. back: {
  32392. height: math.unit(4 + 11/12, "feet"),
  32393. weight: math.unit(132, "lb"),
  32394. name: "Back",
  32395. image: {
  32396. source: "./media/characters/icey/back.svg",
  32397. extra: 2624/2481,
  32398. bottom: 35/2659
  32399. }
  32400. },
  32401. },
  32402. [
  32403. {
  32404. name: "Normal",
  32405. height: math.unit(4 + 11/12, "feet"),
  32406. default: true
  32407. },
  32408. ]
  32409. ))
  32410. characterMakers.push(() => makeCharacter(
  32411. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32412. {
  32413. front: {
  32414. height: math.unit(100, "feet"),
  32415. weight: math.unit(0, "lb"),
  32416. name: "Front",
  32417. image: {
  32418. source: "./media/characters/smile/front.svg",
  32419. extra: 2983/2912,
  32420. bottom: 162/3145
  32421. }
  32422. },
  32423. back: {
  32424. height: math.unit(100, "feet"),
  32425. weight: math.unit(0, "lb"),
  32426. name: "Back",
  32427. image: {
  32428. source: "./media/characters/smile/back.svg",
  32429. extra: 3143/3031,
  32430. bottom: 91/3234
  32431. }
  32432. },
  32433. head: {
  32434. height: math.unit(26.3, "feet"),
  32435. weight: math.unit(0, "lb"),
  32436. name: "Head",
  32437. image: {
  32438. source: "./media/characters/smile/head.svg"
  32439. }
  32440. },
  32441. collar: {
  32442. height: math.unit(5.3, "feet"),
  32443. weight: math.unit(0, "lb"),
  32444. name: "Collar",
  32445. image: {
  32446. source: "./media/characters/smile/collar.svg"
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Macro",
  32453. height: math.unit(100, "feet"),
  32454. default: true
  32455. },
  32456. ]
  32457. ))
  32458. characterMakers.push(() => makeCharacter(
  32459. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32460. {
  32461. dragon: {
  32462. height: math.unit(26, "feet"),
  32463. weight: math.unit(36, "tons"),
  32464. name: "Dragon",
  32465. image: {
  32466. source: "./media/characters/arimphae/dragon.svg",
  32467. extra: 1574/983,
  32468. bottom: 357/1931
  32469. }
  32470. },
  32471. drake: {
  32472. height: math.unit(9, "feet"),
  32473. weight: math.unit(1.5, "tons"),
  32474. name: "Drake",
  32475. image: {
  32476. source: "./media/characters/arimphae/drake.svg",
  32477. extra: 1120/925,
  32478. bottom: 435/1555
  32479. }
  32480. },
  32481. },
  32482. [
  32483. {
  32484. name: "Small",
  32485. height: math.unit(26*5/9, "feet")
  32486. },
  32487. {
  32488. name: "Normal",
  32489. height: math.unit(26, "feet"),
  32490. default: true
  32491. },
  32492. ]
  32493. ))
  32494. characterMakers.push(() => makeCharacter(
  32495. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32496. {
  32497. front: {
  32498. height: math.unit(8 + 9/12, "feet"),
  32499. name: "Front",
  32500. image: {
  32501. source: "./media/characters/xander/front.svg",
  32502. extra: 1237/974,
  32503. bottom: 94/1331
  32504. }
  32505. },
  32506. },
  32507. [
  32508. {
  32509. name: "Normal",
  32510. height: math.unit(8 + 9/12, "feet"),
  32511. default: true
  32512. },
  32513. {
  32514. name: "Gaze Grabber",
  32515. height: math.unit(13 + 8/12, "feet")
  32516. },
  32517. {
  32518. name: "Jaw Dropper",
  32519. height: math.unit(27, "feet")
  32520. },
  32521. {
  32522. name: "Show Stopper",
  32523. height: math.unit(136, "feet")
  32524. },
  32525. {
  32526. name: "Superstar",
  32527. height: math.unit(1.9e6, "miles")
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32533. {
  32534. side: {
  32535. height: math.unit(2100, "feet"),
  32536. name: "Side",
  32537. image: {
  32538. source: "./media/characters/osiris/side.svg",
  32539. extra: 1105/939,
  32540. bottom: 167/1272
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Macro",
  32547. height: math.unit(2100, "feet"),
  32548. default: true
  32549. },
  32550. ]
  32551. ))
  32552. characterMakers.push(() => makeCharacter(
  32553. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32554. {
  32555. front: {
  32556. height: math.unit(6 + 8/12, "feet"),
  32557. weight: math.unit(225, "lb"),
  32558. name: "Front",
  32559. image: {
  32560. source: "./media/characters/rhys-londe/front.svg",
  32561. extra: 2258/2141,
  32562. bottom: 188/2446
  32563. }
  32564. },
  32565. back: {
  32566. height: math.unit(6 + 8/12, "feet"),
  32567. weight: math.unit(225, "lb"),
  32568. name: "Back",
  32569. image: {
  32570. source: "./media/characters/rhys-londe/back.svg",
  32571. extra: 2237/2137,
  32572. bottom: 63/2300
  32573. }
  32574. },
  32575. frontNsfw: {
  32576. height: math.unit(6 + 8/12, "feet"),
  32577. weight: math.unit(225, "lb"),
  32578. name: "Front (NSFW)",
  32579. image: {
  32580. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32581. extra: 2258/2141,
  32582. bottom: 188/2446
  32583. }
  32584. },
  32585. backNsfw: {
  32586. height: math.unit(6 + 8/12, "feet"),
  32587. weight: math.unit(225, "lb"),
  32588. name: "Back (NSFW)",
  32589. image: {
  32590. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32591. extra: 2237/2137,
  32592. bottom: 63/2300
  32593. }
  32594. },
  32595. dick: {
  32596. height: math.unit(30, "inches"),
  32597. name: "Dick",
  32598. image: {
  32599. source: "./media/characters/rhys-londe/dick.svg"
  32600. }
  32601. },
  32602. maw: {
  32603. height: math.unit(1.6, "feet"),
  32604. name: "Maw",
  32605. image: {
  32606. source: "./media/characters/rhys-londe/maw.svg"
  32607. }
  32608. },
  32609. },
  32610. [
  32611. {
  32612. name: "Normal",
  32613. height: math.unit(6 + 8/12, "feet"),
  32614. default: true
  32615. },
  32616. ]
  32617. ))
  32618. characterMakers.push(() => makeCharacter(
  32619. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32620. {
  32621. front: {
  32622. height: math.unit(3 + 10/12, "feet"),
  32623. weight: math.unit(90, "lb"),
  32624. name: "Front",
  32625. image: {
  32626. source: "./media/characters/taivas-ensim/front.svg",
  32627. extra: 1327/1216,
  32628. bottom: 96/1423
  32629. }
  32630. },
  32631. back: {
  32632. height: math.unit(3 + 10/12, "feet"),
  32633. weight: math.unit(90, "lb"),
  32634. name: "Back",
  32635. image: {
  32636. source: "./media/characters/taivas-ensim/back.svg",
  32637. extra: 1355/1247,
  32638. bottom: 11/1366
  32639. }
  32640. },
  32641. frontNsfw: {
  32642. height: math.unit(3 + 10/12, "feet"),
  32643. weight: math.unit(90, "lb"),
  32644. name: "Front (NSFW)",
  32645. image: {
  32646. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32647. extra: 1327/1216,
  32648. bottom: 96/1423
  32649. }
  32650. },
  32651. backNsfw: {
  32652. height: math.unit(3 + 10/12, "feet"),
  32653. weight: math.unit(90, "lb"),
  32654. name: "Back (NSFW)",
  32655. image: {
  32656. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32657. extra: 1355/1247,
  32658. bottom: 11/1366
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Normal",
  32665. height: math.unit(3 + 10/12, "feet"),
  32666. default: true
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32672. {
  32673. front: {
  32674. height: math.unit(9 + 6/12, "feet"),
  32675. weight: math.unit(940, "lb"),
  32676. name: "Front",
  32677. image: {
  32678. source: "./media/characters/byliss/front.svg",
  32679. extra: 1327/1290,
  32680. bottom: 82/1409
  32681. }
  32682. },
  32683. back: {
  32684. height: math.unit(9 + 6/12, "feet"),
  32685. weight: math.unit(940, "lb"),
  32686. name: "Back",
  32687. image: {
  32688. source: "./media/characters/byliss/back.svg",
  32689. extra: 1376/1349,
  32690. bottom: 9/1385
  32691. }
  32692. },
  32693. frontNsfw: {
  32694. height: math.unit(9 + 6/12, "feet"),
  32695. weight: math.unit(940, "lb"),
  32696. name: "Front (NSFW)",
  32697. image: {
  32698. source: "./media/characters/byliss/front-nsfw.svg",
  32699. extra: 1327/1290,
  32700. bottom: 82/1409
  32701. }
  32702. },
  32703. backNsfw: {
  32704. height: math.unit(9 + 6/12, "feet"),
  32705. weight: math.unit(940, "lb"),
  32706. name: "Back (NSFW)",
  32707. image: {
  32708. source: "./media/characters/byliss/back-nsfw.svg",
  32709. extra: 1376/1349,
  32710. bottom: 9/1385
  32711. }
  32712. },
  32713. },
  32714. [
  32715. {
  32716. name: "Normal",
  32717. height: math.unit(9 + 6/12, "feet"),
  32718. default: true
  32719. },
  32720. ]
  32721. ))
  32722. characterMakers.push(() => makeCharacter(
  32723. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32724. {
  32725. front: {
  32726. height: math.unit(5 + 2/12, "feet"),
  32727. weight: math.unit(200, "lb"),
  32728. name: "Front",
  32729. image: {
  32730. source: "./media/characters/noraly/front.svg",
  32731. extra: 4985/4773,
  32732. bottom: 150/5135
  32733. }
  32734. },
  32735. full: {
  32736. height: math.unit(5 + 2/12, "feet"),
  32737. weight: math.unit(164, "lb"),
  32738. name: "Full",
  32739. image: {
  32740. source: "./media/characters/noraly/full.svg",
  32741. extra: 1114/1059,
  32742. bottom: 35/1149
  32743. }
  32744. },
  32745. fuller: {
  32746. height: math.unit(5 + 2/12, "feet"),
  32747. weight: math.unit(230, "lb"),
  32748. name: "Fuller",
  32749. image: {
  32750. source: "./media/characters/noraly/fuller.svg",
  32751. extra: 1114/1059,
  32752. bottom: 35/1149
  32753. }
  32754. },
  32755. fullest: {
  32756. height: math.unit(5 + 2/12, "feet"),
  32757. weight: math.unit(300, "lb"),
  32758. name: "Fullest",
  32759. image: {
  32760. source: "./media/characters/noraly/fullest.svg",
  32761. extra: 1114/1059,
  32762. bottom: 35/1149
  32763. }
  32764. },
  32765. },
  32766. [
  32767. {
  32768. name: "Normal",
  32769. height: math.unit(5 + 2/12, "feet"),
  32770. default: true
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32776. {
  32777. front: {
  32778. height: math.unit(5 + 2/12, "feet"),
  32779. weight: math.unit(210, "lb"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/pera/front.svg",
  32783. extra: 1560/1531,
  32784. bottom: 165/1725
  32785. }
  32786. },
  32787. back: {
  32788. height: math.unit(5 + 2/12, "feet"),
  32789. weight: math.unit(210, "lb"),
  32790. name: "Back",
  32791. image: {
  32792. source: "./media/characters/pera/back.svg",
  32793. extra: 1523/1493,
  32794. bottom: 152/1675
  32795. }
  32796. },
  32797. dick: {
  32798. height: math.unit(2.4, "feet"),
  32799. name: "Dick",
  32800. image: {
  32801. source: "./media/characters/pera/dick.svg"
  32802. }
  32803. },
  32804. },
  32805. [
  32806. {
  32807. name: "Normal",
  32808. height: math.unit(5 + 2/12, "feet"),
  32809. default: true
  32810. },
  32811. ]
  32812. ))
  32813. characterMakers.push(() => makeCharacter(
  32814. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32815. {
  32816. front: {
  32817. height: math.unit(12, "feet"),
  32818. weight: math.unit(3200, "lb"),
  32819. name: "Front",
  32820. image: {
  32821. source: "./media/characters/julian/front.svg",
  32822. extra: 2962/2701,
  32823. bottom: 184/3146
  32824. }
  32825. },
  32826. maw: {
  32827. height: math.unit(5.35, "feet"),
  32828. name: "Maw",
  32829. image: {
  32830. source: "./media/characters/julian/maw.svg"
  32831. }
  32832. },
  32833. paw: {
  32834. height: math.unit(3.07, "feet"),
  32835. name: "Paw",
  32836. image: {
  32837. source: "./media/characters/julian/paw.svg"
  32838. }
  32839. },
  32840. },
  32841. [
  32842. {
  32843. name: "Default",
  32844. height: math.unit(12, "feet"),
  32845. default: true
  32846. },
  32847. {
  32848. name: "Big",
  32849. height: math.unit(50, "feet")
  32850. },
  32851. {
  32852. name: "Really Big",
  32853. height: math.unit(1, "mile")
  32854. },
  32855. {
  32856. name: "Extremely Big",
  32857. height: math.unit(100, "miles")
  32858. },
  32859. {
  32860. name: "Planet Hugger",
  32861. height: math.unit(200, "megameters")
  32862. },
  32863. {
  32864. name: "Unreasonably Big",
  32865. height: math.unit(1e300, "meters")
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32871. {
  32872. solgooleo: {
  32873. height: math.unit(4, "meters"),
  32874. weight: math.unit(6000*1.5, "kg"),
  32875. volume: math.unit(6000, "liters"),
  32876. name: "Solgooleo",
  32877. image: {
  32878. source: "./media/characters/pi/solgooleo.svg",
  32879. extra: 388/331,
  32880. bottom: 29/417
  32881. }
  32882. },
  32883. },
  32884. [
  32885. {
  32886. name: "Normal",
  32887. height: math.unit(4, "meters"),
  32888. default: true
  32889. },
  32890. ]
  32891. ))
  32892. characterMakers.push(() => makeCharacter(
  32893. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32894. {
  32895. front: {
  32896. height: math.unit(8, "feet"),
  32897. weight: math.unit(4, "tons"),
  32898. name: "Front",
  32899. image: {
  32900. source: "./media/characters/shaun/front.svg",
  32901. extra: 503/495,
  32902. bottom: 20/523
  32903. }
  32904. },
  32905. back: {
  32906. height: math.unit(8, "feet"),
  32907. weight: math.unit(4, "tons"),
  32908. name: "Back",
  32909. image: {
  32910. source: "./media/characters/shaun/back.svg",
  32911. extra: 487/480,
  32912. bottom: 20/507
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Lorg",
  32919. height: math.unit(8, "feet"),
  32920. default: true
  32921. },
  32922. ]
  32923. ))
  32924. characterMakers.push(() => makeCharacter(
  32925. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32926. {
  32927. front: {
  32928. height: math.unit(7, "feet"),
  32929. name: "Front",
  32930. image: {
  32931. source: "./media/characters/sini/front.svg",
  32932. extra: 726/678,
  32933. bottom: 35/761
  32934. }
  32935. },
  32936. back: {
  32937. height: math.unit(7, "feet"),
  32938. name: "Back",
  32939. image: {
  32940. source: "./media/characters/sini/back.svg",
  32941. extra: 743/701,
  32942. bottom: 12/755
  32943. }
  32944. },
  32945. mawAnthro: {
  32946. height: math.unit(2.14, "feet"),
  32947. name: "Maw (Anthro)",
  32948. image: {
  32949. source: "./media/characters/sini/maw-anthro.svg"
  32950. }
  32951. },
  32952. dick: {
  32953. height: math.unit(1.45, "feet"),
  32954. name: "Dick (Anthro)",
  32955. image: {
  32956. source: "./media/characters/sini/dick-anthro.svg"
  32957. }
  32958. },
  32959. feral: {
  32960. height: math.unit(16, "feet"),
  32961. name: "Feral",
  32962. image: {
  32963. source: "./media/characters/sini/feral.svg",
  32964. extra: 814/605,
  32965. bottom: 11/825
  32966. }
  32967. },
  32968. mawFeral: {
  32969. height: math.unit(5.66, "feet"),
  32970. name: "Maw-feral",
  32971. image: {
  32972. source: "./media/characters/sini/maw-feral.svg"
  32973. }
  32974. },
  32975. footFeral: {
  32976. height: math.unit(5.17, "feet"),
  32977. name: "Foot-feral",
  32978. image: {
  32979. source: "./media/characters/sini/foot-feral.svg"
  32980. }
  32981. },
  32982. },
  32983. [
  32984. {
  32985. name: "Normal",
  32986. height: math.unit(7, "feet"),
  32987. default: true
  32988. },
  32989. ]
  32990. ))
  32991. characterMakers.push(() => makeCharacter(
  32992. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32993. {
  32994. side: {
  32995. height: math.unit(13, "meters"),
  32996. weight: math.unit(9072, "kg"),
  32997. name: "Side",
  32998. image: {
  32999. source: "./media/characters/raylldo/side.svg",
  33000. extra: 403/344,
  33001. bottom: 42/445
  33002. }
  33003. },
  33004. leaping: {
  33005. height: math.unit(12.3, "meters"),
  33006. weight: math.unit(9072, "kg"),
  33007. name: "Leaping",
  33008. image: {
  33009. source: "./media/characters/raylldo/leaping.svg",
  33010. extra: 470/249,
  33011. bottom: 13/483
  33012. }
  33013. },
  33014. flying: {
  33015. height: math.unit(18, "meters"),
  33016. weight: math.unit(9072, "kg"),
  33017. name: "Flying",
  33018. image: {
  33019. source: "./media/characters/raylldo/flying.svg"
  33020. }
  33021. },
  33022. head: {
  33023. height: math.unit(5.85, "meters"),
  33024. name: "Head",
  33025. image: {
  33026. source: "./media/characters/raylldo/head.svg"
  33027. }
  33028. },
  33029. maw: {
  33030. height: math.unit(5.32, "meters"),
  33031. name: "Maw",
  33032. image: {
  33033. source: "./media/characters/raylldo/maw.svg"
  33034. }
  33035. },
  33036. eye: {
  33037. height: math.unit(0.54, "meters"),
  33038. name: "Eye",
  33039. image: {
  33040. source: "./media/characters/raylldo/eye.svg"
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Normal",
  33047. height: math.unit(13, "meters"),
  33048. default: true
  33049. },
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33054. {
  33055. anthroFront: {
  33056. height: math.unit(9, "feet"),
  33057. weight: math.unit(600, "lb"),
  33058. name: "Anthro (Front)",
  33059. image: {
  33060. source: "./media/characters/glint/anthro-front.svg",
  33061. extra: 1097/1018,
  33062. bottom: 28/1125
  33063. }
  33064. },
  33065. anthroBack: {
  33066. height: math.unit(9, "feet"),
  33067. weight: math.unit(600, "lb"),
  33068. name: "Anthro (Back)",
  33069. image: {
  33070. source: "./media/characters/glint/anthro-back.svg",
  33071. extra: 1154/997,
  33072. bottom: 36/1190
  33073. }
  33074. },
  33075. feral: {
  33076. height: math.unit(11, "feet"),
  33077. weight: math.unit(50000, "lb"),
  33078. name: "Feral",
  33079. image: {
  33080. source: "./media/characters/glint/feral.svg",
  33081. extra: 3035/1585,
  33082. bottom: 1169/4204
  33083. }
  33084. },
  33085. dickAnthro: {
  33086. height: math.unit(0.7, "meters"),
  33087. name: "Dick (Anthro)",
  33088. image: {
  33089. source: "./media/characters/glint/dick-anthro.svg"
  33090. }
  33091. },
  33092. dickFeral: {
  33093. height: math.unit(2.65, "meters"),
  33094. name: "Dick (Feral)",
  33095. image: {
  33096. source: "./media/characters/glint/dick-feral.svg"
  33097. }
  33098. },
  33099. slitHidden: {
  33100. height: math.unit(5.85, "meters"),
  33101. name: "Slit (Hidden)",
  33102. image: {
  33103. source: "./media/characters/glint/slit-hidden.svg"
  33104. }
  33105. },
  33106. slitErect: {
  33107. height: math.unit(5.85, "meters"),
  33108. name: "Slit (Erect)",
  33109. image: {
  33110. source: "./media/characters/glint/slit-erect.svg"
  33111. }
  33112. },
  33113. mawAnthro: {
  33114. height: math.unit(0.63, "meters"),
  33115. name: "Maw (Anthro)",
  33116. image: {
  33117. source: "./media/characters/glint/maw.svg"
  33118. }
  33119. },
  33120. mawFeral: {
  33121. height: math.unit(2.89, "meters"),
  33122. name: "Maw (Feral)",
  33123. image: {
  33124. source: "./media/characters/glint/maw.svg"
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Normal",
  33131. height: math.unit(9, "feet"),
  33132. default: true
  33133. },
  33134. ]
  33135. ))
  33136. characterMakers.push(() => makeCharacter(
  33137. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33138. {
  33139. side: {
  33140. height: math.unit(15, "feet"),
  33141. weight: math.unit(5000, "kg"),
  33142. name: "Side",
  33143. image: {
  33144. source: "./media/characters/kairne/side.svg",
  33145. extra: 979/811,
  33146. bottom: 13/992
  33147. }
  33148. },
  33149. front: {
  33150. height: math.unit(15, "feet"),
  33151. weight: math.unit(5000, "kg"),
  33152. name: "Front",
  33153. image: {
  33154. source: "./media/characters/kairne/front.svg",
  33155. extra: 908/814,
  33156. bottom: 26/934
  33157. }
  33158. },
  33159. sideNsfw: {
  33160. height: math.unit(15, "feet"),
  33161. weight: math.unit(5000, "kg"),
  33162. name: "Side (NSFW)",
  33163. image: {
  33164. source: "./media/characters/kairne/side-nsfw.svg",
  33165. extra: 979/811,
  33166. bottom: 13/992
  33167. }
  33168. },
  33169. frontNsfw: {
  33170. height: math.unit(15, "feet"),
  33171. weight: math.unit(5000, "kg"),
  33172. name: "Front (NSFW)",
  33173. image: {
  33174. source: "./media/characters/kairne/front-nsfw.svg",
  33175. extra: 908/814,
  33176. bottom: 26/934
  33177. }
  33178. },
  33179. dickCaged: {
  33180. height: math.unit(0.65, "meters"),
  33181. name: "Dick-caged",
  33182. image: {
  33183. source: "./media/characters/kairne/dick-caged.svg"
  33184. }
  33185. },
  33186. dick: {
  33187. height: math.unit(0.79, "meters"),
  33188. name: "Dick",
  33189. image: {
  33190. source: "./media/characters/kairne/dick.svg"
  33191. }
  33192. },
  33193. genitals: {
  33194. height: math.unit(1.29, "meters"),
  33195. name: "Genitals",
  33196. image: {
  33197. source: "./media/characters/kairne/genitals.svg"
  33198. }
  33199. },
  33200. maw: {
  33201. height: math.unit(1.73, "meters"),
  33202. name: "Maw",
  33203. image: {
  33204. source: "./media/characters/kairne/maw.svg"
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(15, "feet"),
  33212. default: true
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33218. {
  33219. front: {
  33220. height: math.unit(5 + 8/12, "feet"),
  33221. weight: math.unit(139, "lb"),
  33222. name: "Front",
  33223. image: {
  33224. source: "./media/characters/biscuit-jackal/front.svg",
  33225. extra: 2106/1961,
  33226. bottom: 58/2164
  33227. }
  33228. },
  33229. back: {
  33230. height: math.unit(5 + 8/12, "feet"),
  33231. weight: math.unit(139, "lb"),
  33232. name: "Back",
  33233. image: {
  33234. source: "./media/characters/biscuit-jackal/back.svg",
  33235. extra: 2132/1976,
  33236. bottom: 57/2189
  33237. }
  33238. },
  33239. werejackal: {
  33240. height: math.unit(6 + 3/12, "feet"),
  33241. weight: math.unit(188, "lb"),
  33242. name: "Werejackal",
  33243. image: {
  33244. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33245. extra: 2373/2178,
  33246. bottom: 53/2426
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(5 + 8/12, "feet"),
  33254. default: true
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33260. {
  33261. front: {
  33262. height: math.unit(140, "cm"),
  33263. weight: math.unit(45, "kg"),
  33264. name: "Front",
  33265. image: {
  33266. source: "./media/characters/tayra-white/front.svg",
  33267. extra: 2229/2192,
  33268. bottom: 75/2304
  33269. }
  33270. },
  33271. },
  33272. [
  33273. {
  33274. name: "Normal",
  33275. height: math.unit(140, "cm"),
  33276. default: true
  33277. },
  33278. ]
  33279. ))
  33280. characterMakers.push(() => makeCharacter(
  33281. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33282. {
  33283. front: {
  33284. height: math.unit(4 + 5/12, "feet"),
  33285. name: "Front",
  33286. image: {
  33287. source: "./media/characters/scoop/front.svg",
  33288. extra: 1257/1136,
  33289. bottom: 69/1326
  33290. }
  33291. },
  33292. back: {
  33293. height: math.unit(4 + 5/12, "feet"),
  33294. name: "Back",
  33295. image: {
  33296. source: "./media/characters/scoop/back.svg",
  33297. extra: 1321/1152,
  33298. bottom: 32/1353
  33299. }
  33300. },
  33301. maw: {
  33302. height: math.unit(0.68, "feet"),
  33303. name: "Maw",
  33304. image: {
  33305. source: "./media/characters/scoop/maw.svg"
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Really Small",
  33312. height: math.unit(1, "mm")
  33313. },
  33314. {
  33315. name: "Micro",
  33316. height: math.unit(1, "inch")
  33317. },
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(4 + 5/12, "feet"),
  33321. default: true
  33322. },
  33323. {
  33324. name: "Macro",
  33325. height: math.unit(200, "feet")
  33326. },
  33327. {
  33328. name: "Megamacro",
  33329. height: math.unit(3240, "feet")
  33330. },
  33331. {
  33332. name: "Teramacro",
  33333. height: math.unit(2500, "miles")
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33339. {
  33340. front: {
  33341. height: math.unit(15 + 7/12, "feet"),
  33342. name: "Front",
  33343. image: {
  33344. source: "./media/characters/saphinara/front.svg",
  33345. extra: 604/546,
  33346. bottom: 19/623
  33347. }
  33348. },
  33349. side: {
  33350. height: math.unit(15 + 7/12, "feet"),
  33351. name: "Side",
  33352. image: {
  33353. source: "./media/characters/saphinara/side.svg",
  33354. extra: 605/547,
  33355. bottom: 6/611
  33356. }
  33357. },
  33358. back: {
  33359. height: math.unit(15 + 7/12, "feet"),
  33360. name: "Back",
  33361. image: {
  33362. source: "./media/characters/saphinara/back.svg",
  33363. extra: 591/531,
  33364. bottom: 13/604
  33365. }
  33366. },
  33367. frontTail: {
  33368. height: math.unit(15 + 7/12, "feet"),
  33369. name: "Front (Full Tail)",
  33370. image: {
  33371. source: "./media/characters/saphinara/front-tail.svg",
  33372. extra: 748/547,
  33373. bottom: 66/814
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Normal",
  33380. height: math.unit(15 + 7/12, "feet"),
  33381. default: true
  33382. },
  33383. {
  33384. name: "Angry",
  33385. height: math.unit(30 + 6/12, "feet")
  33386. },
  33387. {
  33388. name: "Enraged",
  33389. height: math.unit(102 + 1/12, "feet")
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33395. {
  33396. front: {
  33397. height: math.unit(6 + 8/12, "feet"),
  33398. weight: math.unit(300, "lb"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/jrain/front.svg",
  33402. extra: 3039/2865,
  33403. bottom: 399/3438
  33404. }
  33405. },
  33406. back: {
  33407. height: math.unit(6 + 8/12, "feet"),
  33408. weight: math.unit(300, "lb"),
  33409. name: "Back",
  33410. image: {
  33411. source: "./media/characters/jrain/back.svg",
  33412. extra: 3089/2938,
  33413. bottom: 172/3261
  33414. }
  33415. },
  33416. head: {
  33417. height: math.unit(2.14, "feet"),
  33418. name: "Head",
  33419. image: {
  33420. source: "./media/characters/jrain/head.svg"
  33421. }
  33422. },
  33423. maw: {
  33424. height: math.unit(1.77, "feet"),
  33425. name: "Maw",
  33426. image: {
  33427. source: "./media/characters/jrain/maw.svg"
  33428. }
  33429. },
  33430. leftHand: {
  33431. height: math.unit(1.1, "feet"),
  33432. name: "Left Hand",
  33433. image: {
  33434. source: "./media/characters/jrain/left-hand.svg"
  33435. }
  33436. },
  33437. rightHand: {
  33438. height: math.unit(1.1, "feet"),
  33439. name: "Right Hand",
  33440. image: {
  33441. source: "./media/characters/jrain/right-hand.svg"
  33442. }
  33443. },
  33444. eye: {
  33445. height: math.unit(0.35, "feet"),
  33446. name: "Eye",
  33447. image: {
  33448. source: "./media/characters/jrain/eye.svg"
  33449. }
  33450. },
  33451. },
  33452. [
  33453. {
  33454. name: "Normal",
  33455. height: math.unit(6 + 8/12, "feet"),
  33456. default: true
  33457. },
  33458. {
  33459. name: "Casually Large",
  33460. height: math.unit(25, "feet")
  33461. },
  33462. {
  33463. name: "Giant",
  33464. height: math.unit(100, "feet")
  33465. },
  33466. {
  33467. name: "Kaiju",
  33468. height: math.unit(300, "feet")
  33469. },
  33470. ]
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33474. {
  33475. dragon: {
  33476. height: math.unit(5, "meters"),
  33477. name: "Dragon",
  33478. image: {
  33479. source: "./media/characters/sabrina/dragon.svg",
  33480. extra: 3670 / 2365,
  33481. bottom: 333 / 4003
  33482. }
  33483. },
  33484. gryphon: {
  33485. height: math.unit(3, "meters"),
  33486. name: "Gryphon",
  33487. image: {
  33488. source: "./media/characters/sabrina/gryphon.svg",
  33489. extra: 1576 / 945,
  33490. bottom: 71 / 1647
  33491. }
  33492. },
  33493. snake: {
  33494. height: math.unit(12, "meters"),
  33495. name: "Snake",
  33496. image: {
  33497. source: "./media/characters/sabrina/snake.svg",
  33498. extra: 1758 / 1320,
  33499. bottom: 186 / 1944
  33500. }
  33501. },
  33502. collar: {
  33503. height: math.unit(1.86, "meters"),
  33504. name: "Collar",
  33505. image: {
  33506. source: "./media/characters/sabrina/collar.svg"
  33507. }
  33508. },
  33509. eye: {
  33510. height: math.unit(0.53, "meters"),
  33511. name: "Eye",
  33512. image: {
  33513. source: "./media/characters/sabrina/eye.svg"
  33514. }
  33515. },
  33516. foot: {
  33517. height: math.unit(1.86, "meters"),
  33518. name: "Foot",
  33519. image: {
  33520. source: "./media/characters/sabrina/foot.svg"
  33521. }
  33522. },
  33523. hand: {
  33524. height: math.unit(1.32, "meters"),
  33525. name: "Hand",
  33526. image: {
  33527. source: "./media/characters/sabrina/hand.svg"
  33528. }
  33529. },
  33530. head: {
  33531. height: math.unit(2.44, "meters"),
  33532. name: "Head",
  33533. image: {
  33534. source: "./media/characters/sabrina/head.svg"
  33535. }
  33536. },
  33537. headAngry: {
  33538. height: math.unit(2.44, "meters"),
  33539. name: "Head (Angry))",
  33540. image: {
  33541. source: "./media/characters/sabrina/head-angry.svg"
  33542. }
  33543. },
  33544. maw: {
  33545. height: math.unit(1.65, "meters"),
  33546. name: "Maw",
  33547. image: {
  33548. source: "./media/characters/sabrina/maw.svg"
  33549. }
  33550. },
  33551. spikes: {
  33552. height: math.unit(1.69, "meters"),
  33553. name: "Spikes",
  33554. image: {
  33555. source: "./media/characters/sabrina/spikes.svg"
  33556. }
  33557. },
  33558. stomach: {
  33559. height: math.unit(1.15, "meters"),
  33560. name: "Stomach",
  33561. image: {
  33562. source: "./media/characters/sabrina/stomach.svg"
  33563. }
  33564. },
  33565. tongue: {
  33566. height: math.unit(1.27, "meters"),
  33567. name: "Tongue",
  33568. image: {
  33569. source: "./media/characters/sabrina/tongue.svg"
  33570. }
  33571. },
  33572. wingDorsal: {
  33573. height: math.unit(4.85, "meters"),
  33574. name: "Wing (Dorsal)",
  33575. image: {
  33576. source: "./media/characters/sabrina/wing-dorsal.svg"
  33577. }
  33578. },
  33579. wingVentral: {
  33580. height: math.unit(4.85, "meters"),
  33581. name: "Wing (Ventral)",
  33582. image: {
  33583. source: "./media/characters/sabrina/wing-ventral.svg"
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(5, "meters"),
  33591. default: true
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33597. {
  33598. frontMaid: {
  33599. height: math.unit(5 + 5/12, "feet"),
  33600. weight: math.unit(130, "lb"),
  33601. name: "Front (Maid)",
  33602. image: {
  33603. source: "./media/characters/midnight-tales/front-maid.svg",
  33604. extra: 489/454,
  33605. bottom: 61/550
  33606. }
  33607. },
  33608. frontFormal: {
  33609. height: math.unit(5 + 5/12, "feet"),
  33610. weight: math.unit(130, "lb"),
  33611. name: "Front (Formal)",
  33612. image: {
  33613. source: "./media/characters/midnight-tales/front-formal.svg",
  33614. extra: 489/454,
  33615. bottom: 61/550
  33616. }
  33617. },
  33618. back: {
  33619. height: math.unit(5 + 5/12, "feet"),
  33620. weight: math.unit(130, "lb"),
  33621. name: "Back",
  33622. image: {
  33623. source: "./media/characters/midnight-tales/back.svg",
  33624. extra: 498/456,
  33625. bottom: 33/531
  33626. }
  33627. },
  33628. frontBeast: {
  33629. height: math.unit(40, "feet"),
  33630. weight: math.unit(64000, "lb"),
  33631. name: "Front (Beast)",
  33632. image: {
  33633. source: "./media/characters/midnight-tales/front-beast.svg",
  33634. extra: 927/860,
  33635. bottom: 53/980
  33636. }
  33637. },
  33638. backBeast: {
  33639. height: math.unit(40, "feet"),
  33640. weight: math.unit(64000, "lb"),
  33641. name: "Back (Beast)",
  33642. image: {
  33643. source: "./media/characters/midnight-tales/back-beast.svg",
  33644. extra: 929/855,
  33645. bottom: 16/945
  33646. }
  33647. },
  33648. footBeast: {
  33649. height: math.unit(6.7, "feet"),
  33650. name: "Foot (Beast)",
  33651. image: {
  33652. source: "./media/characters/midnight-tales/foot-beast.svg"
  33653. }
  33654. },
  33655. headBeast: {
  33656. height: math.unit(8, "feet"),
  33657. name: "Head (Beast)",
  33658. image: {
  33659. source: "./media/characters/midnight-tales/head-beast.svg"
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Normal",
  33666. height: math.unit(5 + 5 / 12, "feet"),
  33667. default: true
  33668. },
  33669. {
  33670. name: "Macro",
  33671. height: math.unit(25, "feet")
  33672. },
  33673. ]
  33674. ))
  33675. characterMakers.push(() => makeCharacter(
  33676. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33677. {
  33678. front: {
  33679. height: math.unit(5 + 10/12, "feet"),
  33680. name: "Front",
  33681. image: {
  33682. source: "./media/characters/argon/front.svg",
  33683. extra: 2009/1935,
  33684. bottom: 118/2127
  33685. }
  33686. },
  33687. back: {
  33688. height: math.unit(5 + 10/12, "feet"),
  33689. name: "Back",
  33690. image: {
  33691. source: "./media/characters/argon/back.svg",
  33692. extra: 2047/1992,
  33693. bottom: 20/2067
  33694. }
  33695. },
  33696. frontDressed: {
  33697. height: math.unit(5 + 10/12, "feet"),
  33698. name: "Front (Dressed)",
  33699. image: {
  33700. source: "./media/characters/argon/front-dressed.svg",
  33701. extra: 2009/1935,
  33702. bottom: 118/2127
  33703. }
  33704. },
  33705. },
  33706. [
  33707. {
  33708. name: "Normal",
  33709. height: math.unit(5 + 10/12, "feet"),
  33710. default: true
  33711. },
  33712. ]
  33713. ))
  33714. characterMakers.push(() => makeCharacter(
  33715. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33716. {
  33717. front: {
  33718. height: math.unit(8 + 6/12, "feet"),
  33719. weight: math.unit(1150, "lb"),
  33720. name: "Front",
  33721. image: {
  33722. source: "./media/characters/kichi/front.svg",
  33723. extra: 1267/1164,
  33724. bottom: 61/1328
  33725. }
  33726. },
  33727. back: {
  33728. height: math.unit(8 + 6/12, "feet"),
  33729. weight: math.unit(1150, "lb"),
  33730. name: "Back",
  33731. image: {
  33732. source: "./media/characters/kichi/back.svg",
  33733. extra: 1273/1166,
  33734. bottom: 33/1306
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(8 + 6/12, "feet"),
  33742. default: true
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(6, "feet"),
  33751. weight: math.unit(210, "lb"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/manetel-greyscale/front.svg",
  33755. extra: 350/312,
  33756. bottom: 8/358
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Micro",
  33763. height: math.unit(2, "inches")
  33764. },
  33765. {
  33766. name: "Normal",
  33767. height: math.unit(6, "feet"),
  33768. default: true
  33769. },
  33770. {
  33771. name: "Minimacro",
  33772. height: math.unit(17, "feet")
  33773. },
  33774. {
  33775. name: "Macro",
  33776. height: math.unit(117, "feet")
  33777. },
  33778. ]
  33779. ))
  33780. characterMakers.push(() => makeCharacter(
  33781. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33782. {
  33783. side: {
  33784. height: math.unit(5 + 1/12, "feet"),
  33785. weight: math.unit(418, "lb"),
  33786. name: "Side",
  33787. image: {
  33788. source: "./media/characters/softpurr/side.svg",
  33789. extra: 1993/1945,
  33790. bottom: 134/2127
  33791. }
  33792. },
  33793. front: {
  33794. height: math.unit(5 + 1/12, "feet"),
  33795. weight: math.unit(418, "lb"),
  33796. name: "Front",
  33797. image: {
  33798. source: "./media/characters/softpurr/front.svg",
  33799. extra: 1950/1856,
  33800. bottom: 174/2124
  33801. }
  33802. },
  33803. paw: {
  33804. height: math.unit(1, "feet"),
  33805. name: "Paw",
  33806. image: {
  33807. source: "./media/characters/softpurr/paw.svg"
  33808. }
  33809. },
  33810. },
  33811. [
  33812. {
  33813. name: "Normal",
  33814. height: math.unit(5 + 1/12, "feet"),
  33815. default: true
  33816. },
  33817. ]
  33818. ))
  33819. characterMakers.push(() => makeCharacter(
  33820. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33821. {
  33822. front: {
  33823. height: math.unit(260, "meters"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/anahita/front.svg",
  33827. extra: 665/635,
  33828. bottom: 89/754
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Macro",
  33835. height: math.unit(260, "meters"),
  33836. default: true
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33842. {
  33843. front: {
  33844. height: math.unit(4 + 10/12, "feet"),
  33845. weight: math.unit(160, "lb"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/chip-mouse/front.svg",
  33849. extra: 3528/3408,
  33850. bottom: 0/3528
  33851. }
  33852. },
  33853. frontNsfw: {
  33854. height: math.unit(4 + 10/12, "feet"),
  33855. weight: math.unit(160, "lb"),
  33856. name: "Front (NSFW)",
  33857. image: {
  33858. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33859. extra: 3528/3408,
  33860. bottom: 0/3528
  33861. }
  33862. },
  33863. },
  33864. [
  33865. {
  33866. name: "Normal",
  33867. height: math.unit(4 + 10/12, "feet"),
  33868. default: true
  33869. },
  33870. ]
  33871. ))
  33872. characterMakers.push(() => makeCharacter(
  33873. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33874. {
  33875. side: {
  33876. height: math.unit(10, "feet"),
  33877. weight: math.unit(14000, "lb"),
  33878. name: "Side",
  33879. image: {
  33880. source: "./media/characters/kremm/side.svg",
  33881. extra: 1390/1053,
  33882. bottom: 90/1480
  33883. }
  33884. },
  33885. gut: {
  33886. height: math.unit(5.8, "feet"),
  33887. name: "Gut",
  33888. image: {
  33889. source: "./media/characters/kremm/gut.svg"
  33890. }
  33891. },
  33892. ass: {
  33893. height: math.unit(6.1, "feet"),
  33894. name: "Ass",
  33895. image: {
  33896. source: "./media/characters/kremm/ass.svg"
  33897. }
  33898. },
  33899. jaws: {
  33900. height: math.unit(2.2, "feet"),
  33901. name: "Jaws",
  33902. image: {
  33903. source: "./media/characters/kremm/jaws.svg"
  33904. }
  33905. },
  33906. dick: {
  33907. height: math.unit(4.26, "feet"),
  33908. name: "Dick",
  33909. image: {
  33910. source: "./media/characters/kremm/dick.svg"
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(10, "feet"),
  33918. default: true
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33924. {
  33925. front: {
  33926. height: math.unit(30, "stories"),
  33927. name: "Front",
  33928. image: {
  33929. source: "./media/characters/kai/front.svg",
  33930. extra: 1892/1718,
  33931. bottom: 162/2054
  33932. }
  33933. },
  33934. },
  33935. [
  33936. {
  33937. name: "Macro",
  33938. height: math.unit(30, "stories"),
  33939. default: true
  33940. },
  33941. ]
  33942. ))
  33943. characterMakers.push(() => makeCharacter(
  33944. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33945. {
  33946. front: {
  33947. height: math.unit(6 + 4/12, "feet"),
  33948. weight: math.unit(145, "lb"),
  33949. name: "Front",
  33950. image: {
  33951. source: "./media/characters/sykes/front.svg",
  33952. extra: 1321 / 1187,
  33953. bottom: 66 / 1387
  33954. }
  33955. },
  33956. back: {
  33957. height: math.unit(6 + 4/12, "feet"),
  33958. weight: math.unit(145, "lb"),
  33959. name: "Back",
  33960. image: {
  33961. source: "./media/characters/sykes/back.svg",
  33962. extra: 1326/1181,
  33963. bottom: 31/1357
  33964. }
  33965. },
  33966. handBack: {
  33967. height: math.unit(0.9, "feet"),
  33968. name: "Hand (Back)",
  33969. image: {
  33970. source: "./media/characters/sykes/hand-back.svg"
  33971. }
  33972. },
  33973. handFront: {
  33974. height: math.unit(0.839, "feet"),
  33975. name: "Hand (Front)",
  33976. image: {
  33977. source: "./media/characters/sykes/hand-front.svg"
  33978. }
  33979. },
  33980. leftFoot: {
  33981. height: math.unit(1.2, "feet"),
  33982. name: "Foot (Left)",
  33983. image: {
  33984. source: "./media/characters/sykes/foot-left.svg"
  33985. }
  33986. },
  33987. rightFoot: {
  33988. height: math.unit(1.2, "feet"),
  33989. name: "Foot (Right)",
  33990. image: {
  33991. source: "./media/characters/sykes/foot-right.svg"
  33992. }
  33993. },
  33994. maw: {
  33995. height: math.unit(1.93, "feet"),
  33996. name: "Maw",
  33997. image: {
  33998. source: "./media/characters/sykes/maw.svg"
  33999. }
  34000. },
  34001. teeth: {
  34002. height: math.unit(0.51, "feet"),
  34003. name: "Teeth",
  34004. image: {
  34005. source: "./media/characters/sykes/teeth.svg"
  34006. }
  34007. },
  34008. tongue: {
  34009. height: math.unit(2.13, "feet"),
  34010. name: "Tongue",
  34011. image: {
  34012. source: "./media/characters/sykes/tongue.svg"
  34013. }
  34014. },
  34015. uvula: {
  34016. height: math.unit(0.16, "feet"),
  34017. name: "Uvula",
  34018. image: {
  34019. source: "./media/characters/sykes/uvula.svg"
  34020. }
  34021. },
  34022. collar: {
  34023. height: math.unit(0.287, "feet"),
  34024. name: "Collar",
  34025. image: {
  34026. source: "./media/characters/sykes/collar.svg"
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Shrunken",
  34033. height: math.unit(5, "inches")
  34034. },
  34035. {
  34036. name: "Normal",
  34037. height: math.unit(6 + 4 / 12, "feet"),
  34038. default: true
  34039. },
  34040. {
  34041. name: "Big",
  34042. height: math.unit(15, "feet")
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34048. {
  34049. front: {
  34050. height: math.unit(5 + 8/12, "feet"),
  34051. weight: math.unit(190, "lb"),
  34052. name: "Front",
  34053. image: {
  34054. source: "./media/characters/oven-otter/front.svg",
  34055. extra: 1809/1740,
  34056. bottom: 181/1990
  34057. }
  34058. },
  34059. back: {
  34060. height: math.unit(5 + 8/12, "feet"),
  34061. weight: math.unit(190, "lb"),
  34062. name: "Back",
  34063. image: {
  34064. source: "./media/characters/oven-otter/back.svg",
  34065. extra: 1709/1635,
  34066. bottom: 118/1827
  34067. }
  34068. },
  34069. hand: {
  34070. height: math.unit(1.07, "feet"),
  34071. name: "Hand",
  34072. image: {
  34073. source: "./media/characters/oven-otter/hand.svg"
  34074. }
  34075. },
  34076. beans: {
  34077. height: math.unit(1.74, "feet"),
  34078. name: "Beans",
  34079. image: {
  34080. source: "./media/characters/oven-otter/beans.svg"
  34081. }
  34082. },
  34083. },
  34084. [
  34085. {
  34086. name: "Micro",
  34087. height: math.unit(0.5, "inches")
  34088. },
  34089. {
  34090. name: "Normal",
  34091. height: math.unit(5 + 8/12, "feet"),
  34092. default: true
  34093. },
  34094. {
  34095. name: "Macro",
  34096. height: math.unit(250, "feet")
  34097. },
  34098. {
  34099. name: "Really High",
  34100. height: math.unit(420, "feet")
  34101. },
  34102. ]
  34103. ))
  34104. characterMakers.push(() => makeCharacter(
  34105. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34106. {
  34107. front: {
  34108. height: math.unit(5, "meters"),
  34109. weight: math.unit(292000000000000, "kg"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/devourer/front.svg",
  34113. extra: 1800/1733,
  34114. bottom: 211/2011
  34115. }
  34116. },
  34117. maw: {
  34118. height: math.unit(1.1, "meter"),
  34119. name: "Maw",
  34120. image: {
  34121. source: "./media/characters/devourer/maw.svg"
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Small",
  34128. height: math.unit(3, "meters")
  34129. },
  34130. {
  34131. name: "Large",
  34132. height: math.unit(5, "meters"),
  34133. default: true
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34139. {
  34140. front: {
  34141. height: math.unit(6, "feet"),
  34142. weight: math.unit(400, "lb"),
  34143. name: "Front",
  34144. image: {
  34145. source: "./media/characters/ellarby/front.svg",
  34146. extra: 1909/1763,
  34147. bottom: 80/1989
  34148. }
  34149. },
  34150. back: {
  34151. height: math.unit(6, "feet"),
  34152. weight: math.unit(400, "lb"),
  34153. name: "Back",
  34154. image: {
  34155. source: "./media/characters/ellarby/back.svg",
  34156. extra: 1914/1784,
  34157. bottom: 172/2086
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Mischief",
  34164. height: math.unit(18, "inches")
  34165. },
  34166. {
  34167. name: "Trouble",
  34168. height: math.unit(12, "feet")
  34169. },
  34170. {
  34171. name: "Havoc",
  34172. height: math.unit(200, "feet"),
  34173. default: true
  34174. },
  34175. {
  34176. name: "Pandemonium",
  34177. height: math.unit(1, "mile")
  34178. },
  34179. {
  34180. name: "Catastrophe",
  34181. height: math.unit(100, "miles")
  34182. },
  34183. ]
  34184. ))
  34185. characterMakers.push(() => makeCharacter(
  34186. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34187. {
  34188. front: {
  34189. height: math.unit(4.7, "meters"),
  34190. weight: math.unit(6500, "kg"),
  34191. name: "Front",
  34192. image: {
  34193. source: "./media/characters/vex/front.svg",
  34194. extra: 1288/1140,
  34195. bottom: 100/1388
  34196. }
  34197. },
  34198. },
  34199. [
  34200. {
  34201. name: "Normal",
  34202. height: math.unit(4.7, "meters"),
  34203. default: true
  34204. },
  34205. ]
  34206. ))
  34207. characterMakers.push(() => makeCharacter(
  34208. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34209. {
  34210. normal: {
  34211. height: math.unit(6, "feet"),
  34212. weight: math.unit(350, "lb"),
  34213. name: "Normal",
  34214. image: {
  34215. source: "./media/characters/teshy/normal.svg",
  34216. extra: 1795/1735,
  34217. bottom: 16/1811
  34218. }
  34219. },
  34220. monsterFront: {
  34221. height: math.unit(12, "feet"),
  34222. weight: math.unit(4700, "lb"),
  34223. name: "Monster (Front)",
  34224. image: {
  34225. source: "./media/characters/teshy/monster-front.svg",
  34226. extra: 2042/2034,
  34227. bottom: 128/2170
  34228. }
  34229. },
  34230. monsterSide: {
  34231. height: math.unit(12, "feet"),
  34232. weight: math.unit(4700, "lb"),
  34233. name: "Monster (Side)",
  34234. image: {
  34235. source: "./media/characters/teshy/monster-side.svg",
  34236. extra: 2067/2056,
  34237. bottom: 70/2137
  34238. }
  34239. },
  34240. monsterBack: {
  34241. height: math.unit(12, "feet"),
  34242. weight: math.unit(4700, "lb"),
  34243. name: "Monster (Back)",
  34244. image: {
  34245. source: "./media/characters/teshy/monster-back.svg",
  34246. extra: 1921/1914,
  34247. bottom: 171/2092
  34248. }
  34249. },
  34250. },
  34251. [
  34252. {
  34253. name: "Normal",
  34254. height: math.unit(6, "feet"),
  34255. default: true
  34256. },
  34257. ]
  34258. ))
  34259. characterMakers.push(() => makeCharacter(
  34260. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34261. {
  34262. front: {
  34263. height: math.unit(6, "feet"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/ramey/front.svg",
  34267. extra: 790/787,
  34268. bottom: 27/817
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(6, "feet"),
  34276. default: true
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(5 + 5/12, "feet"),
  34285. weight: math.unit(120, "lb"),
  34286. name: "Front",
  34287. image: {
  34288. source: "./media/characters/phirae/front.svg",
  34289. extra: 2491/2436,
  34290. bottom: 38/2529
  34291. }
  34292. },
  34293. },
  34294. [
  34295. {
  34296. name: "Normal",
  34297. height: math.unit(5 + 5/12, "feet"),
  34298. default: true
  34299. },
  34300. ]
  34301. ))
  34302. characterMakers.push(() => makeCharacter(
  34303. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34304. {
  34305. front: {
  34306. height: math.unit(5 + 3/12, "feet"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/stagglas/front.svg",
  34310. extra: 962/882,
  34311. bottom: 53/1015
  34312. }
  34313. },
  34314. feral: {
  34315. height: math.unit(335, "cm"),
  34316. name: "Feral",
  34317. image: {
  34318. source: "./media/characters/stagglas/feral.svg",
  34319. extra: 1732/1090,
  34320. bottom: 48/1780
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(5 + 3/12, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(5 + 4/12, "feet"),
  34337. weight: math.unit(145, "lb"),
  34338. name: "Front",
  34339. image: {
  34340. source: "./media/characters/starra/front.svg",
  34341. extra: 1790/1691,
  34342. bottom: 91/1881
  34343. }
  34344. },
  34345. },
  34346. [
  34347. {
  34348. name: "Normal",
  34349. height: math.unit(5 + 4/12, "feet"),
  34350. default: true
  34351. },
  34352. ]
  34353. ))
  34354. characterMakers.push(() => makeCharacter(
  34355. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34356. {
  34357. front: {
  34358. height: math.unit(2.2, "meters"),
  34359. name: "Front",
  34360. image: {
  34361. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34362. extra: 1194/1005,
  34363. bottom: 25/1219
  34364. }
  34365. },
  34366. },
  34367. [
  34368. {
  34369. name: "Normal",
  34370. height: math.unit(2.2, "meters"),
  34371. default: true
  34372. },
  34373. ]
  34374. ))
  34375. characterMakers.push(() => makeCharacter(
  34376. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34377. {
  34378. side: {
  34379. height: math.unit(8 + 2/12, "feet"),
  34380. weight: math.unit(1240, "lb"),
  34381. name: "Side",
  34382. image: {
  34383. source: "./media/characters/mika-valentine/side.svg",
  34384. extra: 2670/2501,
  34385. bottom: 250/2920
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Normal",
  34392. height: math.unit(8 + 2/12, "feet"),
  34393. default: true
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34399. {
  34400. front: {
  34401. height: math.unit(7 + 2/12, "feet"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/xoltol/front.svg",
  34405. extra: 2212/2124,
  34406. bottom: 84/2296
  34407. }
  34408. },
  34409. side: {
  34410. height: math.unit(7 + 2/12, "feet"),
  34411. name: "Side",
  34412. image: {
  34413. source: "./media/characters/xoltol/side.svg",
  34414. extra: 2273/2197,
  34415. bottom: 26/2299
  34416. }
  34417. },
  34418. hand: {
  34419. height: math.unit(2.5, "feet"),
  34420. name: "Hand",
  34421. image: {
  34422. source: "./media/characters/xoltol/hand.svg"
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Small-ish",
  34429. height: math.unit(5 + 11/12, "feet")
  34430. },
  34431. {
  34432. name: "Normal",
  34433. height: math.unit(7 + 2/12, "feet")
  34434. },
  34435. {
  34436. name: "\"Macro\"",
  34437. height: math.unit(14 + 9/12, "feet"),
  34438. default: true
  34439. },
  34440. {
  34441. name: "Alternate Height",
  34442. height: math.unit(20, "feet")
  34443. },
  34444. {
  34445. name: "Actually Macro",
  34446. height: math.unit(100, "feet")
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(5 + 2/12, "feet"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/kotetsu-redwood/front.svg",
  34458. extra: 1053/942,
  34459. bottom: 60/1113
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(5 + 2/12, "feet"),
  34467. default: true
  34468. },
  34469. ]
  34470. ))
  34471. characterMakers.push(() => makeCharacter(
  34472. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34473. {
  34474. front: {
  34475. height: math.unit(2.4, "meters"),
  34476. weight: math.unit(125, "kg"),
  34477. name: "Front",
  34478. image: {
  34479. source: "./media/characters/lilith/front.svg",
  34480. extra: 1590/1513,
  34481. bottom: 203/1793
  34482. }
  34483. },
  34484. },
  34485. [
  34486. {
  34487. name: "Humanoid",
  34488. height: math.unit(2.4, "meters")
  34489. },
  34490. {
  34491. name: "Normal",
  34492. height: math.unit(6, "meters"),
  34493. default: true
  34494. },
  34495. {
  34496. name: "Largest",
  34497. height: math.unit(55, "meters")
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(8 + 4/12, "feet"),
  34506. weight: math.unit(535, "lb"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/beh'kah-bolger/front.svg",
  34510. extra: 1660/1603,
  34511. bottom: 37/1697
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(8 + 4/12, "feet"),
  34519. default: true
  34520. },
  34521. {
  34522. name: "Kaiju",
  34523. height: math.unit(250, "feet")
  34524. },
  34525. {
  34526. name: "Still Growing",
  34527. height: math.unit(10, "miles")
  34528. },
  34529. {
  34530. name: "Continental",
  34531. height: math.unit(5000, "miles")
  34532. },
  34533. {
  34534. name: "Final Form",
  34535. height: math.unit(2500000, "miles")
  34536. },
  34537. ]
  34538. ))
  34539. characterMakers.push(() => makeCharacter(
  34540. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34541. {
  34542. front: {
  34543. height: math.unit(7 + 2/12, "feet"),
  34544. weight: math.unit(230, "kg"),
  34545. name: "Front",
  34546. image: {
  34547. source: "./media/characters/tatyana-milewska/front.svg",
  34548. extra: 1199/1150,
  34549. bottom: 86/1285
  34550. }
  34551. },
  34552. },
  34553. [
  34554. {
  34555. name: "Normal",
  34556. height: math.unit(7 + 2/12, "feet"),
  34557. default: true
  34558. },
  34559. {
  34560. name: "Big",
  34561. height: math.unit(12, "feet")
  34562. },
  34563. {
  34564. name: "Minimacro",
  34565. height: math.unit(20, "feet")
  34566. },
  34567. {
  34568. name: "Macro",
  34569. height: math.unit(120, "feet")
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34575. {
  34576. front: {
  34577. height: math.unit(7 + 8/12, "feet"),
  34578. weight: math.unit(152, "kg"),
  34579. name: "Front",
  34580. image: {
  34581. source: "./media/characters/helen-arri/front.svg",
  34582. extra: 440/423,
  34583. bottom: 14/454
  34584. }
  34585. },
  34586. back: {
  34587. height: math.unit(7 + 8/12, "feet"),
  34588. weight: math.unit(152, "kg"),
  34589. name: "Back",
  34590. image: {
  34591. source: "./media/characters/helen-arri/back.svg",
  34592. extra: 443/426,
  34593. bottom: 8/451
  34594. }
  34595. },
  34596. },
  34597. [
  34598. {
  34599. name: "Normal",
  34600. height: math.unit(7 + 8/12, "feet"),
  34601. default: true
  34602. },
  34603. {
  34604. name: "Big",
  34605. height: math.unit(14, "feet")
  34606. },
  34607. {
  34608. name: "Minimacro",
  34609. height: math.unit(24, "feet")
  34610. },
  34611. {
  34612. name: "Macro",
  34613. height: math.unit(140, "feet")
  34614. },
  34615. ]
  34616. ))
  34617. characterMakers.push(() => makeCharacter(
  34618. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34619. {
  34620. front: {
  34621. height: math.unit(6, "meters"),
  34622. name: "Front",
  34623. image: {
  34624. source: "./media/characters/ehanu-rehu/front.svg",
  34625. extra: 1800/1800,
  34626. bottom: 59/1859
  34627. }
  34628. },
  34629. },
  34630. [
  34631. {
  34632. name: "Normal",
  34633. height: math.unit(6, "meters"),
  34634. default: true
  34635. },
  34636. ]
  34637. ))
  34638. characterMakers.push(() => makeCharacter(
  34639. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34640. {
  34641. front: {
  34642. height: math.unit(7 + 3/12, "feet"),
  34643. name: "Front",
  34644. image: {
  34645. source: "./media/characters/renholder/front.svg",
  34646. extra: 3096/2960,
  34647. bottom: 250/3346
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Normal Bat",
  34654. height: math.unit(7 + 3/12, "feet"),
  34655. default: true
  34656. },
  34657. {
  34658. name: "Slightly Tall Bat",
  34659. height: math.unit(100, "feet")
  34660. },
  34661. {
  34662. name: "Big Bat",
  34663. height: math.unit(1000, "feet")
  34664. },
  34665. {
  34666. name: "City-Sized Bat",
  34667. height: math.unit(200000, "feet")
  34668. },
  34669. {
  34670. name: "Bigger Bat",
  34671. height: math.unit(10000, "miles")
  34672. },
  34673. {
  34674. name: "Solar Sized Bat",
  34675. height: math.unit(100, "AU")
  34676. },
  34677. {
  34678. name: "Galactic Bat",
  34679. height: math.unit(200000, "lightyears")
  34680. },
  34681. {
  34682. name: "Universally Known Bat",
  34683. height: math.unit(1, "universe")
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(6 + 11/12, "feet"),
  34692. weight: math.unit(250, "lb"),
  34693. name: "Front",
  34694. image: {
  34695. source: "./media/characters/cookiecat/front.svg",
  34696. extra: 893/827,
  34697. bottom: 14/907
  34698. }
  34699. },
  34700. },
  34701. [
  34702. {
  34703. name: "Micro",
  34704. height: math.unit(3, "inches")
  34705. },
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(6 + 11/12, "feet"),
  34709. default: true
  34710. },
  34711. {
  34712. name: "Macro",
  34713. height: math.unit(100, "feet")
  34714. },
  34715. {
  34716. name: "Macro+",
  34717. height: math.unit(404, "feet")
  34718. },
  34719. {
  34720. name: "Megamacro",
  34721. height: math.unit(165, "miles")
  34722. },
  34723. {
  34724. name: "Planetary",
  34725. height: math.unit(4600, "miles")
  34726. },
  34727. ]
  34728. ))
  34729. characterMakers.push(() => makeCharacter(
  34730. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34731. {
  34732. front: {
  34733. height: math.unit(10 + 3/12, "feet"),
  34734. weight: math.unit(1500, "lb"),
  34735. name: "Front",
  34736. image: {
  34737. source: "./media/characters/tux-kusanagi/front.svg",
  34738. extra: 944/840,
  34739. bottom: 39/983
  34740. }
  34741. },
  34742. back: {
  34743. height: math.unit(10 + 3/12, "feet"),
  34744. weight: math.unit(1500, "lb"),
  34745. name: "Back",
  34746. image: {
  34747. source: "./media/characters/tux-kusanagi/back.svg",
  34748. extra: 941/842,
  34749. bottom: 28/969
  34750. }
  34751. },
  34752. rump: {
  34753. height: math.unit(5.25, "feet"),
  34754. name: "Rump",
  34755. image: {
  34756. source: "./media/characters/tux-kusanagi/rump.svg"
  34757. }
  34758. },
  34759. beak: {
  34760. height: math.unit(1.54, "feet"),
  34761. name: "Beak",
  34762. image: {
  34763. source: "./media/characters/tux-kusanagi/beak.svg"
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Normal",
  34770. height: math.unit(10 + 3/12, "feet"),
  34771. default: true
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34777. {
  34778. front: {
  34779. height: math.unit(58, "feet"),
  34780. weight: math.unit(200, "tons"),
  34781. name: "Front",
  34782. image: {
  34783. source: "./media/characters/uzarmazari/front.svg",
  34784. extra: 1575/1455,
  34785. bottom: 152/1727
  34786. }
  34787. },
  34788. back: {
  34789. height: math.unit(58, "feet"),
  34790. weight: math.unit(200, "tons"),
  34791. name: "Back",
  34792. image: {
  34793. source: "./media/characters/uzarmazari/back.svg",
  34794. extra: 1585/1510,
  34795. bottom: 157/1742
  34796. }
  34797. },
  34798. head: {
  34799. height: math.unit(26, "feet"),
  34800. name: "Head",
  34801. image: {
  34802. source: "./media/characters/uzarmazari/head.svg"
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Normal",
  34809. height: math.unit(58, "feet"),
  34810. default: true
  34811. },
  34812. ]
  34813. ))
  34814. characterMakers.push(() => makeCharacter(
  34815. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34816. {
  34817. side: {
  34818. height: math.unit(15, "feet"),
  34819. name: "Side",
  34820. image: {
  34821. source: "./media/characters/akitu/side.svg",
  34822. extra: 1421/1321,
  34823. bottom: 157/1578
  34824. }
  34825. },
  34826. front: {
  34827. height: math.unit(15, "feet"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/akitu/front.svg",
  34831. extra: 1435/1326,
  34832. bottom: 232/1667
  34833. }
  34834. },
  34835. },
  34836. [
  34837. {
  34838. name: "Normal",
  34839. height: math.unit(15, "feet"),
  34840. default: true
  34841. },
  34842. ]
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34846. {
  34847. front: {
  34848. height: math.unit(10 + 8/12, "feet"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/azalie-croixland/front.svg",
  34852. extra: 1972/1856,
  34853. bottom: 31/2003
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Original Height",
  34860. height: math.unit(5 + 4/12, "feet")
  34861. },
  34862. {
  34863. name: "Normal Height",
  34864. height: math.unit(10 + 8/12, "feet"),
  34865. default: true
  34866. },
  34867. ]
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34871. {
  34872. side: {
  34873. height: math.unit(7 + 1/12, "feet"),
  34874. weight: math.unit(245, "lb"),
  34875. name: "Side",
  34876. image: {
  34877. source: "./media/characters/kavus-kazian/side.svg",
  34878. extra: 349/342,
  34879. bottom: 15/364
  34880. }
  34881. },
  34882. },
  34883. [
  34884. {
  34885. name: "Normal",
  34886. height: math.unit(7 + 1/12, "feet"),
  34887. default: true
  34888. },
  34889. ]
  34890. ))
  34891. characterMakers.push(() => makeCharacter(
  34892. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34893. {
  34894. normal: {
  34895. height: math.unit(5 + 11/12, "feet"),
  34896. name: "Normal",
  34897. image: {
  34898. source: "./media/characters/moonlight-rose/normal.svg",
  34899. extra: 1979/1835,
  34900. bottom: 14/1993
  34901. }
  34902. },
  34903. demon: {
  34904. height: math.unit(5, "km"),
  34905. name: "Demon",
  34906. image: {
  34907. source: "./media/characters/moonlight-rose/demon.svg",
  34908. extra: 986/916,
  34909. bottom: 28/1014
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "\"Natural\" height",
  34916. height: math.unit(5 + 11/12, "feet")
  34917. },
  34918. {
  34919. name: "Comfortable Size",
  34920. height: math.unit(40, "meters")
  34921. },
  34922. {
  34923. name: "Common Size",
  34924. height: math.unit(50, "km"),
  34925. default: true
  34926. },
  34927. {
  34928. name: "Demonic",
  34929. height: math.unit(1.24415e+21, "meters")
  34930. },
  34931. ]
  34932. ))
  34933. characterMakers.push(() => makeCharacter(
  34934. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34935. {
  34936. front: {
  34937. height: math.unit(16, "feet"),
  34938. weight: math.unit(610, "kg"),
  34939. name: "Front",
  34940. image: {
  34941. source: "./media/characters/huckle/front.svg",
  34942. extra: 1731/1625,
  34943. bottom: 33/1764
  34944. }
  34945. },
  34946. back: {
  34947. height: math.unit(16, "feet"),
  34948. weight: math.unit(610, "kg"),
  34949. name: "Back",
  34950. image: {
  34951. source: "./media/characters/huckle/back.svg",
  34952. extra: 1738/1651,
  34953. bottom: 37/1775
  34954. }
  34955. },
  34956. laughing: {
  34957. height: math.unit(3.75, "feet"),
  34958. name: "Laughing",
  34959. image: {
  34960. source: "./media/characters/huckle/laughing.svg"
  34961. }
  34962. },
  34963. angry: {
  34964. height: math.unit(4.15, "feet"),
  34965. name: "Angry",
  34966. image: {
  34967. source: "./media/characters/huckle/angry.svg"
  34968. }
  34969. },
  34970. },
  34971. [
  34972. {
  34973. name: "Normal",
  34974. height: math.unit(16, "feet"),
  34975. default: true
  34976. },
  34977. {
  34978. name: "Mini Macro",
  34979. height: math.unit(463, "feet")
  34980. },
  34981. {
  34982. name: "Macro",
  34983. height: math.unit(1680, "meters")
  34984. },
  34985. {
  34986. name: "Mega Macro",
  34987. height: math.unit(175, "km")
  34988. },
  34989. {
  34990. name: "Terra Macro",
  34991. height: math.unit(32, "gigameters")
  34992. },
  34993. {
  34994. name: "Multiverse+",
  34995. height: math.unit(2.56e23, "yottameters")
  34996. },
  34997. ]
  34998. ))
  34999. characterMakers.push(() => makeCharacter(
  35000. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35001. {
  35002. front: {
  35003. height: math.unit(6 + 9/12, "feet"),
  35004. weight: math.unit(280, "lb"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/candy/front.svg",
  35008. extra: 234/217,
  35009. bottom: 11/245
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Really Small",
  35016. height: math.unit(0.1, "nm")
  35017. },
  35018. {
  35019. name: "Micro",
  35020. height: math.unit(2, "inches")
  35021. },
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(6 + 9/12, "feet"),
  35025. default: true
  35026. },
  35027. {
  35028. name: "Small Macro",
  35029. height: math.unit(69, "feet")
  35030. },
  35031. {
  35032. name: "Macro",
  35033. height: math.unit(160, "feet")
  35034. },
  35035. {
  35036. name: "Megamacro",
  35037. height: math.unit(22000, "miles")
  35038. },
  35039. {
  35040. name: "Gigamacro",
  35041. height: math.unit(50000, "miles")
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(4, "feet"),
  35050. weight: math.unit(90, "lb"),
  35051. name: "Front",
  35052. image: {
  35053. source: "./media/characters/joey-mcdonald/front.svg",
  35054. extra: 1059/852,
  35055. bottom: 33/1092
  35056. }
  35057. },
  35058. back: {
  35059. height: math.unit(4, "feet"),
  35060. weight: math.unit(90, "lb"),
  35061. name: "Back",
  35062. image: {
  35063. source: "./media/characters/joey-mcdonald/back.svg",
  35064. extra: 1077/879,
  35065. bottom: 5/1082
  35066. }
  35067. },
  35068. frontKobold: {
  35069. height: math.unit(4, "feet"),
  35070. weight: math.unit(100, "lb"),
  35071. name: "Front-kobold",
  35072. image: {
  35073. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35074. extra: 1480/1367,
  35075. bottom: 0/1480
  35076. }
  35077. },
  35078. backKobold: {
  35079. height: math.unit(4, "feet"),
  35080. weight: math.unit(100, "lb"),
  35081. name: "Back-kobold",
  35082. image: {
  35083. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35084. extra: 1449/1361,
  35085. bottom: 0/1449
  35086. }
  35087. },
  35088. },
  35089. [
  35090. {
  35091. name: "Normal",
  35092. height: math.unit(4, "feet"),
  35093. default: true
  35094. },
  35095. ]
  35096. ))
  35097. characterMakers.push(() => makeCharacter(
  35098. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35099. {
  35100. front: {
  35101. height: math.unit(12 + 6/12, "feet"),
  35102. name: "Front",
  35103. image: {
  35104. source: "./media/characters/kass-lockheed/front.svg",
  35105. extra: 354/343,
  35106. bottom: 9/363
  35107. }
  35108. },
  35109. back: {
  35110. height: math.unit(12 + 6/12, "feet"),
  35111. name: "Back",
  35112. image: {
  35113. source: "./media/characters/kass-lockheed/back.svg",
  35114. extra: 364/352,
  35115. bottom: 3/367
  35116. }
  35117. },
  35118. dick: {
  35119. height: math.unit(3.12, "feet"),
  35120. name: "Dick",
  35121. image: {
  35122. source: "./media/characters/kass-lockheed/dick.svg"
  35123. }
  35124. },
  35125. head: {
  35126. height: math.unit(2.6, "feet"),
  35127. name: "Head",
  35128. image: {
  35129. source: "./media/characters/kass-lockheed/head.svg"
  35130. }
  35131. },
  35132. bleh: {
  35133. height: math.unit(2.85, "feet"),
  35134. name: "Bleh",
  35135. image: {
  35136. source: "./media/characters/kass-lockheed/bleh.svg"
  35137. }
  35138. },
  35139. smug: {
  35140. height: math.unit(2.85, "feet"),
  35141. name: "Smug",
  35142. image: {
  35143. source: "./media/characters/kass-lockheed/smug.svg"
  35144. }
  35145. },
  35146. },
  35147. [
  35148. {
  35149. name: "Normal",
  35150. height: math.unit(12 + 6/12, "feet"),
  35151. default: true
  35152. },
  35153. ]
  35154. ))
  35155. characterMakers.push(() => makeCharacter(
  35156. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35157. {
  35158. front: {
  35159. height: math.unit(6 + 2/12, "feet"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/taylor/front.svg",
  35163. extra: 639/495,
  35164. bottom: 12/651
  35165. }
  35166. },
  35167. },
  35168. [
  35169. {
  35170. name: "Normal",
  35171. height: math.unit(6 + 2/12, "feet"),
  35172. default: true
  35173. },
  35174. {
  35175. name: "Big",
  35176. height: math.unit(15, "feet")
  35177. },
  35178. {
  35179. name: "Lorg",
  35180. height: math.unit(80, "feet")
  35181. },
  35182. {
  35183. name: "Too Lorg",
  35184. height: math.unit(120, "feet")
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(15, "feet"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/kaizer/front.svg",
  35196. extra: 1612/1436,
  35197. bottom: 43/1655
  35198. }
  35199. },
  35200. },
  35201. [
  35202. {
  35203. name: "Normal",
  35204. height: math.unit(15, "feet"),
  35205. default: true
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35211. {
  35212. front: {
  35213. height: math.unit(2, "feet"),
  35214. weight: math.unit(30, "lb"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/sandy/front.svg",
  35218. extra: 1439/1307,
  35219. bottom: 194/1633
  35220. }
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "Normal",
  35226. height: math.unit(2, "feet"),
  35227. default: true
  35228. },
  35229. ]
  35230. ))
  35231. characterMakers.push(() => makeCharacter(
  35232. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35233. {
  35234. front: {
  35235. height: math.unit(3, "feet"),
  35236. name: "Front",
  35237. image: {
  35238. source: "./media/characters/mellvi/front.svg",
  35239. extra: 1831/1630,
  35240. bottom: 58/1889
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(3, "feet"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35254. {
  35255. front: {
  35256. height: math.unit(5 + 11/12, "feet"),
  35257. weight: math.unit(200, "lb"),
  35258. name: "Front",
  35259. image: {
  35260. source: "./media/characters/shirou/front.svg",
  35261. extra: 2491/2383,
  35262. bottom: 189/2680
  35263. }
  35264. },
  35265. back: {
  35266. height: math.unit(5 + 11/12, "feet"),
  35267. weight: math.unit(200, "lb"),
  35268. name: "Back",
  35269. image: {
  35270. source: "./media/characters/shirou/back.svg",
  35271. extra: 2554/2450,
  35272. bottom: 76/2630
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(5 + 11/12, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35286. {
  35287. front: {
  35288. height: math.unit(6 + 3/12, "feet"),
  35289. weight: math.unit(177, "lb"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/noryu/front.svg",
  35293. extra: 973/885,
  35294. bottom: 10/983
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(6 + 3/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35308. {
  35309. front: {
  35310. height: math.unit(5 + 6/12, "feet"),
  35311. weight: math.unit(170, "lb"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/mevolas-rubenido/front.svg",
  35315. extra: 2109/1901,
  35316. bottom: 96/2205
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(5 + 6/12, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(100, "feet"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/dee/front.svg",
  35336. extra: 2153/2036,
  35337. bottom: 59/2212
  35338. }
  35339. },
  35340. back: {
  35341. height: math.unit(100, "feet"),
  35342. name: "Back",
  35343. image: {
  35344. source: "./media/characters/dee/back.svg",
  35345. extra: 2183/2058,
  35346. bottom: 75/2258
  35347. }
  35348. },
  35349. foot: {
  35350. height: math.unit(19.43, "feet"),
  35351. name: "Foot",
  35352. image: {
  35353. source: "./media/characters/dee/foot.svg"
  35354. }
  35355. },
  35356. hoof: {
  35357. height: math.unit(20.6, "feet"),
  35358. name: "Hoof",
  35359. image: {
  35360. source: "./media/characters/dee/hoof.svg"
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Macro",
  35367. height: math.unit(100, "feet"),
  35368. default: true
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(5 + 6/12, "feet"),
  35377. name: "Front",
  35378. image: {
  35379. source: "./media/characters/teh/front.svg",
  35380. extra: 1002/847,
  35381. bottom: 62/1064
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Normal",
  35388. height: math.unit(5 + 6/12, "feet"),
  35389. default: true
  35390. },
  35391. ]
  35392. ))
  35393. characterMakers.push(() => makeCharacter(
  35394. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35395. {
  35396. side: {
  35397. height: math.unit(6 + 1/12, "feet"),
  35398. weight: math.unit(204, "lb"),
  35399. name: "Side",
  35400. image: {
  35401. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35402. extra: 974/775,
  35403. bottom: 169/1143
  35404. }
  35405. },
  35406. sitting: {
  35407. height: math.unit(6 + 2/12, "feet"),
  35408. weight: math.unit(204, "lb"),
  35409. name: "Sitting",
  35410. image: {
  35411. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35412. extra: 1175/964,
  35413. bottom: 378/1553
  35414. }
  35415. },
  35416. },
  35417. [
  35418. {
  35419. name: "Normal",
  35420. height: math.unit(6 + 1/12, "feet"),
  35421. default: true
  35422. },
  35423. ]
  35424. ))
  35425. characterMakers.push(() => makeCharacter(
  35426. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35427. {
  35428. front: {
  35429. height: math.unit(6, "inches"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/tululi/front.svg",
  35433. extra: 1997/1876,
  35434. bottom: 20/2017
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(6, "inches"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35448. {
  35449. front: {
  35450. height: math.unit(4 + 1/12, "feet"),
  35451. name: "Front",
  35452. image: {
  35453. source: "./media/characters/star/front.svg",
  35454. extra: 1493/1189,
  35455. bottom: 48/1541
  35456. }
  35457. },
  35458. },
  35459. [
  35460. {
  35461. name: "Normal",
  35462. height: math.unit(4 + 1/12, "feet"),
  35463. default: true
  35464. },
  35465. ]
  35466. ))
  35467. characterMakers.push(() => makeCharacter(
  35468. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35469. {
  35470. front: {
  35471. height: math.unit(6 + 3/12, "feet"),
  35472. name: "Front",
  35473. image: {
  35474. source: "./media/characters/comet/front.svg",
  35475. extra: 1681/1462,
  35476. bottom: 26/1707
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(6 + 3/12, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(950, "feet"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/vortex/front.svg",
  35496. extra: 1497/1434,
  35497. bottom: 56/1553
  35498. }
  35499. },
  35500. maw: {
  35501. height: math.unit(285, "feet"),
  35502. name: "Maw",
  35503. image: {
  35504. source: "./media/characters/vortex/maw.svg"
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Macro",
  35511. height: math.unit(950, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(600, "feet"),
  35521. weight: math.unit(0.02, "grams"),
  35522. name: "Front",
  35523. image: {
  35524. source: "./media/characters/doodle/front.svg",
  35525. extra: 1578/1413,
  35526. bottom: 37/1615
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Macro",
  35533. height: math.unit(600, "feet"),
  35534. default: true
  35535. },
  35536. ]
  35537. ))
  35538. characterMakers.push(() => makeCharacter(
  35539. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35540. {
  35541. front: {
  35542. height: math.unit(6 + 6/12, "feet"),
  35543. name: "Front",
  35544. image: {
  35545. source: "./media/characters/jai/front.svg",
  35546. extra: 1645/1534,
  35547. bottom: 115/1760
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Normal",
  35554. height: math.unit(6 + 6/12, "feet"),
  35555. default: true
  35556. },
  35557. ]
  35558. ))
  35559. characterMakers.push(() => makeCharacter(
  35560. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35561. {
  35562. front: {
  35563. height: math.unit(6 + 8/12, "feet"),
  35564. name: "Front",
  35565. image: {
  35566. source: "./media/characters/pixel/front.svg",
  35567. extra: 1900/1735,
  35568. bottom: 63/1963
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(6 + 8/12, "feet"),
  35576. default: true
  35577. },
  35578. ]
  35579. ))
  35580. characterMakers.push(() => makeCharacter(
  35581. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35582. {
  35583. back: {
  35584. height: math.unit(4 + 1/12, "feet"),
  35585. weight: math.unit(75, "lb"),
  35586. name: "Back",
  35587. image: {
  35588. source: "./media/characters/rhett/back.svg",
  35589. extra: 930/878,
  35590. bottom: 25/955
  35591. }
  35592. },
  35593. front: {
  35594. height: math.unit(4 + 1/12, "feet"),
  35595. weight: math.unit(75, "lb"),
  35596. name: "Front",
  35597. image: {
  35598. source: "./media/characters/rhett/front.svg",
  35599. extra: 1682/1586,
  35600. bottom: 92/1774
  35601. }
  35602. },
  35603. },
  35604. [
  35605. {
  35606. name: "Micro",
  35607. height: math.unit(8, "inches")
  35608. },
  35609. {
  35610. name: "Tiny",
  35611. height: math.unit(2, "feet")
  35612. },
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(4 + 1/12, "feet"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(3 + 3/12, "feet"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/penny/front.svg",
  35628. extra: 1406/1311,
  35629. bottom: 26/1432
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(3 + 3/12, "feet"),
  35637. default: true
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35643. {
  35644. front: {
  35645. height: math.unit(4 + 11/12, "feet"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/monty/front.svg",
  35649. extra: 1479/1209,
  35650. bottom: 0/1479
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(4 + 11/12, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(8 + 4/12, "feet"),
  35667. name: "Front",
  35668. image: {
  35669. source: "./media/characters/sterling/front.svg",
  35670. extra: 1420/1236,
  35671. bottom: 27/1447
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Normal",
  35678. height: math.unit(8 + 4/12, "feet"),
  35679. default: true
  35680. },
  35681. ]
  35682. ))
  35683. characterMakers.push(() => makeCharacter(
  35684. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35685. {
  35686. front: {
  35687. height: math.unit(15, "feet"),
  35688. name: "Front",
  35689. image: {
  35690. source: "./media/characters/marble/front.svg",
  35691. extra: 973/937,
  35692. bottom: 32/1005
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(15, "feet"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35706. {
  35707. front: {
  35708. height: math.unit(3, "inches"),
  35709. name: "Front",
  35710. image: {
  35711. source: "./media/characters/powder/front.svg",
  35712. extra: 1504/1334,
  35713. bottom: 518/2022
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Normal",
  35720. height: math.unit(3, "inches"),
  35721. default: true
  35722. },
  35723. ]
  35724. ))
  35725. characterMakers.push(() => makeCharacter(
  35726. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35727. {
  35728. front: {
  35729. height: math.unit(4 + 5/12, "feet"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/joey-raccoon/front.svg",
  35733. extra: 1273/1197,
  35734. bottom: 0/1273
  35735. }
  35736. },
  35737. },
  35738. [
  35739. {
  35740. name: "Normal",
  35741. height: math.unit(4 + 5/12, "feet"),
  35742. default: true
  35743. },
  35744. ]
  35745. ))
  35746. characterMakers.push(() => makeCharacter(
  35747. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35748. {
  35749. front: {
  35750. height: math.unit(8 + 4/12, "feet"),
  35751. name: "Front",
  35752. image: {
  35753. source: "./media/characters/vick/front.svg",
  35754. extra: 2187/2118,
  35755. bottom: 47/2234
  35756. }
  35757. },
  35758. },
  35759. [
  35760. {
  35761. name: "Normal",
  35762. height: math.unit(8 + 4/12, "feet"),
  35763. default: true
  35764. },
  35765. ]
  35766. ))
  35767. characterMakers.push(() => makeCharacter(
  35768. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35769. {
  35770. front: {
  35771. height: math.unit(5 + 5/12, "feet"),
  35772. name: "Front",
  35773. image: {
  35774. source: "./media/characters/mitsy/front.svg",
  35775. extra: 1842/1695,
  35776. bottom: 0/1842
  35777. }
  35778. },
  35779. },
  35780. [
  35781. {
  35782. name: "Normal",
  35783. height: math.unit(5 + 5/12, "feet"),
  35784. default: true
  35785. },
  35786. ]
  35787. ))
  35788. characterMakers.push(() => makeCharacter(
  35789. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35790. {
  35791. front: {
  35792. height: math.unit(6 + 3/12, "feet"),
  35793. name: "Front",
  35794. image: {
  35795. source: "./media/characters/silvy/front.svg",
  35796. extra: 1995/1836,
  35797. bottom: 225/2220
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Normal",
  35804. height: math.unit(6 + 3/12, "feet"),
  35805. default: true
  35806. },
  35807. ]
  35808. ))
  35809. characterMakers.push(() => makeCharacter(
  35810. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35811. {
  35812. front: {
  35813. height: math.unit(3 + 8/12, "feet"),
  35814. name: "Front",
  35815. image: {
  35816. source: "./media/characters/rodney/front.svg",
  35817. extra: 1956/1747,
  35818. bottom: 31/1987
  35819. }
  35820. },
  35821. frontDressed: {
  35822. height: math.unit(2.9, "feet"),
  35823. name: "Front (Dressed)",
  35824. image: {
  35825. source: "./media/characters/rodney/front-dressed.svg",
  35826. extra: 1382/1241,
  35827. bottom: 385/1767
  35828. }
  35829. },
  35830. },
  35831. [
  35832. {
  35833. name: "Normal",
  35834. height: math.unit(3 + 8/12, "feet"),
  35835. default: true
  35836. },
  35837. ]
  35838. ))
  35839. characterMakers.push(() => makeCharacter(
  35840. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35841. {
  35842. front: {
  35843. height: math.unit(5 + 9/12, "feet"),
  35844. weight: math.unit(194, "lbs"),
  35845. name: "Front",
  35846. image: {
  35847. source: "./media/characters/zakail-sudekai/front.svg",
  35848. extra: 2696/2533,
  35849. bottom: 248/2944
  35850. }
  35851. },
  35852. maw: {
  35853. height: math.unit(1.35, "feet"),
  35854. name: "Maw",
  35855. image: {
  35856. source: "./media/characters/zakail-sudekai/maw.svg"
  35857. }
  35858. },
  35859. },
  35860. [
  35861. {
  35862. name: "Normal",
  35863. height: math.unit(5 + 9/12, "feet"),
  35864. default: true
  35865. },
  35866. ]
  35867. ))
  35868. characterMakers.push(() => makeCharacter(
  35869. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35870. {
  35871. front: {
  35872. height: math.unit(8 + 4/12, "feet"),
  35873. weight: math.unit(1200, "lb"),
  35874. name: "Front",
  35875. image: {
  35876. source: "./media/characters/eleanor/front.svg",
  35877. extra: 1226/1192,
  35878. bottom: 52/1278
  35879. }
  35880. },
  35881. back: {
  35882. height: math.unit(8 + 4/12, "feet"),
  35883. weight: math.unit(1200, "lb"),
  35884. name: "Back",
  35885. image: {
  35886. source: "./media/characters/eleanor/back.svg",
  35887. extra: 1242/1184,
  35888. bottom: 60/1302
  35889. }
  35890. },
  35891. head: {
  35892. height: math.unit(2.62, "feet"),
  35893. name: "Head",
  35894. image: {
  35895. source: "./media/characters/eleanor/head.svg"
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Normal",
  35902. height: math.unit(8 + 4/12, "feet"),
  35903. default: true
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(8 + 4/12, "feet"),
  35912. weight: math.unit(750, "lb"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/tanya/front.svg",
  35916. extra: 1749/1615,
  35917. bottom: 33/1782
  35918. }
  35919. },
  35920. },
  35921. [
  35922. {
  35923. name: "Normal",
  35924. height: math.unit(8 + 4/12, "feet"),
  35925. default: true
  35926. },
  35927. ]
  35928. ))
  35929. characterMakers.push(() => makeCharacter(
  35930. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35931. {
  35932. front: {
  35933. height: math.unit(5, "feet"),
  35934. weight: math.unit(225, "lb"),
  35935. name: "Front",
  35936. image: {
  35937. source: "./media/characters/cindy/front.svg",
  35938. extra: 1320/1250,
  35939. bottom: 42/1362
  35940. }
  35941. },
  35942. frontDressed: {
  35943. height: math.unit(5, "feet"),
  35944. weight: math.unit(225, "lb"),
  35945. name: "Front (Dressed)",
  35946. image: {
  35947. source: "./media/characters/cindy/front-dressed.svg",
  35948. extra: 1320/1250,
  35949. bottom: 42/1362
  35950. }
  35951. },
  35952. back: {
  35953. height: math.unit(5, "feet"),
  35954. weight: math.unit(225, "lb"),
  35955. name: "Back",
  35956. image: {
  35957. source: "./media/characters/cindy/back.svg",
  35958. extra: 1384/1346,
  35959. bottom: 14/1398
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(5, "feet"),
  35967. default: true
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35973. {
  35974. front: {
  35975. height: math.unit(6 + 9/12, "feet"),
  35976. weight: math.unit(440, "lb"),
  35977. name: "Front",
  35978. image: {
  35979. source: "./media/characters/wilbur-owen/front.svg",
  35980. extra: 1575/1448,
  35981. bottom: 72/1647
  35982. }
  35983. },
  35984. back: {
  35985. height: math.unit(6 + 9/12, "feet"),
  35986. weight: math.unit(440, "lb"),
  35987. name: "Back",
  35988. image: {
  35989. source: "./media/characters/wilbur-owen/back.svg",
  35990. extra: 1578/1445,
  35991. bottom: 36/1614
  35992. }
  35993. },
  35994. },
  35995. [
  35996. {
  35997. name: "Normal",
  35998. height: math.unit(6 + 9/12, "feet"),
  35999. default: true
  36000. },
  36001. ]
  36002. ))
  36003. characterMakers.push(() => makeCharacter(
  36004. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36005. {
  36006. front: {
  36007. height: math.unit(6 + 5/12, "feet"),
  36008. weight: math.unit(650, "lb"),
  36009. name: "Front",
  36010. image: {
  36011. source: "./media/characters/keegan/front.svg",
  36012. extra: 2387/2198,
  36013. bottom: 33/2420
  36014. }
  36015. },
  36016. side: {
  36017. height: math.unit(6 + 5/12, "feet"),
  36018. weight: math.unit(650, "lb"),
  36019. name: "Side",
  36020. image: {
  36021. source: "./media/characters/keegan/side.svg",
  36022. extra: 2390/2202,
  36023. bottom: 47/2437
  36024. }
  36025. },
  36026. back: {
  36027. height: math.unit(6 + 5/12, "feet"),
  36028. weight: math.unit(650, "lb"),
  36029. name: "Back",
  36030. image: {
  36031. source: "./media/characters/keegan/back.svg",
  36032. extra: 2418/2268,
  36033. bottom: 15/2433
  36034. }
  36035. },
  36036. frontSfw: {
  36037. height: math.unit(6 + 5/12, "feet"),
  36038. weight: math.unit(650, "lb"),
  36039. name: "Front (SFW)",
  36040. image: {
  36041. source: "./media/characters/keegan/front-sfw.svg",
  36042. extra: 2387/2198,
  36043. bottom: 33/2420
  36044. }
  36045. },
  36046. beans: {
  36047. height: math.unit(1.85, "feet"),
  36048. name: "Beans",
  36049. image: {
  36050. source: "./media/characters/keegan/beans.svg"
  36051. }
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "Normal",
  36057. height: math.unit(6 + 5/12, "feet"),
  36058. default: true
  36059. },
  36060. ]
  36061. ))
  36062. characterMakers.push(() => makeCharacter(
  36063. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36064. {
  36065. front: {
  36066. height: math.unit(9, "feet"),
  36067. name: "Front",
  36068. image: {
  36069. source: "./media/characters/colton/front.svg",
  36070. extra: 1589/1326,
  36071. bottom: 139/1728
  36072. }
  36073. },
  36074. },
  36075. [
  36076. {
  36077. name: "Normal",
  36078. height: math.unit(9, "feet"),
  36079. default: true
  36080. },
  36081. ]
  36082. ))
  36083. characterMakers.push(() => makeCharacter(
  36084. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36085. {
  36086. front: {
  36087. height: math.unit(2 + 9/12, "feet"),
  36088. name: "Front",
  36089. image: {
  36090. source: "./media/characters/bora/front.svg",
  36091. extra: 1265/1250,
  36092. bottom: 24/1289
  36093. }
  36094. },
  36095. },
  36096. [
  36097. {
  36098. name: "Normal",
  36099. height: math.unit(2 + 9/12, "feet"),
  36100. default: true
  36101. },
  36102. ]
  36103. ))
  36104. characterMakers.push(() => makeCharacter(
  36105. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36106. {
  36107. front: {
  36108. height: math.unit(8, "feet"),
  36109. name: "Front",
  36110. image: {
  36111. source: "./media/characters/myu-myu/front.svg",
  36112. extra: 1949/1857,
  36113. bottom: 90/2039
  36114. }
  36115. },
  36116. },
  36117. [
  36118. {
  36119. name: "Normal",
  36120. height: math.unit(8, "feet"),
  36121. default: true
  36122. },
  36123. {
  36124. name: "Big",
  36125. height: math.unit(15, "feet")
  36126. },
  36127. {
  36128. name: "BIG",
  36129. height: math.unit(25, "feet")
  36130. },
  36131. ]
  36132. ))
  36133. characterMakers.push(() => makeCharacter(
  36134. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36135. {
  36136. side: {
  36137. height: math.unit(7 + 5/12, "feet"),
  36138. weight: math.unit(2800, "lb"),
  36139. name: "Side",
  36140. image: {
  36141. source: "./media/characters/haloren/side.svg",
  36142. extra: 1793/409,
  36143. bottom: 59/1852
  36144. }
  36145. },
  36146. frontPaw: {
  36147. height: math.unit(2.36, "feet"),
  36148. name: "Front paw",
  36149. image: {
  36150. source: "./media/characters/haloren/front-paw.svg"
  36151. }
  36152. },
  36153. hindPaw: {
  36154. height: math.unit(3.18, "feet"),
  36155. name: "Hind paw",
  36156. image: {
  36157. source: "./media/characters/haloren/hind-paw.svg"
  36158. }
  36159. },
  36160. maw: {
  36161. height: math.unit(5.05, "feet"),
  36162. name: "Maw",
  36163. image: {
  36164. source: "./media/characters/haloren/maw.svg"
  36165. }
  36166. },
  36167. dick: {
  36168. height: math.unit(2.90, "feet"),
  36169. name: "Dick",
  36170. image: {
  36171. source: "./media/characters/haloren/dick.svg"
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(7 + 5/12, "feet"),
  36179. default: true
  36180. },
  36181. {
  36182. name: "Enhanced",
  36183. height: math.unit(14 + 3/12, "feet")
  36184. },
  36185. ]
  36186. ))
  36187. characterMakers.push(() => makeCharacter(
  36188. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36189. {
  36190. front: {
  36191. height: math.unit(171, "cm"),
  36192. name: "Front",
  36193. image: {
  36194. source: "./media/characters/kimmy/front.svg",
  36195. extra: 1491/1435,
  36196. bottom: 53/1544
  36197. }
  36198. },
  36199. },
  36200. [
  36201. {
  36202. name: "Small",
  36203. height: math.unit(9, "cm")
  36204. },
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(171, "cm"),
  36208. default: true
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36214. {
  36215. front: {
  36216. height: math.unit(8, "feet"),
  36217. weight: math.unit(300, "lb"),
  36218. name: "Front",
  36219. image: {
  36220. source: "./media/characters/galeboomer/front.svg",
  36221. extra: 4651/4415,
  36222. bottom: 162/4813
  36223. }
  36224. },
  36225. back: {
  36226. height: math.unit(8, "feet"),
  36227. weight: math.unit(300, "lb"),
  36228. name: "Back",
  36229. image: {
  36230. source: "./media/characters/galeboomer/back.svg",
  36231. extra: 4544/4314,
  36232. bottom: 16/4560
  36233. }
  36234. },
  36235. frontAlt: {
  36236. height: math.unit(8, "feet"),
  36237. weight: math.unit(300, "lb"),
  36238. name: "Front (Alt)",
  36239. image: {
  36240. source: "./media/characters/galeboomer/front-alt.svg",
  36241. extra: 4458/4228,
  36242. bottom: 68/4526
  36243. }
  36244. },
  36245. maw: {
  36246. height: math.unit(1.2, "feet"),
  36247. name: "Maw",
  36248. image: {
  36249. source: "./media/characters/galeboomer/maw.svg"
  36250. }
  36251. },
  36252. },
  36253. [
  36254. {
  36255. name: "Normal",
  36256. height: math.unit(8, "feet"),
  36257. default: true
  36258. },
  36259. ]
  36260. ))
  36261. characterMakers.push(() => makeCharacter(
  36262. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36263. {
  36264. front: {
  36265. height: math.unit(5 + 9/12, "feet"),
  36266. weight: math.unit(120, "lb"),
  36267. name: "Front",
  36268. image: {
  36269. source: "./media/characters/chyr/front.svg",
  36270. extra: 1323/1254,
  36271. bottom: 63/1386
  36272. }
  36273. },
  36274. back: {
  36275. height: math.unit(5 + 9/12, "feet"),
  36276. weight: math.unit(120, "lb"),
  36277. name: "Back",
  36278. image: {
  36279. source: "./media/characters/chyr/back.svg",
  36280. extra: 1323/1252,
  36281. bottom: 48/1371
  36282. }
  36283. },
  36284. },
  36285. [
  36286. {
  36287. name: "Normal",
  36288. height: math.unit(5 + 9/12, "feet"),
  36289. default: true
  36290. },
  36291. ]
  36292. ))
  36293. characterMakers.push(() => makeCharacter(
  36294. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36295. {
  36296. front: {
  36297. height: math.unit(7, "feet"),
  36298. weight: math.unit(310, "lb"),
  36299. name: "Front",
  36300. image: {
  36301. source: "./media/characters/solarus/front.svg",
  36302. extra: 2415/2021,
  36303. bottom: 103/2518
  36304. }
  36305. },
  36306. back: {
  36307. height: math.unit(7, "feet"),
  36308. weight: math.unit(310, "lb"),
  36309. name: "Back",
  36310. image: {
  36311. source: "./media/characters/solarus/back.svg",
  36312. extra: 2463/2089,
  36313. bottom: 79/2542
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Normal",
  36320. height: math.unit(7, "feet"),
  36321. default: true
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36327. {
  36328. front: {
  36329. height: math.unit(16, "feet"),
  36330. name: "Front",
  36331. image: {
  36332. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36333. extra: 1844/1780,
  36334. bottom: 58/1902
  36335. }
  36336. },
  36337. winterCoat: {
  36338. height: math.unit(16, "feet"),
  36339. name: "Winter Coat",
  36340. image: {
  36341. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36342. extra: 1807/1775,
  36343. bottom: 69/1876
  36344. }
  36345. },
  36346. },
  36347. [
  36348. {
  36349. name: "Normal",
  36350. height: math.unit(16, "feet"),
  36351. default: true
  36352. },
  36353. {
  36354. name: "Chicago Size",
  36355. height: math.unit(560, "feet")
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(11 + 6/12, "feet"),
  36364. weight: math.unit(1366, "lb"),
  36365. name: "Front",
  36366. image: {
  36367. source: "./media/characters/lexor/front.svg",
  36368. extra: 1560/1481,
  36369. bottom: 211/1771
  36370. }
  36371. },
  36372. back: {
  36373. height: math.unit(11 + 6/12, "feet"),
  36374. weight: math.unit(1366, "lb"),
  36375. name: "Back",
  36376. image: {
  36377. source: "./media/characters/lexor/back.svg",
  36378. extra: 1614/1533,
  36379. bottom: 76/1690
  36380. }
  36381. },
  36382. maw: {
  36383. height: math.unit(3, "feet"),
  36384. name: "Maw",
  36385. image: {
  36386. source: "./media/characters/lexor/maw.svg"
  36387. }
  36388. },
  36389. dick: {
  36390. height: math.unit(2.59, "feet"),
  36391. name: "Dick",
  36392. image: {
  36393. source: "./media/characters/lexor/dick.svg"
  36394. }
  36395. },
  36396. },
  36397. [
  36398. {
  36399. name: "Normal",
  36400. height: math.unit(11 + 6/12, "feet"),
  36401. default: true
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36407. {
  36408. front: {
  36409. height: math.unit(5 + 8/12, "feet"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/magnum/front.svg",
  36413. extra: 942/855,
  36414. bottom: 26/968
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(5 + 8/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(18 + 4/12, "feet"),
  36431. weight: math.unit(1500, "kg"),
  36432. name: "Front",
  36433. image: {
  36434. source: "./media/characters/solas-sharpsman/front.svg",
  36435. extra: 1698/1589,
  36436. bottom: 0/1698
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(18 + 4/12, "feet"),
  36444. default: true
  36445. },
  36446. ]
  36447. ))
  36448. characterMakers.push(() => makeCharacter(
  36449. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36450. {
  36451. front: {
  36452. height: math.unit(5 + 5/12, "feet"),
  36453. weight: math.unit(180, "lb"),
  36454. name: "Front",
  36455. image: {
  36456. source: "./media/characters/october/front.svg",
  36457. extra: 1800/1650,
  36458. bottom: 0/1800
  36459. }
  36460. },
  36461. frontNsfw: {
  36462. height: math.unit(5 + 5/12, "feet"),
  36463. weight: math.unit(180, "lb"),
  36464. name: "Front (NSFW)",
  36465. image: {
  36466. source: "./media/characters/october/front-nsfw.svg",
  36467. extra: 1392/1307,
  36468. bottom: 42/1434
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(5 + 5/12, "feet"),
  36476. default: true
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(8 + 6/12, "feet"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/essynkardi/front.svg",
  36488. extra: 1914/1846,
  36489. bottom: 22/1936
  36490. }
  36491. },
  36492. },
  36493. [
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(8 + 6/12, "feet"),
  36497. default: true
  36498. },
  36499. ]
  36500. ))
  36501. characterMakers.push(() => makeCharacter(
  36502. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36503. {
  36504. front: {
  36505. height: math.unit(6 + 6/12, "feet"),
  36506. weight: math.unit(7, "lb"),
  36507. name: "Front",
  36508. image: {
  36509. source: "./media/characters/icky/front.svg",
  36510. extra: 813/782,
  36511. bottom: 66/879
  36512. }
  36513. },
  36514. back: {
  36515. height: math.unit(6 + 6/12, "feet"),
  36516. weight: math.unit(7, "lb"),
  36517. name: "Back",
  36518. image: {
  36519. source: "./media/characters/icky/back.svg",
  36520. extra: 754/735,
  36521. bottom: 56/810
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(6 + 6/12, "feet"),
  36529. default: true
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(15, "feet"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/rojas/front.svg",
  36541. extra: 1462/1408,
  36542. bottom: 95/1557
  36543. }
  36544. },
  36545. back: {
  36546. height: math.unit(15, "feet"),
  36547. name: "Back",
  36548. image: {
  36549. source: "./media/characters/rojas/back.svg",
  36550. extra: 1023/954,
  36551. bottom: 28/1051
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Normal",
  36558. height: math.unit(15, "feet"),
  36559. default: true
  36560. },
  36561. ]
  36562. ))
  36563. characterMakers.push(() => makeCharacter(
  36564. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36565. {
  36566. frontHuman: {
  36567. height: math.unit(5 + 7/12, "feet"),
  36568. name: "Front (Human)",
  36569. image: {
  36570. source: "./media/characters/alek-dryagan/front-human.svg",
  36571. extra: 1687/1667,
  36572. bottom: 69/1756
  36573. }
  36574. },
  36575. backHuman: {
  36576. height: math.unit(5 + 7/12, "feet"),
  36577. name: "Back (Human)",
  36578. image: {
  36579. source: "./media/characters/alek-dryagan/back-human.svg",
  36580. extra: 1670/1649,
  36581. bottom: 65/1735
  36582. }
  36583. },
  36584. frontDemi: {
  36585. height: math.unit(65, "feet"),
  36586. name: "Front (Demi)",
  36587. image: {
  36588. source: "./media/characters/alek-dryagan/front-demi.svg",
  36589. extra: 1669/1642,
  36590. bottom: 49/1718
  36591. }
  36592. },
  36593. backDemi: {
  36594. height: math.unit(65, "feet"),
  36595. name: "Back (Demi)",
  36596. image: {
  36597. source: "./media/characters/alek-dryagan/back-demi.svg",
  36598. extra: 1658/1637,
  36599. bottom: 40/1698
  36600. }
  36601. },
  36602. mawHuman: {
  36603. height: math.unit(0.3, "feet"),
  36604. name: "Maw (Human)",
  36605. image: {
  36606. source: "./media/characters/alek-dryagan/maw-human.svg"
  36607. }
  36608. },
  36609. mawDemi: {
  36610. height: math.unit(3.8, "feet"),
  36611. name: "Maw (Demi)",
  36612. image: {
  36613. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(5 + 7/12, "feet"),
  36621. default: true
  36622. },
  36623. ]
  36624. ))
  36625. characterMakers.push(() => makeCharacter(
  36626. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36627. {
  36628. frontHuman: {
  36629. height: math.unit(5 + 2/12, "feet"),
  36630. name: "Front (Human)",
  36631. image: {
  36632. source: "./media/characters/gen/front-human.svg",
  36633. extra: 1627/1538,
  36634. bottom: 71/1698
  36635. }
  36636. },
  36637. backHuman: {
  36638. height: math.unit(5 + 2/12, "feet"),
  36639. name: "Back (Human)",
  36640. image: {
  36641. source: "./media/characters/gen/back-human.svg",
  36642. extra: 1638/1548,
  36643. bottom: 69/1707
  36644. }
  36645. },
  36646. frontDemi: {
  36647. height: math.unit(5 + 2/12, "feet"),
  36648. name: "Front (Demi)",
  36649. image: {
  36650. source: "./media/characters/gen/front-demi.svg",
  36651. extra: 1627/1538,
  36652. bottom: 71/1698
  36653. }
  36654. },
  36655. backDemi: {
  36656. height: math.unit(5 + 2/12, "feet"),
  36657. name: "Back (Demi)",
  36658. image: {
  36659. source: "./media/characters/gen/back-demi.svg",
  36660. extra: 1638/1548,
  36661. bottom: 69/1707
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(5 + 2/12, "feet"),
  36669. default: true
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36675. {
  36676. frontImp: {
  36677. height: math.unit(1 + 11/12, "feet"),
  36678. name: "Front (Imp)",
  36679. image: {
  36680. source: "./media/characters/max-kobold/front-imp.svg",
  36681. extra: 1238/1134,
  36682. bottom: 81/1319
  36683. }
  36684. },
  36685. backImp: {
  36686. height: math.unit(1 + 11/12, "feet"),
  36687. name: "Back (Imp)",
  36688. image: {
  36689. source: "./media/characters/max-kobold/back-imp.svg",
  36690. extra: 1334/1175,
  36691. bottom: 34/1368
  36692. }
  36693. },
  36694. frontDemi: {
  36695. height: math.unit(5 + 9/12, "feet"),
  36696. name: "Front (Demi)",
  36697. image: {
  36698. source: "./media/characters/max-kobold/front-demi.svg",
  36699. extra: 1715/1685,
  36700. bottom: 54/1769
  36701. }
  36702. },
  36703. backDemi: {
  36704. height: math.unit(5 + 9/12, "feet"),
  36705. name: "Back (Demi)",
  36706. image: {
  36707. source: "./media/characters/max-kobold/back-demi.svg",
  36708. extra: 1752/1729,
  36709. bottom: 41/1793
  36710. }
  36711. },
  36712. handImp: {
  36713. height: math.unit(0.45, "feet"),
  36714. name: "Hand (Imp)",
  36715. image: {
  36716. source: "./media/characters/max-kobold/hand.svg"
  36717. }
  36718. },
  36719. pawImp: {
  36720. height: math.unit(0.46, "feet"),
  36721. name: "Paw (Imp)",
  36722. image: {
  36723. source: "./media/characters/max-kobold/paw.svg"
  36724. }
  36725. },
  36726. handDemi: {
  36727. height: math.unit(0.80, "feet"),
  36728. name: "Hand (Demi)",
  36729. image: {
  36730. source: "./media/characters/max-kobold/hand.svg"
  36731. }
  36732. },
  36733. pawDemi: {
  36734. height: math.unit(1.1, "feet"),
  36735. name: "Paw (Demi)",
  36736. image: {
  36737. source: "./media/characters/max-kobold/paw.svg"
  36738. }
  36739. },
  36740. headImp: {
  36741. height: math.unit(1.33, "feet"),
  36742. name: "Head (Imp)",
  36743. image: {
  36744. source: "./media/characters/max-kobold/head-imp.svg"
  36745. }
  36746. },
  36747. mawImp: {
  36748. height: math.unit(0.75, "feet"),
  36749. name: "Maw (Imp)",
  36750. image: {
  36751. source: "./media/characters/max-kobold/maw-imp.svg"
  36752. }
  36753. },
  36754. mawDemi: {
  36755. height: math.unit(0.42, "feet"),
  36756. name: "Maw (Demi)",
  36757. image: {
  36758. source: "./media/characters/max-kobold/maw-demi.svg"
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(1 + 11/12, "feet"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(7 + 5/12, "feet"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/carbon/front.svg",
  36778. extra: 1754/1689,
  36779. bottom: 65/1819
  36780. }
  36781. },
  36782. back: {
  36783. height: math.unit(7 + 5/12, "feet"),
  36784. name: "Back",
  36785. image: {
  36786. source: "./media/characters/carbon/back.svg",
  36787. extra: 1762/1695,
  36788. bottom: 24/1786
  36789. }
  36790. },
  36791. frontGigantamax: {
  36792. height: math.unit(150, "feet"),
  36793. name: "Front (Gigantamax)",
  36794. image: {
  36795. source: "./media/characters/carbon/front-gigantamax.svg",
  36796. extra: 1826/1669,
  36797. bottom: 59/1885
  36798. }
  36799. },
  36800. backGigantamax: {
  36801. height: math.unit(150, "feet"),
  36802. name: "Back (Gigantamax)",
  36803. image: {
  36804. source: "./media/characters/carbon/back-gigantamax.svg",
  36805. extra: 1796/1653,
  36806. bottom: 53/1849
  36807. }
  36808. },
  36809. maw: {
  36810. height: math.unit(0.48, "feet"),
  36811. name: "Maw",
  36812. image: {
  36813. source: "./media/characters/carbon/maw.svg"
  36814. }
  36815. },
  36816. mawGigantamax: {
  36817. height: math.unit(7.5, "feet"),
  36818. name: "Maw (Gigantamax)",
  36819. image: {
  36820. source: "./media/characters/carbon/maw-gigantamax.svg"
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Normal",
  36827. height: math.unit(7 + 5/12, "feet"),
  36828. default: true
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(6, "feet"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/maverick/front.svg",
  36840. extra: 1672/1661,
  36841. bottom: 85/1757
  36842. }
  36843. },
  36844. back: {
  36845. height: math.unit(6, "feet"),
  36846. name: "Back",
  36847. image: {
  36848. source: "./media/characters/maverick/back.svg",
  36849. extra: 1642/1631,
  36850. bottom: 38/1680
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(6, "feet"),
  36858. default: true
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36864. {
  36865. front: {
  36866. height: math.unit(15, "feet"),
  36867. weight: math.unit(615, "lb"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/grockle/front.svg",
  36871. extra: 1535/1427,
  36872. bottom: 56/1591
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(15, "feet"),
  36880. default: true
  36881. },
  36882. {
  36883. name: "Large",
  36884. height: math.unit(150, "feet")
  36885. },
  36886. {
  36887. name: "Macro",
  36888. height: math.unit(1876, "feet")
  36889. },
  36890. {
  36891. name: "Mega Macro",
  36892. height: math.unit(121940, "feet")
  36893. },
  36894. {
  36895. name: "Giga Macro",
  36896. height: math.unit(750, "km")
  36897. },
  36898. {
  36899. name: "Tera Macro",
  36900. height: math.unit(750000, "km")
  36901. },
  36902. {
  36903. name: "Galactic",
  36904. height: math.unit(1.4e5, "km")
  36905. },
  36906. {
  36907. name: "Godlike",
  36908. height: math.unit(9.8e280, "galaxies")
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(11, "meters"),
  36917. weight: math.unit(20, "tonnes"),
  36918. name: "Front",
  36919. image: {
  36920. source: "./media/characters/alistair/front.svg",
  36921. extra: 1265/1009,
  36922. bottom: 93/1358
  36923. }
  36924. },
  36925. },
  36926. [
  36927. {
  36928. name: "Normal",
  36929. height: math.unit(11, "meters"),
  36930. default: true
  36931. },
  36932. ]
  36933. ))
  36934. characterMakers.push(() => makeCharacter(
  36935. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36936. {
  36937. front: {
  36938. height: math.unit(5 + 8/12, "feet"),
  36939. name: "Front",
  36940. image: {
  36941. source: "./media/characters/haruka/front.svg",
  36942. extra: 2012/1952,
  36943. bottom: 0/2012
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(5 + 8/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36957. {
  36958. back: {
  36959. height: math.unit(9, "feet"),
  36960. name: "Back",
  36961. image: {
  36962. source: "./media/characters/vivian-sylveon/back.svg",
  36963. extra: 1853/1714,
  36964. bottom: 0/1853
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(9, "feet"),
  36972. default: true
  36973. },
  36974. {
  36975. name: "Macro",
  36976. height: math.unit(500, "feet")
  36977. },
  36978. {
  36979. name: "Megamacro",
  36980. height: math.unit(600, "miles")
  36981. },
  36982. {
  36983. name: "Gigamacro",
  36984. height: math.unit(30000, "miles")
  36985. },
  36986. ]
  36987. ))
  36988. characterMakers.push(() => makeCharacter(
  36989. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36990. {
  36991. anthro: {
  36992. height: math.unit(5 + 10/12, "feet"),
  36993. weight: math.unit(100, "lb"),
  36994. name: "Anthro",
  36995. image: {
  36996. source: "./media/characters/daiki/anthro.svg",
  36997. extra: 1115/1027,
  36998. bottom: 69/1184
  36999. }
  37000. },
  37001. feral: {
  37002. height: math.unit(200, "feet"),
  37003. name: "Feral",
  37004. image: {
  37005. source: "./media/characters/daiki/feral.svg",
  37006. extra: 1256/313,
  37007. bottom: 39/1295
  37008. }
  37009. },
  37010. feralHead: {
  37011. height: math.unit(171, "feet"),
  37012. name: "Feral Head",
  37013. image: {
  37014. source: "./media/characters/daiki/feral-head.svg"
  37015. }
  37016. },
  37017. manaDragon: {
  37018. height: math.unit(170, "meters"),
  37019. name: "Mana-dragon",
  37020. image: {
  37021. source: "./media/characters/daiki/mana-dragon.svg",
  37022. extra: 763/420,
  37023. bottom: 97/860
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(5 + 10/12, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37037. {
  37038. fullyEquippedFront: {
  37039. height: math.unit(3 + 1/12, "feet"),
  37040. weight: math.unit(24, "lb"),
  37041. name: "Fully Equipped (Front)",
  37042. image: {
  37043. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37044. extra: 687/605,
  37045. bottom: 18/705
  37046. }
  37047. },
  37048. fullyEquippedBack: {
  37049. height: math.unit(3 + 1/12, "feet"),
  37050. weight: math.unit(24, "lb"),
  37051. name: "Fully Equipped (Back)",
  37052. image: {
  37053. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37054. extra: 689/590,
  37055. bottom: 18/707
  37056. }
  37057. },
  37058. dailyWear: {
  37059. height: math.unit(3 + 1/12, "feet"),
  37060. weight: math.unit(24, "lb"),
  37061. name: "Daily Wear",
  37062. image: {
  37063. source: "./media/characters/tea-spot/daily-wear.svg",
  37064. extra: 701/620,
  37065. bottom: 21/722
  37066. }
  37067. },
  37068. maidWork: {
  37069. height: math.unit(3 + 1/12, "feet"),
  37070. weight: math.unit(24, "lb"),
  37071. name: "Maid Work",
  37072. image: {
  37073. source: "./media/characters/tea-spot/maid-work.svg",
  37074. extra: 693/609,
  37075. bottom: 15/708
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Normal",
  37082. height: math.unit(3 + 1/12, "feet"),
  37083. default: true
  37084. },
  37085. ]
  37086. ))
  37087. characterMakers.push(() => makeCharacter(
  37088. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37089. {
  37090. front: {
  37091. height: math.unit(175, "cm"),
  37092. weight: math.unit(75, "kg"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/chee/front.svg",
  37096. extra: 1796/1740,
  37097. bottom: 40/1836
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Micro-Micro",
  37104. height: math.unit(1, "nm")
  37105. },
  37106. {
  37107. name: "Micro-erst",
  37108. height: math.unit(1, "micrometer")
  37109. },
  37110. {
  37111. name: "Micro-er",
  37112. height: math.unit(1, "cm")
  37113. },
  37114. {
  37115. name: "Normal",
  37116. height: math.unit(175, "cm"),
  37117. default: true
  37118. },
  37119. {
  37120. name: "Macro",
  37121. height: math.unit(100, "m")
  37122. },
  37123. {
  37124. name: "Macro-er",
  37125. height: math.unit(1, "km")
  37126. },
  37127. {
  37128. name: "Macro-erst",
  37129. height: math.unit(10, "km")
  37130. },
  37131. {
  37132. name: "Macro-Macro",
  37133. height: math.unit(100, "km")
  37134. },
  37135. ]
  37136. ))
  37137. characterMakers.push(() => makeCharacter(
  37138. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37139. {
  37140. front: {
  37141. height: math.unit(11 + 9/12, "feet"),
  37142. weight: math.unit(935, "lb"),
  37143. name: "Front",
  37144. image: {
  37145. source: "./media/characters/kingsley/front.svg",
  37146. extra: 1803/1674,
  37147. bottom: 127/1930
  37148. }
  37149. },
  37150. frontNude: {
  37151. height: math.unit(11 + 9/12, "feet"),
  37152. weight: math.unit(935, "lb"),
  37153. name: "Front (Nude)",
  37154. image: {
  37155. source: "./media/characters/kingsley/front-nude.svg",
  37156. extra: 1803/1674,
  37157. bottom: 127/1930
  37158. }
  37159. },
  37160. },
  37161. [
  37162. {
  37163. name: "Normal",
  37164. height: math.unit(11 + 9/12, "feet"),
  37165. default: true
  37166. },
  37167. ]
  37168. ))
  37169. characterMakers.push(() => makeCharacter(
  37170. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37171. {
  37172. side: {
  37173. height: math.unit(9, "feet"),
  37174. name: "Side",
  37175. image: {
  37176. source: "./media/characters/rymel/side.svg",
  37177. extra: 792/469,
  37178. bottom: 121/913
  37179. }
  37180. },
  37181. maw: {
  37182. height: math.unit(2.4, "meters"),
  37183. name: "Maw",
  37184. image: {
  37185. source: "./media/characters/rymel/maw.svg"
  37186. }
  37187. },
  37188. },
  37189. [
  37190. {
  37191. name: "House Drake",
  37192. height: math.unit(2, "feet")
  37193. },
  37194. {
  37195. name: "Reduced",
  37196. height: math.unit(4.5, "feet")
  37197. },
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(9, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(1.74, "meters"),
  37210. weight: math.unit(55, "kg"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/rubus/front.svg",
  37214. extra: 1894/1742,
  37215. bottom: 44/1938
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(1.74, "meters"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(5 + 2/12, "feet"),
  37232. weight: math.unit(112, "lb"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/cassie-kingston/front.svg",
  37236. extra: 1438/1390,
  37237. bottom: 47/1485
  37238. }
  37239. },
  37240. },
  37241. [
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(5 + 2/12, "feet"),
  37245. default: true
  37246. },
  37247. {
  37248. name: "Macro",
  37249. height: math.unit(128, "feet")
  37250. },
  37251. {
  37252. name: "Megamacro",
  37253. height: math.unit(2.56, "miles")
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37259. {
  37260. front: {
  37261. height: math.unit(7, "feet"),
  37262. name: "Front",
  37263. image: {
  37264. source: "./media/characters/fox/front.svg",
  37265. extra: 1798/1703,
  37266. bottom: 55/1853
  37267. }
  37268. },
  37269. back: {
  37270. height: math.unit(7, "feet"),
  37271. name: "Back",
  37272. image: {
  37273. source: "./media/characters/fox/back.svg",
  37274. extra: 1748/1649,
  37275. bottom: 32/1780
  37276. }
  37277. },
  37278. head: {
  37279. height: math.unit(1.95, "feet"),
  37280. name: "Head",
  37281. image: {
  37282. source: "./media/characters/fox/head.svg"
  37283. }
  37284. },
  37285. dick: {
  37286. height: math.unit(1.33, "feet"),
  37287. name: "Dick",
  37288. image: {
  37289. source: "./media/characters/fox/dick.svg"
  37290. }
  37291. },
  37292. foot: {
  37293. height: math.unit(1, "feet"),
  37294. name: "Foot",
  37295. image: {
  37296. source: "./media/characters/fox/foot.svg"
  37297. }
  37298. },
  37299. paw: {
  37300. height: math.unit(0.92, "feet"),
  37301. name: "Paw",
  37302. image: {
  37303. source: "./media/characters/fox/paw.svg"
  37304. }
  37305. },
  37306. },
  37307. [
  37308. {
  37309. name: "Small",
  37310. height: math.unit(3, "inches")
  37311. },
  37312. {
  37313. name: "\"Realistic\"",
  37314. height: math.unit(7, "feet")
  37315. },
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(150, "feet"),
  37319. default: true
  37320. },
  37321. {
  37322. name: "BIG",
  37323. height: math.unit(1200, "feet")
  37324. },
  37325. {
  37326. name: "👀",
  37327. height: math.unit(5, "miles")
  37328. },
  37329. {
  37330. name: "👀👀👀",
  37331. height: math.unit(64, "miles")
  37332. },
  37333. ]
  37334. ))
  37335. characterMakers.push(() => makeCharacter(
  37336. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37337. {
  37338. front: {
  37339. height: math.unit(625, "feet"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/asonja-rossa/front.svg",
  37343. extra: 1833/1686,
  37344. bottom: 24/1857
  37345. }
  37346. },
  37347. back: {
  37348. height: math.unit(625, "feet"),
  37349. name: "Back",
  37350. image: {
  37351. source: "./media/characters/asonja-rossa/back.svg",
  37352. extra: 1852/1753,
  37353. bottom: 26/1878
  37354. }
  37355. },
  37356. },
  37357. [
  37358. {
  37359. name: "Macro",
  37360. height: math.unit(625, "feet"),
  37361. default: true
  37362. },
  37363. ]
  37364. ))
  37365. characterMakers.push(() => makeCharacter(
  37366. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37367. {
  37368. side: {
  37369. height: math.unit(8, "feet"),
  37370. name: "Side",
  37371. image: {
  37372. source: "./media/characters/rezukii/side.svg",
  37373. extra: 979/542,
  37374. bottom: 87/1066
  37375. }
  37376. },
  37377. sitting: {
  37378. height: math.unit(14.6, "feet"),
  37379. name: "Sitting",
  37380. image: {
  37381. source: "./media/characters/rezukii/sitting.svg",
  37382. extra: 1023/813,
  37383. bottom: 45/1068
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Tiny",
  37390. height: math.unit(2, "feet")
  37391. },
  37392. {
  37393. name: "Smol",
  37394. height: math.unit(4, "feet")
  37395. },
  37396. {
  37397. name: "Normal",
  37398. height: math.unit(8, "feet"),
  37399. default: true
  37400. },
  37401. {
  37402. name: "Big",
  37403. height: math.unit(12, "feet")
  37404. },
  37405. {
  37406. name: "Macro",
  37407. height: math.unit(30, "feet")
  37408. },
  37409. ]
  37410. ))
  37411. characterMakers.push(() => makeCharacter(
  37412. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37413. {
  37414. front: {
  37415. height: math.unit(14, "feet"),
  37416. weight: math.unit(9.5, "tonnes"),
  37417. name: "Front",
  37418. image: {
  37419. source: "./media/characters/dawnheart/front.svg",
  37420. extra: 2792/2675,
  37421. bottom: 64/2856
  37422. }
  37423. },
  37424. },
  37425. [
  37426. {
  37427. name: "Normal",
  37428. height: math.unit(14, "feet"),
  37429. default: true
  37430. },
  37431. ]
  37432. ))
  37433. characterMakers.push(() => makeCharacter(
  37434. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37435. {
  37436. front: {
  37437. height: math.unit(1.7, "m"),
  37438. name: "Front",
  37439. image: {
  37440. source: "./media/characters/gladi/front.svg",
  37441. extra: 1460/1362,
  37442. bottom: 19/1479
  37443. }
  37444. },
  37445. back: {
  37446. height: math.unit(1.7, "m"),
  37447. name: "Back",
  37448. image: {
  37449. source: "./media/characters/gladi/back.svg",
  37450. extra: 1459/1357,
  37451. bottom: 12/1471
  37452. }
  37453. },
  37454. feral: {
  37455. height: math.unit(2.05, "m"),
  37456. name: "Feral",
  37457. image: {
  37458. source: "./media/characters/gladi/feral.svg",
  37459. extra: 821/557,
  37460. bottom: 91/912
  37461. }
  37462. },
  37463. },
  37464. [
  37465. {
  37466. name: "Shortest",
  37467. height: math.unit(70, "cm")
  37468. },
  37469. {
  37470. name: "Normal",
  37471. height: math.unit(1.7, "m")
  37472. },
  37473. {
  37474. name: "Macro",
  37475. height: math.unit(10, "m"),
  37476. default: true
  37477. },
  37478. {
  37479. name: "Tallest",
  37480. height: math.unit(200, "m")
  37481. },
  37482. ]
  37483. ))
  37484. characterMakers.push(() => makeCharacter(
  37485. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37486. {
  37487. front: {
  37488. height: math.unit(5 + 7/12, "feet"),
  37489. weight: math.unit(2, "tons"),
  37490. name: "Front",
  37491. image: {
  37492. source: "./media/characters/erdno/front.svg",
  37493. extra: 1234/1129,
  37494. bottom: 35/1269
  37495. }
  37496. },
  37497. angled: {
  37498. height: math.unit(5 + 7/12, "feet"),
  37499. weight: math.unit(2, "tons"),
  37500. name: "Angled",
  37501. image: {
  37502. source: "./media/characters/erdno/angled.svg",
  37503. extra: 1185/1139,
  37504. bottom: 36/1221
  37505. }
  37506. },
  37507. side: {
  37508. height: math.unit(5 + 7/12, "feet"),
  37509. weight: math.unit(2, "tons"),
  37510. name: "Side",
  37511. image: {
  37512. source: "./media/characters/erdno/side.svg",
  37513. extra: 1191/1144,
  37514. bottom: 40/1231
  37515. }
  37516. },
  37517. back: {
  37518. height: math.unit(5 + 7/12, "feet"),
  37519. weight: math.unit(2, "tons"),
  37520. name: "Back",
  37521. image: {
  37522. source: "./media/characters/erdno/back.svg",
  37523. extra: 1202/1146,
  37524. bottom: 17/1219
  37525. }
  37526. },
  37527. frontNsfw: {
  37528. height: math.unit(5 + 7/12, "feet"),
  37529. weight: math.unit(2, "tons"),
  37530. name: "Front (NSFW)",
  37531. image: {
  37532. source: "./media/characters/erdno/front-nsfw.svg",
  37533. extra: 1234/1129,
  37534. bottom: 35/1269
  37535. }
  37536. },
  37537. angledNsfw: {
  37538. height: math.unit(5 + 7/12, "feet"),
  37539. weight: math.unit(2, "tons"),
  37540. name: "Angled (NSFW)",
  37541. image: {
  37542. source: "./media/characters/erdno/angled-nsfw.svg",
  37543. extra: 1185/1139,
  37544. bottom: 36/1221
  37545. }
  37546. },
  37547. sideNsfw: {
  37548. height: math.unit(5 + 7/12, "feet"),
  37549. weight: math.unit(2, "tons"),
  37550. name: "Side (NSFW)",
  37551. image: {
  37552. source: "./media/characters/erdno/side-nsfw.svg",
  37553. extra: 1191/1144,
  37554. bottom: 40/1231
  37555. }
  37556. },
  37557. backNsfw: {
  37558. height: math.unit(5 + 7/12, "feet"),
  37559. weight: math.unit(2, "tons"),
  37560. name: "Back (NSFW)",
  37561. image: {
  37562. source: "./media/characters/erdno/back-nsfw.svg",
  37563. extra: 1202/1146,
  37564. bottom: 17/1219
  37565. }
  37566. },
  37567. frontHyper: {
  37568. height: math.unit(5 + 7/12, "feet"),
  37569. weight: math.unit(2, "tons"),
  37570. name: "Front (Hyper)",
  37571. image: {
  37572. source: "./media/characters/erdno/front-hyper.svg",
  37573. extra: 1298/1136,
  37574. bottom: 35/1333
  37575. }
  37576. },
  37577. },
  37578. [
  37579. {
  37580. name: "Normal",
  37581. height: math.unit(5 + 7/12, "feet"),
  37582. default: true
  37583. },
  37584. {
  37585. name: "Big",
  37586. height: math.unit(5.7, "meters")
  37587. },
  37588. {
  37589. name: "Macro",
  37590. height: math.unit(5.7, "kilometers")
  37591. },
  37592. {
  37593. name: "Megamacro",
  37594. height: math.unit(5.7, "earths")
  37595. },
  37596. ]
  37597. ))
  37598. characterMakers.push(() => makeCharacter(
  37599. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37600. {
  37601. front: {
  37602. height: math.unit(5 + 10/12, "feet"),
  37603. weight: math.unit(150, "lb"),
  37604. name: "Front",
  37605. image: {
  37606. source: "./media/characters/jamie/front.svg",
  37607. extra: 1908/1768,
  37608. bottom: 19/1927
  37609. }
  37610. },
  37611. },
  37612. [
  37613. {
  37614. name: "Minimum",
  37615. height: math.unit(2, "cm")
  37616. },
  37617. {
  37618. name: "Micro",
  37619. height: math.unit(3, "inches")
  37620. },
  37621. {
  37622. name: "Normal",
  37623. height: math.unit(5 + 10/12, "feet"),
  37624. default: true
  37625. },
  37626. {
  37627. name: "Macro",
  37628. height: math.unit(150, "feet")
  37629. },
  37630. {
  37631. name: "Megamacro",
  37632. height: math.unit(10000, "m")
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(2, "meters"),
  37641. weight: math.unit(100, "kg"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/shiron/front.svg",
  37645. extra: 2103/1985,
  37646. bottom: 98/2201
  37647. }
  37648. },
  37649. back: {
  37650. height: math.unit(2, "meters"),
  37651. weight: math.unit(100, "kg"),
  37652. name: "Back",
  37653. image: {
  37654. source: "./media/characters/shiron/back.svg",
  37655. extra: 2110/2015,
  37656. bottom: 89/2199
  37657. }
  37658. },
  37659. hand: {
  37660. height: math.unit(0.96, "feet"),
  37661. name: "Hand",
  37662. image: {
  37663. source: "./media/characters/shiron/hand.svg"
  37664. }
  37665. },
  37666. foot: {
  37667. height: math.unit(1.464, "feet"),
  37668. name: "Foot",
  37669. image: {
  37670. source: "./media/characters/shiron/foot.svg"
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(2, "meters")
  37678. },
  37679. {
  37680. name: "Macro",
  37681. height: math.unit(500, "meters"),
  37682. default: true
  37683. },
  37684. {
  37685. name: "Megamacro",
  37686. height: math.unit(20, "km")
  37687. },
  37688. ]
  37689. ))
  37690. characterMakers.push(() => makeCharacter(
  37691. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37692. {
  37693. front: {
  37694. height: math.unit(6, "feet"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/sam/front.svg",
  37698. extra: 849/826,
  37699. bottom: 19/868
  37700. }
  37701. },
  37702. },
  37703. [
  37704. {
  37705. name: "Normal",
  37706. height: math.unit(6, "feet"),
  37707. default: true
  37708. },
  37709. ]
  37710. ))
  37711. characterMakers.push(() => makeCharacter(
  37712. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37713. {
  37714. front: {
  37715. height: math.unit(8 + 4/12, "feet"),
  37716. weight: math.unit(122, "kg"),
  37717. name: "Front",
  37718. image: {
  37719. source: "./media/characters/namori-kurogawa/front.svg",
  37720. extra: 1894/1576,
  37721. bottom: 34/1928
  37722. }
  37723. },
  37724. },
  37725. [
  37726. {
  37727. name: "Normal",
  37728. height: math.unit(8 + 4/12, "feet"),
  37729. default: true
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37735. {
  37736. front: {
  37737. height: math.unit(9, "feet"),
  37738. weight: math.unit(621, "lb"),
  37739. name: "Front",
  37740. image: {
  37741. source: "./media/characters/unmru/front.svg",
  37742. extra: 1853/1747,
  37743. bottom: 73/1926
  37744. }
  37745. },
  37746. side: {
  37747. height: math.unit(9, "feet"),
  37748. weight: math.unit(621, "lb"),
  37749. name: "Side",
  37750. image: {
  37751. source: "./media/characters/unmru/side.svg",
  37752. extra: 1781/1671,
  37753. bottom: 127/1908
  37754. }
  37755. },
  37756. back: {
  37757. height: math.unit(9, "feet"),
  37758. weight: math.unit(621, "lb"),
  37759. name: "Back",
  37760. image: {
  37761. source: "./media/characters/unmru/back.svg",
  37762. extra: 1894/1765,
  37763. bottom: 75/1969
  37764. }
  37765. },
  37766. dick: {
  37767. height: math.unit(3, "feet"),
  37768. weight: math.unit(35, "lb"),
  37769. name: "Dick",
  37770. image: {
  37771. source: "./media/characters/unmru/dick.svg"
  37772. }
  37773. },
  37774. },
  37775. [
  37776. {
  37777. name: "Normal",
  37778. height: math.unit(9, "feet")
  37779. },
  37780. {
  37781. name: "Natural",
  37782. height: math.unit(27, "feet"),
  37783. default: true
  37784. },
  37785. {
  37786. name: "Giant",
  37787. height: math.unit(90, "feet")
  37788. },
  37789. {
  37790. name: "Kaiju",
  37791. height: math.unit(270, "feet")
  37792. },
  37793. {
  37794. name: "Macro",
  37795. height: math.unit(900, "feet")
  37796. },
  37797. {
  37798. name: "Macro+",
  37799. height: math.unit(2700, "feet")
  37800. },
  37801. {
  37802. name: "Megamacro",
  37803. height: math.unit(9000, "feet")
  37804. },
  37805. {
  37806. name: "City-Crushing",
  37807. height: math.unit(27000, "feet")
  37808. },
  37809. {
  37810. name: "Mountain-Mashing",
  37811. height: math.unit(90000, "feet")
  37812. },
  37813. {
  37814. name: "Earth-Eclipsing",
  37815. height: math.unit(2.7e8, "feet")
  37816. },
  37817. {
  37818. name: "Sol-Swallowing",
  37819. height: math.unit(9e10, "feet")
  37820. },
  37821. {
  37822. name: "Majoris-Munching",
  37823. height: math.unit(2.7e13, "feet")
  37824. },
  37825. ]
  37826. ))
  37827. characterMakers.push(() => makeCharacter(
  37828. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37829. {
  37830. front: {
  37831. height: math.unit(1, "inch"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/squeaks-mouse/front.svg",
  37835. extra: 352/308,
  37836. bottom: 25/377
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Micro",
  37843. height: math.unit(1, "inch"),
  37844. default: true
  37845. },
  37846. ]
  37847. ))
  37848. characterMakers.push(() => makeCharacter(
  37849. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37850. {
  37851. side: {
  37852. height: math.unit(35, "feet"),
  37853. name: "Side",
  37854. image: {
  37855. source: "./media/characters/sayko/side.svg",
  37856. extra: 1697/1021,
  37857. bottom: 82/1779
  37858. }
  37859. },
  37860. head: {
  37861. height: math.unit(16, "feet"),
  37862. name: "Head",
  37863. image: {
  37864. source: "./media/characters/sayko/head.svg"
  37865. }
  37866. },
  37867. forepaw: {
  37868. height: math.unit(7.85, "feet"),
  37869. name: "Forepaw",
  37870. image: {
  37871. source: "./media/characters/sayko/forepaw.svg"
  37872. }
  37873. },
  37874. hindpaw: {
  37875. height: math.unit(8.8, "feet"),
  37876. name: "Hindpaw",
  37877. image: {
  37878. source: "./media/characters/sayko/hindpaw.svg"
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(35, "feet"),
  37886. default: true
  37887. },
  37888. {
  37889. name: "Colossus",
  37890. height: math.unit(100, "meters")
  37891. },
  37892. {
  37893. name: "\"Small\" Deity",
  37894. height: math.unit(1, "km")
  37895. },
  37896. {
  37897. name: "\"Large\" Deity",
  37898. height: math.unit(15, "km")
  37899. },
  37900. ]
  37901. ))
  37902. characterMakers.push(() => makeCharacter(
  37903. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37904. {
  37905. front: {
  37906. height: math.unit(6, "feet"),
  37907. weight: math.unit(250, "lb"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/mukiro/front.svg",
  37911. extra: 1368/1310,
  37912. bottom: 34/1402
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(6, "feet"),
  37920. default: true
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(12 + 4/12, "feet"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37932. extra: 1346/1311,
  37933. bottom: 65/1411
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Base",
  37940. height: math.unit(12 + 4/12, "feet"),
  37941. default: true
  37942. },
  37943. {
  37944. name: "Macro",
  37945. height: math.unit(150, "feet")
  37946. },
  37947. {
  37948. name: "Mega",
  37949. height: math.unit(2, "miles")
  37950. },
  37951. {
  37952. name: "Demi God",
  37953. height: math.unit(4, "AU")
  37954. },
  37955. {
  37956. name: "God Size",
  37957. height: math.unit(1, "universe")
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(3 + 3/12, "feet"),
  37966. weight: math.unit(88, "lb"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/trey/front.svg",
  37970. extra: 1815/1509,
  37971. bottom: 60/1875
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(3 + 3/12, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37985. {
  37986. front: {
  37987. height: math.unit(4, "meters"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/adelonda/front.svg",
  37991. extra: 1077/982,
  37992. bottom: 39/1116
  37993. }
  37994. },
  37995. back: {
  37996. height: math.unit(4, "meters"),
  37997. name: "Back",
  37998. image: {
  37999. source: "./media/characters/adelonda/back.svg",
  38000. extra: 1105/1003,
  38001. bottom: 25/1130
  38002. }
  38003. },
  38004. feral: {
  38005. height: math.unit(40/1.5, "meters"),
  38006. name: "Feral",
  38007. image: {
  38008. source: "./media/characters/adelonda/feral.svg",
  38009. extra: 597/271,
  38010. bottom: 387/984
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Normal",
  38017. height: math.unit(4, "meters"),
  38018. default: true
  38019. },
  38020. ]
  38021. ))
  38022. characterMakers.push(() => makeCharacter(
  38023. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38024. {
  38025. front: {
  38026. height: math.unit(8 + 4/12, "feet"),
  38027. weight: math.unit(670, "lb"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/acadiel/front.svg",
  38031. extra: 1901/1595,
  38032. bottom: 142/2043
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(8 + 4/12, "feet"),
  38040. default: true
  38041. },
  38042. {
  38043. name: "Macro",
  38044. height: math.unit(200, "feet")
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(6 + 2/12, "feet"),
  38053. weight: math.unit(185, "lb"),
  38054. name: "Front",
  38055. image: {
  38056. source: "./media/characters/kayne-ein/front.svg",
  38057. extra: 1780/1560,
  38058. bottom: 81/1861
  38059. }
  38060. },
  38061. },
  38062. [
  38063. {
  38064. name: "Normal",
  38065. height: math.unit(6 + 2/12, "feet"),
  38066. default: true
  38067. },
  38068. {
  38069. name: "Transformation Stage",
  38070. height: math.unit(15, "feet")
  38071. },
  38072. {
  38073. name: "Macro",
  38074. height: math.unit(150, "feet")
  38075. },
  38076. {
  38077. name: "Earth's Shadow",
  38078. height: math.unit(6200, "miles")
  38079. },
  38080. {
  38081. name: "Universal Demon",
  38082. height: math.unit(28e9, "parsecs")
  38083. },
  38084. {
  38085. name: "Multiverse God",
  38086. height: math.unit(3, "multiverses")
  38087. },
  38088. ]
  38089. ))
  38090. characterMakers.push(() => makeCharacter(
  38091. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38092. {
  38093. front: {
  38094. height: math.unit(5 + 5/12, "feet"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/fawn/front.svg",
  38098. extra: 1873/1731,
  38099. bottom: 95/1968
  38100. }
  38101. },
  38102. back: {
  38103. height: math.unit(5 + 5/12, "feet"),
  38104. name: "Back",
  38105. image: {
  38106. source: "./media/characters/fawn/back.svg",
  38107. extra: 1813/1700,
  38108. bottom: 14/1827
  38109. }
  38110. },
  38111. hoof: {
  38112. height: math.unit(1.45, "feet"),
  38113. name: "Hoof",
  38114. image: {
  38115. source: "./media/characters/fawn/hoof.svg"
  38116. }
  38117. },
  38118. },
  38119. [
  38120. {
  38121. name: "Normal",
  38122. height: math.unit(5 + 5/12, "feet"),
  38123. default: true
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(2 + 5/12, "feet"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/orion/front.svg",
  38135. extra: 1366/1304,
  38136. bottom: 43/1409
  38137. }
  38138. },
  38139. paw: {
  38140. height: math.unit(0.52, "feet"),
  38141. name: "Paw",
  38142. image: {
  38143. source: "./media/characters/orion/paw.svg"
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Normal",
  38150. height: math.unit(2 + 5/12, "feet"),
  38151. default: true
  38152. },
  38153. ]
  38154. ))
  38155. characterMakers.push(() => makeCharacter(
  38156. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38157. {
  38158. front: {
  38159. height: math.unit(5 + 10/12, "feet"),
  38160. name: "Front",
  38161. image: {
  38162. source: "./media/characters/vera/front.svg",
  38163. extra: 1680/1575,
  38164. bottom: 49/1729
  38165. }
  38166. },
  38167. back: {
  38168. height: math.unit(5 + 10/12, "feet"),
  38169. name: "Back",
  38170. image: {
  38171. source: "./media/characters/vera/back.svg",
  38172. extra: 1700/1588,
  38173. bottom: 18/1718
  38174. }
  38175. },
  38176. arcanine: {
  38177. height: math.unit(6 + 8/12, "feet"),
  38178. name: "Arcanine",
  38179. image: {
  38180. source: "./media/characters/vera/arcanine.svg",
  38181. extra: 1590/1511,
  38182. bottom: 71/1661
  38183. }
  38184. },
  38185. maw: {
  38186. height: math.unit(0.82, "feet"),
  38187. name: "Maw",
  38188. image: {
  38189. source: "./media/characters/vera/maw.svg"
  38190. }
  38191. },
  38192. mawArcanine: {
  38193. height: math.unit(0.97, "feet"),
  38194. name: "Maw (Arcanine)",
  38195. image: {
  38196. source: "./media/characters/vera/maw-arcanine.svg"
  38197. }
  38198. },
  38199. paw: {
  38200. height: math.unit(0.75, "feet"),
  38201. name: "Paw",
  38202. image: {
  38203. source: "./media/characters/vera/paw.svg"
  38204. }
  38205. },
  38206. pawprint: {
  38207. height: math.unit(0.52, "feet"),
  38208. name: "Pawprint",
  38209. image: {
  38210. source: "./media/characters/vera/pawprint.svg"
  38211. }
  38212. },
  38213. },
  38214. [
  38215. {
  38216. name: "Normal",
  38217. height: math.unit(5 + 10/12, "feet"),
  38218. default: true
  38219. },
  38220. {
  38221. name: "Macro",
  38222. height: math.unit(75, "feet")
  38223. },
  38224. ]
  38225. ))
  38226. characterMakers.push(() => makeCharacter(
  38227. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38228. {
  38229. front: {
  38230. height: math.unit(4, "feet"),
  38231. weight: math.unit(40, "lb"),
  38232. name: "Front",
  38233. image: {
  38234. source: "./media/characters/orvan-rabbit/front.svg",
  38235. extra: 1896/1642,
  38236. bottom: 29/1925
  38237. }
  38238. },
  38239. },
  38240. [
  38241. {
  38242. name: "Normal",
  38243. height: math.unit(4, "feet"),
  38244. default: true
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(6, "feet"),
  38253. weight: math.unit(168, "lb"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/lisa/front.svg",
  38257. extra: 2065/1867,
  38258. bottom: 46/2111
  38259. }
  38260. },
  38261. back: {
  38262. height: math.unit(6, "feet"),
  38263. weight: math.unit(168, "lb"),
  38264. name: "Back",
  38265. image: {
  38266. source: "./media/characters/lisa/back.svg",
  38267. extra: 1982/1838,
  38268. bottom: 29/2011
  38269. }
  38270. },
  38271. maw: {
  38272. height: math.unit(0.81, "feet"),
  38273. name: "Maw",
  38274. image: {
  38275. source: "./media/characters/lisa/maw.svg"
  38276. }
  38277. },
  38278. paw: {
  38279. height: math.unit(0.9, "feet"),
  38280. name: "Paw",
  38281. image: {
  38282. source: "./media/characters/lisa/paw.svg"
  38283. }
  38284. },
  38285. caribousune: {
  38286. height: math.unit(7 + 2/12, "feet"),
  38287. weight: math.unit(268, "lb"),
  38288. name: "Caribousune",
  38289. image: {
  38290. source: "./media/characters/lisa/caribousune.svg",
  38291. extra: 1843/1633,
  38292. bottom: 29/1872
  38293. }
  38294. },
  38295. frontCaribousune: {
  38296. height: math.unit(7 + 2/12, "feet"),
  38297. weight: math.unit(268, "lb"),
  38298. name: "Front (Caribousune)",
  38299. image: {
  38300. source: "./media/characters/lisa/front-caribousune.svg",
  38301. extra: 1818/1638,
  38302. bottom: 52/1870
  38303. }
  38304. },
  38305. sideCaribousune: {
  38306. height: math.unit(7 + 2/12, "feet"),
  38307. weight: math.unit(268, "lb"),
  38308. name: "Side (Caribousune)",
  38309. image: {
  38310. source: "./media/characters/lisa/side-caribousune.svg",
  38311. extra: 1851/1635,
  38312. bottom: 16/1867
  38313. }
  38314. },
  38315. backCaribousune: {
  38316. height: math.unit(7 + 2/12, "feet"),
  38317. weight: math.unit(268, "lb"),
  38318. name: "Back (Caribousune)",
  38319. image: {
  38320. source: "./media/characters/lisa/back-caribousune.svg",
  38321. extra: 1801/1604,
  38322. bottom: 44/1845
  38323. }
  38324. },
  38325. caribou: {
  38326. height: math.unit(7 + 2/12, "feet"),
  38327. weight: math.unit(268, "lb"),
  38328. name: "Caribou",
  38329. image: {
  38330. source: "./media/characters/lisa/caribou.svg",
  38331. extra: 1843/1633,
  38332. bottom: 29/1872
  38333. }
  38334. },
  38335. frontCaribou: {
  38336. height: math.unit(7 + 2/12, "feet"),
  38337. weight: math.unit(268, "lb"),
  38338. name: "Front (Caribou)",
  38339. image: {
  38340. source: "./media/characters/lisa/front-caribou.svg",
  38341. extra: 1818/1638,
  38342. bottom: 52/1870
  38343. }
  38344. },
  38345. sideCaribou: {
  38346. height: math.unit(7 + 2/12, "feet"),
  38347. weight: math.unit(268, "lb"),
  38348. name: "Side (Caribou)",
  38349. image: {
  38350. source: "./media/characters/lisa/side-caribou.svg",
  38351. extra: 1851/1635,
  38352. bottom: 16/1867
  38353. }
  38354. },
  38355. backCaribou: {
  38356. height: math.unit(7 + 2/12, "feet"),
  38357. weight: math.unit(268, "lb"),
  38358. name: "Back (Caribou)",
  38359. image: {
  38360. source: "./media/characters/lisa/back-caribou.svg",
  38361. extra: 1801/1604,
  38362. bottom: 44/1845
  38363. }
  38364. },
  38365. mawCaribou: {
  38366. height: math.unit(1.45, "feet"),
  38367. name: "Maw (Caribou)",
  38368. image: {
  38369. source: "./media/characters/lisa/maw-caribou.svg"
  38370. }
  38371. },
  38372. mawCaribousune: {
  38373. height: math.unit(1.45, "feet"),
  38374. name: "Maw (Caribousune)",
  38375. image: {
  38376. source: "./media/characters/lisa/maw-caribousune.svg"
  38377. }
  38378. },
  38379. pawCaribousune: {
  38380. height: math.unit(1.61, "feet"),
  38381. name: "Paw (Caribou)",
  38382. image: {
  38383. source: "./media/characters/lisa/paw-caribousune.svg"
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(6, "feet")
  38391. },
  38392. {
  38393. name: "God Size",
  38394. height: math.unit(72, "feet"),
  38395. default: true
  38396. },
  38397. {
  38398. name: "Towering",
  38399. height: math.unit(288, "feet")
  38400. },
  38401. {
  38402. name: "City Size",
  38403. height: math.unit(48384, "feet")
  38404. },
  38405. {
  38406. name: "Continental",
  38407. height: math.unit(4200, "miles")
  38408. },
  38409. {
  38410. name: "Planet Eater",
  38411. height: math.unit(42, "earths")
  38412. },
  38413. {
  38414. name: "Star Swallower",
  38415. height: math.unit(42, "solarradii")
  38416. },
  38417. {
  38418. name: "System Swallower",
  38419. height: math.unit(84000, "AU")
  38420. },
  38421. {
  38422. name: "Galaxy Gobbler",
  38423. height: math.unit(42, "galaxies")
  38424. },
  38425. {
  38426. name: "Universe Devourer",
  38427. height: math.unit(42, "universes")
  38428. },
  38429. {
  38430. name: "Multiverse Muncher",
  38431. height: math.unit(42, "multiverses")
  38432. },
  38433. ]
  38434. ))
  38435. characterMakers.push(() => makeCharacter(
  38436. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38437. {
  38438. front: {
  38439. height: math.unit(36, "feet"),
  38440. name: "Front",
  38441. image: {
  38442. source: "./media/characters/shadow-rat/front.svg",
  38443. extra: 1845/1758,
  38444. bottom: 83/1928
  38445. }
  38446. },
  38447. },
  38448. [
  38449. {
  38450. name: "Macro",
  38451. height: math.unit(36, "feet"),
  38452. default: true
  38453. },
  38454. ]
  38455. ))
  38456. characterMakers.push(() => makeCharacter(
  38457. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38458. {
  38459. side: {
  38460. height: math.unit(8, "feet"),
  38461. weight: math.unit(2630, "lb"),
  38462. name: "Side",
  38463. image: {
  38464. source: "./media/characters/torallia/side.svg",
  38465. extra: 2164/2021,
  38466. bottom: 371/2535
  38467. }
  38468. },
  38469. },
  38470. [
  38471. {
  38472. name: "Mortal Interaction",
  38473. height: math.unit(8, "feet")
  38474. },
  38475. {
  38476. name: "Natural",
  38477. height: math.unit(24, "feet"),
  38478. default: true
  38479. },
  38480. {
  38481. name: "Giant",
  38482. height: math.unit(80, "feet")
  38483. },
  38484. {
  38485. name: "Kaiju",
  38486. height: math.unit(240, "feet")
  38487. },
  38488. {
  38489. name: "Macro",
  38490. height: math.unit(800, "feet")
  38491. },
  38492. {
  38493. name: "Macro+",
  38494. height: math.unit(2400, "feet")
  38495. },
  38496. {
  38497. name: "Macro++",
  38498. height: math.unit(8000, "feet")
  38499. },
  38500. {
  38501. name: "City-Crushing",
  38502. height: math.unit(24000, "feet")
  38503. },
  38504. {
  38505. name: "Mountain-Mashing",
  38506. height: math.unit(80000, "feet")
  38507. },
  38508. {
  38509. name: "District Demolisher",
  38510. height: math.unit(240000, "feet")
  38511. },
  38512. {
  38513. name: "Tri-County Terror",
  38514. height: math.unit(800000, "feet")
  38515. },
  38516. {
  38517. name: "State Smasher",
  38518. height: math.unit(2.4e6, "feet")
  38519. },
  38520. {
  38521. name: "Nation Nemesis",
  38522. height: math.unit(8e6, "feet")
  38523. },
  38524. {
  38525. name: "Continent Cracker",
  38526. height: math.unit(2.4e7, "feet")
  38527. },
  38528. {
  38529. name: "Planet-Pillaging",
  38530. height: math.unit(8e7, "feet")
  38531. },
  38532. {
  38533. name: "Earth-Eclipsing",
  38534. height: math.unit(2.4e8, "feet")
  38535. },
  38536. {
  38537. name: "Jovian-Jostling",
  38538. height: math.unit(8e8, "feet")
  38539. },
  38540. {
  38541. name: "Gas Giant Gulper",
  38542. height: math.unit(2.4e9, "feet")
  38543. },
  38544. {
  38545. name: "Astral Annihilator",
  38546. height: math.unit(8e9, "feet")
  38547. },
  38548. {
  38549. name: "Celestial Conqueror",
  38550. height: math.unit(2.4e10, "feet")
  38551. },
  38552. {
  38553. name: "Sol-Swallowing",
  38554. height: math.unit(8e10, "feet")
  38555. },
  38556. {
  38557. name: "Hunter of the Heavens",
  38558. height: math.unit(2.4e13, "feet")
  38559. },
  38560. ]
  38561. ))
  38562. characterMakers.push(() => makeCharacter(
  38563. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38564. {
  38565. front: {
  38566. height: math.unit(6 + 8/12, "feet"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/rebecca-pawlson/front.svg",
  38570. extra: 1737/1596,
  38571. bottom: 107/1844
  38572. }
  38573. },
  38574. back: {
  38575. height: math.unit(6 + 8/12, "feet"),
  38576. name: "Back",
  38577. image: {
  38578. source: "./media/characters/rebecca-pawlson/back.svg",
  38579. extra: 1702/1523,
  38580. bottom: 86/1788
  38581. }
  38582. },
  38583. },
  38584. [
  38585. {
  38586. name: "Normal",
  38587. height: math.unit(6 + 8/12, "feet")
  38588. },
  38589. {
  38590. name: "Mini Macro",
  38591. height: math.unit(10, "feet"),
  38592. default: true
  38593. },
  38594. {
  38595. name: "Macro",
  38596. height: math.unit(100, "feet")
  38597. },
  38598. {
  38599. name: "Mega Macro",
  38600. height: math.unit(2500, "feet")
  38601. },
  38602. {
  38603. name: "Giga Macro",
  38604. height: math.unit(50, "miles")
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(7 + 6/12, "feet"),
  38613. weight: math.unit(600, "lb"),
  38614. name: "Front",
  38615. image: {
  38616. source: "./media/characters/moxie-nova/front.svg",
  38617. extra: 1734/1652,
  38618. bottom: 41/1775
  38619. }
  38620. },
  38621. },
  38622. [
  38623. {
  38624. name: "Normal",
  38625. height: math.unit(7 + 6/12, "feet"),
  38626. default: true
  38627. },
  38628. ]
  38629. ))
  38630. characterMakers.push(() => makeCharacter(
  38631. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38632. {
  38633. goat: {
  38634. height: math.unit(4, "feet"),
  38635. weight: math.unit(180, "lb"),
  38636. name: "Goat",
  38637. image: {
  38638. source: "./media/characters/tiffany/goat.svg",
  38639. extra: 1845/1595,
  38640. bottom: 106/1951
  38641. }
  38642. },
  38643. front: {
  38644. height: math.unit(5, "feet"),
  38645. weight: math.unit(150, "lb"),
  38646. name: "Foxcoon",
  38647. image: {
  38648. source: "./media/characters/tiffany/foxcoon.svg",
  38649. extra: 1941/1845,
  38650. bottom: 58/1999
  38651. }
  38652. },
  38653. },
  38654. [
  38655. {
  38656. name: "Normal",
  38657. height: math.unit(5, "feet"),
  38658. default: true
  38659. },
  38660. ]
  38661. ))
  38662. characterMakers.push(() => makeCharacter(
  38663. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38664. {
  38665. front: {
  38666. height: math.unit(8, "feet"),
  38667. weight: math.unit(300, "lb"),
  38668. name: "Front",
  38669. image: {
  38670. source: "./media/characters/raxinath/front.svg",
  38671. extra: 1407/1309,
  38672. bottom: 39/1446
  38673. }
  38674. },
  38675. back: {
  38676. height: math.unit(8, "feet"),
  38677. weight: math.unit(300, "lb"),
  38678. name: "Back",
  38679. image: {
  38680. source: "./media/characters/raxinath/back.svg",
  38681. extra: 1405/1315,
  38682. bottom: 9/1414
  38683. }
  38684. },
  38685. },
  38686. [
  38687. {
  38688. name: "Speck",
  38689. height: math.unit(0.5, "nm")
  38690. },
  38691. {
  38692. name: "Micro",
  38693. height: math.unit(3, "inches")
  38694. },
  38695. {
  38696. name: "Kobold",
  38697. height: math.unit(3, "feet")
  38698. },
  38699. {
  38700. name: "Normal",
  38701. height: math.unit(8, "feet"),
  38702. default: true
  38703. },
  38704. {
  38705. name: "Giant",
  38706. height: math.unit(50, "feet")
  38707. },
  38708. {
  38709. name: "Macro",
  38710. height: math.unit(1000, "feet")
  38711. },
  38712. {
  38713. name: "Megamacro",
  38714. height: math.unit(1, "mile")
  38715. },
  38716. ]
  38717. ))
  38718. characterMakers.push(() => makeCharacter(
  38719. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38720. {
  38721. front: {
  38722. height: math.unit(10, "feet"),
  38723. weight: math.unit(1442, "lb"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/mal-dragon/front.svg",
  38727. extra: 1515/1444,
  38728. bottom: 113/1628
  38729. }
  38730. },
  38731. back: {
  38732. height: math.unit(10, "feet"),
  38733. weight: math.unit(1442, "lb"),
  38734. name: "Back",
  38735. image: {
  38736. source: "./media/characters/mal-dragon/back.svg",
  38737. extra: 1527/1434,
  38738. bottom: 25/1552
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Mortal Interaction",
  38745. height: math.unit(10, "feet"),
  38746. default: true
  38747. },
  38748. {
  38749. name: "Large",
  38750. height: math.unit(30, "feet")
  38751. },
  38752. {
  38753. name: "Kaiju",
  38754. height: math.unit(300, "feet")
  38755. },
  38756. {
  38757. name: "Megamacro",
  38758. height: math.unit(10000, "feet")
  38759. },
  38760. {
  38761. name: "Continent Cracker",
  38762. height: math.unit(30000000, "feet")
  38763. },
  38764. {
  38765. name: "Sol-Swallowing",
  38766. height: math.unit(1e11, "feet")
  38767. },
  38768. {
  38769. name: "Light Universal",
  38770. height: math.unit(5, "universes")
  38771. },
  38772. {
  38773. name: "Universe Atoms",
  38774. height: math.unit(1.829e9, "universes")
  38775. },
  38776. {
  38777. name: "Light Multiversal",
  38778. height: math.unit(5, "multiverses")
  38779. },
  38780. {
  38781. name: "Multiverse Atoms",
  38782. height: math.unit(1.829e9, "multiverses")
  38783. },
  38784. {
  38785. name: "Fabric of Time",
  38786. height: math.unit(1e262, "multiverses")
  38787. },
  38788. ]
  38789. ))
  38790. characterMakers.push(() => makeCharacter(
  38791. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38792. {
  38793. front: {
  38794. height: math.unit(9, "feet"),
  38795. weight: math.unit(1050, "lb"),
  38796. name: "Front",
  38797. image: {
  38798. source: "./media/characters/tabitha/front.svg",
  38799. extra: 2083/1994,
  38800. bottom: 68/2151
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Baseline",
  38807. height: math.unit(9, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Giant",
  38812. height: math.unit(90, "feet")
  38813. },
  38814. {
  38815. name: "Macro",
  38816. height: math.unit(900, "feet")
  38817. },
  38818. {
  38819. name: "Megamacro",
  38820. height: math.unit(9000, "feet")
  38821. },
  38822. {
  38823. name: "City-Crushing",
  38824. height: math.unit(27000, "feet")
  38825. },
  38826. {
  38827. name: "Mountain-Mashing",
  38828. height: math.unit(90000, "feet")
  38829. },
  38830. {
  38831. name: "Nation Nemesis",
  38832. height: math.unit(9e6, "feet")
  38833. },
  38834. {
  38835. name: "Continent Cracker",
  38836. height: math.unit(27e6, "feet")
  38837. },
  38838. {
  38839. name: "Earth-Eclipsing",
  38840. height: math.unit(2.7e8, "feet")
  38841. },
  38842. {
  38843. name: "Gas Giant Gulper",
  38844. height: math.unit(2.7e9, "feet")
  38845. },
  38846. {
  38847. name: "Sol-Swallowing",
  38848. height: math.unit(9e10, "feet")
  38849. },
  38850. {
  38851. name: "Galaxy Gulper",
  38852. height: math.unit(9, "galaxies")
  38853. },
  38854. {
  38855. name: "Cosmos Churner",
  38856. height: math.unit(9, "universes")
  38857. },
  38858. ]
  38859. ))
  38860. characterMakers.push(() => makeCharacter(
  38861. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38862. {
  38863. front: {
  38864. height: math.unit(160, "cm"),
  38865. weight: math.unit(55, "kg"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/tow/front.svg",
  38869. extra: 1751/1722,
  38870. bottom: 74/1825
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Norm",
  38877. height: math.unit(160, "cm")
  38878. },
  38879. {
  38880. name: "Casual",
  38881. height: math.unit(3200, "m"),
  38882. default: true
  38883. },
  38884. {
  38885. name: "Show-Off",
  38886. height: math.unit(160, "km")
  38887. },
  38888. ]
  38889. ))
  38890. characterMakers.push(() => makeCharacter(
  38891. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38892. {
  38893. front: {
  38894. height: math.unit(7 + 11/12, "feet"),
  38895. weight: math.unit(342.8, "lb"),
  38896. name: "Front",
  38897. image: {
  38898. source: "./media/characters/vivian-orca-dragon/front.svg",
  38899. extra: 1890/1865,
  38900. bottom: 28/1918
  38901. }
  38902. },
  38903. },
  38904. [
  38905. {
  38906. name: "Micro",
  38907. height: math.unit(5, "inches")
  38908. },
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(7 + 11/12, "feet"),
  38912. default: true
  38913. },
  38914. {
  38915. name: "Macro",
  38916. height: math.unit(395 + 7/12, "feet")
  38917. },
  38918. ]
  38919. ))
  38920. characterMakers.push(() => makeCharacter(
  38921. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38922. {
  38923. side: {
  38924. height: math.unit(10, "feet"),
  38925. weight: math.unit(1442, "lb"),
  38926. name: "Side",
  38927. image: {
  38928. source: "./media/characters/lotherakon/side.svg",
  38929. extra: 1604/1497,
  38930. bottom: 89/1693
  38931. }
  38932. },
  38933. },
  38934. [
  38935. {
  38936. name: "Mortal Interaction",
  38937. height: math.unit(10, "feet")
  38938. },
  38939. {
  38940. name: "Large",
  38941. height: math.unit(30, "feet"),
  38942. default: true
  38943. },
  38944. {
  38945. name: "Giant",
  38946. height: math.unit(100, "feet")
  38947. },
  38948. {
  38949. name: "Kaiju",
  38950. height: math.unit(300, "feet")
  38951. },
  38952. {
  38953. name: "Macro",
  38954. height: math.unit(1000, "feet")
  38955. },
  38956. {
  38957. name: "Macro+",
  38958. height: math.unit(3000, "feet")
  38959. },
  38960. {
  38961. name: "Megamacro",
  38962. height: math.unit(10000, "feet")
  38963. },
  38964. {
  38965. name: "City-Crushing",
  38966. height: math.unit(30000, "feet")
  38967. },
  38968. {
  38969. name: "Continent Cracker",
  38970. height: math.unit(30e6, "feet")
  38971. },
  38972. {
  38973. name: "Earth Eclipsing",
  38974. height: math.unit(3e8, "feet")
  38975. },
  38976. {
  38977. name: "Gas Giant Gulper",
  38978. height: math.unit(3e9, "feet")
  38979. },
  38980. {
  38981. name: "Sol-Swallowing",
  38982. height: math.unit(1e11, "feet")
  38983. },
  38984. {
  38985. name: "System Swallower",
  38986. height: math.unit(3e14, "feet")
  38987. },
  38988. {
  38989. name: "Galaxy Gulper",
  38990. height: math.unit(10, "galaxies")
  38991. },
  38992. {
  38993. name: "Light Universal",
  38994. height: math.unit(5, "universes")
  38995. },
  38996. {
  38997. name: "Universe Palm",
  38998. height: math.unit(20, "universes")
  38999. },
  39000. {
  39001. name: "Light Multiversal",
  39002. height: math.unit(5, "multiverses")
  39003. },
  39004. {
  39005. name: "Multiverse Palm",
  39006. height: math.unit(20, "multiverses")
  39007. },
  39008. {
  39009. name: "Inferno Incarnate",
  39010. height: math.unit(1e7, "multiverses")
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(8, "feet"),
  39019. weight: math.unit(1200, "lb"),
  39020. name: "Front",
  39021. image: {
  39022. source: "./media/characters/malithee/front.svg",
  39023. extra: 1675/1640,
  39024. bottom: 162/1837
  39025. }
  39026. },
  39027. },
  39028. [
  39029. {
  39030. name: "Mortal Interaction",
  39031. height: math.unit(8, "feet"),
  39032. default: true
  39033. },
  39034. {
  39035. name: "Large",
  39036. height: math.unit(24, "feet")
  39037. },
  39038. {
  39039. name: "Kaiju",
  39040. height: math.unit(240, "feet")
  39041. },
  39042. {
  39043. name: "Megamacro",
  39044. height: math.unit(8000, "feet")
  39045. },
  39046. {
  39047. name: "Continent Cracker",
  39048. height: math.unit(24e6, "feet")
  39049. },
  39050. {
  39051. name: "Earth-Eclipsing",
  39052. height: math.unit(2.4e8, "feet")
  39053. },
  39054. {
  39055. name: "Sol-Swallowing",
  39056. height: math.unit(8e10, "feet")
  39057. },
  39058. {
  39059. name: "Galaxy Gulper",
  39060. height: math.unit(8, "galaxies")
  39061. },
  39062. {
  39063. name: "Light Universal",
  39064. height: math.unit(4, "universes")
  39065. },
  39066. {
  39067. name: "Universe Atoms",
  39068. height: math.unit(1.829e9, "universes")
  39069. },
  39070. {
  39071. name: "Light Multiversal",
  39072. height: math.unit(4, "multiverses")
  39073. },
  39074. {
  39075. name: "Multiverse Atoms",
  39076. height: math.unit(1.829e9, "multiverses")
  39077. },
  39078. {
  39079. name: "Nigh-Omnipresence",
  39080. height: math.unit(8e261, "multiverses")
  39081. },
  39082. ]
  39083. ))
  39084. characterMakers.push(() => makeCharacter(
  39085. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39086. {
  39087. front: {
  39088. height: math.unit(10, "feet"),
  39089. weight: math.unit(1500, "lb"),
  39090. name: "Front",
  39091. image: {
  39092. source: "./media/characters/miles-thestia/front.svg",
  39093. extra: 1812/1727,
  39094. bottom: 86/1898
  39095. }
  39096. },
  39097. back: {
  39098. height: math.unit(10, "feet"),
  39099. weight: math.unit(1500, "lb"),
  39100. name: "Back",
  39101. image: {
  39102. source: "./media/characters/miles-thestia/back.svg",
  39103. extra: 1799/1690,
  39104. bottom: 47/1846
  39105. }
  39106. },
  39107. frontNsfw: {
  39108. height: math.unit(10, "feet"),
  39109. weight: math.unit(1500, "lb"),
  39110. name: "Front (NSFW)",
  39111. image: {
  39112. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39113. extra: 1812/1727,
  39114. bottom: 86/1898
  39115. }
  39116. },
  39117. },
  39118. [
  39119. {
  39120. name: "Mini-Macro",
  39121. height: math.unit(10, "feet"),
  39122. default: true
  39123. },
  39124. ]
  39125. ))
  39126. characterMakers.push(() => makeCharacter(
  39127. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39128. {
  39129. front: {
  39130. height: math.unit(25, "feet"),
  39131. name: "Front",
  39132. image: {
  39133. source: "./media/characters/titan-s-wulf/front.svg",
  39134. extra: 1560/1484,
  39135. bottom: 76/1636
  39136. }
  39137. },
  39138. },
  39139. [
  39140. {
  39141. name: "Smallest",
  39142. height: math.unit(25, "feet"),
  39143. default: true
  39144. },
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(200, "feet")
  39148. },
  39149. {
  39150. name: "Macro",
  39151. height: math.unit(200000, "feet")
  39152. },
  39153. {
  39154. name: "Multiversal Original",
  39155. height: math.unit(10000, "multiverses")
  39156. },
  39157. ]
  39158. ))
  39159. characterMakers.push(() => makeCharacter(
  39160. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39161. {
  39162. front: {
  39163. height: math.unit(8, "feet"),
  39164. weight: math.unit(553, "lb"),
  39165. name: "Front",
  39166. image: {
  39167. source: "./media/characters/tawendeh/front.svg",
  39168. extra: 2365/2268,
  39169. bottom: 83/2448
  39170. }
  39171. },
  39172. frontClothed: {
  39173. height: math.unit(8, "feet"),
  39174. weight: math.unit(553, "lb"),
  39175. name: "Front (Clothed)",
  39176. image: {
  39177. source: "./media/characters/tawendeh/front-clothed.svg",
  39178. extra: 2365/2268,
  39179. bottom: 83/2448
  39180. }
  39181. },
  39182. back: {
  39183. height: math.unit(8, "feet"),
  39184. weight: math.unit(553, "lb"),
  39185. name: "Back",
  39186. image: {
  39187. source: "./media/characters/tawendeh/back.svg",
  39188. extra: 2397/2294,
  39189. bottom: 42/2439
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Mortal Interaction",
  39196. height: math.unit(8, "feet"),
  39197. default: true
  39198. },
  39199. {
  39200. name: "Giant",
  39201. height: math.unit(80, "feet")
  39202. },
  39203. {
  39204. name: "Macro",
  39205. height: math.unit(800, "feet")
  39206. },
  39207. {
  39208. name: "Megamacro",
  39209. height: math.unit(8000, "feet")
  39210. },
  39211. {
  39212. name: "City-Crushing",
  39213. height: math.unit(24000, "feet")
  39214. },
  39215. {
  39216. name: "Mountain-Mashing",
  39217. height: math.unit(80000, "feet")
  39218. },
  39219. {
  39220. name: "Nation Nemesis",
  39221. height: math.unit(8e6, "feet")
  39222. },
  39223. {
  39224. name: "Continent Cracker",
  39225. height: math.unit(24e6, "feet")
  39226. },
  39227. {
  39228. name: "Earth-Eclipsing",
  39229. height: math.unit(2.4e8, "feet")
  39230. },
  39231. {
  39232. name: "Gas Giant Gulper",
  39233. height: math.unit(2.4e9, "feet")
  39234. },
  39235. {
  39236. name: "Sol-Swallowing",
  39237. height: math.unit(8e10, "feet")
  39238. },
  39239. {
  39240. name: "Galaxy Gulper",
  39241. height: math.unit(8, "galaxies")
  39242. },
  39243. {
  39244. name: "Cosmos Churner",
  39245. height: math.unit(8, "universes")
  39246. },
  39247. {
  39248. name: "Omnipotent Otter",
  39249. height: math.unit(80, "universes")
  39250. },
  39251. ]
  39252. ))
  39253. characterMakers.push(() => makeCharacter(
  39254. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39255. {
  39256. front: {
  39257. height: math.unit(2.6, "meters"),
  39258. weight: math.unit(900, "kg"),
  39259. name: "Front",
  39260. image: {
  39261. source: "./media/characters/neesha/front.svg",
  39262. extra: 1803/1653,
  39263. bottom: 128/1931
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(2.6, "meters"),
  39271. default: true
  39272. },
  39273. {
  39274. name: "Macro",
  39275. height: math.unit(50, "meters")
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39281. {
  39282. front: {
  39283. height: math.unit(5, "feet"),
  39284. weight: math.unit(185, "lb"),
  39285. name: "Front",
  39286. image: {
  39287. source: "./media/characters/kyera/front.svg",
  39288. extra: 1875/1790,
  39289. bottom: 96/1971
  39290. }
  39291. },
  39292. },
  39293. [
  39294. {
  39295. name: "Normal",
  39296. height: math.unit(5, "feet"),
  39297. default: true
  39298. },
  39299. ]
  39300. ))
  39301. characterMakers.push(() => makeCharacter(
  39302. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39303. {
  39304. front: {
  39305. height: math.unit(7 + 6/12, "feet"),
  39306. weight: math.unit(540, "lb"),
  39307. name: "Front",
  39308. image: {
  39309. source: "./media/characters/yuko/front.svg",
  39310. extra: 1282/1222,
  39311. bottom: 101/1383
  39312. }
  39313. },
  39314. frontClothed: {
  39315. height: math.unit(7 + 6/12, "feet"),
  39316. weight: math.unit(540, "lb"),
  39317. name: "Front (Clothed)",
  39318. image: {
  39319. source: "./media/characters/yuko/front-clothed.svg",
  39320. extra: 1282/1222,
  39321. bottom: 101/1383
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Normal",
  39328. height: math.unit(7 + 6/12, "feet"),
  39329. default: true
  39330. },
  39331. {
  39332. name: "Macro",
  39333. height: math.unit(26 + 9/12, "feet")
  39334. },
  39335. {
  39336. name: "Megamacro",
  39337. height: math.unit(300, "feet")
  39338. },
  39339. {
  39340. name: "Gigamacro",
  39341. height: math.unit(5000, "feet")
  39342. },
  39343. {
  39344. name: "Planetary",
  39345. height: math.unit(10000, "miles")
  39346. },
  39347. ]
  39348. ))
  39349. characterMakers.push(() => makeCharacter(
  39350. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39351. {
  39352. front: {
  39353. height: math.unit(8 + 2/12, "feet"),
  39354. weight: math.unit(600, "lb"),
  39355. name: "Front",
  39356. image: {
  39357. source: "./media/characters/deam-nitrel/front.svg",
  39358. extra: 1308/1234,
  39359. bottom: 125/1433
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "Normal",
  39366. height: math.unit(8 + 2/12, "feet"),
  39367. default: true
  39368. },
  39369. ]
  39370. ))
  39371. characterMakers.push(() => makeCharacter(
  39372. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39373. {
  39374. front: {
  39375. height: math.unit(6.1, "feet"),
  39376. weight: math.unit(180, "lb"),
  39377. name: "Front",
  39378. image: {
  39379. source: "./media/characters/skyress/front.svg",
  39380. extra: 1045/915,
  39381. bottom: 28/1073
  39382. }
  39383. },
  39384. maw: {
  39385. height: math.unit(1, "feet"),
  39386. name: "Maw",
  39387. image: {
  39388. source: "./media/characters/skyress/maw.svg"
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Normal",
  39395. height: math.unit(6.1, "feet"),
  39396. default: true
  39397. },
  39398. {
  39399. name: "Macro",
  39400. height: math.unit(200, "feet")
  39401. },
  39402. ]
  39403. ))
  39404. characterMakers.push(() => makeCharacter(
  39405. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39406. {
  39407. front: {
  39408. height: math.unit(4 + 2/12, "feet"),
  39409. weight: math.unit(40, "kg"),
  39410. name: "Front",
  39411. image: {
  39412. source: "./media/characters/amethyst-jones/front.svg",
  39413. extra: 1220/1150,
  39414. bottom: 101/1321
  39415. }
  39416. },
  39417. },
  39418. [
  39419. {
  39420. name: "Normal",
  39421. height: math.unit(4 + 2/12, "feet"),
  39422. default: true
  39423. },
  39424. ]
  39425. ))
  39426. characterMakers.push(() => makeCharacter(
  39427. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39428. {
  39429. front: {
  39430. height: math.unit(1.7, "m"),
  39431. weight: math.unit(135, "lb"),
  39432. name: "Front",
  39433. image: {
  39434. source: "./media/characters/jade/front.svg",
  39435. extra: 1818/1767,
  39436. bottom: 32/1850
  39437. }
  39438. },
  39439. back: {
  39440. height: math.unit(1.7, "m"),
  39441. weight: math.unit(135, "lb"),
  39442. name: "Back",
  39443. image: {
  39444. source: "./media/characters/jade/back.svg",
  39445. extra: 1869/1809,
  39446. bottom: 35/1904
  39447. }
  39448. },
  39449. hand: {
  39450. height: math.unit(0.24, "m"),
  39451. name: "Hand",
  39452. image: {
  39453. source: "./media/characters/jade/hand.svg"
  39454. }
  39455. },
  39456. foot: {
  39457. height: math.unit(0.263, "m"),
  39458. name: "Foot",
  39459. image: {
  39460. source: "./media/characters/jade/foot.svg"
  39461. }
  39462. },
  39463. dick: {
  39464. height: math.unit(0.47, "m"),
  39465. name: "Dick",
  39466. image: {
  39467. source: "./media/characters/jade/dick.svg"
  39468. }
  39469. },
  39470. },
  39471. [
  39472. {
  39473. name: "Micro",
  39474. height: math.unit(22, "cm")
  39475. },
  39476. {
  39477. name: "Normal",
  39478. height: math.unit(1.7, "m"),
  39479. default: true
  39480. },
  39481. {
  39482. name: "Macro",
  39483. height: math.unit(152, "m")
  39484. },
  39485. ]
  39486. ))
  39487. characterMakers.push(() => makeCharacter(
  39488. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39489. {
  39490. front: {
  39491. height: math.unit(100, "miles"),
  39492. weight: math.unit(20000, "tons"),
  39493. name: "Front",
  39494. image: {
  39495. source: "./media/characters/cookie/front.svg",
  39496. extra: 1125/1070,
  39497. bottom: 30/1155
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Big",
  39504. height: math.unit(50, "feet")
  39505. },
  39506. {
  39507. name: "Macro",
  39508. height: math.unit(100, "miles"),
  39509. default: true
  39510. },
  39511. {
  39512. name: "Megamacro",
  39513. height: math.unit(90000, "miles")
  39514. },
  39515. ]
  39516. ))
  39517. characterMakers.push(() => makeCharacter(
  39518. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39519. {
  39520. front: {
  39521. height: math.unit(6, "feet"),
  39522. weight: math.unit(145, "lb"),
  39523. name: "Front",
  39524. image: {
  39525. source: "./media/characters/farzian/front.svg",
  39526. extra: 1902/1693,
  39527. bottom: 108/2010
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Macro",
  39534. height: math.unit(500, "feet"),
  39535. default: true
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39541. {
  39542. front: {
  39543. height: math.unit(3 + 6/12, "feet"),
  39544. weight: math.unit(50, "lb"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/kimberly-tilson/front.svg",
  39548. extra: 1400/1322,
  39549. bottom: 36/1436
  39550. }
  39551. },
  39552. back: {
  39553. height: math.unit(3 + 6/12, "feet"),
  39554. weight: math.unit(50, "lb"),
  39555. name: "Back",
  39556. image: {
  39557. source: "./media/characters/kimberly-tilson/back.svg",
  39558. extra: 1370/1307,
  39559. bottom: 20/1390
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Normal",
  39566. height: math.unit(3 + 6/12, "feet"),
  39567. default: true
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39573. {
  39574. front: {
  39575. height: math.unit(1148, "feet"),
  39576. weight: math.unit(34057, "lb"),
  39577. name: "Front",
  39578. image: {
  39579. source: "./media/characters/harthos/front.svg",
  39580. extra: 1391/1339,
  39581. bottom: 13/1404
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Macro",
  39588. height: math.unit(1148, "feet"),
  39589. default: true
  39590. },
  39591. ]
  39592. ))
  39593. characterMakers.push(() => makeCharacter(
  39594. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39595. {
  39596. front: {
  39597. height: math.unit(15, "feet"),
  39598. name: "Front",
  39599. image: {
  39600. source: "./media/characters/hypatia/front.svg",
  39601. extra: 1653/1591,
  39602. bottom: 79/1732
  39603. }
  39604. },
  39605. },
  39606. [
  39607. {
  39608. name: "Normal",
  39609. height: math.unit(15, "feet")
  39610. },
  39611. {
  39612. name: "Small",
  39613. height: math.unit(300, "feet")
  39614. },
  39615. {
  39616. name: "Macro",
  39617. height: math.unit(2500, "feet"),
  39618. default: true
  39619. },
  39620. {
  39621. name: "Mega Macro",
  39622. height: math.unit(1500, "miles")
  39623. },
  39624. {
  39625. name: "Giga Macro",
  39626. height: math.unit(1.5e6, "miles")
  39627. },
  39628. ]
  39629. ))
  39630. characterMakers.push(() => makeCharacter(
  39631. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39632. {
  39633. front: {
  39634. height: math.unit(6, "feet"),
  39635. weight: math.unit(200, "lb"),
  39636. name: "Front",
  39637. image: {
  39638. source: "./media/characters/wulver/front.svg",
  39639. extra: 1724/1632,
  39640. bottom: 130/1854
  39641. }
  39642. },
  39643. frontNsfw: {
  39644. height: math.unit(6, "feet"),
  39645. weight: math.unit(200, "lb"),
  39646. name: "Front (NSFW)",
  39647. image: {
  39648. source: "./media/characters/wulver/front-nsfw.svg",
  39649. extra: 1724/1632,
  39650. bottom: 130/1854
  39651. }
  39652. },
  39653. },
  39654. [
  39655. {
  39656. name: "Human-Sized",
  39657. height: math.unit(6, "feet")
  39658. },
  39659. {
  39660. name: "Normal",
  39661. height: math.unit(4, "meters"),
  39662. default: true
  39663. },
  39664. {
  39665. name: "Large",
  39666. height: math.unit(6, "m")
  39667. },
  39668. ]
  39669. ))
  39670. characterMakers.push(() => makeCharacter(
  39671. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39672. {
  39673. front: {
  39674. height: math.unit(7, "feet"),
  39675. name: "Front",
  39676. image: {
  39677. source: "./media/characters/maru/front.svg",
  39678. extra: 1595/1570,
  39679. bottom: 0/1595
  39680. }
  39681. },
  39682. },
  39683. [
  39684. {
  39685. name: "Normal",
  39686. height: math.unit(7, "feet"),
  39687. default: true
  39688. },
  39689. {
  39690. name: "Macro",
  39691. height: math.unit(700, "feet")
  39692. },
  39693. {
  39694. name: "Mega Macro",
  39695. height: math.unit(25, "miles")
  39696. },
  39697. ]
  39698. ))
  39699. characterMakers.push(() => makeCharacter(
  39700. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39701. {
  39702. front: {
  39703. height: math.unit(6, "feet"),
  39704. weight: math.unit(170, "lb"),
  39705. name: "Front",
  39706. image: {
  39707. source: "./media/characters/xenon/front.svg",
  39708. extra: 1376/1305,
  39709. bottom: 56/1432
  39710. }
  39711. },
  39712. back: {
  39713. height: math.unit(6, "feet"),
  39714. weight: math.unit(170, "lb"),
  39715. name: "Back",
  39716. image: {
  39717. source: "./media/characters/xenon/back.svg",
  39718. extra: 1328/1259,
  39719. bottom: 95/1423
  39720. }
  39721. },
  39722. maw: {
  39723. height: math.unit(0.52, "feet"),
  39724. name: "Maw",
  39725. image: {
  39726. source: "./media/characters/xenon/maw.svg"
  39727. }
  39728. },
  39729. hand: {
  39730. height: math.unit(0.82, "feet"),
  39731. name: "Hand",
  39732. image: {
  39733. source: "./media/characters/xenon/hand.svg"
  39734. }
  39735. },
  39736. foot: {
  39737. height: math.unit(1.13, "feet"),
  39738. name: "Foot",
  39739. image: {
  39740. source: "./media/characters/xenon/foot.svg"
  39741. }
  39742. },
  39743. },
  39744. [
  39745. {
  39746. name: "Micro",
  39747. height: math.unit(0.8, "inches")
  39748. },
  39749. {
  39750. name: "Normal",
  39751. height: math.unit(6, "feet")
  39752. },
  39753. {
  39754. name: "Macro",
  39755. height: math.unit(50, "feet"),
  39756. default: true
  39757. },
  39758. {
  39759. name: "Macro+",
  39760. height: math.unit(250, "feet")
  39761. },
  39762. {
  39763. name: "Megamacro",
  39764. height: math.unit(1500, "feet")
  39765. },
  39766. ]
  39767. ))
  39768. characterMakers.push(() => makeCharacter(
  39769. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39770. {
  39771. front: {
  39772. height: math.unit(7 + 5/12, "feet"),
  39773. name: "Front",
  39774. image: {
  39775. source: "./media/characters/zane/front.svg",
  39776. extra: 1260/1203,
  39777. bottom: 94/1354
  39778. }
  39779. },
  39780. back: {
  39781. height: math.unit(5.05, "feet"),
  39782. name: "Back",
  39783. image: {
  39784. source: "./media/characters/zane/back.svg",
  39785. extra: 893/829,
  39786. bottom: 30/923
  39787. }
  39788. },
  39789. werewolf: {
  39790. height: math.unit(11, "feet"),
  39791. name: "Werewolf",
  39792. image: {
  39793. source: "./media/characters/zane/werewolf.svg",
  39794. extra: 1383/1323,
  39795. bottom: 89/1472
  39796. }
  39797. },
  39798. foot: {
  39799. height: math.unit(1.46, "feet"),
  39800. name: "Foot",
  39801. image: {
  39802. source: "./media/characters/zane/foot.svg"
  39803. }
  39804. },
  39805. footFront: {
  39806. height: math.unit(0.784, "feet"),
  39807. name: "Foot (Front)",
  39808. image: {
  39809. source: "./media/characters/zane/foot-front.svg"
  39810. }
  39811. },
  39812. dick: {
  39813. height: math.unit(1.95, "feet"),
  39814. name: "Dick",
  39815. image: {
  39816. source: "./media/characters/zane/dick.svg"
  39817. }
  39818. },
  39819. dickWerewolf: {
  39820. height: math.unit(3.77, "feet"),
  39821. name: "Dick (Werewolf)",
  39822. image: {
  39823. source: "./media/characters/zane/dick.svg"
  39824. }
  39825. },
  39826. },
  39827. [
  39828. {
  39829. name: "Normal",
  39830. height: math.unit(7 + 5/12, "feet"),
  39831. default: true
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(6 + 2/12, "feet"),
  39840. weight: math.unit(284, "lb"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/benni-desparque/front.svg",
  39844. extra: 1353/1126,
  39845. bottom: 69/1422
  39846. }
  39847. },
  39848. },
  39849. [
  39850. {
  39851. name: "Civilian",
  39852. height: math.unit(6 + 2/12, "feet")
  39853. },
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(98, "feet"),
  39857. default: true
  39858. },
  39859. {
  39860. name: "Kaiju Fighter",
  39861. height: math.unit(268, "feet")
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(5, "feet"),
  39870. weight: math.unit(105, "lb"),
  39871. name: "Front",
  39872. image: {
  39873. source: "./media/characters/maxine/front.svg",
  39874. extra: 1386/1250,
  39875. bottom: 71/1457
  39876. }
  39877. },
  39878. },
  39879. [
  39880. {
  39881. name: "Normal",
  39882. height: math.unit(5, "feet"),
  39883. default: true
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(11 + 7/12, "feet"),
  39892. weight: math.unit(9576, "lb"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/scaly/front.svg",
  39896. extra: 888/867,
  39897. bottom: 36/924
  39898. }
  39899. },
  39900. },
  39901. [
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(11 + 7/12, "feet"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(9, "inches"),
  39914. name: "Front",
  39915. image: {
  39916. source: "./media/characters/saelria/front.svg",
  39917. extra: 662/621,
  39918. bottom: 12/674
  39919. }
  39920. },
  39921. },
  39922. [
  39923. {
  39924. name: "Tiny",
  39925. height: math.unit(9, "inches"),
  39926. default: true
  39927. },
  39928. ]
  39929. ))
  39930. characterMakers.push(() => makeCharacter(
  39931. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39932. {
  39933. front: {
  39934. height: math.unit(80, "meters"),
  39935. weight: math.unit(7000, "tonnes"),
  39936. name: "Front",
  39937. image: {
  39938. source: "./media/characters/tef/front.svg",
  39939. extra: 2036/1991,
  39940. bottom: 54/2090
  39941. }
  39942. },
  39943. back: {
  39944. height: math.unit(80, "meters"),
  39945. weight: math.unit(7000, "tonnes"),
  39946. name: "Back",
  39947. image: {
  39948. source: "./media/characters/tef/back.svg",
  39949. extra: 2036/1991,
  39950. bottom: 54/2090
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Macro",
  39957. height: math.unit(80, "meters"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(13, "feet"),
  39967. weight: math.unit(6, "tons"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/rover/front.svg",
  39971. extra: 1233/1156,
  39972. bottom: 50/1283
  39973. }
  39974. },
  39975. back: {
  39976. height: math.unit(13, "feet"),
  39977. weight: math.unit(6, "tons"),
  39978. name: "Back",
  39979. image: {
  39980. source: "./media/characters/rover/back.svg",
  39981. extra: 1327/1258,
  39982. bottom: 39/1366
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Normal",
  39989. height: math.unit(13, "feet"),
  39990. default: true
  39991. },
  39992. {
  39993. name: "Macro",
  39994. height: math.unit(1300, "feet")
  39995. },
  39996. {
  39997. name: "Megamacro",
  39998. height: math.unit(1300, "miles")
  39999. },
  40000. {
  40001. name: "Gigamacro",
  40002. height: math.unit(1300000, "miles")
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40008. {
  40009. front: {
  40010. height: math.unit(6, "feet"),
  40011. weight: math.unit(150, "lb"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/ariz/front.svg",
  40015. extra: 1401/1346,
  40016. bottom: 5/1406
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Normal",
  40023. height: math.unit(10, "feet"),
  40024. default: true
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(6, "feet"),
  40033. weight: math.unit(140, "lb"),
  40034. name: "Front",
  40035. image: {
  40036. source: "./media/characters/sigrun/front.svg",
  40037. extra: 1418/1359,
  40038. bottom: 27/1445
  40039. }
  40040. },
  40041. },
  40042. [
  40043. {
  40044. name: "Macro",
  40045. height: math.unit(35, "feet"),
  40046. default: true
  40047. },
  40048. ]
  40049. ))
  40050. characterMakers.push(() => makeCharacter(
  40051. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40052. {
  40053. front: {
  40054. height: math.unit(6, "feet"),
  40055. weight: math.unit(150, "lb"),
  40056. name: "Front",
  40057. image: {
  40058. source: "./media/characters/numin/front.svg",
  40059. extra: 1433/1388,
  40060. bottom: 12/1445
  40061. }
  40062. },
  40063. },
  40064. [
  40065. {
  40066. name: "Macro",
  40067. height: math.unit(21.5, "km"),
  40068. default: true
  40069. },
  40070. ]
  40071. ))
  40072. characterMakers.push(() => makeCharacter(
  40073. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40074. {
  40075. front: {
  40076. height: math.unit(6, "feet"),
  40077. weight: math.unit(463, "lb"),
  40078. name: "Front",
  40079. image: {
  40080. source: "./media/characters/melwa/front.svg",
  40081. extra: 1307/1248,
  40082. bottom: 93/1400
  40083. }
  40084. },
  40085. },
  40086. [
  40087. {
  40088. name: "Macro",
  40089. height: math.unit(50, "meters"),
  40090. default: true
  40091. },
  40092. ]
  40093. ))
  40094. characterMakers.push(() => makeCharacter(
  40095. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40096. {
  40097. front: {
  40098. height: math.unit(325, "feet"),
  40099. name: "Front",
  40100. image: {
  40101. source: "./media/characters/zorkaiju/front.svg",
  40102. extra: 1955/1814,
  40103. bottom: 40/1995
  40104. }
  40105. },
  40106. frontExtended: {
  40107. height: math.unit(325, "feet"),
  40108. name: "Front (Extended)",
  40109. image: {
  40110. source: "./media/characters/zorkaiju/front-extended.svg",
  40111. extra: 1955/1814,
  40112. bottom: 40/1995
  40113. }
  40114. },
  40115. side: {
  40116. height: math.unit(325, "feet"),
  40117. name: "Side",
  40118. image: {
  40119. source: "./media/characters/zorkaiju/side.svg",
  40120. extra: 1495/1396,
  40121. bottom: 17/1512
  40122. }
  40123. },
  40124. sideExtended: {
  40125. height: math.unit(325, "feet"),
  40126. name: "Side (Extended)",
  40127. image: {
  40128. source: "./media/characters/zorkaiju/side-extended.svg",
  40129. extra: 1495/1396,
  40130. bottom: 17/1512
  40131. }
  40132. },
  40133. back: {
  40134. height: math.unit(325, "feet"),
  40135. name: "Back",
  40136. image: {
  40137. source: "./media/characters/zorkaiju/back.svg",
  40138. extra: 1959/1821,
  40139. bottom: 31/1990
  40140. }
  40141. },
  40142. backExtended: {
  40143. height: math.unit(325, "feet"),
  40144. name: "Back (Extended)",
  40145. image: {
  40146. source: "./media/characters/zorkaiju/back-extended.svg",
  40147. extra: 1959/1821,
  40148. bottom: 31/1990
  40149. }
  40150. },
  40151. hand: {
  40152. height: math.unit(58.4, "feet"),
  40153. name: "Hand",
  40154. image: {
  40155. source: "./media/characters/zorkaiju/hand.svg"
  40156. }
  40157. },
  40158. handExtended: {
  40159. height: math.unit(61.4, "feet"),
  40160. name: "Hand (Extended)",
  40161. image: {
  40162. source: "./media/characters/zorkaiju/hand-extended.svg"
  40163. }
  40164. },
  40165. foot: {
  40166. height: math.unit(95, "feet"),
  40167. name: "Foot",
  40168. image: {
  40169. source: "./media/characters/zorkaiju/foot.svg"
  40170. }
  40171. },
  40172. leftArm: {
  40173. height: math.unit(59, "feet"),
  40174. name: "Left Arm",
  40175. image: {
  40176. source: "./media/characters/zorkaiju/left-arm.svg"
  40177. }
  40178. },
  40179. rightArm: {
  40180. height: math.unit(59, "feet"),
  40181. name: "Right Arm",
  40182. image: {
  40183. source: "./media/characters/zorkaiju/right-arm.svg"
  40184. }
  40185. },
  40186. tail: {
  40187. height: math.unit(104, "feet"),
  40188. name: "Tail",
  40189. image: {
  40190. source: "./media/characters/zorkaiju/tail.svg"
  40191. }
  40192. },
  40193. tailExtended: {
  40194. height: math.unit(104, "feet"),
  40195. name: "Tail (Extended)",
  40196. image: {
  40197. source: "./media/characters/zorkaiju/tail-extended.svg"
  40198. }
  40199. },
  40200. tailBottom: {
  40201. height: math.unit(104, "feet"),
  40202. name: "Tail Bottom",
  40203. image: {
  40204. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40205. }
  40206. },
  40207. crystal: {
  40208. height: math.unit(27.54, "feet"),
  40209. name: "Crystal",
  40210. image: {
  40211. source: "./media/characters/zorkaiju/crystal.svg"
  40212. }
  40213. },
  40214. },
  40215. [
  40216. {
  40217. name: "Kaiju",
  40218. height: math.unit(325, "feet"),
  40219. default: true
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40225. {
  40226. front: {
  40227. height: math.unit(6 + 1/12, "feet"),
  40228. weight: math.unit(115, "lb"),
  40229. name: "Front",
  40230. image: {
  40231. source: "./media/characters/bailey-belfry/front.svg",
  40232. extra: 1240/1121,
  40233. bottom: 101/1341
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Normal",
  40240. height: math.unit(6 + 1/12, "feet"),
  40241. default: true
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40247. {
  40248. side: {
  40249. height: math.unit(4, "meters"),
  40250. weight: math.unit(250, "kg"),
  40251. name: "Side",
  40252. image: {
  40253. source: "./media/characters/blacky/side.svg",
  40254. extra: 1027/919,
  40255. bottom: 43/1070
  40256. }
  40257. },
  40258. maw: {
  40259. height: math.unit(1, "meters"),
  40260. name: "Maw",
  40261. image: {
  40262. source: "./media/characters/blacky/maw.svg"
  40263. }
  40264. },
  40265. paw: {
  40266. height: math.unit(1, "meters"),
  40267. name: "Paw",
  40268. image: {
  40269. source: "./media/characters/blacky/paw.svg"
  40270. }
  40271. },
  40272. },
  40273. [
  40274. {
  40275. name: "Normal",
  40276. height: math.unit(4, "meters"),
  40277. default: true
  40278. },
  40279. ]
  40280. ))
  40281. characterMakers.push(() => makeCharacter(
  40282. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40283. {
  40284. front: {
  40285. height: math.unit(170, "cm"),
  40286. weight: math.unit(66, "kg"),
  40287. name: "Front",
  40288. image: {
  40289. source: "./media/characters/thux-ei/front.svg",
  40290. extra: 1109/1011,
  40291. bottom: 8/1117
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(170, "cm"),
  40299. default: true
  40300. },
  40301. ]
  40302. ))
  40303. characterMakers.push(() => makeCharacter(
  40304. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40305. {
  40306. front: {
  40307. height: math.unit(5, "feet"),
  40308. weight: math.unit(120, "lb"),
  40309. name: "Front",
  40310. image: {
  40311. source: "./media/characters/roxanne-voltaire/front.svg",
  40312. extra: 1901/1779,
  40313. bottom: 53/1954
  40314. }
  40315. },
  40316. },
  40317. [
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(5, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "Giant",
  40325. height: math.unit(50, "feet")
  40326. },
  40327. {
  40328. name: "Titan",
  40329. height: math.unit(500, "feet")
  40330. },
  40331. {
  40332. name: "Macro",
  40333. height: math.unit(5000, "feet")
  40334. },
  40335. {
  40336. name: "Megamacro",
  40337. height: math.unit(50000, "feet")
  40338. },
  40339. {
  40340. name: "Gigamacro",
  40341. height: math.unit(500000, "feet")
  40342. },
  40343. {
  40344. name: "Teramacro",
  40345. height: math.unit(5e6, "feet")
  40346. },
  40347. ]
  40348. ))
  40349. characterMakers.push(() => makeCharacter(
  40350. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40351. {
  40352. front: {
  40353. height: math.unit(6 + 2/12, "feet"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/squeaks/front.svg",
  40357. extra: 1823/1768,
  40358. bottom: 138/1961
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Micro",
  40365. height: math.unit(0.5, "inches")
  40366. },
  40367. {
  40368. name: "Normal",
  40369. height: math.unit(6 + 2/12, "feet"),
  40370. default: true
  40371. },
  40372. {
  40373. name: "Macro",
  40374. height: math.unit(600, "feet")
  40375. },
  40376. ]
  40377. ))
  40378. characterMakers.push(() => makeCharacter(
  40379. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40380. {
  40381. front: {
  40382. height: math.unit(1.72, "meters"),
  40383. name: "Front",
  40384. image: {
  40385. source: "./media/characters/archinger/front.svg",
  40386. extra: 1861/1675,
  40387. bottom: 125/1986
  40388. }
  40389. },
  40390. back: {
  40391. height: math.unit(1.72, "meters"),
  40392. name: "Back",
  40393. image: {
  40394. source: "./media/characters/archinger/back.svg",
  40395. extra: 1844/1701,
  40396. bottom: 104/1948
  40397. }
  40398. },
  40399. cock: {
  40400. height: math.unit(0.59, "feet"),
  40401. name: "Cock",
  40402. image: {
  40403. source: "./media/characters/archinger/cock.svg"
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Normal",
  40410. height: math.unit(1.72, "meters"),
  40411. default: true
  40412. },
  40413. {
  40414. name: "Macro",
  40415. height: math.unit(84, "meters")
  40416. },
  40417. {
  40418. name: "Macro+",
  40419. height: math.unit(112, "meters")
  40420. },
  40421. {
  40422. name: "Macro++",
  40423. height: math.unit(960, "meters")
  40424. },
  40425. {
  40426. name: "Macro+++",
  40427. height: math.unit(4, "km")
  40428. },
  40429. {
  40430. name: "Macro++++",
  40431. height: math.unit(48, "km")
  40432. },
  40433. {
  40434. name: "Macro+++++",
  40435. height: math.unit(4500, "km")
  40436. },
  40437. ]
  40438. ))
  40439. characterMakers.push(() => makeCharacter(
  40440. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40441. {
  40442. front: {
  40443. height: math.unit(5 + 5/12, "feet"),
  40444. name: "Front",
  40445. image: {
  40446. source: "./media/characters/alsnapz/front.svg",
  40447. extra: 1157/1065,
  40448. bottom: 42/1199
  40449. }
  40450. },
  40451. },
  40452. [
  40453. {
  40454. name: "Normal",
  40455. height: math.unit(5 + 5/12, "feet"),
  40456. default: true
  40457. },
  40458. ]
  40459. ))
  40460. characterMakers.push(() => makeCharacter(
  40461. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40462. {
  40463. side: {
  40464. height: math.unit(3.2, "earths"),
  40465. name: "Side",
  40466. image: {
  40467. source: "./media/characters/mag/side.svg",
  40468. extra: 1331/1008,
  40469. bottom: 52/1383
  40470. }
  40471. },
  40472. wing: {
  40473. height: math.unit(1.94, "earths"),
  40474. name: "Wing",
  40475. image: {
  40476. source: "./media/characters/mag/wing.svg"
  40477. }
  40478. },
  40479. dick: {
  40480. height: math.unit(1.8, "earths"),
  40481. name: "Dick",
  40482. image: {
  40483. source: "./media/characters/mag/dick.svg"
  40484. }
  40485. },
  40486. ass: {
  40487. height: math.unit(1.33, "earths"),
  40488. name: "Ass",
  40489. image: {
  40490. source: "./media/characters/mag/ass.svg"
  40491. }
  40492. },
  40493. head: {
  40494. height: math.unit(1.1, "earths"),
  40495. name: "Head",
  40496. image: {
  40497. source: "./media/characters/mag/head.svg"
  40498. }
  40499. },
  40500. maw: {
  40501. height: math.unit(1.62, "earths"),
  40502. name: "Maw",
  40503. image: {
  40504. source: "./media/characters/mag/maw.svg"
  40505. }
  40506. },
  40507. },
  40508. [
  40509. {
  40510. name: "Small",
  40511. height: math.unit(162, "feet")
  40512. },
  40513. {
  40514. name: "Normal",
  40515. height: math.unit(3.2, "earths"),
  40516. default: true
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40522. {
  40523. front: {
  40524. height: math.unit(512, "feet"),
  40525. weight: math.unit(63509, "tonnes"),
  40526. name: "Front",
  40527. image: {
  40528. source: "./media/characters/vorrel-harroc/front.svg",
  40529. extra: 1075/1063,
  40530. bottom: 62/1137
  40531. }
  40532. },
  40533. },
  40534. [
  40535. {
  40536. name: "Normal",
  40537. height: math.unit(10, "feet")
  40538. },
  40539. {
  40540. name: "Macro",
  40541. height: math.unit(512, "feet"),
  40542. default: true
  40543. },
  40544. {
  40545. name: "Megamacro",
  40546. height: math.unit(256, "miles")
  40547. },
  40548. {
  40549. name: "Gigamacro",
  40550. height: math.unit(4096, "miles")
  40551. },
  40552. ]
  40553. ))
  40554. characterMakers.push(() => makeCharacter(
  40555. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40556. {
  40557. side: {
  40558. height: math.unit(50, "feet"),
  40559. name: "Side",
  40560. image: {
  40561. source: "./media/characters/froimar/side.svg",
  40562. extra: 855/638,
  40563. bottom: 99/954
  40564. }
  40565. },
  40566. },
  40567. [
  40568. {
  40569. name: "Macro",
  40570. height: math.unit(50, "feet"),
  40571. default: true
  40572. },
  40573. ]
  40574. ))
  40575. characterMakers.push(() => makeCharacter(
  40576. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40577. {
  40578. front: {
  40579. height: math.unit(210, "miles"),
  40580. name: "Front",
  40581. image: {
  40582. source: "./media/characters/timothy/front.svg",
  40583. extra: 1007/943,
  40584. bottom: 62/1069
  40585. }
  40586. },
  40587. frontSkirt: {
  40588. height: math.unit(210, "miles"),
  40589. name: "Front (Skirt)",
  40590. image: {
  40591. source: "./media/characters/timothy/front-skirt.svg",
  40592. extra: 1007/943,
  40593. bottom: 62/1069
  40594. }
  40595. },
  40596. frontCoat: {
  40597. height: math.unit(210, "miles"),
  40598. name: "Front (Coat)",
  40599. image: {
  40600. source: "./media/characters/timothy/front-coat.svg",
  40601. extra: 1007/943,
  40602. bottom: 62/1069
  40603. }
  40604. },
  40605. },
  40606. [
  40607. {
  40608. name: "Macro",
  40609. height: math.unit(210, "miles"),
  40610. default: true
  40611. },
  40612. {
  40613. name: "Megamacro",
  40614. height: math.unit(210000, "miles")
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(188, "feet"),
  40623. name: "Front",
  40624. image: {
  40625. source: "./media/characters/pyotr/front.svg",
  40626. extra: 1912/1826,
  40627. bottom: 18/1930
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Macro",
  40634. height: math.unit(188, "feet"),
  40635. default: true
  40636. },
  40637. {
  40638. name: "Megamacro",
  40639. height: math.unit(8, "miles")
  40640. },
  40641. ]
  40642. ))
  40643. characterMakers.push(() => makeCharacter(
  40644. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40645. {
  40646. side: {
  40647. height: math.unit(10, "feet"),
  40648. weight: math.unit(4500, "lb"),
  40649. name: "Side",
  40650. image: {
  40651. source: "./media/characters/ackart/side.svg",
  40652. extra: 1776/1668,
  40653. bottom: 116/1892
  40654. }
  40655. },
  40656. },
  40657. [
  40658. {
  40659. name: "Normal",
  40660. height: math.unit(10, "feet"),
  40661. default: true
  40662. },
  40663. ]
  40664. ))
  40665. characterMakers.push(() => makeCharacter(
  40666. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40667. {
  40668. side: {
  40669. height: math.unit(21, "feet"),
  40670. name: "Side",
  40671. image: {
  40672. source: "./media/characters/nolow/side.svg",
  40673. extra: 1484/1434,
  40674. bottom: 85/1569
  40675. }
  40676. },
  40677. sideErect: {
  40678. height: math.unit(21, "feet"),
  40679. name: "Side-erect",
  40680. image: {
  40681. source: "./media/characters/nolow/side-erect.svg",
  40682. extra: 1484/1434,
  40683. bottom: 85/1569
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Regular",
  40690. height: math.unit(12, "feet")
  40691. },
  40692. {
  40693. name: "Big Chee",
  40694. height: math.unit(21, "feet"),
  40695. default: true
  40696. },
  40697. ]
  40698. ))
  40699. characterMakers.push(() => makeCharacter(
  40700. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40701. {
  40702. front: {
  40703. height: math.unit(7, "feet"),
  40704. weight: math.unit(250, "lb"),
  40705. name: "Front",
  40706. image: {
  40707. source: "./media/characters/nines/front.svg",
  40708. extra: 1741/1607,
  40709. bottom: 41/1782
  40710. }
  40711. },
  40712. side: {
  40713. height: math.unit(7, "feet"),
  40714. weight: math.unit(250, "lb"),
  40715. name: "Side",
  40716. image: {
  40717. source: "./media/characters/nines/side.svg",
  40718. extra: 1854/1735,
  40719. bottom: 93/1947
  40720. }
  40721. },
  40722. back: {
  40723. height: math.unit(7, "feet"),
  40724. weight: math.unit(250, "lb"),
  40725. name: "Back",
  40726. image: {
  40727. source: "./media/characters/nines/back.svg",
  40728. extra: 1748/1615,
  40729. bottom: 20/1768
  40730. }
  40731. },
  40732. },
  40733. [
  40734. {
  40735. name: "Megamacro",
  40736. height: math.unit(99, "km"),
  40737. default: true
  40738. },
  40739. ]
  40740. ))
  40741. characterMakers.push(() => makeCharacter(
  40742. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40743. {
  40744. front: {
  40745. height: math.unit(5 + 10/12, "feet"),
  40746. weight: math.unit(210, "lb"),
  40747. name: "Front",
  40748. image: {
  40749. source: "./media/characters/zenith/front.svg",
  40750. extra: 1531/1452,
  40751. bottom: 198/1729
  40752. }
  40753. },
  40754. back: {
  40755. height: math.unit(5 + 10/12, "feet"),
  40756. weight: math.unit(210, "lb"),
  40757. name: "Back",
  40758. image: {
  40759. source: "./media/characters/zenith/back.svg",
  40760. extra: 1571/1487,
  40761. bottom: 75/1646
  40762. }
  40763. },
  40764. },
  40765. [
  40766. {
  40767. name: "Normal",
  40768. height: math.unit(5 + 10/12, "feet"),
  40769. default: true
  40770. }
  40771. ]
  40772. ))
  40773. characterMakers.push(() => makeCharacter(
  40774. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40775. {
  40776. front: {
  40777. height: math.unit(4, "feet"),
  40778. weight: math.unit(60, "lb"),
  40779. name: "Front",
  40780. image: {
  40781. source: "./media/characters/jasper/front.svg",
  40782. extra: 1450/1379,
  40783. bottom: 19/1469
  40784. }
  40785. },
  40786. },
  40787. [
  40788. {
  40789. name: "Normal",
  40790. height: math.unit(4, "feet"),
  40791. default: true
  40792. },
  40793. ]
  40794. ))
  40795. characterMakers.push(() => makeCharacter(
  40796. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40797. {
  40798. front: {
  40799. height: math.unit(6 + 5/12, "feet"),
  40800. weight: math.unit(290, "lb"),
  40801. name: "Front",
  40802. image: {
  40803. source: "./media/characters/tiberius-thyben/front.svg",
  40804. extra: 757/739,
  40805. bottom: 39/796
  40806. }
  40807. },
  40808. },
  40809. [
  40810. {
  40811. name: "Micro",
  40812. height: math.unit(1.5, "inches")
  40813. },
  40814. {
  40815. name: "Normal",
  40816. height: math.unit(6 + 5/12, "feet"),
  40817. default: true
  40818. },
  40819. {
  40820. name: "Macro",
  40821. height: math.unit(300, "feet")
  40822. },
  40823. ]
  40824. ))
  40825. characterMakers.push(() => makeCharacter(
  40826. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40827. {
  40828. front: {
  40829. height: math.unit(5 + 6/12, "feet"),
  40830. weight: math.unit(60, "kg"),
  40831. name: "Front",
  40832. image: {
  40833. source: "./media/characters/sabre/front.svg",
  40834. extra: 738/671,
  40835. bottom: 27/765
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Teeny",
  40842. height: math.unit(2, "inches")
  40843. },
  40844. {
  40845. name: "Smol",
  40846. height: math.unit(8, "inches")
  40847. },
  40848. {
  40849. name: "Normal",
  40850. height: math.unit(5 + 6/12, "feet"),
  40851. default: true
  40852. },
  40853. {
  40854. name: "Mini-Macro",
  40855. height: math.unit(15, "feet")
  40856. },
  40857. {
  40858. name: "Macro",
  40859. height: math.unit(50, "feet")
  40860. },
  40861. ]
  40862. ))
  40863. characterMakers.push(() => makeCharacter(
  40864. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40865. {
  40866. front: {
  40867. height: math.unit(6 + 4/12, "feet"),
  40868. weight: math.unit(170, "lb"),
  40869. name: "Front",
  40870. image: {
  40871. source: "./media/characters/charlie/front.svg",
  40872. extra: 1348/1228,
  40873. bottom: 15/1363
  40874. }
  40875. },
  40876. },
  40877. [
  40878. {
  40879. name: "Macro",
  40880. height: math.unit(1700, "meters"),
  40881. default: true
  40882. },
  40883. {
  40884. name: "MegaMacro",
  40885. height: math.unit(20400, "meters")
  40886. },
  40887. ]
  40888. ))
  40889. characterMakers.push(() => makeCharacter(
  40890. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40891. {
  40892. front: {
  40893. height: math.unit(6 + 3/12, "feet"),
  40894. weight: math.unit(185, "lb"),
  40895. name: "Front",
  40896. image: {
  40897. source: "./media/characters/susan-grant/front.svg",
  40898. extra: 1351/1327,
  40899. bottom: 26/1377
  40900. }
  40901. },
  40902. },
  40903. [
  40904. {
  40905. name: "Normal",
  40906. height: math.unit(6 + 3/12, "feet"),
  40907. default: true
  40908. },
  40909. {
  40910. name: "Macro",
  40911. height: math.unit(225, "feet")
  40912. },
  40913. {
  40914. name: "Macro+",
  40915. height: math.unit(900, "feet")
  40916. },
  40917. {
  40918. name: "MegaMacro",
  40919. height: math.unit(14400, "feet")
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40925. {
  40926. front: {
  40927. height: math.unit(5 + 4/12, "feet"),
  40928. weight: math.unit(110, "lb"),
  40929. name: "Front",
  40930. image: {
  40931. source: "./media/characters/axel-isanov/front.svg",
  40932. extra: 1096/1065,
  40933. bottom: 13/1109
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Normal",
  40940. height: math.unit(5 + 4/12, "feet"),
  40941. default: true
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(9, "feet"),
  40950. weight: math.unit(467, "lb"),
  40951. name: "Front",
  40952. image: {
  40953. source: "./media/characters/necahual/front.svg",
  40954. extra: 920/873,
  40955. bottom: 26/946
  40956. }
  40957. },
  40958. back: {
  40959. height: math.unit(9, "feet"),
  40960. weight: math.unit(467, "lb"),
  40961. name: "Back",
  40962. image: {
  40963. source: "./media/characters/necahual/back.svg",
  40964. extra: 930/884,
  40965. bottom: 16/946
  40966. }
  40967. },
  40968. frontUnderwear: {
  40969. height: math.unit(9, "feet"),
  40970. weight: math.unit(467, "lb"),
  40971. name: "Front (Underwear)",
  40972. image: {
  40973. source: "./media/characters/necahual/front-underwear.svg",
  40974. extra: 920/873,
  40975. bottom: 26/946
  40976. }
  40977. },
  40978. frontDressed: {
  40979. height: math.unit(9, "feet"),
  40980. weight: math.unit(467, "lb"),
  40981. name: "Front (Dressed)",
  40982. image: {
  40983. source: "./media/characters/necahual/front-dressed.svg",
  40984. extra: 920/873,
  40985. bottom: 26/946
  40986. }
  40987. },
  40988. },
  40989. [
  40990. {
  40991. name: "Comprsesed",
  40992. height: math.unit(9, "feet")
  40993. },
  40994. {
  40995. name: "Natural",
  40996. height: math.unit(15, "feet"),
  40997. default: true
  40998. },
  40999. {
  41000. name: "Boosted",
  41001. height: math.unit(50, "feet")
  41002. },
  41003. {
  41004. name: "Boosted+",
  41005. height: math.unit(150, "feet")
  41006. },
  41007. {
  41008. name: "Max",
  41009. height: math.unit(500, "feet")
  41010. },
  41011. ]
  41012. ))
  41013. characterMakers.push(() => makeCharacter(
  41014. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41015. {
  41016. front: {
  41017. height: math.unit(22 + 1/12, "feet"),
  41018. weight: math.unit(3200, "lb"),
  41019. name: "Front",
  41020. image: {
  41021. source: "./media/characters/theo-acacia/front.svg",
  41022. extra: 1796/1741,
  41023. bottom: 83/1879
  41024. }
  41025. },
  41026. frontUnderwear: {
  41027. height: math.unit(22 + 1/12, "feet"),
  41028. weight: math.unit(3200, "lb"),
  41029. name: "Front (Underwear)",
  41030. image: {
  41031. source: "./media/characters/theo-acacia/front-underwear.svg",
  41032. extra: 1796/1741,
  41033. bottom: 83/1879
  41034. }
  41035. },
  41036. frontNude: {
  41037. height: math.unit(22 + 1/12, "feet"),
  41038. weight: math.unit(3200, "lb"),
  41039. name: "Front (Nude)",
  41040. image: {
  41041. source: "./media/characters/theo-acacia/front-nude.svg",
  41042. extra: 1796/1741,
  41043. bottom: 83/1879
  41044. }
  41045. },
  41046. },
  41047. [
  41048. {
  41049. name: "Normal",
  41050. height: math.unit(22 + 1/12, "feet"),
  41051. default: true
  41052. },
  41053. ]
  41054. ))
  41055. characterMakers.push(() => makeCharacter(
  41056. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41057. {
  41058. front: {
  41059. height: math.unit(20, "feet"),
  41060. name: "Front",
  41061. image: {
  41062. source: "./media/characters/astra/front.svg",
  41063. extra: 1850/1714,
  41064. bottom: 106/1956
  41065. }
  41066. },
  41067. frontUndressed: {
  41068. height: math.unit(20, "feet"),
  41069. name: "Front (Undressed)",
  41070. image: {
  41071. source: "./media/characters/astra/front-undressed.svg",
  41072. extra: 1926/1749,
  41073. bottom: 0/1926
  41074. }
  41075. },
  41076. hand: {
  41077. height: math.unit(1.53, "feet"),
  41078. name: "Hand",
  41079. image: {
  41080. source: "./media/characters/astra/hand.svg"
  41081. }
  41082. },
  41083. paw: {
  41084. height: math.unit(1.53, "feet"),
  41085. name: "Paw",
  41086. image: {
  41087. source: "./media/characters/astra/paw.svg"
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Smallest",
  41094. height: math.unit(20, "feet")
  41095. },
  41096. {
  41097. name: "Normal",
  41098. height: math.unit(1e9, "miles"),
  41099. default: true
  41100. },
  41101. {
  41102. name: "Larger",
  41103. height: math.unit(5, "multiverses")
  41104. },
  41105. {
  41106. name: "Largest",
  41107. height: math.unit(1e9, "multiverses")
  41108. },
  41109. ]
  41110. ))
  41111. characterMakers.push(() => makeCharacter(
  41112. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41113. {
  41114. front: {
  41115. height: math.unit(8, "feet"),
  41116. name: "Front",
  41117. image: {
  41118. source: "./media/characters/breanna/front.svg",
  41119. extra: 1912/1632,
  41120. bottom: 33/1945
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Smallest",
  41127. height: math.unit(8, "feet")
  41128. },
  41129. {
  41130. name: "Normal",
  41131. height: math.unit(1, "mile"),
  41132. default: true
  41133. },
  41134. {
  41135. name: "Maximum",
  41136. height: math.unit(1500000000000, "lightyears")
  41137. },
  41138. ]
  41139. ))
  41140. characterMakers.push(() => makeCharacter(
  41141. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41142. {
  41143. front: {
  41144. height: math.unit(5 + 11/12, "feet"),
  41145. weight: math.unit(155, "lb"),
  41146. name: "Front",
  41147. image: {
  41148. source: "./media/characters/cai/front.svg",
  41149. extra: 1823/1702,
  41150. bottom: 32/1855
  41151. }
  41152. },
  41153. back: {
  41154. height: math.unit(5 + 11/12, "feet"),
  41155. weight: math.unit(155, "lb"),
  41156. name: "Back",
  41157. image: {
  41158. source: "./media/characters/cai/back.svg",
  41159. extra: 1809/1708,
  41160. bottom: 31/1840
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(5 + 11/12, "feet"),
  41168. default: true
  41169. },
  41170. {
  41171. name: "Big",
  41172. height: math.unit(15, "feet")
  41173. },
  41174. {
  41175. name: "Macro",
  41176. height: math.unit(200, "feet")
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41182. {
  41183. front: {
  41184. height: math.unit(5 + 6/12, "feet"),
  41185. weight: math.unit(160, "lb"),
  41186. name: "Front",
  41187. image: {
  41188. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41189. extra: 1227/1174,
  41190. bottom: 37/1264
  41191. }
  41192. },
  41193. },
  41194. [
  41195. {
  41196. name: "Macro",
  41197. height: math.unit(444, "meters"),
  41198. default: true
  41199. },
  41200. ]
  41201. ))
  41202. characterMakers.push(() => makeCharacter(
  41203. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41204. {
  41205. front: {
  41206. height: math.unit(18 + 7/12, "feet"),
  41207. name: "Front",
  41208. image: {
  41209. source: "./media/characters/rex/front.svg",
  41210. extra: 1941/1807,
  41211. bottom: 66/2007
  41212. }
  41213. },
  41214. back: {
  41215. height: math.unit(18 + 7/12, "feet"),
  41216. name: "Back",
  41217. image: {
  41218. source: "./media/characters/rex/back.svg",
  41219. extra: 1937/1822,
  41220. bottom: 42/1979
  41221. }
  41222. },
  41223. boot: {
  41224. height: math.unit(3.45, "feet"),
  41225. name: "Boot",
  41226. image: {
  41227. source: "./media/characters/rex/boot.svg"
  41228. }
  41229. },
  41230. paw: {
  41231. height: math.unit(4.17, "feet"),
  41232. name: "Paw",
  41233. image: {
  41234. source: "./media/characters/rex/paw.svg"
  41235. }
  41236. },
  41237. head: {
  41238. height: math.unit(6.728, "feet"),
  41239. name: "Head",
  41240. image: {
  41241. source: "./media/characters/rex/head.svg"
  41242. }
  41243. },
  41244. },
  41245. [
  41246. {
  41247. name: "Nano",
  41248. height: math.unit(18 + 7/12, "feet")
  41249. },
  41250. {
  41251. name: "Micro",
  41252. height: math.unit(1.5, "megameters")
  41253. },
  41254. {
  41255. name: "Normal",
  41256. height: math.unit(440, "megameters"),
  41257. default: true
  41258. },
  41259. {
  41260. name: "Macro",
  41261. height: math.unit(2.5, "gigameters")
  41262. },
  41263. {
  41264. name: "Gigamacro",
  41265. height: math.unit(2, "galaxies")
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41271. {
  41272. side: {
  41273. height: math.unit(32, "feet"),
  41274. weight: math.unit(250000, "lb"),
  41275. name: "Side",
  41276. image: {
  41277. source: "./media/characters/silverwing/side.svg",
  41278. extra: 1100/1019,
  41279. bottom: 204/1304
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(32, "feet"),
  41287. default: true
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(6 + 6/12, "feet"),
  41296. weight: math.unit(350, "lb"),
  41297. name: "Front",
  41298. image: {
  41299. source: "./media/characters/tristan-hawthorne/front.svg",
  41300. extra: 1159/1124,
  41301. bottom: 37/1196
  41302. }
  41303. },
  41304. },
  41305. [
  41306. {
  41307. name: "Normal",
  41308. height: math.unit(6 + 6/12, "feet"),
  41309. default: true
  41310. },
  41311. ]
  41312. ))
  41313. characterMakers.push(() => makeCharacter(
  41314. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41315. {
  41316. front: {
  41317. height: math.unit(5 + 11/12, "feet"),
  41318. weight: math.unit(190, "lb"),
  41319. name: "Front",
  41320. image: {
  41321. source: "./media/characters/mizu/front.svg",
  41322. extra: 1988/1788,
  41323. bottom: 14/2002
  41324. }
  41325. },
  41326. },
  41327. [
  41328. {
  41329. name: "Normal",
  41330. height: math.unit(5 + 11/12, "feet"),
  41331. default: true
  41332. },
  41333. ]
  41334. ))
  41335. characterMakers.push(() => makeCharacter(
  41336. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41337. {
  41338. front: {
  41339. height: math.unit(6, "feet"),
  41340. name: "Front",
  41341. image: {
  41342. source: "./media/characters/moonlight-rose-terra/front.svg",
  41343. extra: 1434/1252,
  41344. bottom: 48/1482
  41345. }
  41346. },
  41347. },
  41348. [
  41349. {
  41350. name: "TRAPPIST-1D",
  41351. height: math.unit(4992*2, "km")
  41352. },
  41353. {
  41354. name: "Earth",
  41355. height: math.unit(6367*2, "km"),
  41356. default: true
  41357. },
  41358. {
  41359. name: "Kepler-22b",
  41360. height: math.unit(15282*2, "km")
  41361. },
  41362. ]
  41363. ))
  41364. characterMakers.push(() => makeCharacter(
  41365. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41366. {
  41367. front: {
  41368. height: math.unit(6, "feet"),
  41369. name: "Front",
  41370. image: {
  41371. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41372. extra: 1851/1712,
  41373. bottom: 0/1851
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Enceladus",
  41380. height: math.unit(513*2, "km")
  41381. },
  41382. {
  41383. name: "Europe",
  41384. height: math.unit(1560*2, "km")
  41385. },
  41386. {
  41387. name: "Neptune",
  41388. height: math.unit(24622*2, "km"),
  41389. default: true
  41390. },
  41391. {
  41392. name: "CoRoT-9b",
  41393. height: math.unit(75067*2, "km")
  41394. },
  41395. ]
  41396. ))
  41397. characterMakers.push(() => makeCharacter(
  41398. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41399. {
  41400. front: {
  41401. height: math.unit(6, "feet"),
  41402. name: "Front",
  41403. image: {
  41404. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41405. extra: 1367/1286,
  41406. bottom: 55/1422
  41407. }
  41408. },
  41409. },
  41410. [
  41411. {
  41412. name: "Saturn",
  41413. height: math.unit(58232*2, "km")
  41414. },
  41415. {
  41416. name: "Jupiter",
  41417. height: math.unit(69911*2, "km"),
  41418. default: true
  41419. },
  41420. {
  41421. name: "HD 100546 b",
  41422. height: math.unit(482938, "km")
  41423. },
  41424. ]
  41425. ))
  41426. characterMakers.push(() => makeCharacter(
  41427. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41428. {
  41429. front: {
  41430. height: math.unit(1.7, "feet"),
  41431. weight: math.unit(50, "lb"),
  41432. name: "Front",
  41433. image: {
  41434. source: "./media/characters/dechroma/front.svg",
  41435. extra: 1095/859,
  41436. bottom: 64/1159
  41437. }
  41438. },
  41439. },
  41440. [
  41441. {
  41442. name: "Normal",
  41443. height: math.unit(1.7, "feet"),
  41444. default: true
  41445. },
  41446. ]
  41447. ))
  41448. characterMakers.push(() => makeCharacter(
  41449. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41450. {
  41451. side: {
  41452. height: math.unit(30, "feet"),
  41453. name: "Side",
  41454. image: {
  41455. source: "./media/characters/veluren-thanazel/side.svg",
  41456. extra: 1611/633,
  41457. bottom: 118/1729
  41458. }
  41459. },
  41460. front: {
  41461. height: math.unit(30, "feet"),
  41462. name: "Front",
  41463. image: {
  41464. source: "./media/characters/veluren-thanazel/front.svg",
  41465. extra: 1486/636,
  41466. bottom: 238/1724
  41467. }
  41468. },
  41469. head: {
  41470. height: math.unit(21.4, "feet"),
  41471. name: "Head",
  41472. image: {
  41473. source: "./media/characters/veluren-thanazel/head.svg"
  41474. }
  41475. },
  41476. genitals: {
  41477. height: math.unit(19.4, "feet"),
  41478. name: "Genitals",
  41479. image: {
  41480. source: "./media/characters/veluren-thanazel/genitals.svg"
  41481. }
  41482. },
  41483. },
  41484. [
  41485. {
  41486. name: "Social",
  41487. height: math.unit(6, "feet")
  41488. },
  41489. {
  41490. name: "Play",
  41491. height: math.unit(12, "feet")
  41492. },
  41493. {
  41494. name: "True",
  41495. height: math.unit(30, "feet"),
  41496. default: true
  41497. },
  41498. ]
  41499. ))
  41500. characterMakers.push(() => makeCharacter(
  41501. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41502. {
  41503. front: {
  41504. height: math.unit(7 + 6/12, "feet"),
  41505. weight: math.unit(500, "kg"),
  41506. name: "Front",
  41507. image: {
  41508. source: "./media/characters/arcturas/front.svg",
  41509. extra: 1700/1500,
  41510. bottom: 145/1845
  41511. }
  41512. },
  41513. },
  41514. [
  41515. {
  41516. name: "Normal",
  41517. height: math.unit(7 + 6/12, "feet"),
  41518. default: true
  41519. },
  41520. ]
  41521. ))
  41522. characterMakers.push(() => makeCharacter(
  41523. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41524. {
  41525. side: {
  41526. height: math.unit(6, "feet"),
  41527. weight: math.unit(2, "tons"),
  41528. name: "Side",
  41529. image: {
  41530. source: "./media/characters/vitaen/side.svg",
  41531. extra: 1157/617,
  41532. bottom: 122/1279
  41533. }
  41534. },
  41535. },
  41536. [
  41537. {
  41538. name: "Normal",
  41539. height: math.unit(6, "feet"),
  41540. default: true
  41541. },
  41542. ]
  41543. ))
  41544. characterMakers.push(() => makeCharacter(
  41545. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41546. {
  41547. front: {
  41548. height: math.unit(19, "feet"),
  41549. name: "Front",
  41550. image: {
  41551. source: "./media/characters/fia-dreamweaver/front.svg",
  41552. extra: 1630/1504,
  41553. bottom: 25/1655
  41554. }
  41555. },
  41556. },
  41557. [
  41558. {
  41559. name: "Normal",
  41560. height: math.unit(19, "feet"),
  41561. default: true
  41562. },
  41563. ]
  41564. ))
  41565. characterMakers.push(() => makeCharacter(
  41566. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41567. {
  41568. front: {
  41569. height: math.unit(5 + 4/12, "feet"),
  41570. name: "Front",
  41571. image: {
  41572. source: "./media/characters/artan/front.svg",
  41573. extra: 1618/1535,
  41574. bottom: 46/1664
  41575. }
  41576. },
  41577. back: {
  41578. height: math.unit(5 + 4/12, "feet"),
  41579. name: "Back",
  41580. image: {
  41581. source: "./media/characters/artan/back.svg",
  41582. extra: 1618/1543,
  41583. bottom: 31/1649
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Normal",
  41590. height: math.unit(5 + 4/12, "feet"),
  41591. default: true
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41597. {
  41598. side: {
  41599. height: math.unit(182, "cm"),
  41600. weight: math.unit(1000, "lb"),
  41601. name: "Side",
  41602. image: {
  41603. source: "./media/characters/silver-dragon/side.svg",
  41604. extra: 710/287,
  41605. bottom: 88/798
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Normal",
  41612. height: math.unit(182, "cm"),
  41613. default: true
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41619. {
  41620. side: {
  41621. height: math.unit(6 + 6/12, "feet"),
  41622. weight: math.unit(1.5, "tons"),
  41623. name: "Side",
  41624. image: {
  41625. source: "./media/characters/zephyr/side.svg",
  41626. extra: 1433/586,
  41627. bottom: 109/1542
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Normal",
  41634. height: math.unit(6 + 6/12, "feet"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41641. {
  41642. side: {
  41643. height: math.unit(1, "feet"),
  41644. name: "Side",
  41645. image: {
  41646. source: "./media/characters/vixye/side.svg",
  41647. extra: 632/541,
  41648. bottom: 0/632
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Normal",
  41655. height: math.unit(1, "feet"),
  41656. default: true
  41657. },
  41658. {
  41659. name: "True",
  41660. height: math.unit(1e15, "multiverses")
  41661. },
  41662. ]
  41663. ))
  41664. characterMakers.push(() => makeCharacter(
  41665. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41666. {
  41667. front: {
  41668. height: math.unit(8 + 2/12, "feet"),
  41669. weight: math.unit(650, "lb"),
  41670. name: "Front",
  41671. image: {
  41672. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41673. extra: 1174/1137,
  41674. bottom: 82/1256
  41675. }
  41676. },
  41677. back: {
  41678. height: math.unit(8 + 2/12, "feet"),
  41679. weight: math.unit(650, "lb"),
  41680. name: "Back",
  41681. image: {
  41682. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41683. extra: 1204/1157,
  41684. bottom: 46/1250
  41685. }
  41686. },
  41687. },
  41688. [
  41689. {
  41690. name: "Wildform",
  41691. height: math.unit(8 + 2/12, "feet"),
  41692. default: true
  41693. },
  41694. ]
  41695. ))
  41696. characterMakers.push(() => makeCharacter(
  41697. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41698. {
  41699. front: {
  41700. height: math.unit(18, "feet"),
  41701. name: "Front",
  41702. image: {
  41703. source: "./media/characters/cyphin/front.svg",
  41704. extra: 970/886,
  41705. bottom: 42/1012
  41706. }
  41707. },
  41708. back: {
  41709. height: math.unit(18, "feet"),
  41710. name: "Back",
  41711. image: {
  41712. source: "./media/characters/cyphin/back.svg",
  41713. extra: 1009/894,
  41714. bottom: 24/1033
  41715. }
  41716. },
  41717. head: {
  41718. height: math.unit(5.05, "feet"),
  41719. name: "Head",
  41720. image: {
  41721. source: "./media/characters/cyphin/head.svg"
  41722. }
  41723. },
  41724. tailbud: {
  41725. height: math.unit(5, "feet"),
  41726. name: "Tailbud",
  41727. image: {
  41728. source: "./media/characters/cyphin/tailbud.svg"
  41729. }
  41730. },
  41731. },
  41732. [
  41733. ]
  41734. ))
  41735. characterMakers.push(() => makeCharacter(
  41736. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41737. {
  41738. side: {
  41739. height: math.unit(10, "feet"),
  41740. weight: math.unit(6, "tons"),
  41741. name: "Side",
  41742. image: {
  41743. source: "./media/characters/raijin/side.svg",
  41744. extra: 1529/613,
  41745. bottom: 337/1866
  41746. }
  41747. },
  41748. },
  41749. [
  41750. {
  41751. name: "Normal",
  41752. height: math.unit(10, "feet"),
  41753. default: true
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41759. {
  41760. side: {
  41761. height: math.unit(9, "feet"),
  41762. name: "Side",
  41763. image: {
  41764. source: "./media/characters/nilghais/side.svg",
  41765. extra: 1047/744,
  41766. bottom: 91/1138
  41767. }
  41768. },
  41769. head: {
  41770. height: math.unit(3.14, "feet"),
  41771. name: "Head",
  41772. image: {
  41773. source: "./media/characters/nilghais/head.svg"
  41774. }
  41775. },
  41776. mouth: {
  41777. height: math.unit(4.6, "feet"),
  41778. name: "Mouth",
  41779. image: {
  41780. source: "./media/characters/nilghais/mouth.svg"
  41781. }
  41782. },
  41783. wings: {
  41784. height: math.unit(24, "feet"),
  41785. name: "Wings",
  41786. image: {
  41787. source: "./media/characters/nilghais/wings.svg"
  41788. }
  41789. },
  41790. ass: {
  41791. height: math.unit(6.12, "feet"),
  41792. name: "Ass",
  41793. image: {
  41794. source: "./media/characters/nilghais/ass.svg"
  41795. }
  41796. },
  41797. },
  41798. [
  41799. {
  41800. name: "Normal",
  41801. height: math.unit(9, "feet"),
  41802. default: true
  41803. },
  41804. ]
  41805. ))
  41806. characterMakers.push(() => makeCharacter(
  41807. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41808. {
  41809. regular: {
  41810. height: math.unit(16 + 2/12, "feet"),
  41811. weight: math.unit(2300, "lb"),
  41812. name: "Regular",
  41813. image: {
  41814. source: "./media/characters/zolgar/regular.svg",
  41815. extra: 1246/1004,
  41816. bottom: 124/1370
  41817. }
  41818. },
  41819. boxers: {
  41820. height: math.unit(16 + 2/12, "feet"),
  41821. weight: math.unit(2300, "lb"),
  41822. name: "Boxers",
  41823. image: {
  41824. source: "./media/characters/zolgar/boxers.svg",
  41825. extra: 1246/1004,
  41826. bottom: 124/1370
  41827. }
  41828. },
  41829. armored: {
  41830. height: math.unit(16 + 2/12, "feet"),
  41831. weight: math.unit(2300, "lb"),
  41832. name: "Armored",
  41833. image: {
  41834. source: "./media/characters/zolgar/armored.svg",
  41835. extra: 1246/1004,
  41836. bottom: 124/1370
  41837. }
  41838. },
  41839. goth: {
  41840. height: math.unit(16 + 2/12, "feet"),
  41841. weight: math.unit(2300, "lb"),
  41842. name: "Goth",
  41843. image: {
  41844. source: "./media/characters/zolgar/goth.svg",
  41845. extra: 1246/1004,
  41846. bottom: 124/1370
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Shrunken Down",
  41853. height: math.unit(9 + 2/12, "feet")
  41854. },
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(16 + 2/12, "feet"),
  41858. default: true
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(6, "feet"),
  41867. weight: math.unit(168, "lb"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/luca/front.svg",
  41871. extra: 841/667,
  41872. bottom: 102/943
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Normal",
  41879. height: math.unit(6, "feet"),
  41880. default: true
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41886. {
  41887. side: {
  41888. height: math.unit(7 + 3/12, "feet"),
  41889. weight: math.unit(312, "lb"),
  41890. name: "Side",
  41891. image: {
  41892. source: "./media/characters/zezo/side.svg",
  41893. extra: 1192/1067,
  41894. bottom: 63/1255
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(7 + 3/12, "feet"),
  41902. default: true
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41908. {
  41909. front: {
  41910. height: math.unit(5 + 5/12, "feet"),
  41911. weight: math.unit(170, "lb"),
  41912. name: "Front",
  41913. image: {
  41914. source: "./media/characters/mayso/front.svg",
  41915. extra: 1215/1108,
  41916. bottom: 16/1231
  41917. }
  41918. },
  41919. },
  41920. [
  41921. {
  41922. name: "Normal",
  41923. height: math.unit(5 + 5/12, "feet"),
  41924. default: true
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41930. {
  41931. front: {
  41932. height: math.unit(4 + 3/12, "feet"),
  41933. weight: math.unit(80, "lb"),
  41934. name: "Front",
  41935. image: {
  41936. source: "./media/characters/hess/front.svg",
  41937. extra: 1200/1123,
  41938. bottom: 16/1216
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Normal",
  41945. height: math.unit(4 + 3/12, "feet"),
  41946. default: true
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41952. {
  41953. front: {
  41954. height: math.unit(1.9, "meters"),
  41955. name: "Front",
  41956. image: {
  41957. source: "./media/characters/ashgar/front.svg",
  41958. extra: 1177/1146,
  41959. bottom: 99/1276
  41960. }
  41961. },
  41962. back: {
  41963. height: math.unit(1.9, "meters"),
  41964. name: "Back",
  41965. image: {
  41966. source: "./media/characters/ashgar/back.svg",
  41967. extra: 1201/1183,
  41968. bottom: 53/1254
  41969. }
  41970. },
  41971. feral: {
  41972. height: math.unit(1.4, "meters"),
  41973. name: "Feral",
  41974. image: {
  41975. source: "./media/characters/ashgar/feral.svg",
  41976. extra: 370/345,
  41977. bottom: 45/415
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Normal",
  41984. height: math.unit(1.9, "meters"),
  41985. default: true
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41991. {
  41992. regular: {
  41993. height: math.unit(6, "feet"),
  41994. weight: math.unit(220, "lb"),
  41995. name: "Regular",
  41996. image: {
  41997. source: "./media/characters/phillip/regular.svg",
  41998. extra: 1373/1277,
  41999. bottom: 75/1448
  42000. }
  42001. },
  42002. dressed: {
  42003. height: math.unit(6, "feet"),
  42004. weight: math.unit(220, "lb"),
  42005. name: "Dressed",
  42006. image: {
  42007. source: "./media/characters/phillip/dressed.svg",
  42008. extra: 1373/1277,
  42009. bottom: 75/1448
  42010. }
  42011. },
  42012. paw: {
  42013. height: math.unit(1.44, "feet"),
  42014. name: "Paw",
  42015. image: {
  42016. source: "./media/characters/phillip/paw.svg"
  42017. }
  42018. },
  42019. },
  42020. [
  42021. {
  42022. name: "Normal",
  42023. height: math.unit(6, "feet"),
  42024. default: true
  42025. },
  42026. ]
  42027. ))
  42028. characterMakers.push(() => makeCharacter(
  42029. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42030. {
  42031. side: {
  42032. height: math.unit(42, "feet"),
  42033. name: "Side",
  42034. image: {
  42035. source: "./media/characters/uvula/side.svg",
  42036. extra: 683/586,
  42037. bottom: 60/743
  42038. }
  42039. },
  42040. front: {
  42041. height: math.unit(42, "feet"),
  42042. name: "Front",
  42043. image: {
  42044. source: "./media/characters/uvula/front.svg",
  42045. extra: 705/613,
  42046. bottom: 54/759
  42047. }
  42048. },
  42049. maw: {
  42050. height: math.unit(23.5, "feet"),
  42051. name: "Maw",
  42052. image: {
  42053. source: "./media/characters/uvula/maw.svg"
  42054. }
  42055. },
  42056. },
  42057. [
  42058. {
  42059. name: "Original Size",
  42060. height: math.unit(14, "inches")
  42061. },
  42062. {
  42063. name: "Human Size",
  42064. height: math.unit(6, "feet")
  42065. },
  42066. {
  42067. name: "Big",
  42068. height: math.unit(42, "feet"),
  42069. default: true
  42070. },
  42071. {
  42072. name: "Bigger",
  42073. height: math.unit(100, "feet")
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(5 + 11/12, "feet"),
  42082. name: "Front",
  42083. image: {
  42084. source: "./media/characters/lannah/front.svg",
  42085. extra: 1208/1113,
  42086. bottom: 97/1305
  42087. }
  42088. },
  42089. },
  42090. [
  42091. {
  42092. name: "Normal",
  42093. height: math.unit(5 + 11/12, "feet"),
  42094. default: true
  42095. },
  42096. ]
  42097. ))
  42098. characterMakers.push(() => makeCharacter(
  42099. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42100. {
  42101. front: {
  42102. height: math.unit(6 + 3/12, "feet"),
  42103. weight: math.unit(3.5, "tons"),
  42104. name: "Front",
  42105. image: {
  42106. source: "./media/characters/emberflame/front.svg",
  42107. extra: 1198/672,
  42108. bottom: 82/1280
  42109. }
  42110. },
  42111. side: {
  42112. height: math.unit(6 + 3/12, "feet"),
  42113. weight: math.unit(3.5, "tons"),
  42114. name: "Side",
  42115. image: {
  42116. source: "./media/characters/emberflame/side.svg",
  42117. extra: 938/527,
  42118. bottom: 56/994
  42119. }
  42120. },
  42121. },
  42122. [
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(6 + 3/12, "feet"),
  42126. default: true
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42132. {
  42133. side: {
  42134. height: math.unit(17.5, "feet"),
  42135. weight: math.unit(35, "tons"),
  42136. name: "Side",
  42137. image: {
  42138. source: "./media/characters/sophie-ambrose/side.svg",
  42139. extra: 1573/1242,
  42140. bottom: 71/1644
  42141. }
  42142. },
  42143. maw: {
  42144. height: math.unit(7.4, "feet"),
  42145. name: "Maw",
  42146. image: {
  42147. source: "./media/characters/sophie-ambrose/maw.svg"
  42148. }
  42149. },
  42150. },
  42151. [
  42152. {
  42153. name: "Normal",
  42154. height: math.unit(17.5, "feet"),
  42155. default: true
  42156. },
  42157. ]
  42158. ))
  42159. characterMakers.push(() => makeCharacter(
  42160. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42161. {
  42162. front: {
  42163. height: math.unit(280, "feet"),
  42164. weight: math.unit(550, "tons"),
  42165. name: "Front",
  42166. image: {
  42167. source: "./media/characters/king-mugi/front.svg",
  42168. extra: 1102/947,
  42169. bottom: 104/1206
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "King Mugi",
  42176. height: math.unit(280, "feet"),
  42177. default: true
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42183. {
  42184. front: {
  42185. height: math.unit(64, "meters"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/nova-fox/front.svg",
  42189. extra: 1310/1246,
  42190. bottom: 65/1375
  42191. }
  42192. },
  42193. },
  42194. [
  42195. {
  42196. name: "Macro",
  42197. height: math.unit(64, "meters"),
  42198. default: true
  42199. },
  42200. ]
  42201. ))
  42202. characterMakers.push(() => makeCharacter(
  42203. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42204. {
  42205. front: {
  42206. height: math.unit(6 + 3/12, "feet"),
  42207. weight: math.unit(170, "lb"),
  42208. name: "Front",
  42209. image: {
  42210. source: "./media/characters/sam-bat/front.svg",
  42211. extra: 1601/1411,
  42212. bottom: 125/1726
  42213. }
  42214. },
  42215. back: {
  42216. height: math.unit(6 + 3/12, "feet"),
  42217. weight: math.unit(170, "lb"),
  42218. name: "Back",
  42219. image: {
  42220. source: "./media/characters/sam-bat/back.svg",
  42221. extra: 1577/1405,
  42222. bottom: 58/1635
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(6 + 3/12, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42236. {
  42237. front: {
  42238. height: math.unit(59, "feet"),
  42239. weight: math.unit(40000, "lb"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/inari/front.svg",
  42243. extra: 1884/1350,
  42244. bottom: 95/1979
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Gigantamax",
  42251. height: math.unit(59, "feet"),
  42252. default: true
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(5 + 8/12, "feet"),
  42261. name: "Front",
  42262. image: {
  42263. source: "./media/characters/elizabeth/front.svg",
  42264. extra: 1395/1298,
  42265. bottom: 54/1449
  42266. }
  42267. },
  42268. mouth: {
  42269. height: math.unit(1.97, "feet"),
  42270. name: "Mouth",
  42271. image: {
  42272. source: "./media/characters/elizabeth/mouth.svg"
  42273. }
  42274. },
  42275. foot: {
  42276. height: math.unit(1.17, "feet"),
  42277. name: "Foot",
  42278. image: {
  42279. source: "./media/characters/elizabeth/foot.svg"
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Normal",
  42286. height: math.unit(5 + 8/12, "feet"),
  42287. default: true
  42288. },
  42289. {
  42290. name: "Minimacro",
  42291. height: math.unit(18, "feet")
  42292. },
  42293. {
  42294. name: "Macro",
  42295. height: math.unit(180, "feet")
  42296. },
  42297. ]
  42298. ))
  42299. characterMakers.push(() => makeCharacter(
  42300. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42301. {
  42302. front: {
  42303. height: math.unit(5 + 2/12, "feet"),
  42304. name: "Front",
  42305. image: {
  42306. source: "./media/characters/october-gossamer/front.svg",
  42307. extra: 505/454,
  42308. bottom: 7/512
  42309. }
  42310. },
  42311. back: {
  42312. height: math.unit(5 + 2/12, "feet"),
  42313. name: "Back",
  42314. image: {
  42315. source: "./media/characters/october-gossamer/back.svg",
  42316. extra: 501/454,
  42317. bottom: 11/512
  42318. }
  42319. },
  42320. },
  42321. [
  42322. {
  42323. name: "Normal",
  42324. height: math.unit(5 + 2/12, "feet"),
  42325. default: true
  42326. },
  42327. ]
  42328. ))
  42329. characterMakers.push(() => makeCharacter(
  42330. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42331. {
  42332. front: {
  42333. height: math.unit(5, "feet"),
  42334. name: "Front",
  42335. image: {
  42336. source: "./media/characters/epiglottis/front.svg",
  42337. extra: 923/849,
  42338. bottom: 17/940
  42339. }
  42340. },
  42341. },
  42342. [
  42343. {
  42344. name: "Original Size",
  42345. height: math.unit(10, "inches")
  42346. },
  42347. {
  42348. name: "Human Size",
  42349. height: math.unit(5, "feet"),
  42350. default: true
  42351. },
  42352. {
  42353. name: "Big",
  42354. height: math.unit(25, "feet")
  42355. },
  42356. {
  42357. name: "Bigger",
  42358. height: math.unit(50, "feet")
  42359. },
  42360. {
  42361. name: "oh lawd",
  42362. height: math.unit(75, "feet")
  42363. },
  42364. ]
  42365. ))
  42366. characterMakers.push(() => makeCharacter(
  42367. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42368. {
  42369. front: {
  42370. height: math.unit(2 + 4/12, "feet"),
  42371. weight: math.unit(60, "lb"),
  42372. name: "Front",
  42373. image: {
  42374. source: "./media/characters/lerm/front.svg",
  42375. extra: 796/790,
  42376. bottom: 79/875
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(2 + 4/12, "feet"),
  42384. default: true
  42385. },
  42386. ]
  42387. ))
  42388. characterMakers.push(() => makeCharacter(
  42389. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42390. {
  42391. front: {
  42392. height: math.unit(5.5, "feet"),
  42393. weight: math.unit(130, "lb"),
  42394. name: "Front",
  42395. image: {
  42396. source: "./media/characters/xena-nebadon/front.svg",
  42397. extra: 1828/1730,
  42398. bottom: 79/1907
  42399. }
  42400. },
  42401. },
  42402. [
  42403. {
  42404. name: "Tiny Puppy",
  42405. height: math.unit(3, "inches")
  42406. },
  42407. {
  42408. name: "Normal",
  42409. height: math.unit(5.5, "feet"),
  42410. default: true
  42411. },
  42412. {
  42413. name: "Lotta Lady",
  42414. height: math.unit(12, "feet")
  42415. },
  42416. {
  42417. name: "Pretty Big",
  42418. height: math.unit(100, "feet")
  42419. },
  42420. {
  42421. name: "Big",
  42422. height: math.unit(500, "feet")
  42423. },
  42424. {
  42425. name: "Skyscraper Toys",
  42426. height: math.unit(2500, "feet")
  42427. },
  42428. {
  42429. name: "Plane Catcher",
  42430. height: math.unit(8, "miles")
  42431. },
  42432. {
  42433. name: "Planet Toys",
  42434. height: math.unit(15, "earths")
  42435. },
  42436. {
  42437. name: "Stardust",
  42438. height: math.unit(0.25, "galaxies")
  42439. },
  42440. {
  42441. name: "Snacks",
  42442. height: math.unit(70, "universes")
  42443. },
  42444. ]
  42445. ))
  42446. characterMakers.push(() => makeCharacter(
  42447. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42448. {
  42449. front: {
  42450. height: math.unit(1.6, "meters"),
  42451. weight: math.unit(60, "kg"),
  42452. name: "Front",
  42453. image: {
  42454. source: "./media/characters/bounty/front.svg",
  42455. extra: 1426/1308,
  42456. bottom: 15/1441
  42457. }
  42458. },
  42459. back: {
  42460. height: math.unit(1.6, "meters"),
  42461. weight: math.unit(60, "kg"),
  42462. name: "Back",
  42463. image: {
  42464. source: "./media/characters/bounty/back.svg",
  42465. extra: 1417/1307,
  42466. bottom: 8/1425
  42467. }
  42468. },
  42469. },
  42470. [
  42471. {
  42472. name: "Normal",
  42473. height: math.unit(1.6, "meters"),
  42474. default: true
  42475. },
  42476. {
  42477. name: "Macro",
  42478. height: math.unit(300, "meters")
  42479. },
  42480. ]
  42481. ))
  42482. characterMakers.push(() => makeCharacter(
  42483. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42484. {
  42485. front: {
  42486. height: math.unit(2 + 8/12, "feet"),
  42487. weight: math.unit(15, "lb"),
  42488. name: "Front",
  42489. image: {
  42490. source: "./media/characters/mochi/front.svg",
  42491. extra: 1022/852,
  42492. bottom: 435/1457
  42493. }
  42494. },
  42495. back: {
  42496. height: math.unit(2 + 8/12, "feet"),
  42497. weight: math.unit(15, "lb"),
  42498. name: "Back",
  42499. image: {
  42500. source: "./media/characters/mochi/back.svg",
  42501. extra: 1335/1119,
  42502. bottom: 39/1374
  42503. }
  42504. },
  42505. bird: {
  42506. height: math.unit(2 + 8/12, "feet"),
  42507. weight: math.unit(15, "lb"),
  42508. name: "Bird",
  42509. image: {
  42510. source: "./media/characters/mochi/bird.svg",
  42511. extra: 1251/1113,
  42512. bottom: 178/1429
  42513. }
  42514. },
  42515. kaiju: {
  42516. height: math.unit(154, "feet"),
  42517. weight: math.unit(1e7, "lb"),
  42518. name: "Kaiju",
  42519. image: {
  42520. source: "./media/characters/mochi/kaiju.svg",
  42521. extra: 460/324,
  42522. bottom: 40/500
  42523. }
  42524. },
  42525. head: {
  42526. height: math.unit(1.21, "feet"),
  42527. name: "Head",
  42528. image: {
  42529. source: "./media/characters/mochi/head.svg"
  42530. }
  42531. },
  42532. alternateTail: {
  42533. height: math.unit(2 + 8/12, "feet"),
  42534. weight: math.unit(45, "lb"),
  42535. name: "Alternate Tail",
  42536. image: {
  42537. source: "./media/characters/mochi/alternate-tail.svg",
  42538. extra: 139/76,
  42539. bottom: 45/184
  42540. }
  42541. },
  42542. },
  42543. [
  42544. {
  42545. name: "Micro",
  42546. height: math.unit(2, "inches")
  42547. },
  42548. {
  42549. name: "Normal",
  42550. height: math.unit(2 + 8/12, "feet"),
  42551. default: true
  42552. },
  42553. {
  42554. name: "Macro",
  42555. height: math.unit(106, "feet")
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(5.67, "feet"),
  42564. weight: math.unit(135, "lb"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/sarel/front.svg",
  42568. extra: 865/788,
  42569. bottom: 97/962
  42570. }
  42571. },
  42572. back: {
  42573. height: math.unit(5.67, "feet"),
  42574. weight: math.unit(135, "lb"),
  42575. name: "Back",
  42576. image: {
  42577. source: "./media/characters/sarel/back.svg",
  42578. extra: 857/777,
  42579. bottom: 32/889
  42580. }
  42581. },
  42582. chozoan: {
  42583. height: math.unit(5.67, "feet"),
  42584. weight: math.unit(135, "lb"),
  42585. name: "Chozoan",
  42586. image: {
  42587. source: "./media/characters/sarel/chozoan.svg",
  42588. extra: 865/788,
  42589. bottom: 97/962
  42590. }
  42591. },
  42592. current: {
  42593. height: math.unit(5.67, "feet"),
  42594. weight: math.unit(135, "lb"),
  42595. name: "Current",
  42596. image: {
  42597. source: "./media/characters/sarel/current.svg",
  42598. extra: 865/788,
  42599. bottom: 97/962
  42600. }
  42601. },
  42602. head: {
  42603. height: math.unit(1.77, "feet"),
  42604. name: "Head",
  42605. image: {
  42606. source: "./media/characters/sarel/head.svg"
  42607. }
  42608. },
  42609. claws: {
  42610. height: math.unit(1.8, "feet"),
  42611. name: "Claws",
  42612. image: {
  42613. source: "./media/characters/sarel/claws.svg"
  42614. }
  42615. },
  42616. clawsAlt: {
  42617. height: math.unit(1.8, "feet"),
  42618. name: "Claws-alt",
  42619. image: {
  42620. source: "./media/characters/sarel/claws-alt.svg"
  42621. }
  42622. },
  42623. },
  42624. [
  42625. {
  42626. name: "Normal",
  42627. height: math.unit(5.67, "feet"),
  42628. default: true
  42629. },
  42630. ]
  42631. ))
  42632. characterMakers.push(() => makeCharacter(
  42633. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42634. {
  42635. front: {
  42636. height: math.unit(5500, "feet"),
  42637. name: "Front",
  42638. image: {
  42639. source: "./media/characters/alyonia/front.svg",
  42640. extra: 1200/1135,
  42641. bottom: 29/1229
  42642. }
  42643. },
  42644. back: {
  42645. height: math.unit(5500, "feet"),
  42646. name: "Back",
  42647. image: {
  42648. source: "./media/characters/alyonia/back.svg",
  42649. extra: 1205/1138,
  42650. bottom: 10/1215
  42651. }
  42652. },
  42653. },
  42654. [
  42655. {
  42656. name: "Small",
  42657. height: math.unit(10, "feet")
  42658. },
  42659. {
  42660. name: "Macro",
  42661. height: math.unit(500, "feet")
  42662. },
  42663. {
  42664. name: "Mega Macro",
  42665. height: math.unit(5500, "feet"),
  42666. default: true
  42667. },
  42668. {
  42669. name: "Mega Macro+",
  42670. height: math.unit(500000, "feet")
  42671. },
  42672. {
  42673. name: "Giga Macro",
  42674. height: math.unit(3000, "miles")
  42675. },
  42676. {
  42677. name: "Tera Macro",
  42678. height: math.unit(2.8e6, "miles")
  42679. },
  42680. {
  42681. name: "Galactic",
  42682. height: math.unit(120000, "lightyears")
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42688. {
  42689. werewolf: {
  42690. height: math.unit(8, "feet"),
  42691. weight: math.unit(425, "lb"),
  42692. name: "Werewolf",
  42693. image: {
  42694. source: "./media/characters/autumn/werewolf.svg",
  42695. extra: 2154/2031,
  42696. bottom: 160/2314
  42697. }
  42698. },
  42699. human: {
  42700. height: math.unit(5 + 8/12, "feet"),
  42701. weight: math.unit(150, "lb"),
  42702. name: "Human",
  42703. image: {
  42704. source: "./media/characters/autumn/human.svg",
  42705. extra: 1200/1149,
  42706. bottom: 30/1230
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Normal",
  42713. height: math.unit(8, "feet"),
  42714. default: true
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42720. {
  42721. front: {
  42722. height: math.unit(8 + 5/12, "feet"),
  42723. weight: math.unit(825, "lb"),
  42724. name: "Front",
  42725. image: {
  42726. source: "./media/characters/cobalt-charizard/front.svg",
  42727. extra: 1268/1155,
  42728. bottom: 122/1390
  42729. }
  42730. },
  42731. side: {
  42732. height: math.unit(8 + 5/12, "feet"),
  42733. weight: math.unit(825, "lb"),
  42734. name: "Side",
  42735. image: {
  42736. source: "./media/characters/cobalt-charizard/side.svg",
  42737. extra: 1348/1257,
  42738. bottom: 58/1406
  42739. }
  42740. },
  42741. gMax: {
  42742. height: math.unit(134 + 11/12, "feet"),
  42743. name: "G-Max",
  42744. image: {
  42745. source: "./media/characters/cobalt-charizard/g-max.svg",
  42746. extra: 1835/1541,
  42747. bottom: 151/1986
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(8 + 5/12, "feet"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(6 + 3/12, "feet"),
  42764. weight: math.unit(210, "lb"),
  42765. name: "Front",
  42766. image: {
  42767. source: "./media/characters/stella/front.svg",
  42768. extra: 3549/3335,
  42769. bottom: 51/3600
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Normal",
  42776. height: math.unit(6 + 3/12, "feet"),
  42777. default: true
  42778. },
  42779. ]
  42780. ))
  42781. characterMakers.push(() => makeCharacter(
  42782. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42783. {
  42784. front: {
  42785. height: math.unit(5, "feet"),
  42786. weight: math.unit(90, "lb"),
  42787. name: "Front",
  42788. image: {
  42789. source: "./media/characters/riley-bishop/front.svg",
  42790. extra: 1450/1428,
  42791. bottom: 152/1602
  42792. }
  42793. },
  42794. },
  42795. [
  42796. {
  42797. name: "Normal",
  42798. height: math.unit(5, "feet"),
  42799. default: true
  42800. },
  42801. ]
  42802. ))
  42803. characterMakers.push(() => makeCharacter(
  42804. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42805. {
  42806. side: {
  42807. height: math.unit(8 + 2/12, "feet"),
  42808. weight: math.unit(500, "kg"),
  42809. name: "Side",
  42810. image: {
  42811. source: "./media/characters/theo-arcanine/side.svg",
  42812. extra: 1342/1074,
  42813. bottom: 111/1453
  42814. }
  42815. },
  42816. },
  42817. [
  42818. {
  42819. name: "Normal",
  42820. height: math.unit(8 + 2/12, "feet"),
  42821. default: true
  42822. },
  42823. ]
  42824. ))
  42825. characterMakers.push(() => makeCharacter(
  42826. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42827. {
  42828. front: {
  42829. height: math.unit(4, "feet"),
  42830. name: "Front",
  42831. image: {
  42832. source: "./media/characters/kali/front.svg",
  42833. extra: 1921/1357,
  42834. bottom: 70/1991
  42835. }
  42836. },
  42837. },
  42838. [
  42839. {
  42840. name: "Normal",
  42841. height: math.unit(4, "feet"),
  42842. default: true
  42843. },
  42844. {
  42845. name: "Macro",
  42846. height: math.unit(32, "meters")
  42847. },
  42848. {
  42849. name: "Macro+",
  42850. height: math.unit(150, "meters")
  42851. },
  42852. {
  42853. name: "Megamacro",
  42854. height: math.unit(7500, "meters")
  42855. },
  42856. {
  42857. name: "Megamacro+",
  42858. height: math.unit(80, "kilometers")
  42859. },
  42860. ]
  42861. ))
  42862. characterMakers.push(() => makeCharacter(
  42863. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42864. {
  42865. side: {
  42866. height: math.unit(5 + 11/12, "feet"),
  42867. weight: math.unit(236, "lb"),
  42868. name: "Side",
  42869. image: {
  42870. source: "./media/characters/gapp/side.svg",
  42871. extra: 775/340,
  42872. bottom: 58/833
  42873. }
  42874. },
  42875. mouth: {
  42876. height: math.unit(2.98, "feet"),
  42877. name: "Mouth",
  42878. image: {
  42879. source: "./media/characters/gapp/mouth.svg"
  42880. }
  42881. },
  42882. },
  42883. [
  42884. {
  42885. name: "Normal",
  42886. height: math.unit(5 + 1/12, "feet"),
  42887. default: true
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42893. {
  42894. front: {
  42895. height: math.unit(6, "feet"),
  42896. name: "Front",
  42897. image: {
  42898. source: "./media/characters/persephone/front.svg",
  42899. extra: 1895/1717,
  42900. bottom: 96/1991
  42901. }
  42902. },
  42903. back: {
  42904. height: math.unit(6, "feet"),
  42905. name: "Back",
  42906. image: {
  42907. source: "./media/characters/persephone/back.svg",
  42908. extra: 1868/1679,
  42909. bottom: 26/1894
  42910. }
  42911. },
  42912. casual: {
  42913. height: math.unit(6, "feet"),
  42914. name: "Casual",
  42915. image: {
  42916. source: "./media/characters/persephone/casual.svg",
  42917. extra: 1713/1541,
  42918. bottom: 76/1789
  42919. }
  42920. },
  42921. },
  42922. [
  42923. {
  42924. name: "Human Size",
  42925. height: math.unit(6, "feet")
  42926. },
  42927. {
  42928. name: "Big Steppy",
  42929. height: math.unit(600, "meters"),
  42930. default: true
  42931. },
  42932. {
  42933. name: "Galaxy Brain",
  42934. height: math.unit(1, "zettameter")
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42940. {
  42941. front: {
  42942. height: math.unit(1.85, "meters"),
  42943. name: "Front",
  42944. image: {
  42945. source: "./media/characters/riley-foxthing/front.svg",
  42946. extra: 1495/1354,
  42947. bottom: 122/1617
  42948. }
  42949. },
  42950. frontAlt: {
  42951. height: math.unit(1.85, "meters"),
  42952. name: "Front (Alt)",
  42953. image: {
  42954. source: "./media/characters/riley-foxthing/front-alt.svg",
  42955. extra: 1572/1389,
  42956. bottom: 116/1688
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Normal Sized",
  42963. height: math.unit(1.85, "meters"),
  42964. default: true
  42965. },
  42966. {
  42967. name: "Quite Sizable",
  42968. height: math.unit(5, "meters")
  42969. },
  42970. {
  42971. name: "Rather Large",
  42972. height: math.unit(20, "meters")
  42973. },
  42974. {
  42975. name: "Macro",
  42976. height: math.unit(450, "meters")
  42977. },
  42978. {
  42979. name: "Giga",
  42980. height: math.unit(5, "km")
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42986. {
  42987. front: {
  42988. height: math.unit(6, "feet"),
  42989. weight: math.unit(200, "lb"),
  42990. name: "Front",
  42991. image: {
  42992. source: "./media/characters/blizzard/front.svg",
  42993. extra: 1136/990,
  42994. bottom: 136/1272
  42995. }
  42996. },
  42997. back: {
  42998. height: math.unit(6, "feet"),
  42999. weight: math.unit(200, "lb"),
  43000. name: "Back",
  43001. image: {
  43002. source: "./media/characters/blizzard/back.svg",
  43003. extra: 1175/1034,
  43004. bottom: 97/1272
  43005. }
  43006. },
  43007. sitting: {
  43008. height: math.unit(3.725, "feet"),
  43009. weight: math.unit(200, "lb"),
  43010. name: "Sitting",
  43011. image: {
  43012. source: "./media/characters/blizzard/sitting.svg",
  43013. extra: 581/485,
  43014. bottom: 90/671
  43015. }
  43016. },
  43017. frontWizard: {
  43018. height: math.unit(7.9, "feet"),
  43019. weight: math.unit(200, "lb"),
  43020. name: "Front (Wizard)",
  43021. image: {
  43022. source: "./media/characters/blizzard/front-wizard.svg"
  43023. }
  43024. },
  43025. backWizard: {
  43026. height: math.unit(7.9, "feet"),
  43027. weight: math.unit(200, "lb"),
  43028. name: "Back (Wizard)",
  43029. image: {
  43030. source: "./media/characters/blizzard/back-wizard.svg"
  43031. }
  43032. },
  43033. frontNsfw: {
  43034. height: math.unit(6, "feet"),
  43035. weight: math.unit(200, "lb"),
  43036. name: "Front (NSFW)",
  43037. image: {
  43038. source: "./media/characters/blizzard/front-nsfw.svg",
  43039. extra: 1136/990,
  43040. bottom: 136/1272
  43041. }
  43042. },
  43043. backNsfw: {
  43044. height: math.unit(6, "feet"),
  43045. weight: math.unit(200, "lb"),
  43046. name: "Back (NSFW)",
  43047. image: {
  43048. source: "./media/characters/blizzard/back-nsfw.svg",
  43049. extra: 1175/1034,
  43050. bottom: 97/1272
  43051. }
  43052. },
  43053. sittingNsfw: {
  43054. height: math.unit(3.725, "feet"),
  43055. weight: math.unit(200, "lb"),
  43056. name: "Sitting (NSFW)",
  43057. image: {
  43058. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43059. extra: 581/485,
  43060. bottom: 90/671
  43061. }
  43062. },
  43063. wizardFrontNsfw: {
  43064. height: math.unit(7.9, "feet"),
  43065. weight: math.unit(200, "lb"),
  43066. name: "Wizard (Front, NSFW)",
  43067. image: {
  43068. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Normal",
  43075. height: math.unit(6, "feet"),
  43076. default: true
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43082. {
  43083. front: {
  43084. height: math.unit(5 + 2/12, "feet"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/lumi/front.svg",
  43088. extra: 1328/1268,
  43089. bottom: 103/1431
  43090. }
  43091. },
  43092. back: {
  43093. height: math.unit(5 + 2/12, "feet"),
  43094. name: "Back",
  43095. image: {
  43096. source: "./media/characters/lumi/back.svg",
  43097. extra: 1381/1327,
  43098. bottom: 43/1424
  43099. }
  43100. },
  43101. },
  43102. [
  43103. {
  43104. name: "Normal",
  43105. height: math.unit(5 + 2/12, "feet"),
  43106. default: true
  43107. },
  43108. ]
  43109. ))
  43110. characterMakers.push(() => makeCharacter(
  43111. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43112. {
  43113. front: {
  43114. height: math.unit(5 + 9/12, "feet"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/aliya-cotton/front.svg",
  43118. extra: 577/564,
  43119. bottom: 29/606
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Normal",
  43126. height: math.unit(5 + 9/12, "feet"),
  43127. default: true
  43128. },
  43129. ]
  43130. ))
  43131. characterMakers.push(() => makeCharacter(
  43132. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43133. {
  43134. front: {
  43135. height: math.unit(2.7, "meters"),
  43136. weight: math.unit(25000, "lb"),
  43137. name: "Front",
  43138. image: {
  43139. source: "./media/characters/noah-luxray/front.svg",
  43140. extra: 1644/825,
  43141. bottom: 339/1983
  43142. }
  43143. },
  43144. side: {
  43145. height: math.unit(2.97, "meters"),
  43146. weight: math.unit(25000, "lb"),
  43147. name: "Side",
  43148. image: {
  43149. source: "./media/characters/noah-luxray/side.svg",
  43150. extra: 1319/650,
  43151. bottom: 163/1482
  43152. }
  43153. },
  43154. dick: {
  43155. height: math.unit(7.4, "feet"),
  43156. weight: math.unit(2500, "lb"),
  43157. name: "Dick",
  43158. image: {
  43159. source: "./media/characters/noah-luxray/dick.svg"
  43160. }
  43161. },
  43162. dickAlt: {
  43163. height: math.unit(10.83, "feet"),
  43164. weight: math.unit(2500, "lb"),
  43165. name: "Dick-alt",
  43166. image: {
  43167. source: "./media/characters/noah-luxray/dick-alt.svg"
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "BIG",
  43174. height: math.unit(2.7, "meters"),
  43175. default: true
  43176. },
  43177. ]
  43178. ))
  43179. characterMakers.push(() => makeCharacter(
  43180. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43181. {
  43182. standing: {
  43183. height: math.unit(183, "cm"),
  43184. weight: math.unit(68, "kg"),
  43185. name: "Standing",
  43186. image: {
  43187. source: "./media/characters/arion/standing.svg",
  43188. extra: 1869/1807,
  43189. bottom: 93/1962
  43190. }
  43191. },
  43192. reclining: {
  43193. height: math.unit(70.5, "cm"),
  43194. weight: math.unit(68, "lb"),
  43195. name: "Reclining",
  43196. image: {
  43197. source: "./media/characters/arion/reclining.svg",
  43198. extra: 937/870,
  43199. bottom: 63/1000
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Colossus Size, Low",
  43206. height: math.unit(33, "meters"),
  43207. default: true
  43208. },
  43209. {
  43210. name: "Colossus Size, Mid",
  43211. height: math.unit(52, "meters")
  43212. },
  43213. {
  43214. name: "Colossus Size, High",
  43215. height: math.unit(60, "meters")
  43216. },
  43217. {
  43218. name: "Titan Size, Low",
  43219. height: math.unit(91, "meters"),
  43220. },
  43221. {
  43222. name: "Titan Size, Mid",
  43223. height: math.unit(122, "meters")
  43224. },
  43225. {
  43226. name: "Titan Size, High",
  43227. height: math.unit(162, "meters")
  43228. },
  43229. ]
  43230. ))
  43231. characterMakers.push(() => makeCharacter(
  43232. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43233. {
  43234. front: {
  43235. height: math.unit(53, "meters"),
  43236. name: "Front",
  43237. image: {
  43238. source: "./media/characters/stellar-marbey/front.svg",
  43239. extra: 1913/1805,
  43240. bottom: 92/2005
  43241. }
  43242. },
  43243. back: {
  43244. height: math.unit(53, "meters"),
  43245. name: "Back",
  43246. image: {
  43247. source: "./media/characters/stellar-marbey/back.svg",
  43248. extra: 1960/1851,
  43249. bottom: 28/1988
  43250. }
  43251. },
  43252. mouth: {
  43253. height: math.unit(3.5, "meters"),
  43254. name: "Mouth",
  43255. image: {
  43256. source: "./media/characters/stellar-marbey/mouth.svg"
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Macro",
  43263. height: math.unit(53, "meters"),
  43264. default: true
  43265. },
  43266. ]
  43267. ))
  43268. characterMakers.push(() => makeCharacter(
  43269. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43270. {
  43271. front: {
  43272. height: math.unit(8 + 1/12, "feet"),
  43273. weight: math.unit(233, "lb"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/matsu/front.svg",
  43277. extra: 832/772,
  43278. bottom: 40/872
  43279. }
  43280. },
  43281. back: {
  43282. height: math.unit(8 + 1/12, "feet"),
  43283. weight: math.unit(233, "lb"),
  43284. name: "Back",
  43285. image: {
  43286. source: "./media/characters/matsu/back.svg",
  43287. extra: 839/780,
  43288. bottom: 47/886
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Normal",
  43295. height: math.unit(8 + 1/12, "feet"),
  43296. default: true
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43302. {
  43303. front: {
  43304. height: math.unit(4, "feet"),
  43305. weight: math.unit(148, "lb"),
  43306. name: "Front",
  43307. image: {
  43308. source: "./media/characters/thiz/front.svg",
  43309. extra: 1913/1748,
  43310. bottom: 62/1975
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(4, "feet"),
  43318. default: true
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43324. {
  43325. front: {
  43326. height: math.unit(7 + 6/12, "feet"),
  43327. weight: math.unit(267, "lb"),
  43328. name: "Front",
  43329. image: {
  43330. source: "./media/characters/marcel/front.svg",
  43331. extra: 1221/1096,
  43332. bottom: 76/1297
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Normal",
  43339. height: math.unit(7 + 6/12, "feet"),
  43340. default: true
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43346. {
  43347. side: {
  43348. height: math.unit(42, "meters"),
  43349. name: "Side",
  43350. image: {
  43351. source: "./media/characters/flake/side.svg",
  43352. extra: 1525/1306,
  43353. bottom: 209/1734
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(42, "meters"),
  43361. default: true
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43367. {
  43368. dressed: {
  43369. height: math.unit(6 + 4/12, "feet"),
  43370. weight: math.unit(520, "lb"),
  43371. name: "Dressed",
  43372. image: {
  43373. source: "./media/characters/someonne/dressed.svg",
  43374. extra: 1020/1010,
  43375. bottom: 178/1198
  43376. }
  43377. },
  43378. undressed: {
  43379. height: math.unit(6 + 4/12, "feet"),
  43380. weight: math.unit(520, "lb"),
  43381. name: "Undressed",
  43382. image: {
  43383. source: "./media/characters/someonne/undressed.svg",
  43384. extra: 1019/1014,
  43385. bottom: 169/1188
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Normal",
  43392. height: math.unit(6 + 4/12, "feet"),
  43393. default: true
  43394. },
  43395. ]
  43396. ))
  43397. characterMakers.push(() => makeCharacter(
  43398. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43399. {
  43400. front: {
  43401. height: math.unit(3, "feet"),
  43402. weight: math.unit(30, "lb"),
  43403. name: "Front",
  43404. image: {
  43405. source: "./media/characters/till/front.svg",
  43406. extra: 892/823,
  43407. bottom: 55/947
  43408. }
  43409. },
  43410. },
  43411. [
  43412. {
  43413. name: "Normal",
  43414. height: math.unit(3, "feet"),
  43415. default: true
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43421. {
  43422. front: {
  43423. height: math.unit(9 + 8/12, "feet"),
  43424. weight: math.unit(800, "lb"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/sydney-heki/front.svg",
  43428. extra: 1360/1300,
  43429. bottom: 22/1382
  43430. }
  43431. },
  43432. back: {
  43433. height: math.unit(9 + 8/12, "feet"),
  43434. weight: math.unit(800, "lb"),
  43435. name: "Back",
  43436. image: {
  43437. source: "./media/characters/sydney-heki/back.svg",
  43438. extra: 1356/1293,
  43439. bottom: 12/1368
  43440. }
  43441. },
  43442. frontDressed: {
  43443. height: math.unit(9 + 8/12, "feet"),
  43444. weight: math.unit(800, "lb"),
  43445. name: "Front-dressed",
  43446. image: {
  43447. source: "./media/characters/sydney-heki/front-dressed.svg",
  43448. extra: 1360/1300,
  43449. bottom: 22/1382
  43450. }
  43451. },
  43452. },
  43453. [
  43454. {
  43455. name: "Normal",
  43456. height: math.unit(9 + 8/12, "feet"),
  43457. default: true
  43458. },
  43459. {
  43460. name: "Macro",
  43461. height: math.unit(500, "feet")
  43462. },
  43463. {
  43464. name: "Megamacro",
  43465. height: math.unit(3.6, "miles")
  43466. },
  43467. ]
  43468. ))
  43469. characterMakers.push(() => makeCharacter(
  43470. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43471. {
  43472. front: {
  43473. height: math.unit(200, "cm"),
  43474. weight: math.unit(250, "lb"),
  43475. name: "Front",
  43476. image: {
  43477. source: "./media/characters/fowler-karlsson/front.svg",
  43478. extra: 897/845,
  43479. bottom: 123/1020
  43480. }
  43481. },
  43482. back: {
  43483. height: math.unit(200, "cm"),
  43484. weight: math.unit(250, "lb"),
  43485. name: "Back",
  43486. image: {
  43487. source: "./media/characters/fowler-karlsson/back.svg",
  43488. extra: 999/944,
  43489. bottom: 26/1025
  43490. }
  43491. },
  43492. dick: {
  43493. height: math.unit(1.92, "feet"),
  43494. weight: math.unit(150, "lb"),
  43495. name: "Dick",
  43496. image: {
  43497. source: "./media/characters/fowler-karlsson/dick.svg"
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(200, "cm"),
  43505. default: true
  43506. },
  43507. {
  43508. name: "Smaller Macro",
  43509. height: math.unit(90, "m")
  43510. },
  43511. {
  43512. name: "Macro",
  43513. height: math.unit(150, "m")
  43514. },
  43515. {
  43516. name: "Bigger Macro",
  43517. height: math.unit(300, "m")
  43518. },
  43519. ]
  43520. ))
  43521. characterMakers.push(() => makeCharacter(
  43522. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43523. {
  43524. side: {
  43525. height: math.unit(8 + 2/12, "feet"),
  43526. weight: math.unit(1, "tonne"),
  43527. name: "Side",
  43528. image: {
  43529. source: "./media/characters/rylide/side.svg",
  43530. extra: 1318/1034,
  43531. bottom: 106/1424
  43532. }
  43533. },
  43534. sitting: {
  43535. height: math.unit(303, "cm"),
  43536. weight: math.unit(1, "tonne"),
  43537. name: "Sitting",
  43538. image: {
  43539. source: "./media/characters/rylide/sitting.svg",
  43540. extra: 1303/1103,
  43541. bottom: 36/1339
  43542. }
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Normal",
  43548. height: math.unit(8 + 2/12, "feet"),
  43549. default: true
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43555. {
  43556. front: {
  43557. height: math.unit(5 + 10/12, "feet"),
  43558. weight: math.unit(160, "lb"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/pudask/front.svg",
  43562. extra: 1616/1590,
  43563. bottom: 161/1777
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Ferret Height",
  43570. height: math.unit(2 + 5/12, "feet")
  43571. },
  43572. {
  43573. name: "Canon Height",
  43574. height: math.unit(5 + 10/12, "feet"),
  43575. default: true
  43576. },
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43581. {
  43582. front: {
  43583. height: math.unit(3 + 6/12, "feet"),
  43584. weight: math.unit(60, "lb"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/ramita/front.svg",
  43588. extra: 1402/1232,
  43589. bottom: 62/1464
  43590. }
  43591. },
  43592. dressed: {
  43593. height: math.unit(3 + 6/12, "feet"),
  43594. weight: math.unit(60, "lb"),
  43595. name: "Dressed",
  43596. image: {
  43597. source: "./media/characters/ramita/dressed.svg",
  43598. extra: 1534/1249,
  43599. bottom: 50/1584
  43600. }
  43601. },
  43602. },
  43603. [
  43604. {
  43605. name: "Normal",
  43606. height: math.unit(3 + 6/12, "feet"),
  43607. default: true
  43608. },
  43609. ]
  43610. ))
  43611. characterMakers.push(() => makeCharacter(
  43612. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43613. {
  43614. front: {
  43615. height: math.unit(8, "feet"),
  43616. name: "Front",
  43617. image: {
  43618. source: "./media/characters/ark/front.svg",
  43619. extra: 772/693,
  43620. bottom: 45/817
  43621. }
  43622. },
  43623. },
  43624. [
  43625. {
  43626. name: "Normal",
  43627. height: math.unit(8, "feet"),
  43628. default: true
  43629. },
  43630. ]
  43631. ))
  43632. characterMakers.push(() => makeCharacter(
  43633. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43634. {
  43635. front: {
  43636. height: math.unit(6, "feet"),
  43637. weight: math.unit(250, "lb"),
  43638. volume: math.unit(5/8, "gallons"),
  43639. name: "Front",
  43640. image: {
  43641. source: "./media/characters/ludwig-horn/front.svg",
  43642. extra: 1782/1635,
  43643. bottom: 96/1878
  43644. }
  43645. },
  43646. back: {
  43647. height: math.unit(6, "feet"),
  43648. weight: math.unit(250, "lb"),
  43649. volume: math.unit(5/8, "gallons"),
  43650. name: "Back",
  43651. image: {
  43652. source: "./media/characters/ludwig-horn/back.svg",
  43653. extra: 1874/1729,
  43654. bottom: 27/1901
  43655. }
  43656. },
  43657. dick: {
  43658. height: math.unit(1.05, "feet"),
  43659. weight: math.unit(15, "lb"),
  43660. volume: math.unit(5/8, "gallons"),
  43661. name: "Dick",
  43662. image: {
  43663. source: "./media/characters/ludwig-horn/dick.svg"
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Small",
  43670. height: math.unit(6, "feet")
  43671. },
  43672. {
  43673. name: "Typical",
  43674. height: math.unit(12, "feet"),
  43675. default: true
  43676. },
  43677. {
  43678. name: "Building",
  43679. height: math.unit(80, "feet")
  43680. },
  43681. {
  43682. name: "Town",
  43683. height: math.unit(800, "feet")
  43684. },
  43685. {
  43686. name: "Kingdom",
  43687. height: math.unit(80000, "feet")
  43688. },
  43689. {
  43690. name: "Planet",
  43691. height: math.unit(8000000, "feet")
  43692. },
  43693. {
  43694. name: "Universe",
  43695. height: math.unit(8000000000, "feet")
  43696. },
  43697. {
  43698. name: "Transcended",
  43699. height: math.unit(8e27, "feet")
  43700. },
  43701. ]
  43702. ))
  43703. characterMakers.push(() => makeCharacter(
  43704. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43705. {
  43706. front: {
  43707. height: math.unit(5, "feet"),
  43708. weight: math.unit(50, "kg"),
  43709. name: "Front",
  43710. image: {
  43711. source: "./media/characters/biot-avery/front.svg",
  43712. extra: 1295/1232,
  43713. bottom: 86/1381
  43714. }
  43715. },
  43716. },
  43717. [
  43718. {
  43719. name: "Normal",
  43720. height: math.unit(5, "feet"),
  43721. default: true
  43722. },
  43723. ]
  43724. ))
  43725. characterMakers.push(() => makeCharacter(
  43726. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43727. {
  43728. front: {
  43729. height: math.unit(6, "feet"),
  43730. name: "Front",
  43731. image: {
  43732. source: "./media/characters/kitsune-kiro/front.svg",
  43733. extra: 1270/1158,
  43734. bottom: 42/1312
  43735. }
  43736. },
  43737. frontAlt: {
  43738. height: math.unit(6, "feet"),
  43739. name: "Front-alt",
  43740. image: {
  43741. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43742. extra: 1130/1081,
  43743. bottom: 36/1166
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Smol",
  43750. height: math.unit(3, "feet")
  43751. },
  43752. {
  43753. name: "Normal",
  43754. height: math.unit(6, "feet"),
  43755. default: true
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43761. {
  43762. front: {
  43763. height: math.unit(6, "feet"),
  43764. weight: math.unit(125, "lb"),
  43765. name: "Front",
  43766. image: {
  43767. source: "./media/characters/jack-thatcher/front.svg",
  43768. extra: 1474/1370,
  43769. bottom: 26/1500
  43770. }
  43771. },
  43772. back: {
  43773. height: math.unit(6, "feet"),
  43774. weight: math.unit(125, "lb"),
  43775. name: "Back",
  43776. image: {
  43777. source: "./media/characters/jack-thatcher/back.svg",
  43778. extra: 1489/1384,
  43779. bottom: 18/1507
  43780. }
  43781. },
  43782. },
  43783. [
  43784. {
  43785. name: "Normal",
  43786. height: math.unit(6, "feet"),
  43787. default: true
  43788. },
  43789. {
  43790. name: "Macro",
  43791. height: math.unit(75, "feet")
  43792. },
  43793. {
  43794. name: "Macro-er",
  43795. height: math.unit(250, "feet")
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43801. {
  43802. front: {
  43803. height: math.unit(7, "feet"),
  43804. weight: math.unit(110, "kg"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/max-hyper/front.svg",
  43808. extra: 1969/1881,
  43809. bottom: 49/2018
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Normal",
  43816. height: math.unit(7, "feet"),
  43817. default: true
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43823. {
  43824. front: {
  43825. height: math.unit(5 + 5/12, "feet"),
  43826. weight: math.unit(160, "lb"),
  43827. name: "Front",
  43828. image: {
  43829. source: "./media/characters/spook/front.svg",
  43830. extra: 794/791,
  43831. bottom: 54/848
  43832. }
  43833. },
  43834. back: {
  43835. height: math.unit(5 + 5/12, "feet"),
  43836. weight: math.unit(160, "lb"),
  43837. name: "Back",
  43838. image: {
  43839. source: "./media/characters/spook/back.svg",
  43840. extra: 812/798,
  43841. bottom: 32/844
  43842. }
  43843. },
  43844. },
  43845. [
  43846. {
  43847. name: "Normal",
  43848. height: math.unit(5 + 5/12, "feet"),
  43849. default: true
  43850. },
  43851. ]
  43852. ))
  43853. characterMakers.push(() => makeCharacter(
  43854. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43855. {
  43856. front: {
  43857. height: math.unit(18, "feet"),
  43858. name: "Front",
  43859. image: {
  43860. source: "./media/characters/xeaduulix/front.svg",
  43861. extra: 1380/1166,
  43862. bottom: 110/1490
  43863. }
  43864. },
  43865. back: {
  43866. height: math.unit(18, "feet"),
  43867. name: "Back",
  43868. image: {
  43869. source: "./media/characters/xeaduulix/back.svg",
  43870. extra: 1592/1170,
  43871. bottom: 128/1720
  43872. }
  43873. },
  43874. frontNsfw: {
  43875. height: math.unit(18, "feet"),
  43876. name: "Front (NSFW)",
  43877. image: {
  43878. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43879. extra: 1380/1166,
  43880. bottom: 110/1490
  43881. }
  43882. },
  43883. backNsfw: {
  43884. height: math.unit(18, "feet"),
  43885. name: "Back (NSFW)",
  43886. image: {
  43887. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43888. extra: 1592/1170,
  43889. bottom: 128/1720
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Normal",
  43896. height: math.unit(18, "feet"),
  43897. default: true
  43898. },
  43899. ]
  43900. ))
  43901. characterMakers.push(() => makeCharacter(
  43902. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43903. {
  43904. spreadWings: {
  43905. height: math.unit(20, "feet"),
  43906. name: "Spread Wings",
  43907. image: {
  43908. source: "./media/characters/fledge/spread-wings.svg",
  43909. extra: 693/635,
  43910. bottom: 26/719
  43911. }
  43912. },
  43913. front: {
  43914. height: math.unit(20, "feet"),
  43915. name: "Front",
  43916. image: {
  43917. source: "./media/characters/fledge/front.svg",
  43918. extra: 684/637,
  43919. bottom: 18/702
  43920. }
  43921. },
  43922. frontAlt: {
  43923. height: math.unit(20, "feet"),
  43924. name: "Front (Alt)",
  43925. image: {
  43926. source: "./media/characters/fledge/front-alt.svg",
  43927. extra: 708/664,
  43928. bottom: 13/721
  43929. }
  43930. },
  43931. back: {
  43932. height: math.unit(20, "feet"),
  43933. name: "Back",
  43934. image: {
  43935. source: "./media/characters/fledge/back.svg",
  43936. extra: 718/634,
  43937. bottom: 22/740
  43938. }
  43939. },
  43940. head: {
  43941. height: math.unit(5.55, "feet"),
  43942. name: "Head",
  43943. image: {
  43944. source: "./media/characters/fledge/head.svg"
  43945. }
  43946. },
  43947. headAlt: {
  43948. height: math.unit(5.1, "feet"),
  43949. name: "Head (Alt)",
  43950. image: {
  43951. source: "./media/characters/fledge/head-alt.svg"
  43952. }
  43953. },
  43954. },
  43955. [
  43956. {
  43957. name: "Small",
  43958. height: math.unit(6 + 2/12, "feet")
  43959. },
  43960. {
  43961. name: "Big",
  43962. height: math.unit(20, "feet"),
  43963. default: true
  43964. },
  43965. {
  43966. name: "Giant",
  43967. height: math.unit(100, "feet")
  43968. },
  43969. {
  43970. name: "Macro",
  43971. height: math.unit(200, "feet")
  43972. },
  43973. ]
  43974. ))
  43975. characterMakers.push(() => makeCharacter(
  43976. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43977. {
  43978. front: {
  43979. height: math.unit(1, "meter"),
  43980. name: "Front",
  43981. image: {
  43982. source: "./media/characters/atlas-morenai/front.svg",
  43983. extra: 1275/1043,
  43984. bottom: 19/1294
  43985. }
  43986. },
  43987. back: {
  43988. height: math.unit(1, "meter"),
  43989. name: "Back",
  43990. image: {
  43991. source: "./media/characters/atlas-morenai/back.svg",
  43992. extra: 1141/1001,
  43993. bottom: 25/1166
  43994. }
  43995. },
  43996. },
  43997. [
  43998. {
  43999. name: "Normal",
  44000. height: math.unit(1, "meter"),
  44001. default: true
  44002. },
  44003. {
  44004. name: "Magic-Infused",
  44005. height: math.unit(5, "meters")
  44006. },
  44007. ]
  44008. ))
  44009. characterMakers.push(() => makeCharacter(
  44010. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44011. {
  44012. front: {
  44013. height: math.unit(5, "meters"),
  44014. name: "Front",
  44015. image: {
  44016. source: "./media/characters/cintia/front.svg",
  44017. extra: 1312/1228,
  44018. bottom: 38/1350
  44019. }
  44020. },
  44021. back: {
  44022. height: math.unit(5, "meters"),
  44023. name: "Back",
  44024. image: {
  44025. source: "./media/characters/cintia/back.svg",
  44026. extra: 1260/1166,
  44027. bottom: 98/1358
  44028. }
  44029. },
  44030. frontDick: {
  44031. height: math.unit(5, "meters"),
  44032. name: "Front (Dick)",
  44033. image: {
  44034. source: "./media/characters/cintia/front-dick.svg",
  44035. extra: 1312/1228,
  44036. bottom: 38/1350
  44037. }
  44038. },
  44039. backDick: {
  44040. height: math.unit(5, "meters"),
  44041. name: "Back (Dick)",
  44042. image: {
  44043. source: "./media/characters/cintia/back-dick.svg",
  44044. extra: 1260/1166,
  44045. bottom: 98/1358
  44046. }
  44047. },
  44048. bust: {
  44049. height: math.unit(1.97, "meters"),
  44050. name: "Bust",
  44051. image: {
  44052. source: "./media/characters/cintia/bust.svg",
  44053. extra: 617/565,
  44054. bottom: 0/617
  44055. }
  44056. },
  44057. },
  44058. [
  44059. {
  44060. name: "Normal",
  44061. height: math.unit(5, "meters"),
  44062. default: true
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44068. {
  44069. side: {
  44070. height: math.unit(100, "feet"),
  44071. name: "Side",
  44072. image: {
  44073. source: "./media/characters/denora/side.svg",
  44074. extra: 875/803,
  44075. bottom: 9/884
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Standard",
  44082. height: math.unit(100, "feet"),
  44083. default: true
  44084. },
  44085. {
  44086. name: "Grand",
  44087. height: math.unit(1000, "feet")
  44088. },
  44089. {
  44090. name: "Conquering",
  44091. height: math.unit(10000, "feet")
  44092. },
  44093. ]
  44094. ))
  44095. characterMakers.push(() => makeCharacter(
  44096. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44097. {
  44098. dressed: {
  44099. height: math.unit(8 + 5/12, "feet"),
  44100. weight: math.unit(700, "lb"),
  44101. name: "Dressed",
  44102. image: {
  44103. source: "./media/characters/kiva/dressed.svg",
  44104. extra: 1102/1055,
  44105. bottom: 60/1162
  44106. }
  44107. },
  44108. nude: {
  44109. height: math.unit(8 + 5/12, "feet"),
  44110. weight: math.unit(700, "lb"),
  44111. name: "Nude",
  44112. image: {
  44113. source: "./media/characters/kiva/nude.svg",
  44114. extra: 1102/1055,
  44115. bottom: 60/1162
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Base Height",
  44122. height: math.unit(8 + 5/12, "feet"),
  44123. default: true
  44124. },
  44125. {
  44126. name: "Macro",
  44127. height: math.unit(100, "feet")
  44128. },
  44129. {
  44130. name: "Max",
  44131. height: math.unit(3280, "feet")
  44132. },
  44133. ]
  44134. ))
  44135. characterMakers.push(() => makeCharacter(
  44136. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44137. {
  44138. front: {
  44139. height: math.unit(6 + 8/12, "feet"),
  44140. weight: math.unit(250, "lb"),
  44141. name: "Front",
  44142. image: {
  44143. source: "./media/characters/ztragon/front.svg",
  44144. extra: 1825/1684,
  44145. bottom: 98/1923
  44146. }
  44147. },
  44148. },
  44149. [
  44150. {
  44151. name: "Normal",
  44152. height: math.unit(6 + 8/12, "feet"),
  44153. default: true
  44154. },
  44155. {
  44156. name: "Macro",
  44157. height: math.unit(80, "feet")
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44163. {
  44164. front: {
  44165. height: math.unit(10.4, "feet"),
  44166. weight: math.unit(2, "tons"),
  44167. name: "Front",
  44168. image: {
  44169. source: "./media/characters/yesenia/front.svg",
  44170. extra: 1479/1474,
  44171. bottom: 233/1712
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(10.4, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44185. {
  44186. normal: {
  44187. height: math.unit(6 + 1/12, "feet"),
  44188. weight: math.unit(180, "lb"),
  44189. name: "Normal",
  44190. image: {
  44191. source: "./media/characters/leanne-lycheborne/normal.svg",
  44192. extra: 1748/1660,
  44193. bottom: 98/1846
  44194. }
  44195. },
  44196. were: {
  44197. height: math.unit(12, "feet"),
  44198. weight: math.unit(1600, "lb"),
  44199. name: "Were",
  44200. image: {
  44201. source: "./media/characters/leanne-lycheborne/were.svg",
  44202. extra: 1485/1432,
  44203. bottom: 66/1551
  44204. }
  44205. },
  44206. },
  44207. [
  44208. {
  44209. name: "Normal",
  44210. height: math.unit(6 + 1/12, "feet"),
  44211. default: true
  44212. },
  44213. ]
  44214. ))
  44215. characterMakers.push(() => makeCharacter(
  44216. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44217. {
  44218. side: {
  44219. height: math.unit(13, "feet"),
  44220. name: "Side",
  44221. image: {
  44222. source: "./media/characters/kira-tyler/side.svg",
  44223. extra: 693/393,
  44224. bottom: 58/751
  44225. }
  44226. },
  44227. },
  44228. [
  44229. {
  44230. name: "Normal",
  44231. height: math.unit(13, "feet"),
  44232. default: true
  44233. },
  44234. ]
  44235. ))
  44236. characterMakers.push(() => makeCharacter(
  44237. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44238. {
  44239. front: {
  44240. height: math.unit(10.3, "feet"),
  44241. weight: math.unit(150, "lb"),
  44242. name: "Front",
  44243. image: {
  44244. source: "./media/characters/blaze/front.svg",
  44245. extra: 1378/1286,
  44246. bottom: 172/1550
  44247. }
  44248. },
  44249. },
  44250. [
  44251. {
  44252. name: "Normal",
  44253. height: math.unit(10.3, "feet"),
  44254. default: true
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44260. {
  44261. side: {
  44262. height: math.unit(2, "meters"),
  44263. weight: math.unit(400, "kg"),
  44264. name: "Side",
  44265. image: {
  44266. source: "./media/characters/anu/side.svg",
  44267. extra: 506/394,
  44268. bottom: 18/524
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Humanoid",
  44275. height: math.unit(2, "meters")
  44276. },
  44277. {
  44278. name: "Normal",
  44279. height: math.unit(5, "meters"),
  44280. default: true
  44281. },
  44282. ]
  44283. ))
  44284. characterMakers.push(() => makeCharacter(
  44285. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44286. {
  44287. front: {
  44288. height: math.unit(5 + 5/12, "feet"),
  44289. weight: math.unit(170, "lb"),
  44290. name: "Front",
  44291. image: {
  44292. source: "./media/characters/synx-the-lynx/front.svg",
  44293. extra: 1893/1745,
  44294. bottom: 17/1910
  44295. }
  44296. },
  44297. side: {
  44298. height: math.unit(5 + 5/12, "feet"),
  44299. weight: math.unit(170, "lb"),
  44300. name: "Side",
  44301. image: {
  44302. source: "./media/characters/synx-the-lynx/side.svg",
  44303. extra: 1884/1740,
  44304. bottom: 39/1923
  44305. }
  44306. },
  44307. back: {
  44308. height: math.unit(5 + 5/12, "feet"),
  44309. weight: math.unit(170, "lb"),
  44310. name: "Back",
  44311. image: {
  44312. source: "./media/characters/synx-the-lynx/back.svg",
  44313. extra: 1903/1755,
  44314. bottom: 14/1917
  44315. }
  44316. },
  44317. },
  44318. [
  44319. {
  44320. name: "Normal",
  44321. height: math.unit(5 + 5/12, "feet"),
  44322. default: true
  44323. },
  44324. ]
  44325. ))
  44326. characterMakers.push(() => makeCharacter(
  44327. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44328. {
  44329. back: {
  44330. height: math.unit(15, "feet"),
  44331. name: "Back",
  44332. image: {
  44333. source: "./media/characters/nadezda-fex/back.svg",
  44334. extra: 1695/1481,
  44335. bottom: 25/1720
  44336. }
  44337. },
  44338. },
  44339. [
  44340. {
  44341. name: "Normal",
  44342. height: math.unit(15, "feet"),
  44343. default: true
  44344. },
  44345. {
  44346. name: "Macro",
  44347. height: math.unit(2.5, "miles")
  44348. },
  44349. {
  44350. name: "Goddess",
  44351. height: math.unit(2, "multiverses")
  44352. },
  44353. ]
  44354. ))
  44355. characterMakers.push(() => makeCharacter(
  44356. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44357. {
  44358. front: {
  44359. height: math.unit(216, "cm"),
  44360. name: "Front",
  44361. image: {
  44362. source: "./media/characters/lev/front.svg",
  44363. extra: 1728/1670,
  44364. bottom: 82/1810
  44365. }
  44366. },
  44367. back: {
  44368. height: math.unit(216, "cm"),
  44369. name: "Back",
  44370. image: {
  44371. source: "./media/characters/lev/back.svg",
  44372. extra: 1738/1675,
  44373. bottom: 24/1762
  44374. }
  44375. },
  44376. dressed: {
  44377. height: math.unit(216, "cm"),
  44378. name: "Dressed",
  44379. image: {
  44380. source: "./media/characters/lev/dressed.svg",
  44381. extra: 1397/1351,
  44382. bottom: 73/1470
  44383. }
  44384. },
  44385. head: {
  44386. height: math.unit(0.51, "meter"),
  44387. name: "Head",
  44388. image: {
  44389. source: "./media/characters/lev/head.svg"
  44390. }
  44391. },
  44392. },
  44393. [
  44394. {
  44395. name: "Normal",
  44396. height: math.unit(216, "cm"),
  44397. default: true
  44398. },
  44399. {
  44400. name: "Relatively Macro",
  44401. height: math.unit(80, "meters")
  44402. },
  44403. {
  44404. name: "Megamacro",
  44405. height: math.unit(21600, "meters")
  44406. },
  44407. {
  44408. name: "Megamacro+",
  44409. height: math.unit(64800, "meters")
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44415. {
  44416. front: {
  44417. height: math.unit(2, "meters"),
  44418. weight: math.unit(80, "kg"),
  44419. name: "Front",
  44420. image: {
  44421. source: "./media/characters/moka/front.svg",
  44422. extra: 1337/1255,
  44423. bottom: 58/1395
  44424. }
  44425. },
  44426. },
  44427. [
  44428. {
  44429. name: "Micro",
  44430. height: math.unit(15, "cm")
  44431. },
  44432. {
  44433. name: "Normal",
  44434. height: math.unit(2, "meters"),
  44435. default: true
  44436. },
  44437. {
  44438. name: "Macro",
  44439. height: math.unit(20, "meters"),
  44440. },
  44441. ]
  44442. ))
  44443. characterMakers.push(() => makeCharacter(
  44444. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44445. {
  44446. front: {
  44447. height: math.unit(9, "feet"),
  44448. weight: math.unit(240, "lb"),
  44449. name: "Front",
  44450. image: {
  44451. source: "./media/characters/kuzco/front.svg",
  44452. extra: 1593/1487,
  44453. bottom: 32/1625
  44454. }
  44455. },
  44456. side: {
  44457. height: math.unit(9, "feet"),
  44458. weight: math.unit(240, "lb"),
  44459. name: "Side",
  44460. image: {
  44461. source: "./media/characters/kuzco/side.svg",
  44462. extra: 1575/1485,
  44463. bottom: 30/1605
  44464. }
  44465. },
  44466. back: {
  44467. height: math.unit(9, "feet"),
  44468. weight: math.unit(240, "lb"),
  44469. name: "Back",
  44470. image: {
  44471. source: "./media/characters/kuzco/back.svg",
  44472. extra: 1603/1514,
  44473. bottom: 14/1617
  44474. }
  44475. },
  44476. },
  44477. [
  44478. {
  44479. name: "Normal",
  44480. height: math.unit(9, "feet"),
  44481. default: true
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44487. {
  44488. side: {
  44489. height: math.unit(2, "meters"),
  44490. weight: math.unit(300, "kg"),
  44491. name: "Side",
  44492. image: {
  44493. source: "./media/characters/ceruleus/side.svg",
  44494. extra: 1068/974,
  44495. bottom: 126/1194
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Normal",
  44502. height: math.unit(16, "meters"),
  44503. default: true
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(9, "feet"),
  44512. weight: math.unit(500, "kg"),
  44513. name: "Front",
  44514. image: {
  44515. source: "./media/characters/acouya/front.svg",
  44516. extra: 1660/1473,
  44517. bottom: 28/1688
  44518. }
  44519. },
  44520. },
  44521. [
  44522. {
  44523. name: "Normal",
  44524. height: math.unit(9, "feet"),
  44525. default: true
  44526. },
  44527. ]
  44528. ))
  44529. characterMakers.push(() => makeCharacter(
  44530. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44531. {
  44532. front: {
  44533. height: math.unit(5 + 6/12, "feet"),
  44534. weight: math.unit(195, "lb"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/vant/front.svg",
  44538. extra: 1396/1320,
  44539. bottom: 20/1416
  44540. }
  44541. },
  44542. back: {
  44543. height: math.unit(5 + 6/12, "feet"),
  44544. weight: math.unit(195, "lb"),
  44545. name: "Back",
  44546. image: {
  44547. source: "./media/characters/vant/back.svg",
  44548. extra: 1396/1320,
  44549. bottom: 20/1416
  44550. }
  44551. },
  44552. maw: {
  44553. height: math.unit(0.75, "feet"),
  44554. name: "Maw",
  44555. image: {
  44556. source: "./media/characters/vant/maw.svg"
  44557. }
  44558. },
  44559. paw: {
  44560. height: math.unit(1.07, "feet"),
  44561. name: "Paw",
  44562. image: {
  44563. source: "./media/characters/vant/paw.svg"
  44564. }
  44565. },
  44566. },
  44567. [
  44568. {
  44569. name: "Micro",
  44570. height: math.unit(0.25, "inches")
  44571. },
  44572. {
  44573. name: "Normal",
  44574. height: math.unit(5 + 6/12, "feet"),
  44575. default: true
  44576. },
  44577. {
  44578. name: "Macro",
  44579. height: math.unit(75, "feet")
  44580. },
  44581. ]
  44582. ))
  44583. characterMakers.push(() => makeCharacter(
  44584. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44585. {
  44586. front: {
  44587. height: math.unit(30, "meters"),
  44588. weight: math.unit(363, "tons"),
  44589. name: "Front",
  44590. image: {
  44591. source: "./media/characters/ahra/front.svg",
  44592. extra: 1914/1814,
  44593. bottom: 46/1960
  44594. }
  44595. },
  44596. },
  44597. [
  44598. {
  44599. name: "Macro",
  44600. height: math.unit(30, "meters"),
  44601. default: true
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44607. {
  44608. undressed: {
  44609. height: math.unit(2, "m"),
  44610. weight: math.unit(250, "kg"),
  44611. name: "Undressed",
  44612. image: {
  44613. source: "./media/characters/coriander/undressed.svg",
  44614. extra: 1757/1606,
  44615. bottom: 107/1864
  44616. }
  44617. },
  44618. dressed: {
  44619. height: math.unit(2, "m"),
  44620. weight: math.unit(250, "kg"),
  44621. name: "Dressed",
  44622. image: {
  44623. source: "./media/characters/coriander/dressed.svg",
  44624. extra: 1757/1606,
  44625. bottom: 107/1864
  44626. }
  44627. },
  44628. },
  44629. [
  44630. {
  44631. name: "Normal",
  44632. height: math.unit(4, "meters"),
  44633. default: true
  44634. },
  44635. {
  44636. name: "XL",
  44637. height: math.unit(6, "meters")
  44638. },
  44639. {
  44640. name: "XXL",
  44641. height: math.unit(8, "meters")
  44642. },
  44643. ]
  44644. ))
  44645. characterMakers.push(() => makeCharacter(
  44646. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44647. {
  44648. front: {
  44649. height: math.unit(6, "feet"),
  44650. name: "Front",
  44651. image: {
  44652. source: "./media/characters/syrinx/front.svg",
  44653. extra: 1557/1259,
  44654. bottom: 171/1728
  44655. }
  44656. },
  44657. },
  44658. [
  44659. {
  44660. name: "Normal",
  44661. height: math.unit(6 + 3/12, "feet"),
  44662. default: true
  44663. },
  44664. ]
  44665. ))
  44666. characterMakers.push(() => makeCharacter(
  44667. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44668. {
  44669. front: {
  44670. height: math.unit(11 + 6/12, "feet"),
  44671. weight: math.unit(1.5, "tons"),
  44672. name: "Front",
  44673. image: {
  44674. source: "./media/characters/bor/front.svg",
  44675. extra: 1189/1109,
  44676. bottom: 170/1359
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(11 + 6/12, "feet"),
  44684. default: true
  44685. },
  44686. {
  44687. name: "Macro",
  44688. height: math.unit(32 + 9/12, "feet")
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44694. {
  44695. anthro: {
  44696. height: math.unit(9, "feet"),
  44697. weight: math.unit(2076, "lb"),
  44698. name: "Anthro",
  44699. image: {
  44700. source: "./media/characters/abacus/anthro.svg",
  44701. extra: 1540/1494,
  44702. bottom: 233/1773
  44703. }
  44704. },
  44705. pigeon: {
  44706. height: math.unit(1, "feet"),
  44707. name: "Pigeon",
  44708. image: {
  44709. source: "./media/characters/abacus/pigeon.svg",
  44710. extra: 528/525,
  44711. bottom: 46/574
  44712. }
  44713. },
  44714. },
  44715. [
  44716. {
  44717. name: "Normal",
  44718. height: math.unit(9, "feet"),
  44719. default: true
  44720. },
  44721. ]
  44722. ))
  44723. characterMakers.push(() => makeCharacter(
  44724. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44725. {
  44726. side: {
  44727. height: math.unit(6, "feet"),
  44728. name: "Side",
  44729. image: {
  44730. source: "./media/characters/delkhan/side.svg",
  44731. extra: 1884/1786,
  44732. bottom: 308/2192
  44733. }
  44734. },
  44735. head: {
  44736. height: math.unit(3.38, "feet"),
  44737. name: "Head",
  44738. image: {
  44739. source: "./media/characters/delkhan/head.svg"
  44740. }
  44741. },
  44742. },
  44743. [
  44744. {
  44745. name: "Normal",
  44746. height: math.unit(72, "feet"),
  44747. default: true
  44748. },
  44749. {
  44750. name: "Giant",
  44751. height: math.unit(172, "feet")
  44752. },
  44753. ]
  44754. ))
  44755. characterMakers.push(() => makeCharacter(
  44756. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44757. {
  44758. standing: {
  44759. height: math.unit(6, "feet"),
  44760. name: "Standing",
  44761. image: {
  44762. source: "./media/characters/euchidat/standing.svg",
  44763. extra: 1612/1553,
  44764. bottom: 116/1728
  44765. }
  44766. },
  44767. leaning: {
  44768. height: math.unit(6, "feet"),
  44769. name: "Leaning",
  44770. image: {
  44771. source: "./media/characters/euchidat/leaning.svg",
  44772. extra: 1719/1674,
  44773. bottom: 27/1746
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(175, "feet"),
  44781. default: true
  44782. },
  44783. {
  44784. name: "Megamacro",
  44785. height: math.unit(190, "miles")
  44786. },
  44787. {
  44788. name: "Gigamacro",
  44789. height: math.unit(190000, "miles")
  44790. },
  44791. ]
  44792. ))
  44793. characterMakers.push(() => makeCharacter(
  44794. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44795. {
  44796. front: {
  44797. height: math.unit(6, "feet"),
  44798. weight: math.unit(150, "lb"),
  44799. name: "Front",
  44800. image: {
  44801. source: "./media/characters/rebecca-stack/front.svg",
  44802. extra: 1256/1201,
  44803. bottom: 18/1274
  44804. }
  44805. },
  44806. },
  44807. [
  44808. {
  44809. name: "Normal",
  44810. height: math.unit(5 + 8/12, "feet"),
  44811. default: true
  44812. },
  44813. {
  44814. name: "Demolitionist",
  44815. height: math.unit(200, "feet")
  44816. },
  44817. {
  44818. name: "Out of Control",
  44819. height: math.unit(2, "miles")
  44820. },
  44821. {
  44822. name: "Giga",
  44823. height: math.unit(7200, "miles")
  44824. },
  44825. ]
  44826. ))
  44827. characterMakers.push(() => makeCharacter(
  44828. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44829. {
  44830. front: {
  44831. height: math.unit(6, "feet"),
  44832. weight: math.unit(150, "lb"),
  44833. name: "Front",
  44834. image: {
  44835. source: "./media/characters/jenny-cartwright/front.svg",
  44836. extra: 1384/1376,
  44837. bottom: 58/1442
  44838. }
  44839. },
  44840. },
  44841. [
  44842. {
  44843. name: "Normal",
  44844. height: math.unit(6 + 7/12, "feet"),
  44845. default: true
  44846. },
  44847. {
  44848. name: "Librarian",
  44849. height: math.unit(55, "feet")
  44850. },
  44851. {
  44852. name: "Sightseer",
  44853. height: math.unit(50, "miles")
  44854. },
  44855. {
  44856. name: "Giga",
  44857. height: math.unit(30000, "miles")
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44863. {
  44864. nude: {
  44865. height: math.unit(8, "feet"),
  44866. weight: math.unit(225, "lb"),
  44867. name: "Nude",
  44868. image: {
  44869. source: "./media/characters/marvy/nude.svg",
  44870. extra: 1900/1683,
  44871. bottom: 89/1989
  44872. }
  44873. },
  44874. dressed: {
  44875. height: math.unit(8, "feet"),
  44876. weight: math.unit(225, "lb"),
  44877. name: "Dressed",
  44878. image: {
  44879. source: "./media/characters/marvy/dressed.svg",
  44880. extra: 1900/1683,
  44881. bottom: 89/1989
  44882. }
  44883. },
  44884. head: {
  44885. height: math.unit(2.85, "feet"),
  44886. name: "Head",
  44887. image: {
  44888. source: "./media/characters/marvy/head.svg"
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "Normal",
  44895. height: math.unit(8, "feet"),
  44896. default: true
  44897. },
  44898. ]
  44899. ))
  44900. characterMakers.push(() => makeCharacter(
  44901. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44902. {
  44903. front: {
  44904. height: math.unit(8, "feet"),
  44905. weight: math.unit(250, "lb"),
  44906. name: "Front",
  44907. image: {
  44908. source: "./media/characters/leah/front.svg",
  44909. extra: 1257/1149,
  44910. bottom: 109/1366
  44911. }
  44912. },
  44913. },
  44914. [
  44915. {
  44916. name: "Normal",
  44917. height: math.unit(8, "feet"),
  44918. default: true
  44919. },
  44920. {
  44921. name: "Minimacro",
  44922. height: math.unit(40, "feet")
  44923. },
  44924. {
  44925. name: "Macro",
  44926. height: math.unit(124, "feet")
  44927. },
  44928. {
  44929. name: "Megamacro",
  44930. height: math.unit(850, "feet")
  44931. },
  44932. ]
  44933. ))
  44934. characterMakers.push(() => makeCharacter(
  44935. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44936. {
  44937. side: {
  44938. height: math.unit(13 + 6/12, "feet"),
  44939. weight: math.unit(3200, "lb"),
  44940. name: "Side",
  44941. image: {
  44942. source: "./media/characters/alvir/side.svg",
  44943. extra: 896/589,
  44944. bottom: 26/922
  44945. }
  44946. },
  44947. },
  44948. [
  44949. {
  44950. name: "Normal",
  44951. height: math.unit(13 + 6/12, "feet"),
  44952. default: true
  44953. },
  44954. ]
  44955. ))
  44956. characterMakers.push(() => makeCharacter(
  44957. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  44958. {
  44959. front: {
  44960. height: math.unit(5 + 4/12, "feet"),
  44961. weight: math.unit(236, "lb"),
  44962. name: "Front",
  44963. image: {
  44964. source: "./media/characters/zaina-khalil/front.svg",
  44965. extra: 1533/1485,
  44966. bottom: 94/1627
  44967. }
  44968. },
  44969. side: {
  44970. height: math.unit(5 + 4/12, "feet"),
  44971. weight: math.unit(236, "lb"),
  44972. name: "Side",
  44973. image: {
  44974. source: "./media/characters/zaina-khalil/side.svg",
  44975. extra: 1537/1498,
  44976. bottom: 66/1603
  44977. }
  44978. },
  44979. back: {
  44980. height: math.unit(5 + 4/12, "feet"),
  44981. weight: math.unit(236, "lb"),
  44982. name: "Back",
  44983. image: {
  44984. source: "./media/characters/zaina-khalil/back.svg",
  44985. extra: 1546/1494,
  44986. bottom: 89/1635
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(5 + 4/12, "feet"),
  44994. default: true
  44995. },
  44996. ]
  44997. ))
  44998. characterMakers.push(() => makeCharacter(
  44999. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45000. {
  45001. side: {
  45002. height: math.unit(12, "feet"),
  45003. weight: math.unit(4000, "lb"),
  45004. name: "Side",
  45005. image: {
  45006. source: "./media/characters/terry/side.svg",
  45007. extra: 1518/1439,
  45008. bottom: 149/1667
  45009. }
  45010. },
  45011. },
  45012. [
  45013. {
  45014. name: "Normal",
  45015. height: math.unit(12, "feet"),
  45016. default: true
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45022. {
  45023. front: {
  45024. height: math.unit(12, "feet"),
  45025. weight: math.unit(1500, "lb"),
  45026. name: "Front",
  45027. image: {
  45028. source: "./media/characters/kahea/front.svg",
  45029. extra: 1722/1617,
  45030. bottom: 179/1901
  45031. }
  45032. },
  45033. },
  45034. [
  45035. {
  45036. name: "Normal",
  45037. height: math.unit(12, "feet"),
  45038. default: true
  45039. },
  45040. ]
  45041. ))
  45042. characterMakers.push(() => makeCharacter(
  45043. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45044. {
  45045. demonFront: {
  45046. height: math.unit(36, "feet"),
  45047. name: "Front",
  45048. image: {
  45049. source: "./media/characters/alex-xuria/demon-front.svg",
  45050. extra: 1705/1673,
  45051. bottom: 198/1903
  45052. },
  45053. form: "demon",
  45054. default: true
  45055. },
  45056. demonBack: {
  45057. height: math.unit(36, "feet"),
  45058. name: "Back",
  45059. image: {
  45060. source: "./media/characters/alex-xuria/demon-back.svg",
  45061. extra: 1725/1693,
  45062. bottom: 70/1795
  45063. },
  45064. form: "demon"
  45065. },
  45066. demonHead: {
  45067. height: math.unit(2.14, "meters"),
  45068. name: "Head",
  45069. image: {
  45070. source: "./media/characters/alex-xuria/demon-head.svg"
  45071. },
  45072. form: "demon"
  45073. },
  45074. demonHand: {
  45075. height: math.unit(1.61, "meters"),
  45076. name: "Hand",
  45077. image: {
  45078. source: "./media/characters/alex-xuria/demon-hand.svg"
  45079. },
  45080. form: "demon"
  45081. },
  45082. demonPaw: {
  45083. height: math.unit(1.35, "meters"),
  45084. name: "Paw",
  45085. image: {
  45086. source: "./media/characters/alex-xuria/demon-paw.svg"
  45087. },
  45088. form: "demon"
  45089. },
  45090. demonFoot: {
  45091. height: math.unit(2.2, "meters"),
  45092. name: "Foot",
  45093. image: {
  45094. source: "./media/characters/alex-xuria/demon-foot.svg"
  45095. },
  45096. form: "demon"
  45097. },
  45098. demonCock: {
  45099. height: math.unit(1.74, "meters"),
  45100. name: "Cock",
  45101. image: {
  45102. source: "./media/characters/alex-xuria/demon-cock.svg"
  45103. },
  45104. form: "demon"
  45105. },
  45106. demonTailClosed: {
  45107. height: math.unit(1.47, "meters"),
  45108. name: "Tail (Closed)",
  45109. image: {
  45110. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45111. },
  45112. form: "demon"
  45113. },
  45114. demonTailOpen: {
  45115. height: math.unit(2.85, "meters"),
  45116. name: "Tail (Open)",
  45117. image: {
  45118. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45119. },
  45120. form: "demon"
  45121. },
  45122. incubusFront: {
  45123. height: math.unit(12, "feet"),
  45124. name: "Front",
  45125. image: {
  45126. source: "./media/characters/alex-xuria/incubus-front.svg",
  45127. extra: 1754/1677,
  45128. bottom: 125/1879
  45129. },
  45130. form: "incubus",
  45131. default: true
  45132. },
  45133. incubusBack: {
  45134. height: math.unit(12, "feet"),
  45135. name: "Back",
  45136. image: {
  45137. source: "./media/characters/alex-xuria/incubus-back.svg",
  45138. extra: 1702/1647,
  45139. bottom: 30/1732
  45140. },
  45141. form: "incubus"
  45142. },
  45143. incubusHead: {
  45144. height: math.unit(3.45, "feet"),
  45145. name: "Head",
  45146. image: {
  45147. source: "./media/characters/alex-xuria/incubus-head.svg"
  45148. },
  45149. form: "incubus"
  45150. },
  45151. rabbitFront: {
  45152. height: math.unit(6, "feet"),
  45153. name: "Front",
  45154. image: {
  45155. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45156. extra: 1369/1349,
  45157. bottom: 45/1414
  45158. },
  45159. form: "rabbit",
  45160. default: true
  45161. },
  45162. rabbitSide: {
  45163. height: math.unit(6, "feet"),
  45164. name: "Side",
  45165. image: {
  45166. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45167. extra: 1370/1356,
  45168. bottom: 37/1407
  45169. },
  45170. form: "rabbit"
  45171. },
  45172. rabbitBack: {
  45173. height: math.unit(6, "feet"),
  45174. name: "Back",
  45175. image: {
  45176. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45177. extra: 1375/1358,
  45178. bottom: 43/1418
  45179. },
  45180. form: "rabbit"
  45181. },
  45182. },
  45183. [
  45184. {
  45185. name: "Normal",
  45186. height: math.unit(6, "feet"),
  45187. default: true,
  45188. form: "rabbit"
  45189. },
  45190. {
  45191. name: "Incubus",
  45192. height: math.unit(12, "feet"),
  45193. default: true,
  45194. form: "incubus"
  45195. },
  45196. {
  45197. name: "Demon",
  45198. height: math.unit(36, "feet"),
  45199. default: true,
  45200. form: "demon"
  45201. }
  45202. ],
  45203. {
  45204. "demon": {
  45205. name: "Demon",
  45206. default: true
  45207. },
  45208. "incubus": {
  45209. name: "Incubus",
  45210. },
  45211. "rabbit": {
  45212. name: "Rabbit"
  45213. }
  45214. }
  45215. ))
  45216. characterMakers.push(() => makeCharacter(
  45217. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45218. {
  45219. front: {
  45220. height: math.unit(7 + 5/12, "feet"),
  45221. weight: math.unit(510, "lb"),
  45222. name: "Front",
  45223. image: {
  45224. source: "./media/characters/syrup/front.svg",
  45225. extra: 932/916,
  45226. bottom: 26/958
  45227. }
  45228. },
  45229. },
  45230. [
  45231. {
  45232. name: "Normal",
  45233. height: math.unit(7 + 5/12, "feet"),
  45234. default: true
  45235. },
  45236. {
  45237. name: "Big",
  45238. height: math.unit(50, "feet")
  45239. },
  45240. {
  45241. name: "Macro",
  45242. height: math.unit(300, "feet")
  45243. },
  45244. {
  45245. name: "Megamacro",
  45246. height: math.unit(1, "mile")
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45252. {
  45253. front: {
  45254. height: math.unit(6 + 9/12, "feet"),
  45255. name: "Front",
  45256. image: {
  45257. source: "./media/characters/zeimne/front.svg",
  45258. extra: 1969/1806,
  45259. bottom: 53/2022
  45260. }
  45261. },
  45262. },
  45263. [
  45264. {
  45265. name: "Normal",
  45266. height: math.unit(6 + 9/12, "feet"),
  45267. default: true
  45268. },
  45269. {
  45270. name: "Giant",
  45271. height: math.unit(550, "feet")
  45272. },
  45273. {
  45274. name: "Mega",
  45275. height: math.unit(3, "miles")
  45276. },
  45277. {
  45278. name: "Giga",
  45279. height: math.unit(250, "miles")
  45280. },
  45281. {
  45282. name: "Tera",
  45283. height: math.unit(1, "AU")
  45284. },
  45285. ]
  45286. ))
  45287. characterMakers.push(() => makeCharacter(
  45288. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45289. {
  45290. front: {
  45291. height: math.unit(5 + 2/12, "feet"),
  45292. name: "Front",
  45293. image: {
  45294. source: "./media/characters/grar/front.svg",
  45295. extra: 1331/1119,
  45296. bottom: 60/1391
  45297. }
  45298. },
  45299. back: {
  45300. height: math.unit(5 + 2/12, "feet"),
  45301. name: "Back",
  45302. image: {
  45303. source: "./media/characters/grar/back.svg",
  45304. extra: 1385/1169,
  45305. bottom: 23/1408
  45306. }
  45307. },
  45308. },
  45309. [
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(5 + 2/12, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45319. {
  45320. front: {
  45321. height: math.unit(13 + 7/12, "feet"),
  45322. weight: math.unit(2200, "lb"),
  45323. name: "Front",
  45324. image: {
  45325. source: "./media/characters/endraya/front.svg",
  45326. extra: 1289/1215,
  45327. bottom: 50/1339
  45328. }
  45329. },
  45330. nude: {
  45331. height: math.unit(13 + 7/12, "feet"),
  45332. weight: math.unit(2200, "lb"),
  45333. name: "Nude",
  45334. image: {
  45335. source: "./media/characters/endraya/nude.svg",
  45336. extra: 1247/1171,
  45337. bottom: 40/1287
  45338. }
  45339. },
  45340. head: {
  45341. height: math.unit(2.6, "feet"),
  45342. name: "Head",
  45343. image: {
  45344. source: "./media/characters/endraya/head.svg"
  45345. }
  45346. },
  45347. slit: {
  45348. height: math.unit(3.4, "feet"),
  45349. name: "Slit",
  45350. image: {
  45351. source: "./media/characters/endraya/slit.svg"
  45352. }
  45353. },
  45354. },
  45355. [
  45356. {
  45357. name: "Normal",
  45358. height: math.unit(13 + 7/12, "feet"),
  45359. default: true
  45360. },
  45361. {
  45362. name: "Macro",
  45363. height: math.unit(200, "feet")
  45364. },
  45365. ]
  45366. ))
  45367. characterMakers.push(() => makeCharacter(
  45368. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45369. {
  45370. front: {
  45371. height: math.unit(412, "meters"),
  45372. name: "Front",
  45373. image: {
  45374. source: "./media/characters/rodryana/front.svg",
  45375. extra: 2002/1921,
  45376. bottom: 53/2055
  45377. }
  45378. },
  45379. back: {
  45380. height: math.unit(412, "meters"),
  45381. name: "Back",
  45382. image: {
  45383. source: "./media/characters/rodryana/back.svg",
  45384. extra: 1993/1926,
  45385. bottom: 48/2041
  45386. }
  45387. },
  45388. maw: {
  45389. height: math.unit(45, "meters"),
  45390. name: "Maw",
  45391. image: {
  45392. source: "./media/characters/rodryana/maw.svg"
  45393. }
  45394. },
  45395. slit: {
  45396. height: math.unit(72, "meters"),
  45397. name: "Slit",
  45398. image: {
  45399. source: "./media/characters/rodryana/slit.svg"
  45400. }
  45401. },
  45402. },
  45403. [
  45404. {
  45405. name: "Macro",
  45406. height: math.unit(412, "meters"),
  45407. default: true
  45408. },
  45409. ]
  45410. ))
  45411. //characters
  45412. function makeCharacters() {
  45413. const results = [];
  45414. characterMakers.forEach(character => {
  45415. results.push(character());
  45416. });
  45417. return results;
  45418. }