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.
 
 
 

46880 line
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["mammal"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. "black-sable-antelope": {
  1824. name: "Black Sable Antelope",
  1825. parents: ["antelope"]
  1826. },
  1827. "slime": {
  1828. name: "Slime",
  1829. parents: ["goo"]
  1830. },
  1831. "utahraptor": {
  1832. name: "Utahraptor",
  1833. parents: ["raptor"]
  1834. },
  1835. }
  1836. //species
  1837. function getSpeciesInfo(speciesList) {
  1838. let result = new Set();
  1839. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1840. result.add(entry)
  1841. });
  1842. return Array.from(result);
  1843. };
  1844. function getSpeciesInfoHelper(species) {
  1845. if (!speciesData[species]) {
  1846. console.warn(species + " doesn't exist");
  1847. return [];
  1848. }
  1849. if (speciesData[species].parents) {
  1850. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1851. } else {
  1852. return [species];
  1853. }
  1854. }
  1855. characterMakers.push(() => makeCharacter(
  1856. {
  1857. name: "Fen",
  1858. species: ["crux"],
  1859. description: {
  1860. title: "Bio",
  1861. text: "Very furry. Sheds on everything."
  1862. },
  1863. tags: [
  1864. "anthro",
  1865. "goo"
  1866. ]
  1867. },
  1868. {
  1869. front: {
  1870. height: math.unit(12, "feet"),
  1871. weight: math.unit(1600, "lb"),
  1872. name: "Front",
  1873. image: {
  1874. source: "./media/characters/fen/front.svg",
  1875. extra: 1804/1562,
  1876. bottom: 205/2009
  1877. }
  1878. },
  1879. diving: {
  1880. height: math.unit(4.9, "meters"),
  1881. weight: math.unit(1600, "lb"),
  1882. name: "Diving",
  1883. image: {
  1884. source: "./media/characters/fen/diving.svg"
  1885. }
  1886. },
  1887. goo: {
  1888. height: math.unit(12, "feet"),
  1889. weight: math.unit(1600, "lb"),
  1890. capacity: math.unit(6, "people"),
  1891. name: "Goo",
  1892. image: {
  1893. source: "./media/characters/fen/goo.svg",
  1894. extra: 1307/1071,
  1895. bottom: 134/1441
  1896. }
  1897. },
  1898. maw: {
  1899. height: math.unit(5.03, "feet"),
  1900. name: "Maw",
  1901. image: {
  1902. source: "./media/characters/fen/maw.svg"
  1903. }
  1904. },
  1905. gooCeiling: {
  1906. height: math.unit(6.6, "feet"),
  1907. weight: math.unit(1600, "lb"),
  1908. capacity: math.unit(6, "people"),
  1909. name: "Goo (Ceiling)",
  1910. image: {
  1911. source: "./media/characters/fen/goo-ceiling.svg"
  1912. }
  1913. },
  1914. back: {
  1915. height: math.unit(12, "feet"),
  1916. weight: math.unit(1600, "lb"),
  1917. name: "Back",
  1918. image: {
  1919. source: "./media/characters/fen/back.svg",
  1920. },
  1921. info: {
  1922. description: {
  1923. mode: "append",
  1924. text: "\n\nHe is not currently looking at you."
  1925. }
  1926. }
  1927. },
  1928. full: {
  1929. height: math.unit(1.6, "meter"),
  1930. weight: math.unit(2200, "lb"),
  1931. name: "Full",
  1932. image: {
  1933. source: "./media/characters/fen/full.svg",
  1934. extra: 1133/859,
  1935. bottom: 145/1278
  1936. },
  1937. info: {
  1938. description: {
  1939. mode: "append",
  1940. text: "\n\nMunch."
  1941. }
  1942. }
  1943. },
  1944. gooLounging: {
  1945. height: math.unit(4.53, "feet"),
  1946. weight: math.unit(1600, "lb"),
  1947. capacity: math.unit(6, "people"),
  1948. name: "Goo (Lounging)",
  1949. image: {
  1950. source: "./media/characters/fen/goo.svg",
  1951. bottom: 116 / 613
  1952. }
  1953. },
  1954. lounging: {
  1955. height: math.unit(10.52, "feet"),
  1956. weight: math.unit(1600, "lb"),
  1957. name: "Lounging",
  1958. image: {
  1959. source: "./media/characters/fen/lounging.svg"
  1960. }
  1961. },
  1962. },
  1963. [
  1964. {
  1965. name: "Small",
  1966. height: math.unit(2.2428, "meter")
  1967. },
  1968. {
  1969. name: "Normal",
  1970. height: math.unit(12, "feet"),
  1971. default: true,
  1972. },
  1973. {
  1974. name: "Big",
  1975. height: math.unit(20, "feet")
  1976. },
  1977. {
  1978. name: "Minimacro",
  1979. height: math.unit(40, "feet"),
  1980. info: {
  1981. description: {
  1982. mode: "append",
  1983. text: "\n\nTOO DAMN BIG"
  1984. }
  1985. }
  1986. },
  1987. {
  1988. name: "Macro",
  1989. height: math.unit(100, "feet"),
  1990. info: {
  1991. description: {
  1992. mode: "append",
  1993. text: "\n\nTOO DAMN BIG"
  1994. }
  1995. }
  1996. },
  1997. {
  1998. name: "Megamacro",
  1999. height: math.unit(2, "miles")
  2000. },
  2001. {
  2002. name: "Gigamacro",
  2003. height: math.unit(10, "earths")
  2004. },
  2005. ]
  2006. ))
  2007. characterMakers.push(() => makeCharacter(
  2008. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2009. {
  2010. front: {
  2011. height: math.unit(183, "cm"),
  2012. weight: math.unit(80, "kg"),
  2013. name: "Front",
  2014. image: {
  2015. source: "./media/characters/sofia-fluttertail/front.svg",
  2016. bottom: 0.01,
  2017. extra: 2154 / 2081
  2018. }
  2019. },
  2020. frontAlt: {
  2021. height: math.unit(183, "cm"),
  2022. weight: math.unit(80, "kg"),
  2023. name: "Front (alt)",
  2024. image: {
  2025. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2026. }
  2027. },
  2028. back: {
  2029. height: math.unit(183, "cm"),
  2030. weight: math.unit(80, "kg"),
  2031. name: "Back",
  2032. image: {
  2033. source: "./media/characters/sofia-fluttertail/back.svg"
  2034. }
  2035. },
  2036. kneeling: {
  2037. height: math.unit(125, "cm"),
  2038. weight: math.unit(80, "kg"),
  2039. name: "Kneeling",
  2040. image: {
  2041. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2042. extra: 1033 / 977,
  2043. bottom: 23.7 / 1057
  2044. }
  2045. },
  2046. maw: {
  2047. height: math.unit(183 / 5, "cm"),
  2048. name: "Maw",
  2049. image: {
  2050. source: "./media/characters/sofia-fluttertail/maw.svg"
  2051. }
  2052. },
  2053. mawcloseup: {
  2054. height: math.unit(183 / 5 * 0.41, "cm"),
  2055. name: "Maw (Closeup)",
  2056. image: {
  2057. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2058. }
  2059. },
  2060. paws: {
  2061. height: math.unit(1.17, "feet"),
  2062. name: "Paws",
  2063. image: {
  2064. source: "./media/characters/sofia-fluttertail/paws.svg",
  2065. extra: 851 / 851,
  2066. bottom: 17 / 868
  2067. }
  2068. },
  2069. },
  2070. [
  2071. {
  2072. name: "Normal",
  2073. height: math.unit(1.83, "meter")
  2074. },
  2075. {
  2076. name: "Size Thief",
  2077. height: math.unit(18, "feet")
  2078. },
  2079. {
  2080. name: "50 Foot Collie",
  2081. height: math.unit(50, "feet")
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(96, "feet"),
  2086. default: true
  2087. },
  2088. {
  2089. name: "Megamerger",
  2090. height: math.unit(650, "feet")
  2091. },
  2092. ]
  2093. ))
  2094. characterMakers.push(() => makeCharacter(
  2095. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2096. {
  2097. front: {
  2098. height: math.unit(7, "feet"),
  2099. weight: math.unit(100, "kg"),
  2100. name: "Front",
  2101. image: {
  2102. source: "./media/characters/march/front.svg",
  2103. extra: 1992/1851,
  2104. bottom: 39/2031
  2105. }
  2106. },
  2107. foot: {
  2108. height: math.unit(0.9, "feet"),
  2109. name: "Foot",
  2110. image: {
  2111. source: "./media/characters/march/foot.svg"
  2112. }
  2113. },
  2114. },
  2115. [
  2116. {
  2117. name: "Normal",
  2118. height: math.unit(7.9, "feet")
  2119. },
  2120. {
  2121. name: "Macro",
  2122. height: math.unit(220, "meters")
  2123. },
  2124. {
  2125. name: "Megamacro",
  2126. height: math.unit(2.98, "km"),
  2127. default: true
  2128. },
  2129. {
  2130. name: "Gigamacro",
  2131. height: math.unit(15963, "km")
  2132. },
  2133. {
  2134. name: "Teramacro",
  2135. height: math.unit(2980000000, "km")
  2136. },
  2137. {
  2138. name: "Examacro",
  2139. height: math.unit(250, "parsecs")
  2140. },
  2141. ]
  2142. ))
  2143. characterMakers.push(() => makeCharacter(
  2144. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2145. {
  2146. front: {
  2147. height: math.unit(6, "feet"),
  2148. weight: math.unit(60, "kg"),
  2149. name: "Front",
  2150. image: {
  2151. source: "./media/characters/noir/front.svg",
  2152. extra: 1,
  2153. bottom: 0.032
  2154. }
  2155. },
  2156. },
  2157. [
  2158. {
  2159. name: "Normal",
  2160. height: math.unit(6.6, "feet")
  2161. },
  2162. {
  2163. name: "Macro",
  2164. height: math.unit(500, "feet")
  2165. },
  2166. {
  2167. name: "Megamacro",
  2168. height: math.unit(2.5, "km"),
  2169. default: true
  2170. },
  2171. {
  2172. name: "Gigamacro",
  2173. height: math.unit(22500, "km")
  2174. },
  2175. {
  2176. name: "Teramacro",
  2177. height: math.unit(2500000000, "km")
  2178. },
  2179. {
  2180. name: "Examacro",
  2181. height: math.unit(200, "parsecs")
  2182. },
  2183. ]
  2184. ))
  2185. characterMakers.push(() => makeCharacter(
  2186. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2187. {
  2188. front: {
  2189. height: math.unit(7, "feet"),
  2190. weight: math.unit(100, "kg"),
  2191. name: "Front",
  2192. image: {
  2193. source: "./media/characters/okuri/front.svg",
  2194. extra: 1,
  2195. bottom: 0.037
  2196. }
  2197. },
  2198. back: {
  2199. height: math.unit(7, "feet"),
  2200. weight: math.unit(100, "kg"),
  2201. name: "Back",
  2202. image: {
  2203. source: "./media/characters/okuri/back.svg",
  2204. extra: 1,
  2205. bottom: 0.007
  2206. }
  2207. },
  2208. },
  2209. [
  2210. {
  2211. name: "Megamacro",
  2212. height: math.unit(100, "miles"),
  2213. default: true
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(100, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/manny/front.svg",
  2226. extra: 1,
  2227. bottom: 0.06
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(7, "feet"),
  2232. weight: math.unit(100, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/manny/back.svg",
  2236. extra: 1,
  2237. bottom: 0.014
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Normal",
  2244. height: math.unit(7, "feet"),
  2245. },
  2246. {
  2247. name: "Macro",
  2248. height: math.unit(78, "feet"),
  2249. default: true
  2250. },
  2251. {
  2252. name: "Macro+",
  2253. height: math.unit(300, "meters")
  2254. },
  2255. {
  2256. name: "Macro++",
  2257. height: math.unit(2400, "meters")
  2258. },
  2259. {
  2260. name: "Megamacro",
  2261. height: math.unit(5167, "meters")
  2262. },
  2263. {
  2264. name: "Gigamacro",
  2265. height: math.unit(41769, "miles")
  2266. },
  2267. ]
  2268. ))
  2269. characterMakers.push(() => makeCharacter(
  2270. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2271. {
  2272. front: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Front",
  2276. image: {
  2277. source: "./media/characters/adake/front-1.svg"
  2278. }
  2279. },
  2280. frontAlt: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Front (Alt)",
  2284. image: {
  2285. source: "./media/characters/adake/front-2.svg",
  2286. extra: 1,
  2287. bottom: 0.01
  2288. }
  2289. },
  2290. back: {
  2291. height: math.unit(7, "feet"),
  2292. weight: math.unit(100, "kg"),
  2293. name: "Back",
  2294. image: {
  2295. source: "./media/characters/adake/back.svg",
  2296. }
  2297. },
  2298. kneel: {
  2299. height: math.unit(5.385, "feet"),
  2300. weight: math.unit(100, "kg"),
  2301. name: "Kneeling",
  2302. image: {
  2303. source: "./media/characters/adake/kneel.svg",
  2304. bottom: 0.052
  2305. }
  2306. },
  2307. },
  2308. [
  2309. {
  2310. name: "Normal",
  2311. height: math.unit(7, "feet"),
  2312. },
  2313. {
  2314. name: "Macro",
  2315. height: math.unit(78, "feet"),
  2316. default: true
  2317. },
  2318. {
  2319. name: "Macro+",
  2320. height: math.unit(300, "meters")
  2321. },
  2322. {
  2323. name: "Macro++",
  2324. height: math.unit(2400, "meters")
  2325. },
  2326. {
  2327. name: "Megamacro",
  2328. height: math.unit(5167, "meters")
  2329. },
  2330. {
  2331. name: "Gigamacro",
  2332. height: math.unit(41769, "miles")
  2333. },
  2334. ]
  2335. ))
  2336. characterMakers.push(() => makeCharacter(
  2337. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2338. {
  2339. front: {
  2340. height: math.unit(1.65, "meters"),
  2341. weight: math.unit(50, "kg"),
  2342. name: "Front",
  2343. image: {
  2344. source: "./media/characters/elijah/front.svg",
  2345. extra: 858 / 830,
  2346. bottom: 95.5 / 953.8559
  2347. }
  2348. },
  2349. back: {
  2350. height: math.unit(1.65, "meters"),
  2351. weight: math.unit(50, "kg"),
  2352. name: "Back",
  2353. image: {
  2354. source: "./media/characters/elijah/back.svg",
  2355. extra: 895 / 850,
  2356. bottom: 5.3 / 897.956
  2357. }
  2358. },
  2359. frontNsfw: {
  2360. height: math.unit(1.65, "meters"),
  2361. weight: math.unit(50, "kg"),
  2362. name: "Front (NSFW)",
  2363. image: {
  2364. source: "./media/characters/elijah/front-nsfw.svg",
  2365. extra: 858 / 830,
  2366. bottom: 95.5 / 953.8559
  2367. }
  2368. },
  2369. backNsfw: {
  2370. height: math.unit(1.65, "meters"),
  2371. weight: math.unit(50, "kg"),
  2372. name: "Back (NSFW)",
  2373. image: {
  2374. source: "./media/characters/elijah/back-nsfw.svg",
  2375. extra: 895 / 850,
  2376. bottom: 5.3 / 897.956
  2377. }
  2378. },
  2379. dick: {
  2380. height: math.unit(1, "feet"),
  2381. name: "Dick",
  2382. image: {
  2383. source: "./media/characters/elijah/dick.svg"
  2384. }
  2385. },
  2386. beakOpen: {
  2387. height: math.unit(1.25, "feet"),
  2388. name: "Beak (Open)",
  2389. image: {
  2390. source: "./media/characters/elijah/beak-open.svg"
  2391. }
  2392. },
  2393. beakShut: {
  2394. height: math.unit(1.25, "feet"),
  2395. name: "Beak (Shut)",
  2396. image: {
  2397. source: "./media/characters/elijah/beak-shut.svg"
  2398. }
  2399. },
  2400. footFlexing: {
  2401. height: math.unit(1.61, "feet"),
  2402. name: "Foot (Flexing)",
  2403. image: {
  2404. source: "./media/characters/elijah/foot-flexing.svg"
  2405. }
  2406. },
  2407. footStepping: {
  2408. height: math.unit(1.44, "feet"),
  2409. name: "Foot (Stepping)",
  2410. image: {
  2411. source: "./media/characters/elijah/foot-stepping.svg"
  2412. }
  2413. },
  2414. plantigradeLeg: {
  2415. height: math.unit(2.34, "feet"),
  2416. name: "Plantigrade Leg",
  2417. image: {
  2418. source: "./media/characters/elijah/plantigrade-leg.svg"
  2419. }
  2420. },
  2421. plantigradeFootLeft: {
  2422. height: math.unit(0.9, "feet"),
  2423. name: "Plantigrade Foot (Left)",
  2424. image: {
  2425. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2426. }
  2427. },
  2428. plantigradeFootRight: {
  2429. height: math.unit(0.9, "feet"),
  2430. name: "Plantigrade Foot (Right)",
  2431. image: {
  2432. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(1.65, "meters")
  2440. },
  2441. {
  2442. name: "Macro",
  2443. height: math.unit(55, "meters"),
  2444. default: true
  2445. },
  2446. {
  2447. name: "Macro+",
  2448. height: math.unit(105, "meters")
  2449. },
  2450. ]
  2451. ))
  2452. characterMakers.push(() => makeCharacter(
  2453. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2454. {
  2455. front: {
  2456. height: math.unit(7 + 2/12, "feet"),
  2457. weight: math.unit(320, "kg"),
  2458. name: "Front",
  2459. image: {
  2460. source: "./media/characters/rai/front.svg",
  2461. extra: 1802/1696,
  2462. bottom: 68/1870
  2463. }
  2464. },
  2465. frontDressed: {
  2466. height: math.unit(7 + 2/12, "feet"),
  2467. weight: math.unit(320, "kg"),
  2468. name: "Front (Dressed)",
  2469. image: {
  2470. source: "./media/characters/rai/front-dressed.svg",
  2471. extra: 1802/1696,
  2472. bottom: 68/1870
  2473. }
  2474. },
  2475. side: {
  2476. height: math.unit(7 + 2/12, "feet"),
  2477. weight: math.unit(320, "kg"),
  2478. name: "Side",
  2479. image: {
  2480. source: "./media/characters/rai/side.svg",
  2481. extra: 1789/1710,
  2482. bottom: 115/1904
  2483. }
  2484. },
  2485. back: {
  2486. height: math.unit(7 + 2/12, "feet"),
  2487. weight: math.unit(320, "kg"),
  2488. name: "Back",
  2489. image: {
  2490. source: "./media/characters/rai/back.svg",
  2491. extra: 1770/1707,
  2492. bottom: 28/1798
  2493. }
  2494. },
  2495. feral: {
  2496. height: math.unit(9.5, "feet"),
  2497. weight: math.unit(640, "kg"),
  2498. name: "Feral",
  2499. image: {
  2500. source: "./media/characters/rai/feral.svg",
  2501. extra: 945/553,
  2502. bottom: 176/1121
  2503. }
  2504. },
  2505. dragon: {
  2506. height: math.unit(23, "feet"),
  2507. weight: math.unit(50000, "lb"),
  2508. name: "Dragon",
  2509. image: {
  2510. source: "./media/characters/rai/dragon.svg",
  2511. extra: 2498 / 2030,
  2512. bottom: 85.2 / 2584
  2513. }
  2514. },
  2515. maw: {
  2516. height: math.unit(1.69, "feet"),
  2517. name: "Maw",
  2518. image: {
  2519. source: "./media/characters/rai/maw.svg"
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(7 + 2/12, "feet")
  2527. },
  2528. {
  2529. name: "Big",
  2530. height: math.unit(11, "feet")
  2531. },
  2532. {
  2533. name: "Macro",
  2534. height: math.unit(302, "feet"),
  2535. default: true
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2541. {
  2542. frontDressed: {
  2543. height: math.unit(216, "feet"),
  2544. weight: math.unit(7000000, "lb"),
  2545. name: "Front (Dressed)",
  2546. image: {
  2547. source: "./media/characters/jazzy/front-dressed.svg",
  2548. extra: 2738 / 2651,
  2549. bottom: 41.8 / 2786
  2550. }
  2551. },
  2552. backDressed: {
  2553. height: math.unit(216, "feet"),
  2554. weight: math.unit(7000000, "lb"),
  2555. name: "Back (Dressed)",
  2556. image: {
  2557. source: "./media/characters/jazzy/back-dressed.svg",
  2558. extra: 2775 / 2673,
  2559. bottom: 36.8 / 2817
  2560. }
  2561. },
  2562. front: {
  2563. height: math.unit(216, "feet"),
  2564. weight: math.unit(7000000, "lb"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/jazzy/front.svg",
  2568. extra: 2738 / 2651,
  2569. bottom: 41.8 / 2786
  2570. }
  2571. },
  2572. back: {
  2573. height: math.unit(216, "feet"),
  2574. weight: math.unit(7000000, "lb"),
  2575. name: "Back",
  2576. image: {
  2577. source: "./media/characters/jazzy/back.svg",
  2578. extra: 2775 / 2673,
  2579. bottom: 36.8 / 2817
  2580. }
  2581. },
  2582. maw: {
  2583. height: math.unit(20, "feet"),
  2584. name: "Maw",
  2585. image: {
  2586. source: "./media/characters/jazzy/maw.svg"
  2587. }
  2588. },
  2589. paws: {
  2590. height: math.unit(27.5, "feet"),
  2591. name: "Paws",
  2592. image: {
  2593. source: "./media/characters/jazzy/paws.svg"
  2594. }
  2595. },
  2596. eye: {
  2597. height: math.unit(4.4, "feet"),
  2598. name: "Eye",
  2599. image: {
  2600. source: "./media/characters/jazzy/eye.svg"
  2601. }
  2602. },
  2603. droneOffense: {
  2604. height: math.unit(9.5, "inches"),
  2605. name: "Drone (Offense)",
  2606. image: {
  2607. source: "./media/characters/jazzy/drone-offense.svg"
  2608. }
  2609. },
  2610. droneRecon: {
  2611. height: math.unit(9.5, "inches"),
  2612. name: "Drone (Recon)",
  2613. image: {
  2614. source: "./media/characters/jazzy/drone-recon.svg"
  2615. }
  2616. },
  2617. droneDefense: {
  2618. height: math.unit(9.5, "inches"),
  2619. name: "Drone (Defense)",
  2620. image: {
  2621. source: "./media/characters/jazzy/drone-defense.svg"
  2622. }
  2623. },
  2624. },
  2625. [
  2626. {
  2627. name: "Macro",
  2628. height: math.unit(216, "feet"),
  2629. default: true
  2630. },
  2631. ]
  2632. ))
  2633. characterMakers.push(() => makeCharacter(
  2634. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2635. {
  2636. front: {
  2637. height: math.unit(9 + 6/12, "feet"),
  2638. weight: math.unit(700, "lb"),
  2639. name: "Front",
  2640. image: {
  2641. source: "./media/characters/flamm/front.svg",
  2642. extra: 1751/1632,
  2643. bottom: 46/1797
  2644. }
  2645. },
  2646. buff: {
  2647. height: math.unit(9 + 6/12, "feet"),
  2648. weight: math.unit(950, "lb"),
  2649. name: "Buff",
  2650. image: {
  2651. source: "./media/characters/flamm/buff.svg",
  2652. extra: 3018/2874,
  2653. bottom: 221/3239
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Normal",
  2660. height: math.unit(9.5, "feet")
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(200, "feet"),
  2665. default: true
  2666. },
  2667. ]
  2668. ))
  2669. characterMakers.push(() => makeCharacter(
  2670. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2671. {
  2672. front: {
  2673. height: math.unit(5 + 3/12, "feet"),
  2674. weight: math.unit(60, "kg"),
  2675. name: "Front",
  2676. image: {
  2677. source: "./media/characters/zephiro/front.svg",
  2678. extra: 2309 / 2162,
  2679. bottom: 0.069
  2680. }
  2681. },
  2682. side: {
  2683. height: math.unit(5 + 3/12, "feet"),
  2684. weight: math.unit(60, "kg"),
  2685. name: "Side",
  2686. image: {
  2687. source: "./media/characters/zephiro/side.svg",
  2688. extra: 2403 / 2279,
  2689. bottom: 0.015
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(5 + 3/12, "feet"),
  2694. weight: math.unit(60, "kg"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/zephiro/back.svg",
  2698. extra: 2373 / 2244,
  2699. bottom: 0.013
  2700. }
  2701. },
  2702. hand: {
  2703. height: math.unit(0.68, "feet"),
  2704. name: "Hand",
  2705. image: {
  2706. source: "./media/characters/zephiro/hand.svg"
  2707. }
  2708. },
  2709. paw: {
  2710. height: math.unit(1, "feet"),
  2711. name: "Paw",
  2712. image: {
  2713. source: "./media/characters/zephiro/paw.svg"
  2714. }
  2715. },
  2716. beans: {
  2717. height: math.unit(0.93, "feet"),
  2718. name: "Beans",
  2719. image: {
  2720. source: "./media/characters/zephiro/beans.svg"
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Micro",
  2727. height: math.unit(3, "inches")
  2728. },
  2729. {
  2730. name: "Normal",
  2731. height: math.unit(5 + 3 / 12, "feet"),
  2732. default: true
  2733. },
  2734. {
  2735. name: "Macro",
  2736. height: math.unit(118, "feet")
  2737. },
  2738. ]
  2739. ))
  2740. characterMakers.push(() => makeCharacter(
  2741. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2742. {
  2743. front: {
  2744. height: math.unit(5, "feet"),
  2745. weight: math.unit(90, "kg"),
  2746. name: "Front",
  2747. image: {
  2748. source: "./media/characters/fory/front.svg",
  2749. extra: 2862 / 2674,
  2750. bottom: 180 / 3043.8
  2751. }
  2752. },
  2753. back: {
  2754. height: math.unit(5, "feet"),
  2755. weight: math.unit(90, "kg"),
  2756. name: "Back",
  2757. image: {
  2758. source: "./media/characters/fory/back.svg",
  2759. extra: 2962 / 2791,
  2760. bottom: 106 / 3071.8
  2761. }
  2762. },
  2763. foot: {
  2764. height: math.unit(2.14, "feet"),
  2765. name: "Foot",
  2766. image: {
  2767. source: "./media/characters/fory/foot.svg"
  2768. }
  2769. },
  2770. },
  2771. [
  2772. {
  2773. name: "Normal",
  2774. height: math.unit(5, "feet")
  2775. },
  2776. {
  2777. name: "Macro",
  2778. height: math.unit(50, "feet"),
  2779. default: true
  2780. },
  2781. {
  2782. name: "Megamacro",
  2783. height: math.unit(10, "miles")
  2784. },
  2785. {
  2786. name: "Gigamacro",
  2787. height: math.unit(5, "earths")
  2788. },
  2789. ]
  2790. ))
  2791. characterMakers.push(() => makeCharacter(
  2792. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2793. {
  2794. front: {
  2795. height: math.unit(7, "feet"),
  2796. weight: math.unit(90, "kg"),
  2797. name: "Front",
  2798. image: {
  2799. source: "./media/characters/kurrikage/front.svg",
  2800. extra: 1845/1733,
  2801. bottom: 119/1964
  2802. }
  2803. },
  2804. back: {
  2805. height: math.unit(7, "feet"),
  2806. weight: math.unit(90, "kg"),
  2807. name: "Back",
  2808. image: {
  2809. source: "./media/characters/kurrikage/back.svg",
  2810. extra: 1790/1677,
  2811. bottom: 61/1851
  2812. }
  2813. },
  2814. dressed: {
  2815. height: math.unit(7, "feet"),
  2816. weight: math.unit(90, "kg"),
  2817. name: "Dressed",
  2818. image: {
  2819. source: "./media/characters/kurrikage/dressed.svg",
  2820. extra: 1845/1733,
  2821. bottom: 119/1964
  2822. }
  2823. },
  2824. foot: {
  2825. height: math.unit(1.5, "feet"),
  2826. name: "Foot",
  2827. image: {
  2828. source: "./media/characters/kurrikage/foot.svg"
  2829. }
  2830. },
  2831. staff: {
  2832. height: math.unit(6.7, "feet"),
  2833. name: "Staff",
  2834. image: {
  2835. source: "./media/characters/kurrikage/staff.svg"
  2836. }
  2837. },
  2838. peek: {
  2839. height: math.unit(1.05, "feet"),
  2840. name: "Peeking",
  2841. image: {
  2842. source: "./media/characters/kurrikage/peek.svg",
  2843. bottom: 0.08
  2844. }
  2845. },
  2846. },
  2847. [
  2848. {
  2849. name: "Normal",
  2850. height: math.unit(12, "feet"),
  2851. default: true
  2852. },
  2853. {
  2854. name: "Big",
  2855. height: math.unit(20, "feet")
  2856. },
  2857. {
  2858. name: "Macro",
  2859. height: math.unit(500, "feet")
  2860. },
  2861. {
  2862. name: "Megamacro",
  2863. height: math.unit(20, "miles")
  2864. },
  2865. ]
  2866. ))
  2867. characterMakers.push(() => makeCharacter(
  2868. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2869. {
  2870. front: {
  2871. height: math.unit(6, "feet"),
  2872. weight: math.unit(75, "kg"),
  2873. name: "Front",
  2874. image: {
  2875. source: "./media/characters/shingo/front.svg",
  2876. extra: 1900/1825,
  2877. bottom: 82/1982
  2878. }
  2879. },
  2880. side: {
  2881. height: math.unit(6, "feet"),
  2882. weight: math.unit(75, "kg"),
  2883. name: "Side",
  2884. image: {
  2885. source: "./media/characters/shingo/side.svg",
  2886. extra: 1930/1865,
  2887. bottom: 16/1946
  2888. }
  2889. },
  2890. back: {
  2891. height: math.unit(6, "feet"),
  2892. weight: math.unit(75, "kg"),
  2893. name: "Back",
  2894. image: {
  2895. source: "./media/characters/shingo/back.svg",
  2896. extra: 1922/1852,
  2897. bottom: 16/1938
  2898. }
  2899. },
  2900. frontDressed: {
  2901. height: math.unit(6, "feet"),
  2902. weight: math.unit(150, "lb"),
  2903. name: "Front-dressed",
  2904. image: {
  2905. source: "./media/characters/shingo/front-dressed.svg",
  2906. extra: 1900/1825,
  2907. bottom: 82/1982
  2908. }
  2909. },
  2910. paw: {
  2911. height: math.unit(1.29, "feet"),
  2912. name: "Paw",
  2913. image: {
  2914. source: "./media/characters/shingo/paw.svg"
  2915. }
  2916. },
  2917. hand: {
  2918. height: math.unit(1.07, "feet"),
  2919. name: "Hand",
  2920. image: {
  2921. source: "./media/characters/shingo/hand.svg"
  2922. }
  2923. },
  2924. frontAlt: {
  2925. height: math.unit(6, "feet"),
  2926. weight: math.unit(75, "kg"),
  2927. name: "Front (Alt)",
  2928. image: {
  2929. source: "./media/characters/shingo/front-alt.svg",
  2930. extra: 3511 / 3338,
  2931. bottom: 0.005
  2932. }
  2933. },
  2934. frontAlt2: {
  2935. height: math.unit(6, "feet"),
  2936. weight: math.unit(75, "kg"),
  2937. name: "Front (Alt 2)",
  2938. image: {
  2939. source: "./media/characters/shingo/front-alt-2.svg",
  2940. extra: 706/681,
  2941. bottom: 11/717
  2942. }
  2943. },
  2944. pawAlt: {
  2945. height: math.unit(1, "feet"),
  2946. name: "Paw (Alt)",
  2947. image: {
  2948. source: "./media/characters/shingo/paw-alt.svg"
  2949. }
  2950. },
  2951. },
  2952. [
  2953. {
  2954. name: "Micro",
  2955. height: math.unit(4, "inches")
  2956. },
  2957. {
  2958. name: "Normal",
  2959. height: math.unit(6, "feet"),
  2960. default: true
  2961. },
  2962. {
  2963. name: "Macro",
  2964. height: math.unit(108, "feet")
  2965. },
  2966. {
  2967. name: "Macro+",
  2968. height: math.unit(1500, "feet")
  2969. },
  2970. ]
  2971. ))
  2972. characterMakers.push(() => makeCharacter(
  2973. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2974. {
  2975. side: {
  2976. height: math.unit(6, "feet"),
  2977. weight: math.unit(75, "kg"),
  2978. name: "Side",
  2979. image: {
  2980. source: "./media/characters/aigey/side.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Macro",
  2987. height: math.unit(200, "feet"),
  2988. default: true
  2989. },
  2990. {
  2991. name: "Megamacro",
  2992. height: math.unit(100, "miles")
  2993. },
  2994. ]
  2995. )
  2996. )
  2997. characterMakers.push(() => makeCharacter(
  2998. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2999. {
  3000. front: {
  3001. height: math.unit(5 + 5 / 12, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Front",
  3004. image: {
  3005. source: "./media/characters/natasha/front.svg",
  3006. extra: 859 / 824,
  3007. bottom: 23 / 879.6
  3008. }
  3009. },
  3010. frontNsfw: {
  3011. height: math.unit(5 + 5 / 12, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Front (NSFW)",
  3014. image: {
  3015. source: "./media/characters/natasha/front-nsfw.svg",
  3016. extra: 859 / 824,
  3017. bottom: 23 / 879.6
  3018. }
  3019. },
  3020. frontErect: {
  3021. height: math.unit(5 + 5 / 12, "feet"),
  3022. weight: math.unit(75, "kg"),
  3023. name: "Front (Erect)",
  3024. image: {
  3025. source: "./media/characters/natasha/front-erect.svg",
  3026. extra: 859 / 824,
  3027. bottom: 23 / 879.6
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(5 + 5 / 12, "feet"),
  3032. weight: math.unit(75, "kg"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/natasha/back.svg",
  3036. extra: 887.9 / 852.6,
  3037. bottom: 9.7 / 896.4
  3038. }
  3039. },
  3040. backAlt: {
  3041. height: math.unit(5 + 5 / 12, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Back (Alt)",
  3044. image: {
  3045. source: "./media/characters/natasha/back-alt.svg",
  3046. extra: 1236.7 / 1192,
  3047. bottom: 22.3 / 1258.2
  3048. }
  3049. },
  3050. dick: {
  3051. height: math.unit(1.772, "feet"),
  3052. name: "Dick",
  3053. image: {
  3054. source: "./media/characters/natasha/dick.svg"
  3055. }
  3056. },
  3057. paw: {
  3058. height: math.unit(0.250, "meters"),
  3059. name: "Paw",
  3060. image: {
  3061. source: "./media/characters/natasha/paw.svg"
  3062. }
  3063. },
  3064. },
  3065. [
  3066. {
  3067. name: "Normal",
  3068. height: math.unit(5 + 5 / 12, "feet")
  3069. },
  3070. {
  3071. name: "Large",
  3072. height: math.unit(12, "feet")
  3073. },
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(100, "feet"),
  3077. default: true
  3078. },
  3079. {
  3080. name: "Macro+",
  3081. height: math.unit(260, "feet")
  3082. },
  3083. {
  3084. name: "Macro++",
  3085. height: math.unit(1, "mile")
  3086. },
  3087. ]
  3088. ))
  3089. characterMakers.push(() => makeCharacter(
  3090. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3091. {
  3092. front: {
  3093. height: math.unit(6, "feet"),
  3094. weight: math.unit(75, "kg"),
  3095. name: "Front",
  3096. image: {
  3097. source: "./media/characters/malik/front.svg"
  3098. }
  3099. },
  3100. side: {
  3101. height: math.unit(6, "feet"),
  3102. weight: math.unit(75, "kg"),
  3103. name: "Side",
  3104. image: {
  3105. source: "./media/characters/malik/side.svg",
  3106. extra: 1.1539
  3107. }
  3108. },
  3109. back: {
  3110. height: math.unit(6, "feet"),
  3111. weight: math.unit(75, "kg"),
  3112. name: "Back",
  3113. image: {
  3114. source: "./media/characters/malik/back.svg"
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(156, "feet"),
  3122. default: true
  3123. },
  3124. {
  3125. name: "Macro+",
  3126. height: math.unit(1188, "feet")
  3127. },
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3132. {
  3133. front: {
  3134. height: math.unit(6, "feet"),
  3135. weight: math.unit(75, "kg"),
  3136. name: "Front",
  3137. image: {
  3138. source: "./media/characters/sefer/front.svg",
  3139. extra: 848 / 659,
  3140. bottom: 28.3 / 876.442
  3141. }
  3142. },
  3143. back: {
  3144. height: math.unit(6, "feet"),
  3145. weight: math.unit(75, "kg"),
  3146. name: "Back",
  3147. image: {
  3148. source: "./media/characters/sefer/back.svg",
  3149. extra: 864 / 695,
  3150. bottom: 10 / 871
  3151. }
  3152. },
  3153. frontDressed: {
  3154. height: math.unit(6, "feet"),
  3155. weight: math.unit(75, "kg"),
  3156. name: "Front (Dressed)",
  3157. image: {
  3158. source: "./media/characters/sefer/front-dressed.svg",
  3159. extra: 839 / 653,
  3160. bottom: 37.6 / 878
  3161. }
  3162. },
  3163. },
  3164. [
  3165. {
  3166. name: "Normal",
  3167. height: math.unit(6, "feet"),
  3168. default: true
  3169. },
  3170. ]
  3171. ))
  3172. characterMakers.push(() => makeCharacter(
  3173. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3174. {
  3175. body: {
  3176. height: math.unit(2.2428, "meter"),
  3177. weight: math.unit(124.738, "kg"),
  3178. name: "Body",
  3179. image: {
  3180. extra: 1225 / 1050,
  3181. source: "./media/characters/north/front.svg"
  3182. }
  3183. }
  3184. },
  3185. [
  3186. {
  3187. name: "Micro",
  3188. height: math.unit(4, "inches")
  3189. },
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(63, "meters")
  3193. },
  3194. {
  3195. name: "Megamacro",
  3196. height: math.unit(101, "miles"),
  3197. default: true
  3198. }
  3199. ]
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3203. {
  3204. angled: {
  3205. height: math.unit(4, "meter"),
  3206. weight: math.unit(150, "kg"),
  3207. name: "Angled",
  3208. image: {
  3209. source: "./media/characters/talan/angled-sfw.svg",
  3210. bottom: 29 / 3734
  3211. }
  3212. },
  3213. angledNsfw: {
  3214. height: math.unit(4, "meter"),
  3215. weight: math.unit(150, "kg"),
  3216. name: "Angled (NSFW)",
  3217. image: {
  3218. source: "./media/characters/talan/angled-nsfw.svg",
  3219. bottom: 29 / 3734
  3220. }
  3221. },
  3222. frontNsfw: {
  3223. height: math.unit(4, "meter"),
  3224. weight: math.unit(150, "kg"),
  3225. name: "Front (NSFW)",
  3226. image: {
  3227. source: "./media/characters/talan/front-nsfw.svg",
  3228. bottom: 29 / 3734
  3229. }
  3230. },
  3231. sideNsfw: {
  3232. height: math.unit(4, "meter"),
  3233. weight: math.unit(150, "kg"),
  3234. name: "Side (NSFW)",
  3235. image: {
  3236. source: "./media/characters/talan/side-nsfw.svg",
  3237. bottom: 29 / 3734
  3238. }
  3239. },
  3240. back: {
  3241. height: math.unit(4, "meter"),
  3242. weight: math.unit(150, "kg"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/talan/back.svg"
  3246. }
  3247. },
  3248. dickBottom: {
  3249. height: math.unit(0.621, "meter"),
  3250. name: "Dick (Bottom)",
  3251. image: {
  3252. source: "./media/characters/talan/dick-bottom.svg"
  3253. }
  3254. },
  3255. dickTop: {
  3256. height: math.unit(0.621, "meter"),
  3257. name: "Dick (Top)",
  3258. image: {
  3259. source: "./media/characters/talan/dick-top.svg"
  3260. }
  3261. },
  3262. dickSide: {
  3263. height: math.unit(0.305, "meter"),
  3264. name: "Dick (Side)",
  3265. image: {
  3266. source: "./media/characters/talan/dick-side.svg"
  3267. }
  3268. },
  3269. dickFront: {
  3270. height: math.unit(0.305, "meter"),
  3271. name: "Dick (Front)",
  3272. image: {
  3273. source: "./media/characters/talan/dick-front.svg"
  3274. }
  3275. },
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(4, "meters")
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(100, "meters")
  3285. },
  3286. {
  3287. name: "Megamacro",
  3288. height: math.unit(2, "miles"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Gigamacro",
  3293. height: math.unit(5000, "miles")
  3294. },
  3295. {
  3296. name: "Teramacro",
  3297. height: math.unit(100, "parsecs")
  3298. }
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(2, "meter"),
  3306. weight: math.unit(90, "kg"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/gael'rathus/front.svg"
  3310. }
  3311. },
  3312. frontAlt: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(90, "kg"),
  3315. name: "Front (alt)",
  3316. image: {
  3317. source: "./media/characters/gael'rathus/front-alt.svg"
  3318. }
  3319. },
  3320. frontAlt2: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(90, "kg"),
  3323. name: "Front (alt 2)",
  3324. image: {
  3325. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3326. }
  3327. }
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(9, "feet"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Large",
  3337. height: math.unit(25, "feet")
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(0.25, "miles")
  3342. },
  3343. {
  3344. name: "Megamacro",
  3345. height: math.unit(10, "miles")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3351. {
  3352. side: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(140, "kg"),
  3355. name: "Side",
  3356. image: {
  3357. source: "./media/characters/sosha/side.svg",
  3358. bottom: 0.042
  3359. }
  3360. },
  3361. },
  3362. [
  3363. {
  3364. name: "Normal",
  3365. height: math.unit(12, "feet"),
  3366. default: true
  3367. }
  3368. ]
  3369. ))
  3370. characterMakers.push(() => makeCharacter(
  3371. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3372. {
  3373. side: {
  3374. height: math.unit(5 + 5 / 12, "feet"),
  3375. weight: math.unit(170, "kg"),
  3376. name: "Side",
  3377. image: {
  3378. source: "./media/characters/runnola/side.svg",
  3379. extra: 741 / 448,
  3380. bottom: 0.05
  3381. }
  3382. },
  3383. },
  3384. [
  3385. {
  3386. name: "Small",
  3387. height: math.unit(3, "feet")
  3388. },
  3389. {
  3390. name: "Normal",
  3391. height: math.unit(5 + 5 / 12, "feet"),
  3392. default: true
  3393. },
  3394. {
  3395. name: "Big",
  3396. height: math.unit(10, "feet")
  3397. },
  3398. ]
  3399. ))
  3400. characterMakers.push(() => makeCharacter(
  3401. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3402. {
  3403. front: {
  3404. height: math.unit(2, "meter"),
  3405. weight: math.unit(50, "kg"),
  3406. name: "Front",
  3407. image: {
  3408. source: "./media/characters/kurribird/front.svg",
  3409. bottom: 0.015
  3410. }
  3411. },
  3412. frontAlt: {
  3413. height: math.unit(1.5, "meter"),
  3414. weight: math.unit(50, "kg"),
  3415. name: "Front (Alt)",
  3416. image: {
  3417. source: "./media/characters/kurribird/front-alt.svg",
  3418. extra: 1.45
  3419. }
  3420. },
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(7, "feet")
  3426. },
  3427. {
  3428. name: "Big",
  3429. height: math.unit(12, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(1500, "feet")
  3435. },
  3436. {
  3437. name: "Megamacro",
  3438. height: math.unit(2, "miles")
  3439. }
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3444. {
  3445. front: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(80, "kg"),
  3448. name: "Front",
  3449. image: {
  3450. source: "./media/characters/elbial/front.svg",
  3451. extra: 1643 / 1556,
  3452. bottom: 60.2 / 1696
  3453. }
  3454. },
  3455. side: {
  3456. height: math.unit(2, "meter"),
  3457. weight: math.unit(80, "kg"),
  3458. name: "Side",
  3459. image: {
  3460. source: "./media/characters/elbial/side.svg",
  3461. extra: 1601/1528,
  3462. bottom: 97/1698
  3463. }
  3464. },
  3465. back: {
  3466. height: math.unit(2, "meter"),
  3467. weight: math.unit(80, "kg"),
  3468. name: "Back",
  3469. image: {
  3470. source: "./media/characters/elbial/back.svg",
  3471. extra: 1653/1569,
  3472. bottom: 20/1673
  3473. }
  3474. },
  3475. frontDressed: {
  3476. height: math.unit(2, "meter"),
  3477. weight: math.unit(80, "kg"),
  3478. name: "Front (Dressed)",
  3479. image: {
  3480. source: "./media/characters/elbial/front-dressed.svg",
  3481. extra: 1638/1569,
  3482. bottom: 70/1708
  3483. }
  3484. },
  3485. genitals: {
  3486. height: math.unit(2 / 3.367, "meter"),
  3487. name: "Genitals",
  3488. image: {
  3489. source: "./media/characters/elbial/genitals.svg"
  3490. }
  3491. },
  3492. },
  3493. [
  3494. {
  3495. name: "Large",
  3496. height: math.unit(100, "feet")
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(500, "feet"),
  3501. default: true
  3502. },
  3503. {
  3504. name: "Megamacro",
  3505. height: math.unit(10, "miles")
  3506. },
  3507. {
  3508. name: "Gigamacro",
  3509. height: math.unit(25000, "miles")
  3510. },
  3511. {
  3512. name: "Full-Size",
  3513. height: math.unit(8000000, "gigaparsecs")
  3514. }
  3515. ]
  3516. ))
  3517. characterMakers.push(() => makeCharacter(
  3518. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3519. {
  3520. front: {
  3521. height: math.unit(2, "meter"),
  3522. weight: math.unit(60, "kg"),
  3523. name: "Front",
  3524. image: {
  3525. source: "./media/characters/noah/front.svg"
  3526. }
  3527. },
  3528. talons: {
  3529. height: math.unit(0.315, "meter"),
  3530. name: "Talons",
  3531. image: {
  3532. source: "./media/characters/noah/talons.svg"
  3533. }
  3534. }
  3535. },
  3536. [
  3537. {
  3538. name: "Large",
  3539. height: math.unit(50, "feet")
  3540. },
  3541. {
  3542. name: "Macro",
  3543. height: math.unit(750, "feet"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Megamacro",
  3548. height: math.unit(50, "miles")
  3549. },
  3550. {
  3551. name: "Gigamacro",
  3552. height: math.unit(100000, "miles")
  3553. },
  3554. {
  3555. name: "Full-Size",
  3556. height: math.unit(3000000000, "miles")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(80, "kg"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/natalya/front.svg"
  3569. }
  3570. },
  3571. back: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(80, "kg"),
  3574. name: "Back",
  3575. image: {
  3576. source: "./media/characters/natalya/back.svg"
  3577. }
  3578. }
  3579. },
  3580. [
  3581. {
  3582. name: "Normal",
  3583. height: math.unit(150, "feet"),
  3584. default: true
  3585. },
  3586. {
  3587. name: "Megamacro",
  3588. height: math.unit(5, "miles")
  3589. },
  3590. {
  3591. name: "Full-Size",
  3592. height: math.unit(600, "kiloparsecs")
  3593. }
  3594. ]
  3595. ))
  3596. characterMakers.push(() => makeCharacter(
  3597. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3598. {
  3599. front: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(50, "kg"),
  3602. name: "Front",
  3603. image: {
  3604. source: "./media/characters/erestrebah/front.svg",
  3605. extra: 1262/1162,
  3606. bottom: 96/1358
  3607. }
  3608. },
  3609. back: {
  3610. height: math.unit(2, "meter"),
  3611. weight: math.unit(50, "kg"),
  3612. name: "Back",
  3613. image: {
  3614. source: "./media/characters/erestrebah/back.svg",
  3615. extra: 1257/1139,
  3616. bottom: 13/1270
  3617. }
  3618. },
  3619. wing: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(50, "kg"),
  3622. name: "Wing",
  3623. image: {
  3624. source: "./media/characters/erestrebah/wing.svg",
  3625. extra: 1262/1162,
  3626. bottom: 96/1358
  3627. }
  3628. },
  3629. mouth: {
  3630. height: math.unit(0.39, "feet"),
  3631. name: "Mouth",
  3632. image: {
  3633. source: "./media/characters/erestrebah/mouth.svg"
  3634. }
  3635. }
  3636. },
  3637. [
  3638. {
  3639. name: "Normal",
  3640. height: math.unit(10, "feet")
  3641. },
  3642. {
  3643. name: "Large",
  3644. height: math.unit(50, "feet"),
  3645. default: true
  3646. },
  3647. {
  3648. name: "Macro",
  3649. height: math.unit(300, "feet")
  3650. },
  3651. {
  3652. name: "Macro+",
  3653. height: math.unit(750, "feet")
  3654. },
  3655. {
  3656. name: "Megamacro",
  3657. height: math.unit(3, "miles")
  3658. }
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3663. {
  3664. front: {
  3665. height: math.unit(2, "meter"),
  3666. weight: math.unit(80, "kg"),
  3667. name: "Front",
  3668. image: {
  3669. source: "./media/characters/jennifer/front.svg",
  3670. bottom: 0.11,
  3671. extra: 1.16
  3672. }
  3673. },
  3674. frontAlt: {
  3675. height: math.unit(2, "meter"),
  3676. weight: math.unit(80, "kg"),
  3677. name: "Front (Alt)",
  3678. image: {
  3679. source: "./media/characters/jennifer/front-alt.svg"
  3680. }
  3681. }
  3682. },
  3683. [
  3684. {
  3685. name: "Canon Height",
  3686. height: math.unit(120, "feet"),
  3687. default: true
  3688. },
  3689. {
  3690. name: "Macro+",
  3691. height: math.unit(300, "feet")
  3692. },
  3693. {
  3694. name: "Megamacro",
  3695. height: math.unit(20000, "feet")
  3696. }
  3697. ]
  3698. ))
  3699. characterMakers.push(() => makeCharacter(
  3700. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3701. {
  3702. front: {
  3703. height: math.unit(2, "meter"),
  3704. weight: math.unit(50, "kg"),
  3705. name: "Front",
  3706. image: {
  3707. source: "./media/characters/kalista/front.svg",
  3708. extra: 1314/1145,
  3709. bottom: 101/1415
  3710. }
  3711. },
  3712. back: {
  3713. height: math.unit(2, "meter"),
  3714. weight: math.unit(50, "kg"),
  3715. name: "Back",
  3716. image: {
  3717. source: "./media/characters/kalista/back.svg",
  3718. extra: 1366 / 1156,
  3719. bottom: 33.9 / 1362.78
  3720. }
  3721. }
  3722. },
  3723. [
  3724. {
  3725. name: "Uncomfortably Small",
  3726. height: math.unit(10, "feet")
  3727. },
  3728. {
  3729. name: "Small",
  3730. height: math.unit(30, "feet")
  3731. },
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(100, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro+",
  3739. height: math.unit(2000, "feet")
  3740. },
  3741. {
  3742. name: "True Form",
  3743. height: math.unit(8924, "miles")
  3744. }
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(2, "meter"),
  3752. weight: math.unit(120, "kg"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/ggv/front.svg"
  3756. }
  3757. },
  3758. side: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(120, "kg"),
  3761. name: "Side",
  3762. image: {
  3763. source: "./media/characters/ggv/side.svg"
  3764. }
  3765. }
  3766. },
  3767. [
  3768. {
  3769. name: "Extremely Puny",
  3770. height: math.unit(9 + 5 / 12, "feet")
  3771. },
  3772. {
  3773. name: "Horribly Small",
  3774. height: math.unit(47.7, "miles"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Reasonably Sized",
  3779. height: math.unit(25000, "parsecs")
  3780. },
  3781. {
  3782. name: "Slightly Uncompressed",
  3783. height: math.unit(7.77e31, "parsecs")
  3784. },
  3785. {
  3786. name: "Omniversal",
  3787. height: math.unit(1e300, "meters")
  3788. },
  3789. ]
  3790. ))
  3791. characterMakers.push(() => makeCharacter(
  3792. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3793. {
  3794. front: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(75, "lb"),
  3797. name: "Front",
  3798. image: {
  3799. source: "./media/characters/napalm/front.svg"
  3800. }
  3801. },
  3802. back: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(75, "lb"),
  3805. name: "Back",
  3806. image: {
  3807. source: "./media/characters/napalm/back.svg"
  3808. }
  3809. }
  3810. },
  3811. [
  3812. {
  3813. name: "Standard",
  3814. height: math.unit(55, "feet"),
  3815. default: true
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(7 + 5 / 6, "feet"),
  3824. weight: math.unit(325, "lb"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/asana/front.svg",
  3828. extra: 1133 / 1060,
  3829. bottom: 15.2 / 1148.6
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(7 + 5 / 6, "feet"),
  3834. weight: math.unit(325, "lb"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/asana/back.svg",
  3838. extra: 1114 / 1043,
  3839. bottom: 5 / 1120
  3840. }
  3841. },
  3842. dressedDark: {
  3843. height: math.unit(7 + 5 / 6, "feet"),
  3844. weight: math.unit(325, "lb"),
  3845. name: "Dressed (Dark)",
  3846. image: {
  3847. source: "./media/characters/asana/dressed-dark.svg",
  3848. extra: 1133 / 1060,
  3849. bottom: 15.2 / 1148.6
  3850. }
  3851. },
  3852. dressedLight: {
  3853. height: math.unit(7 + 5 / 6, "feet"),
  3854. weight: math.unit(325, "lb"),
  3855. name: "Dressed (Light)",
  3856. image: {
  3857. source: "./media/characters/asana/dressed-light.svg",
  3858. extra: 1133 / 1060,
  3859. bottom: 15.2 / 1148.6
  3860. }
  3861. },
  3862. },
  3863. [
  3864. {
  3865. name: "Standard",
  3866. height: math.unit(7 + 5 / 6, "feet"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Large",
  3871. height: math.unit(10, "meters")
  3872. },
  3873. {
  3874. name: "Macro",
  3875. height: math.unit(2500, "meters")
  3876. },
  3877. {
  3878. name: "Megamacro",
  3879. height: math.unit(5e6, "meters")
  3880. },
  3881. {
  3882. name: "Examacro",
  3883. height: math.unit(5e12, "lightyears")
  3884. },
  3885. {
  3886. name: "Max Size",
  3887. height: math.unit(1e31, "lightyears")
  3888. }
  3889. ]
  3890. ))
  3891. characterMakers.push(() => makeCharacter(
  3892. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3893. {
  3894. front: {
  3895. height: math.unit(2, "meter"),
  3896. weight: math.unit(60, "kg"),
  3897. name: "Front",
  3898. image: {
  3899. source: "./media/characters/ebony/front.svg",
  3900. bottom: 0.03,
  3901. extra: 1045 / 810 + 0.03
  3902. }
  3903. },
  3904. side: {
  3905. height: math.unit(2, "meter"),
  3906. weight: math.unit(60, "kg"),
  3907. name: "Side",
  3908. image: {
  3909. source: "./media/characters/ebony/side.svg",
  3910. bottom: 0.03,
  3911. extra: 1045 / 810 + 0.03
  3912. }
  3913. },
  3914. back: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(60, "kg"),
  3917. name: "Back",
  3918. image: {
  3919. source: "./media/characters/ebony/back.svg",
  3920. bottom: 0.01,
  3921. extra: 1045 / 810 + 0.01
  3922. }
  3923. },
  3924. },
  3925. [
  3926. // TODO check why I did this lol
  3927. {
  3928. name: "Standard",
  3929. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "Macro",
  3934. height: math.unit(200, "feet")
  3935. },
  3936. {
  3937. name: "Gigamacro",
  3938. height: math.unit(13000, "km")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(6, "feet"),
  3947. weight: math.unit(175, "lb"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/mountain/front.svg",
  3951. extra: 972 / 955,
  3952. bottom: 64 / 1036.6
  3953. }
  3954. },
  3955. back: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(175, "lb"),
  3958. name: "Back",
  3959. image: {
  3960. source: "./media/characters/mountain/back.svg",
  3961. extra: 970 / 950,
  3962. bottom: 28.25 / 999
  3963. }
  3964. },
  3965. },
  3966. [
  3967. {
  3968. name: "Large",
  3969. height: math.unit(20, "meters")
  3970. },
  3971. {
  3972. name: "Macro",
  3973. height: math.unit(300, "meters")
  3974. },
  3975. {
  3976. name: "Gigamacro",
  3977. height: math.unit(10000, "km"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Examacro",
  3982. height: math.unit(10e9, "lightyears")
  3983. }
  3984. ]
  3985. ))
  3986. characterMakers.push(() => makeCharacter(
  3987. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3988. {
  3989. front: {
  3990. height: math.unit(8, "feet"),
  3991. weight: math.unit(500, "lb"),
  3992. name: "Front",
  3993. image: {
  3994. source: "./media/characters/rick/front.svg"
  3995. }
  3996. }
  3997. },
  3998. [
  3999. {
  4000. name: "Normal",
  4001. height: math.unit(8, "feet"),
  4002. default: true
  4003. },
  4004. {
  4005. name: "Macro",
  4006. height: math.unit(5, "km")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(8, "feet"),
  4015. weight: math.unit(120, "lb"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/ona/front.svg"
  4019. }
  4020. },
  4021. frontAlt: {
  4022. height: math.unit(8, "feet"),
  4023. weight: math.unit(120, "lb"),
  4024. name: "Front (Alt)",
  4025. image: {
  4026. source: "./media/characters/ona/front-alt.svg"
  4027. }
  4028. },
  4029. back: {
  4030. height: math.unit(8, "feet"),
  4031. weight: math.unit(120, "lb"),
  4032. name: "Back",
  4033. image: {
  4034. source: "./media/characters/ona/back.svg"
  4035. }
  4036. },
  4037. foot: {
  4038. height: math.unit(1.1, "feet"),
  4039. name: "Foot",
  4040. image: {
  4041. source: "./media/characters/ona/foot.svg"
  4042. }
  4043. }
  4044. },
  4045. [
  4046. {
  4047. name: "Megamacro",
  4048. height: math.unit(70, "km"),
  4049. default: true
  4050. },
  4051. {
  4052. name: "Gigamacro",
  4053. height: math.unit(681818, "miles")
  4054. },
  4055. {
  4056. name: "Examacro",
  4057. height: math.unit(3800000, "lightyears")
  4058. },
  4059. ]
  4060. ))
  4061. characterMakers.push(() => makeCharacter(
  4062. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4063. {
  4064. front: {
  4065. height: math.unit(12, "feet"),
  4066. weight: math.unit(3000, "lb"),
  4067. name: "Front",
  4068. image: {
  4069. source: "./media/characters/mech/front.svg",
  4070. extra: 2900 / 2770,
  4071. bottom: 110 / 3010
  4072. }
  4073. },
  4074. back: {
  4075. height: math.unit(12, "feet"),
  4076. weight: math.unit(3000, "lb"),
  4077. name: "Back",
  4078. image: {
  4079. source: "./media/characters/mech/back.svg",
  4080. extra: 3011 / 2890,
  4081. bottom: 94 / 3105
  4082. }
  4083. },
  4084. maw: {
  4085. height: math.unit(3.07, "feet"),
  4086. name: "Maw",
  4087. image: {
  4088. source: "./media/characters/mech/maw.svg"
  4089. }
  4090. },
  4091. head: {
  4092. height: math.unit(2.82, "feet"),
  4093. name: "Head",
  4094. image: {
  4095. source: "./media/characters/mech/head.svg"
  4096. }
  4097. },
  4098. dick: {
  4099. height: math.unit(1.43, "feet"),
  4100. name: "Dick",
  4101. image: {
  4102. source: "./media/characters/mech/dick.svg"
  4103. }
  4104. },
  4105. },
  4106. [
  4107. {
  4108. name: "Normal",
  4109. height: math.unit(12, "feet")
  4110. },
  4111. {
  4112. name: "Macro",
  4113. height: math.unit(300, "feet"),
  4114. default: true
  4115. },
  4116. {
  4117. name: "Macro+",
  4118. height: math.unit(1500, "feet")
  4119. },
  4120. ]
  4121. ))
  4122. characterMakers.push(() => makeCharacter(
  4123. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4124. {
  4125. front: {
  4126. height: math.unit(1.3, "meter"),
  4127. weight: math.unit(30, "kg"),
  4128. name: "Front",
  4129. image: {
  4130. source: "./media/characters/gregory/front.svg",
  4131. }
  4132. }
  4133. },
  4134. [
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(1.3, "meter"),
  4138. default: true
  4139. },
  4140. {
  4141. name: "Macro",
  4142. height: math.unit(20, "meter")
  4143. }
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4148. {
  4149. front: {
  4150. height: math.unit(2.8, "meter"),
  4151. weight: math.unit(200, "kg"),
  4152. name: "Front",
  4153. image: {
  4154. source: "./media/characters/elory/front.svg",
  4155. }
  4156. }
  4157. },
  4158. [
  4159. {
  4160. name: "Normal",
  4161. height: math.unit(2.8, "meter"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Macro",
  4166. height: math.unit(38, "meter")
  4167. }
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(470, "feet"),
  4175. weight: math.unit(924, "tons"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/angelpatamon/front.svg",
  4179. }
  4180. }
  4181. },
  4182. [
  4183. {
  4184. name: "Normal",
  4185. height: math.unit(470, "feet"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Deity Size I",
  4190. height: math.unit(28651.2, "km")
  4191. },
  4192. {
  4193. name: "Deity Size II",
  4194. height: math.unit(171907.2, "km")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4200. {
  4201. side: {
  4202. height: math.unit(7.2, "meter"),
  4203. weight: math.unit(8.2, "tons"),
  4204. name: "Side",
  4205. image: {
  4206. source: "./media/characters/cryae/side.svg",
  4207. extra: 3500 / 1500
  4208. }
  4209. }
  4210. },
  4211. [
  4212. {
  4213. name: "Normal",
  4214. height: math.unit(7.2, "meter"),
  4215. default: true
  4216. }
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4221. {
  4222. front: {
  4223. height: math.unit(6, "feet"),
  4224. weight: math.unit(175, "lb"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/xera/front.svg",
  4228. extra: 2377 / 1972,
  4229. bottom: 75.5 / 2452
  4230. }
  4231. },
  4232. side: {
  4233. height: math.unit(6, "feet"),
  4234. weight: math.unit(175, "lb"),
  4235. name: "Side",
  4236. image: {
  4237. source: "./media/characters/xera/side.svg",
  4238. extra: 2345 / 2019,
  4239. bottom: 39.7 / 2384
  4240. }
  4241. },
  4242. back: {
  4243. height: math.unit(6, "feet"),
  4244. weight: math.unit(175, "lb"),
  4245. name: "Back",
  4246. image: {
  4247. source: "./media/characters/xera/back.svg",
  4248. extra: 2095 / 1984,
  4249. bottom: 67 / 2166
  4250. }
  4251. },
  4252. },
  4253. [
  4254. {
  4255. name: "Small",
  4256. height: math.unit(10, "feet")
  4257. },
  4258. {
  4259. name: "Macro",
  4260. height: math.unit(500, "meters"),
  4261. default: true
  4262. },
  4263. {
  4264. name: "Macro+",
  4265. height: math.unit(10, "km")
  4266. },
  4267. {
  4268. name: "Gigamacro",
  4269. height: math.unit(25000, "km")
  4270. },
  4271. {
  4272. name: "Teramacro",
  4273. height: math.unit(3e6, "km")
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4279. {
  4280. front: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(175, "lb"),
  4283. name: "Front",
  4284. image: {
  4285. source: "./media/characters/nebula/front.svg",
  4286. extra: 2566 / 2362,
  4287. bottom: 81 / 2644
  4288. }
  4289. }
  4290. },
  4291. [
  4292. {
  4293. name: "Small",
  4294. height: math.unit(4.5, "meters")
  4295. },
  4296. {
  4297. name: "Macro",
  4298. height: math.unit(1500, "meters"),
  4299. default: true
  4300. },
  4301. {
  4302. name: "Megamacro",
  4303. height: math.unit(150, "km")
  4304. },
  4305. {
  4306. name: "Gigamacro",
  4307. height: math.unit(27000, "km")
  4308. }
  4309. ]
  4310. ))
  4311. characterMakers.push(() => makeCharacter(
  4312. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4313. {
  4314. front: {
  4315. height: math.unit(6, "feet"),
  4316. weight: math.unit(225, "lb"),
  4317. name: "Front",
  4318. image: {
  4319. source: "./media/characters/abysgar/front.svg"
  4320. }
  4321. }
  4322. },
  4323. [
  4324. {
  4325. name: "Small",
  4326. height: math.unit(4.5, "meters")
  4327. },
  4328. {
  4329. name: "Macro",
  4330. height: math.unit(1250, "meters"),
  4331. default: true
  4332. },
  4333. {
  4334. name: "Megamacro",
  4335. height: math.unit(125, "km")
  4336. },
  4337. {
  4338. name: "Gigamacro",
  4339. height: math.unit(26000, "km")
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(180, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/yakuz/front.svg"
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Small",
  4358. height: math.unit(5, "meters")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(1500, "meters"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(200, "km")
  4368. },
  4369. {
  4370. name: "Gigamacro",
  4371. height: math.unit(100000, "km")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(175, "lb"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/mirova/front.svg",
  4384. extra: 3334 / 3071,
  4385. bottom: 42 / 3375.6
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Small",
  4392. height: math.unit(5, "meters")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(900, "meters"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(135, "km")
  4402. },
  4403. {
  4404. name: "Gigamacro",
  4405. height: math.unit(20000, "km")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4411. {
  4412. side: {
  4413. height: math.unit(28.35, "feet"),
  4414. weight: math.unit(99.75, "tons"),
  4415. name: "Side",
  4416. image: {
  4417. source: "./media/characters/asana-mech/side.svg",
  4418. extra: 923 / 699,
  4419. bottom: 50 / 975
  4420. }
  4421. },
  4422. chaingun: {
  4423. height: math.unit(7, "feet"),
  4424. weight: math.unit(2400, "lb"),
  4425. name: "Chaingun",
  4426. image: {
  4427. source: "./media/characters/asana-mech/chaingun.svg"
  4428. }
  4429. },
  4430. laser: {
  4431. height: math.unit(7.12, "feet"),
  4432. weight: math.unit(2000, "lb"),
  4433. name: "Laser",
  4434. image: {
  4435. source: "./media/characters/asana-mech/laser.svg"
  4436. }
  4437. },
  4438. },
  4439. [
  4440. {
  4441. name: "Normal",
  4442. height: math.unit(28.35, "feet"),
  4443. default: true
  4444. },
  4445. {
  4446. name: "Macro",
  4447. height: math.unit(2500, "feet")
  4448. },
  4449. {
  4450. name: "Megamacro",
  4451. height: math.unit(25, "miles")
  4452. },
  4453. {
  4454. name: "Examacro",
  4455. height: math.unit(6e8, "lightyears")
  4456. },
  4457. ]
  4458. ))
  4459. characterMakers.push(() => makeCharacter(
  4460. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4461. {
  4462. front: {
  4463. height: math.unit(5, "meters"),
  4464. weight: math.unit(1000, "kg"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/asche/front.svg",
  4468. extra: 1258 / 1190,
  4469. bottom: 47 / 1305
  4470. }
  4471. },
  4472. frontUnderwear: {
  4473. height: math.unit(5, "meters"),
  4474. weight: math.unit(1000, "kg"),
  4475. name: "Front (Underwear)",
  4476. image: {
  4477. source: "./media/characters/asche/front-underwear.svg",
  4478. extra: 1258 / 1190,
  4479. bottom: 47 / 1305
  4480. }
  4481. },
  4482. frontDressed: {
  4483. height: math.unit(5, "meters"),
  4484. weight: math.unit(1000, "kg"),
  4485. name: "Front (Dressed)",
  4486. image: {
  4487. source: "./media/characters/asche/front-dressed.svg",
  4488. extra: 1258 / 1190,
  4489. bottom: 47 / 1305
  4490. }
  4491. },
  4492. frontArmor: {
  4493. height: math.unit(5, "meters"),
  4494. weight: math.unit(1000, "kg"),
  4495. name: "Front (Armored)",
  4496. image: {
  4497. source: "./media/characters/asche/front-armored.svg",
  4498. extra: 1374 / 1308,
  4499. bottom: 23 / 1397
  4500. }
  4501. },
  4502. mp724: {
  4503. height: math.unit(0.96, "meters"),
  4504. weight: math.unit(38, "kg"),
  4505. name: "H&K MP724",
  4506. image: {
  4507. source: "./media/characters/asche/h&k-mp724.svg"
  4508. }
  4509. },
  4510. side: {
  4511. height: math.unit(5, "meters"),
  4512. weight: math.unit(1000, "kg"),
  4513. name: "Side",
  4514. image: {
  4515. source: "./media/characters/asche/side.svg",
  4516. extra: 1717 / 1609,
  4517. bottom: 0.005
  4518. }
  4519. },
  4520. back: {
  4521. height: math.unit(5, "meters"),
  4522. weight: math.unit(1000, "kg"),
  4523. name: "Back",
  4524. image: {
  4525. source: "./media/characters/asche/back.svg",
  4526. extra: 1570 / 1501
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "DEFCON 5",
  4533. height: math.unit(5, "meters")
  4534. },
  4535. {
  4536. name: "DEFCON 4",
  4537. height: math.unit(500, "meters"),
  4538. default: true
  4539. },
  4540. {
  4541. name: "DEFCON 3",
  4542. height: math.unit(5, "km")
  4543. },
  4544. {
  4545. name: "DEFCON 2",
  4546. height: math.unit(500, "km")
  4547. },
  4548. {
  4549. name: "DEFCON 1",
  4550. height: math.unit(500000, "km")
  4551. },
  4552. {
  4553. name: "DEFCON 0",
  4554. height: math.unit(3, "gigaparsecs")
  4555. },
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(2, "meters"),
  4563. weight: math.unit(76, "kg"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/gale/front.svg"
  4567. }
  4568. },
  4569. frontAlt1: {
  4570. height: math.unit(2, "meters"),
  4571. weight: math.unit(76, "kg"),
  4572. name: "Front (Alt 1)",
  4573. image: {
  4574. source: "./media/characters/gale/front-alt-1.svg"
  4575. }
  4576. },
  4577. frontAlt2: {
  4578. height: math.unit(2, "meters"),
  4579. weight: math.unit(76, "kg"),
  4580. name: "Front (Alt 2)",
  4581. image: {
  4582. source: "./media/characters/gale/front-alt-2.svg"
  4583. }
  4584. },
  4585. },
  4586. [
  4587. {
  4588. name: "Normal",
  4589. height: math.unit(7, "feet")
  4590. },
  4591. {
  4592. name: "Macro",
  4593. height: math.unit(150, "feet"),
  4594. default: true
  4595. },
  4596. {
  4597. name: "Macro+",
  4598. height: math.unit(300, "feet")
  4599. },
  4600. ]
  4601. ))
  4602. characterMakers.push(() => makeCharacter(
  4603. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4604. {
  4605. front: {
  4606. height: math.unit(5 + 10/12, "feet"),
  4607. weight: math.unit(67, "kg"),
  4608. name: "Front",
  4609. image: {
  4610. source: "./media/characters/draylen/front.svg",
  4611. extra: 832/777,
  4612. bottom: 85/917
  4613. }
  4614. }
  4615. },
  4616. [
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(5 + 10/12, "feet")
  4620. },
  4621. {
  4622. name: "Macro",
  4623. height: math.unit(150, "feet"),
  4624. default: true
  4625. }
  4626. ]
  4627. ))
  4628. characterMakers.push(() => makeCharacter(
  4629. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4630. {
  4631. front: {
  4632. height: math.unit(7 + 9 / 12, "feet"),
  4633. weight: math.unit(379, "lbs"),
  4634. name: "Front",
  4635. image: {
  4636. source: "./media/characters/chez/front.svg"
  4637. }
  4638. },
  4639. side: {
  4640. height: math.unit(7 + 9 / 12, "feet"),
  4641. weight: math.unit(379, "lbs"),
  4642. name: "Side",
  4643. image: {
  4644. source: "./media/characters/chez/side.svg"
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(7 + 9 / 12, "feet"),
  4652. default: true
  4653. },
  4654. {
  4655. name: "God King",
  4656. height: math.unit(9750000, "meters")
  4657. }
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(6, "feet"),
  4665. weight: math.unit(275, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/kaylum/front.svg",
  4669. bottom: 0.01,
  4670. extra: 1166 / 1031
  4671. }
  4672. },
  4673. frontWingless: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(275, "lbs"),
  4676. name: "Front (Wingless)",
  4677. image: {
  4678. source: "./media/characters/kaylum/front-wingless.svg",
  4679. bottom: 0.01,
  4680. extra: 1117 / 1031
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Normal",
  4687. height: math.unit(3.05, "meters")
  4688. },
  4689. {
  4690. name: "Master",
  4691. height: math.unit(5.5, "meters")
  4692. },
  4693. {
  4694. name: "Rampage",
  4695. height: math.unit(19, "meters")
  4696. },
  4697. {
  4698. name: "Macro Lite",
  4699. height: math.unit(37, "meters")
  4700. },
  4701. {
  4702. name: "Hyper Predator",
  4703. height: math.unit(61, "meters")
  4704. },
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(138, "meters"),
  4708. default: true
  4709. }
  4710. ]
  4711. ))
  4712. characterMakers.push(() => makeCharacter(
  4713. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4714. {
  4715. front: {
  4716. height: math.unit(6, "feet"),
  4717. weight: math.unit(150, "lbs"),
  4718. name: "Front",
  4719. image: {
  4720. source: "./media/characters/geta/front.svg"
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Micro",
  4727. height: math.unit(3, "inches"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(5 + 5 / 12, "feet")
  4733. }
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4738. {
  4739. front: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(300, "lbs"),
  4742. name: "Front",
  4743. image: {
  4744. source: "./media/characters/tyrnn/front.svg"
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Main Height",
  4751. height: math.unit(355, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Fave. Height",
  4756. height: math.unit(2400, "feet")
  4757. }
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(300, "lbs"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/appledectomy/front.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(2500, "feet")
  4776. },
  4777. {
  4778. name: "Megamacro",
  4779. height: math.unit(50, "miles"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Gigamacro",
  4784. height: math.unit(5000, "miles")
  4785. },
  4786. {
  4787. name: "Teramacro",
  4788. height: math.unit(250000, "miles")
  4789. },
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(200, "lbs"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/vulpes/front.svg",
  4801. extra: 573 / 543,
  4802. bottom: 0.033
  4803. }
  4804. },
  4805. side: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(200, "lbs"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/vulpes/side.svg",
  4811. extra: 577 / 549,
  4812. bottom: 11 / 588
  4813. }
  4814. },
  4815. back: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(200, "lbs"),
  4818. name: "Back",
  4819. image: {
  4820. source: "./media/characters/vulpes/back.svg",
  4821. extra: 573 / 549,
  4822. bottom: 20 / 593
  4823. }
  4824. },
  4825. feet: {
  4826. height: math.unit(1.276, "feet"),
  4827. name: "Feet",
  4828. image: {
  4829. source: "./media/characters/vulpes/feet.svg"
  4830. }
  4831. },
  4832. maw: {
  4833. height: math.unit(1.18, "feet"),
  4834. name: "Maw",
  4835. image: {
  4836. source: "./media/characters/vulpes/maw.svg"
  4837. }
  4838. },
  4839. },
  4840. [
  4841. {
  4842. name: "Micro",
  4843. height: math.unit(2, "inches")
  4844. },
  4845. {
  4846. name: "Normal",
  4847. height: math.unit(6.3, "feet")
  4848. },
  4849. {
  4850. name: "Macro",
  4851. height: math.unit(850, "feet")
  4852. },
  4853. {
  4854. name: "Megamacro",
  4855. height: math.unit(7500, "feet"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Gigamacro",
  4860. height: math.unit(570000, "miles")
  4861. }
  4862. ]
  4863. ))
  4864. characterMakers.push(() => makeCharacter(
  4865. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4866. {
  4867. front: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(210, "lbs"),
  4870. name: "Front",
  4871. image: {
  4872. source: "./media/characters/rain-fallen/front.svg"
  4873. }
  4874. },
  4875. side: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(210, "lbs"),
  4878. name: "Side",
  4879. image: {
  4880. source: "./media/characters/rain-fallen/side.svg"
  4881. }
  4882. },
  4883. back: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(210, "lbs"),
  4886. name: "Back",
  4887. image: {
  4888. source: "./media/characters/rain-fallen/back.svg"
  4889. }
  4890. },
  4891. feral: {
  4892. height: math.unit(9, "feet"),
  4893. weight: math.unit(700, "lbs"),
  4894. name: "Feral",
  4895. image: {
  4896. source: "./media/characters/rain-fallen/feral.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Meddling with Mortals",
  4903. height: math.unit(8 + 8/12, "feet")
  4904. },
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(5, "meter")
  4908. },
  4909. {
  4910. name: "Macro",
  4911. height: math.unit(150, "meter"),
  4912. default: true
  4913. },
  4914. {
  4915. name: "Megamacro",
  4916. height: math.unit(278e6, "meter")
  4917. },
  4918. {
  4919. name: "Gigamacro",
  4920. height: math.unit(2e9, "meter")
  4921. },
  4922. {
  4923. name: "Teramacro",
  4924. height: math.unit(8e12, "meter")
  4925. },
  4926. {
  4927. name: "Devourer",
  4928. height: math.unit(14, "zettameters")
  4929. },
  4930. {
  4931. name: "Scarlet King",
  4932. height: math.unit(18, "yottameters")
  4933. },
  4934. {
  4935. name: "Void",
  4936. height: math.unit(1e88, "yottameters")
  4937. }
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4942. {
  4943. standing: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(180, "lbs"),
  4946. name: "Standing",
  4947. image: {
  4948. source: "./media/characters/zaakira/standing.svg",
  4949. extra: 1599/1504,
  4950. bottom: 39/1638
  4951. }
  4952. },
  4953. laying: {
  4954. height: math.unit(3, "feet"),
  4955. weight: math.unit(180, "lbs"),
  4956. name: "Laying",
  4957. image: {
  4958. source: "./media/characters/zaakira/laying.svg"
  4959. }
  4960. },
  4961. },
  4962. [
  4963. {
  4964. name: "Normal",
  4965. height: math.unit(12, "feet")
  4966. },
  4967. {
  4968. name: "Macro",
  4969. height: math.unit(279, "feet"),
  4970. default: true
  4971. }
  4972. ]
  4973. ))
  4974. characterMakers.push(() => makeCharacter(
  4975. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4976. {
  4977. femSfw: {
  4978. height: math.unit(8, "feet"),
  4979. weight: math.unit(350, "lb"),
  4980. name: "Fem",
  4981. image: {
  4982. source: "./media/characters/sigvald/fem-sfw.svg",
  4983. extra: 182 / 164,
  4984. bottom: 8.7 / 190.5
  4985. }
  4986. },
  4987. femNsfw: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(350, "lb"),
  4990. name: "Fem (NSFW)",
  4991. image: {
  4992. source: "./media/characters/sigvald/fem-nsfw.svg",
  4993. extra: 182 / 164,
  4994. bottom: 8.7 / 190.5
  4995. }
  4996. },
  4997. maleNsfw: {
  4998. height: math.unit(8, "feet"),
  4999. weight: math.unit(350, "lb"),
  5000. name: "Male (NSFW)",
  5001. image: {
  5002. source: "./media/characters/sigvald/male-nsfw.svg",
  5003. extra: 182 / 164,
  5004. bottom: 8.7 / 190.5
  5005. }
  5006. },
  5007. hermNsfw: {
  5008. height: math.unit(8, "feet"),
  5009. weight: math.unit(350, "lb"),
  5010. name: "Herm (NSFW)",
  5011. image: {
  5012. source: "./media/characters/sigvald/herm-nsfw.svg",
  5013. extra: 182 / 164,
  5014. bottom: 8.7 / 190.5
  5015. }
  5016. },
  5017. dick: {
  5018. height: math.unit(2.36, "feet"),
  5019. name: "Dick",
  5020. image: {
  5021. source: "./media/characters/sigvald/dick.svg"
  5022. }
  5023. },
  5024. eye: {
  5025. height: math.unit(0.31, "feet"),
  5026. name: "Eye",
  5027. image: {
  5028. source: "./media/characters/sigvald/eye.svg"
  5029. }
  5030. },
  5031. mouth: {
  5032. height: math.unit(0.92, "feet"),
  5033. name: "Mouth",
  5034. image: {
  5035. source: "./media/characters/sigvald/mouth.svg"
  5036. }
  5037. },
  5038. paws: {
  5039. height: math.unit(2.2, "feet"),
  5040. name: "Paws",
  5041. image: {
  5042. source: "./media/characters/sigvald/paws.svg"
  5043. }
  5044. }
  5045. },
  5046. [
  5047. {
  5048. name: "Normal",
  5049. height: math.unit(8, "feet")
  5050. },
  5051. {
  5052. name: "Large",
  5053. height: math.unit(12, "feet")
  5054. },
  5055. {
  5056. name: "Larger",
  5057. height: math.unit(20, "feet")
  5058. },
  5059. {
  5060. name: "Macro",
  5061. height: math.unit(150, "feet")
  5062. },
  5063. {
  5064. name: "Macro+",
  5065. height: math.unit(200, "feet"),
  5066. default: true
  5067. },
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5072. {
  5073. side: {
  5074. height: math.unit(12, "feet"),
  5075. weight: math.unit(2000, "kg"),
  5076. name: "Side",
  5077. image: {
  5078. source: "./media/characters/scott/side.svg",
  5079. extra: 754 / 724,
  5080. bottom: 0.069
  5081. }
  5082. },
  5083. upright: {
  5084. height: math.unit(12, "feet"),
  5085. weight: math.unit(2000, "kg"),
  5086. name: "Upright",
  5087. image: {
  5088. source: "./media/characters/scott/upright.svg",
  5089. extra: 3881 / 3722,
  5090. bottom: 0.05
  5091. }
  5092. },
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(12, "feet"),
  5098. default: true
  5099. },
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5104. {
  5105. side: {
  5106. height: math.unit(8, "meters"),
  5107. weight: math.unit(84755, "lbs"),
  5108. name: "Side",
  5109. image: {
  5110. source: "./media/characters/tobias/side.svg",
  5111. extra: 1474 / 1096,
  5112. bottom: 38.9 / 1513.1235
  5113. }
  5114. },
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(8, "meters"),
  5120. default: true
  5121. },
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5126. {
  5127. front: {
  5128. height: math.unit(5.5, "feet"),
  5129. weight: math.unit(400, "lbs"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/kieran/front.svg",
  5133. extra: 2694 / 2364,
  5134. bottom: 217 / 2908
  5135. }
  5136. },
  5137. side: {
  5138. height: math.unit(5.5, "feet"),
  5139. weight: math.unit(400, "lbs"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/kieran/side.svg",
  5143. extra: 875 / 777,
  5144. bottom: 84.6 / 959
  5145. }
  5146. },
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(5.5, "feet"),
  5152. default: true
  5153. },
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5158. {
  5159. side: {
  5160. height: math.unit(2, "meters"),
  5161. weight: math.unit(70, "kg"),
  5162. name: "Side",
  5163. image: {
  5164. source: "./media/characters/sanya/side.svg",
  5165. bottom: 0.02,
  5166. extra: 1.02
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Small",
  5173. height: math.unit(2, "meters")
  5174. },
  5175. {
  5176. name: "Normal",
  5177. height: math.unit(3, "meters")
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(16, "meters"),
  5182. default: true
  5183. },
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5188. {
  5189. front: {
  5190. height: math.unit(2, "meters"),
  5191. weight: math.unit(120, "kg"),
  5192. name: "Front",
  5193. image: {
  5194. source: "./media/characters/miranda/front.svg",
  5195. extra: 195 / 185,
  5196. bottom: 10.9 / 206.5
  5197. }
  5198. },
  5199. back: {
  5200. height: math.unit(2, "meters"),
  5201. weight: math.unit(120, "kg"),
  5202. name: "Back",
  5203. image: {
  5204. source: "./media/characters/miranda/back.svg",
  5205. extra: 201 / 193,
  5206. bottom: 2.3 / 203.7
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(10, "feet"),
  5214. default: true
  5215. }
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "James", species: ["deer"], tags: ["anthro"] },
  5220. {
  5221. side: {
  5222. height: math.unit(2, "meters"),
  5223. weight: math.unit(100, "kg"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/james/front.svg",
  5227. extra: 10 / 8.5
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(8.5, "feet"),
  5235. default: true
  5236. }
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5241. {
  5242. side: {
  5243. height: math.unit(9.5, "feet"),
  5244. weight: math.unit(2500, "lbs"),
  5245. name: "Side",
  5246. image: {
  5247. source: "./media/characters/heather/side.svg"
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(9.5, "feet"),
  5255. default: true
  5256. }
  5257. ]
  5258. ))
  5259. characterMakers.push(() => makeCharacter(
  5260. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5261. {
  5262. side: {
  5263. height: math.unit(6.5, "feet"),
  5264. weight: math.unit(400, "lbs"),
  5265. name: "Side",
  5266. image: {
  5267. source: "./media/characters/lukas/side.svg",
  5268. extra: 7.25 / 6.5
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(6.5, "feet"),
  5276. default: true
  5277. }
  5278. ]
  5279. ))
  5280. characterMakers.push(() => makeCharacter(
  5281. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5282. {
  5283. side: {
  5284. height: math.unit(5, "feet"),
  5285. weight: math.unit(3000, "lbs"),
  5286. name: "Side",
  5287. image: {
  5288. source: "./media/characters/louise/side.svg"
  5289. }
  5290. },
  5291. },
  5292. [
  5293. {
  5294. name: "Normal",
  5295. height: math.unit(5, "feet"),
  5296. default: true
  5297. }
  5298. ]
  5299. ))
  5300. characterMakers.push(() => makeCharacter(
  5301. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5302. {
  5303. side: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(150, "lbs"),
  5306. name: "Side",
  5307. image: {
  5308. source: "./media/characters/ramona/side.svg",
  5309. extra: 871/854,
  5310. bottom: 41/912
  5311. }
  5312. },
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(5.3, "meters"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(20, "stories")
  5323. },
  5324. {
  5325. name: "Macro+",
  5326. height: math.unit(50, "stories")
  5327. },
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5332. {
  5333. standing: {
  5334. height: math.unit(5.75, "feet"),
  5335. weight: math.unit(160, "lbs"),
  5336. name: "Standing",
  5337. image: {
  5338. source: "./media/characters/deerpuff/standing.svg",
  5339. extra: 682 / 624
  5340. }
  5341. },
  5342. sitting: {
  5343. height: math.unit(5.75 / 1.79, "feet"),
  5344. weight: math.unit(160, "lbs"),
  5345. name: "Sitting",
  5346. image: {
  5347. source: "./media/characters/deerpuff/sitting.svg",
  5348. bottom: 44 / 400,
  5349. extra: 1
  5350. }
  5351. },
  5352. taurLaying: {
  5353. height: math.unit(6, "feet"),
  5354. weight: math.unit(400, "lbs"),
  5355. name: "Taur (Laying)",
  5356. image: {
  5357. source: "./media/characters/deerpuff/taur-laying.svg"
  5358. }
  5359. },
  5360. },
  5361. [
  5362. {
  5363. name: "Puffball",
  5364. height: math.unit(6, "inches")
  5365. },
  5366. {
  5367. name: "Normalpuff",
  5368. height: math.unit(5.75, "feet")
  5369. },
  5370. {
  5371. name: "Macropuff",
  5372. height: math.unit(1500, "feet"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "Megapuff",
  5377. height: math.unit(500, "miles")
  5378. },
  5379. {
  5380. name: "Gigapuff",
  5381. height: math.unit(250000, "miles")
  5382. },
  5383. {
  5384. name: "Omegapuff",
  5385. height: math.unit(1000, "lightyears")
  5386. },
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5391. {
  5392. stomping: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(170, "lbs"),
  5395. name: "Stomping",
  5396. image: {
  5397. source: "./media/characters/vivian/stomping.svg"
  5398. }
  5399. },
  5400. sitting: {
  5401. height: math.unit(6 / 1.75, "feet"),
  5402. weight: math.unit(170, "lbs"),
  5403. name: "Sitting",
  5404. image: {
  5405. source: "./media/characters/vivian/sitting.svg",
  5406. bottom: 1 / 6.4,
  5407. extra: 1,
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(7, "feet"),
  5415. default: true
  5416. },
  5417. {
  5418. name: "Macro",
  5419. height: math.unit(10, "stories")
  5420. },
  5421. {
  5422. name: "Macro+",
  5423. height: math.unit(30, "stories")
  5424. },
  5425. {
  5426. name: "Megamacro",
  5427. height: math.unit(10, "miles")
  5428. },
  5429. {
  5430. name: "Megamacro+",
  5431. height: math.unit(2750000, "meters")
  5432. },
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(160, "lbs"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/prince/front.svg",
  5444. extra: 3400 / 3000
  5445. }
  5446. },
  5447. jumping: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(160, "lbs"),
  5450. name: "Jumping",
  5451. image: {
  5452. source: "./media/characters/prince/jump.svg",
  5453. extra: 2555 / 2134
  5454. }
  5455. },
  5456. },
  5457. [
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(7.75, "feet"),
  5461. default: true
  5462. },
  5463. {
  5464. name: "Not cute",
  5465. height: math.unit(17, "feet")
  5466. },
  5467. {
  5468. name: "I said NOT",
  5469. height: math.unit(91, "feet")
  5470. },
  5471. {
  5472. name: "Please stop",
  5473. height: math.unit(560, "feet")
  5474. },
  5475. {
  5476. name: "What have you done",
  5477. height: math.unit(2200, "feet")
  5478. },
  5479. {
  5480. name: "Deer God",
  5481. height: math.unit(3.6, "miles")
  5482. },
  5483. ]
  5484. ))
  5485. characterMakers.push(() => makeCharacter(
  5486. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5487. {
  5488. standing: {
  5489. height: math.unit(6, "feet"),
  5490. weight: math.unit(300, "lbs"),
  5491. name: "Standing",
  5492. image: {
  5493. source: "./media/characters/psymon/standing.svg",
  5494. extra: 1888 / 1810,
  5495. bottom: 0.05
  5496. }
  5497. },
  5498. slithering: {
  5499. height: math.unit(6, "feet"),
  5500. weight: math.unit(300, "lbs"),
  5501. name: "Slithering",
  5502. image: {
  5503. source: "./media/characters/psymon/slithering.svg",
  5504. extra: 1330 / 1224
  5505. }
  5506. },
  5507. slitheringAlt: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(300, "lbs"),
  5510. name: "Slithering (Alt)",
  5511. image: {
  5512. source: "./media/characters/psymon/slithering-alt.svg",
  5513. extra: 1330 / 1224
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(11.25, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Large",
  5525. height: math.unit(27, "feet")
  5526. },
  5527. {
  5528. name: "Giant",
  5529. height: math.unit(87, "feet")
  5530. },
  5531. {
  5532. name: "Macro",
  5533. height: math.unit(365, "feet")
  5534. },
  5535. {
  5536. name: "Megamacro",
  5537. height: math.unit(3, "miles")
  5538. },
  5539. {
  5540. name: "World Serpent",
  5541. height: math.unit(8000, "miles")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(180, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/daimos/front.svg",
  5554. extra: 4160 / 3897,
  5555. bottom: 0.021
  5556. }
  5557. }
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(8, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Big Dog",
  5567. height: math.unit(22, "feet")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(127, "feet")
  5572. },
  5573. {
  5574. name: "Megamacro",
  5575. height: math.unit(3600, "feet")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5581. {
  5582. side: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(180, "lbs"),
  5585. name: "Side",
  5586. image: {
  5587. source: "./media/characters/blake/side.svg",
  5588. extra: 1212 / 1120,
  5589. bottom: 0.05
  5590. }
  5591. },
  5592. crouched: {
  5593. height: math.unit(6 * 0.57, "feet"),
  5594. weight: math.unit(180, "lbs"),
  5595. name: "Crouched",
  5596. image: {
  5597. source: "./media/characters/blake/crouched.svg",
  5598. extra: 840 / 587,
  5599. bottom: 0.04
  5600. }
  5601. },
  5602. bent: {
  5603. height: math.unit(6 * 0.75, "feet"),
  5604. weight: math.unit(180, "lbs"),
  5605. name: "Bent",
  5606. image: {
  5607. source: "./media/characters/blake/bent.svg",
  5608. extra: 592 / 544,
  5609. bottom: 0.035
  5610. }
  5611. },
  5612. },
  5613. [
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(8 + 1 / 6, "feet"),
  5617. default: true
  5618. },
  5619. {
  5620. name: "Big Backside",
  5621. height: math.unit(37, "feet")
  5622. },
  5623. {
  5624. name: "Subway Shredder",
  5625. height: math.unit(72, "feet")
  5626. },
  5627. {
  5628. name: "City Carver",
  5629. height: math.unit(1675, "feet")
  5630. },
  5631. {
  5632. name: "Tectonic Tweaker",
  5633. height: math.unit(2300, "miles")
  5634. },
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(180, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/guisetto/front.svg",
  5646. extra: 856 / 817,
  5647. bottom: 0.06
  5648. }
  5649. },
  5650. airborne: {
  5651. height: math.unit(6, "feet"),
  5652. weight: math.unit(180, "lbs"),
  5653. name: "Airborne",
  5654. image: {
  5655. source: "./media/characters/guisetto/airborne.svg",
  5656. extra: 584 / 525
  5657. }
  5658. },
  5659. },
  5660. [
  5661. {
  5662. name: "Normal",
  5663. height: math.unit(10 + 11 / 12, "feet"),
  5664. default: true
  5665. },
  5666. {
  5667. name: "Large",
  5668. height: math.unit(35, "feet")
  5669. },
  5670. {
  5671. name: "Macro",
  5672. height: math.unit(475, "feet")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(180, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/luxor/front.svg",
  5685. extra: 2940 / 2152
  5686. }
  5687. },
  5688. back: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(180, "lbs"),
  5691. name: "Back",
  5692. image: {
  5693. source: "./media/characters/luxor/back.svg",
  5694. extra: 1083 / 960
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(5 + 5 / 6, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Lamp",
  5706. height: math.unit(50, "feet")
  5707. },
  5708. {
  5709. name: "Lämp",
  5710. height: math.unit(300, "feet")
  5711. },
  5712. {
  5713. name: "The sun is a lamp",
  5714. height: math.unit(250000, "miles")
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5720. {
  5721. front: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(50, "lbs"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/huoyan/front.svg"
  5727. }
  5728. },
  5729. side: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(180, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/huoyan/side.svg"
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Chef",
  5741. height: math.unit(9, "feet")
  5742. },
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(65, "feet"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Macro",
  5750. height: math.unit(780, "feet")
  5751. },
  5752. {
  5753. name: "Flaming Mountain",
  5754. height: math.unit(4.8, "miles")
  5755. },
  5756. {
  5757. name: "Celestial",
  5758. height: math.unit(765000, "miles")
  5759. },
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(5 + 3 / 4, "feet"),
  5767. weight: math.unit(120, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/tails/front.svg"
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(5 + 3 / 4, "feet"),
  5778. default: true
  5779. }
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(4, "feet"),
  5787. weight: math.unit(50, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/rainy/front.svg"
  5791. }
  5792. }
  5793. },
  5794. [
  5795. {
  5796. name: "Macro",
  5797. height: math.unit(800, "feet"),
  5798. default: true
  5799. }
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(6, "feet"),
  5807. weight: math.unit(150, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/rainier/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Micro",
  5817. height: math.unit(2, "mm"),
  5818. default: true
  5819. }
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(8 + 4/12, "feet"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/andy-renard/front.svg",
  5830. extra: 1839/1726,
  5831. bottom: 134/1973
  5832. }
  5833. },
  5834. back: {
  5835. height: math.unit(8 + 4/12, "feet"),
  5836. name: "Back",
  5837. image: {
  5838. source: "./media/characters/andy-renard/back.svg",
  5839. extra: 1838/1710,
  5840. bottom: 105/1943
  5841. }
  5842. },
  5843. },
  5844. [
  5845. {
  5846. name: "Tall",
  5847. height: math.unit(8 + 4/12, "feet")
  5848. },
  5849. {
  5850. name: "Mini Macro",
  5851. height: math.unit(15, "feet"),
  5852. default: true
  5853. },
  5854. {
  5855. name: "Macro",
  5856. height: math.unit(100, "feet")
  5857. },
  5858. {
  5859. name: "Mega Macro",
  5860. height: math.unit(1000, "feet")
  5861. },
  5862. {
  5863. name: "Giga Macro",
  5864. height: math.unit(10, "miles")
  5865. },
  5866. {
  5867. name: "God Macro",
  5868. height: math.unit(1, "multiverse")
  5869. },
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5874. {
  5875. front: {
  5876. height: math.unit(6, "feet"),
  5877. weight: math.unit(210, "lbs"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/cimmaron/front-sfw.svg",
  5881. extra: 701 / 676,
  5882. bottom: 0.046
  5883. }
  5884. },
  5885. back: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(210, "lbs"),
  5888. name: "Back",
  5889. image: {
  5890. source: "./media/characters/cimmaron/back-sfw.svg",
  5891. extra: 701 / 676,
  5892. bottom: 0.046
  5893. }
  5894. },
  5895. frontNsfw: {
  5896. height: math.unit(6, "feet"),
  5897. weight: math.unit(210, "lbs"),
  5898. name: "Front (NSFW)",
  5899. image: {
  5900. source: "./media/characters/cimmaron/front-nsfw.svg",
  5901. extra: 701 / 676,
  5902. bottom: 0.046
  5903. }
  5904. },
  5905. backNsfw: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(210, "lbs"),
  5908. name: "Back (NSFW)",
  5909. image: {
  5910. source: "./media/characters/cimmaron/back-nsfw.svg",
  5911. extra: 701 / 676,
  5912. bottom: 0.046
  5913. }
  5914. },
  5915. dick: {
  5916. height: math.unit(1.714, "feet"),
  5917. name: "Dick",
  5918. image: {
  5919. source: "./media/characters/cimmaron/dick.svg"
  5920. }
  5921. },
  5922. },
  5923. [
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(6, "feet"),
  5927. default: true
  5928. },
  5929. {
  5930. name: "Macro Mayor",
  5931. height: math.unit(350, "meters")
  5932. },
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(200, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/akari/front.svg",
  5944. extra: 962 / 901,
  5945. bottom: 0.04
  5946. }
  5947. }
  5948. },
  5949. [
  5950. {
  5951. name: "Micro",
  5952. height: math.unit(5, "inches"),
  5953. default: true
  5954. },
  5955. {
  5956. name: "Normal",
  5957. height: math.unit(7, "feet")
  5958. },
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5963. {
  5964. front: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(140, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/cynosura/front.svg",
  5970. extra: 896 / 847
  5971. }
  5972. },
  5973. back: {
  5974. height: math.unit(6, "feet"),
  5975. weight: math.unit(140, "lbs"),
  5976. name: "Back",
  5977. image: {
  5978. source: "./media/characters/cynosura/back.svg",
  5979. extra: 1365 / 1250
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Micro",
  5986. height: math.unit(4, "inches")
  5987. },
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(5.75, "feet"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Tall",
  5995. height: math.unit(10, "feet")
  5996. },
  5997. {
  5998. name: "Big",
  5999. height: math.unit(20, "feet")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(50, "feet")
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(13 + 2/12, "feet"),
  6012. weight: math.unit(800, "kg"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/gin/front.svg",
  6016. extra: 1312/1191,
  6017. bottom: 45/1357
  6018. }
  6019. },
  6020. mouth: {
  6021. height: math.unit(2.39 * 1.8, "feet"),
  6022. name: "Mouth",
  6023. image: {
  6024. source: "./media/characters/gin/mouth.svg"
  6025. }
  6026. },
  6027. hand: {
  6028. height: math.unit(1.57 * 2.19, "feet"),
  6029. name: "Hand",
  6030. image: {
  6031. source: "./media/characters/gin/hand.svg"
  6032. }
  6033. },
  6034. foot: {
  6035. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6036. name: "Foot",
  6037. image: {
  6038. source: "./media/characters/gin/foot.svg"
  6039. }
  6040. },
  6041. sole: {
  6042. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6043. name: "Sole",
  6044. image: {
  6045. source: "./media/characters/gin/sole.svg"
  6046. }
  6047. },
  6048. },
  6049. [
  6050. {
  6051. name: "Very Small",
  6052. height: math.unit(13 + 2 / 12, "feet")
  6053. },
  6054. {
  6055. name: "Micro",
  6056. height: math.unit(600, "miles")
  6057. },
  6058. {
  6059. name: "Regular",
  6060. height: math.unit(20, "earths"),
  6061. default: true
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(2.2, "solarradii")
  6066. },
  6067. {
  6068. name: "Teramacro",
  6069. height: math.unit(1.2, "galaxies")
  6070. },
  6071. {
  6072. name: "Omegamacro",
  6073. height: math.unit(200, "universes")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(6 + 1 / 6, "feet"),
  6082. weight: math.unit(178, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/guy/front.svg"
  6086. }
  6087. }
  6088. },
  6089. [
  6090. {
  6091. name: "Normal",
  6092. height: math.unit(6 + 1 / 6, "feet"),
  6093. default: true
  6094. },
  6095. {
  6096. name: "Large",
  6097. height: math.unit(25 + 7 / 12, "feet")
  6098. },
  6099. {
  6100. name: "Macro",
  6101. height: math.unit(60 + 9 / 12, "feet")
  6102. },
  6103. {
  6104. name: "Macro+",
  6105. height: math.unit(246, "feet")
  6106. },
  6107. {
  6108. name: "Macro++",
  6109. height: math.unit(878, "feet")
  6110. }
  6111. ]
  6112. ))
  6113. characterMakers.push(() => makeCharacter(
  6114. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6115. {
  6116. front: {
  6117. height: math.unit(9, "feet"),
  6118. weight: math.unit(800, "lbs"),
  6119. name: "Front",
  6120. image: {
  6121. source: "./media/characters/tiberius/front.svg",
  6122. extra: 2295 / 2071
  6123. }
  6124. },
  6125. back: {
  6126. height: math.unit(9, "feet"),
  6127. weight: math.unit(800, "lbs"),
  6128. name: "Back",
  6129. image: {
  6130. source: "./media/characters/tiberius/back.svg",
  6131. extra: 2373 / 2160
  6132. }
  6133. },
  6134. },
  6135. [
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(9, "feet"),
  6139. default: true
  6140. }
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6145. {
  6146. front: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(600, "lbs"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/surgo/front.svg",
  6152. extra: 3591 / 2227
  6153. }
  6154. },
  6155. back: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(600, "lbs"),
  6158. name: "Back",
  6159. image: {
  6160. source: "./media/characters/surgo/back.svg",
  6161. extra: 3557 / 2228
  6162. }
  6163. },
  6164. laying: {
  6165. height: math.unit(6 * 0.85, "feet"),
  6166. weight: math.unit(600, "lbs"),
  6167. name: "Laying",
  6168. image: {
  6169. source: "./media/characters/surgo/laying.svg"
  6170. }
  6171. },
  6172. },
  6173. [
  6174. {
  6175. name: "Normal",
  6176. height: math.unit(6, "feet"),
  6177. default: true
  6178. }
  6179. ]
  6180. ))
  6181. characterMakers.push(() => makeCharacter(
  6182. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6183. {
  6184. side: {
  6185. height: math.unit(6, "feet"),
  6186. weight: math.unit(150, "lbs"),
  6187. name: "Side",
  6188. image: {
  6189. source: "./media/characters/cibus/side.svg",
  6190. extra: 800 / 400
  6191. }
  6192. },
  6193. },
  6194. [
  6195. {
  6196. name: "Normal",
  6197. height: math.unit(6, "feet"),
  6198. default: true
  6199. }
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6204. {
  6205. front: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(240, "lbs"),
  6208. name: "Front",
  6209. image: {
  6210. source: "./media/characters/nibbles/front.svg"
  6211. }
  6212. },
  6213. side: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(240, "lbs"),
  6216. name: "Side",
  6217. image: {
  6218. source: "./media/characters/nibbles/side.svg"
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(9, "feet"),
  6226. default: true
  6227. }
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6232. {
  6233. side: {
  6234. height: math.unit(5 + 1 / 6, "feet"),
  6235. weight: math.unit(130, "lbs"),
  6236. name: "Side",
  6237. image: {
  6238. source: "./media/characters/rikky/side.svg",
  6239. extra: 851 / 801
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(5 + 1 / 6, "feet")
  6247. },
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(152, "feet"),
  6251. default: true
  6252. },
  6253. {
  6254. name: "Megamacro",
  6255. height: math.unit(7, "miles")
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6261. {
  6262. side: {
  6263. height: math.unit(370, "cm"),
  6264. weight: math.unit(350, "lbs"),
  6265. name: "Side",
  6266. image: {
  6267. source: "./media/characters/malfressa/side.svg"
  6268. }
  6269. },
  6270. walking: {
  6271. height: math.unit(370, "cm"),
  6272. weight: math.unit(350, "lbs"),
  6273. name: "Walking",
  6274. image: {
  6275. source: "./media/characters/malfressa/walking.svg"
  6276. }
  6277. },
  6278. feral: {
  6279. height: math.unit(2500, "cm"),
  6280. weight: math.unit(100000, "lbs"),
  6281. name: "Feral",
  6282. image: {
  6283. source: "./media/characters/malfressa/feral.svg",
  6284. extra: 2108 / 837,
  6285. bottom: 0.02
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(370, "cm")
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(300, "meters"),
  6297. default: true
  6298. }
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6303. {
  6304. front: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(60, "kg"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/jaro/front.svg"
  6310. }
  6311. },
  6312. back: {
  6313. height: math.unit(6, "feet"),
  6314. weight: math.unit(60, "kg"),
  6315. name: "Back",
  6316. image: {
  6317. source: "./media/characters/jaro/back.svg"
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Micro",
  6324. height: math.unit(7, "inches")
  6325. },
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(5.5, "feet"),
  6329. default: true
  6330. },
  6331. {
  6332. name: "Minimacro",
  6333. height: math.unit(20, "feet")
  6334. },
  6335. {
  6336. name: "Macro",
  6337. height: math.unit(200, "meters")
  6338. }
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(195, "lb"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/rogue/front.svg"
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Macro",
  6356. height: math.unit(90, "feet"),
  6357. default: true
  6358. },
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6363. {
  6364. front: {
  6365. height: math.unit(5 + 8 / 12, "feet"),
  6366. weight: math.unit(140, "lb"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/piper/front.svg",
  6370. extra: 3948/3655,
  6371. bottom: 0/3948
  6372. }
  6373. },
  6374. },
  6375. [
  6376. {
  6377. name: "Micro",
  6378. height: math.unit(2, "inches")
  6379. },
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(5 + 8 / 12, "feet")
  6383. },
  6384. {
  6385. name: "Macro",
  6386. height: math.unit(250, "feet"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Megamacro",
  6391. height: math.unit(7, "miles")
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6397. {
  6398. front: {
  6399. height: math.unit(6, "feet"),
  6400. weight: math.unit(220, "lb"),
  6401. name: "Front",
  6402. image: {
  6403. source: "./media/characters/gemini/front.svg"
  6404. }
  6405. },
  6406. back: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(220, "lb"),
  6409. name: "Back",
  6410. image: {
  6411. source: "./media/characters/gemini/back.svg"
  6412. }
  6413. },
  6414. kneeling: {
  6415. height: math.unit(6 / 1.5, "feet"),
  6416. weight: math.unit(220, "lb"),
  6417. name: "Kneeling",
  6418. image: {
  6419. source: "./media/characters/gemini/kneeling.svg",
  6420. bottom: 0.02
  6421. }
  6422. },
  6423. },
  6424. [
  6425. {
  6426. name: "Macro",
  6427. height: math.unit(300, "meters"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Megamacro",
  6432. height: math.unit(6900, "meters")
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6438. {
  6439. anthro: {
  6440. height: math.unit(2.35, "meters"),
  6441. weight: math.unit(73, "kg"),
  6442. name: "Anthro",
  6443. image: {
  6444. source: "./media/characters/alicia/anthro.svg",
  6445. extra: 2571 / 2385,
  6446. bottom: 75 / 2648
  6447. }
  6448. },
  6449. paw: {
  6450. height: math.unit(1.32, "feet"),
  6451. name: "Paw",
  6452. image: {
  6453. source: "./media/characters/alicia/paw.svg"
  6454. }
  6455. },
  6456. feral: {
  6457. height: math.unit(1.69, "meters"),
  6458. weight: math.unit(73, "kg"),
  6459. name: "Feral",
  6460. image: {
  6461. source: "./media/characters/alicia/feral.svg",
  6462. extra: 2123 / 1715,
  6463. bottom: 222 / 2349
  6464. }
  6465. },
  6466. },
  6467. [
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(2.35, "meters")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(60, "meters"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Megamacro",
  6479. height: math.unit(10000, "kilometers")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(7, "feet"),
  6488. weight: math.unit(250, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/archy/front.svg"
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(1, "inch")
  6499. },
  6500. {
  6501. name: "Shorty",
  6502. height: math.unit(5, "feet")
  6503. },
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(7, "feet")
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(600, "meters"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Megamacro",
  6515. height: math.unit(1, "mile")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(1.65, "meters"),
  6524. weight: math.unit(74, "kg"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/berri/front.svg",
  6528. extra: 857 / 837,
  6529. bottom: 18 / 877
  6530. }
  6531. },
  6532. bum: {
  6533. height: math.unit(1.46, "feet"),
  6534. name: "Bum",
  6535. image: {
  6536. source: "./media/characters/berri/bum.svg"
  6537. }
  6538. },
  6539. mouth: {
  6540. height: math.unit(0.44, "feet"),
  6541. name: "Mouth",
  6542. image: {
  6543. source: "./media/characters/berri/mouth.svg"
  6544. }
  6545. },
  6546. paw: {
  6547. height: math.unit(0.826, "feet"),
  6548. name: "Paw",
  6549. image: {
  6550. source: "./media/characters/berri/paw.svg"
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(1.65, "meters")
  6558. },
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(60, "m"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(9.213, "km")
  6567. },
  6568. {
  6569. name: "Planet Eater",
  6570. height: math.unit(489, "megameters")
  6571. },
  6572. {
  6573. name: "Teramacro",
  6574. height: math.unit(2471635000000, "meters")
  6575. },
  6576. {
  6577. name: "Examacro",
  6578. height: math.unit(8.0624e+26, "meters")
  6579. }
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(1.72, "meters"),
  6587. weight: math.unit(68, "kg"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/lexi/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Very Smol",
  6597. height: math.unit(10, "mm")
  6598. },
  6599. {
  6600. name: "Micro",
  6601. height: math.unit(6.8, "cm"),
  6602. default: true
  6603. },
  6604. {
  6605. name: "Normal",
  6606. height: math.unit(1.72, "m")
  6607. }
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(1.69, "meters"),
  6615. weight: math.unit(68, "kg"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/martin/front.svg",
  6619. extra: 596 / 581
  6620. }
  6621. }
  6622. },
  6623. [
  6624. {
  6625. name: "Micro",
  6626. height: math.unit(6.85, "cm"),
  6627. default: true
  6628. },
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(1.69, "m")
  6632. }
  6633. ]
  6634. ))
  6635. characterMakers.push(() => makeCharacter(
  6636. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6637. {
  6638. front: {
  6639. height: math.unit(1.69, "meters"),
  6640. weight: math.unit(68, "kg"),
  6641. name: "Front",
  6642. image: {
  6643. source: "./media/characters/juno/front.svg"
  6644. }
  6645. }
  6646. },
  6647. [
  6648. {
  6649. name: "Micro",
  6650. height: math.unit(7, "cm")
  6651. },
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(1.89, "m")
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(353, "meters"),
  6659. default: true
  6660. }
  6661. ]
  6662. ))
  6663. characterMakers.push(() => makeCharacter(
  6664. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6665. {
  6666. front: {
  6667. height: math.unit(1.93, "meters"),
  6668. weight: math.unit(83, "kg"),
  6669. name: "Front",
  6670. image: {
  6671. source: "./media/characters/samantha/front.svg"
  6672. }
  6673. },
  6674. frontClothed: {
  6675. height: math.unit(1.93, "meters"),
  6676. weight: math.unit(83, "kg"),
  6677. name: "Front (Clothed)",
  6678. image: {
  6679. source: "./media/characters/samantha/front-clothed.svg"
  6680. }
  6681. },
  6682. back: {
  6683. height: math.unit(1.93, "meters"),
  6684. weight: math.unit(83, "kg"),
  6685. name: "Back",
  6686. image: {
  6687. source: "./media/characters/samantha/back.svg"
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(1.93, "m")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(74, "meters"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Macro+",
  6703. height: math.unit(223, "meters"),
  6704. },
  6705. {
  6706. name: "Megamacro",
  6707. height: math.unit(8381, "meters"),
  6708. },
  6709. {
  6710. name: "Megamacro+",
  6711. height: math.unit(12000, "kilometers")
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.92, "meters"),
  6720. weight: math.unit(80, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/dr-clay/front.svg"
  6724. }
  6725. },
  6726. frontClothed: {
  6727. height: math.unit(1.92, "meters"),
  6728. weight: math.unit(80, "kg"),
  6729. name: "Front (Clothed)",
  6730. image: {
  6731. source: "./media/characters/dr-clay/front-clothed.svg"
  6732. }
  6733. }
  6734. },
  6735. [
  6736. {
  6737. name: "Normal",
  6738. height: math.unit(1.92, "m")
  6739. },
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(214, "meters"),
  6743. default: true
  6744. },
  6745. {
  6746. name: "Macro+",
  6747. height: math.unit(12.237, "meters"),
  6748. },
  6749. {
  6750. name: "Megamacro",
  6751. height: math.unit(557, "megameters"),
  6752. },
  6753. {
  6754. name: "Unimaginable",
  6755. height: math.unit(120e9, "lightyears")
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(2, "meters"),
  6764. weight: math.unit(80, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Teramacro",
  6774. height: math.unit(500000, "lightyears"),
  6775. default: true
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6781. {
  6782. crux: {
  6783. height: math.unit(2, "meters"),
  6784. weight: math.unit(150, "kg"),
  6785. name: "Crux",
  6786. image: {
  6787. source: "./media/characters/vemus/crux.svg",
  6788. extra: 1074/936,
  6789. bottom: 23/1097
  6790. }
  6791. },
  6792. skunkTanuki: {
  6793. height: math.unit(2, "meters"),
  6794. weight: math.unit(150, "kg"),
  6795. name: "Skunk-Tanuki",
  6796. image: {
  6797. source: "./media/characters/vemus/skunk-tanuki.svg",
  6798. extra: 926/893,
  6799. bottom: 20/946
  6800. }
  6801. },
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(3.75, "meters"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Big",
  6811. height: math.unit(8, "meters")
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(100, "meters")
  6816. },
  6817. {
  6818. name: "Macro+",
  6819. height: math.unit(1500, "meters")
  6820. },
  6821. {
  6822. name: "Stellar",
  6823. height: math.unit(14e8, "meters")
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(2, "meters"),
  6832. weight: math.unit(70, "kg"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/beherit/front.svg",
  6836. extra: 1408 / 1242
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Normal",
  6843. height: math.unit(6, "feet")
  6844. },
  6845. {
  6846. name: "Lorg",
  6847. height: math.unit(25, "feet"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Lorger",
  6852. height: math.unit(75, "feet")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(200, "meters")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(2, "meters"),
  6865. weight: math.unit(150, "kg"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/everett/front.svg",
  6869. extra: 2038 / 1737,
  6870. bottom: 0.03
  6871. }
  6872. },
  6873. paw: {
  6874. height: math.unit(2 / 3.6, "meters"),
  6875. name: "Paw",
  6876. image: {
  6877. source: "./media/characters/everett/paw.svg"
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(15, "feet"),
  6885. default: true
  6886. },
  6887. {
  6888. name: "Lorg",
  6889. height: math.unit(70, "feet"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Lorger",
  6894. height: math.unit(250, "feet")
  6895. },
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(500, "meters")
  6899. },
  6900. ]
  6901. ))
  6902. characterMakers.push(() => makeCharacter(
  6903. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6904. {
  6905. front: {
  6906. height: math.unit(2, "meters"),
  6907. weight: math.unit(86, "kg"),
  6908. name: "Front",
  6909. image: {
  6910. source: "./media/characters/rose/front.svg",
  6911. extra: 1785/1636,
  6912. bottom: 30/1815
  6913. }
  6914. },
  6915. frontSporty: {
  6916. height: math.unit(2, "meters"),
  6917. weight: math.unit(86, "kg"),
  6918. name: "Front (Sporty)",
  6919. image: {
  6920. source: "./media/characters/rose/front-sporty.svg",
  6921. extra: 350/335,
  6922. bottom: 10/360
  6923. }
  6924. },
  6925. frontAlt: {
  6926. height: math.unit(1.6, "meters"),
  6927. weight: math.unit(86, "kg"),
  6928. name: "Front (Alt)",
  6929. image: {
  6930. source: "./media/characters/rose/front-alt.svg",
  6931. extra: 299/283,
  6932. bottom: 3/302
  6933. }
  6934. },
  6935. plush: {
  6936. height: math.unit(2, "meters"),
  6937. weight: math.unit(86/3, "kg"),
  6938. name: "Plush",
  6939. image: {
  6940. source: "./media/characters/rose/plush.svg",
  6941. extra: 361/337,
  6942. bottom: 11/372
  6943. }
  6944. },
  6945. },
  6946. [
  6947. {
  6948. name: "True Micro",
  6949. height: math.unit(9, "cm")
  6950. },
  6951. {
  6952. name: "Micro",
  6953. height: math.unit(16, "cm")
  6954. },
  6955. {
  6956. name: "Normal",
  6957. height: math.unit(1.85, "meters"),
  6958. default: true
  6959. },
  6960. {
  6961. name: "Mini-Macro",
  6962. height: math.unit(5, "meters")
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(15, "meters")
  6967. },
  6968. {
  6969. name: "True Macro",
  6970. height: math.unit(40, "meters")
  6971. },
  6972. {
  6973. name: "City Scale",
  6974. height: math.unit(1, "km")
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(2, "meters"),
  6983. weight: math.unit(350, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/regal/front.svg"
  6987. }
  6988. },
  6989. back: {
  6990. height: math.unit(2, "meters"),
  6991. weight: math.unit(350, "lbs"),
  6992. name: "Back",
  6993. image: {
  6994. source: "./media/characters/regal/back.svg"
  6995. }
  6996. },
  6997. },
  6998. [
  6999. {
  7000. name: "Macro",
  7001. height: math.unit(350, "feet"),
  7002. default: true
  7003. }
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7008. {
  7009. front: {
  7010. height: math.unit(4 + 11 / 12, "feet"),
  7011. weight: math.unit(100, "lbs"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/opal/front.svg"
  7015. }
  7016. },
  7017. frontAlt: {
  7018. height: math.unit(4 + 11 / 12, "feet"),
  7019. weight: math.unit(100, "lbs"),
  7020. name: "Front (Alt)",
  7021. image: {
  7022. source: "./media/characters/opal/front-alt.svg"
  7023. }
  7024. },
  7025. },
  7026. [
  7027. {
  7028. name: "Small",
  7029. height: math.unit(4 + 11 / 12, "feet")
  7030. },
  7031. {
  7032. name: "Normal",
  7033. height: math.unit(20, "feet"),
  7034. default: true
  7035. },
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(120, "feet")
  7039. },
  7040. {
  7041. name: "Megamacro",
  7042. height: math.unit(80, "miles")
  7043. },
  7044. {
  7045. name: "True Size",
  7046. height: math.unit(100000, "lightyears")
  7047. },
  7048. ]
  7049. ))
  7050. characterMakers.push(() => makeCharacter(
  7051. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7052. {
  7053. front: {
  7054. height: math.unit(6, "feet"),
  7055. weight: math.unit(200, "lbs"),
  7056. name: "Front",
  7057. image: {
  7058. source: "./media/characters/vector-wuff/front.svg"
  7059. }
  7060. }
  7061. },
  7062. [
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(2.8, "meters")
  7066. },
  7067. {
  7068. name: "Macro",
  7069. height: math.unit(450, "meters"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Megamacro",
  7074. height: math.unit(15, "kilometers")
  7075. }
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(256, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/dannik/front.svg"
  7087. }
  7088. }
  7089. },
  7090. [
  7091. {
  7092. name: "Macro",
  7093. height: math.unit(69.57, "meters"),
  7094. default: true
  7095. },
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7100. {
  7101. front: {
  7102. height: math.unit(6, "feet"),
  7103. weight: math.unit(120, "lbs"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/azura-saharah/front.svg"
  7107. }
  7108. },
  7109. back: {
  7110. height: math.unit(6, "feet"),
  7111. weight: math.unit(120, "lbs"),
  7112. name: "Back",
  7113. image: {
  7114. source: "./media/characters/azura-saharah/back.svg"
  7115. }
  7116. },
  7117. },
  7118. [
  7119. {
  7120. name: "Macro",
  7121. height: math.unit(100, "feet"),
  7122. default: true
  7123. },
  7124. ]
  7125. ))
  7126. characterMakers.push(() => makeCharacter(
  7127. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7128. {
  7129. side: {
  7130. height: math.unit(5 + 4 / 12, "feet"),
  7131. weight: math.unit(163, "lbs"),
  7132. name: "Side",
  7133. image: {
  7134. source: "./media/characters/kennedy/side.svg"
  7135. }
  7136. }
  7137. },
  7138. [
  7139. {
  7140. name: "Standard Doggo",
  7141. height: math.unit(5 + 4 / 12, "feet")
  7142. },
  7143. {
  7144. name: "Big Doggo",
  7145. height: math.unit(25 + 3 / 12, "feet"),
  7146. default: true
  7147. },
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(5 + 5/12, "feet"),
  7155. weight: math.unit(100, "lbs"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/odios-de-lunar/front.svg",
  7159. extra: 1468/1323,
  7160. bottom: 22/1490
  7161. }
  7162. }
  7163. },
  7164. [
  7165. {
  7166. name: "Micro",
  7167. height: math.unit(3, "inches")
  7168. },
  7169. {
  7170. name: "Normal",
  7171. height: math.unit(5.5, "feet"),
  7172. default: true
  7173. },
  7174. {
  7175. name: "Macro",
  7176. height: math.unit(100, "feet")
  7177. },
  7178. ]
  7179. ))
  7180. characterMakers.push(() => makeCharacter(
  7181. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7182. {
  7183. back: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(220, "lbs"),
  7186. name: "Back",
  7187. image: {
  7188. source: "./media/characters/mandake/back.svg"
  7189. }
  7190. }
  7191. },
  7192. [
  7193. {
  7194. name: "Normal",
  7195. height: math.unit(7, "feet"),
  7196. default: true
  7197. },
  7198. {
  7199. name: "Macro",
  7200. height: math.unit(78, "feet")
  7201. },
  7202. {
  7203. name: "Macro+",
  7204. height: math.unit(300, "meters")
  7205. },
  7206. {
  7207. name: "Macro++",
  7208. height: math.unit(2400, "feet")
  7209. },
  7210. {
  7211. name: "Megamacro",
  7212. height: math.unit(5167, "meters")
  7213. },
  7214. {
  7215. name: "Gigamacro",
  7216. height: math.unit(41769, "miles")
  7217. },
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7222. {
  7223. front: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(120, "lbs"),
  7226. name: "Front",
  7227. image: {
  7228. source: "./media/characters/yozey/front.svg"
  7229. }
  7230. },
  7231. frontAlt: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(120, "lbs"),
  7234. name: "Front (Alt)",
  7235. image: {
  7236. source: "./media/characters/yozey/front-alt.svg"
  7237. }
  7238. },
  7239. side: {
  7240. height: math.unit(6, "feet"),
  7241. weight: math.unit(120, "lbs"),
  7242. name: "Side",
  7243. image: {
  7244. source: "./media/characters/yozey/side.svg"
  7245. }
  7246. },
  7247. },
  7248. [
  7249. {
  7250. name: "Micro",
  7251. height: math.unit(3, "inches"),
  7252. default: true
  7253. },
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(6, "feet")
  7257. }
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(6, "feet"),
  7265. weight: math.unit(103, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/valeska-voss/front.svg"
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Mini-Sized Sub",
  7275. height: math.unit(3.1, "inches")
  7276. },
  7277. {
  7278. name: "Mid-Sized Sub",
  7279. height: math.unit(6.2, "inches")
  7280. },
  7281. {
  7282. name: "Full-Sized Sub",
  7283. height: math.unit(9.3, "inches")
  7284. },
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(5 + 2 / 12, "foot"),
  7288. default: true
  7289. },
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7294. {
  7295. front: {
  7296. height: math.unit(6, "feet"),
  7297. weight: math.unit(160, "lbs"),
  7298. name: "Front",
  7299. image: {
  7300. source: "./media/characters/gene-zeta/front.svg",
  7301. extra: 3006 / 2826,
  7302. bottom: 182 / 3188
  7303. }
  7304. }
  7305. },
  7306. [
  7307. {
  7308. name: "Micro",
  7309. height: math.unit(6, "inches")
  7310. },
  7311. {
  7312. name: "Normal",
  7313. height: math.unit(5 + 11 / 12, "foot"),
  7314. default: true
  7315. },
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(140, "feet")
  7319. },
  7320. {
  7321. name: "Supercharged",
  7322. height: math.unit(2500, "feet")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(350, "lbs"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/razinox/front.svg",
  7335. extra: 1686 / 1548,
  7336. bottom: 28.2 / 1868
  7337. }
  7338. },
  7339. back: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(350, "lbs"),
  7342. name: "Back",
  7343. image: {
  7344. source: "./media/characters/razinox/back.svg",
  7345. extra: 1660 / 1590,
  7346. bottom: 15 / 1665
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(10 + 8 / 12, "foot")
  7354. },
  7355. {
  7356. name: "Minimacro",
  7357. height: math.unit(15, "foot")
  7358. },
  7359. {
  7360. name: "Macro",
  7361. height: math.unit(60, "foot"),
  7362. default: true
  7363. },
  7364. {
  7365. name: "Megamacro",
  7366. height: math.unit(5, "miles")
  7367. },
  7368. {
  7369. name: "Gigamacro",
  7370. height: math.unit(6000, "miles")
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(6, "feet"),
  7379. weight: math.unit(150, "lbs"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/cobalt/front.svg"
  7383. }
  7384. }
  7385. },
  7386. [
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(8 + 1 / 12, "foot")
  7390. },
  7391. {
  7392. name: "Macro",
  7393. height: math.unit(111, "foot"),
  7394. default: true
  7395. },
  7396. {
  7397. name: "Supracosmic",
  7398. height: math.unit(1e42, "feet")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(140, "lbs"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/amanda/front.svg"
  7411. }
  7412. }
  7413. },
  7414. [
  7415. {
  7416. name: "Micro",
  7417. height: math.unit(5, "inches"),
  7418. default: true
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(2.75, "meters"),
  7427. weight: math.unit(1200, "lb"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/teal/front.svg",
  7431. extra: 2463 / 2320,
  7432. bottom: 166 / 2629
  7433. }
  7434. },
  7435. back: {
  7436. height: math.unit(2.75, "meters"),
  7437. weight: math.unit(1200, "lb"),
  7438. name: "Back",
  7439. image: {
  7440. source: "./media/characters/teal/back.svg",
  7441. extra: 2580 / 2489,
  7442. bottom: 151 / 2731
  7443. }
  7444. },
  7445. sitting: {
  7446. height: math.unit(1.9, "meters"),
  7447. weight: math.unit(1200, "lb"),
  7448. name: "Sitting",
  7449. image: {
  7450. source: "./media/characters/teal/sitting.svg",
  7451. extra: 623 / 590,
  7452. bottom: 121 / 744
  7453. }
  7454. },
  7455. standing: {
  7456. height: math.unit(2.75, "meters"),
  7457. weight: math.unit(1200, "lb"),
  7458. name: "Standing",
  7459. image: {
  7460. source: "./media/characters/teal/standing.svg",
  7461. extra: 923 / 893,
  7462. bottom: 60 / 983
  7463. }
  7464. },
  7465. stretching: {
  7466. height: math.unit(3.65, "meters"),
  7467. weight: math.unit(1200, "lb"),
  7468. name: "Stretching",
  7469. image: {
  7470. source: "./media/characters/teal/stretching.svg",
  7471. extra: 1276 / 1244,
  7472. bottom: 0 / 1276
  7473. }
  7474. },
  7475. legged: {
  7476. height: math.unit(1.3, "meters"),
  7477. weight: math.unit(100, "lb"),
  7478. name: "Legged",
  7479. image: {
  7480. source: "./media/characters/teal/legged.svg",
  7481. extra: 462 / 437,
  7482. bottom: 24 / 486
  7483. }
  7484. },
  7485. naga: {
  7486. height: math.unit(5.4, "meters"),
  7487. weight: math.unit(4000, "lb"),
  7488. name: "Naga",
  7489. image: {
  7490. source: "./media/characters/teal/naga.svg",
  7491. extra: 1902 / 1858,
  7492. bottom: 0 / 1902
  7493. }
  7494. },
  7495. hand: {
  7496. height: math.unit(0.52, "meters"),
  7497. name: "Hand",
  7498. image: {
  7499. source: "./media/characters/teal/hand.svg"
  7500. }
  7501. },
  7502. maw: {
  7503. height: math.unit(0.43, "meters"),
  7504. name: "Maw",
  7505. image: {
  7506. source: "./media/characters/teal/maw.svg"
  7507. }
  7508. },
  7509. slit: {
  7510. height: math.unit(0.25, "meters"),
  7511. name: "Slit",
  7512. image: {
  7513. source: "./media/characters/teal/slit.svg"
  7514. }
  7515. },
  7516. },
  7517. [
  7518. {
  7519. name: "Normal",
  7520. height: math.unit(2.75, "meters"),
  7521. default: true
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(300, "feet")
  7526. },
  7527. {
  7528. name: "Macro+",
  7529. height: math.unit(2000, "feet")
  7530. },
  7531. ]
  7532. ))
  7533. characterMakers.push(() => makeCharacter(
  7534. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7535. {
  7536. frontCat: {
  7537. height: math.unit(6, "feet"),
  7538. weight: math.unit(180, "lbs"),
  7539. name: "Front (Cat)",
  7540. image: {
  7541. source: "./media/characters/ravin-amulet/front-cat.svg"
  7542. }
  7543. },
  7544. frontCatAlt: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(180, "lbs"),
  7547. name: "Front (Alt, Cat)",
  7548. image: {
  7549. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7550. }
  7551. },
  7552. frontWerewolf: {
  7553. height: math.unit(6 * 1.2, "feet"),
  7554. weight: math.unit(225, "lbs"),
  7555. name: "Front (Werewolf)",
  7556. image: {
  7557. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7558. }
  7559. },
  7560. backWerewolf: {
  7561. height: math.unit(6 * 1.2, "feet"),
  7562. weight: math.unit(225, "lbs"),
  7563. name: "Back (Werewolf)",
  7564. image: {
  7565. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Nano",
  7572. height: math.unit(1, "micrometer")
  7573. },
  7574. {
  7575. name: "Micro",
  7576. height: math.unit(1, "inch")
  7577. },
  7578. {
  7579. name: "Normal",
  7580. height: math.unit(6, "feet"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(60, "feet")
  7586. }
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(165, "lbs"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/fluoresce/front.svg"
  7598. }
  7599. }
  7600. },
  7601. [
  7602. {
  7603. name: "Micro",
  7604. height: math.unit(6, "cm")
  7605. },
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(5 + 7 / 12, "feet"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(56, "feet")
  7614. },
  7615. {
  7616. name: "Megamacro",
  7617. height: math.unit(1.9, "miles")
  7618. },
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7623. {
  7624. front: {
  7625. height: math.unit(9 + 6 / 12, "feet"),
  7626. weight: math.unit(523, "lbs"),
  7627. name: "Side",
  7628. image: {
  7629. source: "./media/characters/aurora/side.svg"
  7630. }
  7631. }
  7632. },
  7633. [
  7634. {
  7635. name: "Normal",
  7636. height: math.unit(9 + 6 / 12, "feet")
  7637. },
  7638. {
  7639. name: "Macro",
  7640. height: math.unit(96, "feet"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Macro+",
  7645. height: math.unit(243, "feet")
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(194, "cm"),
  7654. weight: math.unit(90, "kg"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/ranek/front.svg"
  7658. }
  7659. },
  7660. side: {
  7661. height: math.unit(194, "cm"),
  7662. weight: math.unit(90, "kg"),
  7663. name: "Side",
  7664. image: {
  7665. source: "./media/characters/ranek/side.svg"
  7666. }
  7667. },
  7668. back: {
  7669. height: math.unit(194, "cm"),
  7670. weight: math.unit(90, "kg"),
  7671. name: "Back",
  7672. image: {
  7673. source: "./media/characters/ranek/back.svg"
  7674. }
  7675. },
  7676. feral: {
  7677. height: math.unit(30, "cm"),
  7678. weight: math.unit(1.6, "lbs"),
  7679. name: "Feral",
  7680. image: {
  7681. source: "./media/characters/ranek/feral.svg"
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(194, "cm"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(100, "meters")
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(5 + 6 / 12, "feet"),
  7702. weight: math.unit(153, "lbs"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/andrew-cooper/front.svg"
  7706. }
  7707. },
  7708. },
  7709. [
  7710. {
  7711. name: "Nano",
  7712. height: math.unit(1, "mm")
  7713. },
  7714. {
  7715. name: "Micro",
  7716. height: math.unit(2, "inches")
  7717. },
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(5 + 6 / 12, "feet"),
  7721. default: true
  7722. }
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7727. {
  7728. front: {
  7729. height: math.unit(6, "feet"),
  7730. weight: math.unit(180, "lbs"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/akane-sato/front.svg",
  7734. extra: 1219 / 1140
  7735. }
  7736. },
  7737. back: {
  7738. height: math.unit(6, "feet"),
  7739. weight: math.unit(180, "lbs"),
  7740. name: "Back",
  7741. image: {
  7742. source: "./media/characters/akane-sato/back.svg",
  7743. extra: 1219 / 1170
  7744. }
  7745. },
  7746. },
  7747. [
  7748. {
  7749. name: "Normal",
  7750. height: math.unit(2.5, "meters")
  7751. },
  7752. {
  7753. name: "Macro",
  7754. height: math.unit(250, "meters"),
  7755. default: true
  7756. },
  7757. {
  7758. name: "Megamacro",
  7759. height: math.unit(25, "km")
  7760. },
  7761. ]
  7762. ))
  7763. characterMakers.push(() => makeCharacter(
  7764. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7765. {
  7766. front: {
  7767. height: math.unit(6, "feet"),
  7768. weight: math.unit(65, "kg"),
  7769. name: "Front",
  7770. image: {
  7771. source: "./media/characters/rook/front.svg",
  7772. extra: 960 / 950
  7773. }
  7774. }
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(8.8, "feet")
  7780. },
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(88, "feet"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Megamacro",
  7788. height: math.unit(8, "miles")
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(12 + 2 / 12, "feet"),
  7797. weight: math.unit(808, "lbs"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/prodigy/front.svg"
  7801. }
  7802. }
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(12 + 2 / 12, "feet"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Macro",
  7812. height: math.unit(143, "feet")
  7813. },
  7814. {
  7815. name: "Macro+",
  7816. height: math.unit(400, "feet")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(225, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/daniel/front.svg"
  7829. }
  7830. },
  7831. leaning: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(225, "lbs"),
  7834. name: "Leaning",
  7835. image: {
  7836. source: "./media/characters/daniel/leaning.svg"
  7837. }
  7838. },
  7839. },
  7840. [
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(1000, "feet"),
  7844. default: true
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(88, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/chiros/front.svg",
  7857. extra: 306 / 226
  7858. }
  7859. },
  7860. side: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(88, "lbs"),
  7863. name: "Side",
  7864. image: {
  7865. source: "./media/characters/chiros/side.svg",
  7866. extra: 306 / 226
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(6, "cm"),
  7874. default: true
  7875. },
  7876. ]
  7877. ))
  7878. characterMakers.push(() => makeCharacter(
  7879. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7880. {
  7881. front: {
  7882. height: math.unit(6, "feet"),
  7883. weight: math.unit(100, "lbs"),
  7884. name: "Front",
  7885. image: {
  7886. source: "./media/characters/selka/front.svg",
  7887. extra: 947 / 887
  7888. }
  7889. }
  7890. },
  7891. [
  7892. {
  7893. name: "Normal",
  7894. height: math.unit(5, "cm"),
  7895. default: true
  7896. },
  7897. ]
  7898. ))
  7899. characterMakers.push(() => makeCharacter(
  7900. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7901. {
  7902. front: {
  7903. height: math.unit(8 + 3 / 12, "feet"),
  7904. weight: math.unit(424, "lbs"),
  7905. name: "Front",
  7906. image: {
  7907. source: "./media/characters/verin/front.svg",
  7908. extra: 1845 / 1550
  7909. }
  7910. },
  7911. frontArmored: {
  7912. height: math.unit(8 + 3 / 12, "feet"),
  7913. weight: math.unit(424, "lbs"),
  7914. name: "Front (Armored)",
  7915. image: {
  7916. source: "./media/characters/verin/front-armor.svg",
  7917. extra: 1845 / 1550,
  7918. bottom: 0.01
  7919. }
  7920. },
  7921. back: {
  7922. height: math.unit(8 + 3 / 12, "feet"),
  7923. weight: math.unit(424, "lbs"),
  7924. name: "Back",
  7925. image: {
  7926. source: "./media/characters/verin/back.svg",
  7927. bottom: 0.1,
  7928. extra: 1
  7929. }
  7930. },
  7931. foot: {
  7932. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7933. name: "Foot",
  7934. image: {
  7935. source: "./media/characters/verin/foot.svg"
  7936. }
  7937. },
  7938. },
  7939. [
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(8 + 3 / 12, "feet")
  7943. },
  7944. {
  7945. name: "Minimacro",
  7946. height: math.unit(21, "feet"),
  7947. default: true
  7948. },
  7949. {
  7950. name: "Macro",
  7951. height: math.unit(626, "feet")
  7952. },
  7953. ]
  7954. ))
  7955. characterMakers.push(() => makeCharacter(
  7956. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7957. {
  7958. front: {
  7959. height: math.unit(2.718, "meters"),
  7960. weight: math.unit(150, "lbs"),
  7961. name: "Front",
  7962. image: {
  7963. source: "./media/characters/sovrim-terraquian/front.svg"
  7964. }
  7965. },
  7966. back: {
  7967. height: math.unit(2.718, "meters"),
  7968. weight: math.unit(150, "lbs"),
  7969. name: "Back",
  7970. image: {
  7971. source: "./media/characters/sovrim-terraquian/back.svg"
  7972. }
  7973. }
  7974. },
  7975. [
  7976. {
  7977. name: "Micro",
  7978. height: math.unit(2, "inches")
  7979. },
  7980. {
  7981. name: "Small",
  7982. height: math.unit(1, "meter")
  7983. },
  7984. {
  7985. name: "Normal",
  7986. height: math.unit(Math.E, "meters"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(20, "meters")
  7992. },
  7993. {
  7994. name: "Macro+",
  7995. height: math.unit(400, "meters")
  7996. },
  7997. ]
  7998. ))
  7999. characterMakers.push(() => makeCharacter(
  8000. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8001. {
  8002. front: {
  8003. height: math.unit(7, "feet"),
  8004. weight: math.unit(489, "lbs"),
  8005. name: "Front",
  8006. image: {
  8007. source: "./media/characters/reece-silvermane/front.svg",
  8008. bottom: 0.02,
  8009. extra: 1
  8010. }
  8011. },
  8012. },
  8013. [
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(1.5, "miles"),
  8017. default: true
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(78, "kg"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/kane/front.svg",
  8030. extra: 978 / 899
  8031. }
  8032. },
  8033. },
  8034. [
  8035. {
  8036. name: "Normal",
  8037. height: math.unit(2.1, "m"),
  8038. },
  8039. {
  8040. name: "Macro",
  8041. height: math.unit(1, "km"),
  8042. default: true
  8043. },
  8044. ]
  8045. ))
  8046. characterMakers.push(() => makeCharacter(
  8047. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8048. {
  8049. front: {
  8050. height: math.unit(6, "feet"),
  8051. weight: math.unit(200, "kg"),
  8052. name: "Front",
  8053. image: {
  8054. source: "./media/characters/tegon/front.svg",
  8055. bottom: 0.01,
  8056. extra: 1
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Micro",
  8063. height: math.unit(1, "inch")
  8064. },
  8065. {
  8066. name: "Normal",
  8067. height: math.unit(6 + 3 / 12, "feet"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Macro",
  8072. height: math.unit(300, "feet")
  8073. },
  8074. {
  8075. name: "Megamacro",
  8076. height: math.unit(69, "miles")
  8077. },
  8078. ]
  8079. ))
  8080. characterMakers.push(() => makeCharacter(
  8081. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8082. {
  8083. side: {
  8084. height: math.unit(6, "feet"),
  8085. weight: math.unit(2304, "lbs"),
  8086. name: "Side",
  8087. image: {
  8088. source: "./media/characters/arcturax/side.svg",
  8089. extra: 790 / 376,
  8090. bottom: 0.01
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Micro",
  8097. height: math.unit(2, "inch")
  8098. },
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(6, "feet")
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(39, "feet"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Megamacro",
  8110. height: math.unit(7, "miles")
  8111. },
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(6, "feet"),
  8119. weight: math.unit(50, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/sentri/front.svg",
  8123. extra: 1750 / 1570,
  8124. bottom: 0.025
  8125. }
  8126. },
  8127. frontAlt: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(50, "lbs"),
  8130. name: "Front (Alt)",
  8131. image: {
  8132. source: "./media/characters/sentri/front-alt.svg",
  8133. extra: 1750 / 1570,
  8134. bottom: 0.025
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(15, "feet"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(2500, "feet")
  8147. }
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(5 + 8 / 12, "feet"),
  8155. weight: math.unit(130, "lbs"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/corvin/front.svg",
  8159. extra: 1803 / 1629
  8160. }
  8161. },
  8162. frontShirt: {
  8163. height: math.unit(5 + 8 / 12, "feet"),
  8164. weight: math.unit(130, "lbs"),
  8165. name: "Front (Shirt)",
  8166. image: {
  8167. source: "./media/characters/corvin/front-shirt.svg",
  8168. extra: 1803 / 1629
  8169. }
  8170. },
  8171. frontPoncho: {
  8172. height: math.unit(5 + 8 / 12, "feet"),
  8173. weight: math.unit(130, "lbs"),
  8174. name: "Front (Poncho)",
  8175. image: {
  8176. source: "./media/characters/corvin/front-poncho.svg",
  8177. extra: 1803 / 1629
  8178. }
  8179. },
  8180. side: {
  8181. height: math.unit(5 + 8 / 12, "feet"),
  8182. weight: math.unit(130, "lbs"),
  8183. name: "Side",
  8184. image: {
  8185. source: "./media/characters/corvin/side.svg",
  8186. extra: 1012 / 945
  8187. }
  8188. },
  8189. back: {
  8190. height: math.unit(5 + 8 / 12, "feet"),
  8191. weight: math.unit(130, "lbs"),
  8192. name: "Back",
  8193. image: {
  8194. source: "./media/characters/corvin/back.svg",
  8195. extra: 1803 / 1629
  8196. }
  8197. },
  8198. },
  8199. [
  8200. {
  8201. name: "Micro",
  8202. height: math.unit(3, "inches")
  8203. },
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(5 + 8 / 12, "feet")
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(300, "feet"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "Megamacro",
  8215. height: math.unit(500, "miles")
  8216. }
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(135, "lbs"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/q/front.svg",
  8228. extra: 854 / 752,
  8229. bottom: 0.005
  8230. }
  8231. },
  8232. back: {
  8233. height: math.unit(6, "feet"),
  8234. weight: math.unit(130, "lbs"),
  8235. name: "Back",
  8236. image: {
  8237. source: "./media/characters/q/back.svg",
  8238. extra: 854 / 752
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(90, "feet"),
  8246. default: true
  8247. },
  8248. {
  8249. name: "Extra Macro",
  8250. height: math.unit(300, "feet"),
  8251. },
  8252. {
  8253. name: "BIG WALF",
  8254. height: math.unit(750, "feet"),
  8255. },
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8260. {
  8261. front: {
  8262. height: math.unit(6, "feet"),
  8263. weight: math.unit(150, "lbs"),
  8264. name: "Front",
  8265. image: {
  8266. source: "./media/characters/carley/front.svg",
  8267. extra: 3927 / 3540,
  8268. bottom: 29.2 / 735
  8269. }
  8270. }
  8271. },
  8272. [
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(6 + 3 / 12, "feet")
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(185, "feet"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Megamacro",
  8284. height: math.unit(8, "miles"),
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8290. {
  8291. front: {
  8292. height: math.unit(3, "feet"),
  8293. weight: math.unit(28, "lbs"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/citrine/front.svg"
  8297. }
  8298. }
  8299. },
  8300. [
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(3, "feet"),
  8304. default: true
  8305. }
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8310. {
  8311. front: {
  8312. height: math.unit(14, "feet"),
  8313. weight: math.unit(1450, "kg"),
  8314. capacity: math.unit(15, "people"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/aura-starwind/front.svg",
  8318. extra: 1440/1327,
  8319. bottom: 11/1451
  8320. }
  8321. },
  8322. side: {
  8323. height: math.unit(14, "feet"),
  8324. weight: math.unit(1450, "kg"),
  8325. capacity: math.unit(15, "people"),
  8326. name: "Side",
  8327. image: {
  8328. source: "./media/characters/aura-starwind/side.svg",
  8329. extra: 1654 / 1497
  8330. }
  8331. },
  8332. taur: {
  8333. height: math.unit(18, "feet"),
  8334. weight: math.unit(5500, "kg"),
  8335. capacity: math.unit(50, "people"),
  8336. name: "Taur",
  8337. image: {
  8338. source: "./media/characters/aura-starwind/taur.svg",
  8339. extra: 1760 / 1650
  8340. }
  8341. },
  8342. feral: {
  8343. height: math.unit(46, "feet"),
  8344. weight: math.unit(25000, "kg"),
  8345. capacity: math.unit(120, "people"),
  8346. name: "Feral",
  8347. image: {
  8348. source: "./media/characters/aura-starwind/feral.svg"
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(14, "feet"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Macro",
  8360. height: math.unit(50, "meters")
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(5000, "meters")
  8365. },
  8366. {
  8367. name: "Gigamacro",
  8368. height: math.unit(100000, "kilometers")
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(2 + 7 / 12, "feet"),
  8377. weight: math.unit(32, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/rivet/front.svg",
  8381. extra: 1716 / 1658,
  8382. bottom: 0.03
  8383. }
  8384. },
  8385. foot: {
  8386. height: math.unit(0.551, "feet"),
  8387. name: "Rivet's Foot",
  8388. image: {
  8389. source: "./media/characters/rivet/foot.svg"
  8390. },
  8391. rename: true
  8392. }
  8393. },
  8394. [
  8395. {
  8396. name: "Micro",
  8397. height: math.unit(1.5, "inches"),
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(2 + 7 / 12, "feet"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(85, "feet")
  8407. },
  8408. {
  8409. name: "Megamacro",
  8410. height: math.unit(2.2, "km")
  8411. }
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(5 + 9 / 12, "feet"),
  8419. weight: math.unit(150, "lbs"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/coffee/front.svg",
  8423. extra: 3666 / 3032,
  8424. bottom: 0.04
  8425. }
  8426. },
  8427. foot: {
  8428. height: math.unit(1.29, "feet"),
  8429. name: "Foot",
  8430. image: {
  8431. source: "./media/characters/coffee/foot.svg"
  8432. }
  8433. },
  8434. },
  8435. [
  8436. {
  8437. name: "Micro",
  8438. height: math.unit(2, "inches"),
  8439. },
  8440. {
  8441. name: "Normal",
  8442. height: math.unit(5 + 9 / 12, "feet"),
  8443. default: true
  8444. },
  8445. {
  8446. name: "Macro",
  8447. height: math.unit(800, "feet")
  8448. },
  8449. {
  8450. name: "Megamacro",
  8451. height: math.unit(25, "miles")
  8452. }
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(200, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/chari-gal/front.svg",
  8464. extra: 1568 / 1385,
  8465. bottom: 0.047
  8466. }
  8467. },
  8468. gigantamax: {
  8469. height: math.unit(6 * 16, "feet"),
  8470. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8471. name: "Gigantamax",
  8472. image: {
  8473. source: "./media/characters/chari-gal/gigantamax.svg",
  8474. extra: 1124 / 888,
  8475. bottom: 0.03
  8476. }
  8477. },
  8478. },
  8479. [
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(5 + 7 / 12, "feet")
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(200, "feet"),
  8487. default: true
  8488. }
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(150, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/nova/front.svg",
  8500. extra: 5000 / 4722,
  8501. bottom: 0.02
  8502. }
  8503. }
  8504. },
  8505. [
  8506. {
  8507. name: "Micro-",
  8508. height: math.unit(0.8, "inches")
  8509. },
  8510. {
  8511. name: "Micro",
  8512. height: math.unit(2, "inches"),
  8513. default: true
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(3 + 1 / 12, "feet"),
  8522. weight: math.unit(21.7, "lbs"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/argent/front.svg",
  8526. extra: 1471 / 1331,
  8527. bottom: 100.8 / 1575.5
  8528. }
  8529. }
  8530. },
  8531. [
  8532. {
  8533. name: "Micro",
  8534. height: math.unit(2, "inches")
  8535. },
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(3 + 1 / 12, "feet"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Macro",
  8543. height: math.unit(120, "feet")
  8544. },
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8549. {
  8550. lamp: {
  8551. height: math.unit(7 * 1559 / 989, "feet"),
  8552. name: "Magic Lamp",
  8553. image: {
  8554. source: "./media/characters/mira-al-cul/lamp.svg",
  8555. extra: 1617 / 1559
  8556. }
  8557. },
  8558. front: {
  8559. height: math.unit(7, "feet"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/mira-al-cul/front.svg",
  8563. extra: 1044 / 990
  8564. }
  8565. },
  8566. },
  8567. [
  8568. {
  8569. name: "Heavily Restricted",
  8570. height: math.unit(7 * 1559 / 989, "feet")
  8571. },
  8572. {
  8573. name: "Freshly Freed",
  8574. height: math.unit(50 * 1559 / 989, "feet")
  8575. },
  8576. {
  8577. name: "World Encompassing",
  8578. height: math.unit(10000 * 1559 / 989, "miles")
  8579. },
  8580. {
  8581. name: "Galactic",
  8582. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8583. },
  8584. {
  8585. name: "Palmed Universe",
  8586. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Multiversal Matriarch",
  8591. height: math.unit(8.87e10, "yottameters")
  8592. },
  8593. {
  8594. name: "Void Mother",
  8595. height: math.unit(3.14e110, "yottaparsecs")
  8596. },
  8597. {
  8598. name: "Toying with Transcendence",
  8599. height: math.unit(1e307, "meters")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8605. {
  8606. front: {
  8607. height: math.unit(17 + 1 / 12, "feet"),
  8608. weight: math.unit(476.2 * 5, "lbs"),
  8609. name: "Front",
  8610. image: {
  8611. source: "./media/characters/kuro-shi-uchū/front.svg",
  8612. extra: 2329 / 1835,
  8613. bottom: 0.02
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Micro",
  8620. height: math.unit(2, "inches")
  8621. },
  8622. {
  8623. name: "Normal",
  8624. height: math.unit(12, "meters")
  8625. },
  8626. {
  8627. name: "Planetary",
  8628. height: math.unit(0.00929, "AU"),
  8629. default: true
  8630. },
  8631. {
  8632. name: "Universal",
  8633. height: math.unit(20, "gigaparsecs")
  8634. },
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8639. {
  8640. front: {
  8641. height: math.unit(5 + 2 / 12, "feet"),
  8642. weight: math.unit(120, "lbs"),
  8643. name: "Front",
  8644. image: {
  8645. source: "./media/characters/katherine/front.svg",
  8646. extra: 2075 / 1969
  8647. }
  8648. },
  8649. dress: {
  8650. height: math.unit(5 + 2 / 12, "feet"),
  8651. weight: math.unit(120, "lbs"),
  8652. name: "Dress",
  8653. image: {
  8654. source: "./media/characters/katherine/dress.svg",
  8655. extra: 2258 / 2064
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Micro",
  8662. height: math.unit(1, "inches"),
  8663. default: true
  8664. },
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(5 + 2 / 12, "feet")
  8668. },
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(100, "meters")
  8672. },
  8673. {
  8674. name: "Megamacro",
  8675. height: math.unit(80, "miles")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(7 + 8 / 12, "feet"),
  8684. weight: math.unit(250, "lbs"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/yevis/front.svg",
  8688. extra: 1938 / 1755
  8689. }
  8690. }
  8691. },
  8692. [
  8693. {
  8694. name: "Mortal",
  8695. height: math.unit(7 + 8 / 12, "feet")
  8696. },
  8697. {
  8698. name: "Battle",
  8699. height: math.unit(25 + 11 / 12, "feet")
  8700. },
  8701. {
  8702. name: "Wrath",
  8703. height: math.unit(1654 + 11 / 12, "feet")
  8704. },
  8705. {
  8706. name: "Planet Destroyer",
  8707. height: math.unit(12000, "miles")
  8708. },
  8709. {
  8710. name: "Galaxy Conqueror",
  8711. height: math.unit(1.45, "zettameters"),
  8712. default: true
  8713. },
  8714. {
  8715. name: "Universal War",
  8716. height: math.unit(184, "gigaparsecs")
  8717. },
  8718. {
  8719. name: "Eternity War",
  8720. height: math.unit(1.98e55, "yottaparsecs")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8726. {
  8727. front: {
  8728. height: math.unit(5 + 8 / 12, "feet"),
  8729. weight: math.unit(63, "kg"),
  8730. name: "Front",
  8731. image: {
  8732. source: "./media/characters/xavier/front.svg",
  8733. extra: 944 / 883
  8734. }
  8735. },
  8736. frontStretch: {
  8737. height: math.unit(5 + 8 / 12, "feet"),
  8738. weight: math.unit(63, "kg"),
  8739. name: "Stretching",
  8740. image: {
  8741. source: "./media/characters/xavier/front-stretch.svg",
  8742. extra: 962 / 820
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(5 + 8 / 12, "feet")
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(100, "meters"),
  8754. default: true
  8755. },
  8756. {
  8757. name: "McLargeHuge",
  8758. height: math.unit(10, "miles")
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(5 + 5 / 12, "feet"),
  8767. weight: math.unit(150, "lb"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/joshii/front.svg",
  8771. extra: 765 / 653,
  8772. bottom: 51 / 816
  8773. }
  8774. },
  8775. foot: {
  8776. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8777. name: "Foot",
  8778. image: {
  8779. source: "./media/characters/joshii/foot.svg"
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Micro",
  8786. height: math.unit(2, "inches"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Normal",
  8791. height: math.unit(5 + 5 / 12, "feet")
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(785, "feet")
  8796. },
  8797. {
  8798. name: "Megamacro",
  8799. height: math.unit(24.5, "miles")
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(6, "feet"),
  8808. weight: math.unit(150, "lb"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/goddess-elizabeth/front.svg",
  8812. extra: 1800 / 1525,
  8813. bottom: 0.005
  8814. }
  8815. },
  8816. foot: {
  8817. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8818. name: "Foot",
  8819. image: {
  8820. source: "./media/characters/goddess-elizabeth/foot.svg"
  8821. }
  8822. },
  8823. mouth: {
  8824. height: math.unit(6, "feet"),
  8825. name: "Mouth",
  8826. image: {
  8827. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Micro",
  8834. height: math.unit(12, "feet")
  8835. },
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(80, "miles"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "Macro",
  8843. height: math.unit(15000, "parsecs")
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(5 + 9 / 12, "feet"),
  8852. weight: math.unit(144, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/kara/front.svg"
  8856. }
  8857. },
  8858. feet: {
  8859. height: math.unit(6 / 6.765, "feet"),
  8860. name: "Kara's Feet",
  8861. rename: true,
  8862. image: {
  8863. source: "./media/characters/kara/feet.svg"
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(5 + 9 / 12, "feet")
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(174, "feet"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(18, "feet"),
  8884. weight: math.unit(4050, "lb"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/tyrone/front.svg",
  8888. extra: 2405 / 2270,
  8889. bottom: 182 / 2587
  8890. }
  8891. },
  8892. },
  8893. [
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(18, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(300, "feet")
  8902. },
  8903. {
  8904. name: "Megamacro",
  8905. height: math.unit(15, "km")
  8906. },
  8907. {
  8908. name: "Gigamacro",
  8909. height: math.unit(500, "km")
  8910. },
  8911. {
  8912. name: "Teramacro",
  8913. height: math.unit(0.5, "gigameters")
  8914. },
  8915. {
  8916. name: "Omnimacro",
  8917. height: math.unit(1e252, "yottauniverse")
  8918. },
  8919. ]
  8920. ))
  8921. characterMakers.push(() => makeCharacter(
  8922. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8923. {
  8924. front: {
  8925. height: math.unit(7 + 8 / 12, "feet"),
  8926. weight: math.unit(120, "lb"),
  8927. name: "Front",
  8928. image: {
  8929. source: "./media/characters/danny/front.svg",
  8930. extra: 1490 / 1350
  8931. }
  8932. },
  8933. back: {
  8934. height: math.unit(7 + 8 / 12, "feet"),
  8935. weight: math.unit(120, "lb"),
  8936. name: "Back",
  8937. image: {
  8938. source: "./media/characters/danny/back.svg",
  8939. extra: 1490 / 1350
  8940. }
  8941. },
  8942. },
  8943. [
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(7 + 8 / 12, "feet"),
  8947. default: true
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(3.5, "inches"),
  8956. weight: math.unit(19, "grams"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/mallow/front.svg",
  8960. extra: 471 / 431
  8961. }
  8962. },
  8963. back: {
  8964. height: math.unit(3.5, "inches"),
  8965. weight: math.unit(19, "grams"),
  8966. name: "Back",
  8967. image: {
  8968. source: "./media/characters/mallow/back.svg",
  8969. extra: 471 / 431
  8970. }
  8971. },
  8972. },
  8973. [
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(3.5, "inches"),
  8977. default: true
  8978. },
  8979. ]
  8980. ))
  8981. characterMakers.push(() => makeCharacter(
  8982. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8983. {
  8984. front: {
  8985. height: math.unit(9, "feet"),
  8986. weight: math.unit(230, "kg"),
  8987. name: "Front",
  8988. image: {
  8989. source: "./media/characters/starry-aqua/front.svg"
  8990. }
  8991. },
  8992. back: {
  8993. height: math.unit(9, "feet"),
  8994. weight: math.unit(230, "kg"),
  8995. name: "Back",
  8996. image: {
  8997. source: "./media/characters/starry-aqua/back.svg"
  8998. }
  8999. },
  9000. hand: {
  9001. height: math.unit(9 * 0.1168, "feet"),
  9002. name: "Hand",
  9003. image: {
  9004. source: "./media/characters/starry-aqua/hand.svg"
  9005. }
  9006. },
  9007. foot: {
  9008. height: math.unit(9 * 0.18, "feet"),
  9009. name: "Foot",
  9010. image: {
  9011. source: "./media/characters/starry-aqua/foot.svg"
  9012. }
  9013. }
  9014. },
  9015. [
  9016. {
  9017. name: "Micro",
  9018. height: math.unit(3, "inches")
  9019. },
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(9, "feet")
  9023. },
  9024. {
  9025. name: "Macro",
  9026. height: math.unit(300, "feet"),
  9027. default: true
  9028. },
  9029. {
  9030. name: "Megamacro",
  9031. height: math.unit(3200, "feet")
  9032. }
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(15, "feet"),
  9040. weight: math.unit(5026, "lb"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/luka-towers/front.svg",
  9044. extra: 1269/1133,
  9045. bottom: 51/1320
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(15, "feet"),
  9053. default: true
  9054. },
  9055. {
  9056. name: "Minimacro",
  9057. height: math.unit(25, "feet")
  9058. },
  9059. {
  9060. name: "Macro",
  9061. height: math.unit(320, "feet")
  9062. },
  9063. {
  9064. name: "Megamacro",
  9065. height: math.unit(35000, "feet")
  9066. },
  9067. {
  9068. name: "Gigamacro",
  9069. height: math.unit(4000, "miles")
  9070. },
  9071. {
  9072. name: "Teramacro",
  9073. height: math.unit(15000, "miles")
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(6, "feet"),
  9082. weight: math.unit(150, "lb"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/natalie-nightring/front.svg",
  9086. extra: 1,
  9087. bottom: 0.06
  9088. }
  9089. },
  9090. },
  9091. [
  9092. {
  9093. name: "Uh Oh",
  9094. height: math.unit(0.1, "mm")
  9095. },
  9096. {
  9097. name: "Small",
  9098. height: math.unit(3, "inches")
  9099. },
  9100. {
  9101. name: "Human Scale",
  9102. height: math.unit(6, "feet")
  9103. },
  9104. {
  9105. name: "Librarian",
  9106. height: math.unit(50, "feet"),
  9107. default: true
  9108. },
  9109. {
  9110. name: "Immense",
  9111. height: math.unit(200, "miles")
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(180, "lbs"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/danni-rosie/front.svg",
  9124. extra: 1260 / 1128,
  9125. bottom: 0.022
  9126. }
  9127. },
  9128. },
  9129. [
  9130. {
  9131. name: "Micro",
  9132. height: math.unit(2, "inches"),
  9133. default: true
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(5 + 9 / 12, "feet"),
  9142. weight: math.unit(220, "lb"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/samantha-kruse/front.svg",
  9146. extra: (985 / 935),
  9147. bottom: 0.03
  9148. }
  9149. },
  9150. frontUndressed: {
  9151. height: math.unit(5 + 9 / 12, "feet"),
  9152. weight: math.unit(220, "lb"),
  9153. name: "Front (Undressed)",
  9154. image: {
  9155. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9156. extra: (973 / 923),
  9157. bottom: 0.025
  9158. }
  9159. },
  9160. fat: {
  9161. height: math.unit(5 + 9 / 12, "feet"),
  9162. weight: math.unit(900, "lb"),
  9163. name: "Front (Fat)",
  9164. image: {
  9165. source: "./media/characters/samantha-kruse/fat.svg",
  9166. extra: 2688 / 2561
  9167. }
  9168. },
  9169. },
  9170. [
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(5 + 9 / 12, "feet"),
  9174. default: true
  9175. }
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9180. {
  9181. back: {
  9182. height: math.unit(5 + 4 / 12, "feet"),
  9183. weight: math.unit(4963, "lb"),
  9184. name: "Back",
  9185. image: {
  9186. source: "./media/characters/amelia-rosie/back.svg",
  9187. extra: 1113 / 963,
  9188. bottom: 0.01
  9189. }
  9190. },
  9191. },
  9192. [
  9193. {
  9194. name: "Level 0",
  9195. height: math.unit(5 + 4 / 12, "feet")
  9196. },
  9197. {
  9198. name: "Level 1",
  9199. height: math.unit(164597, "feet"),
  9200. default: true
  9201. },
  9202. {
  9203. name: "Level 2",
  9204. height: math.unit(956243, "miles")
  9205. },
  9206. {
  9207. name: "Level 3",
  9208. height: math.unit(29421709423, "miles")
  9209. },
  9210. {
  9211. name: "Level 4",
  9212. height: math.unit(154, "lightyears")
  9213. },
  9214. {
  9215. name: "Level 5",
  9216. height: math.unit(4738272, "lightyears")
  9217. },
  9218. {
  9219. name: "Level 6",
  9220. height: math.unit(145787152896, "lightyears")
  9221. },
  9222. ]
  9223. ))
  9224. characterMakers.push(() => makeCharacter(
  9225. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9226. {
  9227. front: {
  9228. height: math.unit(5 + 11 / 12, "feet"),
  9229. weight: math.unit(65, "kg"),
  9230. name: "Front",
  9231. image: {
  9232. source: "./media/characters/rook-kitara/front.svg",
  9233. extra: 1347 / 1274,
  9234. bottom: 0.005
  9235. }
  9236. },
  9237. },
  9238. [
  9239. {
  9240. name: "Totally Unfair",
  9241. height: math.unit(1.8, "mm")
  9242. },
  9243. {
  9244. name: "Lap Rookie",
  9245. height: math.unit(1.4, "feet")
  9246. },
  9247. {
  9248. name: "Normal",
  9249. height: math.unit(5 + 11 / 12, "feet"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "How Did This Happen",
  9254. height: math.unit(80, "miles")
  9255. }
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9260. {
  9261. front: {
  9262. height: math.unit(7, "feet"),
  9263. weight: math.unit(300, "lb"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/pisces/front.svg",
  9267. extra: 2255 / 2115,
  9268. bottom: 0.03
  9269. }
  9270. },
  9271. back: {
  9272. height: math.unit(7, "feet"),
  9273. weight: math.unit(300, "lb"),
  9274. name: "Back",
  9275. image: {
  9276. source: "./media/characters/pisces/back.svg",
  9277. extra: 2146 / 2055,
  9278. bottom: 0.04
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(7, "feet"),
  9286. default: true
  9287. },
  9288. {
  9289. name: "Swimming Pool",
  9290. height: math.unit(12.2, "meters")
  9291. },
  9292. {
  9293. name: "Olympic Swimming Pool",
  9294. height: math.unit(56.3, "meters")
  9295. },
  9296. {
  9297. name: "Lake Superior",
  9298. height: math.unit(93900, "meters")
  9299. },
  9300. {
  9301. name: "Mediterranean Sea",
  9302. height: math.unit(644457, "meters")
  9303. },
  9304. {
  9305. name: "World's Oceans",
  9306. height: math.unit(4567491, "meters")
  9307. },
  9308. ]
  9309. ))
  9310. characterMakers.push(() => makeCharacter(
  9311. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9312. {
  9313. front: {
  9314. height: math.unit(2.3, "meters"),
  9315. weight: math.unit(120, "kg"),
  9316. name: "Front",
  9317. image: {
  9318. source: "./media/characters/zelas/front.svg"
  9319. }
  9320. },
  9321. side: {
  9322. height: math.unit(2.3, "meters"),
  9323. weight: math.unit(120, "kg"),
  9324. name: "Side",
  9325. image: {
  9326. source: "./media/characters/zelas/side.svg"
  9327. }
  9328. },
  9329. back: {
  9330. height: math.unit(2.3, "meters"),
  9331. weight: math.unit(120, "kg"),
  9332. name: "Back",
  9333. image: {
  9334. source: "./media/characters/zelas/back.svg"
  9335. }
  9336. },
  9337. foot: {
  9338. height: math.unit(1.116, "feet"),
  9339. name: "Foot",
  9340. image: {
  9341. source: "./media/characters/zelas/foot.svg"
  9342. }
  9343. },
  9344. },
  9345. [
  9346. {
  9347. name: "Normal",
  9348. height: math.unit(2.3, "meters")
  9349. },
  9350. {
  9351. name: "Macro",
  9352. height: math.unit(30, "meters"),
  9353. default: true
  9354. },
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(1, "inch"),
  9362. weight: math.unit(0.21, "grams"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/talbot/front.svg",
  9366. extra: 594 / 544
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(1, "inch"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9380. {
  9381. front: {
  9382. height: math.unit(3 + 3 / 12, "feet"),
  9383. weight: math.unit(51.8, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/fliss/front.svg",
  9387. extra: 840 / 640
  9388. }
  9389. },
  9390. },
  9391. [
  9392. {
  9393. name: "Teeny Tiny",
  9394. height: math.unit(1, "mm")
  9395. },
  9396. {
  9397. name: "Small",
  9398. height: math.unit(1, "inch"),
  9399. default: true
  9400. },
  9401. {
  9402. name: "Standard Sylveon",
  9403. height: math.unit(3 + 3 / 12, "feet")
  9404. },
  9405. {
  9406. name: "Large Nuisance",
  9407. height: math.unit(33, "feet")
  9408. },
  9409. {
  9410. name: "City Filler",
  9411. height: math.unit(3000, "feet")
  9412. },
  9413. {
  9414. name: "New Horizon",
  9415. height: math.unit(6000, "miles")
  9416. },
  9417. ]
  9418. ))
  9419. characterMakers.push(() => makeCharacter(
  9420. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9421. {
  9422. front: {
  9423. height: math.unit(5, "cm"),
  9424. weight: math.unit(1.94, "g"),
  9425. name: "Front",
  9426. image: {
  9427. source: "./media/characters/fleta/front.svg",
  9428. extra: 835 / 803
  9429. }
  9430. },
  9431. back: {
  9432. height: math.unit(5, "cm"),
  9433. weight: math.unit(1.94, "g"),
  9434. name: "Back",
  9435. image: {
  9436. source: "./media/characters/fleta/back.svg",
  9437. extra: 835 / 803
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Micro",
  9444. height: math.unit(5, "cm"),
  9445. default: true
  9446. },
  9447. ]
  9448. ))
  9449. characterMakers.push(() => makeCharacter(
  9450. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9451. {
  9452. front: {
  9453. height: math.unit(6, "feet"),
  9454. weight: math.unit(225, "lb"),
  9455. name: "Front",
  9456. image: {
  9457. source: "./media/characters/dominic/front.svg",
  9458. extra: 1770 / 1620,
  9459. bottom: 0.025
  9460. }
  9461. },
  9462. back: {
  9463. height: math.unit(6, "feet"),
  9464. weight: math.unit(225, "lb"),
  9465. name: "Back",
  9466. image: {
  9467. source: "./media/characters/dominic/back.svg",
  9468. extra: 1745 / 1620,
  9469. bottom: 0.065
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Nano",
  9476. height: math.unit(0.1, "mm")
  9477. },
  9478. {
  9479. name: "Micro-",
  9480. height: math.unit(1, "mm")
  9481. },
  9482. {
  9483. name: "Micro",
  9484. height: math.unit(4, "inches")
  9485. },
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(6 + 4 / 12, "feet"),
  9489. default: true
  9490. },
  9491. {
  9492. name: "Macro",
  9493. height: math.unit(115, "feet")
  9494. },
  9495. {
  9496. name: "Macro+",
  9497. height: math.unit(955, "feet")
  9498. },
  9499. {
  9500. name: "Megamacro",
  9501. height: math.unit(8990, "feet")
  9502. },
  9503. {
  9504. name: "Gigmacro",
  9505. height: math.unit(9310, "miles")
  9506. },
  9507. {
  9508. name: "Teramacro",
  9509. height: math.unit(1567005010, "miles")
  9510. },
  9511. {
  9512. name: "Examacro",
  9513. height: math.unit(1425, "parsecs")
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(400, "feet"),
  9522. weight: math.unit(44444444, "lb"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/major-colonel/front.svg"
  9526. }
  9527. },
  9528. back: {
  9529. height: math.unit(400, "feet"),
  9530. weight: math.unit(44444444, "lb"),
  9531. name: "Back",
  9532. image: {
  9533. source: "./media/characters/major-colonel/back.svg"
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Macro",
  9540. height: math.unit(400, "feet"),
  9541. default: true
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9547. {
  9548. catFront: {
  9549. height: math.unit(6, "feet"),
  9550. weight: math.unit(120, "lb"),
  9551. name: "Front (Cat Side)",
  9552. image: {
  9553. source: "./media/characters/axel-lycan/cat-front.svg",
  9554. extra: 430 / 402,
  9555. bottom: 43 / 472.35
  9556. }
  9557. },
  9558. catBack: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(120, "lb"),
  9561. name: "Back (Cat Side)",
  9562. image: {
  9563. source: "./media/characters/axel-lycan/cat-back.svg",
  9564. extra: 447 / 419,
  9565. bottom: 23.3 / 469
  9566. }
  9567. },
  9568. wolfFront: {
  9569. height: math.unit(6, "feet"),
  9570. weight: math.unit(120, "lb"),
  9571. name: "Front (Wolf Side)",
  9572. image: {
  9573. source: "./media/characters/axel-lycan/wolf-front.svg",
  9574. extra: 485 / 456,
  9575. bottom: 19 / 504
  9576. }
  9577. },
  9578. wolfBack: {
  9579. height: math.unit(6, "feet"),
  9580. weight: math.unit(120, "lb"),
  9581. name: "Back (Wolf Side)",
  9582. image: {
  9583. source: "./media/characters/axel-lycan/wolf-back.svg",
  9584. extra: 475 / 438,
  9585. bottom: 39.2 / 514
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(1, "km"),
  9593. default: true
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9599. {
  9600. front: {
  9601. height: math.unit(5 + 9 / 12, "feet"),
  9602. weight: math.unit(175, "lb"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/vanrel-hyena/front.svg",
  9606. extra: 1086 / 1010,
  9607. bottom: 0.04
  9608. }
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Normal",
  9614. height: math.unit(5 + 9 / 12, "feet"),
  9615. default: true
  9616. },
  9617. ]
  9618. ))
  9619. characterMakers.push(() => makeCharacter(
  9620. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9621. {
  9622. front: {
  9623. height: math.unit(6, "feet"),
  9624. weight: math.unit(103, "lb"),
  9625. name: "Front",
  9626. image: {
  9627. source: "./media/characters/abbott-absol/front.svg",
  9628. extra: 2010 / 1842
  9629. }
  9630. },
  9631. },
  9632. [
  9633. {
  9634. name: "Megamicro",
  9635. height: math.unit(0.1, "mm")
  9636. },
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(1, "inch")
  9640. },
  9641. {
  9642. name: "Normal",
  9643. height: math.unit(6, "feet"),
  9644. default: true
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9650. {
  9651. front: {
  9652. height: math.unit(6, "feet"),
  9653. weight: math.unit(264, "lb"),
  9654. name: "Front",
  9655. image: {
  9656. source: "./media/characters/hector/front.svg",
  9657. extra: 2280 / 2130,
  9658. bottom: 0.07
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(12.25, "foot"),
  9666. default: true
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(160, "feet")
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(6, "feet"),
  9679. weight: math.unit(150, "lb"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/sal/front.svg",
  9683. extra: 1846 / 1699,
  9684. bottom: 0.04
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Megamacro",
  9691. height: math.unit(10, "miles"),
  9692. default: true
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9698. {
  9699. front: {
  9700. height: math.unit(3, "meters"),
  9701. weight: math.unit(450, "kg"),
  9702. name: "front",
  9703. image: {
  9704. source: "./media/characters/ranger/front.svg",
  9705. extra: 2401 / 2243,
  9706. bottom: 0.05
  9707. }
  9708. },
  9709. },
  9710. [
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(3, "meters"),
  9714. default: true
  9715. },
  9716. ]
  9717. ))
  9718. characterMakers.push(() => makeCharacter(
  9719. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9720. {
  9721. front: {
  9722. height: math.unit(14, "feet"),
  9723. weight: math.unit(800, "kg"),
  9724. name: "Front",
  9725. image: {
  9726. source: "./media/characters/theresa/front.svg",
  9727. extra: 3575 / 3346,
  9728. bottom: 0.03
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(14, "feet"),
  9736. default: true
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9742. {
  9743. front: {
  9744. height: math.unit(6, "feet"),
  9745. weight: math.unit(3, "kg"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/ine/front.svg",
  9749. extra: 678 / 539,
  9750. bottom: 0.023
  9751. }
  9752. },
  9753. },
  9754. [
  9755. {
  9756. name: "Normal",
  9757. height: math.unit(2.265, "feet"),
  9758. default: true
  9759. },
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9764. {
  9765. front: {
  9766. height: math.unit(5, "feet"),
  9767. weight: math.unit(30, "kg"),
  9768. name: "Front",
  9769. image: {
  9770. source: "./media/characters/vial/front.svg",
  9771. extra: 1365 / 1277,
  9772. bottom: 0.04
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(5, "feet"),
  9780. default: true
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9786. {
  9787. side: {
  9788. height: math.unit(3.4, "meters"),
  9789. weight: math.unit(1000, "lb"),
  9790. name: "Side",
  9791. image: {
  9792. source: "./media/characters/rovoska/side.svg",
  9793. extra: 4403 / 1515
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Normal",
  9800. height: math.unit(3.4, "meters"),
  9801. default: true
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9807. {
  9808. front: {
  9809. height: math.unit(8, "feet"),
  9810. weight: math.unit(315, "lb"),
  9811. name: "Front",
  9812. image: {
  9813. source: "./media/characters/gunner-rotthbauer/front.svg"
  9814. }
  9815. },
  9816. back: {
  9817. height: math.unit(8, "feet"),
  9818. weight: math.unit(315, "lb"),
  9819. name: "Back",
  9820. image: {
  9821. source: "./media/characters/gunner-rotthbauer/back.svg"
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Micro",
  9828. height: math.unit(3.5, "inches")
  9829. },
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(8, "feet"),
  9833. default: true
  9834. },
  9835. {
  9836. name: "Macro",
  9837. height: math.unit(250, "feet")
  9838. },
  9839. {
  9840. name: "Megamacro",
  9841. height: math.unit(1, "AU")
  9842. },
  9843. ]
  9844. ))
  9845. characterMakers.push(() => makeCharacter(
  9846. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9847. {
  9848. front: {
  9849. height: math.unit(5 + 5 / 12, "feet"),
  9850. weight: math.unit(140, "lb"),
  9851. name: "Front",
  9852. image: {
  9853. source: "./media/characters/allatia/front.svg",
  9854. extra: 1227 / 1180,
  9855. bottom: 0.027
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(5 + 5 / 12, "feet")
  9863. },
  9864. {
  9865. name: "Macro",
  9866. height: math.unit(250, "feet"),
  9867. default: true
  9868. },
  9869. {
  9870. name: "Megamacro",
  9871. height: math.unit(8, "miles")
  9872. }
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9877. {
  9878. front: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(120, "lb"),
  9881. name: "Front",
  9882. image: {
  9883. source: "./media/characters/tene/front.svg",
  9884. extra: 1728 / 1578,
  9885. bottom: 0.022
  9886. }
  9887. },
  9888. stomping: {
  9889. height: math.unit(2.025, "meters"),
  9890. weight: math.unit(120, "lb"),
  9891. name: "Stomping",
  9892. image: {
  9893. source: "./media/characters/tene/stomping.svg",
  9894. extra: 938 / 873,
  9895. bottom: 0.01
  9896. }
  9897. },
  9898. sitting: {
  9899. height: math.unit(1, "meter"),
  9900. weight: math.unit(120, "lb"),
  9901. name: "Sitting",
  9902. image: {
  9903. source: "./media/characters/tene/sitting.svg",
  9904. extra: 437 / 415,
  9905. bottom: 0.1
  9906. }
  9907. },
  9908. feral: {
  9909. height: math.unit(3.9, "feet"),
  9910. weight: math.unit(250, "lb"),
  9911. name: "Feral",
  9912. image: {
  9913. source: "./media/characters/tene/feral.svg",
  9914. extra: 717 / 458,
  9915. bottom: 0.179
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(6, "feet")
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(300, "feet"),
  9927. default: true
  9928. },
  9929. {
  9930. name: "Megamacro",
  9931. height: math.unit(5, "miles")
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9937. {
  9938. side: {
  9939. height: math.unit(6, "feet"),
  9940. name: "Side",
  9941. image: {
  9942. source: "./media/characters/evander/side.svg",
  9943. extra: 877 / 477
  9944. }
  9945. },
  9946. },
  9947. [
  9948. {
  9949. name: "Normal",
  9950. height: math.unit(0.83, "meters"),
  9951. default: true
  9952. },
  9953. ]
  9954. ))
  9955. characterMakers.push(() => makeCharacter(
  9956. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9957. {
  9958. front: {
  9959. height: math.unit(12, "feet"),
  9960. weight: math.unit(1000, "lb"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9964. extra: 1762 / 1611
  9965. }
  9966. },
  9967. back: {
  9968. height: math.unit(12, "feet"),
  9969. weight: math.unit(1000, "lb"),
  9970. name: "Back",
  9971. image: {
  9972. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9973. extra: 1762 / 1611
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(12, "feet"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Kaiju",
  9985. height: math.unit(150, "feet")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(150, "lb"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/zero-alurus/front.svg"
  9998. }
  9999. },
  10000. back: {
  10001. height: math.unit(6, "feet"),
  10002. weight: math.unit(150, "lb"),
  10003. name: "Back",
  10004. image: {
  10005. source: "./media/characters/zero-alurus/back.svg"
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(5 + 10 / 12, "feet")
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(60, "feet"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Macro+",
  10021. height: math.unit(450, "feet")
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(6, "feet"),
  10030. weight: math.unit(200, "lb"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/mega-shi/front.svg",
  10034. extra: 1279 / 1250,
  10035. bottom: 0.02
  10036. }
  10037. },
  10038. back: {
  10039. height: math.unit(6, "feet"),
  10040. weight: math.unit(200, "lb"),
  10041. name: "Back",
  10042. image: {
  10043. source: "./media/characters/mega-shi/back.svg",
  10044. extra: 1279 / 1250,
  10045. bottom: 0.02
  10046. }
  10047. },
  10048. },
  10049. [
  10050. {
  10051. name: "Micro",
  10052. height: math.unit(16 + 6 / 12, "feet")
  10053. },
  10054. {
  10055. name: "Third Dimension",
  10056. height: math.unit(40, "meters")
  10057. },
  10058. {
  10059. name: "Normal",
  10060. height: math.unit(660, "feet"),
  10061. default: true
  10062. },
  10063. {
  10064. name: "Megamacro",
  10065. height: math.unit(10, "miles")
  10066. },
  10067. {
  10068. name: "Planetary Launch",
  10069. height: math.unit(500, "miles")
  10070. },
  10071. {
  10072. name: "Interstellar",
  10073. height: math.unit(1e9, "miles")
  10074. },
  10075. {
  10076. name: "Leaving the Universe",
  10077. height: math.unit(1, "gigaparsec")
  10078. },
  10079. {
  10080. name: "Travelling Universes",
  10081. height: math.unit(30e15, "parsecs")
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10087. {
  10088. front: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(150, "lb"),
  10091. name: "Front",
  10092. image: {
  10093. source: "./media/characters/odyssey/front.svg",
  10094. extra: 1782 / 1582,
  10095. bottom: 0.01
  10096. }
  10097. },
  10098. side: {
  10099. height: math.unit(5.7, "feet"),
  10100. weight: math.unit(140, "lb"),
  10101. name: "Side",
  10102. image: {
  10103. source: "./media/characters/odyssey/side.svg",
  10104. extra: 6462 / 5700
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(5 + 4 / 12, "feet")
  10112. },
  10113. {
  10114. name: "Macro",
  10115. height: math.unit(1, "km")
  10116. },
  10117. {
  10118. name: "Megamacro",
  10119. height: math.unit(3000, "km")
  10120. },
  10121. {
  10122. name: "Gigamacro",
  10123. height: math.unit(1, "AU"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Omniversal",
  10128. height: math.unit(100e14, "lightyears")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(300, "lb"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/mekuto/front.svg",
  10141. extra: 921 / 832,
  10142. bottom: 0.03
  10143. }
  10144. },
  10145. hand: {
  10146. height: math.unit(6 / 10.24, "feet"),
  10147. name: "Hand",
  10148. image: {
  10149. source: "./media/characters/mekuto/hand.svg"
  10150. }
  10151. },
  10152. foot: {
  10153. height: math.unit(6 / 5.05, "feet"),
  10154. name: "Foot",
  10155. image: {
  10156. source: "./media/characters/mekuto/foot.svg"
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Minimicro",
  10163. height: math.unit(0.2, "inches")
  10164. },
  10165. {
  10166. name: "Micro",
  10167. height: math.unit(1.5, "inches")
  10168. },
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(5 + 11 / 12, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Minimacro",
  10176. height: math.unit(17 + 9 / 12, "feet")
  10177. },
  10178. {
  10179. name: "Macro",
  10180. height: math.unit(177.5, "feet")
  10181. },
  10182. {
  10183. name: "Megamacro",
  10184. height: math.unit(152, "miles")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(6.5, "inches"),
  10193. weight: math.unit(13, "oz"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/dafydd-tomos/front.svg",
  10197. extra: 2990 / 2603,
  10198. bottom: 0.03
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Micro",
  10205. height: math.unit(6.5, "inches"),
  10206. default: true
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(6, "feet"),
  10215. weight: math.unit(150, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/splinter/front.svg",
  10219. extra: 2990 / 2882,
  10220. bottom: 0.04
  10221. }
  10222. },
  10223. back: {
  10224. height: math.unit(6, "feet"),
  10225. weight: math.unit(150, "lb"),
  10226. name: "Back",
  10227. image: {
  10228. source: "./media/characters/splinter/back.svg",
  10229. extra: 2990 / 2882,
  10230. bottom: 0.04
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(6, "feet")
  10238. },
  10239. {
  10240. name: "Macro",
  10241. height: math.unit(230, "meters"),
  10242. default: true
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(4 + 10 / 12, "feet"),
  10251. weight: math.unit(480, "lb"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/snow-gabumon/front.svg",
  10255. extra: 1140 / 963,
  10256. bottom: 0.058
  10257. }
  10258. },
  10259. back: {
  10260. height: math.unit(4 + 10 / 12, "feet"),
  10261. weight: math.unit(480, "lb"),
  10262. name: "Back",
  10263. image: {
  10264. source: "./media/characters/snow-gabumon/back.svg",
  10265. extra: 1115 / 962,
  10266. bottom: 0.041
  10267. }
  10268. },
  10269. frontUndresed: {
  10270. height: math.unit(4 + 10 / 12, "feet"),
  10271. weight: math.unit(480, "lb"),
  10272. name: "Front (Undressed)",
  10273. image: {
  10274. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10275. extra: 1061 / 960,
  10276. bottom: 0.045
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Micro",
  10283. height: math.unit(1, "inch")
  10284. },
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(4 + 10 / 12, "feet"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(200, "feet")
  10293. },
  10294. {
  10295. name: "Megamacro",
  10296. height: math.unit(120, "miles")
  10297. },
  10298. {
  10299. name: "Gigamacro",
  10300. height: math.unit(9800, "miles")
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(1.7, "meters"),
  10309. weight: math.unit(140, "lb"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/moody/front.svg",
  10313. extra: 3226 / 3007,
  10314. bottom: 0.087
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Micro",
  10321. height: math.unit(1, "mm")
  10322. },
  10323. {
  10324. name: "Normal",
  10325. height: math.unit(1.7, "meters"),
  10326. default: true
  10327. },
  10328. {
  10329. name: "Macro",
  10330. height: math.unit(80, "meters")
  10331. },
  10332. {
  10333. name: "Macro+",
  10334. height: math.unit(500, "meters")
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(6, "feet"),
  10343. weight: math.unit(150, "lb"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/zyas/front.svg",
  10347. extra: 1180 / 1120,
  10348. bottom: 0.045
  10349. }
  10350. },
  10351. },
  10352. [
  10353. {
  10354. name: "Normal",
  10355. height: math.unit(10, "feet"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Macro",
  10360. height: math.unit(500, "feet")
  10361. },
  10362. {
  10363. name: "Megamacro",
  10364. height: math.unit(5, "miles")
  10365. },
  10366. {
  10367. name: "Teramacro",
  10368. height: math.unit(150000, "miles")
  10369. },
  10370. ]
  10371. ))
  10372. characterMakers.push(() => makeCharacter(
  10373. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10374. {
  10375. front: {
  10376. height: math.unit(6, "feet"),
  10377. weight: math.unit(150, "lb"),
  10378. name: "Front",
  10379. image: {
  10380. source: "./media/characters/cuon/front.svg",
  10381. extra: 1390 / 1320,
  10382. bottom: 0.008
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(3, "inches")
  10390. },
  10391. {
  10392. name: "Normal",
  10393. height: math.unit(18 + 9 / 12, "feet"),
  10394. default: true
  10395. },
  10396. {
  10397. name: "Macro",
  10398. height: math.unit(360, "feet")
  10399. },
  10400. {
  10401. name: "Megamacro",
  10402. height: math.unit(360, "miles")
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(2.4, "meters"),
  10411. weight: math.unit(70, "kg"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/nyanuxk/front.svg",
  10415. extra: 1172 / 1084,
  10416. bottom: 0.065
  10417. }
  10418. },
  10419. side: {
  10420. height: math.unit(2.4, "meters"),
  10421. weight: math.unit(70, "kg"),
  10422. name: "Side",
  10423. image: {
  10424. source: "./media/characters/nyanuxk/side.svg",
  10425. extra: 1190 / 1132,
  10426. bottom: 0.007
  10427. }
  10428. },
  10429. back: {
  10430. height: math.unit(2.4, "meters"),
  10431. weight: math.unit(70, "kg"),
  10432. name: "Back",
  10433. image: {
  10434. source: "./media/characters/nyanuxk/back.svg",
  10435. extra: 1200 / 1141,
  10436. bottom: 0.015
  10437. }
  10438. },
  10439. foot: {
  10440. height: math.unit(0.52, "meters"),
  10441. name: "Foot",
  10442. image: {
  10443. source: "./media/characters/nyanuxk/foot.svg"
  10444. }
  10445. },
  10446. },
  10447. [
  10448. {
  10449. name: "Micro",
  10450. height: math.unit(2, "cm")
  10451. },
  10452. {
  10453. name: "Normal",
  10454. height: math.unit(2.4, "meters"),
  10455. default: true
  10456. },
  10457. {
  10458. name: "Smaller Macro",
  10459. height: math.unit(120, "meters")
  10460. },
  10461. {
  10462. name: "Bigger Macro",
  10463. height: math.unit(1.2, "km")
  10464. },
  10465. {
  10466. name: "Megamacro",
  10467. height: math.unit(15, "kilometers")
  10468. },
  10469. {
  10470. name: "Gigamacro",
  10471. height: math.unit(2000, "km")
  10472. },
  10473. {
  10474. name: "Teramacro",
  10475. height: math.unit(500000, "km")
  10476. },
  10477. ]
  10478. ))
  10479. characterMakers.push(() => makeCharacter(
  10480. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10481. {
  10482. side: {
  10483. height: math.unit(6, "feet"),
  10484. name: "Side",
  10485. image: {
  10486. source: "./media/characters/ailbhe/side.svg",
  10487. extra: 757 / 464,
  10488. bottom: 0.041
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Normal",
  10495. height: math.unit(1.07, "meters"),
  10496. default: true
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(120, "kg"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/zevulfius/front.svg",
  10509. extra: 965 / 903
  10510. }
  10511. },
  10512. side: {
  10513. height: math.unit(6, "feet"),
  10514. weight: math.unit(120, "kg"),
  10515. name: "Side",
  10516. image: {
  10517. source: "./media/characters/zevulfius/side.svg",
  10518. extra: 939 / 900
  10519. }
  10520. },
  10521. back: {
  10522. height: math.unit(6, "feet"),
  10523. weight: math.unit(120, "kg"),
  10524. name: "Back",
  10525. image: {
  10526. source: "./media/characters/zevulfius/back.svg",
  10527. extra: 918 / 854,
  10528. bottom: 0.005
  10529. }
  10530. },
  10531. foot: {
  10532. height: math.unit(6 / 3.72, "feet"),
  10533. name: "Foot",
  10534. image: {
  10535. source: "./media/characters/zevulfius/foot.svg"
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Macro",
  10542. height: math.unit(750, "meters")
  10543. },
  10544. {
  10545. name: "Megamacro",
  10546. height: math.unit(20, "km"),
  10547. default: true
  10548. },
  10549. {
  10550. name: "Gigamacro",
  10551. height: math.unit(2000, "km")
  10552. },
  10553. {
  10554. name: "Teramacro",
  10555. height: math.unit(250000, "km")
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(100, "feet"),
  10564. weight: math.unit(350, "kg"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/rikes/front.svg",
  10568. extra: 1565 / 1483,
  10569. bottom: 0.017
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Macro",
  10576. height: math.unit(100, "feet"),
  10577. default: true
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10583. {
  10584. front: {
  10585. height: math.unit(8, "feet"),
  10586. weight: math.unit(356, "lb"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/adam-silver-mane/front.svg",
  10590. extra: 1036/937,
  10591. bottom: 63/1099
  10592. }
  10593. },
  10594. side: {
  10595. height: math.unit(8, "feet"),
  10596. weight: math.unit(356, "lb"),
  10597. name: "Side",
  10598. image: {
  10599. source: "./media/characters/adam-silver-mane/side.svg",
  10600. extra: 997/901,
  10601. bottom: 59/1056
  10602. }
  10603. },
  10604. frontNsfw: {
  10605. height: math.unit(8, "feet"),
  10606. weight: math.unit(356, "lb"),
  10607. name: "Front (NSFW)",
  10608. image: {
  10609. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10610. extra: 1036/937,
  10611. bottom: 63/1099
  10612. }
  10613. },
  10614. sideNsfw: {
  10615. height: math.unit(8, "feet"),
  10616. weight: math.unit(356, "lb"),
  10617. name: "Side (NSFW)",
  10618. image: {
  10619. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10620. extra: 997/901,
  10621. bottom: 59/1056
  10622. }
  10623. },
  10624. dick: {
  10625. height: math.unit(2.1, "feet"),
  10626. name: "Dick",
  10627. image: {
  10628. source: "./media/characters/adam-silver-mane/dick.svg"
  10629. }
  10630. },
  10631. taur: {
  10632. height: math.unit(16, "feet"),
  10633. weight: math.unit(1500, "kg"),
  10634. name: "Taur",
  10635. image: {
  10636. source: "./media/characters/adam-silver-mane/taur.svg",
  10637. extra: 1713 / 1571,
  10638. bottom: 0.01
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(8, "feet")
  10646. },
  10647. {
  10648. name: "Minimacro",
  10649. height: math.unit(80, "feet")
  10650. },
  10651. {
  10652. name: "MDA",
  10653. height: math.unit(80, "meters")
  10654. },
  10655. {
  10656. name: "Macro",
  10657. height: math.unit(800, "feet"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(8000, "feet")
  10663. },
  10664. {
  10665. name: "Gigamacro",
  10666. height: math.unit(800, "miles")
  10667. },
  10668. {
  10669. name: "Teramacro",
  10670. height: math.unit(80000, "miles")
  10671. },
  10672. {
  10673. name: "Celestial",
  10674. height: math.unit(8e6, "miles")
  10675. },
  10676. {
  10677. name: "Star Dragon",
  10678. height: math.unit(800000, "parsecs")
  10679. },
  10680. {
  10681. name: "Godly",
  10682. height: math.unit(800, "teraparsecs")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(150, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/ky'owin/front.svg",
  10695. extra: 3888 / 3068,
  10696. bottom: 0.015
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(6 + 8 / 12, "feet")
  10704. },
  10705. {
  10706. name: "Large",
  10707. height: math.unit(68, "feet")
  10708. },
  10709. {
  10710. name: "Macro",
  10711. height: math.unit(132, "feet")
  10712. },
  10713. {
  10714. name: "Macro+",
  10715. height: math.unit(340, "feet")
  10716. },
  10717. {
  10718. name: "Macro++",
  10719. height: math.unit(680, "feet"),
  10720. default: true
  10721. },
  10722. {
  10723. name: "Megamacro",
  10724. height: math.unit(1, "mile")
  10725. },
  10726. {
  10727. name: "Megamacro+",
  10728. height: math.unit(10, "miles")
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(4, "feet"),
  10737. weight: math.unit(50, "lb"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/mal/front.svg",
  10741. extra: 785 / 724,
  10742. bottom: 0.07
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Micro",
  10749. height: math.unit(4, "inches")
  10750. },
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(4, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Macro",
  10758. height: math.unit(200, "feet")
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(6, "feet"),
  10767. weight: math.unit(150, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/jordan-deware/front.svg",
  10771. extra: 1191 / 1012
  10772. }
  10773. },
  10774. },
  10775. [
  10776. {
  10777. name: "Nano",
  10778. height: math.unit(0.01, "mm")
  10779. },
  10780. {
  10781. name: "Minimicro",
  10782. height: math.unit(1, "mm")
  10783. },
  10784. {
  10785. name: "Micro",
  10786. height: math.unit(0.5, "inches")
  10787. },
  10788. {
  10789. name: "Normal",
  10790. height: math.unit(4, "feet"),
  10791. default: true
  10792. },
  10793. {
  10794. name: "Minimacro",
  10795. height: math.unit(40, "meters")
  10796. },
  10797. {
  10798. name: "Small Macro",
  10799. height: math.unit(400, "meters")
  10800. },
  10801. {
  10802. name: "Macro",
  10803. height: math.unit(4, "miles")
  10804. },
  10805. {
  10806. name: "Megamacro",
  10807. height: math.unit(40, "miles")
  10808. },
  10809. {
  10810. name: "Megamacro+",
  10811. height: math.unit(400, "miles")
  10812. },
  10813. {
  10814. name: "Gigamacro",
  10815. height: math.unit(400000, "miles")
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10821. {
  10822. side: {
  10823. height: math.unit(6, "feet"),
  10824. weight: math.unit(150, "lb"),
  10825. name: "Side",
  10826. image: {
  10827. source: "./media/characters/kimiko/side.svg",
  10828. extra: 600 / 358
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Normal",
  10835. height: math.unit(15, "feet"),
  10836. default: true
  10837. },
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(220, "feet")
  10841. },
  10842. {
  10843. name: "Macro+",
  10844. height: math.unit(1450, "feet")
  10845. },
  10846. {
  10847. name: "Megamacro",
  10848. height: math.unit(11500, "feet")
  10849. },
  10850. {
  10851. name: "Gigamacro",
  10852. height: math.unit(9500, "miles")
  10853. },
  10854. {
  10855. name: "Teramacro",
  10856. height: math.unit(2208005005, "miles")
  10857. },
  10858. {
  10859. name: "Examacro",
  10860. height: math.unit(2750, "parsecs")
  10861. },
  10862. {
  10863. name: "Zettamacro",
  10864. height: math.unit(101500, "parsecs")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(6, "feet"),
  10873. weight: math.unit(70, "kg"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/andrew-sleepy/front.svg"
  10877. }
  10878. },
  10879. side: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(70, "kg"),
  10882. name: "Side",
  10883. image: {
  10884. source: "./media/characters/andrew-sleepy/side.svg"
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Micro",
  10891. height: math.unit(1, "mm"),
  10892. default: true
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10898. {
  10899. front: {
  10900. height: math.unit(6, "feet"),
  10901. weight: math.unit(150, "lb"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/judio/front.svg",
  10905. extra: 1258 / 1110
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Normal",
  10912. height: math.unit(5 + 6 / 12, "feet")
  10913. },
  10914. {
  10915. name: "Macro",
  10916. height: math.unit(1000, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Megamacro",
  10921. height: math.unit(10, "miles")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(68, "kg"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/nomaxice/front.svg",
  10934. extra: 1498 / 1073,
  10935. bottom: 0.075
  10936. }
  10937. },
  10938. foot: {
  10939. height: math.unit(1.1, "feet"),
  10940. name: "Foot",
  10941. image: {
  10942. source: "./media/characters/nomaxice/foot.svg"
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Micro",
  10949. height: math.unit(8, "cm")
  10950. },
  10951. {
  10952. name: "Norm",
  10953. height: math.unit(1.82, "m")
  10954. },
  10955. {
  10956. name: "Norm+",
  10957. height: math.unit(8.8, "feet")
  10958. },
  10959. {
  10960. name: "Big",
  10961. height: math.unit(8, "meters"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Macro",
  10966. height: math.unit(18, "meters")
  10967. },
  10968. {
  10969. name: "Macro+",
  10970. height: math.unit(88, "meters")
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(12, "feet"),
  10979. weight: math.unit(1.5, "tons"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/dydros/front.svg",
  10983. extra: 863 / 800,
  10984. bottom: 0.015
  10985. }
  10986. },
  10987. back: {
  10988. height: math.unit(12, "feet"),
  10989. weight: math.unit(1.5, "tons"),
  10990. name: "Back",
  10991. image: {
  10992. source: "./media/characters/dydros/back.svg",
  10993. extra: 900 / 843,
  10994. bottom: 0.005
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Normal",
  11001. height: math.unit(12, "feet"),
  11002. default: true
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(100, "kg"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/riggi/front.svg",
  11015. extra: 5787 / 5303
  11016. }
  11017. },
  11018. hyper: {
  11019. height: math.unit(6 * 5 / 3, "feet"),
  11020. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11021. name: "Hyper",
  11022. image: {
  11023. source: "./media/characters/riggi/hyper.svg",
  11024. extra: 3595 / 3485
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Small Macro",
  11031. height: math.unit(50, "feet")
  11032. },
  11033. {
  11034. name: "Default",
  11035. height: math.unit(200, "feet"),
  11036. default: true
  11037. },
  11038. {
  11039. name: "Loom",
  11040. height: math.unit(10000, "feet")
  11041. },
  11042. {
  11043. name: "Cruising Altitude",
  11044. height: math.unit(30000, "feet")
  11045. },
  11046. {
  11047. name: "Megamacro",
  11048. height: math.unit(100, "miles")
  11049. },
  11050. {
  11051. name: "Continent Sized",
  11052. height: math.unit(2800, "miles")
  11053. },
  11054. {
  11055. name: "Earth Sized",
  11056. height: math.unit(8000, "miles")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(250, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/alexi/front.svg",
  11069. extra: 3483 / 3291,
  11070. bottom: 0.04
  11071. }
  11072. },
  11073. back: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(250, "lb"),
  11076. name: "Back",
  11077. image: {
  11078. source: "./media/characters/alexi/back.svg",
  11079. extra: 3533 / 3356,
  11080. bottom: 0.021
  11081. }
  11082. },
  11083. frontTransforming: {
  11084. height: math.unit(8.58, "feet"),
  11085. weight: math.unit(1300, "lb"),
  11086. name: "Transforming",
  11087. image: {
  11088. source: "./media/characters/alexi/front-transforming.svg",
  11089. extra: 437 / 409,
  11090. bottom: 19 / 458.66
  11091. }
  11092. },
  11093. frontTransformed: {
  11094. height: math.unit(12.5, "feet"),
  11095. weight: math.unit(4000, "lb"),
  11096. name: "Transformed",
  11097. image: {
  11098. source: "./media/characters/alexi/front-transformed.svg",
  11099. extra: 639 / 614,
  11100. bottom: 30.55 / 671
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Normal",
  11107. height: math.unit(14, "feet"),
  11108. default: true
  11109. },
  11110. {
  11111. name: "Minimacro",
  11112. height: math.unit(30, "meters")
  11113. },
  11114. {
  11115. name: "Macro",
  11116. height: math.unit(500, "meters")
  11117. },
  11118. {
  11119. name: "Megamacro",
  11120. height: math.unit(9000, "km")
  11121. },
  11122. {
  11123. name: "Teramacro",
  11124. height: math.unit(384000, "km")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/kayroo/front.svg",
  11137. extra: 1153 / 1038,
  11138. bottom: 0.06
  11139. }
  11140. },
  11141. foot: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(150, "lb"),
  11144. name: "Foot",
  11145. image: {
  11146. source: "./media/characters/kayroo/foot.svg"
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(8, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Minimacro",
  11158. height: math.unit(250, "feet")
  11159. },
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(2800, "feet")
  11163. },
  11164. {
  11165. name: "Megamacro",
  11166. height: math.unit(5200, "feet")
  11167. },
  11168. {
  11169. name: "Gigamacro",
  11170. height: math.unit(27000, "feet")
  11171. },
  11172. {
  11173. name: "Omega",
  11174. height: math.unit(45000, "feet")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(18, "feet"),
  11183. weight: math.unit(5800, "lb"),
  11184. name: "Front",
  11185. image: {
  11186. source: "./media/characters/rhys/front.svg",
  11187. extra: 3386 / 3090,
  11188. bottom: 0.07
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(18, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Working Size",
  11200. height: math.unit(200, "feet")
  11201. },
  11202. {
  11203. name: "Demolition Size",
  11204. height: math.unit(2000, "feet")
  11205. },
  11206. {
  11207. name: "Maximum Licensed Size",
  11208. height: math.unit(5, "miles")
  11209. },
  11210. {
  11211. name: "Maximum Observed Size",
  11212. height: math.unit(10, "yottameters")
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11218. {
  11219. front: {
  11220. height: math.unit(6, "feet"),
  11221. weight: math.unit(250, "lb"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/toto/front.svg",
  11225. extra: 527 / 479,
  11226. bottom: 0.05
  11227. }
  11228. },
  11229. },
  11230. [
  11231. {
  11232. name: "Micro",
  11233. height: math.unit(3, "feet")
  11234. },
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(10, "feet")
  11238. },
  11239. {
  11240. name: "Macro",
  11241. height: math.unit(150, "feet"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Megamacro",
  11246. height: math.unit(1200, "feet")
  11247. },
  11248. ]
  11249. ))
  11250. characterMakers.push(() => makeCharacter(
  11251. { name: "King", species: ["lion"], tags: ["anthro"] },
  11252. {
  11253. back: {
  11254. height: math.unit(6, "feet"),
  11255. weight: math.unit(150, "lb"),
  11256. name: "Back",
  11257. image: {
  11258. source: "./media/characters/king/back.svg"
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Micro",
  11265. height: math.unit(2, "inches")
  11266. },
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(8, "feet")
  11270. },
  11271. {
  11272. name: "Macro",
  11273. height: math.unit(200, "feet"),
  11274. default: true
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(50, "miles")
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(11, "feet"),
  11287. weight: math.unit(1400, "lb"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/cordite/front.svg",
  11291. extra: 1919/1827,
  11292. bottom: 40/1959
  11293. }
  11294. },
  11295. side: {
  11296. height: math.unit(11, "feet"),
  11297. weight: math.unit(1400, "lb"),
  11298. name: "Side",
  11299. image: {
  11300. source: "./media/characters/cordite/side.svg",
  11301. extra: 1908/1793,
  11302. bottom: 38/1946
  11303. }
  11304. },
  11305. back: {
  11306. height: math.unit(11, "feet"),
  11307. weight: math.unit(1400, "lb"),
  11308. name: "Back",
  11309. image: {
  11310. source: "./media/characters/cordite/back.svg",
  11311. extra: 1938/1837,
  11312. bottom: 10/1948
  11313. }
  11314. },
  11315. feral: {
  11316. height: math.unit(2, "feet"),
  11317. weight: math.unit(90, "lb"),
  11318. name: "Feral",
  11319. image: {
  11320. source: "./media/characters/cordite/feral.svg",
  11321. extra: 1260 / 755,
  11322. bottom: 0.05
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(11, "feet"),
  11330. default: true
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(6, "feet"),
  11339. weight: math.unit(150, "lb"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/pianostrong/front.svg",
  11343. extra: 6577 / 6254,
  11344. bottom: 0.02
  11345. }
  11346. },
  11347. side: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(150, "lb"),
  11350. name: "Side",
  11351. image: {
  11352. source: "./media/characters/pianostrong/side.svg",
  11353. extra: 6106 / 5730
  11354. }
  11355. },
  11356. back: {
  11357. height: math.unit(6, "feet"),
  11358. weight: math.unit(150, "lb"),
  11359. name: "Back",
  11360. image: {
  11361. source: "./media/characters/pianostrong/back.svg",
  11362. extra: 6085 / 5733,
  11363. bottom: 0.01
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(100, "feet")
  11371. },
  11372. {
  11373. name: "Macro+",
  11374. height: math.unit(300, "feet"),
  11375. default: true
  11376. },
  11377. {
  11378. name: "Macro++",
  11379. height: math.unit(1000, "feet")
  11380. },
  11381. ]
  11382. ))
  11383. characterMakers.push(() => makeCharacter(
  11384. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11385. {
  11386. front: {
  11387. height: math.unit(6, "feet"),
  11388. weight: math.unit(150, "lb"),
  11389. name: "Front",
  11390. image: {
  11391. source: "./media/characters/kona/front.svg",
  11392. extra: 2960 / 2629,
  11393. bottom: 0.005
  11394. }
  11395. },
  11396. },
  11397. [
  11398. {
  11399. name: "Normal",
  11400. height: math.unit(11 + 8 / 12, "feet")
  11401. },
  11402. {
  11403. name: "Macro",
  11404. height: math.unit(850, "feet"),
  11405. default: true
  11406. },
  11407. {
  11408. name: "Macro+",
  11409. height: math.unit(1.5, "km"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(80, "miles")
  11415. },
  11416. {
  11417. name: "Gigamacro",
  11418. height: math.unit(3500, "miles")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11424. {
  11425. side: {
  11426. height: math.unit(1.9, "meters"),
  11427. weight: math.unit(326, "kg"),
  11428. name: "Side",
  11429. image: {
  11430. source: "./media/characters/levi/side.svg",
  11431. extra: 1704 / 1334,
  11432. bottom: 0.02
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(1.9, "meters"),
  11440. default: true
  11441. },
  11442. {
  11443. name: "Macro",
  11444. height: math.unit(20, "meters")
  11445. },
  11446. {
  11447. name: "Macro+",
  11448. height: math.unit(200, "meters")
  11449. },
  11450. {
  11451. name: "Megamacro",
  11452. height: math.unit(2, "km")
  11453. },
  11454. {
  11455. name: "Megamacro+",
  11456. height: math.unit(20, "km")
  11457. },
  11458. {
  11459. name: "Gigamacro",
  11460. height: math.unit(2500, "km")
  11461. },
  11462. {
  11463. name: "Gigamacro+",
  11464. height: math.unit(120000, "km")
  11465. },
  11466. {
  11467. name: "Teramacro",
  11468. height: math.unit(7.77e6, "km")
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(6 + 4/12, "feet"),
  11477. weight: math.unit(190, "lb"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/bmc/front.svg",
  11481. extra: 1626/1472,
  11482. bottom: 79/1705
  11483. }
  11484. },
  11485. back: {
  11486. height: math.unit(6 + 4/12, "feet"),
  11487. weight: math.unit(190, "lb"),
  11488. name: "Back",
  11489. image: {
  11490. source: "./media/characters/bmc/back.svg",
  11491. extra: 1640/1479,
  11492. bottom: 45/1685
  11493. }
  11494. },
  11495. frontArmor: {
  11496. height: math.unit(6 + 4/12, "feet"),
  11497. weight: math.unit(190, "lb"),
  11498. name: "Front-armor",
  11499. image: {
  11500. source: "./media/characters/bmc/front-armor.svg",
  11501. extra: 1538/1468,
  11502. bottom: 79/1617
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Human-sized",
  11509. height: math.unit(6 + 4 / 12, "feet")
  11510. },
  11511. {
  11512. name: "Interactive Size",
  11513. height: math.unit(25, "feet")
  11514. },
  11515. {
  11516. name: "Small",
  11517. height: math.unit(250, "feet")
  11518. },
  11519. {
  11520. name: "Normal",
  11521. height: math.unit(1250, "feet"),
  11522. default: true
  11523. },
  11524. {
  11525. name: "Good Day",
  11526. height: math.unit(88, "miles")
  11527. },
  11528. {
  11529. name: "Largest Measured Size",
  11530. height: math.unit(105.960, "galaxies")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11536. {
  11537. front: {
  11538. height: math.unit(20, "feet"),
  11539. weight: math.unit(2016, "kg"),
  11540. name: "Front",
  11541. image: {
  11542. source: "./media/characters/sven-the-kaiju/front.svg",
  11543. extra: 1277/1250,
  11544. bottom: 35/1312
  11545. }
  11546. },
  11547. mouth: {
  11548. height: math.unit(1.85, "feet"),
  11549. name: "Mouth",
  11550. image: {
  11551. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11552. }
  11553. },
  11554. },
  11555. [
  11556. {
  11557. name: "Fairy",
  11558. height: math.unit(6, "inches")
  11559. },
  11560. {
  11561. name: "Normal",
  11562. height: math.unit(20, "feet"),
  11563. default: true
  11564. },
  11565. {
  11566. name: "Rampage",
  11567. height: math.unit(200, "feet")
  11568. },
  11569. {
  11570. name: "Archfey Forest Guardian",
  11571. height: math.unit(1, "mile")
  11572. },
  11573. ]
  11574. ))
  11575. characterMakers.push(() => makeCharacter(
  11576. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11577. {
  11578. front: {
  11579. height: math.unit(4, "meters"),
  11580. weight: math.unit(2, "tons"),
  11581. name: "Front",
  11582. image: {
  11583. source: "./media/characters/marik/front.svg",
  11584. extra: 1057 / 1003,
  11585. bottom: 0.08
  11586. }
  11587. },
  11588. },
  11589. [
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(4, "meters"),
  11593. default: true
  11594. },
  11595. {
  11596. name: "Macro",
  11597. height: math.unit(20, "meters")
  11598. },
  11599. {
  11600. name: "Megamacro",
  11601. height: math.unit(50, "km")
  11602. },
  11603. {
  11604. name: "Gigamacro",
  11605. height: math.unit(100, "km")
  11606. },
  11607. {
  11608. name: "Alpha Macro",
  11609. height: math.unit(7.88e7, "yottameters")
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11615. {
  11616. front: {
  11617. height: math.unit(6, "feet"),
  11618. weight: math.unit(110, "lb"),
  11619. name: "Front",
  11620. image: {
  11621. source: "./media/characters/mel/front.svg",
  11622. extra: 736 / 617,
  11623. bottom: 0.017
  11624. }
  11625. },
  11626. },
  11627. [
  11628. {
  11629. name: "Pico",
  11630. height: math.unit(3, "pm")
  11631. },
  11632. {
  11633. name: "Nano",
  11634. height: math.unit(3, "nm")
  11635. },
  11636. {
  11637. name: "Micro",
  11638. height: math.unit(0.3, "mm"),
  11639. default: true
  11640. },
  11641. {
  11642. name: "Micro+",
  11643. height: math.unit(3, "mm")
  11644. },
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(5 + 10.5 / 12, "feet")
  11648. },
  11649. ]
  11650. ))
  11651. characterMakers.push(() => makeCharacter(
  11652. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11653. {
  11654. kaiju: {
  11655. height: math.unit(1.75, "meters"),
  11656. weight: math.unit(55, "kg"),
  11657. name: "Kaiju",
  11658. image: {
  11659. source: "./media/characters/lykonous/kaiju.svg",
  11660. extra: 1055 / 946,
  11661. bottom: 0.135
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(2.5, "meters"),
  11669. default: true
  11670. },
  11671. {
  11672. name: "Kaiju Dragon",
  11673. height: math.unit(60, "meters")
  11674. },
  11675. {
  11676. name: "Mega Kaiju",
  11677. height: math.unit(120, "km")
  11678. },
  11679. {
  11680. name: "Giga Kaiju",
  11681. height: math.unit(200, "megameters")
  11682. },
  11683. {
  11684. name: "Terra Kaiju",
  11685. height: math.unit(400, "gigameters")
  11686. },
  11687. {
  11688. name: "Kaiju Dragon God",
  11689. height: math.unit(13000, "exaparsecs")
  11690. },
  11691. ]
  11692. ))
  11693. characterMakers.push(() => makeCharacter(
  11694. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11695. {
  11696. front: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(150, "lb"),
  11699. name: "Front",
  11700. image: {
  11701. source: "./media/characters/blü/front.svg",
  11702. extra: 1883 / 1564,
  11703. bottom: 0.031
  11704. }
  11705. },
  11706. },
  11707. [
  11708. {
  11709. name: "Normal",
  11710. height: math.unit(13, "feet"),
  11711. default: true
  11712. },
  11713. {
  11714. name: "Big Boi",
  11715. height: math.unit(150, "meters")
  11716. },
  11717. {
  11718. name: "Mini Stomper",
  11719. height: math.unit(300, "meters")
  11720. },
  11721. {
  11722. name: "Macro",
  11723. height: math.unit(1000, "meters")
  11724. },
  11725. {
  11726. name: "Megamacro",
  11727. height: math.unit(11000, "meters")
  11728. },
  11729. {
  11730. name: "Gigamacro",
  11731. height: math.unit(11000, "km")
  11732. },
  11733. {
  11734. name: "Teramacro",
  11735. height: math.unit(420000, "km")
  11736. },
  11737. {
  11738. name: "Examacro",
  11739. height: math.unit(120, "parsecs")
  11740. },
  11741. {
  11742. name: "God Tho",
  11743. height: math.unit(98000000000, "parsecs")
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11749. {
  11750. taurFront: {
  11751. height: math.unit(6, "feet"),
  11752. weight: math.unit(200, "lb"),
  11753. name: "Taur (Front)",
  11754. image: {
  11755. source: "./media/characters/scales/taur-front.svg",
  11756. extra: 1,
  11757. bottom: 0.05
  11758. }
  11759. },
  11760. taurBack: {
  11761. height: math.unit(6, "feet"),
  11762. weight: math.unit(200, "lb"),
  11763. name: "Taur (Back)",
  11764. image: {
  11765. source: "./media/characters/scales/taur-back.svg",
  11766. extra: 1,
  11767. bottom: 0.08
  11768. }
  11769. },
  11770. anthro: {
  11771. height: math.unit(6 * 7 / 12, "feet"),
  11772. weight: math.unit(100, "lb"),
  11773. name: "Anthro",
  11774. image: {
  11775. source: "./media/characters/scales/anthro.svg",
  11776. extra: 1,
  11777. bottom: 0.06
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Normal",
  11784. height: math.unit(12, "feet"),
  11785. default: true
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(150, "lb"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/koragos/front.svg",
  11798. extra: 841 / 794,
  11799. bottom: 0.035
  11800. }
  11801. },
  11802. back: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(150, "lb"),
  11805. name: "Back",
  11806. image: {
  11807. source: "./media/characters/koragos/back.svg",
  11808. extra: 841 / 810,
  11809. bottom: 0.022
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(6 + 11 / 12, "feet"),
  11817. default: true
  11818. },
  11819. {
  11820. name: "Macro",
  11821. height: math.unit(490, "feet")
  11822. },
  11823. {
  11824. name: "Megamacro",
  11825. height: math.unit(10, "miles")
  11826. },
  11827. {
  11828. name: "Gigamacro",
  11829. height: math.unit(50, "miles")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(250, "lb"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/xylrem/front.svg",
  11842. extra: 3323 / 3050,
  11843. bottom: 0.065
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(4, "feet")
  11851. },
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(16, "feet"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(2720, "feet")
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(25000, "miles")
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(8, "feet"),
  11872. weight: math.unit(250, "kg"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/ikideru/front.svg",
  11876. extra: 930 / 870,
  11877. bottom: 0.087
  11878. }
  11879. },
  11880. back: {
  11881. height: math.unit(8, "feet"),
  11882. weight: math.unit(250, "kg"),
  11883. name: "Back",
  11884. image: {
  11885. source: "./media/characters/ikideru/back.svg",
  11886. extra: 919 / 852,
  11887. bottom: 0.055
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Rare",
  11894. height: math.unit(8, "feet"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Playful Loom",
  11899. height: math.unit(80, "feet")
  11900. },
  11901. {
  11902. name: "City Leaner",
  11903. height: math.unit(230, "feet")
  11904. },
  11905. {
  11906. name: "Megamacro",
  11907. height: math.unit(2500, "feet")
  11908. },
  11909. {
  11910. name: "Gigamacro",
  11911. height: math.unit(26400, "feet")
  11912. },
  11913. {
  11914. name: "Tectonic Shifter",
  11915. height: math.unit(1.7, "megameters")
  11916. },
  11917. {
  11918. name: "Planet Carer",
  11919. height: math.unit(21, "megameters")
  11920. },
  11921. {
  11922. name: "God",
  11923. height: math.unit(11157.22, "parsecs")
  11924. },
  11925. ]
  11926. ))
  11927. characterMakers.push(() => makeCharacter(
  11928. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11929. {
  11930. front: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(120, "lb"),
  11933. name: "Front",
  11934. image: {
  11935. source: "./media/characters/neo/front.svg"
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Micro",
  11942. height: math.unit(2, "inches"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Human Size",
  11947. height: math.unit(5 + 8 / 12, "feet")
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11953. {
  11954. front: {
  11955. height: math.unit(13 + 10 / 12, "feet"),
  11956. weight: math.unit(5320, "lb"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/chauncey-chantz/front.svg",
  11960. extra: 1587 / 1435,
  11961. bottom: 0.02
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(13 + 10 / 12, "feet"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(45, "feet")
  11974. },
  11975. {
  11976. name: "Megamacro",
  11977. height: math.unit(250, "miles")
  11978. },
  11979. {
  11980. name: "Planetary",
  11981. height: math.unit(10000, "miles")
  11982. },
  11983. {
  11984. name: "Galactic",
  11985. height: math.unit(40000, "parsecs")
  11986. },
  11987. {
  11988. name: "Universal",
  11989. height: math.unit(1, "yottameter")
  11990. },
  11991. ]
  11992. ))
  11993. characterMakers.push(() => makeCharacter(
  11994. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11995. {
  11996. front: {
  11997. height: math.unit(6, "feet"),
  11998. weight: math.unit(150, "lb"),
  11999. name: "Front",
  12000. image: {
  12001. source: "./media/characters/epifox/front.svg",
  12002. extra: 1,
  12003. bottom: 0.075
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Micro",
  12010. height: math.unit(6, "inches")
  12011. },
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(12, "feet"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Macro",
  12019. height: math.unit(3810, "feet")
  12020. },
  12021. {
  12022. name: "Megamacro",
  12023. height: math.unit(500, "miles")
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(1.8796, "m"),
  12032. weight: math.unit(230, "lb"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/colin-t/front.svg",
  12036. extra: 1272 / 1193,
  12037. bottom: 0.07
  12038. }
  12039. },
  12040. },
  12041. [
  12042. {
  12043. name: "Micro",
  12044. height: math.unit(0.571, "meters")
  12045. },
  12046. {
  12047. name: "Normal",
  12048. height: math.unit(1.8796, "meters"),
  12049. default: true
  12050. },
  12051. {
  12052. name: "Tall",
  12053. height: math.unit(4, "meters")
  12054. },
  12055. {
  12056. name: "Macro",
  12057. height: math.unit(67.241, "meters")
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(371.856, "meters")
  12062. },
  12063. {
  12064. name: "Planetary",
  12065. height: math.unit(12631.5689, "km")
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(1.85, "meters"),
  12074. weight: math.unit(80, "kg"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/matvei/front.svg",
  12078. extra: 614 / 594,
  12079. bottom: 0.01
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Normal",
  12086. height: math.unit(1.85, "meters"),
  12087. default: true
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12093. {
  12094. front: {
  12095. height: math.unit(5 + 9 / 12, "feet"),
  12096. weight: math.unit(70, "lb"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/quincy/front.svg",
  12100. extra: 3041 / 2751
  12101. }
  12102. },
  12103. back: {
  12104. height: math.unit(5 + 9 / 12, "feet"),
  12105. weight: math.unit(70, "lb"),
  12106. name: "Back",
  12107. image: {
  12108. source: "./media/characters/quincy/back.svg",
  12109. extra: 3041 / 2751
  12110. }
  12111. },
  12112. flying: {
  12113. height: math.unit(5 + 4 / 12, "feet"),
  12114. weight: math.unit(70, "lb"),
  12115. name: "Flying",
  12116. image: {
  12117. source: "./media/characters/quincy/flying.svg",
  12118. extra: 1044 / 930
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Micro",
  12125. height: math.unit(3, "cm")
  12126. },
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(5 + 9 / 12, "feet")
  12130. },
  12131. {
  12132. name: "Macro",
  12133. height: math.unit(200, "meters"),
  12134. default: true
  12135. },
  12136. {
  12137. name: "Megamacro",
  12138. height: math.unit(1000, "meters")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(3 + 11/12, "feet"),
  12147. weight: math.unit(50, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/vanrel/front.svg",
  12151. extra: 1104/949,
  12152. bottom: 52/1156
  12153. }
  12154. },
  12155. back: {
  12156. height: math.unit(3 + 11/12, "feet"),
  12157. weight: math.unit(50, "lb"),
  12158. name: "Back",
  12159. image: {
  12160. source: "./media/characters/vanrel/back.svg",
  12161. extra: 1119/976,
  12162. bottom: 37/1156
  12163. }
  12164. },
  12165. tome: {
  12166. height: math.unit(1.35, "feet"),
  12167. weight: math.unit(10, "lb"),
  12168. name: "Vanrel's Tome",
  12169. rename: true,
  12170. image: {
  12171. source: "./media/characters/vanrel/tome.svg"
  12172. }
  12173. },
  12174. beans: {
  12175. height: math.unit(0.89, "feet"),
  12176. name: "Beans",
  12177. image: {
  12178. source: "./media/characters/vanrel/beans.svg"
  12179. }
  12180. },
  12181. },
  12182. [
  12183. {
  12184. name: "Normal",
  12185. height: math.unit(3 + 11/12, "feet"),
  12186. default: true
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(7 + 5 / 12, "feet"),
  12195. name: "Front",
  12196. image: {
  12197. source: "./media/characters/kuiper-vanrel/front.svg",
  12198. extra: 1219/1169,
  12199. bottom: 69/1288
  12200. }
  12201. },
  12202. back: {
  12203. height: math.unit(7 + 5 / 12, "feet"),
  12204. name: "Back",
  12205. image: {
  12206. source: "./media/characters/kuiper-vanrel/back.svg",
  12207. extra: 1236/1193,
  12208. bottom: 27/1263
  12209. }
  12210. },
  12211. foot: {
  12212. height: math.unit(0.55, "meters"),
  12213. name: "Foot",
  12214. image: {
  12215. source: "./media/characters/kuiper-vanrel/foot.svg",
  12216. }
  12217. },
  12218. battle: {
  12219. height: math.unit(6.824, "feet"),
  12220. name: "Battle",
  12221. image: {
  12222. source: "./media/characters/kuiper-vanrel/battle.svg",
  12223. extra: 1466 / 1327,
  12224. bottom: 29 / 1492.5
  12225. }
  12226. },
  12227. meerkui: {
  12228. height: math.unit(18, "inches"),
  12229. name: "Meerkui",
  12230. image: {
  12231. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12232. extra: 1354/1289,
  12233. bottom: 69/1423
  12234. }
  12235. },
  12236. },
  12237. [
  12238. {
  12239. name: "Normal",
  12240. height: math.unit(7 + 5 / 12, "feet"),
  12241. default: true
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(8 + 5 / 12, "feet"),
  12250. name: "Front",
  12251. image: {
  12252. source: "./media/characters/keset-vanrel/front.svg",
  12253. extra: 1231/1148,
  12254. bottom: 82/1313
  12255. }
  12256. },
  12257. back: {
  12258. height: math.unit(8 + 5 / 12, "feet"),
  12259. name: "Back",
  12260. image: {
  12261. source: "./media/characters/keset-vanrel/back.svg",
  12262. extra: 1240/1174,
  12263. bottom: 33/1273
  12264. }
  12265. },
  12266. hand: {
  12267. height: math.unit(0.6, "meters"),
  12268. name: "Hand",
  12269. image: {
  12270. source: "./media/characters/keset-vanrel/hand.svg"
  12271. }
  12272. },
  12273. foot: {
  12274. height: math.unit(0.94978, "meters"),
  12275. name: "Foot",
  12276. image: {
  12277. source: "./media/characters/keset-vanrel/foot.svg"
  12278. }
  12279. },
  12280. battle: {
  12281. height: math.unit(7.408, "feet"),
  12282. name: "Battle",
  12283. image: {
  12284. source: "./media/characters/keset-vanrel/battle.svg",
  12285. extra: 1890 / 1386,
  12286. bottom: 73.28 / 1970
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(8 + 5 / 12, "feet"),
  12294. default: true
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(6, "feet"),
  12303. weight: math.unit(150, "lb"),
  12304. name: "Front",
  12305. image: {
  12306. source: "./media/characters/neos/front.svg",
  12307. extra: 1696 / 992,
  12308. bottom: 0.14
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(54, "cm"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Macro",
  12320. height: math.unit(100, "m")
  12321. },
  12322. {
  12323. name: "Megamacro",
  12324. height: math.unit(10, "km")
  12325. },
  12326. {
  12327. name: "Megamacro+",
  12328. height: math.unit(100, "km")
  12329. },
  12330. {
  12331. name: "Gigamacro",
  12332. height: math.unit(100, "Mm")
  12333. },
  12334. {
  12335. name: "Teramacro",
  12336. height: math.unit(100, "Gm")
  12337. },
  12338. {
  12339. name: "Examacro",
  12340. height: math.unit(100, "Em")
  12341. },
  12342. {
  12343. name: "Godly",
  12344. height: math.unit(10000, "Ym")
  12345. },
  12346. {
  12347. name: "Beyond Godly",
  12348. height: math.unit(25, "multiverses")
  12349. },
  12350. ]
  12351. ))
  12352. characterMakers.push(() => makeCharacter(
  12353. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12354. {
  12355. feminine: {
  12356. height: math.unit(5, "feet"),
  12357. weight: math.unit(100, "lb"),
  12358. name: "Feminine",
  12359. image: {
  12360. source: "./media/characters/sammy-mouse/feminine.svg",
  12361. extra: 2526 / 2425,
  12362. bottom: 0.123
  12363. }
  12364. },
  12365. masculine: {
  12366. height: math.unit(5, "feet"),
  12367. weight: math.unit(100, "lb"),
  12368. name: "Masculine",
  12369. image: {
  12370. source: "./media/characters/sammy-mouse/masculine.svg",
  12371. extra: 2526 / 2425,
  12372. bottom: 0.123
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Micro",
  12379. height: math.unit(5, "inches")
  12380. },
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(5, "feet"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Macro",
  12388. height: math.unit(60, "feet")
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(4, "feet"),
  12397. weight: math.unit(50, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/kole/front.svg",
  12401. extra: 1423 / 1303,
  12402. bottom: 0.025
  12403. }
  12404. },
  12405. back: {
  12406. height: math.unit(4, "feet"),
  12407. weight: math.unit(50, "lb"),
  12408. name: "Back",
  12409. image: {
  12410. source: "./media/characters/kole/back.svg",
  12411. extra: 1426 / 1280,
  12412. bottom: 0.02
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(4, "feet"),
  12420. default: true
  12421. },
  12422. ]
  12423. ))
  12424. characterMakers.push(() => makeCharacter(
  12425. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12426. {
  12427. front: {
  12428. height: math.unit(2.5, "feet"),
  12429. weight: math.unit(32, "lb"),
  12430. name: "Front",
  12431. image: {
  12432. source: "./media/characters/rufran/front.svg",
  12433. extra: 1313/885,
  12434. bottom: 94/1407
  12435. }
  12436. },
  12437. side: {
  12438. height: math.unit(2.5, "feet"),
  12439. weight: math.unit(32, "lb"),
  12440. name: "Side",
  12441. image: {
  12442. source: "./media/characters/rufran/side.svg",
  12443. extra: 1109/852,
  12444. bottom: 118/1227
  12445. }
  12446. },
  12447. back: {
  12448. height: math.unit(2.5, "feet"),
  12449. weight: math.unit(32, "lb"),
  12450. name: "Back",
  12451. image: {
  12452. source: "./media/characters/rufran/back.svg",
  12453. extra: 1280/878,
  12454. bottom: 131/1411
  12455. }
  12456. },
  12457. mouth: {
  12458. height: math.unit(1.13, "feet"),
  12459. name: "Mouth",
  12460. image: {
  12461. source: "./media/characters/rufran/mouth.svg"
  12462. }
  12463. },
  12464. foot: {
  12465. height: math.unit(1.33, "feet"),
  12466. name: "Foot",
  12467. image: {
  12468. source: "./media/characters/rufran/foot.svg"
  12469. }
  12470. },
  12471. koboldFront: {
  12472. height: math.unit(2 + 6 / 12, "feet"),
  12473. weight: math.unit(20, "lb"),
  12474. name: "Front (Kobold)",
  12475. image: {
  12476. source: "./media/characters/rufran/kobold-front.svg",
  12477. extra: 2041 / 1839,
  12478. bottom: 0.055
  12479. }
  12480. },
  12481. koboldBack: {
  12482. height: math.unit(2 + 6 / 12, "feet"),
  12483. weight: math.unit(20, "lb"),
  12484. name: "Back (Kobold)",
  12485. image: {
  12486. source: "./media/characters/rufran/kobold-back.svg",
  12487. extra: 2054 / 1839,
  12488. bottom: 0.01
  12489. }
  12490. },
  12491. koboldHand: {
  12492. height: math.unit(0.2166, "meters"),
  12493. name: "Hand (Kobold)",
  12494. image: {
  12495. source: "./media/characters/rufran/kobold-hand.svg"
  12496. }
  12497. },
  12498. koboldFoot: {
  12499. height: math.unit(0.185, "meters"),
  12500. name: "Foot (Kobold)",
  12501. image: {
  12502. source: "./media/characters/rufran/kobold-foot.svg"
  12503. }
  12504. },
  12505. },
  12506. [
  12507. {
  12508. name: "Micro",
  12509. height: math.unit(1, "inch")
  12510. },
  12511. {
  12512. name: "Normal",
  12513. height: math.unit(2 + 6 / 12, "feet"),
  12514. default: true
  12515. },
  12516. {
  12517. name: "Big",
  12518. height: math.unit(60, "feet")
  12519. },
  12520. {
  12521. name: "Macro",
  12522. height: math.unit(325, "feet")
  12523. },
  12524. ]
  12525. ))
  12526. characterMakers.push(() => makeCharacter(
  12527. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12528. {
  12529. front: {
  12530. height: math.unit(0.3, "meters"),
  12531. weight: math.unit(3.5, "kg"),
  12532. name: "Front",
  12533. image: {
  12534. source: "./media/characters/chip/front.svg",
  12535. extra: 748 / 674
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Micro",
  12542. height: math.unit(1, "inch"),
  12543. default: true
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12549. {
  12550. side: {
  12551. height: math.unit(2.3, "meters"),
  12552. weight: math.unit(3500, "lb"),
  12553. name: "Side",
  12554. image: {
  12555. source: "./media/characters/torvid/side.svg",
  12556. extra: 1972 / 722,
  12557. bottom: 0.035
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Normal",
  12564. height: math.unit(2.3, "meters"),
  12565. default: true
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12571. {
  12572. front: {
  12573. height: math.unit(2, "meters"),
  12574. weight: math.unit(150.5, "kg"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/susan/front.svg",
  12578. extra: 693 / 635,
  12579. bottom: 0.05
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Megamacro",
  12586. height: math.unit(505, "miles"),
  12587. default: true
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(6, "feet"),
  12596. weight: math.unit(150, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/raindrops/front.svg",
  12600. extra: 2655 / 2461,
  12601. bottom: 49 / 2705
  12602. }
  12603. },
  12604. back: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/raindrops/back.svg",
  12610. extra: 2574 / 2400,
  12611. bottom: 65 / 2634
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Micro",
  12618. height: math.unit(6, "inches")
  12619. },
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(6 + 2 / 12, "feet")
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(131, "feet"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Megamacro",
  12631. height: math.unit(15, "miles")
  12632. },
  12633. {
  12634. name: "Gigamacro",
  12635. height: math.unit(4000, "miles")
  12636. },
  12637. {
  12638. name: "Teramacro",
  12639. height: math.unit(315000, "miles")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(2.794, "meters"),
  12648. weight: math.unit(325, "kg"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/tezwa/front.svg",
  12652. extra: 2083 / 1906,
  12653. bottom: 0.031
  12654. }
  12655. },
  12656. foot: {
  12657. height: math.unit(0.687, "meters"),
  12658. name: "Foot",
  12659. image: {
  12660. source: "./media/characters/tezwa/foot.svg"
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(9 + 2 / 12, "feet"),
  12668. default: true
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(58, "feet"),
  12677. weight: math.unit(89000, "lb"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/typhus/front.svg",
  12681. extra: 816 / 800,
  12682. bottom: 0.065
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(58, "feet"),
  12690. default: true
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(12, "feet"),
  12699. weight: math.unit(6, "tonnes"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/lyra-von-wulf/front.svg",
  12703. extra: 1,
  12704. bottom: 0.10
  12705. }
  12706. },
  12707. frontMecha: {
  12708. height: math.unit(12, "feet"),
  12709. weight: math.unit(12, "tonnes"),
  12710. name: "Front (Mecha)",
  12711. image: {
  12712. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12713. extra: 1,
  12714. bottom: 0.042
  12715. }
  12716. },
  12717. maw: {
  12718. height: math.unit(2.2, "feet"),
  12719. name: "Maw",
  12720. image: {
  12721. source: "./media/characters/lyra-von-wulf/maw.svg"
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(12, "feet"),
  12729. default: true
  12730. },
  12731. {
  12732. name: "Classic",
  12733. height: math.unit(50, "feet")
  12734. },
  12735. {
  12736. name: "Macro",
  12737. height: math.unit(500, "feet")
  12738. },
  12739. {
  12740. name: "Megamacro",
  12741. height: math.unit(1, "mile")
  12742. },
  12743. {
  12744. name: "Gigamacro",
  12745. height: math.unit(400, "miles")
  12746. },
  12747. {
  12748. name: "Teramacro",
  12749. height: math.unit(22000, "miles")
  12750. },
  12751. {
  12752. name: "Solarmacro",
  12753. height: math.unit(8600000, "miles")
  12754. },
  12755. {
  12756. name: "Galactic",
  12757. height: math.unit(1057000, "lightyears")
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12763. {
  12764. front: {
  12765. height: math.unit(6 + 10 / 12, "feet"),
  12766. weight: math.unit(150, "lb"),
  12767. name: "Front",
  12768. image: {
  12769. source: "./media/characters/dixon/front.svg",
  12770. extra: 3361 / 3209,
  12771. bottom: 0.01
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Normal",
  12778. height: math.unit(6 + 10 / 12, "feet"),
  12779. default: true
  12780. },
  12781. {
  12782. name: "Big",
  12783. height: math.unit(12, "meters")
  12784. },
  12785. {
  12786. name: "Macro",
  12787. height: math.unit(500, "meters")
  12788. },
  12789. {
  12790. name: "Megamacro",
  12791. height: math.unit(2, "km")
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(185, "cm"),
  12800. weight: math.unit(68, "kg"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/kauko/front.svg",
  12804. extra: 1455 / 1421,
  12805. bottom: 0.03
  12806. }
  12807. },
  12808. back: {
  12809. height: math.unit(185, "cm"),
  12810. weight: math.unit(68, "kg"),
  12811. name: "Back",
  12812. image: {
  12813. source: "./media/characters/kauko/back.svg",
  12814. extra: 1455 / 1421,
  12815. bottom: 0.004
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Normal",
  12822. height: math.unit(185, "cm"),
  12823. default: true
  12824. },
  12825. ]
  12826. ))
  12827. characterMakers.push(() => makeCharacter(
  12828. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12829. {
  12830. front: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(150, "kg"),
  12833. name: "Front",
  12834. image: {
  12835. source: "./media/characters/varg/front.svg",
  12836. extra: 1108 / 1018,
  12837. bottom: 0.0375
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Normal",
  12844. height: math.unit(5, "meters")
  12845. },
  12846. {
  12847. name: "Macro",
  12848. height: math.unit(200, "meters")
  12849. },
  12850. {
  12851. name: "Megamacro",
  12852. height: math.unit(20, "kilometers")
  12853. },
  12854. {
  12855. name: "True Size",
  12856. height: math.unit(211, "km"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Gigamacro",
  12861. height: math.unit(1000, "km")
  12862. },
  12863. {
  12864. name: "Gigamacro+",
  12865. height: math.unit(8000, "km")
  12866. },
  12867. {
  12868. name: "Teramacro",
  12869. height: math.unit(1000000, "km")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(7 + 7 / 12, "feet"),
  12878. weight: math.unit(267, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/dayza/front.svg",
  12882. extra: 1262 / 1200,
  12883. bottom: 0.035
  12884. }
  12885. },
  12886. side: {
  12887. height: math.unit(7 + 7 / 12, "feet"),
  12888. weight: math.unit(267, "lb"),
  12889. name: "Side",
  12890. image: {
  12891. source: "./media/characters/dayza/side.svg",
  12892. extra: 1295 / 1245,
  12893. bottom: 0.05
  12894. }
  12895. },
  12896. back: {
  12897. height: math.unit(7 + 7 / 12, "feet"),
  12898. weight: math.unit(267, "lb"),
  12899. name: "Back",
  12900. image: {
  12901. source: "./media/characters/dayza/back.svg",
  12902. extra: 1241 / 1170
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(7 + 7 / 12, "feet"),
  12910. default: true
  12911. },
  12912. {
  12913. name: "Macro",
  12914. height: math.unit(155, "feet")
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(6 + 5 / 12, "feet"),
  12923. weight: math.unit(160, "lb"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/xanthos/front.svg",
  12927. extra: 1,
  12928. bottom: 0.04
  12929. }
  12930. },
  12931. back: {
  12932. height: math.unit(6 + 5 / 12, "feet"),
  12933. weight: math.unit(160, "lb"),
  12934. name: "Back",
  12935. image: {
  12936. source: "./media/characters/xanthos/back.svg",
  12937. extra: 1,
  12938. bottom: 0.03
  12939. }
  12940. },
  12941. hand: {
  12942. height: math.unit(0.928, "feet"),
  12943. name: "Hand",
  12944. image: {
  12945. source: "./media/characters/xanthos/hand.svg"
  12946. }
  12947. },
  12948. foot: {
  12949. height: math.unit(1.286, "feet"),
  12950. name: "Foot",
  12951. image: {
  12952. source: "./media/characters/xanthos/foot.svg"
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(6 + 5 / 12, "feet"),
  12960. default: true
  12961. },
  12962. {
  12963. name: "Normal+",
  12964. height: math.unit(6, "meters")
  12965. },
  12966. {
  12967. name: "Macro",
  12968. height: math.unit(40, "feet")
  12969. },
  12970. {
  12971. name: "Macro+",
  12972. height: math.unit(200, "meters")
  12973. },
  12974. {
  12975. name: "Megamacro",
  12976. height: math.unit(20, "km")
  12977. },
  12978. {
  12979. name: "Megamacro+",
  12980. height: math.unit(100, "km")
  12981. },
  12982. {
  12983. name: "Gigamacro",
  12984. height: math.unit(200, "megameters")
  12985. },
  12986. {
  12987. name: "Gigamacro+",
  12988. height: math.unit(1.5, "gigameters")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(6 + 3 / 12, "feet"),
  12997. weight: math.unit(215, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/grynn/front.svg",
  13001. extra: 4627 / 4209,
  13002. bottom: 0.047
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Micro",
  13009. height: math.unit(6, "inches")
  13010. },
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(6 + 3 / 12, "feet"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Big",
  13018. height: math.unit(104, "feet")
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(944, "feet")
  13023. },
  13024. {
  13025. name: "Macro+",
  13026. height: math.unit(9480, "feet")
  13027. },
  13028. {
  13029. name: "Megamacro",
  13030. height: math.unit(78752, "feet")
  13031. },
  13032. {
  13033. name: "Megamacro+",
  13034. height: math.unit(630128, "feet")
  13035. },
  13036. {
  13037. name: "Megamacro++",
  13038. height: math.unit(3150695, "feet")
  13039. },
  13040. ]
  13041. ))
  13042. characterMakers.push(() => makeCharacter(
  13043. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13044. {
  13045. front: {
  13046. height: math.unit(7 + 5 / 12, "feet"),
  13047. weight: math.unit(450, "lb"),
  13048. name: "Front",
  13049. image: {
  13050. source: "./media/characters/mocha-aura/front.svg",
  13051. extra: 1907 / 1817,
  13052. bottom: 0.04
  13053. }
  13054. },
  13055. back: {
  13056. height: math.unit(7 + 5 / 12, "feet"),
  13057. weight: math.unit(450, "lb"),
  13058. name: "Back",
  13059. image: {
  13060. source: "./media/characters/mocha-aura/back.svg",
  13061. extra: 1900 / 1825,
  13062. bottom: 0.045
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Nano",
  13069. height: math.unit(1, "nm")
  13070. },
  13071. {
  13072. name: "Megamicro",
  13073. height: math.unit(1, "mm")
  13074. },
  13075. {
  13076. name: "Micro",
  13077. height: math.unit(3, "inches")
  13078. },
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(7 + 5 / 12, "feet"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Macro",
  13086. height: math.unit(30, "feet")
  13087. },
  13088. {
  13089. name: "Megamacro",
  13090. height: math.unit(3500, "feet")
  13091. },
  13092. {
  13093. name: "Teramacro",
  13094. height: math.unit(500000, "miles")
  13095. },
  13096. {
  13097. name: "Petamacro",
  13098. height: math.unit(50000000000000000, "parsecs")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(6, "feet"),
  13107. weight: math.unit(150, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/ilisha-devya/front.svg",
  13111. extra: 1053/1049,
  13112. bottom: 270/1323
  13113. }
  13114. },
  13115. back: {
  13116. height: math.unit(6, "feet"),
  13117. weight: math.unit(150, "lb"),
  13118. name: "Back",
  13119. image: {
  13120. source: "./media/characters/ilisha-devya/back.svg",
  13121. extra: 1131/1128,
  13122. bottom: 39/1170
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(500, "feet"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Megamacro",
  13134. height: math.unit(10, "miles")
  13135. },
  13136. {
  13137. name: "Gigamacro",
  13138. height: math.unit(100000, "miles")
  13139. },
  13140. {
  13141. name: "Examacro",
  13142. height: math.unit(1e9, "lightyears")
  13143. },
  13144. {
  13145. name: "Omniversal",
  13146. height: math.unit(1e33, "lightyears")
  13147. },
  13148. {
  13149. name: "Beyond Infinite",
  13150. height: math.unit(1e100, "lightyears")
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13156. {
  13157. Side: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(150, "lb"),
  13160. name: "Side",
  13161. image: {
  13162. source: "./media/characters/mira/side.svg",
  13163. extra: 900 / 799,
  13164. bottom: 0.02
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Human Size",
  13171. height: math.unit(6, "feet")
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(100, "feet"),
  13176. default: true
  13177. },
  13178. {
  13179. name: "Megamacro",
  13180. height: math.unit(10, "miles")
  13181. },
  13182. {
  13183. name: "Gigamacro",
  13184. height: math.unit(25000, "miles")
  13185. },
  13186. {
  13187. name: "Teramacro",
  13188. height: math.unit(300, "AU")
  13189. },
  13190. {
  13191. name: "Full Size",
  13192. height: math.unit(4.5e10, "lightyears")
  13193. },
  13194. ]
  13195. ))
  13196. characterMakers.push(() => makeCharacter(
  13197. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13198. {
  13199. front: {
  13200. height: math.unit(6, "feet"),
  13201. weight: math.unit(150, "lb"),
  13202. name: "Front",
  13203. image: {
  13204. source: "./media/characters/holly/front.svg",
  13205. extra: 639 / 606
  13206. }
  13207. },
  13208. back: {
  13209. height: math.unit(6, "feet"),
  13210. weight: math.unit(150, "lb"),
  13211. name: "Back",
  13212. image: {
  13213. source: "./media/characters/holly/back.svg",
  13214. extra: 623 / 598
  13215. }
  13216. },
  13217. frontWorking: {
  13218. height: math.unit(6, "feet"),
  13219. weight: math.unit(150, "lb"),
  13220. name: "Front (Working)",
  13221. image: {
  13222. source: "./media/characters/holly/front-working.svg",
  13223. extra: 607 / 577,
  13224. bottom: 0.048
  13225. }
  13226. },
  13227. },
  13228. [
  13229. {
  13230. name: "Normal",
  13231. height: math.unit(12 + 3 / 12, "feet"),
  13232. default: true
  13233. },
  13234. ]
  13235. ))
  13236. characterMakers.push(() => makeCharacter(
  13237. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13238. {
  13239. front: {
  13240. height: math.unit(6, "feet"),
  13241. weight: math.unit(150, "lb"),
  13242. name: "Front",
  13243. image: {
  13244. source: "./media/characters/porter/front.svg",
  13245. extra: 1,
  13246. bottom: 0.01
  13247. }
  13248. },
  13249. frontRobes: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(150, "lb"),
  13252. name: "Front (Robes)",
  13253. image: {
  13254. source: "./media/characters/porter/front-robes.svg",
  13255. extra: 1.01,
  13256. bottom: 0.01
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Normal",
  13263. height: math.unit(11 + 9 / 12, "feet"),
  13264. default: true
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13270. {
  13271. legendary: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(150, "lb"),
  13274. name: "Legendary",
  13275. image: {
  13276. source: "./media/characters/lucy/legendary.svg",
  13277. extra: 1355 / 1100,
  13278. bottom: 0.045
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Legendary",
  13285. height: math.unit(86882 * 2, "miles"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(150, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/drusilla/front.svg",
  13299. extra: 678 / 635,
  13300. bottom: 0.03
  13301. }
  13302. },
  13303. back: {
  13304. height: math.unit(6, "feet"),
  13305. weight: math.unit(150, "lb"),
  13306. name: "Back",
  13307. image: {
  13308. source: "./media/characters/drusilla/back.svg",
  13309. extra: 678 / 635,
  13310. bottom: 0.005
  13311. }
  13312. },
  13313. },
  13314. [
  13315. {
  13316. name: "Macro",
  13317. height: math.unit(100, "feet")
  13318. },
  13319. {
  13320. name: "Canon Height",
  13321. height: math.unit(2000, "feet"),
  13322. default: true
  13323. },
  13324. ]
  13325. ))
  13326. characterMakers.push(() => makeCharacter(
  13327. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13328. {
  13329. front: {
  13330. height: math.unit(6, "feet"),
  13331. weight: math.unit(180, "lb"),
  13332. name: "Front",
  13333. image: {
  13334. source: "./media/characters/renard-thatch/front.svg",
  13335. extra: 2411 / 2275,
  13336. bottom: 0.01
  13337. }
  13338. },
  13339. frontPosing: {
  13340. height: math.unit(6, "feet"),
  13341. weight: math.unit(180, "lb"),
  13342. name: "Front (Posing)",
  13343. image: {
  13344. source: "./media/characters/renard-thatch/front-posing.svg",
  13345. extra: 2381 / 2261,
  13346. bottom: 0.01
  13347. }
  13348. },
  13349. back: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(180, "lb"),
  13352. name: "Back",
  13353. image: {
  13354. source: "./media/characters/renard-thatch/back.svg",
  13355. extra: 2428 / 2288
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Micro",
  13362. height: math.unit(3, "inches")
  13363. },
  13364. {
  13365. name: "Default",
  13366. height: math.unit(6, "feet"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(75, "feet")
  13372. },
  13373. ]
  13374. ))
  13375. characterMakers.push(() => makeCharacter(
  13376. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13377. {
  13378. front: {
  13379. height: math.unit(1450, "feet"),
  13380. weight: math.unit(1.21e6, "tons"),
  13381. name: "Front",
  13382. image: {
  13383. source: "./media/characters/sekvra/front.svg",
  13384. extra: 1193/1190,
  13385. bottom: 78/1271
  13386. }
  13387. },
  13388. side: {
  13389. height: math.unit(1450, "feet"),
  13390. weight: math.unit(1.21e6, "tons"),
  13391. name: "Side",
  13392. image: {
  13393. source: "./media/characters/sekvra/side.svg",
  13394. extra: 1193/1190,
  13395. bottom: 52/1245
  13396. }
  13397. },
  13398. back: {
  13399. height: math.unit(1450, "feet"),
  13400. weight: math.unit(1.21e6, "tons"),
  13401. name: "Back",
  13402. image: {
  13403. source: "./media/characters/sekvra/back.svg",
  13404. extra: 1219/1216,
  13405. bottom: 21/1240
  13406. }
  13407. },
  13408. frontClothed: {
  13409. height: math.unit(1450, "feet"),
  13410. weight: math.unit(1.21e6, "tons"),
  13411. name: "Front (Clothed)",
  13412. image: {
  13413. source: "./media/characters/sekvra/front-clothed.svg",
  13414. extra: 1192/1189,
  13415. bottom: 79/1271
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Macro",
  13422. height: math.unit(1450, "feet"),
  13423. default: true
  13424. },
  13425. {
  13426. name: "Megamacro",
  13427. height: math.unit(15000, "feet")
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13433. {
  13434. front: {
  13435. height: math.unit(6, "feet"),
  13436. weight: math.unit(150, "lb"),
  13437. name: "Front",
  13438. image: {
  13439. source: "./media/characters/carmine/front.svg",
  13440. extra: 1,
  13441. bottom: 0.035
  13442. }
  13443. },
  13444. frontArmor: {
  13445. height: math.unit(6, "feet"),
  13446. weight: math.unit(150, "lb"),
  13447. name: "Front (Armor)",
  13448. image: {
  13449. source: "./media/characters/carmine/front-armor.svg",
  13450. extra: 1,
  13451. bottom: 0.035
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Large",
  13458. height: math.unit(1, "mile")
  13459. },
  13460. {
  13461. name: "Huge",
  13462. height: math.unit(40, "miles"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Colossal",
  13467. height: math.unit(2500, "miles")
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13473. {
  13474. front: {
  13475. height: math.unit(6, "feet"),
  13476. weight: math.unit(150, "lb"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/elyssia/front.svg",
  13480. extra: 2201 / 2035,
  13481. bottom: 0.05
  13482. }
  13483. },
  13484. frontClothed: {
  13485. height: math.unit(6, "feet"),
  13486. weight: math.unit(150, "lb"),
  13487. name: "Front (Clothed)",
  13488. image: {
  13489. source: "./media/characters/elyssia/front-clothed.svg",
  13490. extra: 2201 / 2035,
  13491. bottom: 0.05
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(6, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/elyssia/back.svg",
  13500. extra: 2201 / 2035,
  13501. bottom: 0.013
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Smaller",
  13508. height: math.unit(150, "feet")
  13509. },
  13510. {
  13511. name: "Standard",
  13512. height: math.unit(1400, "feet"),
  13513. default: true
  13514. },
  13515. {
  13516. name: "Distracted",
  13517. height: math.unit(15000, "feet")
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13523. {
  13524. front: {
  13525. height: math.unit(7 + 4/12, "feet"),
  13526. weight: math.unit(690, "lb"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/geno-maxwell/front.svg",
  13530. extra: 984/856,
  13531. bottom: 87/1071
  13532. }
  13533. },
  13534. back: {
  13535. height: math.unit(7 + 4/12, "feet"),
  13536. weight: math.unit(690, "lb"),
  13537. name: "Back",
  13538. image: {
  13539. source: "./media/characters/geno-maxwell/back.svg",
  13540. extra: 981/854,
  13541. bottom: 57/1038
  13542. }
  13543. },
  13544. frontCostume: {
  13545. height: math.unit(7 + 4/12, "feet"),
  13546. weight: math.unit(690, "lb"),
  13547. name: "Front (Costume)",
  13548. image: {
  13549. source: "./media/characters/geno-maxwell/front-costume.svg",
  13550. extra: 984/856,
  13551. bottom: 87/1071
  13552. }
  13553. },
  13554. backcostume: {
  13555. height: math.unit(7 + 4/12, "feet"),
  13556. weight: math.unit(690, "lb"),
  13557. name: "Back (Costume)",
  13558. image: {
  13559. source: "./media/characters/geno-maxwell/back-costume.svg",
  13560. extra: 981/854,
  13561. bottom: 57/1038
  13562. }
  13563. },
  13564. },
  13565. [
  13566. {
  13567. name: "Micro",
  13568. height: math.unit(3, "inches")
  13569. },
  13570. {
  13571. name: "Normal",
  13572. height: math.unit(7 + 4 / 12, "feet"),
  13573. default: true
  13574. },
  13575. {
  13576. name: "Macro",
  13577. height: math.unit(220, "feet")
  13578. },
  13579. {
  13580. name: "Megamacro",
  13581. height: math.unit(11, "miles")
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(7 + 4/12, "feet"),
  13590. weight: math.unit(750, "lb"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/regena-maxwell/front.svg",
  13594. extra: 984/856,
  13595. bottom: 87/1071
  13596. }
  13597. },
  13598. back: {
  13599. height: math.unit(7 + 4/12, "feet"),
  13600. weight: math.unit(750, "lb"),
  13601. name: "Back",
  13602. image: {
  13603. source: "./media/characters/regena-maxwell/back.svg",
  13604. extra: 981/854,
  13605. bottom: 57/1038
  13606. }
  13607. },
  13608. frontCostume: {
  13609. height: math.unit(7 + 4/12, "feet"),
  13610. weight: math.unit(750, "lb"),
  13611. name: "Front (Costume)",
  13612. image: {
  13613. source: "./media/characters/regena-maxwell/front-costume.svg",
  13614. extra: 984/856,
  13615. bottom: 87/1071
  13616. }
  13617. },
  13618. backcostume: {
  13619. height: math.unit(7 + 4/12, "feet"),
  13620. weight: math.unit(750, "lb"),
  13621. name: "Back (Costume)",
  13622. image: {
  13623. source: "./media/characters/regena-maxwell/back-costume.svg",
  13624. extra: 981/854,
  13625. bottom: 57/1038
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Normal",
  13632. height: math.unit(7 + 4 / 12, "feet"),
  13633. default: true
  13634. },
  13635. {
  13636. name: "Macro",
  13637. height: math.unit(220, "feet")
  13638. },
  13639. {
  13640. name: "Megamacro",
  13641. height: math.unit(11, "miles")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(6, "feet"),
  13650. weight: math.unit(150, "lb"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13654. extra: 860 / 690,
  13655. bottom: 0.03
  13656. }
  13657. },
  13658. },
  13659. [
  13660. {
  13661. name: "Normal",
  13662. height: math.unit(1.7, "meters"),
  13663. default: true
  13664. },
  13665. ]
  13666. ))
  13667. characterMakers.push(() => makeCharacter(
  13668. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13669. {
  13670. front: {
  13671. height: math.unit(6, "feet"),
  13672. weight: math.unit(150, "lb"),
  13673. name: "Front",
  13674. image: {
  13675. source: "./media/characters/quilly/front.svg",
  13676. extra: 890 / 776
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Gigamacro",
  13683. height: math.unit(404090, "miles"),
  13684. default: true
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(7 + 8 / 12, "feet"),
  13693. weight: math.unit(350, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/tempest/front.svg",
  13697. extra: 1175 / 1086,
  13698. bottom: 0.02
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(7 + 8 / 12, "feet"),
  13706. default: true
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13712. {
  13713. side: {
  13714. height: math.unit(4 + 5 / 12, "feet"),
  13715. weight: math.unit(80, "lb"),
  13716. name: "Side",
  13717. image: {
  13718. source: "./media/characters/rodger/side.svg",
  13719. extra: 1235 / 1118
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Micro",
  13726. height: math.unit(1, "inch")
  13727. },
  13728. {
  13729. name: "Normal",
  13730. height: math.unit(4 + 5 / 12, "feet"),
  13731. default: true
  13732. },
  13733. {
  13734. name: "Macro",
  13735. height: math.unit(120, "feet")
  13736. },
  13737. ]
  13738. ))
  13739. characterMakers.push(() => makeCharacter(
  13740. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13741. {
  13742. front: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(150, "lb"),
  13745. name: "Front",
  13746. image: {
  13747. source: "./media/characters/danyel/front.svg",
  13748. extra: 1185 / 1123,
  13749. bottom: 0.05
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Shrunken",
  13756. height: math.unit(0.5, "mm")
  13757. },
  13758. {
  13759. name: "Micro",
  13760. height: math.unit(1, "mm"),
  13761. default: true
  13762. },
  13763. {
  13764. name: "Upsized",
  13765. height: math.unit(5 + 5 / 12, "feet")
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(5 + 6 / 12, "feet"),
  13774. weight: math.unit(200, "lb"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/vivian-bijoux/front.svg",
  13778. extra: 1217/1209,
  13779. bottom: 76/1293
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(5 + 6 / 12, "feet"),
  13784. weight: math.unit(200, "lb"),
  13785. name: "Back",
  13786. image: {
  13787. source: "./media/characters/vivian-bijoux/back.svg",
  13788. extra: 1214/1208,
  13789. bottom: 51/1265
  13790. }
  13791. },
  13792. dressed: {
  13793. height: math.unit(5 + 6 / 12, "feet"),
  13794. weight: math.unit(200, "lb"),
  13795. name: "Dressed",
  13796. image: {
  13797. source: "./media/characters/vivian-bijoux/dressed.svg",
  13798. extra: 1217/1209,
  13799. bottom: 76/1293
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Normal",
  13806. height: math.unit(5 + 6 / 12, "feet"),
  13807. default: true
  13808. },
  13809. {
  13810. name: "Bad Dream",
  13811. height: math.unit(500, "feet")
  13812. },
  13813. {
  13814. name: "Nightmare",
  13815. height: math.unit(500, "miles")
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(6 + 1 / 12, "feet"),
  13824. weight: math.unit(260, "lb"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/zeta/front.svg",
  13828. extra: 1968 / 1889,
  13829. bottom: 0.06
  13830. }
  13831. },
  13832. back: {
  13833. height: math.unit(6 + 1 / 12, "feet"),
  13834. weight: math.unit(260, "lb"),
  13835. name: "Back",
  13836. image: {
  13837. source: "./media/characters/zeta/back.svg",
  13838. extra: 1944 / 1858,
  13839. bottom: 0.03
  13840. }
  13841. },
  13842. hand: {
  13843. height: math.unit(1.112, "feet"),
  13844. name: "Hand",
  13845. image: {
  13846. source: "./media/characters/zeta/hand.svg"
  13847. }
  13848. },
  13849. foot: {
  13850. height: math.unit(1.48, "feet"),
  13851. name: "Foot",
  13852. image: {
  13853. source: "./media/characters/zeta/foot.svg"
  13854. }
  13855. },
  13856. },
  13857. [
  13858. {
  13859. name: "Micro",
  13860. height: math.unit(6, "inches")
  13861. },
  13862. {
  13863. name: "Normal",
  13864. height: math.unit(6 + 1 / 12, "feet"),
  13865. default: true
  13866. },
  13867. {
  13868. name: "Macro",
  13869. height: math.unit(20, "feet")
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13875. {
  13876. front: {
  13877. height: math.unit(6, "feet"),
  13878. weight: math.unit(150, "lb"),
  13879. name: "Front",
  13880. image: {
  13881. source: "./media/characters/jamie-larsen/front.svg",
  13882. extra: 962 / 933,
  13883. bottom: 0.02
  13884. }
  13885. },
  13886. back: {
  13887. height: math.unit(6, "feet"),
  13888. weight: math.unit(150, "lb"),
  13889. name: "Back",
  13890. image: {
  13891. source: "./media/characters/jamie-larsen/back.svg",
  13892. extra: 997 / 946
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Macro",
  13899. height: math.unit(28 + 7 / 12, "feet"),
  13900. default: true
  13901. },
  13902. {
  13903. name: "Macro+",
  13904. height: math.unit(180, "feet")
  13905. },
  13906. {
  13907. name: "Megamacro",
  13908. height: math.unit(10, "miles")
  13909. },
  13910. {
  13911. name: "Gigamacro",
  13912. height: math.unit(200000, "miles")
  13913. },
  13914. ]
  13915. ))
  13916. characterMakers.push(() => makeCharacter(
  13917. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13918. {
  13919. front: {
  13920. height: math.unit(6, "feet"),
  13921. weight: math.unit(120, "lb"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/vance/front.svg",
  13925. extra: 1980 / 1890,
  13926. bottom: 0.09
  13927. }
  13928. },
  13929. back: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(120, "lb"),
  13932. name: "Back",
  13933. image: {
  13934. source: "./media/characters/vance/back.svg",
  13935. extra: 2081 / 1994,
  13936. bottom: 0.014
  13937. }
  13938. },
  13939. hand: {
  13940. height: math.unit(0.88, "feet"),
  13941. name: "Hand",
  13942. image: {
  13943. source: "./media/characters/vance/hand.svg"
  13944. }
  13945. },
  13946. foot: {
  13947. height: math.unit(0.64, "feet"),
  13948. name: "Foot",
  13949. image: {
  13950. source: "./media/characters/vance/foot.svg"
  13951. }
  13952. },
  13953. },
  13954. [
  13955. {
  13956. name: "Small",
  13957. height: math.unit(90, "feet"),
  13958. default: true
  13959. },
  13960. {
  13961. name: "Macro",
  13962. height: math.unit(100, "meters")
  13963. },
  13964. {
  13965. name: "Megamacro",
  13966. height: math.unit(15, "miles")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(180, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/xochitl/front.svg",
  13979. extra: 2297 / 2261,
  13980. bottom: 0.065
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(180, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/xochitl/back.svg",
  13989. extra: 2386 / 2354,
  13990. bottom: 0.01
  13991. }
  13992. },
  13993. foot: {
  13994. height: math.unit(6 / 5 * 1.15, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Foot",
  13997. image: {
  13998. source: "./media/characters/xochitl/foot.svg"
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Macro",
  14005. height: math.unit(80, "feet")
  14006. },
  14007. {
  14008. name: "Macro+",
  14009. height: math.unit(400, "feet"),
  14010. default: true
  14011. },
  14012. {
  14013. name: "Gigamacro",
  14014. height: math.unit(80000, "miles")
  14015. },
  14016. {
  14017. name: "Gigamacro+",
  14018. height: math.unit(400000, "miles")
  14019. },
  14020. {
  14021. name: "Teramacro",
  14022. height: math.unit(300, "AU")
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(6, "feet"),
  14031. weight: math.unit(150, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/vincent/front.svg",
  14035. extra: 1130 / 1080,
  14036. bottom: 0.055
  14037. }
  14038. },
  14039. beak: {
  14040. height: math.unit(6 * 0.1, "feet"),
  14041. name: "Beak",
  14042. image: {
  14043. source: "./media/characters/vincent/beak.svg"
  14044. }
  14045. },
  14046. hand: {
  14047. height: math.unit(6 * 0.85, "feet"),
  14048. weight: math.unit(150, "lb"),
  14049. name: "Hand",
  14050. image: {
  14051. source: "./media/characters/vincent/hand.svg"
  14052. }
  14053. },
  14054. foot: {
  14055. height: math.unit(6 * 0.19, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Foot",
  14058. image: {
  14059. source: "./media/characters/vincent/foot.svg"
  14060. }
  14061. },
  14062. },
  14063. [
  14064. {
  14065. name: "Base",
  14066. height: math.unit(6 + 5 / 12, "feet"),
  14067. default: true
  14068. },
  14069. {
  14070. name: "Macro",
  14071. height: math.unit(300, "feet")
  14072. },
  14073. {
  14074. name: "Megamacro",
  14075. height: math.unit(2, "miles")
  14076. },
  14077. {
  14078. name: "Gigamacro",
  14079. height: math.unit(1000, "miles")
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14085. {
  14086. front: {
  14087. height: math.unit(2, "meters"),
  14088. weight: math.unit(500, "kg"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/coatl/front.svg",
  14092. extra: 3948 / 3500,
  14093. bottom: 0.082
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Normal",
  14100. height: math.unit(4, "meters")
  14101. },
  14102. {
  14103. name: "Macro",
  14104. height: math.unit(100, "meters"),
  14105. default: true
  14106. },
  14107. {
  14108. name: "Macro+",
  14109. height: math.unit(300, "meters")
  14110. },
  14111. {
  14112. name: "Megamacro",
  14113. height: math.unit(3, "gigameters")
  14114. },
  14115. {
  14116. name: "Megamacro+",
  14117. height: math.unit(300, "terameters")
  14118. },
  14119. {
  14120. name: "Megamacro++",
  14121. height: math.unit(3, "lightyears")
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(50, "kg"),
  14131. name: "front",
  14132. image: {
  14133. source: "./media/characters/shiroryu/front.svg",
  14134. extra: 1990 / 1935
  14135. }
  14136. },
  14137. },
  14138. [
  14139. {
  14140. name: "Mortal Mingling",
  14141. height: math.unit(3, "meters")
  14142. },
  14143. {
  14144. name: "Kaiju-ish",
  14145. height: math.unit(250, "meters")
  14146. },
  14147. {
  14148. name: "Somewhat Godly",
  14149. height: math.unit(400, "km"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Planetary",
  14154. height: math.unit(300, "megameters")
  14155. },
  14156. {
  14157. name: "Galaxy-dwarfing",
  14158. height: math.unit(450, "kiloparsecs")
  14159. },
  14160. {
  14161. name: "Universe Eater",
  14162. height: math.unit(150, "gigaparsecs")
  14163. },
  14164. {
  14165. name: "Almost Immeasurable",
  14166. height: math.unit(1.3e266, "yottaparsecs")
  14167. },
  14168. ]
  14169. ))
  14170. characterMakers.push(() => makeCharacter(
  14171. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14172. {
  14173. front: {
  14174. height: math.unit(6, "feet"),
  14175. weight: math.unit(150, "lb"),
  14176. name: "Front",
  14177. image: {
  14178. source: "./media/characters/umeko/front.svg",
  14179. extra: 1,
  14180. bottom: 0.019
  14181. }
  14182. },
  14183. frontArmored: {
  14184. height: math.unit(6, "feet"),
  14185. weight: math.unit(150, "lb"),
  14186. name: "Front (Armored)",
  14187. image: {
  14188. source: "./media/characters/umeko/front-armored.svg",
  14189. extra: 1,
  14190. bottom: 0.021
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Macro",
  14197. height: math.unit(220, "feet"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Guardian Dragon",
  14202. height: math.unit(50, "miles")
  14203. },
  14204. {
  14205. name: "Cosmic",
  14206. height: math.unit(800000, "miles")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14212. {
  14213. front: {
  14214. height: math.unit(6, "feet"),
  14215. weight: math.unit(150, "lb"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/cassidy/front.svg",
  14219. extra: 810/808,
  14220. bottom: 41/851
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Canon Height",
  14227. height: math.unit(120, "feet"),
  14228. default: true
  14229. },
  14230. {
  14231. name: "Macro+",
  14232. height: math.unit(400, "feet")
  14233. },
  14234. {
  14235. name: "Macro++",
  14236. height: math.unit(4000, "feet")
  14237. },
  14238. {
  14239. name: "Megamacro",
  14240. height: math.unit(3, "miles")
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14246. {
  14247. front: {
  14248. height: math.unit(6, "feet"),
  14249. weight: math.unit(150, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/isaac/front.svg",
  14253. extra: 896 / 815,
  14254. bottom: 0.11
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Human Size",
  14261. height: math.unit(8, "feet"),
  14262. default: true
  14263. },
  14264. {
  14265. name: "Macro",
  14266. height: math.unit(400, "feet")
  14267. },
  14268. {
  14269. name: "Megamacro",
  14270. height: math.unit(50, "miles")
  14271. },
  14272. {
  14273. name: "Canon Height",
  14274. height: math.unit(200, "AU")
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(6, "feet"),
  14283. weight: math.unit(72, "kg"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/sleekit/front.svg",
  14287. extra: 4693 / 4487,
  14288. bottom: 0.012
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Minimum Height",
  14295. height: math.unit(10, "meters")
  14296. },
  14297. {
  14298. name: "Smaller",
  14299. height: math.unit(25, "meters")
  14300. },
  14301. {
  14302. name: "Larger",
  14303. height: math.unit(38, "meters"),
  14304. default: true
  14305. },
  14306. {
  14307. name: "Maximum height",
  14308. height: math.unit(100, "meters")
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(6, "feet"),
  14317. weight: math.unit(150, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/nillia/front.svg",
  14321. extra: 2195 / 2037,
  14322. bottom: 0.005
  14323. }
  14324. },
  14325. back: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(150, "lb"),
  14328. name: "Back",
  14329. image: {
  14330. source: "./media/characters/nillia/back.svg",
  14331. extra: 2195 / 2037,
  14332. bottom: 0.005
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Canon Height",
  14339. height: math.unit(489, "feet"),
  14340. default: true
  14341. }
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14346. {
  14347. front: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/mesmyriza/front.svg",
  14353. extra: 2067 / 1784,
  14354. bottom: 0.035
  14355. }
  14356. },
  14357. foot: {
  14358. height: math.unit(6 / (250 / 35), "feet"),
  14359. name: "Foot",
  14360. image: {
  14361. source: "./media/characters/mesmyriza/foot.svg"
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Macro",
  14368. height: math.unit(457, "meters"),
  14369. default: true
  14370. },
  14371. {
  14372. name: "Megamacro",
  14373. height: math.unit(8, "megameters")
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14379. {
  14380. front: {
  14381. height: math.unit(6, "feet"),
  14382. weight: math.unit(250, "lb"),
  14383. name: "Front",
  14384. image: {
  14385. source: "./media/characters/saudade/front.svg",
  14386. extra: 1172 / 1139,
  14387. bottom: 0.035
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Micro",
  14394. height: math.unit(3, "inches")
  14395. },
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(6, "feet"),
  14399. default: true
  14400. },
  14401. {
  14402. name: "Macro",
  14403. height: math.unit(50, "feet")
  14404. },
  14405. {
  14406. name: "Megamacro",
  14407. height: math.unit(2800, "feet")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(5 + 4 / 12, "feet"),
  14416. weight: math.unit(100, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/keireer/front.svg",
  14420. extra: 716 / 666,
  14421. bottom: 0.05
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(5 + 4 / 12, "feet"),
  14429. default: true
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(90, "kg"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/mirja/front.svg",
  14442. extra: 1789 / 1683,
  14443. bottom: 0.05
  14444. }
  14445. },
  14446. frontDressed: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(90, "lb"),
  14449. name: "Front (Dressed)",
  14450. image: {
  14451. source: "./media/characters/mirja/front-dressed.svg",
  14452. extra: 1789 / 1683,
  14453. bottom: 0.05
  14454. }
  14455. },
  14456. back: {
  14457. height: math.unit(6, "feet"),
  14458. weight: math.unit(90, "lb"),
  14459. name: "Back",
  14460. image: {
  14461. source: "./media/characters/mirja/back.svg",
  14462. extra: 953 / 917,
  14463. bottom: 0.017
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "\"Incognito\"",
  14470. height: math.unit(3, "meters")
  14471. },
  14472. {
  14473. name: "Strolling Size",
  14474. height: math.unit(15, "km")
  14475. },
  14476. {
  14477. name: "Larger Strolling Size",
  14478. height: math.unit(400, "km")
  14479. },
  14480. {
  14481. name: "Preferred Size",
  14482. height: math.unit(5000, "km")
  14483. },
  14484. {
  14485. name: "True Size",
  14486. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14487. default: true
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14493. {
  14494. front: {
  14495. height: math.unit(15, "feet"),
  14496. weight: math.unit(880, "kg"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/nightraver/front.svg",
  14500. extra: 2444 / 2160,
  14501. bottom: 0.027
  14502. }
  14503. },
  14504. back: {
  14505. height: math.unit(15, "feet"),
  14506. weight: math.unit(880, "kg"),
  14507. name: "Back",
  14508. image: {
  14509. source: "./media/characters/nightraver/back.svg",
  14510. extra: 2309 / 2180,
  14511. bottom: 0.005
  14512. }
  14513. },
  14514. sole: {
  14515. height: math.unit(2.878, "feet"),
  14516. name: "Sole",
  14517. image: {
  14518. source: "./media/characters/nightraver/sole.svg"
  14519. }
  14520. },
  14521. foot: {
  14522. height: math.unit(2.285, "feet"),
  14523. name: "Foot",
  14524. image: {
  14525. source: "./media/characters/nightraver/foot.svg"
  14526. }
  14527. },
  14528. maw: {
  14529. height: math.unit(2.67, "feet"),
  14530. name: "Maw",
  14531. image: {
  14532. source: "./media/characters/nightraver/maw.svg"
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Micro",
  14539. height: math.unit(1, "cm")
  14540. },
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(15, "feet"),
  14544. default: true
  14545. },
  14546. {
  14547. name: "Macro",
  14548. height: math.unit(300, "feet")
  14549. },
  14550. {
  14551. name: "Megamacro",
  14552. height: math.unit(300, "miles")
  14553. },
  14554. {
  14555. name: "Gigamacro",
  14556. height: math.unit(10000, "miles")
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14562. {
  14563. side: {
  14564. height: math.unit(2, "inches"),
  14565. weight: math.unit(5, "grams"),
  14566. name: "Side",
  14567. image: {
  14568. source: "./media/characters/arc/side.svg"
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Micro",
  14575. height: math.unit(2, "inches"),
  14576. default: true
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(1.1938, "meters"),
  14585. weight: math.unit(54, "kg"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/nebula-shahar/front.svg",
  14589. extra: 1642 / 1436,
  14590. bottom: 0.06
  14591. }
  14592. },
  14593. },
  14594. [
  14595. {
  14596. name: "Megamicro",
  14597. height: math.unit(0.3, "mm")
  14598. },
  14599. {
  14600. name: "Micro",
  14601. height: math.unit(3, "cm")
  14602. },
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(138, "cm"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Macro",
  14610. height: math.unit(30, "m")
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14616. {
  14617. front: {
  14618. height: math.unit(5.24, "feet"),
  14619. weight: math.unit(150, "lb"),
  14620. name: "Front",
  14621. image: {
  14622. source: "./media/characters/shayla/front.svg",
  14623. extra: 1512 / 1414,
  14624. bottom: 0.01
  14625. }
  14626. },
  14627. back: {
  14628. height: math.unit(5.24, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Back",
  14631. image: {
  14632. source: "./media/characters/shayla/back.svg",
  14633. extra: 1512 / 1414
  14634. }
  14635. },
  14636. hand: {
  14637. height: math.unit(0.7781496062992126, "feet"),
  14638. name: "Hand",
  14639. image: {
  14640. source: "./media/characters/shayla/hand.svg"
  14641. }
  14642. },
  14643. foot: {
  14644. height: math.unit(1.4206036745406823, "feet"),
  14645. name: "Foot",
  14646. image: {
  14647. source: "./media/characters/shayla/foot.svg"
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Micro",
  14654. height: math.unit(0.32, "feet")
  14655. },
  14656. {
  14657. name: "Normal",
  14658. height: math.unit(5.24, "feet"),
  14659. default: true
  14660. },
  14661. {
  14662. name: "Macro",
  14663. height: math.unit(492.12, "feet")
  14664. },
  14665. {
  14666. name: "Megamacro",
  14667. height: math.unit(186.41, "miles")
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(2.2, "m"),
  14676. weight: math.unit(120, "kg"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/pia-jr/front.svg",
  14680. extra: 1000 / 970,
  14681. bottom: 0.035
  14682. }
  14683. },
  14684. hand: {
  14685. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14686. name: "Hand",
  14687. image: {
  14688. source: "./media/characters/pia-jr/hand.svg"
  14689. }
  14690. },
  14691. paw: {
  14692. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14693. name: "Paw",
  14694. image: {
  14695. source: "./media/characters/pia-jr/paw.svg"
  14696. }
  14697. },
  14698. },
  14699. [
  14700. {
  14701. name: "Micro",
  14702. height: math.unit(1.2, "cm")
  14703. },
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(2.2, "m"),
  14707. default: true
  14708. },
  14709. {
  14710. name: "Macro",
  14711. height: math.unit(180, "m")
  14712. },
  14713. {
  14714. name: "Megamacro",
  14715. height: math.unit(420, "km")
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14721. {
  14722. front: {
  14723. height: math.unit(2, "m"),
  14724. weight: math.unit(115, "kg"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/pia-sr/front.svg",
  14728. extra: 760 / 730,
  14729. bottom: 0.015
  14730. }
  14731. },
  14732. back: {
  14733. height: math.unit(2, "m"),
  14734. weight: math.unit(115, "kg"),
  14735. name: "Back",
  14736. image: {
  14737. source: "./media/characters/pia-sr/back.svg",
  14738. extra: 760 / 730,
  14739. bottom: 0.01
  14740. }
  14741. },
  14742. hand: {
  14743. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14744. name: "Hand",
  14745. image: {
  14746. source: "./media/characters/pia-sr/hand.svg"
  14747. }
  14748. },
  14749. foot: {
  14750. height: math.unit(1.83, "feet"),
  14751. name: "Foot",
  14752. image: {
  14753. source: "./media/characters/pia-sr/foot.svg"
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Micro",
  14760. height: math.unit(88, "mm")
  14761. },
  14762. {
  14763. name: "Normal",
  14764. height: math.unit(2, "m"),
  14765. default: true
  14766. },
  14767. {
  14768. name: "Macro",
  14769. height: math.unit(200, "m")
  14770. },
  14771. {
  14772. name: "Megamacro",
  14773. height: math.unit(420, "km")
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(8 + 2 / 12, "feet"),
  14782. weight: math.unit(300, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/kibibyte/front.svg",
  14786. extra: 2221 / 2098,
  14787. bottom: 0.04
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(8 + 2 / 12, "feet"),
  14795. default: true
  14796. },
  14797. {
  14798. name: "Socialable Macro",
  14799. height: math.unit(50, "feet")
  14800. },
  14801. {
  14802. name: "Macro",
  14803. height: math.unit(300, "feet")
  14804. },
  14805. {
  14806. name: "Megamacro",
  14807. height: math.unit(500, "miles")
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(6, "feet"),
  14816. weight: math.unit(150, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/felix/front.svg",
  14820. extra: 762 / 722,
  14821. bottom: 0.02
  14822. }
  14823. },
  14824. frontClothed: {
  14825. height: math.unit(6, "feet"),
  14826. weight: math.unit(150, "lb"),
  14827. name: "Front (Clothed)",
  14828. image: {
  14829. source: "./media/characters/felix/front-clothed.svg",
  14830. extra: 762 / 722,
  14831. bottom: 0.02
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(6 + 8 / 12, "feet"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(2600, "feet")
  14844. },
  14845. {
  14846. name: "Megamacro",
  14847. height: math.unit(450, "miles")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6 + 1 / 12, "feet"),
  14856. weight: math.unit(250, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/tobo/front.svg",
  14860. extra: 608 / 586,
  14861. bottom: 0.023
  14862. }
  14863. },
  14864. back: {
  14865. height: math.unit(6 + 1 / 12, "feet"),
  14866. weight: math.unit(250, "lb"),
  14867. name: "Back",
  14868. image: {
  14869. source: "./media/characters/tobo/back.svg",
  14870. extra: 608 / 586
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Nano",
  14877. height: math.unit(2, "nm")
  14878. },
  14879. {
  14880. name: "Megamicro",
  14881. height: math.unit(0.1, "mm")
  14882. },
  14883. {
  14884. name: "Micro",
  14885. height: math.unit(1, "inch"),
  14886. default: true
  14887. },
  14888. {
  14889. name: "Human-sized",
  14890. height: math.unit(6 + 1 / 12, "feet")
  14891. },
  14892. {
  14893. name: "Macro",
  14894. height: math.unit(250, "feet")
  14895. },
  14896. {
  14897. name: "Megamacro",
  14898. height: math.unit(75, "miles")
  14899. },
  14900. {
  14901. name: "Texas-sized",
  14902. height: math.unit(750, "miles")
  14903. },
  14904. {
  14905. name: "Teramacro",
  14906. height: math.unit(50000, "miles")
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(6, "feet"),
  14915. weight: math.unit(269, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/danny-kapowsky/front.svg",
  14919. extra: 766 / 736,
  14920. bottom: 0.044
  14921. }
  14922. },
  14923. back: {
  14924. height: math.unit(6, "feet"),
  14925. weight: math.unit(269, "lb"),
  14926. name: "Back",
  14927. image: {
  14928. source: "./media/characters/danny-kapowsky/back.svg",
  14929. extra: 797 / 760,
  14930. bottom: 0.025
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Macro",
  14937. height: math.unit(150, "feet"),
  14938. default: true
  14939. },
  14940. {
  14941. name: "Macro+",
  14942. height: math.unit(200, "feet")
  14943. },
  14944. {
  14945. name: "Macro++",
  14946. height: math.unit(300, "feet")
  14947. },
  14948. {
  14949. name: "Macro+++",
  14950. height: math.unit(400, "feet")
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14956. {
  14957. side: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(170, "lb"),
  14960. name: "Side",
  14961. image: {
  14962. source: "./media/characters/finn/side.svg",
  14963. extra: 1953 / 1807,
  14964. bottom: 0.057
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Megamacro",
  14971. height: math.unit(14445, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(5 + 6 / 12, "feet"),
  14981. weight: math.unit(125, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/roy/front.svg",
  14985. extra: 1,
  14986. bottom: 0.11
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Micro",
  14993. height: math.unit(3, "inches"),
  14994. default: true
  14995. },
  14996. {
  14997. name: "Normal",
  14998. height: math.unit(5 + 6 / 12, "feet")
  14999. },
  15000. {
  15001. name: "Lesser Macro",
  15002. height: math.unit(60, "feet")
  15003. },
  15004. {
  15005. name: "Greater Macro",
  15006. height: math.unit(120, "feet")
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(100, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/aevsivs/front.svg",
  15019. extra: 1,
  15020. bottom: 0.03
  15021. }
  15022. },
  15023. back: {
  15024. height: math.unit(6, "feet"),
  15025. weight: math.unit(100, "lb"),
  15026. name: "Back",
  15027. image: {
  15028. source: "./media/characters/aevsivs/back.svg"
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Micro",
  15035. height: math.unit(2, "inches"),
  15036. default: true
  15037. },
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(5, "feet")
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(5 + 7 / 12, "feet"),
  15049. weight: math.unit(159, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/hildegard/front.svg",
  15053. extra: 289 / 269,
  15054. bottom: 7.63 / 297.8
  15055. }
  15056. },
  15057. back: {
  15058. height: math.unit(5 + 7 / 12, "feet"),
  15059. weight: math.unit(159, "lb"),
  15060. name: "Back",
  15061. image: {
  15062. source: "./media/characters/hildegard/back.svg",
  15063. extra: 280 / 260,
  15064. bottom: 2.3 / 282
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Normal",
  15071. height: math.unit(5 + 7 / 12, "feet"),
  15072. default: true
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15078. {
  15079. bernard: {
  15080. height: math.unit(2 + 7 / 12, "feet"),
  15081. weight: math.unit(66, "lb"),
  15082. name: "Bernard",
  15083. rename: true,
  15084. image: {
  15085. source: "./media/characters/bernard-wilder/bernard.svg",
  15086. extra: 192 / 128,
  15087. bottom: 0.05
  15088. }
  15089. },
  15090. wilder: {
  15091. height: math.unit(5 + 8 / 12, "feet"),
  15092. weight: math.unit(143, "lb"),
  15093. name: "Wilder",
  15094. rename: true,
  15095. image: {
  15096. source: "./media/characters/bernard-wilder/wilder.svg",
  15097. extra: 361 / 312,
  15098. bottom: 0.02
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(2 + 7 / 12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15112. {
  15113. anthro: {
  15114. height: math.unit(6 + 1 / 12, "feet"),
  15115. weight: math.unit(155, "lb"),
  15116. name: "Anthro",
  15117. image: {
  15118. source: "./media/characters/hearth/anthro.svg",
  15119. extra: 1178/1136,
  15120. bottom: 28/1206
  15121. }
  15122. },
  15123. feral: {
  15124. height: math.unit(3.78, "feet"),
  15125. weight: math.unit(35, "kg"),
  15126. name: "Feral",
  15127. image: {
  15128. source: "./media/characters/hearth/feral.svg",
  15129. extra: 153 / 135,
  15130. bottom: 0.03
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(6 + 1 / 12, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(182, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/ingrid/front.svg",
  15151. extra: 294 / 268,
  15152. bottom: 0.027
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(6, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15166. {
  15167. eevee: {
  15168. height: math.unit(2 + 10 / 12, "feet"),
  15169. weight: math.unit(86, "lb"),
  15170. name: "Malgam",
  15171. image: {
  15172. source: "./media/characters/malgam/eevee.svg",
  15173. extra: 952/784,
  15174. bottom: 38/990
  15175. }
  15176. },
  15177. sylveon: {
  15178. height: math.unit(4, "feet"),
  15179. weight: math.unit(101, "lb"),
  15180. name: "Future Malgam",
  15181. rename: true,
  15182. image: {
  15183. source: "./media/characters/malgam/sylveon.svg",
  15184. extra: 371 / 325,
  15185. bottom: 0.015
  15186. }
  15187. },
  15188. gigantamax: {
  15189. height: math.unit(50, "feet"),
  15190. name: "Gigantamax Malgam",
  15191. rename: true,
  15192. image: {
  15193. source: "./media/characters/malgam/gigantamax.svg"
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Normal",
  15200. height: math.unit(2 + 10 / 12, "feet"),
  15201. default: true
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15207. {
  15208. front: {
  15209. height: math.unit(5 + 11 / 12, "feet"),
  15210. weight: math.unit(188, "lb"),
  15211. name: "Front",
  15212. image: {
  15213. source: "./media/characters/fleur/front.svg",
  15214. extra: 309 / 283,
  15215. bottom: 0.007
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Normal",
  15222. height: math.unit(5 + 11 / 12, "feet"),
  15223. default: true
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15229. {
  15230. front: {
  15231. height: math.unit(5 + 4 / 12, "feet"),
  15232. weight: math.unit(122, "lb"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/jude/front.svg",
  15236. extra: 288 / 273,
  15237. bottom: 0.03
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Normal",
  15244. height: math.unit(5 + 4 / 12, "feet"),
  15245. default: true
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(5 + 11 / 12, "feet"),
  15254. weight: math.unit(190, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/seara/front.svg",
  15258. extra: 1,
  15259. bottom: 0.05
  15260. }
  15261. },
  15262. },
  15263. [
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(5 + 11 / 12, "feet"),
  15267. default: true
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(16 + 5 / 12, "feet"),
  15276. weight: math.unit(524, "lb"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/caspian/front.svg",
  15280. extra: 1,
  15281. bottom: 0.04
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(16 + 5 / 12, "feet"),
  15289. default: true
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(5 + 7 / 12, "feet"),
  15298. weight: math.unit(170, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/mika/front.svg",
  15302. extra: 1,
  15303. bottom: 0.016
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(5 + 7 / 12, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(6 + 2 / 12, "feet"),
  15320. weight: math.unit(268, "lb"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/sol/front.svg",
  15324. extra: 247 / 231,
  15325. bottom: 0.05
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Normal",
  15332. height: math.unit(6 + 2 / 12, "feet"),
  15333. default: true
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15339. {
  15340. buizel: {
  15341. height: math.unit(2 + 5 / 12, "feet"),
  15342. weight: math.unit(87, "lb"),
  15343. name: "Buizel",
  15344. image: {
  15345. source: "./media/characters/umiko/buizel.svg",
  15346. extra: 172 / 157,
  15347. bottom: 0.01
  15348. }
  15349. },
  15350. floatzel: {
  15351. height: math.unit(5 + 9 / 12, "feet"),
  15352. weight: math.unit(250, "lb"),
  15353. name: "Floatzel",
  15354. image: {
  15355. source: "./media/characters/umiko/floatzel.svg",
  15356. extra: 262 / 248
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(2 + 5 / 12, "feet"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6 + 2 / 12, "feet"),
  15373. weight: math.unit(146, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/iliac/front.svg",
  15377. extra: 389 / 365,
  15378. bottom: 0.035
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(6 + 2 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(6, "feet"),
  15395. weight: math.unit(170, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/topaz/front.svg",
  15399. extra: 317 / 303,
  15400. bottom: 0.055
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(6, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(5 + 11 / 12, "feet"),
  15417. weight: math.unit(144, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/gabriel/front.svg",
  15421. extra: 285 / 262,
  15422. bottom: 0.004
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(5 + 11 / 12, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15436. {
  15437. side: {
  15438. height: math.unit(6 + 5 / 12, "feet"),
  15439. weight: math.unit(300, "lb"),
  15440. name: "Side",
  15441. image: {
  15442. source: "./media/characters/tempest-suicune/side.svg",
  15443. extra: 195 / 154,
  15444. bottom: 0.04
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(6 + 5 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(7 + 2 / 12, "feet"),
  15461. weight: math.unit(322, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/vulcan/front.svg",
  15465. extra: 154 / 147,
  15466. bottom: 0.04
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(7 + 2 / 12, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(5 + 10 / 12, "feet"),
  15483. weight: math.unit(264, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/gault/front.svg",
  15487. extra: 161 / 140,
  15488. bottom: 0.028
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(5 + 10 / 12, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/shard/front.svg",
  15509. extra: 273 / 238,
  15510. bottom: 0.02
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(3 + 6 / 12, "feet"),
  15518. default: true
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(5 + 11 / 12, "feet"),
  15527. weight: math.unit(146, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/ashe/front.svg",
  15531. extra: 400 / 373,
  15532. bottom: 0.01
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(5 + 11 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(5 + 5 / 12, "feet"),
  15549. weight: math.unit(135, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/beatrix/front.svg",
  15553. extra: 392 / 379,
  15554. bottom: 0.01
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(6, "feet"),
  15562. default: true
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(6 + 2/12, "feet"),
  15571. weight: math.unit(135, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/ignatius/front.svg",
  15575. extra: 1380/1259,
  15576. bottom: 27/1407
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(6 + 2/12, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(6 + 2 / 12, "feet"),
  15593. weight: math.unit(138, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/mei-li/front.svg",
  15597. extra: 237 / 229,
  15598. bottom: 0.03
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(6 + 2 / 12, "feet"),
  15606. default: true
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(2 + 4 / 12, "feet"),
  15615. weight: math.unit(62, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/puru/front.svg",
  15619. extra: 206 / 149,
  15620. bottom: 0.06
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Normal",
  15627. height: math.unit(2 + 4 / 12, "feet"),
  15628. default: true
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15634. {
  15635. anthro: {
  15636. height: math.unit(5 + 8/12, "feet"),
  15637. weight: math.unit(200, "lb"),
  15638. energyNeed: math.unit(2000, "kcal"),
  15639. name: "Anthro",
  15640. image: {
  15641. source: "./media/characters/kee/anthro.svg",
  15642. extra: 3251/3184,
  15643. bottom: 250/3501
  15644. }
  15645. },
  15646. taur: {
  15647. height: math.unit(11, "feet"),
  15648. weight: math.unit(500, "lb"),
  15649. energyNeed: math.unit(5000, "kcal"),
  15650. name: "Taur",
  15651. image: {
  15652. source: "./media/characters/kee/taur.svg",
  15653. extra: 1362/1320,
  15654. bottom: 83/1445
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(5 + 8/12, "feet"),
  15662. default: true
  15663. },
  15664. {
  15665. name: "Macro",
  15666. height: math.unit(35, "feet")
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15672. {
  15673. anthro: {
  15674. height: math.unit(7, "feet"),
  15675. weight: math.unit(190, "lb"),
  15676. name: "Anthro",
  15677. image: {
  15678. source: "./media/characters/cobalt-dracha/anthro.svg",
  15679. extra: 231 / 225,
  15680. bottom: 0.04
  15681. }
  15682. },
  15683. feral: {
  15684. height: math.unit(9 + 7 / 12, "feet"),
  15685. weight: math.unit(294, "lb"),
  15686. name: "Feral",
  15687. image: {
  15688. source: "./media/characters/cobalt-dracha/feral.svg",
  15689. extra: 692 / 633,
  15690. bottom: 0.05
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(7, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15704. {
  15705. fallen: {
  15706. height: math.unit(11 + 8 / 12, "feet"),
  15707. weight: math.unit(485, "lb"),
  15708. name: "Java (Fallen)",
  15709. rename: true,
  15710. image: {
  15711. source: "./media/characters/java/fallen.svg",
  15712. extra: 226 / 208,
  15713. bottom: 0.005
  15714. }
  15715. },
  15716. godkin: {
  15717. height: math.unit(10 + 6 / 12, "feet"),
  15718. weight: math.unit(328, "lb"),
  15719. name: "Java (Godkin)",
  15720. rename: true,
  15721. image: {
  15722. source: "./media/characters/java/godkin.svg",
  15723. extra: 1104/1068,
  15724. bottom: 36/1140
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(11 + 8 / 12, "feet"),
  15732. default: true
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15738. {
  15739. front: {
  15740. height: math.unit(5 + 9 / 12, "feet"),
  15741. weight: math.unit(170, "lb"),
  15742. name: "Front",
  15743. image: {
  15744. source: "./media/characters/purna/front.svg",
  15745. extra: 239 / 229,
  15746. bottom: 0.01
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(5 + 9 / 12, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(5 + 9 / 12, "feet"),
  15763. weight: math.unit(142, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/kuva/front.svg",
  15767. extra: 281 / 271,
  15768. bottom: 0.006
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(5 + 9 / 12, "feet"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15782. {
  15783. anthro: {
  15784. height: math.unit(9 + 2 / 12, "feet"),
  15785. weight: math.unit(270, "lb"),
  15786. name: "Anthro",
  15787. image: {
  15788. source: "./media/characters/embra/anthro.svg",
  15789. extra: 200 / 187,
  15790. bottom: 0.02
  15791. }
  15792. },
  15793. feral: {
  15794. height: math.unit(18 + 8 / 12, "feet"),
  15795. weight: math.unit(576, "lb"),
  15796. name: "Feral",
  15797. image: {
  15798. source: "./media/characters/embra/feral.svg",
  15799. extra: 152 / 137,
  15800. bottom: 0.037
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(9 + 2 / 12, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15814. {
  15815. anthro: {
  15816. height: math.unit(10 + 9 / 12, "feet"),
  15817. weight: math.unit(224, "lb"),
  15818. name: "Anthro",
  15819. image: {
  15820. source: "./media/characters/grottos/anthro.svg",
  15821. extra: 350 / 332,
  15822. bottom: 0.045
  15823. }
  15824. },
  15825. feral: {
  15826. height: math.unit(20 + 7 / 12, "feet"),
  15827. weight: math.unit(629, "lb"),
  15828. name: "Feral",
  15829. image: {
  15830. source: "./media/characters/grottos/feral.svg",
  15831. extra: 207 / 190,
  15832. bottom: 0.05
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(10 + 9 / 12, "feet"),
  15840. default: true
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15846. {
  15847. anthro: {
  15848. height: math.unit(9 + 6 / 12, "feet"),
  15849. weight: math.unit(298, "lb"),
  15850. name: "Anthro",
  15851. image: {
  15852. source: "./media/characters/frifna/anthro.svg",
  15853. extra: 282 / 269,
  15854. bottom: 0.015
  15855. }
  15856. },
  15857. feral: {
  15858. height: math.unit(16 + 2 / 12, "feet"),
  15859. weight: math.unit(624, "lb"),
  15860. name: "Feral",
  15861. image: {
  15862. source: "./media/characters/frifna/feral.svg"
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(9 + 6 / 12, "feet"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(6 + 2 / 12, "feet"),
  15879. weight: math.unit(168, "lb"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/elise/front.svg",
  15883. extra: 276 / 271
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(6 + 2 / 12, "feet"),
  15891. default: true
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(5 + 10 / 12, "feet"),
  15900. weight: math.unit(210, "lb"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/glade/front.svg",
  15904. extra: 258 / 247,
  15905. bottom: 0.008
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(5 + 10 / 12, "feet"),
  15913. default: true
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15919. {
  15920. front: {
  15921. height: math.unit(5 + 10 / 12, "feet"),
  15922. weight: math.unit(129, "lb"),
  15923. name: "Front",
  15924. image: {
  15925. source: "./media/characters/rina/front.svg",
  15926. extra: 266 / 255,
  15927. bottom: 0.005
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(5 + 10 / 12, "feet"),
  15935. default: true
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(6 + 1 / 12, "feet"),
  15944. weight: math.unit(192, "lb"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/veronica/front.svg",
  15948. extra: 319 / 309,
  15949. bottom: 0.005
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(6 + 1 / 12, "feet"),
  15957. default: true
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15963. {
  15964. front: {
  15965. height: math.unit(9 + 3 / 12, "feet"),
  15966. weight: math.unit(1100, "lb"),
  15967. name: "Front",
  15968. image: {
  15969. source: "./media/characters/braxton/front.svg",
  15970. extra: 1057 / 984,
  15971. bottom: 0.05
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(9 + 3 / 12, "feet")
  15979. },
  15980. {
  15981. name: "Giant",
  15982. height: math.unit(300, "feet"),
  15983. default: true
  15984. },
  15985. {
  15986. name: "Macro",
  15987. height: math.unit(700, "feet")
  15988. },
  15989. {
  15990. name: "Megamacro",
  15991. height: math.unit(6000, "feet")
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(6 + 7 / 12, "feet"),
  16000. weight: math.unit(150, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/blue-feyonics/front.svg",
  16004. extra: 1403 / 1306,
  16005. bottom: 0.047
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(6 + 7 / 12, "feet"),
  16013. default: true
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16019. {
  16020. front: {
  16021. height: math.unit(1.8, "meters"),
  16022. weight: math.unit(60, "kg"),
  16023. name: "Front",
  16024. image: {
  16025. source: "./media/characters/maxwell/front.svg",
  16026. extra: 2060 / 1873
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Micro",
  16033. height: math.unit(1, "mm")
  16034. },
  16035. {
  16036. name: "Normal",
  16037. height: math.unit(1.8, "meter"),
  16038. default: true
  16039. },
  16040. {
  16041. name: "Macro",
  16042. height: math.unit(30, "meters")
  16043. },
  16044. {
  16045. name: "Megamacro",
  16046. height: math.unit(10, "km")
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(6, "feet"),
  16055. weight: math.unit(150, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/jack/front.svg",
  16059. extra: 1754 / 1640,
  16060. bottom: 0.01
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(80000, "feet"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Max size",
  16072. height: math.unit(10, "lightyears")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16078. {
  16079. urban: {
  16080. height: math.unit(5, "feet"),
  16081. weight: math.unit(240, "lb"),
  16082. name: "Urban",
  16083. image: {
  16084. source: "./media/characters/cafat/urban.svg",
  16085. extra: 1223/1126,
  16086. bottom: 205/1428
  16087. }
  16088. },
  16089. summer: {
  16090. height: math.unit(5, "feet"),
  16091. weight: math.unit(240, "lb"),
  16092. name: "Summer",
  16093. image: {
  16094. source: "./media/characters/cafat/summer.svg",
  16095. extra: 1223/1126,
  16096. bottom: 205/1428
  16097. }
  16098. },
  16099. winter: {
  16100. height: math.unit(5, "feet"),
  16101. weight: math.unit(240, "lb"),
  16102. name: "Winter",
  16103. image: {
  16104. source: "./media/characters/cafat/winter.svg",
  16105. extra: 1223/1126,
  16106. bottom: 205/1428
  16107. }
  16108. },
  16109. lingerie: {
  16110. height: math.unit(5, "feet"),
  16111. weight: math.unit(240, "lb"),
  16112. name: "Lingerie",
  16113. image: {
  16114. source: "./media/characters/cafat/lingerie.svg",
  16115. extra: 1223/1126,
  16116. bottom: 205/1428
  16117. }
  16118. },
  16119. upright: {
  16120. height: math.unit(6.3, "feet"),
  16121. weight: math.unit(240, "lb"),
  16122. name: "Upright",
  16123. image: {
  16124. source: "./media/characters/cafat/upright.svg",
  16125. bottom: 0.01
  16126. }
  16127. },
  16128. uprightFull: {
  16129. height: math.unit(6.3, "feet"),
  16130. weight: math.unit(240, "lb"),
  16131. name: "Upright (Full)",
  16132. image: {
  16133. source: "./media/characters/cafat/upright-full.svg",
  16134. bottom: 0.01
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Small",
  16141. height: math.unit(5, "feet"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Large",
  16146. height: math.unit(13, "feet")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(150, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/verin-raharra/front.svg",
  16159. extra: 5019 / 4835,
  16160. bottom: 0.023
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(7 + 5 / 12, "feet"),
  16168. default: true
  16169. },
  16170. {
  16171. name: "Upsized",
  16172. height: math.unit(20, "feet")
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(7, "feet"),
  16181. weight: math.unit(230, "lb"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/nakata/front.svg",
  16185. extra: 1.005,
  16186. bottom: 0.01
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(7, "feet"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Big",
  16198. height: math.unit(14, "feet")
  16199. },
  16200. {
  16201. name: "Macro",
  16202. height: math.unit(400, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(4.91, "feet"),
  16211. weight: math.unit(100, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/lily/front.svg",
  16215. extra: 1585 / 1415,
  16216. bottom: 0.02
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(4.91, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16230. {
  16231. laying: {
  16232. height: math.unit(4 + 4 / 12, "feet"),
  16233. weight: math.unit(600, "lb"),
  16234. name: "Laying",
  16235. image: {
  16236. source: "./media/characters/sheila/laying.svg",
  16237. extra: 1333 / 1265,
  16238. bottom: 0.16
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(4 + 4 / 12, "feet"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6, "feet"),
  16255. weight: math.unit(190, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/sax/front.svg",
  16259. extra: 1187 / 973,
  16260. bottom: 0.042
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Micro",
  16267. height: math.unit(4, "inches"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/pandora/front.svg",
  16281. extra: 2720 / 2556,
  16282. bottom: 0.015
  16283. }
  16284. },
  16285. back: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Back",
  16289. image: {
  16290. source: "./media/characters/pandora/back.svg",
  16291. extra: 2720 / 2556,
  16292. bottom: 0.01
  16293. }
  16294. },
  16295. beans: {
  16296. height: math.unit(6 / 8, "feet"),
  16297. name: "Beans",
  16298. image: {
  16299. source: "./media/characters/pandora/beans.svg"
  16300. }
  16301. },
  16302. collar: {
  16303. height: math.unit(0.31, "feet"),
  16304. name: "Collar",
  16305. image: {
  16306. source: "./media/characters/pandora/collar.svg"
  16307. }
  16308. },
  16309. skirt: {
  16310. height: math.unit(6, "feet"),
  16311. weight: math.unit(150, "lb"),
  16312. name: "Skirt",
  16313. image: {
  16314. source: "./media/characters/pandora/skirt.svg",
  16315. extra: 1622 / 1525,
  16316. bottom: 0.015
  16317. }
  16318. },
  16319. hoodie: {
  16320. height: math.unit(6, "feet"),
  16321. weight: math.unit(150, "lb"),
  16322. name: "Hoodie",
  16323. image: {
  16324. source: "./media/characters/pandora/hoodie.svg",
  16325. extra: 1622 / 1525,
  16326. bottom: 0.015
  16327. }
  16328. },
  16329. casual: {
  16330. height: math.unit(6, "feet"),
  16331. weight: math.unit(150, "lb"),
  16332. name: "Casual",
  16333. image: {
  16334. source: "./media/characters/pandora/casual.svg",
  16335. extra: 1622 / 1525,
  16336. bottom: 0.015
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(6, "feet")
  16344. },
  16345. {
  16346. name: "Big Steppy",
  16347. height: math.unit(1, "km"),
  16348. default: true
  16349. },
  16350. {
  16351. name: "Galactic Steppy",
  16352. height: math.unit(2, "gigameters")
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16358. {
  16359. side: {
  16360. height: math.unit(10, "feet"),
  16361. weight: math.unit(800, "kg"),
  16362. name: "Side",
  16363. image: {
  16364. source: "./media/characters/venio-darcony/side.svg",
  16365. extra: 1373 / 1003,
  16366. bottom: 0.037
  16367. }
  16368. },
  16369. front: {
  16370. height: math.unit(19, "feet"),
  16371. weight: math.unit(800, "kg"),
  16372. name: "Front",
  16373. image: {
  16374. source: "./media/characters/venio-darcony/front.svg"
  16375. }
  16376. },
  16377. back: {
  16378. height: math.unit(19, "feet"),
  16379. weight: math.unit(800, "kg"),
  16380. name: "Back",
  16381. image: {
  16382. source: "./media/characters/venio-darcony/back.svg"
  16383. }
  16384. },
  16385. sideNsfw: {
  16386. height: math.unit(10, "feet"),
  16387. weight: math.unit(800, "kg"),
  16388. name: "Side (NSFW)",
  16389. image: {
  16390. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16391. extra: 1373 / 1003,
  16392. bottom: 0.037
  16393. }
  16394. },
  16395. frontNsfw: {
  16396. height: math.unit(19, "feet"),
  16397. weight: math.unit(800, "kg"),
  16398. name: "Front (NSFW)",
  16399. image: {
  16400. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16401. }
  16402. },
  16403. backNsfw: {
  16404. height: math.unit(19, "feet"),
  16405. weight: math.unit(800, "kg"),
  16406. name: "Back (NSFW)",
  16407. image: {
  16408. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16409. }
  16410. },
  16411. sideArmored: {
  16412. height: math.unit(10, "feet"),
  16413. weight: math.unit(800, "kg"),
  16414. name: "Side (Armored)",
  16415. image: {
  16416. source: "./media/characters/venio-darcony/side-armored.svg",
  16417. extra: 1373 / 1003,
  16418. bottom: 0.037
  16419. }
  16420. },
  16421. frontArmored: {
  16422. height: math.unit(19, "feet"),
  16423. weight: math.unit(900, "kg"),
  16424. name: "Front (Armored)",
  16425. image: {
  16426. source: "./media/characters/venio-darcony/front-armored.svg"
  16427. }
  16428. },
  16429. backArmored: {
  16430. height: math.unit(19, "feet"),
  16431. weight: math.unit(900, "kg"),
  16432. name: "Back (Armored)",
  16433. image: {
  16434. source: "./media/characters/venio-darcony/back-armored.svg"
  16435. }
  16436. },
  16437. sword: {
  16438. height: math.unit(10, "feet"),
  16439. weight: math.unit(50, "lb"),
  16440. name: "Sword",
  16441. image: {
  16442. source: "./media/characters/venio-darcony/sword.svg"
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(10, "feet")
  16450. },
  16451. {
  16452. name: "Macro",
  16453. height: math.unit(130, "feet"),
  16454. default: true
  16455. },
  16456. {
  16457. name: "Macro+",
  16458. height: math.unit(240, "feet")
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16464. {
  16465. front: {
  16466. height: math.unit(6, "feet"),
  16467. weight: math.unit(150, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/veski/front.svg",
  16471. extra: 1299 / 1225,
  16472. bottom: 0.04
  16473. }
  16474. },
  16475. back: {
  16476. height: math.unit(6, "feet"),
  16477. weight: math.unit(150, "lb"),
  16478. name: "Back",
  16479. image: {
  16480. source: "./media/characters/veski/back.svg",
  16481. extra: 1299 / 1225,
  16482. bottom: 0.008
  16483. }
  16484. },
  16485. maw: {
  16486. height: math.unit(1.5 * 1.21, "feet"),
  16487. name: "Maw",
  16488. image: {
  16489. source: "./media/characters/veski/maw.svg"
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Macro",
  16496. height: math.unit(2, "km"),
  16497. default: true
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(5 + 7 / 12, "feet"),
  16506. name: "Front",
  16507. image: {
  16508. source: "./media/characters/isabelle/front.svg",
  16509. extra: 2130 / 1976,
  16510. bottom: 0.05
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Supermicro",
  16517. height: math.unit(10, "micrometers")
  16518. },
  16519. {
  16520. name: "Micro",
  16521. height: math.unit(1, "inch")
  16522. },
  16523. {
  16524. name: "Tiny",
  16525. height: math.unit(5, "inches")
  16526. },
  16527. {
  16528. name: "Standard",
  16529. height: math.unit(5 + 7 / 12, "inches")
  16530. },
  16531. {
  16532. name: "Macro",
  16533. height: math.unit(80, "meters"),
  16534. default: true
  16535. },
  16536. {
  16537. name: "Megamacro",
  16538. height: math.unit(250, "meters")
  16539. },
  16540. {
  16541. name: "Gigamacro",
  16542. height: math.unit(5, "km")
  16543. },
  16544. {
  16545. name: "Cosmic",
  16546. height: math.unit(2.5e6, "miles")
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(6, "feet"),
  16555. weight: math.unit(150, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/hanzo/front.svg",
  16559. extra: 374 / 344,
  16560. bottom: 0.02
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(8, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16574. {
  16575. front: {
  16576. height: math.unit(7, "feet"),
  16577. weight: math.unit(130, "lb"),
  16578. name: "Front",
  16579. image: {
  16580. source: "./media/characters/anna/front.svg",
  16581. extra: 169 / 145,
  16582. bottom: 0.06
  16583. }
  16584. },
  16585. full: {
  16586. height: math.unit(4.96, "feet"),
  16587. weight: math.unit(220, "lb"),
  16588. name: "Full",
  16589. image: {
  16590. source: "./media/characters/anna/full.svg",
  16591. extra: 138 / 114,
  16592. bottom: 0.15
  16593. }
  16594. },
  16595. tongue: {
  16596. height: math.unit(2.53, "feet"),
  16597. name: "Tongue",
  16598. image: {
  16599. source: "./media/characters/anna/tongue.svg"
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(7, "feet"),
  16607. default: true
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16613. {
  16614. front: {
  16615. height: math.unit(7, "feet"),
  16616. weight: math.unit(150, "lb"),
  16617. name: "Front",
  16618. image: {
  16619. source: "./media/characters/ian-corvid/front.svg",
  16620. extra: 150 / 142,
  16621. bottom: 0.02
  16622. }
  16623. },
  16624. back: {
  16625. height: math.unit(7, "feet"),
  16626. weight: math.unit(150, "lb"),
  16627. name: "Back",
  16628. image: {
  16629. source: "./media/characters/ian-corvid/back.svg",
  16630. extra: 150 / 143,
  16631. bottom: 0.01
  16632. }
  16633. },
  16634. stomping: {
  16635. height: math.unit(7, "feet"),
  16636. weight: math.unit(150, "lb"),
  16637. name: "Stomping",
  16638. image: {
  16639. source: "./media/characters/ian-corvid/stomping.svg",
  16640. extra: 76 / 72
  16641. }
  16642. },
  16643. sitting: {
  16644. height: math.unit(7 / 1.8, "feet"),
  16645. weight: math.unit(150, "lb"),
  16646. name: "Sitting",
  16647. image: {
  16648. source: "./media/characters/ian-corvid/sitting.svg",
  16649. extra: 1400 / 1269,
  16650. bottom: 0.15
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Tiny Microw",
  16657. height: math.unit(1, "inch")
  16658. },
  16659. {
  16660. name: "Microw",
  16661. height: math.unit(6, "inches")
  16662. },
  16663. {
  16664. name: "Crow",
  16665. height: math.unit(7 + 1 / 12, "feet"),
  16666. default: true
  16667. },
  16668. {
  16669. name: "Macrow",
  16670. height: math.unit(176, "feet")
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(5 + 7 / 12, "feet"),
  16679. weight: math.unit(147, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/natalie-kellon/front.svg",
  16683. extra: 1214 / 1141,
  16684. bottom: 0.02
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Micro",
  16691. height: math.unit(1 / 16, "inch")
  16692. },
  16693. {
  16694. name: "Tiny",
  16695. height: math.unit(4, "inches")
  16696. },
  16697. {
  16698. name: "Normal",
  16699. height: math.unit(5 + 7 / 12, "feet"),
  16700. default: true
  16701. },
  16702. {
  16703. name: "Amazon",
  16704. height: math.unit(12, "feet")
  16705. },
  16706. {
  16707. name: "Giantess",
  16708. height: math.unit(160, "meters")
  16709. },
  16710. {
  16711. name: "Titaness",
  16712. height: math.unit(800, "meters")
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16718. {
  16719. front: {
  16720. height: math.unit(6, "feet"),
  16721. weight: math.unit(150, "lb"),
  16722. name: "Front",
  16723. image: {
  16724. source: "./media/characters/alluria/front.svg",
  16725. extra: 806 / 738,
  16726. bottom: 0.01
  16727. }
  16728. },
  16729. side: {
  16730. height: math.unit(6, "feet"),
  16731. weight: math.unit(150, "lb"),
  16732. name: "Side",
  16733. image: {
  16734. source: "./media/characters/alluria/side.svg",
  16735. extra: 800 / 750,
  16736. }
  16737. },
  16738. back: {
  16739. height: math.unit(6, "feet"),
  16740. weight: math.unit(150, "lb"),
  16741. name: "Back",
  16742. image: {
  16743. source: "./media/characters/alluria/back.svg",
  16744. extra: 806 / 738,
  16745. }
  16746. },
  16747. frontMaid: {
  16748. height: math.unit(6, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Front (Maid)",
  16751. image: {
  16752. source: "./media/characters/alluria/front-maid.svg",
  16753. extra: 806 / 738,
  16754. bottom: 0.01
  16755. }
  16756. },
  16757. sideMaid: {
  16758. height: math.unit(6, "feet"),
  16759. weight: math.unit(150, "lb"),
  16760. name: "Side (Maid)",
  16761. image: {
  16762. source: "./media/characters/alluria/side-maid.svg",
  16763. extra: 800 / 750,
  16764. bottom: 0.005
  16765. }
  16766. },
  16767. backMaid: {
  16768. height: math.unit(6, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Back (Maid)",
  16771. image: {
  16772. source: "./media/characters/alluria/back-maid.svg",
  16773. extra: 806 / 738,
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Micro",
  16780. height: math.unit(6, "inches"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(6, "feet"),
  16790. weight: math.unit(150, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/kyle/front.svg",
  16794. extra: 1069 / 962,
  16795. bottom: 77.228 / 1727.45
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Macro",
  16802. height: math.unit(150, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(6, "feet"),
  16812. weight: math.unit(300, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/duncan/front.svg",
  16816. extra: 1650 / 1482,
  16817. bottom: 0.05
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Macro",
  16824. height: math.unit(100, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(5 + 4 / 12, "feet"),
  16834. weight: math.unit(220, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/memory/front.svg",
  16838. extra: 3641 / 3545,
  16839. bottom: 0.03
  16840. }
  16841. },
  16842. back: {
  16843. height: math.unit(5 + 4 / 12, "feet"),
  16844. weight: math.unit(220, "lb"),
  16845. name: "Back",
  16846. image: {
  16847. source: "./media/characters/memory/back.svg",
  16848. extra: 3641 / 3545,
  16849. bottom: 0.025
  16850. }
  16851. },
  16852. frontSkirt: {
  16853. height: math.unit(5 + 4 / 12, "feet"),
  16854. weight: math.unit(220, "lb"),
  16855. name: "Front (Skirt)",
  16856. image: {
  16857. source: "./media/characters/memory/front-skirt.svg",
  16858. extra: 3641 / 3545,
  16859. bottom: 0.03
  16860. }
  16861. },
  16862. frontDress: {
  16863. height: math.unit(5 + 4 / 12, "feet"),
  16864. weight: math.unit(220, "lb"),
  16865. name: "Front (Dress)",
  16866. image: {
  16867. source: "./media/characters/memory/front-dress.svg",
  16868. extra: 3641 / 3545,
  16869. bottom: 0.03
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Micro",
  16876. height: math.unit(6, "inches"),
  16877. default: true
  16878. },
  16879. {
  16880. name: "Normal",
  16881. height: math.unit(5 + 4 / 12, "feet")
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(4 + 11 / 12, "feet"),
  16890. weight: math.unit(100, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/luno/front.svg",
  16894. extra: 1535 / 1487,
  16895. bottom: 0.03
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Micro",
  16902. height: math.unit(3, "inches")
  16903. },
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(4 + 11 / 12, "feet"),
  16907. default: true
  16908. },
  16909. {
  16910. name: "Macro",
  16911. height: math.unit(300, "feet")
  16912. },
  16913. {
  16914. name: "Megamacro",
  16915. height: math.unit(700, "miles")
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16921. {
  16922. front: {
  16923. height: math.unit(6 + 2 / 12, "feet"),
  16924. weight: math.unit(170, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/jamesy/front.svg",
  16928. extra: 440 / 382,
  16929. bottom: 0.005
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Micro",
  16936. height: math.unit(3, "inches")
  16937. },
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(6 + 2 / 12, "feet"),
  16941. default: true
  16942. },
  16943. {
  16944. name: "Macro",
  16945. height: math.unit(300, "feet")
  16946. },
  16947. {
  16948. name: "Megamacro",
  16949. height: math.unit(700, "miles")
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(6, "feet"),
  16958. weight: math.unit(160, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/mark/front.svg",
  16962. extra: 3300 / 3100,
  16963. bottom: 136.42 / 3440.47
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Macro",
  16970. height: math.unit(120, "meters")
  16971. },
  16972. {
  16973. name: "Bigger Macro",
  16974. height: math.unit(350, "meters")
  16975. },
  16976. {
  16977. name: "Megamacro",
  16978. height: math.unit(8, "km"),
  16979. default: true
  16980. },
  16981. {
  16982. name: "Continental",
  16983. height: math.unit(4550, "km")
  16984. },
  16985. {
  16986. name: "Planetary",
  16987. height: math.unit(65000, "km")
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16993. {
  16994. front: {
  16995. height: math.unit(6, "feet"),
  16996. weight: math.unit(400, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/mac/front.svg",
  17000. extra: 1048 / 987.7,
  17001. bottom: 60 / 1107.6,
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Macro",
  17008. height: math.unit(500, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17015. {
  17016. front: {
  17017. height: math.unit(5 + 2 / 12, "feet"),
  17018. weight: math.unit(190, "lb"),
  17019. name: "Front",
  17020. image: {
  17021. source: "./media/characters/bari/front.svg",
  17022. extra: 3156 / 2880,
  17023. bottom: 0.03
  17024. }
  17025. },
  17026. back: {
  17027. height: math.unit(5 + 2 / 12, "feet"),
  17028. weight: math.unit(190, "lb"),
  17029. name: "Back",
  17030. image: {
  17031. source: "./media/characters/bari/back.svg",
  17032. extra: 3260 / 2834,
  17033. bottom: 0.025
  17034. }
  17035. },
  17036. frontPlush: {
  17037. height: math.unit(5 + 2 / 12, "feet"),
  17038. weight: math.unit(190, "lb"),
  17039. name: "Front (Plush)",
  17040. image: {
  17041. source: "./media/characters/bari/front-plush.svg",
  17042. extra: 1112 / 1061,
  17043. bottom: 0.002
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Micro",
  17050. height: math.unit(3, "inches")
  17051. },
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(5 + 2 / 12, "feet"),
  17055. default: true
  17056. },
  17057. {
  17058. name: "Macro",
  17059. height: math.unit(20, "feet")
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(6 + 1 / 12, "feet"),
  17068. weight: math.unit(275, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/hunter-misha-raven/front.svg"
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Mortal",
  17078. height: math.unit(6 + 1 / 12, "feet")
  17079. },
  17080. {
  17081. name: "Divine",
  17082. height: math.unit(1.12134e34, "parsecs"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(6 + 3 / 12, "feet"),
  17092. weight: math.unit(220, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/max-calore/front.svg",
  17096. extra: 1700 / 1648,
  17097. bottom: 0.01
  17098. }
  17099. },
  17100. back: {
  17101. height: math.unit(6 + 3 / 12, "feet"),
  17102. weight: math.unit(220, "lb"),
  17103. name: "Back",
  17104. image: {
  17105. source: "./media/characters/max-calore/back.svg",
  17106. extra: 1700 / 1648,
  17107. bottom: 0.01
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(6 + 3 / 12, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17121. {
  17122. side: {
  17123. height: math.unit(2 + 8 / 12, "feet"),
  17124. weight: math.unit(99, "lb"),
  17125. name: "Side",
  17126. image: {
  17127. source: "./media/characters/aspen/side.svg",
  17128. extra: 152 / 138,
  17129. bottom: 0.032
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(2 + 8 / 12, "feet"),
  17137. default: true
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17143. {
  17144. side: {
  17145. height: math.unit(3 + 2 / 12, "feet"),
  17146. weight: math.unit(224, "lb"),
  17147. name: "Side",
  17148. image: {
  17149. source: "./media/characters/sheila-feral-wolf/side.svg",
  17150. extra: 179 / 166,
  17151. bottom: 0.03
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(3 + 2 / 12, "feet"),
  17159. default: true
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17165. {
  17166. side: {
  17167. height: math.unit(1 + 9 / 12, "feet"),
  17168. weight: math.unit(38, "lb"),
  17169. name: "Side",
  17170. image: {
  17171. source: "./media/characters/michelle/side.svg",
  17172. extra: 147 / 136.7,
  17173. bottom: 0.03
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(1 + 9 / 12, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(1.54, "feet"),
  17190. weight: math.unit(50, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/nino/front.svg"
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(1.54, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(1, "feet"),
  17210. weight: math.unit(16, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/viola/front.svg"
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(1, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(6 + 5 / 12, "feet"),
  17230. weight: math.unit(580, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/atlas/front.svg",
  17234. extra: 298.5 / 290,
  17235. bottom: 0.015
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(6 + 5 / 12, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17249. {
  17250. side: {
  17251. height: math.unit(1 + 10 / 12, "feet"),
  17252. weight: math.unit(25, "lb"),
  17253. name: "Side",
  17254. image: {
  17255. source: "./media/characters/davy/side.svg",
  17256. extra: 200 / 170,
  17257. bottom: 0.01
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(1 + 10 / 12, "feet"),
  17265. default: true
  17266. },
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17271. {
  17272. side: {
  17273. height: math.unit(4 + 8 / 12, "feet"),
  17274. weight: math.unit(166, "lb"),
  17275. name: "Side",
  17276. image: {
  17277. source: "./media/characters/fiona/side.svg",
  17278. extra: 232 / 220,
  17279. bottom: 0.03
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(4 + 8 / 12, "feet"),
  17287. default: true
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17293. {
  17294. front: {
  17295. height: math.unit(3, "feet"),
  17296. weight: math.unit(100, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/lyla/front.svg",
  17300. bottom: 0.1
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(3, "feet"),
  17308. default: true
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17314. {
  17315. side: {
  17316. height: math.unit(1.8, "feet"),
  17317. weight: math.unit(44, "lb"),
  17318. name: "Side",
  17319. image: {
  17320. source: "./media/characters/perseus/side.svg",
  17321. bottom: 0.21
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(1.8, "feet"),
  17329. default: true
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17335. {
  17336. side: {
  17337. height: math.unit(4 + 2 / 12, "feet"),
  17338. weight: math.unit(20, "lb"),
  17339. name: "Side",
  17340. image: {
  17341. source: "./media/characters/remus/side.svg"
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(4 + 2 / 12, "feet"),
  17349. default: true
  17350. },
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17355. {
  17356. front: {
  17357. height: math.unit(4 + 11 / 12, "feet"),
  17358. weight: math.unit(114, "lb"),
  17359. name: "Front",
  17360. image: {
  17361. source: "./media/characters/raf/front.svg",
  17362. extra: 1504/1339,
  17363. bottom: 26/1530
  17364. }
  17365. },
  17366. side: {
  17367. height: math.unit(4 + 11 / 12, "feet"),
  17368. weight: math.unit(114, "lb"),
  17369. name: "Side",
  17370. image: {
  17371. source: "./media/characters/raf/side.svg",
  17372. extra: 1466/1316,
  17373. bottom: 29/1495
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Micro",
  17380. height: math.unit(2, "inches")
  17381. },
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(4 + 11 / 12, "feet"),
  17385. default: true
  17386. },
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(70, "feet")
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(1.5, "meters"),
  17398. weight: math.unit(68, "kg"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/liam-einarr/front.svg",
  17402. extra: 2822 / 2666
  17403. }
  17404. },
  17405. back: {
  17406. height: math.unit(1.5, "meters"),
  17407. weight: math.unit(68, "kg"),
  17408. name: "Back",
  17409. image: {
  17410. source: "./media/characters/liam-einarr/back.svg",
  17411. extra: 2822 / 2666,
  17412. bottom: 0.015
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(1.5, "meters"),
  17420. default: true
  17421. },
  17422. {
  17423. name: "Macro",
  17424. height: math.unit(150, "meters")
  17425. },
  17426. {
  17427. name: "Megamacro",
  17428. height: math.unit(35, "km")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(6, "feet"),
  17437. weight: math.unit(75, "kg"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/linda/front.svg",
  17441. extra: 930 / 874,
  17442. bottom: 0.004
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(6, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(6 + 8 / 12, "feet"),
  17459. weight: math.unit(220, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/caylex/front.svg",
  17463. extra: 821 / 772,
  17464. bottom: 0.07
  17465. }
  17466. },
  17467. back: {
  17468. height: math.unit(6 + 8 / 12, "feet"),
  17469. weight: math.unit(220, "lb"),
  17470. name: "Back",
  17471. image: {
  17472. source: "./media/characters/caylex/back.svg",
  17473. extra: 821 / 772,
  17474. bottom: 0.022
  17475. }
  17476. },
  17477. hand: {
  17478. height: math.unit(1.25, "feet"),
  17479. name: "Hand",
  17480. image: {
  17481. source: "./media/characters/caylex/hand.svg"
  17482. }
  17483. },
  17484. foot: {
  17485. height: math.unit(1.6, "feet"),
  17486. name: "Foot",
  17487. image: {
  17488. source: "./media/characters/caylex/foot.svg"
  17489. }
  17490. },
  17491. armored: {
  17492. height: math.unit(6 + 8 / 12, "feet"),
  17493. weight: math.unit(250, "lb"),
  17494. name: "Armored",
  17495. image: {
  17496. source: "./media/characters/caylex/armored.svg",
  17497. extra: 1420 / 1310,
  17498. bottom: 0.045
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(6 + 8 / 12, "feet"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Normal+",
  17510. height: math.unit(12, "feet")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(7 + 6 / 12, "feet"),
  17519. weight: math.unit(288, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/alana/front.svg",
  17523. extra: 679 / 653,
  17524. bottom: 22.5 / 701
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(7 + 6 / 12, "feet")
  17532. },
  17533. {
  17534. name: "Large",
  17535. height: math.unit(50, "feet")
  17536. },
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(100, "feet"),
  17540. default: true
  17541. },
  17542. {
  17543. name: "Macro+",
  17544. height: math.unit(200, "feet")
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17550. {
  17551. front: {
  17552. height: math.unit(6 + 1 / 12, "feet"),
  17553. weight: math.unit(210, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/hasani/front.svg",
  17557. extra: 244 / 232,
  17558. bottom: 0.01
  17559. }
  17560. },
  17561. back: {
  17562. height: math.unit(6 + 1 / 12, "feet"),
  17563. weight: math.unit(210, "lb"),
  17564. name: "Back",
  17565. image: {
  17566. source: "./media/characters/hasani/back.svg",
  17567. extra: 244 / 232,
  17568. bottom: 0.01
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(6 + 1 / 12, "feet")
  17576. },
  17577. {
  17578. name: "Macro",
  17579. height: math.unit(175, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(1.82, "meters"),
  17589. weight: math.unit(140, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/nita/front.svg",
  17593. extra: 2473 / 2363,
  17594. bottom: 0.01
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(1.82, "m")
  17602. },
  17603. {
  17604. name: "Macro",
  17605. height: math.unit(300, "m")
  17606. },
  17607. {
  17608. name: "Mistake Canon",
  17609. height: math.unit(0.5, "miles"),
  17610. default: true
  17611. },
  17612. {
  17613. name: "Big Mistake",
  17614. height: math.unit(13, "miles")
  17615. },
  17616. {
  17617. name: "Playing God",
  17618. height: math.unit(2450, "miles")
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17624. {
  17625. front: {
  17626. height: math.unit(4, "feet"),
  17627. weight: math.unit(120, "lb"),
  17628. name: "Front",
  17629. image: {
  17630. source: "./media/characters/shiriko/front.svg",
  17631. extra: 970/934,
  17632. bottom: 5/975
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Normal",
  17639. height: math.unit(4, "feet"),
  17640. default: true
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(6, "feet"),
  17649. name: "front",
  17650. image: {
  17651. source: "./media/characters/deja/front.svg",
  17652. extra: 926 / 840,
  17653. bottom: 0.07
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Planck Length",
  17660. height: math.unit(1.6e-35, "meters")
  17661. },
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(30.48, "meters"),
  17665. default: true
  17666. },
  17667. {
  17668. name: "Universal",
  17669. height: math.unit(8.8e26, "meters")
  17670. },
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17675. {
  17676. side: {
  17677. height: math.unit(8, "feet"),
  17678. weight: math.unit(6300, "lb"),
  17679. name: "Side",
  17680. image: {
  17681. source: "./media/characters/anima/side.svg",
  17682. bottom: 0.035
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(8, "feet"),
  17690. default: true
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(8, "feet"),
  17699. weight: math.unit(350, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/bianca/front.svg",
  17703. extra: 234 / 225,
  17704. bottom: 0.03
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(8, "feet"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(6, "feet"),
  17721. weight: math.unit(150, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/adinia/front.svg",
  17725. extra: 1845 / 1672,
  17726. bottom: 0.02
  17727. }
  17728. },
  17729. back: {
  17730. height: math.unit(6, "feet"),
  17731. weight: math.unit(150, "lb"),
  17732. name: "Back",
  17733. image: {
  17734. source: "./media/characters/adinia/back.svg",
  17735. extra: 1845 / 1672,
  17736. bottom: 0.002
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Normal",
  17743. height: math.unit(11 + 5 / 12, "feet"),
  17744. default: true
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17750. {
  17751. front: {
  17752. height: math.unit(3, "meters"),
  17753. weight: math.unit(200, "kg"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/lykasa/front.svg",
  17757. extra: 1076 / 976,
  17758. bottom: 0.06
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(3, "meters")
  17766. },
  17767. {
  17768. name: "Kaiju",
  17769. height: math.unit(120, "meters"),
  17770. default: true
  17771. },
  17772. {
  17773. name: "Mega Kaiju",
  17774. height: math.unit(240, "km")
  17775. },
  17776. {
  17777. name: "Giga Kaiju",
  17778. height: math.unit(400, "megameters")
  17779. },
  17780. {
  17781. name: "Tera Kaiju",
  17782. height: math.unit(800, "gigameters")
  17783. },
  17784. {
  17785. name: "Kaiju Dragon Goddess",
  17786. height: math.unit(26, "zettaparsecs")
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17792. {
  17793. side: {
  17794. height: math.unit(283 / 124 * 6, "feet"),
  17795. weight: math.unit(35000, "lb"),
  17796. name: "Side",
  17797. image: {
  17798. source: "./media/characters/malfaren/side.svg",
  17799. extra: 2500 / 1010,
  17800. bottom: 0.01
  17801. }
  17802. },
  17803. front: {
  17804. height: math.unit(22.36, "feet"),
  17805. weight: math.unit(35000, "lb"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/malfaren/front.svg",
  17809. extra: 1631 / 1476,
  17810. bottom: 0.01
  17811. }
  17812. },
  17813. maw: {
  17814. height: math.unit(6.9, "feet"),
  17815. name: "Maw",
  17816. image: {
  17817. source: "./media/characters/malfaren/maw.svg"
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Big",
  17824. height: math.unit(283 / 162 * 6, "feet"),
  17825. },
  17826. {
  17827. name: "Bigger",
  17828. height: math.unit(283 / 124 * 6, "feet")
  17829. },
  17830. {
  17831. name: "Massive",
  17832. height: math.unit(283 / 92 * 6, "feet"),
  17833. default: true
  17834. },
  17835. {
  17836. name: "👀💦",
  17837. height: math.unit(283 / 73 * 6, "feet"),
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17843. {
  17844. front: {
  17845. height: math.unit(1.7, "m"),
  17846. weight: math.unit(70, "kg"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/kernel/front.svg",
  17850. extra: 222 / 210,
  17851. bottom: 0.007
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Nano",
  17858. height: math.unit(17, "micrometers")
  17859. },
  17860. {
  17861. name: "Micro",
  17862. height: math.unit(1.7, "mm")
  17863. },
  17864. {
  17865. name: "Small",
  17866. height: math.unit(1.7, "cm")
  17867. },
  17868. {
  17869. name: "Normal",
  17870. height: math.unit(1.7, "m"),
  17871. default: true
  17872. },
  17873. ]
  17874. ))
  17875. characterMakers.push(() => makeCharacter(
  17876. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17877. {
  17878. front: {
  17879. height: math.unit(1.75, "meters"),
  17880. weight: math.unit(65, "kg"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/jayne-folest/front.svg",
  17884. extra: 2115 / 2007,
  17885. bottom: 0.02
  17886. }
  17887. },
  17888. back: {
  17889. height: math.unit(1.75, "meters"),
  17890. weight: math.unit(65, "kg"),
  17891. name: "Back",
  17892. image: {
  17893. source: "./media/characters/jayne-folest/back.svg",
  17894. extra: 2115 / 2007,
  17895. bottom: 0.005
  17896. }
  17897. },
  17898. frontClothed: {
  17899. height: math.unit(1.75, "meters"),
  17900. weight: math.unit(65, "kg"),
  17901. name: "Front (Clothed)",
  17902. image: {
  17903. source: "./media/characters/jayne-folest/front-clothed.svg",
  17904. extra: 2115 / 2007,
  17905. bottom: 0.035
  17906. }
  17907. },
  17908. hand: {
  17909. height: math.unit(1 / 1.260, "feet"),
  17910. name: "Hand",
  17911. image: {
  17912. source: "./media/characters/jayne-folest/hand.svg"
  17913. }
  17914. },
  17915. foot: {
  17916. height: math.unit(1 / 0.918, "feet"),
  17917. name: "Foot",
  17918. image: {
  17919. source: "./media/characters/jayne-folest/foot.svg"
  17920. }
  17921. },
  17922. },
  17923. [
  17924. {
  17925. name: "Micro",
  17926. height: math.unit(4, "cm")
  17927. },
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(1.75, "meters")
  17931. },
  17932. {
  17933. name: "Macro",
  17934. height: math.unit(47.5, "meters"),
  17935. default: true
  17936. },
  17937. ]
  17938. ))
  17939. characterMakers.push(() => makeCharacter(
  17940. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17941. {
  17942. front: {
  17943. height: math.unit(180, "cm"),
  17944. weight: math.unit(70, "kg"),
  17945. name: "Front",
  17946. image: {
  17947. source: "./media/characters/algier/front.svg",
  17948. extra: 596 / 572,
  17949. bottom: 0.04
  17950. }
  17951. },
  17952. back: {
  17953. height: math.unit(180, "cm"),
  17954. weight: math.unit(70, "kg"),
  17955. name: "Back",
  17956. image: {
  17957. source: "./media/characters/algier/back.svg",
  17958. extra: 596 / 572,
  17959. bottom: 0.025
  17960. }
  17961. },
  17962. frontdressed: {
  17963. height: math.unit(180, "cm"),
  17964. weight: math.unit(150, "kg"),
  17965. name: "Front-dressed",
  17966. image: {
  17967. source: "./media/characters/algier/front-dressed.svg",
  17968. extra: 596 / 572,
  17969. bottom: 0.038
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Micro",
  17976. height: math.unit(5, "cm")
  17977. },
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(180, "cm"),
  17981. default: true
  17982. },
  17983. {
  17984. name: "Macro",
  17985. height: math.unit(64, "m")
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17991. {
  17992. upright: {
  17993. height: math.unit(7, "feet"),
  17994. weight: math.unit(300, "lb"),
  17995. name: "Upright",
  17996. image: {
  17997. source: "./media/characters/pretzel/upright.svg",
  17998. extra: 534 / 522,
  17999. bottom: 0.065
  18000. }
  18001. },
  18002. sprawling: {
  18003. height: math.unit(3.75, "feet"),
  18004. weight: math.unit(300, "lb"),
  18005. name: "Sprawling",
  18006. image: {
  18007. source: "./media/characters/pretzel/sprawling.svg",
  18008. extra: 314 / 281,
  18009. bottom: 0.1
  18010. }
  18011. },
  18012. tongue: {
  18013. height: math.unit(2, "feet"),
  18014. name: "Tongue",
  18015. image: {
  18016. source: "./media/characters/pretzel/tongue.svg"
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(7, "feet"),
  18024. default: true
  18025. },
  18026. {
  18027. name: "Oversized",
  18028. height: math.unit(15, "feet")
  18029. },
  18030. {
  18031. name: "Huge",
  18032. height: math.unit(30, "feet")
  18033. },
  18034. {
  18035. name: "Macro",
  18036. height: math.unit(250, "feet")
  18037. },
  18038. ]
  18039. ))
  18040. characterMakers.push(() => makeCharacter(
  18041. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18042. {
  18043. sideFront: {
  18044. height: math.unit(5 + 2 / 12, "feet"),
  18045. weight: math.unit(120, "lb"),
  18046. name: "Front Side",
  18047. image: {
  18048. source: "./media/characters/roxi/side-front.svg",
  18049. extra: 2924 / 2717,
  18050. bottom: 0.08
  18051. }
  18052. },
  18053. sideBack: {
  18054. height: math.unit(5 + 2 / 12, "feet"),
  18055. weight: math.unit(120, "lb"),
  18056. name: "Back Side",
  18057. image: {
  18058. source: "./media/characters/roxi/side-back.svg",
  18059. extra: 2904 / 2693,
  18060. bottom: 0.06
  18061. }
  18062. },
  18063. front: {
  18064. height: math.unit(5 + 2 / 12, "feet"),
  18065. weight: math.unit(120, "lb"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/roxi/front.svg",
  18069. extra: 2028 / 1907,
  18070. bottom: 0.01
  18071. }
  18072. },
  18073. frontAlt: {
  18074. height: math.unit(5 + 2 / 12, "feet"),
  18075. weight: math.unit(120, "lb"),
  18076. name: "Front (Alt)",
  18077. image: {
  18078. source: "./media/characters/roxi/front-alt.svg",
  18079. extra: 1828 / 1798,
  18080. bottom: 0.01
  18081. }
  18082. },
  18083. sitting: {
  18084. height: math.unit(2.8, "feet"),
  18085. weight: math.unit(120, "lb"),
  18086. name: "Sitting",
  18087. image: {
  18088. source: "./media/characters/roxi/sitting.svg",
  18089. extra: 2660 / 2462,
  18090. bottom: 0.1
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(5 + 2 / 12, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18104. {
  18105. side: {
  18106. height: math.unit(55, "feet"),
  18107. weight: math.unit(153, "tons"),
  18108. name: "Side",
  18109. image: {
  18110. source: "./media/characters/shadow/side.svg",
  18111. extra: 701 / 628,
  18112. bottom: 0.02
  18113. }
  18114. },
  18115. flying: {
  18116. height: math.unit(145, "feet"),
  18117. weight: math.unit(153, "tons"),
  18118. name: "Flying",
  18119. image: {
  18120. source: "./media/characters/shadow/flying.svg"
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(55, "feet"),
  18128. default: true
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6, "feet"),
  18137. weight: math.unit(200, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/marcie/front.svg",
  18141. extra: 960 / 876,
  18142. bottom: 58 / 1017.87
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(1, "mile"),
  18150. default: true
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(7, "feet"),
  18159. weight: math.unit(200, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/kachina/front.svg",
  18163. extra: 1290.68 / 1119,
  18164. bottom: 36.5 / 1327.18
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Normal",
  18171. height: math.unit(7, "feet"),
  18172. default: true
  18173. },
  18174. ]
  18175. ))
  18176. characterMakers.push(() => makeCharacter(
  18177. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18178. {
  18179. looking: {
  18180. height: math.unit(2, "meters"),
  18181. weight: math.unit(300, "kg"),
  18182. name: "Looking",
  18183. image: {
  18184. source: "./media/characters/kash/looking.svg",
  18185. extra: 474 / 344,
  18186. bottom: 0.03
  18187. }
  18188. },
  18189. side: {
  18190. height: math.unit(2, "meters"),
  18191. weight: math.unit(300, "kg"),
  18192. name: "Side",
  18193. image: {
  18194. source: "./media/characters/kash/side.svg",
  18195. extra: 302 / 251,
  18196. bottom: 0.03
  18197. }
  18198. },
  18199. front: {
  18200. height: math.unit(2, "meters"),
  18201. weight: math.unit(300, "kg"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/kash/front.svg",
  18205. extra: 495 / 360,
  18206. bottom: 0.015
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(2, "meters"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Big",
  18218. height: math.unit(3, "meters")
  18219. },
  18220. {
  18221. name: "Large",
  18222. height: math.unit(5, "meters")
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18228. {
  18229. feeding: {
  18230. height: math.unit(6.7, "feet"),
  18231. weight: math.unit(350, "lb"),
  18232. name: "Feeding",
  18233. image: {
  18234. source: "./media/characters/lalim/feeding.svg",
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(6.7, "feet"),
  18242. default: true
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(9.5, "feet"),
  18251. weight: math.unit(600, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/de'vout/front.svg",
  18255. extra: 1443 / 1328,
  18256. bottom: 0.025
  18257. }
  18258. },
  18259. back: {
  18260. height: math.unit(9.5, "feet"),
  18261. weight: math.unit(600, "lb"),
  18262. name: "Back",
  18263. image: {
  18264. source: "./media/characters/de'vout/back.svg",
  18265. extra: 1443 / 1328
  18266. }
  18267. },
  18268. frontDressed: {
  18269. height: math.unit(9.5, "feet"),
  18270. weight: math.unit(600, "lb"),
  18271. name: "Front (Dressed",
  18272. image: {
  18273. source: "./media/characters/de'vout/front-dressed.svg",
  18274. extra: 1443 / 1328,
  18275. bottom: 0.025
  18276. }
  18277. },
  18278. backDressed: {
  18279. height: math.unit(9.5, "feet"),
  18280. weight: math.unit(600, "lb"),
  18281. name: "Back (Dressed",
  18282. image: {
  18283. source: "./media/characters/de'vout/back-dressed.svg",
  18284. extra: 1443 / 1328
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(9.5, "feet"),
  18292. default: true
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(8, "feet"),
  18301. weight: math.unit(225, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/talana/front.svg",
  18305. extra: 1410 / 1300,
  18306. bottom: 0.015
  18307. }
  18308. },
  18309. frontDressed: {
  18310. height: math.unit(8, "feet"),
  18311. weight: math.unit(225, "lb"),
  18312. name: "Front (Dressed",
  18313. image: {
  18314. source: "./media/characters/talana/front-dressed.svg",
  18315. extra: 1410 / 1300,
  18316. bottom: 0.015
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(8, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18330. {
  18331. side: {
  18332. height: math.unit(7.2, "feet"),
  18333. weight: math.unit(150, "lb"),
  18334. name: "Side",
  18335. image: {
  18336. source: "./media/characters/xeauvok/side.svg",
  18337. extra: 1975 / 1523,
  18338. bottom: 0.07
  18339. }
  18340. },
  18341. },
  18342. [
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(7.2, "feet"),
  18346. default: true
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18352. {
  18353. side: {
  18354. height: math.unit(10, "feet"),
  18355. weight: math.unit(900, "kg"),
  18356. name: "Side",
  18357. image: {
  18358. source: "./media/characters/zara/side.svg",
  18359. extra: 504 / 498
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(10, "feet"),
  18367. default: true
  18368. },
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18373. {
  18374. side: {
  18375. height: math.unit(6, "feet"),
  18376. weight: math.unit(150, "lb"),
  18377. name: "Side",
  18378. image: {
  18379. source: "./media/characters/richard-dragon/side.svg",
  18380. extra: 845 / 340,
  18381. bottom: 0.017
  18382. }
  18383. },
  18384. maw: {
  18385. height: math.unit(2.97, "feet"),
  18386. name: "Maw",
  18387. image: {
  18388. source: "./media/characters/richard-dragon/maw.svg"
  18389. }
  18390. },
  18391. },
  18392. [
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(4, "feet"),
  18400. weight: math.unit(100, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/richard-smeargle/front.svg",
  18404. extra: 2952 / 2820,
  18405. bottom: 0.028
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(4, "feet"),
  18413. default: true
  18414. },
  18415. {
  18416. name: "Dynamax",
  18417. height: math.unit(20, "meters")
  18418. },
  18419. ]
  18420. ))
  18421. characterMakers.push(() => makeCharacter(
  18422. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18423. {
  18424. front: {
  18425. height: math.unit(6, "feet"),
  18426. weight: math.unit(110, "lb"),
  18427. name: "Front",
  18428. image: {
  18429. source: "./media/characters/klay/front.svg",
  18430. extra: 962 / 883,
  18431. bottom: 0.04
  18432. }
  18433. },
  18434. back: {
  18435. height: math.unit(6, "feet"),
  18436. weight: math.unit(110, "lb"),
  18437. name: "Back",
  18438. image: {
  18439. source: "./media/characters/klay/back.svg",
  18440. extra: 962 / 883
  18441. }
  18442. },
  18443. beans: {
  18444. height: math.unit(1.15, "feet"),
  18445. name: "Beans",
  18446. image: {
  18447. source: "./media/characters/klay/beans.svg"
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Micro",
  18454. height: math.unit(6, "inches")
  18455. },
  18456. {
  18457. name: "Mini",
  18458. height: math.unit(3, "feet")
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(6, "feet"),
  18463. default: true
  18464. },
  18465. {
  18466. name: "Big",
  18467. height: math.unit(25, "feet")
  18468. },
  18469. {
  18470. name: "Macro",
  18471. height: math.unit(100, "feet")
  18472. },
  18473. {
  18474. name: "Megamacro",
  18475. height: math.unit(400, "feet")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(6, "feet"),
  18484. weight: math.unit(160, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/marcus/front.svg",
  18488. extra: 734 / 676,
  18489. bottom: 0.03
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Little",
  18496. height: math.unit(6, "feet")
  18497. },
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(110, "feet"),
  18501. default: true
  18502. },
  18503. {
  18504. name: "Macro",
  18505. height: math.unit(250, "feet")
  18506. },
  18507. {
  18508. name: "Megamacro",
  18509. height: math.unit(1000, "feet")
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(7, "feet"),
  18518. weight: math.unit(275, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/claude-delroute/front.svg",
  18522. extra: 902/827,
  18523. bottom: 26/928
  18524. }
  18525. },
  18526. side: {
  18527. height: math.unit(7, "feet"),
  18528. weight: math.unit(275, "lb"),
  18529. name: "Side",
  18530. image: {
  18531. source: "./media/characters/claude-delroute/side.svg",
  18532. extra: 908/853,
  18533. bottom: 16/924
  18534. }
  18535. },
  18536. back: {
  18537. height: math.unit(7, "feet"),
  18538. weight: math.unit(275, "lb"),
  18539. name: "Back",
  18540. image: {
  18541. source: "./media/characters/claude-delroute/back.svg",
  18542. extra: 911/829,
  18543. bottom: 18/929
  18544. }
  18545. },
  18546. maw: {
  18547. height: math.unit(0.6407, "meters"),
  18548. name: "Maw",
  18549. image: {
  18550. source: "./media/characters/claude-delroute/maw.svg"
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(7, "feet"),
  18558. default: true
  18559. },
  18560. {
  18561. name: "Lorge",
  18562. height: math.unit(20, "feet")
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18568. {
  18569. front: {
  18570. height: math.unit(8 + 4 / 12, "feet"),
  18571. weight: math.unit(600, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/dragonien/front.svg",
  18575. extra: 100 / 94,
  18576. bottom: 3.3 / 103.3445
  18577. }
  18578. },
  18579. back: {
  18580. height: math.unit(8 + 4 / 12, "feet"),
  18581. weight: math.unit(600, "lb"),
  18582. name: "Back",
  18583. image: {
  18584. source: "./media/characters/dragonien/back.svg",
  18585. extra: 776 / 746,
  18586. bottom: 6.4 / 782.0616
  18587. }
  18588. },
  18589. foot: {
  18590. height: math.unit(1.54, "feet"),
  18591. name: "Foot",
  18592. image: {
  18593. source: "./media/characters/dragonien/foot.svg",
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(8 + 4 / 12, "feet"),
  18601. default: true
  18602. },
  18603. {
  18604. name: "Macro",
  18605. height: math.unit(200, "feet")
  18606. },
  18607. {
  18608. name: "Megamacro",
  18609. height: math.unit(1, "mile")
  18610. },
  18611. {
  18612. name: "Gigamacro",
  18613. height: math.unit(1000, "miles")
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18619. {
  18620. front: {
  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.svg",
  18626. extra: 767 / 726,
  18627. bottom: 11.7 / 779
  18628. }
  18629. },
  18630. back: {
  18631. height: math.unit(5 + 2 / 12, "feet"),
  18632. weight: math.unit(110, "lb"),
  18633. name: "Back",
  18634. image: {
  18635. source: "./media/characters/desta/back.svg",
  18636. extra: 777 / 728,
  18637. bottom: 6 / 784
  18638. }
  18639. },
  18640. frontAlt: {
  18641. height: math.unit(5 + 2 / 12, "feet"),
  18642. weight: math.unit(110, "lb"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/desta/front-alt.svg",
  18646. extra: 1482 / 1417
  18647. }
  18648. },
  18649. side: {
  18650. height: math.unit(5 + 2 / 12, "feet"),
  18651. weight: math.unit(110, "lb"),
  18652. name: "Side",
  18653. image: {
  18654. source: "./media/characters/desta/side.svg",
  18655. extra: 2579 / 2491,
  18656. bottom: 0.053
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Micro",
  18663. height: math.unit(6, "inches")
  18664. },
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(5 + 2 / 12, "feet"),
  18668. default: true
  18669. },
  18670. {
  18671. name: "Macro",
  18672. height: math.unit(62, "feet")
  18673. },
  18674. {
  18675. name: "Megamacro",
  18676. height: math.unit(1800, "feet")
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(10, "feet"),
  18685. weight: math.unit(700, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/storm-alystar/front.svg",
  18689. extra: 2112 / 1898,
  18690. bottom: 0.034
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Micro",
  18697. height: math.unit(3.5, "inches")
  18698. },
  18699. {
  18700. name: "Normal",
  18701. height: math.unit(10, "feet"),
  18702. default: true
  18703. },
  18704. {
  18705. name: "Macro",
  18706. height: math.unit(400, "feet")
  18707. },
  18708. {
  18709. name: "Deific",
  18710. height: math.unit(60, "miles")
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(2.35, "meters"),
  18719. weight: math.unit(119, "kg"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/ilia/front.svg",
  18723. extra: 1285 / 1255,
  18724. bottom: 0.06
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(2.35, "meters")
  18732. },
  18733. {
  18734. name: "Macro",
  18735. height: math.unit(140, "meters"),
  18736. default: true
  18737. },
  18738. {
  18739. name: "Megamacro",
  18740. height: math.unit(100, "miles")
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18746. {
  18747. front: {
  18748. height: math.unit(6 + 5 / 12, "feet"),
  18749. weight: math.unit(190, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/kingdead/front.svg",
  18753. extra: 1228 / 1177
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Micro",
  18760. height: math.unit(7, "inches")
  18761. },
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(6 + 5 / 12, "feet")
  18765. },
  18766. {
  18767. name: "Macro",
  18768. height: math.unit(150, "feet"),
  18769. default: true
  18770. },
  18771. {
  18772. name: "Megamacro",
  18773. height: math.unit(200, "miles")
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18779. {
  18780. front: {
  18781. height: math.unit(8, "feet"),
  18782. weight: math.unit(600, "lb"),
  18783. name: "Front",
  18784. image: {
  18785. source: "./media/characters/kyrehx/front.svg",
  18786. extra: 1195 / 1095,
  18787. bottom: 0.034
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Micro",
  18794. height: math.unit(2, "inches")
  18795. },
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(8, "feet"),
  18799. default: true
  18800. },
  18801. {
  18802. name: "Macro",
  18803. height: math.unit(255, "feet")
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18812. weight: math.unit(184, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/xang/front.svg",
  18816. extra: 845 / 755
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18824. default: true
  18825. },
  18826. {
  18827. name: "Macro",
  18828. height: math.unit(0.935 * 146, "feet")
  18829. },
  18830. {
  18831. name: "Megamacro",
  18832. height: math.unit(0.935 * 3, "miles")
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18838. {
  18839. frontDressed: {
  18840. height: math.unit(5 + 7 / 12, "feet"),
  18841. weight: math.unit(140, "lb"),
  18842. name: "Front (Dressed)",
  18843. image: {
  18844. source: "./media/characters/doc-weardno/front-dressed.svg",
  18845. extra: 263 / 234
  18846. }
  18847. },
  18848. backDressed: {
  18849. height: math.unit(5 + 7 / 12, "feet"),
  18850. weight: math.unit(140, "lb"),
  18851. name: "Back (Dressed)",
  18852. image: {
  18853. source: "./media/characters/doc-weardno/back-dressed.svg",
  18854. extra: 266 / 238
  18855. }
  18856. },
  18857. front: {
  18858. height: math.unit(5 + 7 / 12, "feet"),
  18859. weight: math.unit(140, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/doc-weardno/front.svg",
  18863. extra: 254 / 233
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Micro",
  18870. height: math.unit(3, "inches")
  18871. },
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(5 + 7 / 12, "feet"),
  18875. default: true
  18876. },
  18877. {
  18878. name: "Macro",
  18879. height: math.unit(25, "feet")
  18880. },
  18881. {
  18882. name: "Megamacro",
  18883. height: math.unit(2, "miles")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(6 + 2 / 12, "feet"),
  18892. weight: math.unit(153, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/seth-whilst/front.svg",
  18896. bottom: 0.07
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Micro",
  18903. height: math.unit(5, "inches")
  18904. },
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(6 + 2 / 12, "feet"),
  18908. default: true
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(3, "inches"),
  18917. weight: math.unit(8, "grams"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/pocket-jabari/front.svg",
  18921. extra: 1024 / 974,
  18922. bottom: 0.039
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Minimicro",
  18929. height: math.unit(8, "mm")
  18930. },
  18931. {
  18932. name: "Micro",
  18933. height: math.unit(3, "inches"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(3, "feet")
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18944. {
  18945. front: {
  18946. height: math.unit(15, "feet"),
  18947. weight: math.unit(3280, "lb"),
  18948. name: "Front",
  18949. image: {
  18950. source: "./media/characters/sapphy/front.svg",
  18951. extra: 671 / 577,
  18952. bottom: 0.085
  18953. }
  18954. },
  18955. back: {
  18956. height: math.unit(15, "feet"),
  18957. weight: math.unit(3280, "lb"),
  18958. name: "Back",
  18959. image: {
  18960. source: "./media/characters/sapphy/back.svg",
  18961. extra: 631 / 607,
  18962. bottom: 0.045
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(15, "feet")
  18970. },
  18971. {
  18972. name: "Casual Macro",
  18973. height: math.unit(120, "feet")
  18974. },
  18975. {
  18976. name: "Macro",
  18977. height: math.unit(2150, "feet"),
  18978. default: true
  18979. },
  18980. {
  18981. name: "Megamacro",
  18982. height: math.unit(8, "miles")
  18983. },
  18984. {
  18985. name: "Galaxy Mom",
  18986. height: math.unit(6, "megalightyears")
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(6, "feet"),
  18995. weight: math.unit(170, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/kiro/front.svg",
  18999. extra: 1064 / 1012,
  19000. bottom: 0.052
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Micro",
  19007. height: math.unit(6, "inches")
  19008. },
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(6, "feet"),
  19012. default: true
  19013. },
  19014. {
  19015. name: "Macro",
  19016. height: math.unit(72, "feet")
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19022. {
  19023. front: {
  19024. height: math.unit(5 + 9 / 12, "feet"),
  19025. weight: math.unit(175, "lb"),
  19026. name: "Front",
  19027. image: {
  19028. source: "./media/characters/irishfox/front.svg",
  19029. extra: 1912 / 1680,
  19030. bottom: 0.02
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Nano",
  19037. height: math.unit(1, "mm")
  19038. },
  19039. {
  19040. name: "Micro",
  19041. height: math.unit(2, "inches")
  19042. },
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(5 + 9 / 12, "feet"),
  19046. default: true
  19047. },
  19048. {
  19049. name: "Macro",
  19050. height: math.unit(45, "feet")
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(6 + 1 / 12, "feet"),
  19059. weight: math.unit(75, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/aronai-sieyes/front.svg",
  19063. extra: 1532/1450,
  19064. bottom: 42/1574
  19065. }
  19066. },
  19067. side: {
  19068. height: math.unit(6 + 1 / 12, "feet"),
  19069. weight: math.unit(75, "lb"),
  19070. name: "Side",
  19071. image: {
  19072. source: "./media/characters/aronai-sieyes/side.svg",
  19073. extra: 1422/1365,
  19074. bottom: 148/1570
  19075. }
  19076. },
  19077. back: {
  19078. height: math.unit(6 + 1 / 12, "feet"),
  19079. weight: math.unit(75, "lb"),
  19080. name: "Back",
  19081. image: {
  19082. source: "./media/characters/aronai-sieyes/back.svg",
  19083. extra: 1526/1464,
  19084. bottom: 51/1577
  19085. }
  19086. },
  19087. dressed: {
  19088. height: math.unit(6 + 1 / 12, "feet"),
  19089. weight: math.unit(75, "lb"),
  19090. name: "Dressed",
  19091. image: {
  19092. source: "./media/characters/aronai-sieyes/dressed.svg",
  19093. extra: 1559/1483,
  19094. bottom: 39/1598
  19095. }
  19096. },
  19097. slit: {
  19098. height: math.unit(1.3, "feet"),
  19099. name: "Slit",
  19100. image: {
  19101. source: "./media/characters/aronai-sieyes/slit.svg"
  19102. }
  19103. },
  19104. slitSpread: {
  19105. height: math.unit(0.9, "feet"),
  19106. name: "Slit (Spread)",
  19107. image: {
  19108. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19109. }
  19110. },
  19111. rump: {
  19112. height: math.unit(1.3, "feet"),
  19113. name: "Rump",
  19114. image: {
  19115. source: "./media/characters/aronai-sieyes/rump.svg"
  19116. }
  19117. },
  19118. maw: {
  19119. height: math.unit(1.25, "feet"),
  19120. name: "Maw",
  19121. image: {
  19122. source: "./media/characters/aronai-sieyes/maw.svg"
  19123. }
  19124. },
  19125. feral: {
  19126. height: math.unit(18, "feet"),
  19127. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19128. name: "Feral",
  19129. image: {
  19130. source: "./media/characters/aronai-sieyes/feral.svg",
  19131. extra: 1530 / 1240,
  19132. bottom: 0.035
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Micro",
  19139. height: math.unit(2, "inches")
  19140. },
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(6 + 1 / 12, "feet"),
  19144. default: true
  19145. }
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(12, "feet"),
  19153. weight: math.unit(410, "kg"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/xuna/front.svg",
  19157. extra: 2184 / 1980
  19158. }
  19159. },
  19160. side: {
  19161. height: math.unit(12, "feet"),
  19162. weight: math.unit(410, "kg"),
  19163. name: "Side",
  19164. image: {
  19165. source: "./media/characters/xuna/side.svg",
  19166. extra: 2184 / 1980
  19167. }
  19168. },
  19169. back: {
  19170. height: math.unit(12, "feet"),
  19171. weight: math.unit(410, "kg"),
  19172. name: "Back",
  19173. image: {
  19174. source: "./media/characters/xuna/back.svg",
  19175. extra: 2184 / 1980
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Nano glow",
  19182. height: math.unit(10, "nm")
  19183. },
  19184. {
  19185. name: "Micro floof",
  19186. height: math.unit(0.3, "m")
  19187. },
  19188. {
  19189. name: "Huggable softy boi",
  19190. height: math.unit(3.6576, "m"),
  19191. default: true
  19192. },
  19193. {
  19194. name: "Admirable floof",
  19195. height: math.unit(80, "meters")
  19196. },
  19197. {
  19198. name: "Gentle macro",
  19199. height: math.unit(300, "meters")
  19200. },
  19201. {
  19202. name: "Very careful floof",
  19203. height: math.unit(3200, "meters")
  19204. },
  19205. {
  19206. name: "The mega floof",
  19207. height: math.unit(36000, "meters")
  19208. },
  19209. {
  19210. name: "Giga-fur-Wicker",
  19211. height: math.unit(4800000, "meters")
  19212. },
  19213. {
  19214. name: "Licky world",
  19215. height: math.unit(20000000, "meters")
  19216. },
  19217. {
  19218. name: "Floofy cyan sun",
  19219. height: math.unit(1500000000, "meters")
  19220. },
  19221. {
  19222. name: "Milky Wicker",
  19223. height: math.unit(1000000000000000000000, "meters")
  19224. },
  19225. {
  19226. name: "The observing Wicker",
  19227. height: math.unit(999999999999999999999999999, "meters")
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19233. {
  19234. front: {
  19235. height: math.unit(5 + 9 / 12, "feet"),
  19236. weight: math.unit(150, "lb"),
  19237. name: "Front",
  19238. image: {
  19239. source: "./media/characters/arokha-sieyes/front.svg",
  19240. extra: 1425 / 1284,
  19241. bottom: 0.05
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(5 + 9 / 12, "feet")
  19249. },
  19250. {
  19251. name: "Macro",
  19252. height: math.unit(30, "meters"),
  19253. default: true
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19259. {
  19260. front: {
  19261. height: math.unit(6, "feet"),
  19262. weight: math.unit(180, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/arokh-sieyes/front.svg",
  19266. extra: 1830 / 1769,
  19267. bottom: 0.01
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(6, "feet")
  19275. },
  19276. {
  19277. name: "Macro",
  19278. height: math.unit(30, "meters"),
  19279. default: true
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19285. {
  19286. side: {
  19287. height: math.unit(13 + 1 / 12, "feet"),
  19288. weight: math.unit(8.5, "tonnes"),
  19289. name: "Side",
  19290. image: {
  19291. source: "./media/characters/goldeneye/side.svg",
  19292. extra: 1182 / 778,
  19293. bottom: 0.067
  19294. }
  19295. },
  19296. paw: {
  19297. height: math.unit(3.4, "feet"),
  19298. name: "Paw",
  19299. image: {
  19300. source: "./media/characters/goldeneye/paw.svg"
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(13 + 1 / 12, "feet"),
  19308. default: true
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19314. {
  19315. front: {
  19316. height: math.unit(6 + 1 / 12, "feet"),
  19317. weight: math.unit(210, "lb"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/leonardo-lycheborne/front.svg",
  19321. extra: 776/723,
  19322. bottom: 34/810
  19323. }
  19324. },
  19325. side: {
  19326. height: math.unit(6 + 1 / 12, "feet"),
  19327. weight: math.unit(210, "lb"),
  19328. name: "Side",
  19329. image: {
  19330. source: "./media/characters/leonardo-lycheborne/side.svg",
  19331. extra: 780/728,
  19332. bottom: 12/792
  19333. }
  19334. },
  19335. back: {
  19336. height: math.unit(6 + 1 / 12, "feet"),
  19337. weight: math.unit(210, "lb"),
  19338. name: "Back",
  19339. image: {
  19340. source: "./media/characters/leonardo-lycheborne/back.svg",
  19341. extra: 775/721,
  19342. bottom: 17/792
  19343. }
  19344. },
  19345. hand: {
  19346. height: math.unit(1.08, "feet"),
  19347. name: "Hand",
  19348. image: {
  19349. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19350. }
  19351. },
  19352. foot: {
  19353. height: math.unit(1.32, "feet"),
  19354. name: "Foot",
  19355. image: {
  19356. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19357. }
  19358. },
  19359. maw: {
  19360. height: math.unit(1, "feet"),
  19361. name: "Maw",
  19362. image: {
  19363. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19364. }
  19365. },
  19366. were: {
  19367. height: math.unit(20, "feet"),
  19368. weight: math.unit(7800, "lb"),
  19369. name: "Were",
  19370. image: {
  19371. source: "./media/characters/leonardo-lycheborne/were.svg",
  19372. extra: 1224/1165,
  19373. bottom: 72/1296
  19374. }
  19375. },
  19376. feral: {
  19377. height: math.unit(7.5, "feet"),
  19378. weight: math.unit(600, "lb"),
  19379. name: "Feral",
  19380. image: {
  19381. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19382. extra: 797/702,
  19383. bottom: 139/936
  19384. }
  19385. },
  19386. taur: {
  19387. height: math.unit(11, "feet"),
  19388. weight: math.unit(3300, "lb"),
  19389. name: "Taur",
  19390. image: {
  19391. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19392. extra: 1271/1197,
  19393. bottom: 47/1318
  19394. }
  19395. },
  19396. barghest: {
  19397. height: math.unit(11, "feet"),
  19398. weight: math.unit(1300, "lb"),
  19399. name: "Barghest",
  19400. image: {
  19401. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19402. extra: 1291/1204,
  19403. bottom: 37/1328
  19404. }
  19405. },
  19406. dick: {
  19407. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19408. name: "Dick",
  19409. image: {
  19410. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19411. }
  19412. },
  19413. dickWere: {
  19414. height: math.unit((20) / 3.8, "feet"),
  19415. name: "Dick (Were)",
  19416. image: {
  19417. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(6 + 1 / 12, "feet"),
  19425. default: true
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(10, "feet"),
  19434. weight: math.unit(350, "lb"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/jet/front.svg",
  19438. extra: 2050 / 1980,
  19439. bottom: 0.013
  19440. }
  19441. },
  19442. back: {
  19443. height: math.unit(10, "feet"),
  19444. weight: math.unit(350, "lb"),
  19445. name: "Back",
  19446. image: {
  19447. source: "./media/characters/jet/back.svg",
  19448. extra: 2050 / 1980,
  19449. bottom: 0.013
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Micro",
  19456. height: math.unit(6, "inches")
  19457. },
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(10, "feet"),
  19461. default: true
  19462. },
  19463. {
  19464. name: "Macro",
  19465. height: math.unit(100, "feet")
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(15, "feet"),
  19474. weight: math.unit(2800, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/tanarath/front.svg",
  19478. extra: 2392 / 2220,
  19479. bottom: 0.03
  19480. }
  19481. },
  19482. back: {
  19483. height: math.unit(15, "feet"),
  19484. weight: math.unit(2800, "lb"),
  19485. name: "Back",
  19486. image: {
  19487. source: "./media/characters/tanarath/back.svg",
  19488. extra: 2392 / 2220,
  19489. bottom: 0.03
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(15, "feet"),
  19497. default: true
  19498. },
  19499. ]
  19500. ))
  19501. characterMakers.push(() => makeCharacter(
  19502. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19503. {
  19504. front: {
  19505. height: math.unit(7 + 1 / 12, "feet"),
  19506. weight: math.unit(175, "lb"),
  19507. name: "Front",
  19508. image: {
  19509. source: "./media/characters/patty-cattybatty/front.svg",
  19510. extra: 908 / 874,
  19511. bottom: 0.025
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Micro",
  19518. height: math.unit(1, "inch")
  19519. },
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(7 + 1 / 12, "feet")
  19523. },
  19524. {
  19525. name: "Mini Macro",
  19526. height: math.unit(155, "feet")
  19527. },
  19528. {
  19529. name: "Macro",
  19530. height: math.unit(1077, "feet")
  19531. },
  19532. {
  19533. name: "Mega Macro",
  19534. height: math.unit(47650, "feet"),
  19535. default: true
  19536. },
  19537. {
  19538. name: "Giga Macro",
  19539. height: math.unit(440, "miles")
  19540. },
  19541. {
  19542. name: "Tera Macro",
  19543. height: math.unit(8700, "miles")
  19544. },
  19545. {
  19546. name: "Planetary Macro",
  19547. height: math.unit(32700, "miles")
  19548. },
  19549. {
  19550. name: "Solar Macro",
  19551. height: math.unit(550000, "miles")
  19552. },
  19553. {
  19554. name: "Celestial Macro",
  19555. height: math.unit(2.5, "AU")
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19561. {
  19562. front: {
  19563. height: math.unit(4 + 5 / 12, "feet"),
  19564. weight: math.unit(90, "lb"),
  19565. name: "Front",
  19566. image: {
  19567. source: "./media/characters/cappu/front.svg",
  19568. extra: 1247 / 1152,
  19569. bottom: 0.012
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(4 + 5 / 12, "feet"),
  19577. default: true
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19583. {
  19584. frontDressed: {
  19585. height: math.unit(70, "cm"),
  19586. weight: math.unit(6, "kg"),
  19587. name: "Front (Dressed)",
  19588. image: {
  19589. source: "./media/characters/sebi/front-dressed.svg",
  19590. extra: 713.5 / 686.5,
  19591. bottom: 0.003
  19592. }
  19593. },
  19594. front: {
  19595. height: math.unit(70, "cm"),
  19596. weight: math.unit(5, "kg"),
  19597. name: "Front",
  19598. image: {
  19599. source: "./media/characters/sebi/front.svg",
  19600. extra: 713.5 / 686.5,
  19601. bottom: 0.003
  19602. }
  19603. }
  19604. },
  19605. [
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(70, "cm"),
  19609. default: true
  19610. },
  19611. {
  19612. name: "Macro",
  19613. height: math.unit(8, "meters")
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19619. {
  19620. front: {
  19621. height: math.unit(6, "feet"),
  19622. weight: math.unit(150, "lb"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/typhek/front.svg",
  19626. extra: 1948 / 1929,
  19627. bottom: 0.025
  19628. }
  19629. },
  19630. side: {
  19631. height: math.unit(6, "feet"),
  19632. weight: math.unit(150, "lb"),
  19633. name: "Side",
  19634. image: {
  19635. source: "./media/characters/typhek/side.svg",
  19636. extra: 2034 / 2010,
  19637. bottom: 0.003
  19638. }
  19639. },
  19640. back: {
  19641. height: math.unit(6, "feet"),
  19642. weight: math.unit(150, "lb"),
  19643. name: "Back",
  19644. image: {
  19645. source: "./media/characters/typhek/back.svg",
  19646. extra: 2005 / 1978,
  19647. bottom: 0.004
  19648. }
  19649. },
  19650. palm: {
  19651. height: math.unit(1.2, "feet"),
  19652. name: "Palm",
  19653. image: {
  19654. source: "./media/characters/typhek/palm.svg"
  19655. }
  19656. },
  19657. fist: {
  19658. height: math.unit(1.1, "feet"),
  19659. name: "Fist",
  19660. image: {
  19661. source: "./media/characters/typhek/fist.svg"
  19662. }
  19663. },
  19664. foot: {
  19665. height: math.unit(1.57, "feet"),
  19666. name: "Foot",
  19667. image: {
  19668. source: "./media/characters/typhek/foot.svg"
  19669. }
  19670. },
  19671. sole: {
  19672. height: math.unit(2.05, "feet"),
  19673. name: "Sole",
  19674. image: {
  19675. source: "./media/characters/typhek/sole.svg"
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Macro",
  19682. height: math.unit(40, "stories"),
  19683. default: true
  19684. },
  19685. {
  19686. name: "Megamacro",
  19687. height: math.unit(1, "mile")
  19688. },
  19689. {
  19690. name: "Gigamacro",
  19691. height: math.unit(4000, "solarradii")
  19692. },
  19693. {
  19694. name: "Universal",
  19695. height: math.unit(1.1, "universes")
  19696. }
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19701. {
  19702. side: {
  19703. height: math.unit(5 + 7 / 12, "feet"),
  19704. weight: math.unit(150, "lb"),
  19705. name: "Side",
  19706. image: {
  19707. source: "./media/characters/kassy/side.svg",
  19708. extra: 1280 / 1225,
  19709. bottom: 0.002
  19710. }
  19711. },
  19712. front: {
  19713. height: math.unit(5 + 7 / 12, "feet"),
  19714. weight: math.unit(150, "lb"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/kassy/front.svg",
  19718. extra: 1280 / 1225,
  19719. bottom: 0.025
  19720. }
  19721. },
  19722. back: {
  19723. height: math.unit(5 + 7 / 12, "feet"),
  19724. weight: math.unit(150, "lb"),
  19725. name: "Back",
  19726. image: {
  19727. source: "./media/characters/kassy/back.svg",
  19728. extra: 1280 / 1225,
  19729. bottom: 0.002
  19730. }
  19731. },
  19732. foot: {
  19733. height: math.unit(1.266, "feet"),
  19734. name: "Foot",
  19735. image: {
  19736. source: "./media/characters/kassy/foot.svg"
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(5 + 7 / 12, "feet")
  19744. },
  19745. {
  19746. name: "Macro",
  19747. height: math.unit(137, "feet"),
  19748. default: true
  19749. },
  19750. {
  19751. name: "Megamacro",
  19752. height: math.unit(1, "mile")
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19758. {
  19759. front: {
  19760. height: math.unit(6 + 1 / 12, "feet"),
  19761. weight: math.unit(200, "lb"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/neil/front.svg",
  19765. extra: 1326 / 1250,
  19766. bottom: 0.023
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(6 + 1 / 12, "feet"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Macro",
  19778. height: math.unit(200, "feet")
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(5 + 9 / 12, "feet"),
  19787. weight: math.unit(190, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/atticus/front.svg",
  19791. extra: 2934 / 2785,
  19792. bottom: 0.025
  19793. }
  19794. },
  19795. },
  19796. [
  19797. {
  19798. name: "Normal",
  19799. height: math.unit(5 + 9 / 12, "feet"),
  19800. default: true
  19801. },
  19802. {
  19803. name: "Macro",
  19804. height: math.unit(180, "feet")
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19810. {
  19811. side: {
  19812. height: math.unit(9, "feet"),
  19813. weight: math.unit(650, "lb"),
  19814. name: "Side",
  19815. image: {
  19816. source: "./media/characters/milo/side.svg",
  19817. extra: 2644 / 2310,
  19818. bottom: 0.032
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Normal",
  19825. height: math.unit(9, "feet"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Macro",
  19830. height: math.unit(300, "feet")
  19831. },
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19836. {
  19837. side: {
  19838. height: math.unit(8, "meters"),
  19839. weight: math.unit(90000, "kg"),
  19840. name: "Side",
  19841. image: {
  19842. source: "./media/characters/ijzer/side.svg",
  19843. extra: 2756 / 1600,
  19844. bottom: 0.01
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Small",
  19851. height: math.unit(3, "meters")
  19852. },
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(8, "meters"),
  19856. default: true
  19857. },
  19858. {
  19859. name: "Normal+",
  19860. height: math.unit(10, "meters")
  19861. },
  19862. {
  19863. name: "Bigger",
  19864. height: math.unit(24, "meters")
  19865. },
  19866. {
  19867. name: "Huge",
  19868. height: math.unit(80, "meters")
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(6 + 2 / 12, "feet"),
  19877. weight: math.unit(153, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/luca-cervicum/front.svg",
  19881. extra: 370 / 327,
  19882. bottom: 0.015
  19883. }
  19884. },
  19885. back: {
  19886. height: math.unit(6 + 2 / 12, "feet"),
  19887. weight: math.unit(153, "lb"),
  19888. name: "Back",
  19889. image: {
  19890. source: "./media/characters/luca-cervicum/back.svg",
  19891. extra: 367 / 333,
  19892. bottom: 0.005
  19893. }
  19894. },
  19895. frontGear: {
  19896. height: math.unit(6 + 2 / 12, "feet"),
  19897. weight: math.unit(173, "lb"),
  19898. name: "Front (Gear)",
  19899. image: {
  19900. source: "./media/characters/luca-cervicum/front-gear.svg",
  19901. extra: 377 / 333,
  19902. bottom: 0.006
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(6 + 2 / 12, "feet"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19916. {
  19917. front: {
  19918. height: math.unit(6 + 1 / 12, "feet"),
  19919. weight: math.unit(304, "lb"),
  19920. name: "Front",
  19921. image: {
  19922. source: "./media/characters/oliver/front.svg",
  19923. extra: 157 / 143,
  19924. bottom: 0.08
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(6 + 1 / 12, "feet"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19938. {
  19939. front: {
  19940. height: math.unit(5 + 7 / 12, "feet"),
  19941. weight: math.unit(140, "lb"),
  19942. name: "Front",
  19943. image: {
  19944. source: "./media/characters/shane/front.svg",
  19945. extra: 304 / 289,
  19946. bottom: 0.005
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(5 + 7 / 12, "feet"),
  19954. default: true
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(5 + 9 / 12, "feet"),
  19963. weight: math.unit(178, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/shin/front.svg",
  19967. extra: 159 / 151,
  19968. bottom: 0.015
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(5 + 9 / 12, "feet"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(5 + 10 / 12, "feet"),
  19985. weight: math.unit(168, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/xerxes/front.svg",
  19989. extra: 282 / 260,
  19990. bottom: 0.045
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(5 + 10 / 12, "feet"),
  19998. default: true
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(6 + 7 / 12, "feet"),
  20007. weight: math.unit(208, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/chaska/front.svg",
  20011. extra: 332 / 319,
  20012. bottom: 0.015
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(6 + 7 / 12, "feet"),
  20020. default: true
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(5 + 8 / 12, "feet"),
  20029. weight: math.unit(208, "lb"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/enuk/front.svg",
  20033. extra: 437 / 406,
  20034. bottom: 0.02
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(5 + 8 / 12, "feet"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(5 + 10 / 12, "feet"),
  20051. weight: math.unit(252, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/bruun/front.svg",
  20055. extra: 197 / 187,
  20056. bottom: 0.012
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(5 + 10 / 12, "feet"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(6 + 10 / 12, "feet"),
  20073. weight: math.unit(255, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/alexeev/front.svg",
  20077. extra: 213 / 200,
  20078. bottom: 0.05
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(6 + 10 / 12, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(2 + 8 / 12, "feet"),
  20095. weight: math.unit(22, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/evelyn/front.svg",
  20099. extra: 208 / 180
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(2 + 8 / 12, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(5 + 9 / 12, "feet"),
  20116. weight: math.unit(139, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/inca/front.svg",
  20120. extra: 294 / 291,
  20121. bottom: 0.03
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(5 + 9 / 12, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(6 + 3 / 12, "feet"),
  20138. weight: math.unit(185, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/mera/front.svg",
  20142. extra: 291 / 277,
  20143. bottom: 0.03
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(6 + 3 / 12, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(6 + 7 / 12, "feet"),
  20160. weight: math.unit(160, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/ceres/front.svg",
  20164. extra: 1023 / 950,
  20165. bottom: 0.027
  20166. }
  20167. },
  20168. back: {
  20169. height: math.unit(6 + 7 / 12, "feet"),
  20170. weight: math.unit(160, "lb"),
  20171. name: "Back",
  20172. image: {
  20173. source: "./media/characters/ceres/back.svg",
  20174. extra: 1023 / 950
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(6 + 7 / 12, "feet"),
  20182. default: true
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(5 + 10 / 12, "feet"),
  20191. weight: math.unit(150, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/kris/front.svg",
  20195. extra: 885 / 803,
  20196. bottom: 0.03
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(5 + 10 / 12, "feet"),
  20204. default: true
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(7, "feet"),
  20213. weight: math.unit(120, "kg"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/taluthus/front.svg",
  20217. extra: 903 / 833,
  20218. bottom: 0.015
  20219. }
  20220. },
  20221. },
  20222. [
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(7, "feet"),
  20226. default: true
  20227. },
  20228. {
  20229. name: "Macro",
  20230. height: math.unit(300, "feet")
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20236. {
  20237. front: {
  20238. height: math.unit(5 + 9 / 12, "feet"),
  20239. weight: math.unit(145, "lb"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/dawn/front.svg",
  20243. extra: 2094 / 2016,
  20244. bottom: 0.025
  20245. }
  20246. },
  20247. back: {
  20248. height: math.unit(5 + 9 / 12, "feet"),
  20249. weight: math.unit(160, "lb"),
  20250. name: "Back",
  20251. image: {
  20252. source: "./media/characters/dawn/back.svg",
  20253. extra: 2112 / 2080,
  20254. bottom: 0.005
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Normal",
  20261. height: math.unit(6 + 7 / 12, "feet"),
  20262. default: true
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20268. {
  20269. anthro: {
  20270. height: math.unit(8 + 3 / 12, "feet"),
  20271. weight: math.unit(450, "lb"),
  20272. name: "Anthro",
  20273. image: {
  20274. source: "./media/characters/arador/anthro.svg",
  20275. extra: 1835 / 1718,
  20276. bottom: 0.025
  20277. }
  20278. },
  20279. feral: {
  20280. height: math.unit(4, "feet"),
  20281. weight: math.unit(200, "lb"),
  20282. name: "Feral",
  20283. image: {
  20284. source: "./media/characters/arador/feral.svg",
  20285. extra: 1683 / 1514,
  20286. bottom: 0.07
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(8 + 3 / 12, "feet")
  20294. },
  20295. {
  20296. name: "Macro",
  20297. height: math.unit(82.5, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(5 + 10 / 12, "feet"),
  20307. weight: math.unit(125, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/dharsi/front.svg",
  20311. extra: 716 / 630,
  20312. bottom: 0.035
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Nano",
  20319. height: math.unit(100, "nm")
  20320. },
  20321. {
  20322. name: "Micro",
  20323. height: math.unit(2, "inches")
  20324. },
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(5 + 10 / 12, "feet"),
  20328. default: true
  20329. },
  20330. {
  20331. name: "Macro",
  20332. height: math.unit(1000, "feet")
  20333. },
  20334. {
  20335. name: "Megamacro",
  20336. height: math.unit(10, "miles")
  20337. },
  20338. {
  20339. name: "Gigamacro",
  20340. height: math.unit(3000, "miles")
  20341. },
  20342. {
  20343. name: "Teramacro",
  20344. height: math.unit(500000, "miles")
  20345. },
  20346. {
  20347. name: "Teramacro+",
  20348. height: math.unit(30, "galaxies")
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20354. {
  20355. front: {
  20356. height: math.unit(6, "feet"),
  20357. weight: math.unit(150, "lb"),
  20358. name: "Front",
  20359. image: {
  20360. source: "./media/characters/deathy/front.svg",
  20361. extra: 1552 / 1463,
  20362. bottom: 0.025
  20363. }
  20364. },
  20365. side: {
  20366. height: math.unit(6, "feet"),
  20367. weight: math.unit(150, "lb"),
  20368. name: "Side",
  20369. image: {
  20370. source: "./media/characters/deathy/side.svg",
  20371. extra: 1604 / 1455,
  20372. bottom: 0.025
  20373. }
  20374. },
  20375. back: {
  20376. height: math.unit(6, "feet"),
  20377. weight: math.unit(150, "lb"),
  20378. name: "Back",
  20379. image: {
  20380. source: "./media/characters/deathy/back.svg",
  20381. extra: 1580 / 1463,
  20382. bottom: 0.005
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Micro",
  20389. height: math.unit(5, "millimeters")
  20390. },
  20391. {
  20392. name: "Normal",
  20393. height: math.unit(6 + 5 / 12, "feet"),
  20394. default: true
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20400. {
  20401. front: {
  20402. height: math.unit(16, "feet"),
  20403. weight: math.unit(4000, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/juniper/front.svg",
  20407. bottom: 0.04
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(16, "feet"),
  20415. default: true
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20421. {
  20422. front: {
  20423. height: math.unit(6, "feet"),
  20424. weight: math.unit(150, "lb"),
  20425. name: "Front",
  20426. image: {
  20427. source: "./media/characters/hipster/front.svg",
  20428. extra: 1312 / 1209,
  20429. bottom: 0.025
  20430. }
  20431. },
  20432. back: {
  20433. height: math.unit(6, "feet"),
  20434. weight: math.unit(150, "lb"),
  20435. name: "Back",
  20436. image: {
  20437. source: "./media/characters/hipster/back.svg",
  20438. extra: 1281 / 1196,
  20439. bottom: 0.01
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Micro",
  20446. height: math.unit(1, "mm")
  20447. },
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(4, "inches"),
  20451. default: true
  20452. },
  20453. {
  20454. name: "Macro",
  20455. height: math.unit(500, "feet")
  20456. },
  20457. {
  20458. name: "Megamacro",
  20459. height: math.unit(1000, "miles")
  20460. },
  20461. ]
  20462. ))
  20463. characterMakers.push(() => makeCharacter(
  20464. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20465. {
  20466. front: {
  20467. height: math.unit(6, "feet"),
  20468. weight: math.unit(150, "lb"),
  20469. name: "Front",
  20470. image: {
  20471. source: "./media/characters/tendirmuldr/front.svg",
  20472. extra: 1878 / 1772,
  20473. bottom: 0.015
  20474. }
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Megamacro",
  20480. height: math.unit(1500, "miles"),
  20481. default: true
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20487. {
  20488. front: {
  20489. height: math.unit(14, "feet"),
  20490. weight: math.unit(12000, "lb"),
  20491. name: "Front",
  20492. image: {
  20493. source: "./media/characters/mort/front.svg",
  20494. extra: 365 / 318,
  20495. bottom: 0.01
  20496. }
  20497. },
  20498. side: {
  20499. height: math.unit(14, "feet"),
  20500. weight: math.unit(12000, "lb"),
  20501. name: "Side",
  20502. image: {
  20503. source: "./media/characters/mort/side.svg",
  20504. extra: 365 / 318,
  20505. bottom: 0.052
  20506. },
  20507. default: true
  20508. },
  20509. back: {
  20510. height: math.unit(14, "feet"),
  20511. weight: math.unit(12000, "lb"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/mort/back.svg",
  20515. extra: 371 / 332,
  20516. bottom: 0.18
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(14, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20530. {
  20531. front: {
  20532. height: math.unit(8, "feet"),
  20533. weight: math.unit(1, "ton"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/lycoa/front.svg",
  20537. extra: 1875 / 1789,
  20538. bottom: 0.022
  20539. }
  20540. },
  20541. back: {
  20542. height: math.unit(8, "feet"),
  20543. weight: math.unit(1, "ton"),
  20544. name: "Back",
  20545. image: {
  20546. source: "./media/characters/lycoa/back.svg",
  20547. extra: 1835 / 1781,
  20548. bottom: 0.03
  20549. }
  20550. },
  20551. head: {
  20552. height: math.unit(2.1, "feet"),
  20553. name: "Head",
  20554. image: {
  20555. source: "./media/characters/lycoa/head.svg"
  20556. }
  20557. },
  20558. tailmaw: {
  20559. height: math.unit(1.9, "feet"),
  20560. name: "Tailmaw",
  20561. image: {
  20562. source: "./media/characters/lycoa/tailmaw.svg"
  20563. }
  20564. },
  20565. tentacles: {
  20566. height: math.unit(2.1, "feet"),
  20567. name: "Tentacles",
  20568. image: {
  20569. source: "./media/characters/lycoa/tentacles.svg"
  20570. }
  20571. },
  20572. dick: {
  20573. height: math.unit(1.73, "feet"),
  20574. name: "Dick",
  20575. image: {
  20576. source: "./media/characters/lycoa/dick.svg"
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(8, "feet"),
  20584. default: true
  20585. },
  20586. {
  20587. name: "Macro",
  20588. height: math.unit(30, "feet")
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20594. {
  20595. front: {
  20596. height: math.unit(4 + 2 / 12, "feet"),
  20597. weight: math.unit(70, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/naldara/front.svg",
  20601. extra: 841 / 720,
  20602. bottom: 0.04
  20603. }
  20604. },
  20605. naga: {
  20606. height: math.unit(23, "feet"),
  20607. weight: math.unit(15000, "kg"),
  20608. name: "Naga",
  20609. image: {
  20610. source: "./media/characters/naldara/naga.svg",
  20611. extra: 3290 / 2959,
  20612. bottom: 124 / 3432
  20613. }
  20614. },
  20615. },
  20616. [
  20617. {
  20618. name: "Normal",
  20619. height: math.unit(4 + 2 / 12, "feet"),
  20620. default: true
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20626. {
  20627. front: {
  20628. height: math.unit(13 + 7 / 12, "feet"),
  20629. weight: math.unit(1500, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/briar/front.svg",
  20633. extra: 626 / 596,
  20634. bottom: 0.08
  20635. }
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Normal",
  20641. height: math.unit(13 + 7 / 12, "feet"),
  20642. default: true
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20648. {
  20649. side: {
  20650. height: math.unit(10, "feet"),
  20651. weight: math.unit(500, "lb"),
  20652. name: "Side",
  20653. image: {
  20654. source: "./media/characters/vanguard/side.svg",
  20655. extra: 502 / 425,
  20656. bottom: 0.087
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(10, "feet"),
  20664. default: true
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20670. {
  20671. front: {
  20672. height: math.unit(7.5, "feet"),
  20673. weight: math.unit(2, "lb"),
  20674. name: "Front",
  20675. image: {
  20676. source: "./media/characters/artemis/front.svg",
  20677. extra: 1192 / 1075,
  20678. bottom: 0.07
  20679. }
  20680. },
  20681. frontNsfw: {
  20682. height: math.unit(7.5, "feet"),
  20683. weight: math.unit(2, "lb"),
  20684. name: "Front (NSFW)",
  20685. image: {
  20686. source: "./media/characters/artemis/front-nsfw.svg",
  20687. extra: 1192 / 1075,
  20688. bottom: 0.07
  20689. }
  20690. },
  20691. frontNsfwer: {
  20692. height: math.unit(7.5, "feet"),
  20693. weight: math.unit(2, "lb"),
  20694. name: "Front (NSFW-er)",
  20695. image: {
  20696. source: "./media/characters/artemis/front-nsfwer.svg",
  20697. extra: 1192 / 1075,
  20698. bottom: 0.07
  20699. }
  20700. },
  20701. side: {
  20702. height: math.unit(7.5, "feet"),
  20703. weight: math.unit(2, "lb"),
  20704. name: "Side",
  20705. image: {
  20706. source: "./media/characters/artemis/side.svg",
  20707. extra: 1192 / 1075,
  20708. bottom: 0.07
  20709. }
  20710. },
  20711. sideNsfw: {
  20712. height: math.unit(7.5, "feet"),
  20713. weight: math.unit(2, "lb"),
  20714. name: "Side (NSFW)",
  20715. image: {
  20716. source: "./media/characters/artemis/side-nsfw.svg",
  20717. extra: 1192 / 1075,
  20718. bottom: 0.07
  20719. }
  20720. },
  20721. sideNsfwer: {
  20722. height: math.unit(7.5, "feet"),
  20723. weight: math.unit(2, "lb"),
  20724. name: "Side (NSFW-er)",
  20725. image: {
  20726. source: "./media/characters/artemis/side-nsfwer.svg",
  20727. extra: 1192 / 1075,
  20728. bottom: 0.07
  20729. }
  20730. },
  20731. maw: {
  20732. height: math.unit(1.1, "feet"),
  20733. name: "Maw",
  20734. image: {
  20735. source: "./media/characters/artemis/maw.svg"
  20736. }
  20737. },
  20738. stomach: {
  20739. height: math.unit(0.95, "feet"),
  20740. name: "Stomach",
  20741. image: {
  20742. source: "./media/characters/artemis/stomach.svg"
  20743. }
  20744. },
  20745. dickCanine: {
  20746. height: math.unit(1, "feet"),
  20747. name: "Dick (Canine)",
  20748. image: {
  20749. source: "./media/characters/artemis/dick-canine.svg"
  20750. }
  20751. },
  20752. dickEquine: {
  20753. height: math.unit(0.85, "feet"),
  20754. name: "Dick (Equine)",
  20755. image: {
  20756. source: "./media/characters/artemis/dick-equine.svg"
  20757. }
  20758. },
  20759. dickExotic: {
  20760. height: math.unit(0.85, "feet"),
  20761. name: "Dick (Exotic)",
  20762. image: {
  20763. source: "./media/characters/artemis/dick-exotic.svg"
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(7.5, "feet"),
  20771. default: true
  20772. },
  20773. {
  20774. name: "Enlarged",
  20775. height: math.unit(12, "feet")
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20781. {
  20782. front: {
  20783. height: math.unit(5 + 3 / 12, "feet"),
  20784. weight: math.unit(160, "lb"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/kira/front.svg",
  20788. extra: 906 / 786,
  20789. bottom: 0.01
  20790. }
  20791. },
  20792. back: {
  20793. height: math.unit(5 + 3 / 12, "feet"),
  20794. weight: math.unit(160, "lb"),
  20795. name: "Back",
  20796. image: {
  20797. source: "./media/characters/kira/back.svg",
  20798. extra: 882 / 757,
  20799. bottom: 0.005
  20800. }
  20801. },
  20802. frontDressed: {
  20803. height: math.unit(5 + 3 / 12, "feet"),
  20804. weight: math.unit(160, "lb"),
  20805. name: "Front (Dressed)",
  20806. image: {
  20807. source: "./media/characters/kira/front-dressed.svg",
  20808. extra: 906 / 786,
  20809. bottom: 0.01
  20810. }
  20811. },
  20812. beans: {
  20813. height: math.unit(0.92, "feet"),
  20814. name: "Beans",
  20815. image: {
  20816. source: "./media/characters/kira/beans.svg"
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(5 + 3 / 12, "feet"),
  20824. default: true
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20830. {
  20831. front: {
  20832. height: math.unit(5 + 4 / 12, "feet"),
  20833. weight: math.unit(145, "lb"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/scramble/front.svg",
  20837. extra: 763 / 727,
  20838. bottom: 0.05
  20839. }
  20840. },
  20841. back: {
  20842. height: math.unit(5 + 4 / 12, "feet"),
  20843. weight: math.unit(145, "lb"),
  20844. name: "Back",
  20845. image: {
  20846. source: "./media/characters/scramble/back.svg",
  20847. extra: 826 / 737,
  20848. bottom: 0.002
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(5 + 4 / 12, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20862. {
  20863. side: {
  20864. height: math.unit(6 + 2 / 12, "feet"),
  20865. weight: math.unit(190, "lb"),
  20866. name: "Side",
  20867. image: {
  20868. source: "./media/characters/biscuit/side.svg",
  20869. extra: 858 / 791,
  20870. bottom: 0.044
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(6 + 2 / 12, "feet"),
  20878. default: true
  20879. },
  20880. ]
  20881. ))
  20882. characterMakers.push(() => makeCharacter(
  20883. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20884. {
  20885. front: {
  20886. height: math.unit(5 + 2 / 12, "feet"),
  20887. weight: math.unit(120, "lb"),
  20888. name: "Front",
  20889. image: {
  20890. source: "./media/characters/poffin/front.svg",
  20891. extra: 786 / 680,
  20892. bottom: 0.005
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(5 + 2 / 12, "feet"),
  20900. default: true
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(6 + 3 / 12, "feet"),
  20909. weight: math.unit(519, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/dhari/front.svg",
  20913. extra: 1048 / 946,
  20914. bottom: 0.015
  20915. }
  20916. },
  20917. back: {
  20918. height: math.unit(6 + 3 / 12, "feet"),
  20919. weight: math.unit(519, "lb"),
  20920. name: "Back",
  20921. image: {
  20922. source: "./media/characters/dhari/back.svg",
  20923. extra: 1048 / 931,
  20924. bottom: 0.005
  20925. }
  20926. },
  20927. frontDressed: {
  20928. height: math.unit(6 + 3 / 12, "feet"),
  20929. weight: math.unit(519, "lb"),
  20930. name: "Front (Dressed)",
  20931. image: {
  20932. source: "./media/characters/dhari/front-dressed.svg",
  20933. extra: 1713 / 1546,
  20934. bottom: 0.02
  20935. }
  20936. },
  20937. backDressed: {
  20938. height: math.unit(6 + 3 / 12, "feet"),
  20939. weight: math.unit(519, "lb"),
  20940. name: "Back (Dressed)",
  20941. image: {
  20942. source: "./media/characters/dhari/back-dressed.svg",
  20943. extra: 1699 / 1537,
  20944. bottom: 0.01
  20945. }
  20946. },
  20947. maw: {
  20948. height: math.unit(0.95, "feet"),
  20949. name: "Maw",
  20950. image: {
  20951. source: "./media/characters/dhari/maw.svg"
  20952. }
  20953. },
  20954. wereFront: {
  20955. height: math.unit(12 + 8 / 12, "feet"),
  20956. weight: math.unit(4000, "lb"),
  20957. name: "Front (Were)",
  20958. image: {
  20959. source: "./media/characters/dhari/were-front.svg",
  20960. extra: 1065 / 969,
  20961. bottom: 0.015
  20962. }
  20963. },
  20964. wereBack: {
  20965. height: math.unit(12 + 8 / 12, "feet"),
  20966. weight: math.unit(4000, "lb"),
  20967. name: "Back (Were)",
  20968. image: {
  20969. source: "./media/characters/dhari/were-back.svg",
  20970. extra: 1065 / 969,
  20971. bottom: 0.012
  20972. }
  20973. },
  20974. wereMaw: {
  20975. height: math.unit(0.625, "meters"),
  20976. name: "Maw (Were)",
  20977. image: {
  20978. source: "./media/characters/dhari/were-maw.svg"
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(6 + 3 / 12, "feet"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20992. {
  20993. anthro: {
  20994. height: math.unit(5 + 7 / 12, "feet"),
  20995. weight: math.unit(175, "lb"),
  20996. name: "Anthro",
  20997. image: {
  20998. source: "./media/characters/rena-dyne/anthro.svg",
  20999. extra: 1849 / 1785,
  21000. bottom: 0.005
  21001. }
  21002. },
  21003. taur: {
  21004. height: math.unit(15 + 6 / 12, "feet"),
  21005. weight: math.unit(8000, "lb"),
  21006. name: "Taur",
  21007. image: {
  21008. source: "./media/characters/rena-dyne/taur.svg",
  21009. extra: 2315 / 2234,
  21010. bottom: 0.033
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(5 + 7 / 12, "feet"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21024. {
  21025. front: {
  21026. height: math.unit(8, "feet"),
  21027. weight: math.unit(600, "lb"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/weremeep/front.svg",
  21031. extra: 967 / 862,
  21032. bottom: 0.01
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(8, "feet"),
  21040. default: true
  21041. },
  21042. {
  21043. name: "Lorg",
  21044. height: math.unit(12, "feet")
  21045. },
  21046. {
  21047. name: "Oh Lawd She Comin'",
  21048. height: math.unit(20, "feet")
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21054. {
  21055. front: {
  21056. height: math.unit(4, "feet"),
  21057. weight: math.unit(90, "lb"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/reza/front.svg",
  21061. extra: 1183 / 1111,
  21062. bottom: 0.017
  21063. }
  21064. },
  21065. back: {
  21066. height: math.unit(4, "feet"),
  21067. weight: math.unit(90, "lb"),
  21068. name: "Back",
  21069. image: {
  21070. source: "./media/characters/reza/back.svg",
  21071. extra: 1183 / 1111,
  21072. bottom: 0.01
  21073. }
  21074. },
  21075. drake: {
  21076. height: math.unit(30, "feet"),
  21077. weight: math.unit(246960, "lb"),
  21078. name: "Drake",
  21079. image: {
  21080. source: "./media/characters/reza/drake.svg",
  21081. extra: 2350 / 2024,
  21082. bottom: 60.7 / 2403
  21083. }
  21084. },
  21085. },
  21086. [
  21087. {
  21088. name: "Normal",
  21089. height: math.unit(4, "feet"),
  21090. default: true
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21096. {
  21097. side: {
  21098. height: math.unit(15, "feet"),
  21099. weight: math.unit(14, "tons"),
  21100. name: "Side",
  21101. image: {
  21102. source: "./media/characters/athea/side.svg",
  21103. extra: 960 / 540,
  21104. bottom: 0.003
  21105. }
  21106. },
  21107. sitting: {
  21108. height: math.unit(6 * 2.85, "feet"),
  21109. weight: math.unit(14, "tons"),
  21110. name: "Sitting",
  21111. image: {
  21112. source: "./media/characters/athea/sitting.svg",
  21113. extra: 621 / 581,
  21114. bottom: 0.075
  21115. }
  21116. },
  21117. maw: {
  21118. height: math.unit(7.59498031496063, "feet"),
  21119. name: "Maw",
  21120. image: {
  21121. source: "./media/characters/athea/maw.svg"
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Lap Cat",
  21128. height: math.unit(2.5, "feet")
  21129. },
  21130. {
  21131. name: "Minimacro",
  21132. height: math.unit(15, "feet"),
  21133. default: true
  21134. },
  21135. {
  21136. name: "Macro",
  21137. height: math.unit(120, "feet")
  21138. },
  21139. {
  21140. name: "Macro+",
  21141. height: math.unit(640, "feet")
  21142. },
  21143. {
  21144. name: "Colossus",
  21145. height: math.unit(2.2, "miles")
  21146. },
  21147. ]
  21148. ))
  21149. characterMakers.push(() => makeCharacter(
  21150. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21151. {
  21152. front: {
  21153. height: math.unit(8 + 8 / 12, "feet"),
  21154. weight: math.unit(130, "kg"),
  21155. name: "Front",
  21156. image: {
  21157. source: "./media/characters/seroko/front.svg",
  21158. extra: 1385 / 1280,
  21159. bottom: 0.025
  21160. }
  21161. },
  21162. back: {
  21163. height: math.unit(8 + 8 / 12, "feet"),
  21164. weight: math.unit(130, "kg"),
  21165. name: "Back",
  21166. image: {
  21167. source: "./media/characters/seroko/back.svg",
  21168. extra: 1369 / 1238,
  21169. bottom: 0.018
  21170. }
  21171. },
  21172. frontDressed: {
  21173. height: math.unit(8 + 8 / 12, "feet"),
  21174. weight: math.unit(130, "kg"),
  21175. name: "Front (Dressed)",
  21176. image: {
  21177. source: "./media/characters/seroko/front-dressed.svg",
  21178. extra: 1366 / 1275,
  21179. bottom: 0.03
  21180. }
  21181. },
  21182. },
  21183. [
  21184. {
  21185. name: "Normal",
  21186. height: math.unit(8 + 8 / 12, "feet"),
  21187. default: true
  21188. },
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21193. {
  21194. front: {
  21195. height: math.unit(5.5, "feet"),
  21196. weight: math.unit(160, "lb"),
  21197. name: "Front",
  21198. image: {
  21199. source: "./media/characters/quatzi/front.svg",
  21200. extra: 2346 / 2242,
  21201. bottom: 0.015
  21202. }
  21203. },
  21204. },
  21205. [
  21206. {
  21207. name: "Normal",
  21208. height: math.unit(5.5, "feet"),
  21209. default: true
  21210. },
  21211. {
  21212. name: "Big",
  21213. height: math.unit(7.7, "feet")
  21214. },
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21219. {
  21220. front: {
  21221. height: math.unit(5 + 11 / 12, "feet"),
  21222. weight: math.unit(180, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/sen/front.svg",
  21226. extra: 1321 / 1254,
  21227. bottom: 0.015
  21228. }
  21229. },
  21230. side: {
  21231. height: math.unit(5 + 11 / 12, "feet"),
  21232. weight: math.unit(180, "lb"),
  21233. name: "Side",
  21234. image: {
  21235. source: "./media/characters/sen/side.svg",
  21236. extra: 1321 / 1254,
  21237. bottom: 0.007
  21238. }
  21239. },
  21240. back: {
  21241. height: math.unit(5 + 11 / 12, "feet"),
  21242. weight: math.unit(180, "lb"),
  21243. name: "Back",
  21244. image: {
  21245. source: "./media/characters/sen/back.svg",
  21246. extra: 1321 / 1254
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(5 + 11 / 12, "feet"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(166.6, "cm"),
  21263. weight: math.unit(66.6, "kg"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/fruity/front.svg",
  21267. extra: 1510 / 1386,
  21268. bottom: 0.04
  21269. }
  21270. },
  21271. back: {
  21272. height: math.unit(166.6, "cm"),
  21273. weight: math.unit(66.6, "lb"),
  21274. name: "Back",
  21275. image: {
  21276. source: "./media/characters/fruity/back.svg",
  21277. extra: 1563 / 1435,
  21278. bottom: 0.005
  21279. }
  21280. },
  21281. },
  21282. [
  21283. {
  21284. name: "Normal",
  21285. height: math.unit(166.6, "cm"),
  21286. default: true
  21287. },
  21288. {
  21289. name: "Demonic",
  21290. height: math.unit(166.6, "feet")
  21291. },
  21292. ]
  21293. ))
  21294. characterMakers.push(() => makeCharacter(
  21295. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21296. {
  21297. side: {
  21298. height: math.unit(10, "feet"),
  21299. weight: math.unit(500, "lb"),
  21300. name: "Side",
  21301. image: {
  21302. source: "./media/characters/zost/side.svg",
  21303. extra: 966 / 880,
  21304. bottom: 0.075
  21305. }
  21306. },
  21307. mawFront: {
  21308. height: math.unit(1.08, "meters"),
  21309. name: "Maw (Front)",
  21310. image: {
  21311. source: "./media/characters/zost/maw-front.svg"
  21312. }
  21313. },
  21314. mawSide: {
  21315. height: math.unit(2.66, "feet"),
  21316. name: "Maw (Side)",
  21317. image: {
  21318. source: "./media/characters/zost/maw-side.svg"
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Normal",
  21325. height: math.unit(10, "feet"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(5 + 4 / 12, "feet"),
  21335. weight: math.unit(120, "lb"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/luci/front.svg",
  21339. extra: 1985 / 1884,
  21340. bottom: 0.04
  21341. }
  21342. },
  21343. back: {
  21344. height: math.unit(5 + 4 / 12, "feet"),
  21345. weight: math.unit(120, "lb"),
  21346. name: "Back",
  21347. image: {
  21348. source: "./media/characters/luci/back.svg",
  21349. extra: 1892 / 1791,
  21350. bottom: 0.002
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Normal",
  21357. height: math.unit(5 + 4 / 12, "feet"),
  21358. default: true
  21359. },
  21360. ]
  21361. ))
  21362. characterMakers.push(() => makeCharacter(
  21363. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21364. {
  21365. front: {
  21366. height: math.unit(1500, "feet"),
  21367. weight: math.unit(3.8e6, "tons"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/2th/front.svg",
  21371. extra: 3489 / 3350,
  21372. bottom: 0.1
  21373. }
  21374. },
  21375. foot: {
  21376. height: math.unit(461, "feet"),
  21377. name: "Foot",
  21378. image: {
  21379. source: "./media/characters/2th/foot.svg"
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "\"Micro\"",
  21386. height: math.unit(15 + 7 / 12, "feet")
  21387. },
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(1500, "feet"),
  21391. default: true
  21392. },
  21393. {
  21394. name: "Macro",
  21395. height: math.unit(5000, "feet")
  21396. },
  21397. {
  21398. name: "Megamacro",
  21399. height: math.unit(15, "miles")
  21400. },
  21401. {
  21402. name: "Gigamacro",
  21403. height: math.unit(4000, "miles")
  21404. },
  21405. {
  21406. name: "Galactic",
  21407. height: math.unit(50, "AU")
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(5 + 6 / 12, "feet"),
  21416. weight: math.unit(220, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/amethyst/front.svg",
  21420. extra: 2078 / 2040,
  21421. bottom: 0.045
  21422. }
  21423. },
  21424. back: {
  21425. height: math.unit(5 + 6 / 12, "feet"),
  21426. weight: math.unit(220, "lb"),
  21427. name: "Back",
  21428. image: {
  21429. source: "./media/characters/amethyst/back.svg",
  21430. extra: 2021 / 1989,
  21431. bottom: 0.02
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(5 + 6 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(4 + 11 / 12, "feet"),
  21448. weight: math.unit(120, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/yumi-akiyama/front.svg",
  21452. extra: 1327 / 1235,
  21453. bottom: 0.02
  21454. }
  21455. },
  21456. back: {
  21457. height: math.unit(4 + 11 / 12, "feet"),
  21458. weight: math.unit(120, "lb"),
  21459. name: "Back",
  21460. image: {
  21461. source: "./media/characters/yumi-akiyama/back.svg",
  21462. extra: 1287 / 1245,
  21463. bottom: 0.002
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Galactic",
  21470. height: math.unit(50, "galaxies"),
  21471. default: true
  21472. },
  21473. {
  21474. name: "Universal",
  21475. height: math.unit(100, "universes")
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(8, "feet"),
  21484. weight: math.unit(500, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/rifter-yrmori/front.svg",
  21488. extra: 1180 / 1125,
  21489. bottom: 0.02
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(8, "feet"),
  21494. weight: math.unit(500, "lb"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/rifter-yrmori/back.svg",
  21498. extra: 1190 / 1145,
  21499. bottom: 0.001
  21500. }
  21501. },
  21502. wings: {
  21503. height: math.unit(7.75, "feet"),
  21504. weight: math.unit(500, "lb"),
  21505. name: "Wings",
  21506. image: {
  21507. source: "./media/characters/rifter-yrmori/wings.svg",
  21508. extra: 1357 / 1285
  21509. }
  21510. },
  21511. maw: {
  21512. height: math.unit(0.8, "feet"),
  21513. name: "Maw",
  21514. image: {
  21515. source: "./media/characters/rifter-yrmori/maw.svg"
  21516. }
  21517. },
  21518. mawfront: {
  21519. height: math.unit(1.45, "feet"),
  21520. name: "Maw (Front)",
  21521. image: {
  21522. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(8, "feet"),
  21530. default: true
  21531. },
  21532. {
  21533. name: "Macro",
  21534. height: math.unit(42, "meters")
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21540. {
  21541. were: {
  21542. height: math.unit(25 + 6 / 12, "feet"),
  21543. weight: math.unit(10000, "lb"),
  21544. name: "Were",
  21545. image: {
  21546. source: "./media/characters/tahajin/were.svg",
  21547. extra: 801 / 770,
  21548. bottom: 0.042
  21549. }
  21550. },
  21551. aquatic: {
  21552. height: math.unit(6 + 4 / 12, "feet"),
  21553. weight: math.unit(160, "lb"),
  21554. name: "Aquatic",
  21555. image: {
  21556. source: "./media/characters/tahajin/aquatic.svg",
  21557. extra: 572 / 542,
  21558. bottom: 0.04
  21559. }
  21560. },
  21561. chow: {
  21562. height: math.unit(8 + 11 / 12, "feet"),
  21563. weight: math.unit(450, "lb"),
  21564. name: "Chow",
  21565. image: {
  21566. source: "./media/characters/tahajin/chow.svg",
  21567. extra: 660 / 640,
  21568. bottom: 0.015
  21569. }
  21570. },
  21571. demiNaga: {
  21572. height: math.unit(6 + 8 / 12, "feet"),
  21573. weight: math.unit(300, "lb"),
  21574. name: "Demi Naga",
  21575. image: {
  21576. source: "./media/characters/tahajin/demi-naga.svg",
  21577. extra: 643 / 615,
  21578. bottom: 0.1
  21579. }
  21580. },
  21581. data: {
  21582. height: math.unit(5, "inches"),
  21583. weight: math.unit(0.1, "lb"),
  21584. name: "Data",
  21585. image: {
  21586. source: "./media/characters/tahajin/data.svg"
  21587. }
  21588. },
  21589. fluu: {
  21590. height: math.unit(5 + 7 / 12, "feet"),
  21591. weight: math.unit(140, "lb"),
  21592. name: "Fluu",
  21593. image: {
  21594. source: "./media/characters/tahajin/fluu.svg",
  21595. extra: 628 / 592,
  21596. bottom: 0.02
  21597. }
  21598. },
  21599. starWarrior: {
  21600. height: math.unit(4 + 5 / 12, "feet"),
  21601. weight: math.unit(50, "lb"),
  21602. name: "Star Warrior",
  21603. image: {
  21604. source: "./media/characters/tahajin/star-warrior.svg"
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(25 + 6 / 12, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(8, "feet"),
  21621. weight: math.unit(350, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/gabira/front.svg",
  21625. extra: 608 / 580,
  21626. bottom: 0.03
  21627. }
  21628. },
  21629. back: {
  21630. height: math.unit(8, "feet"),
  21631. weight: math.unit(350, "lb"),
  21632. name: "Back",
  21633. image: {
  21634. source: "./media/characters/gabira/back.svg",
  21635. extra: 608 / 580,
  21636. bottom: 0.03
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Normal",
  21643. height: math.unit(8, "feet"),
  21644. default: true
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21650. {
  21651. front: {
  21652. height: math.unit(5 + 3 / 12, "feet"),
  21653. weight: math.unit(137, "lb"),
  21654. name: "Front",
  21655. image: {
  21656. source: "./media/characters/sasha-katraine/front.svg",
  21657. bottom: 0.045
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Micro",
  21664. height: math.unit(5, "inches")
  21665. },
  21666. {
  21667. name: "Normal",
  21668. height: math.unit(5 + 3 / 12, "feet"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21675. {
  21676. side: {
  21677. height: math.unit(4, "inches"),
  21678. weight: math.unit(200, "grams"),
  21679. name: "Side",
  21680. image: {
  21681. source: "./media/characters/der/side.svg",
  21682. extra: 719 / 400,
  21683. bottom: 30.6 / 749.9187
  21684. }
  21685. },
  21686. },
  21687. [
  21688. {
  21689. name: "Micro",
  21690. height: math.unit(4, "inches"),
  21691. default: true
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21697. {
  21698. side: {
  21699. height: math.unit(30, "meters"),
  21700. weight: math.unit(700, "tonnes"),
  21701. name: "Side",
  21702. image: {
  21703. source: "./media/characters/fixerdragon/side.svg",
  21704. extra: (1293.0514 - 116.03) / 1106.86,
  21705. bottom: 116.03 / 1293.0514
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Planck",
  21712. height: math.unit(1.6e-35, "meters")
  21713. },
  21714. {
  21715. name: "Micro",
  21716. height: math.unit(0.4, "meters")
  21717. },
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(30, "meters"),
  21721. default: true
  21722. },
  21723. {
  21724. name: "Megamacro",
  21725. height: math.unit(1.2, "megameters")
  21726. },
  21727. {
  21728. name: "Teramacro",
  21729. height: math.unit(130, "terameters")
  21730. },
  21731. {
  21732. name: "Yottamacro",
  21733. height: math.unit(6200, "yottameters")
  21734. },
  21735. ]
  21736. ));
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21739. {
  21740. front: {
  21741. height: math.unit(8, "feet"),
  21742. weight: math.unit(250, "lb"),
  21743. name: "Front",
  21744. image: {
  21745. source: "./media/characters/kite/front.svg",
  21746. extra: 2796 / 2659,
  21747. bottom: 0.002
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(8, "feet"),
  21755. default: true
  21756. },
  21757. {
  21758. name: "Macro",
  21759. height: math.unit(360, "feet")
  21760. },
  21761. {
  21762. name: "Megamacro",
  21763. height: math.unit(1500, "feet")
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(5 + 11/12, "feet"),
  21772. weight: math.unit(170, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/poojawa-vynar/front.svg",
  21776. extra: 1735/1585,
  21777. bottom: 96/1831
  21778. }
  21779. },
  21780. back: {
  21781. height: math.unit(5 + 11/12, "feet"),
  21782. weight: math.unit(170, "lb"),
  21783. name: "Back",
  21784. image: {
  21785. source: "./media/characters/poojawa-vynar/back.svg",
  21786. extra: 1749/1607,
  21787. bottom: 28/1777
  21788. }
  21789. },
  21790. male: {
  21791. height: math.unit(5 + 11/12, "feet"),
  21792. weight: math.unit(170, "lb"),
  21793. name: "Male",
  21794. image: {
  21795. source: "./media/characters/poojawa-vynar/male.svg",
  21796. extra: 1855/1713,
  21797. bottom: 63/1918
  21798. }
  21799. },
  21800. taur: {
  21801. height: math.unit(5 + 11/12, "feet"),
  21802. weight: math.unit(170, "lb"),
  21803. name: "Taur",
  21804. image: {
  21805. source: "./media/characters/poojawa-vynar/taur.svg",
  21806. extra: 1151/1059,
  21807. bottom: 356/1507
  21808. }
  21809. },
  21810. frontDressed: {
  21811. height: math.unit(5 + 11/12, "feet"),
  21812. weight: math.unit(170, "lb"),
  21813. name: "Front (Dressed)",
  21814. image: {
  21815. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21816. extra: 1735/1585,
  21817. bottom: 96/1831
  21818. }
  21819. },
  21820. backDressed: {
  21821. height: math.unit(5 + 11/12, "feet"),
  21822. weight: math.unit(170, "lb"),
  21823. name: "Back (Dressed)",
  21824. image: {
  21825. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21826. extra: 1749/1607,
  21827. bottom: 28/1777
  21828. }
  21829. },
  21830. maleDressed: {
  21831. height: math.unit(5 + 11/12, "feet"),
  21832. weight: math.unit(170, "lb"),
  21833. name: "Male (Dressed)",
  21834. image: {
  21835. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21836. extra: 1855/1713,
  21837. bottom: 63/1918
  21838. }
  21839. },
  21840. taurDressed: {
  21841. height: math.unit(5 + 11/12, "feet"),
  21842. weight: math.unit(170, "lb"),
  21843. name: "Taur (Dressed)",
  21844. image: {
  21845. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21846. extra: 1151/1059,
  21847. bottom: 356/1507
  21848. }
  21849. },
  21850. maw: {
  21851. height: math.unit(1.46, "feet"),
  21852. name: "Maw",
  21853. image: {
  21854. source: "./media/characters/poojawa-vynar/maw.svg"
  21855. }
  21856. },
  21857. head: {
  21858. height: math.unit(2.34, "feet"),
  21859. name: "Head",
  21860. image: {
  21861. source: "./media/characters/poojawa-vynar/head.svg"
  21862. }
  21863. },
  21864. paw: {
  21865. height: math.unit(1.61, "feet"),
  21866. name: "Paw",
  21867. image: {
  21868. source: "./media/characters/poojawa-vynar/paw.svg"
  21869. }
  21870. },
  21871. pawToering: {
  21872. height: math.unit(1.72, "feet"),
  21873. name: "Paw (Toering)",
  21874. image: {
  21875. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21876. }
  21877. },
  21878. toering: {
  21879. height: math.unit(2.9, "inches"),
  21880. name: "Toering",
  21881. image: {
  21882. source: "./media/characters/poojawa-vynar/toering.svg"
  21883. }
  21884. },
  21885. shaft: {
  21886. height: math.unit(0.625, "feet"),
  21887. name: "Shaft",
  21888. image: {
  21889. source: "./media/characters/poojawa-vynar/shaft.svg"
  21890. }
  21891. },
  21892. spade: {
  21893. height: math.unit(0.42, "feet"),
  21894. name: "Spade",
  21895. image: {
  21896. source: "./media/characters/poojawa-vynar/spade.svg"
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Shortstack",
  21903. height: math.unit(4, "feet")
  21904. },
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(5 + 11 / 12, "feet"),
  21908. default: true
  21909. },
  21910. {
  21911. name: "Tauric",
  21912. height: math.unit(4, "meters")
  21913. },
  21914. ]
  21915. ))
  21916. characterMakers.push(() => makeCharacter(
  21917. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21918. {
  21919. front: {
  21920. height: math.unit(293, "meters"),
  21921. weight: math.unit(70400, "tons"),
  21922. name: "Front",
  21923. image: {
  21924. source: "./media/characters/violette/front.svg",
  21925. extra: 1227 / 1180,
  21926. bottom: 0.005
  21927. }
  21928. },
  21929. back: {
  21930. height: math.unit(293, "meters"),
  21931. weight: math.unit(70400, "tons"),
  21932. name: "Back",
  21933. image: {
  21934. source: "./media/characters/violette/back.svg",
  21935. extra: 1227 / 1180,
  21936. bottom: 0.005
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(293, "meters"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(1050, "feet"),
  21953. weight: math.unit(200000, "tons"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/alessandra/front.svg",
  21957. extra: 960 / 912,
  21958. bottom: 0.06
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Macro",
  21965. height: math.unit(1050, "feet")
  21966. },
  21967. {
  21968. name: "Macro+",
  21969. height: math.unit(900, "meters"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(5, "feet"),
  21979. weight: math.unit(187, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/person/front.svg",
  21983. extra: 3087 / 2945,
  21984. bottom: 91 / 3181
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Micro",
  21991. height: math.unit(3, "inches")
  21992. },
  21993. {
  21994. name: "Normal",
  21995. height: math.unit(5, "feet"),
  21996. default: true
  21997. },
  21998. {
  21999. name: "Macro",
  22000. height: math.unit(90, "feet")
  22001. },
  22002. {
  22003. name: "Max Size",
  22004. height: math.unit(280, "feet")
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22010. {
  22011. front: {
  22012. height: math.unit(4.5, "meters"),
  22013. weight: math.unit(3200, "lb"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/ty/front.svg",
  22017. extra: 1038 / 960,
  22018. bottom: 31.156 / 1068
  22019. }
  22020. },
  22021. back: {
  22022. height: math.unit(4.5, "meters"),
  22023. weight: math.unit(3200, "lb"),
  22024. name: "Back",
  22025. image: {
  22026. source: "./media/characters/ty/back.svg",
  22027. extra: 1044 / 966,
  22028. bottom: 7.48 / 1049
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(4.5, "meters"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(5 + 4 / 12, "feet"),
  22045. weight: math.unit(115, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/rocky/front.svg",
  22049. extra: 1012 / 975,
  22050. bottom: 54 / 1066
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(5 + 4 / 12, "feet"),
  22058. default: true
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22064. {
  22065. upright: {
  22066. height: math.unit(6, "meters"),
  22067. weight: math.unit(4000, "kg"),
  22068. name: "Upright",
  22069. image: {
  22070. source: "./media/characters/ruin/upright.svg",
  22071. extra: 668 / 661,
  22072. bottom: 42 / 799.8396
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(6, "meters"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22086. {
  22087. front: {
  22088. height: math.unit(5, "feet"),
  22089. weight: math.unit(106, "lb"),
  22090. name: "Front",
  22091. image: {
  22092. source: "./media/characters/robin/front.svg",
  22093. extra: 862 / 799,
  22094. bottom: 42.4 / 914.8856
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(5, "feet"),
  22102. default: true
  22103. },
  22104. ]
  22105. ))
  22106. characterMakers.push(() => makeCharacter(
  22107. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22108. {
  22109. side: {
  22110. height: math.unit(3, "feet"),
  22111. weight: math.unit(225, "lb"),
  22112. name: "Side",
  22113. image: {
  22114. source: "./media/characters/saian/side.svg",
  22115. extra: 566 / 356,
  22116. bottom: 79.7 / 643
  22117. }
  22118. },
  22119. maw: {
  22120. height: math.unit(2.85, "feet"),
  22121. name: "Maw",
  22122. image: {
  22123. source: "./media/characters/saian/maw.svg"
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(3, "feet"),
  22131. default: true
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22137. {
  22138. side: {
  22139. height: math.unit(8, "feet"),
  22140. weight: math.unit(300, "lb"),
  22141. name: "Side",
  22142. image: {
  22143. source: "./media/characters/equus-silvermane/side.svg",
  22144. extra: 2176 / 2050,
  22145. bottom: 65.7 / 2245
  22146. }
  22147. },
  22148. front: {
  22149. height: math.unit(8, "feet"),
  22150. weight: math.unit(300, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/equus-silvermane/front.svg",
  22154. extra: 4633 / 4400,
  22155. bottom: 71.3 / 4706.915
  22156. }
  22157. },
  22158. sideStepping: {
  22159. height: math.unit(8, "feet"),
  22160. weight: math.unit(300, "lb"),
  22161. name: "Side (Stepping)",
  22162. image: {
  22163. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22164. extra: 1968 / 1860,
  22165. bottom: 16.4 / 1989
  22166. }
  22167. },
  22168. },
  22169. [
  22170. {
  22171. name: "Normal",
  22172. height: math.unit(8, "feet")
  22173. },
  22174. {
  22175. name: "Minimacro",
  22176. height: math.unit(75, "feet"),
  22177. default: true
  22178. },
  22179. {
  22180. name: "Macro",
  22181. height: math.unit(150, "feet")
  22182. },
  22183. {
  22184. name: "Macro+",
  22185. height: math.unit(1000, "feet")
  22186. },
  22187. {
  22188. name: "Megamacro",
  22189. height: math.unit(1, "mile")
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22195. {
  22196. side: {
  22197. height: math.unit(20, "feet"),
  22198. weight: math.unit(30000, "kg"),
  22199. name: "Side",
  22200. image: {
  22201. source: "./media/characters/windar/side.svg",
  22202. extra: 1491 / 1248,
  22203. bottom: 82.56 / 1568
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(20, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22217. {
  22218. side: {
  22219. height: math.unit(15.66, "feet"),
  22220. weight: math.unit(150, "lb"),
  22221. name: "Side",
  22222. image: {
  22223. source: "./media/characters/melody/side.svg",
  22224. extra: 1097 / 944,
  22225. bottom: 11.8 / 1109
  22226. }
  22227. },
  22228. sideOutfit: {
  22229. height: math.unit(15.66, "feet"),
  22230. weight: math.unit(150, "lb"),
  22231. name: "Side (Outfit)",
  22232. image: {
  22233. source: "./media/characters/melody/side-outfit.svg",
  22234. extra: 1097 / 944,
  22235. bottom: 11.8 / 1109
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Normal",
  22242. height: math.unit(15.66, "feet"),
  22243. default: true
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22249. {
  22250. front: {
  22251. height: math.unit(8, "feet"),
  22252. weight: math.unit(325, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/windera/front.svg",
  22256. extra: 3180 / 2845,
  22257. bottom: 178 / 3365
  22258. }
  22259. },
  22260. },
  22261. [
  22262. {
  22263. name: "Normal",
  22264. height: math.unit(8, "feet"),
  22265. default: true
  22266. },
  22267. ]
  22268. ))
  22269. characterMakers.push(() => makeCharacter(
  22270. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22271. {
  22272. front: {
  22273. height: math.unit(28.75, "feet"),
  22274. weight: math.unit(2000, "kg"),
  22275. name: "Front",
  22276. image: {
  22277. source: "./media/characters/sonear/front.svg",
  22278. extra: 1041.1 / 964.9,
  22279. bottom: 53.7 / 1096.6
  22280. }
  22281. },
  22282. },
  22283. [
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(28.75, "feet"),
  22287. default: true
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22293. {
  22294. side: {
  22295. height: math.unit(25.5, "feet"),
  22296. weight: math.unit(23000, "kg"),
  22297. name: "Side",
  22298. image: {
  22299. source: "./media/characters/kanara/side.svg"
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Normal",
  22306. height: math.unit(25.5, "feet"),
  22307. default: true
  22308. },
  22309. ]
  22310. ))
  22311. characterMakers.push(() => makeCharacter(
  22312. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22313. {
  22314. side: {
  22315. height: math.unit(10, "feet"),
  22316. weight: math.unit(1000, "kg"),
  22317. name: "Side",
  22318. image: {
  22319. source: "./media/characters/ereus/side.svg",
  22320. extra: 1157 / 959,
  22321. bottom: 153 / 1312.5
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Normal",
  22328. height: math.unit(10, "feet"),
  22329. default: true
  22330. },
  22331. ]
  22332. ))
  22333. characterMakers.push(() => makeCharacter(
  22334. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22335. {
  22336. side: {
  22337. height: math.unit(4.5, "feet"),
  22338. weight: math.unit(500, "lb"),
  22339. name: "Side",
  22340. image: {
  22341. source: "./media/characters/e-ter/side.svg",
  22342. extra: 1550 / 1248,
  22343. bottom: 146 / 1694
  22344. }
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Normal",
  22350. height: math.unit(4.5, "feet"),
  22351. default: true
  22352. },
  22353. ]
  22354. ))
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22357. {
  22358. side: {
  22359. height: math.unit(9.7, "feet"),
  22360. weight: math.unit(4000, "kg"),
  22361. name: "Side",
  22362. image: {
  22363. source: "./media/characters/yamie/side.svg"
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Normal",
  22370. height: math.unit(9.7, "feet"),
  22371. default: true
  22372. },
  22373. ]
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(50, "feet"),
  22380. weight: math.unit(50000, "kg"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/anders/front.svg",
  22384. extra: 570 / 539,
  22385. bottom: 14.7 / 586.7
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Large",
  22392. height: math.unit(50, "feet")
  22393. },
  22394. {
  22395. name: "Macro",
  22396. height: math.unit(2000, "feet"),
  22397. default: true
  22398. },
  22399. {
  22400. name: "Megamacro",
  22401. height: math.unit(12, "miles")
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22407. {
  22408. front: {
  22409. height: math.unit(7 + 2 / 12, "feet"),
  22410. weight: math.unit(300, "lb"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/reban/front.svg",
  22414. extra: 1287/1212,
  22415. bottom: 148/1435
  22416. }
  22417. },
  22418. head: {
  22419. height: math.unit(1.95, "feet"),
  22420. name: "Head",
  22421. image: {
  22422. source: "./media/characters/reban/head.svg"
  22423. }
  22424. },
  22425. maw: {
  22426. height: math.unit(0.95, "feet"),
  22427. name: "Maw",
  22428. image: {
  22429. source: "./media/characters/reban/maw.svg"
  22430. }
  22431. },
  22432. foot: {
  22433. height: math.unit(1.65, "feet"),
  22434. name: "Foot",
  22435. image: {
  22436. source: "./media/characters/reban/foot.svg"
  22437. }
  22438. },
  22439. dick: {
  22440. height: math.unit(7 / 5, "feet"),
  22441. name: "Dick",
  22442. image: {
  22443. source: "./media/characters/reban/dick.svg"
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Natural Height",
  22450. height: math.unit(7 + 2 / 12, "feet")
  22451. },
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(500, "feet"),
  22455. default: true
  22456. },
  22457. {
  22458. name: "Canon Height",
  22459. height: math.unit(50, "AU")
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(6, "feet"),
  22468. weight: math.unit(150, "lb"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/terrance-keayes/front.svg",
  22472. extra: 1.005,
  22473. bottom: 151 / 1615
  22474. }
  22475. },
  22476. side: {
  22477. height: math.unit(6, "feet"),
  22478. weight: math.unit(150, "lb"),
  22479. name: "Side",
  22480. image: {
  22481. source: "./media/characters/terrance-keayes/side.svg",
  22482. extra: 1.005,
  22483. bottom: 129.4 / 1544
  22484. }
  22485. },
  22486. back: {
  22487. height: math.unit(6, "feet"),
  22488. weight: math.unit(150, "lb"),
  22489. name: "Back",
  22490. image: {
  22491. source: "./media/characters/terrance-keayes/back.svg",
  22492. extra: 1.005,
  22493. bottom: 58.4 / 1557.3
  22494. }
  22495. },
  22496. dick: {
  22497. height: math.unit(6 * 0.208, "feet"),
  22498. name: "Dick",
  22499. image: {
  22500. source: "./media/characters/terrance-keayes/dick.svg"
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Canon Height",
  22507. height: math.unit(35, "miles"),
  22508. default: true
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(6, "feet"),
  22517. weight: math.unit(150, "lb"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/ofelia/front.svg",
  22521. extra: 1130/1117,
  22522. bottom: 91/1221
  22523. }
  22524. },
  22525. back: {
  22526. height: math.unit(6, "feet"),
  22527. weight: math.unit(150, "lb"),
  22528. name: "Back",
  22529. image: {
  22530. source: "./media/characters/ofelia/back.svg",
  22531. extra: 1172/1159,
  22532. bottom: 28/1200
  22533. }
  22534. },
  22535. maw: {
  22536. height: math.unit(1, "feet"),
  22537. name: "Maw",
  22538. image: {
  22539. source: "./media/characters/ofelia/maw.svg"
  22540. }
  22541. },
  22542. foot: {
  22543. height: math.unit(1.949, "feet"),
  22544. name: "Foot",
  22545. image: {
  22546. source: "./media/characters/ofelia/foot.svg"
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Canon Height",
  22553. height: math.unit(2000, "miles"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(6, "feet"),
  22563. weight: math.unit(150, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/samuel/front.svg",
  22567. extra: 265 / 258,
  22568. bottom: 2 / 266.1566
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Macro",
  22575. height: math.unit(100, "feet"),
  22576. default: true
  22577. },
  22578. {
  22579. name: "Full Size",
  22580. height: math.unit(1000, "miles")
  22581. },
  22582. ]
  22583. ))
  22584. characterMakers.push(() => makeCharacter(
  22585. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22586. {
  22587. front: {
  22588. height: math.unit(6, "feet"),
  22589. weight: math.unit(300, "lb"),
  22590. name: "Front",
  22591. image: {
  22592. source: "./media/characters/beishir-kiel/front.svg",
  22593. extra: 569 / 547,
  22594. bottom: 41.9 / 609
  22595. }
  22596. },
  22597. maw: {
  22598. height: math.unit(6 * 0.202, "feet"),
  22599. name: "Maw",
  22600. image: {
  22601. source: "./media/characters/beishir-kiel/maw.svg"
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Macro",
  22608. height: math.unit(300, "feet"),
  22609. default: true
  22610. },
  22611. ]
  22612. ))
  22613. characterMakers.push(() => makeCharacter(
  22614. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22615. {
  22616. front: {
  22617. height: math.unit(5 + 7/12, "feet"),
  22618. weight: math.unit(120, "lb"),
  22619. name: "Front",
  22620. image: {
  22621. source: "./media/characters/logan-grey/front.svg",
  22622. extra: 1836/1738,
  22623. bottom: 108/1944
  22624. }
  22625. },
  22626. back: {
  22627. height: math.unit(5 + 7/12, "feet"),
  22628. weight: math.unit(120, "lb"),
  22629. name: "Back",
  22630. image: {
  22631. source: "./media/characters/logan-grey/back.svg",
  22632. extra: 1880/1794,
  22633. bottom: 24/1904
  22634. }
  22635. },
  22636. frontSfw: {
  22637. height: math.unit(5 + 7/12, "feet"),
  22638. weight: math.unit(120, "lb"),
  22639. name: "Front (SFW)",
  22640. image: {
  22641. source: "./media/characters/logan-grey/front-sfw.svg",
  22642. extra: 1836/1738,
  22643. bottom: 108/1944
  22644. }
  22645. },
  22646. backSfw: {
  22647. height: math.unit(5 + 7/12, "feet"),
  22648. weight: math.unit(120, "lb"),
  22649. name: "Back (SFW)",
  22650. image: {
  22651. source: "./media/characters/logan-grey/back-sfw.svg",
  22652. extra: 1880/1794,
  22653. bottom: 24/1904
  22654. }
  22655. },
  22656. hands: {
  22657. height: math.unit(0.84, "feet"),
  22658. name: "Hands",
  22659. image: {
  22660. source: "./media/characters/logan-grey/hands.svg"
  22661. }
  22662. },
  22663. paws: {
  22664. height: math.unit(0.72, "feet"),
  22665. name: "Paws",
  22666. image: {
  22667. source: "./media/characters/logan-grey/paws.svg"
  22668. }
  22669. },
  22670. cock: {
  22671. height: math.unit(1.45, "feet"),
  22672. name: "Cock",
  22673. image: {
  22674. source: "./media/characters/logan-grey/cock.svg"
  22675. }
  22676. },
  22677. cockAlt: {
  22678. height: math.unit(1.437, "feet"),
  22679. name: "Cock (alt)",
  22680. image: {
  22681. source: "./media/characters/logan-grey/cock-alt.svg"
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(5 + 8 / 12, "feet")
  22689. },
  22690. {
  22691. name: "The 500 Foot Femboy",
  22692. height: math.unit(500, "feet"),
  22693. default: true
  22694. },
  22695. {
  22696. name: "Megmacro",
  22697. height: math.unit(20, "miles")
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22703. {
  22704. front: {
  22705. height: math.unit(8 + 2 / 12, "feet"),
  22706. weight: math.unit(275, "lb"),
  22707. name: "Front",
  22708. image: {
  22709. source: "./media/characters/draganta/front.svg",
  22710. extra: 1177 / 1135,
  22711. bottom: 33.46 / 1212.1
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(8 + 6 / 12, "feet"),
  22719. default: true
  22720. },
  22721. {
  22722. name: "Macro",
  22723. height: math.unit(150, "feet")
  22724. },
  22725. {
  22726. name: "Megamacro",
  22727. height: math.unit(1000, "miles")
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(1.72, "m"),
  22736. weight: math.unit(80, "lb"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/voski/front.svg",
  22740. extra: 2076.22 / 2022.4,
  22741. bottom: 102.7 / 2177.3866
  22742. }
  22743. },
  22744. frontNsfw: {
  22745. height: math.unit(1.72, "m"),
  22746. weight: math.unit(80, "lb"),
  22747. name: "Front (NSFW)",
  22748. image: {
  22749. source: "./media/characters/voski/front-nsfw.svg",
  22750. extra: 2076.22 / 2022.4,
  22751. bottom: 102.7 / 2177.3866
  22752. }
  22753. },
  22754. back: {
  22755. height: math.unit(1.72, "m"),
  22756. weight: math.unit(80, "lb"),
  22757. name: "Back",
  22758. image: {
  22759. source: "./media/characters/voski/back.svg",
  22760. extra: 2104 / 2051,
  22761. bottom: 10.45 / 2113.63
  22762. }
  22763. },
  22764. },
  22765. [
  22766. {
  22767. name: "Normal",
  22768. height: math.unit(1.72, "m")
  22769. },
  22770. {
  22771. name: "Macro",
  22772. height: math.unit(55, "m"),
  22773. default: true
  22774. },
  22775. {
  22776. name: "Macro+",
  22777. height: math.unit(300, "m")
  22778. },
  22779. {
  22780. name: "Macro++",
  22781. height: math.unit(700, "m")
  22782. },
  22783. {
  22784. name: "Macro+++",
  22785. height: math.unit(4500, "m")
  22786. },
  22787. {
  22788. name: "Macro++++",
  22789. height: math.unit(45, "km")
  22790. },
  22791. {
  22792. name: "Macro+++++",
  22793. height: math.unit(1220, "km")
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(2.3, "m"),
  22802. weight: math.unit(304, "kg"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/icowom-lee/front.svg",
  22806. extra: 985 / 955,
  22807. bottom: 25.4 / 1012
  22808. }
  22809. },
  22810. fronttentacles: {
  22811. height: math.unit(2.3, "m"),
  22812. weight: math.unit(304, "kg"),
  22813. name: "Front-tentacles",
  22814. image: {
  22815. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22816. extra: 985 / 955,
  22817. bottom: 25.4 / 1012
  22818. }
  22819. },
  22820. back: {
  22821. height: math.unit(2.3, "m"),
  22822. weight: math.unit(304, "kg"),
  22823. name: "Back",
  22824. image: {
  22825. source: "./media/characters/icowom-lee/back.svg",
  22826. extra: 975 / 954,
  22827. bottom: 9.5 / 985
  22828. }
  22829. },
  22830. backtentacles: {
  22831. height: math.unit(2.3, "m"),
  22832. weight: math.unit(304, "kg"),
  22833. name: "Back-tentacles",
  22834. image: {
  22835. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22836. extra: 975 / 954,
  22837. bottom: 9.5 / 985
  22838. }
  22839. },
  22840. frontDressed: {
  22841. height: math.unit(2.3, "m"),
  22842. weight: math.unit(304, "kg"),
  22843. name: "Front (Dressed)",
  22844. image: {
  22845. source: "./media/characters/icowom-lee/front-dressed.svg",
  22846. extra: 3076 / 2933,
  22847. bottom: 51.4 / 3125.1889
  22848. }
  22849. },
  22850. rump: {
  22851. height: math.unit(0.776, "meters"),
  22852. name: "Rump",
  22853. image: {
  22854. source: "./media/characters/icowom-lee/rump.svg"
  22855. }
  22856. },
  22857. genitals: {
  22858. height: math.unit(0.78, "meters"),
  22859. name: "Genitals",
  22860. image: {
  22861. source: "./media/characters/icowom-lee/genitals.svg"
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(2.3, "meters"),
  22869. default: true
  22870. },
  22871. {
  22872. name: "Macro",
  22873. height: math.unit(94, "meters"),
  22874. default: true
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(22, "meters"),
  22883. weight: math.unit(21000, "kg"),
  22884. name: "Front",
  22885. image: {
  22886. source: "./media/characters/shock-diamond/front.svg",
  22887. extra: 2204 / 2053,
  22888. bottom: 65 / 2239.47
  22889. }
  22890. },
  22891. frontNude: {
  22892. height: math.unit(22, "meters"),
  22893. weight: math.unit(21000, "kg"),
  22894. name: "Front (Nude)",
  22895. image: {
  22896. source: "./media/characters/shock-diamond/front-nude.svg",
  22897. extra: 2514 / 2285,
  22898. bottom: 13 / 2527.56
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(3, "meters")
  22906. },
  22907. {
  22908. name: "Macro",
  22909. height: math.unit(22, "meters"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(5 + 4 / 12, "feet"),
  22919. weight: math.unit(120, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/rory/front.svg",
  22923. extra: 1318/1241,
  22924. bottom: 42/1360
  22925. }
  22926. },
  22927. back: {
  22928. height: math.unit(5 + 4 / 12, "feet"),
  22929. weight: math.unit(120, "lb"),
  22930. name: "Back",
  22931. image: {
  22932. source: "./media/characters/rory/back.svg",
  22933. extra: 1318/1241,
  22934. bottom: 42/1360
  22935. }
  22936. },
  22937. butt: {
  22938. height: math.unit(1.74, "feet"),
  22939. name: "Butt",
  22940. image: {
  22941. source: "./media/characters/rory/butt.svg"
  22942. }
  22943. },
  22944. dick: {
  22945. height: math.unit(1.02, "feet"),
  22946. name: "Dick",
  22947. image: {
  22948. source: "./media/characters/rory/dick.svg"
  22949. }
  22950. },
  22951. paws: {
  22952. height: math.unit(1, "feet"),
  22953. name: "Paws",
  22954. image: {
  22955. source: "./media/characters/rory/paws.svg"
  22956. }
  22957. },
  22958. frontAlt: {
  22959. height: math.unit(5 + 4 / 12, "feet"),
  22960. weight: math.unit(120, "lb"),
  22961. name: "Front (Alt)",
  22962. image: {
  22963. source: "./media/characters/rory/front-alt.svg",
  22964. extra: 589 / 556,
  22965. bottom: 45.7 / 635.76
  22966. }
  22967. },
  22968. frontAltNude: {
  22969. height: math.unit(5 + 4 / 12, "feet"),
  22970. weight: math.unit(120, "lb"),
  22971. name: "Front (Alt, Nude)",
  22972. image: {
  22973. source: "./media/characters/rory/front-alt-nude.svg",
  22974. extra: 589 / 556,
  22975. bottom: 45.7 / 635.76
  22976. }
  22977. },
  22978. side: {
  22979. height: math.unit(5 + 4 / 12, "feet"),
  22980. weight: math.unit(120, "lb"),
  22981. name: "Side",
  22982. image: {
  22983. source: "./media/characters/rory/side.svg",
  22984. extra: 597 / 564,
  22985. bottom: 55 / 653
  22986. }
  22987. },
  22988. backAlt: {
  22989. height: math.unit(5 + 4 / 12, "feet"),
  22990. weight: math.unit(120, "lb"),
  22991. name: "Back (Alt)",
  22992. image: {
  22993. source: "./media/characters/rory/back-alt.svg",
  22994. extra: 620 / 585,
  22995. bottom: 8.86 / 630.43
  22996. }
  22997. },
  22998. dickAlt: {
  22999. height: math.unit(0.86, "feet"),
  23000. name: "Dick (Alt)",
  23001. image: {
  23002. source: "./media/characters/rory/dick-alt.svg"
  23003. }
  23004. },
  23005. },
  23006. [
  23007. {
  23008. name: "Normal",
  23009. height: math.unit(5 + 4 / 12, "feet"),
  23010. default: true
  23011. },
  23012. {
  23013. name: "Macro",
  23014. height: math.unit(100, "feet")
  23015. },
  23016. {
  23017. name: "Macro+",
  23018. height: math.unit(140, "feet")
  23019. },
  23020. {
  23021. name: "Macro++",
  23022. height: math.unit(300, "feet")
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23028. {
  23029. front: {
  23030. height: math.unit(5 + 9 / 12, "feet"),
  23031. weight: math.unit(190, "lb"),
  23032. name: "Front",
  23033. image: {
  23034. source: "./media/characters/sprisk/front.svg",
  23035. extra: 1225 / 1180,
  23036. bottom: 42.7 / 1266.4
  23037. }
  23038. },
  23039. frontNsfw: {
  23040. height: math.unit(5 + 9 / 12, "feet"),
  23041. weight: math.unit(190, "lb"),
  23042. name: "Front (NSFW)",
  23043. image: {
  23044. source: "./media/characters/sprisk/front-nsfw.svg",
  23045. extra: 1225 / 1180,
  23046. bottom: 42.7 / 1266.4
  23047. }
  23048. },
  23049. back: {
  23050. height: math.unit(5 + 9 / 12, "feet"),
  23051. weight: math.unit(190, "lb"),
  23052. name: "Back",
  23053. image: {
  23054. source: "./media/characters/sprisk/back.svg",
  23055. extra: 1247 / 1200,
  23056. bottom: 5.6 / 1253.04
  23057. }
  23058. },
  23059. },
  23060. [
  23061. {
  23062. name: "Tiny",
  23063. height: math.unit(2, "inches")
  23064. },
  23065. {
  23066. name: "Normal",
  23067. height: math.unit(5 + 9 / 12, "feet"),
  23068. default: true
  23069. },
  23070. {
  23071. name: "Mini Macro",
  23072. height: math.unit(18, "feet")
  23073. },
  23074. {
  23075. name: "Macro",
  23076. height: math.unit(100, "feet")
  23077. },
  23078. {
  23079. name: "MACRO",
  23080. height: math.unit(50, "miles")
  23081. },
  23082. {
  23083. name: "M A C R O",
  23084. height: math.unit(300, "miles")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23090. {
  23091. side: {
  23092. height: math.unit(15.6, "meters"),
  23093. weight: math.unit(700000, "kg"),
  23094. name: "Side",
  23095. image: {
  23096. source: "./media/characters/bunsen/side.svg",
  23097. extra: 1644 / 358
  23098. }
  23099. },
  23100. foot: {
  23101. height: math.unit(1.611 * 1644 / 358, "meter"),
  23102. name: "Foot",
  23103. image: {
  23104. source: "./media/characters/bunsen/foot.svg"
  23105. }
  23106. },
  23107. },
  23108. [
  23109. {
  23110. name: "Small",
  23111. height: math.unit(10, "feet")
  23112. },
  23113. {
  23114. name: "Normal",
  23115. height: math.unit(15.6, "meters"),
  23116. default: true
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23122. {
  23123. front: {
  23124. height: math.unit(4 + 11 / 12, "feet"),
  23125. weight: math.unit(140, "lb"),
  23126. name: "Front",
  23127. image: {
  23128. source: "./media/characters/sesh/front.svg",
  23129. extra: 3420 / 3231,
  23130. bottom: 72 / 3949.5
  23131. }
  23132. },
  23133. },
  23134. [
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(4 + 11 / 12, "feet")
  23138. },
  23139. {
  23140. name: "Grown",
  23141. height: math.unit(15, "feet"),
  23142. default: true
  23143. },
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(1500, "feet")
  23147. },
  23148. {
  23149. name: "Megamacro",
  23150. height: math.unit(30, "miles")
  23151. },
  23152. {
  23153. name: "Continental",
  23154. height: math.unit(3000, "miles")
  23155. },
  23156. {
  23157. name: "Gravity Mass",
  23158. height: math.unit(300000, "miles")
  23159. },
  23160. {
  23161. name: "Planet Buster",
  23162. height: math.unit(30000000, "miles")
  23163. },
  23164. {
  23165. name: "Big",
  23166. height: math.unit(3000000000, "miles")
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(9, "feet"),
  23175. weight: math.unit(350, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/pepper/front.svg",
  23179. extra: 1448 / 1312,
  23180. bottom: 9.4 / 1457.88
  23181. }
  23182. },
  23183. back: {
  23184. height: math.unit(9, "feet"),
  23185. weight: math.unit(350, "lb"),
  23186. name: "Back",
  23187. image: {
  23188. source: "./media/characters/pepper/back.svg",
  23189. extra: 1423 / 1300,
  23190. bottom: 4.6 / 1429
  23191. }
  23192. },
  23193. maw: {
  23194. height: math.unit(0.932, "feet"),
  23195. name: "Maw",
  23196. image: {
  23197. source: "./media/characters/pepper/maw.svg"
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(9, "feet"),
  23205. default: true
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23211. {
  23212. front: {
  23213. height: math.unit(6, "feet"),
  23214. weight: math.unit(150, "lb"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/maelstrom/front.svg",
  23218. extra: 2100 / 1883,
  23219. bottom: 94 / 2196.7
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Less Kaiju",
  23226. height: math.unit(200, "feet")
  23227. },
  23228. {
  23229. name: "Kaiju",
  23230. height: math.unit(400, "feet"),
  23231. default: true
  23232. },
  23233. {
  23234. name: "Kaiju-er",
  23235. height: math.unit(600, "feet")
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(6 + 5 / 12, "feet"),
  23244. weight: math.unit(180, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/lexir/front.svg",
  23248. extra: 180 / 172,
  23249. bottom: 12 / 192
  23250. }
  23251. },
  23252. back: {
  23253. height: math.unit(6 + 5 / 12, "feet"),
  23254. weight: math.unit(180, "lb"),
  23255. name: "Back",
  23256. image: {
  23257. source: "./media/characters/lexir/back.svg",
  23258. extra: 183.84 / 175.5,
  23259. bottom: 3.1 / 187
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Very Smal",
  23266. height: math.unit(1, "nm")
  23267. },
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(6 + 5 / 12, "feet"),
  23271. default: true
  23272. },
  23273. {
  23274. name: "Macro",
  23275. height: math.unit(1, "mile")
  23276. },
  23277. {
  23278. name: "Megamacro",
  23279. height: math.unit(50, "miles")
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(1.5, "meters"),
  23288. weight: math.unit(100, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/maksio/front.svg",
  23292. extra: 1549 / 1531,
  23293. bottom: 123.7 / 1674.5429
  23294. }
  23295. },
  23296. back: {
  23297. height: math.unit(1.5, "meters"),
  23298. weight: math.unit(100, "lb"),
  23299. name: "Back",
  23300. image: {
  23301. source: "./media/characters/maksio/back.svg",
  23302. extra: 1541 / 1509,
  23303. bottom: 97 / 1639
  23304. }
  23305. },
  23306. hand: {
  23307. height: math.unit(0.621, "feet"),
  23308. name: "Hand",
  23309. image: {
  23310. source: "./media/characters/maksio/hand.svg"
  23311. }
  23312. },
  23313. foot: {
  23314. height: math.unit(1.611, "feet"),
  23315. name: "Foot",
  23316. image: {
  23317. source: "./media/characters/maksio/foot.svg"
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Shrunken",
  23324. height: math.unit(10, "cm")
  23325. },
  23326. {
  23327. name: "Normal",
  23328. height: math.unit(150, "cm"),
  23329. default: true
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23335. {
  23336. front: {
  23337. height: math.unit(100, "feet"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/erza-bear/front.svg",
  23341. extra: 2449 / 2390,
  23342. bottom: 46 / 2494
  23343. }
  23344. },
  23345. back: {
  23346. height: math.unit(100, "feet"),
  23347. name: "Back",
  23348. image: {
  23349. source: "./media/characters/erza-bear/back.svg",
  23350. extra: 2489 / 2430,
  23351. bottom: 85.4 / 2480
  23352. }
  23353. },
  23354. tail: {
  23355. height: math.unit(42, "feet"),
  23356. name: "Tail",
  23357. image: {
  23358. source: "./media/characters/erza-bear/tail.svg"
  23359. }
  23360. },
  23361. tongue: {
  23362. height: math.unit(8, "feet"),
  23363. name: "Tongue",
  23364. image: {
  23365. source: "./media/characters/erza-bear/tongue.svg"
  23366. }
  23367. },
  23368. dick: {
  23369. height: math.unit(10.5, "feet"),
  23370. name: "Dick",
  23371. image: {
  23372. source: "./media/characters/erza-bear/dick.svg"
  23373. }
  23374. },
  23375. dickVertical: {
  23376. height: math.unit(16.9, "feet"),
  23377. name: "Dick (Vertical)",
  23378. image: {
  23379. source: "./media/characters/erza-bear/dick-vertical.svg"
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Macro",
  23386. height: math.unit(100, "feet"),
  23387. default: true
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(172, "cm"),
  23396. weight: math.unit(73, "kg"),
  23397. name: "Front",
  23398. image: {
  23399. source: "./media/characters/violet-flor/front.svg",
  23400. extra: 1530 / 1442,
  23401. bottom: 61.9 / 1588.8
  23402. }
  23403. },
  23404. back: {
  23405. height: math.unit(180, "cm"),
  23406. weight: math.unit(73, "kg"),
  23407. name: "Back",
  23408. image: {
  23409. source: "./media/characters/violet-flor/back.svg",
  23410. extra: 1692 / 1630,
  23411. bottom: 20 / 1712
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(172, "cm"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(6, "feet"),
  23428. weight: math.unit(220, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/lynn-rhea/front.svg",
  23432. extra: 310 / 273
  23433. }
  23434. },
  23435. back: {
  23436. height: math.unit(6, "feet"),
  23437. weight: math.unit(220, "lb"),
  23438. name: "Back",
  23439. image: {
  23440. source: "./media/characters/lynn-rhea/back.svg",
  23441. extra: 310 / 273
  23442. }
  23443. },
  23444. dicks: {
  23445. height: math.unit(0.9, "feet"),
  23446. name: "Dicks",
  23447. image: {
  23448. source: "./media/characters/lynn-rhea/dicks.svg"
  23449. }
  23450. },
  23451. slit: {
  23452. height: math.unit(0.4, "feet"),
  23453. name: "Slit",
  23454. image: {
  23455. source: "./media/characters/lynn-rhea/slit.svg"
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Micro",
  23462. height: math.unit(1, "inch")
  23463. },
  23464. {
  23465. name: "Macro",
  23466. height: math.unit(60, "feet"),
  23467. default: true
  23468. },
  23469. {
  23470. name: "Megamacro",
  23471. height: math.unit(2, "miles")
  23472. },
  23473. {
  23474. name: "Gigamacro",
  23475. height: math.unit(3, "earths")
  23476. },
  23477. {
  23478. name: "Galactic",
  23479. height: math.unit(0.8, "galaxies")
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23485. {
  23486. front: {
  23487. height: math.unit(1600, "feet"),
  23488. weight: math.unit(85758785169, "kg"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/valathos/front.svg",
  23492. extra: 1451 / 1339
  23493. }
  23494. },
  23495. },
  23496. [
  23497. {
  23498. name: "Macro",
  23499. height: math.unit(1600, "feet"),
  23500. default: true
  23501. },
  23502. ]
  23503. ))
  23504. characterMakers.push(() => makeCharacter(
  23505. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23506. {
  23507. front: {
  23508. height: math.unit(7 + 5 / 12, "feet"),
  23509. weight: math.unit(300, "lb"),
  23510. name: "Front",
  23511. image: {
  23512. source: "./media/characters/azula/front.svg",
  23513. extra: 3208 / 2880,
  23514. bottom: 80.2 / 3277
  23515. }
  23516. },
  23517. back: {
  23518. height: math.unit(7 + 5 / 12, "feet"),
  23519. weight: math.unit(300, "lb"),
  23520. name: "Back",
  23521. image: {
  23522. source: "./media/characters/azula/back.svg",
  23523. extra: 3169 / 2822,
  23524. bottom: 150.6 / 3321
  23525. }
  23526. },
  23527. },
  23528. [
  23529. {
  23530. name: "Normal",
  23531. height: math.unit(7 + 5 / 12, "feet"),
  23532. default: true
  23533. },
  23534. {
  23535. name: "Big",
  23536. height: math.unit(20, "feet")
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23542. {
  23543. front: {
  23544. height: math.unit(5 + 1 / 12, "feet"),
  23545. weight: math.unit(110, "lb"),
  23546. name: "Front",
  23547. image: {
  23548. source: "./media/characters/rupert/front.svg",
  23549. extra: 1549 / 1495,
  23550. bottom: 54.2 / 1604.4
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Normal",
  23557. height: math.unit(5 + 1 / 12, "feet"),
  23558. default: true
  23559. },
  23560. ]
  23561. ))
  23562. characterMakers.push(() => makeCharacter(
  23563. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23564. {
  23565. front: {
  23566. height: math.unit(8 + 4 / 12, "feet"),
  23567. weight: math.unit(350, "lb"),
  23568. name: "Front",
  23569. image: {
  23570. source: "./media/characters/sheera-castellar/front.svg",
  23571. extra: 1957 / 1894,
  23572. bottom: 26.97 / 1975.017
  23573. }
  23574. },
  23575. side: {
  23576. height: math.unit(8 + 4 / 12, "feet"),
  23577. weight: math.unit(350, "lb"),
  23578. name: "Side",
  23579. image: {
  23580. source: "./media/characters/sheera-castellar/side.svg",
  23581. extra: 1957 / 1894
  23582. }
  23583. },
  23584. back: {
  23585. height: math.unit(8 + 4 / 12, "feet"),
  23586. weight: math.unit(350, "lb"),
  23587. name: "Back",
  23588. image: {
  23589. source: "./media/characters/sheera-castellar/back.svg",
  23590. extra: 1957 / 1894
  23591. }
  23592. },
  23593. angled: {
  23594. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23595. weight: math.unit(350, "lb"),
  23596. name: "Angled",
  23597. image: {
  23598. source: "./media/characters/sheera-castellar/angled.svg",
  23599. extra: 1807 / 1707,
  23600. bottom: 68 / 1875
  23601. }
  23602. },
  23603. genitals: {
  23604. height: math.unit(2.2, "feet"),
  23605. name: "Genitals",
  23606. image: {
  23607. source: "./media/characters/sheera-castellar/genitals.svg"
  23608. }
  23609. },
  23610. taur: {
  23611. height: math.unit(10 + 6/12, "feet"),
  23612. name: "Taur",
  23613. image: {
  23614. source: "./media/characters/sheera-castellar/taur.svg",
  23615. extra: 2017/1909,
  23616. bottom: 185/2202
  23617. }
  23618. },
  23619. },
  23620. [
  23621. {
  23622. name: "Normal",
  23623. height: math.unit(8 + 4 / 12, "feet")
  23624. },
  23625. {
  23626. name: "Macro",
  23627. height: math.unit(150, "feet"),
  23628. default: true
  23629. },
  23630. {
  23631. name: "Macro+",
  23632. height: math.unit(800, "feet")
  23633. },
  23634. ]
  23635. ))
  23636. characterMakers.push(() => makeCharacter(
  23637. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23638. {
  23639. front: {
  23640. height: math.unit(6, "feet"),
  23641. weight: math.unit(150, "lb"),
  23642. name: "Front",
  23643. image: {
  23644. source: "./media/characters/jaipur/front.svg",
  23645. extra: 3860 / 3731,
  23646. bottom: 287 / 4140
  23647. }
  23648. },
  23649. back: {
  23650. height: math.unit(6, "feet"),
  23651. weight: math.unit(150, "lb"),
  23652. name: "Back",
  23653. image: {
  23654. source: "./media/characters/jaipur/back.svg",
  23655. extra: 4060 / 3930,
  23656. bottom: 151 / 4200
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Normal",
  23663. height: math.unit(1.85, "meters"),
  23664. default: true
  23665. },
  23666. {
  23667. name: "Macro",
  23668. height: math.unit(150, "meters")
  23669. },
  23670. {
  23671. name: "Macro+",
  23672. height: math.unit(0.5, "miles")
  23673. },
  23674. {
  23675. name: "Macro++",
  23676. height: math.unit(2.5, "miles")
  23677. },
  23678. {
  23679. name: "Macro+++",
  23680. height: math.unit(12, "miles")
  23681. },
  23682. {
  23683. name: "Macro++++",
  23684. height: math.unit(120, "miles")
  23685. },
  23686. {
  23687. name: "Macro+++++",
  23688. height: math.unit(1200, "miles")
  23689. },
  23690. ]
  23691. ))
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23694. {
  23695. front: {
  23696. height: math.unit(6, "feet"),
  23697. weight: math.unit(150, "lb"),
  23698. name: "Front",
  23699. image: {
  23700. source: "./media/characters/sheila-wolf/front.svg",
  23701. extra: 1931 / 1808,
  23702. bottom: 29.5 / 1960
  23703. }
  23704. },
  23705. dick: {
  23706. height: math.unit(1.464, "feet"),
  23707. name: "Dick",
  23708. image: {
  23709. source: "./media/characters/sheila-wolf/dick.svg"
  23710. }
  23711. },
  23712. muzzle: {
  23713. height: math.unit(0.513, "feet"),
  23714. name: "Muzzle",
  23715. image: {
  23716. source: "./media/characters/sheila-wolf/muzzle.svg"
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "Macro",
  23723. height: math.unit(70, "feet"),
  23724. default: true
  23725. },
  23726. ]
  23727. ))
  23728. characterMakers.push(() => makeCharacter(
  23729. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23730. {
  23731. front: {
  23732. height: math.unit(32, "meters"),
  23733. weight: math.unit(300000, "kg"),
  23734. name: "Front",
  23735. image: {
  23736. source: "./media/characters/almor/front.svg",
  23737. extra: 1408 / 1322,
  23738. bottom: 94.6 / 1506.5
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Macro",
  23745. height: math.unit(32, "meters"),
  23746. default: true
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(7, "feet"),
  23755. weight: math.unit(200, "lb"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/silver/front.svg",
  23759. extra: 472.1 / 450.5,
  23760. bottom: 26.5 / 499.424
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(7, "feet"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(800, "feet")
  23773. },
  23774. {
  23775. name: "Megamacro",
  23776. height: math.unit(250, "miles")
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23782. {
  23783. front: {
  23784. height: math.unit(6, "feet"),
  23785. weight: math.unit(150, "lb"),
  23786. name: "Front",
  23787. image: {
  23788. source: "./media/characters/pliskin/front.svg",
  23789. extra: 1469 / 1359,
  23790. bottom: 70 / 1540
  23791. }
  23792. },
  23793. },
  23794. [
  23795. {
  23796. name: "Micro",
  23797. height: math.unit(3, "inches")
  23798. },
  23799. {
  23800. name: "Normal",
  23801. height: math.unit(5 + 11 / 12, "feet"),
  23802. default: true
  23803. },
  23804. {
  23805. name: "Macro",
  23806. height: math.unit(120, "feet")
  23807. },
  23808. ]
  23809. ))
  23810. characterMakers.push(() => makeCharacter(
  23811. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23812. {
  23813. front: {
  23814. height: math.unit(6, "feet"),
  23815. weight: math.unit(150, "lb"),
  23816. name: "Front",
  23817. image: {
  23818. source: "./media/characters/sammy/front.svg",
  23819. extra: 1193 / 1089,
  23820. bottom: 30.5 / 1226
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Macro",
  23827. height: math.unit(1700, "feet"),
  23828. default: true
  23829. },
  23830. {
  23831. name: "Examacro",
  23832. height: math.unit(2.5e9, "lightyears")
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23838. {
  23839. front: {
  23840. height: math.unit(21, "meters"),
  23841. weight: math.unit(12, "tonnes"),
  23842. name: "Front",
  23843. image: {
  23844. source: "./media/characters/kuru/front.svg",
  23845. extra: 4301 / 3785,
  23846. bottom: 371.3 / 4691
  23847. }
  23848. },
  23849. },
  23850. [
  23851. {
  23852. name: "Macro",
  23853. height: math.unit(21, "meters"),
  23854. default: true
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(23, "meters"),
  23863. weight: math.unit(12.2, "tonnes"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/rakka/front.svg",
  23867. extra: 4670 / 4169,
  23868. bottom: 301 / 4968.7
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(23, "meters"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(6, "feet"),
  23885. weight: math.unit(150, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/rhys-feline/front.svg",
  23889. extra: 2488 / 2308,
  23890. bottom: 35.67 / 2519.19
  23891. }
  23892. },
  23893. },
  23894. [
  23895. {
  23896. name: "Really Small",
  23897. height: math.unit(1, "nm")
  23898. },
  23899. {
  23900. name: "Micro",
  23901. height: math.unit(4, "inches")
  23902. },
  23903. {
  23904. name: "Normal",
  23905. height: math.unit(4 + 10 / 12, "feet"),
  23906. default: true
  23907. },
  23908. {
  23909. name: "Macro",
  23910. height: math.unit(100, "feet")
  23911. },
  23912. {
  23913. name: "Megamacto",
  23914. height: math.unit(50, "miles")
  23915. },
  23916. ]
  23917. ))
  23918. characterMakers.push(() => makeCharacter(
  23919. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23920. {
  23921. side: {
  23922. height: math.unit(30, "feet"),
  23923. weight: math.unit(35000, "kg"),
  23924. name: "Side",
  23925. image: {
  23926. source: "./media/characters/alydar/side.svg",
  23927. extra: 234 / 222,
  23928. bottom: 6.5 / 241
  23929. }
  23930. },
  23931. front: {
  23932. height: math.unit(30, "feet"),
  23933. weight: math.unit(35000, "kg"),
  23934. name: "Front",
  23935. image: {
  23936. source: "./media/characters/alydar/front.svg",
  23937. extra: 223.37 / 210.2,
  23938. bottom: 22.3 / 246.76
  23939. }
  23940. },
  23941. top: {
  23942. height: math.unit(64.54, "feet"),
  23943. weight: math.unit(35000, "kg"),
  23944. name: "Top",
  23945. image: {
  23946. source: "./media/characters/alydar/top.svg"
  23947. }
  23948. },
  23949. anthro: {
  23950. height: math.unit(30, "feet"),
  23951. weight: math.unit(9000, "kg"),
  23952. name: "Anthro",
  23953. image: {
  23954. source: "./media/characters/alydar/anthro.svg",
  23955. extra: 432 / 421,
  23956. bottom: 7.18 / 440
  23957. }
  23958. },
  23959. maw: {
  23960. height: math.unit(11.693, "feet"),
  23961. name: "Maw",
  23962. image: {
  23963. source: "./media/characters/alydar/maw.svg"
  23964. }
  23965. },
  23966. head: {
  23967. height: math.unit(11.693, "feet"),
  23968. name: "Head",
  23969. image: {
  23970. source: "./media/characters/alydar/head.svg"
  23971. }
  23972. },
  23973. headAlt: {
  23974. height: math.unit(12.861, "feet"),
  23975. name: "Head (Alt)",
  23976. image: {
  23977. source: "./media/characters/alydar/head-alt.svg"
  23978. }
  23979. },
  23980. wing: {
  23981. height: math.unit(20.712, "feet"),
  23982. name: "Wing",
  23983. image: {
  23984. source: "./media/characters/alydar/wing.svg"
  23985. }
  23986. },
  23987. wingFeather: {
  23988. height: math.unit(9.662, "feet"),
  23989. name: "Wing Feather",
  23990. image: {
  23991. source: "./media/characters/alydar/wing-feather.svg"
  23992. }
  23993. },
  23994. countourFeather: {
  23995. height: math.unit(4.154, "feet"),
  23996. name: "Contour Feather",
  23997. image: {
  23998. source: "./media/characters/alydar/contour-feather.svg"
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Diplomatic",
  24005. height: math.unit(13, "feet"),
  24006. default: true
  24007. },
  24008. {
  24009. name: "Small",
  24010. height: math.unit(30, "feet")
  24011. },
  24012. {
  24013. name: "Normal",
  24014. height: math.unit(95, "feet"),
  24015. default: true
  24016. },
  24017. {
  24018. name: "Large",
  24019. height: math.unit(285, "feet")
  24020. },
  24021. {
  24022. name: "Incomprehensible",
  24023. height: math.unit(450, "megameters")
  24024. },
  24025. ]
  24026. ))
  24027. characterMakers.push(() => makeCharacter(
  24028. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24029. {
  24030. side: {
  24031. height: math.unit(11, "feet"),
  24032. weight: math.unit(1750, "kg"),
  24033. name: "Side",
  24034. image: {
  24035. source: "./media/characters/selicia/side.svg",
  24036. extra: 440 / 396,
  24037. bottom: 24.8 / 465.979
  24038. }
  24039. },
  24040. maw: {
  24041. height: math.unit(4.665, "feet"),
  24042. name: "Maw",
  24043. image: {
  24044. source: "./media/characters/selicia/maw.svg"
  24045. }
  24046. },
  24047. },
  24048. [
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(11, "feet"),
  24052. default: true
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24058. {
  24059. side: {
  24060. height: math.unit(2 + 6 / 12, "feet"),
  24061. weight: math.unit(30, "lb"),
  24062. name: "Side",
  24063. image: {
  24064. source: "./media/characters/layla/side.svg",
  24065. extra: 244 / 188,
  24066. bottom: 18.2 / 262.1
  24067. }
  24068. },
  24069. back: {
  24070. height: math.unit(2 + 6 / 12, "feet"),
  24071. weight: math.unit(30, "lb"),
  24072. name: "Back",
  24073. image: {
  24074. source: "./media/characters/layla/back.svg",
  24075. extra: 308 / 241.5,
  24076. bottom: 8.9 / 316.8
  24077. }
  24078. },
  24079. cumming: {
  24080. height: math.unit(2 + 6 / 12, "feet"),
  24081. weight: math.unit(30, "lb"),
  24082. name: "Cumming",
  24083. image: {
  24084. source: "./media/characters/layla/cumming.svg",
  24085. extra: 342 / 279,
  24086. bottom: 595 / 938
  24087. }
  24088. },
  24089. dickFlaccid: {
  24090. height: math.unit(2.595, "feet"),
  24091. name: "Flaccid Genitals",
  24092. image: {
  24093. source: "./media/characters/layla/dick-flaccid.svg"
  24094. }
  24095. },
  24096. dickErect: {
  24097. height: math.unit(2.359, "feet"),
  24098. name: "Erect Genitals",
  24099. image: {
  24100. source: "./media/characters/layla/dick-erect.svg"
  24101. }
  24102. },
  24103. dragon: {
  24104. height: math.unit(40, "feet"),
  24105. name: "Dragon",
  24106. image: {
  24107. source: "./media/characters/layla/dragon.svg",
  24108. extra: 610/535,
  24109. bottom: 367/977
  24110. }
  24111. },
  24112. taur: {
  24113. height: math.unit(30, "feet"),
  24114. name: "Taur",
  24115. image: {
  24116. source: "./media/characters/layla/taur.svg",
  24117. extra: 1268/1199,
  24118. bottom: 112/1380
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Micro",
  24125. height: math.unit(1, "inch")
  24126. },
  24127. {
  24128. name: "Small",
  24129. height: math.unit(1, "foot")
  24130. },
  24131. {
  24132. name: "Normal",
  24133. height: math.unit(2 + 6 / 12, "feet"),
  24134. default: true
  24135. },
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(200, "feet")
  24139. },
  24140. {
  24141. name: "Megamacro",
  24142. height: math.unit(1000, "miles")
  24143. },
  24144. {
  24145. name: "Planetary",
  24146. height: math.unit(8000, "miles")
  24147. },
  24148. {
  24149. name: "True Layla",
  24150. height: math.unit(200000 * 7, "multiverses")
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24156. {
  24157. back: {
  24158. height: math.unit(10.5, "feet"),
  24159. weight: math.unit(800, "lb"),
  24160. name: "Back",
  24161. image: {
  24162. source: "./media/characters/knox/back.svg",
  24163. extra: 1486 / 1089,
  24164. bottom: 107 / 1601.4
  24165. }
  24166. },
  24167. side: {
  24168. height: math.unit(10.5, "feet"),
  24169. weight: math.unit(800, "lb"),
  24170. name: "Side",
  24171. image: {
  24172. source: "./media/characters/knox/side.svg",
  24173. extra: 244 / 218,
  24174. bottom: 14 / 260
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Compact",
  24181. height: math.unit(10.5, "feet"),
  24182. default: true
  24183. },
  24184. {
  24185. name: "Dynamax",
  24186. height: math.unit(210, "feet")
  24187. },
  24188. {
  24189. name: "Full Macro",
  24190. height: math.unit(850, "feet")
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24196. {
  24197. front: {
  24198. height: math.unit(28, "feet"),
  24199. weight: math.unit(10500, "lb"),
  24200. name: "Front",
  24201. image: {
  24202. source: "./media/characters/kayda/front.svg",
  24203. extra: 1536 / 1428,
  24204. bottom: 68.7 / 1603
  24205. }
  24206. },
  24207. back: {
  24208. height: math.unit(28, "feet"),
  24209. weight: math.unit(10500, "lb"),
  24210. name: "Back",
  24211. image: {
  24212. source: "./media/characters/kayda/back.svg",
  24213. extra: 1557 / 1464,
  24214. bottom: 39.5 / 1597.49
  24215. }
  24216. },
  24217. dick: {
  24218. height: math.unit(3.858, "feet"),
  24219. name: "Dick",
  24220. image: {
  24221. source: "./media/characters/kayda/dick.svg"
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Macro",
  24228. height: math.unit(28, "feet"),
  24229. default: true
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24235. {
  24236. front: {
  24237. height: math.unit(10 + 11 / 12, "feet"),
  24238. weight: math.unit(1400, "lb"),
  24239. name: "Front",
  24240. image: {
  24241. source: "./media/characters/brian/front.svg",
  24242. extra: 737 / 692,
  24243. bottom: 55.4 / 785
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(10 + 11 / 12, "feet"),
  24251. default: true
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24257. {
  24258. front: {
  24259. height: math.unit(5 + 8 / 12, "feet"),
  24260. weight: math.unit(140, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/khemri/front.svg",
  24264. extra: 4780 / 4059,
  24265. bottom: 80.1 / 4859.25
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Micro",
  24272. height: math.unit(6, "inches")
  24273. },
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(5 + 8 / 12, "feet"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24283. {
  24284. front: {
  24285. height: math.unit(13, "feet"),
  24286. weight: math.unit(1700, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/felix-braveheart/front.svg",
  24290. extra: 1222 / 1157,
  24291. bottom: 53.2 / 1280
  24292. }
  24293. },
  24294. back: {
  24295. height: math.unit(13, "feet"),
  24296. weight: math.unit(1700, "lb"),
  24297. name: "Back",
  24298. image: {
  24299. source: "./media/characters/felix-braveheart/back.svg",
  24300. extra: 1277 / 1203,
  24301. bottom: 50.2 / 1327
  24302. }
  24303. },
  24304. feral: {
  24305. height: math.unit(6, "feet"),
  24306. weight: math.unit(400, "lb"),
  24307. name: "Feral",
  24308. image: {
  24309. source: "./media/characters/felix-braveheart/feral.svg",
  24310. extra: 682 / 625,
  24311. bottom: 6.9 / 688
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(13, "feet"),
  24319. default: true
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24325. {
  24326. side: {
  24327. height: math.unit(5 + 11 / 12, "feet"),
  24328. weight: math.unit(1400, "lb"),
  24329. name: "Side",
  24330. image: {
  24331. source: "./media/characters/shadow-blade/side.svg",
  24332. extra: 1726 / 1267,
  24333. bottom: 58.4 / 1785
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Normal",
  24340. height: math.unit(5 + 11 / 12, "feet"),
  24341. default: true
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(1 + 6 / 12, "feet"),
  24350. weight: math.unit(25, "lb"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/karla-halldor/front.svg",
  24354. extra: 1459 / 1383,
  24355. bottom: 12 / 1472
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(1 + 6 / 12, "feet"),
  24363. default: true
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24369. {
  24370. front: {
  24371. height: math.unit(6 + 2 / 12, "feet"),
  24372. weight: math.unit(160, "lb"),
  24373. name: "Front",
  24374. image: {
  24375. source: "./media/characters/ariam/front.svg",
  24376. extra: 1073/976,
  24377. bottom: 52/1125
  24378. }
  24379. },
  24380. back: {
  24381. height: math.unit(6 + 2/12, "feet"),
  24382. weight: math.unit(160, "lb"),
  24383. name: "Back",
  24384. image: {
  24385. source: "./media/characters/ariam/back.svg",
  24386. extra: 1103/1023,
  24387. bottom: 9/1112
  24388. }
  24389. },
  24390. dressed: {
  24391. height: math.unit(6 + 2/12, "feet"),
  24392. weight: math.unit(160, "lb"),
  24393. name: "Dressed",
  24394. image: {
  24395. source: "./media/characters/ariam/dressed.svg",
  24396. extra: 1099/1009,
  24397. bottom: 25/1124
  24398. }
  24399. },
  24400. squatting: {
  24401. height: math.unit(4.1, "feet"),
  24402. weight: math.unit(160, "lb"),
  24403. name: "Squatting",
  24404. image: {
  24405. source: "./media/characters/ariam/squatting.svg",
  24406. extra: 2617 / 2112,
  24407. bottom: 61.2 / 2681,
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Normal",
  24414. height: math.unit(6 + 2 / 12, "feet"),
  24415. default: true
  24416. },
  24417. {
  24418. name: "Normal+",
  24419. height: math.unit(4, "meters")
  24420. },
  24421. {
  24422. name: "Macro",
  24423. height: math.unit(50, "meters")
  24424. },
  24425. {
  24426. name: "Macro+",
  24427. height: math.unit(100, "meters")
  24428. },
  24429. {
  24430. name: "Megamacro",
  24431. height: math.unit(20, "km")
  24432. },
  24433. {
  24434. name: "Caretaker",
  24435. height: math.unit(444, "megameters")
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(1.67, "meters"),
  24444. weight: math.unit(140, "lb"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24448. extra: 438 / 410,
  24449. bottom: 0.75 / 439
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Shrunken",
  24456. height: math.unit(7.6, "cm")
  24457. },
  24458. {
  24459. name: "Human Scale",
  24460. height: math.unit(1.67, "meters")
  24461. },
  24462. {
  24463. name: "Wolxi Scale",
  24464. height: math.unit(36.7, "meters"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(1.73, "meters"),
  24474. weight: math.unit(240, "lb"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/izue-two-mothers/front.svg",
  24478. extra: 469 / 437,
  24479. bottom: 1.24 / 470.6
  24480. }
  24481. },
  24482. },
  24483. [
  24484. {
  24485. name: "Shrunken",
  24486. height: math.unit(7.86, "cm")
  24487. },
  24488. {
  24489. name: "Human Scale",
  24490. height: math.unit(1.73, "meters")
  24491. },
  24492. {
  24493. name: "Wolxi Scale",
  24494. height: math.unit(38, "meters"),
  24495. default: true
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24501. {
  24502. front: {
  24503. height: math.unit(1.55, "meters"),
  24504. weight: math.unit(120, "lb"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/teeku-love-shack/front.svg",
  24508. extra: 387 / 362,
  24509. bottom: 1.51 / 388
  24510. }
  24511. },
  24512. },
  24513. [
  24514. {
  24515. name: "Shrunken",
  24516. height: math.unit(7, "cm")
  24517. },
  24518. {
  24519. name: "Human Scale",
  24520. height: math.unit(1.55, "meters")
  24521. },
  24522. {
  24523. name: "Wolxi Scale",
  24524. height: math.unit(34.1, "meters"),
  24525. default: true
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24531. {
  24532. front: {
  24533. height: math.unit(1.83, "meters"),
  24534. weight: math.unit(135, "lb"),
  24535. name: "Front",
  24536. image: {
  24537. source: "./media/characters/dejma-the-red/front.svg",
  24538. extra: 480 / 458,
  24539. bottom: 1.8 / 482
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Shrunken",
  24546. height: math.unit(8.3, "cm")
  24547. },
  24548. {
  24549. name: "Human Scale",
  24550. height: math.unit(1.83, "meters")
  24551. },
  24552. {
  24553. name: "Wolxi Scale",
  24554. height: math.unit(40, "meters"),
  24555. default: true
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(1.78, "meters"),
  24564. weight: math.unit(65, "kg"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/aki/front.svg",
  24568. extra: 452 / 415
  24569. }
  24570. },
  24571. frontNsfw: {
  24572. height: math.unit(1.78, "meters"),
  24573. weight: math.unit(65, "kg"),
  24574. name: "Front (NSFW)",
  24575. image: {
  24576. source: "./media/characters/aki/front-nsfw.svg",
  24577. extra: 452 / 415
  24578. }
  24579. },
  24580. back: {
  24581. height: math.unit(1.78, "meters"),
  24582. weight: math.unit(65, "kg"),
  24583. name: "Back",
  24584. image: {
  24585. source: "./media/characters/aki/back.svg",
  24586. extra: 452 / 415
  24587. }
  24588. },
  24589. rump: {
  24590. height: math.unit(2.05, "feet"),
  24591. name: "Rump",
  24592. image: {
  24593. source: "./media/characters/aki/rump.svg"
  24594. }
  24595. },
  24596. dick: {
  24597. height: math.unit(0.95, "feet"),
  24598. name: "Dick",
  24599. image: {
  24600. source: "./media/characters/aki/dick.svg"
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Micro",
  24607. height: math.unit(15, "cm")
  24608. },
  24609. {
  24610. name: "Normal",
  24611. height: math.unit(178, "cm"),
  24612. default: true
  24613. },
  24614. {
  24615. name: "Macro",
  24616. height: math.unit(214, "m")
  24617. },
  24618. {
  24619. name: "Macro+",
  24620. height: math.unit(534, "m")
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24626. {
  24627. front: {
  24628. height: math.unit(5 + 5 / 12, "feet"),
  24629. weight: math.unit(120, "lb"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/ari/front.svg",
  24633. extra: 714.5 / 682,
  24634. bottom: 8 / 722.5
  24635. }
  24636. },
  24637. },
  24638. [
  24639. {
  24640. name: "Normal",
  24641. height: math.unit(5 + 5 / 12, "feet")
  24642. },
  24643. {
  24644. name: "Macro",
  24645. height: math.unit(100, "feet"),
  24646. default: true
  24647. },
  24648. {
  24649. name: "Megamacro",
  24650. height: math.unit(100, "miles")
  24651. },
  24652. {
  24653. name: "Gigamacro",
  24654. height: math.unit(80000, "miles")
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24660. {
  24661. side: {
  24662. height: math.unit(9, "feet"),
  24663. weight: math.unit(400, "kg"),
  24664. name: "Side",
  24665. image: {
  24666. source: "./media/characters/bolt/side.svg",
  24667. extra: 1126 / 896,
  24668. bottom: 60 / 1187.3,
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Micro",
  24675. height: math.unit(5, "inches")
  24676. },
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(9, "feet"),
  24680. default: true
  24681. },
  24682. {
  24683. name: "Macro",
  24684. height: math.unit(700, "feet")
  24685. },
  24686. {
  24687. name: "Max Size",
  24688. height: math.unit(1.52e22, "yottameters")
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24694. {
  24695. front: {
  24696. height: math.unit(4.53, "meters"),
  24697. weight: math.unit(3, "tons"),
  24698. name: "Front",
  24699. image: {
  24700. source: "./media/characters/draekon-sylviar/front.svg",
  24701. extra: 1228 / 1068,
  24702. bottom: 41 / 1270
  24703. }
  24704. },
  24705. tail: {
  24706. height: math.unit(1.772, "meter"),
  24707. name: "Tail",
  24708. image: {
  24709. source: "./media/characters/draekon-sylviar/tail.svg"
  24710. }
  24711. },
  24712. head: {
  24713. height: math.unit(1.331, "meter"),
  24714. name: "Head",
  24715. image: {
  24716. source: "./media/characters/draekon-sylviar/head.svg"
  24717. }
  24718. },
  24719. hand: {
  24720. height: math.unit(0.564, "meter"),
  24721. name: "Hand",
  24722. image: {
  24723. source: "./media/characters/draekon-sylviar/hand.svg"
  24724. }
  24725. },
  24726. foot: {
  24727. height: math.unit(0.621, "meter"),
  24728. name: "Foot",
  24729. image: {
  24730. source: "./media/characters/draekon-sylviar/foot.svg",
  24731. bottom: 32 / 324
  24732. }
  24733. },
  24734. dick: {
  24735. height: math.unit(61, "cm"),
  24736. name: "Dick",
  24737. image: {
  24738. source: "./media/characters/draekon-sylviar/dick.svg"
  24739. }
  24740. },
  24741. dickseparated: {
  24742. height: math.unit(61, "cm"),
  24743. name: "Dick-separated",
  24744. image: {
  24745. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Small",
  24752. height: math.unit(4.53 / 2, "meters"),
  24753. default: true
  24754. },
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(4.53, "meters"),
  24758. default: true
  24759. },
  24760. {
  24761. name: "Large",
  24762. height: math.unit(4.53 * 2, "meters"),
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(6 + 2 / 12, "feet"),
  24771. weight: math.unit(180, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/brawler/front.svg",
  24775. extra: 3301 / 3027,
  24776. bottom: 138 / 3439
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Normal",
  24783. height: math.unit(6 + 2 / 12, "feet"),
  24784. default: true
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24790. {
  24791. front: {
  24792. height: math.unit(11, "feet"),
  24793. weight: math.unit(1000, "lb"),
  24794. name: "Front",
  24795. image: {
  24796. source: "./media/characters/alex/front.svg",
  24797. bottom: 44.5 / 620
  24798. }
  24799. },
  24800. },
  24801. [
  24802. {
  24803. name: "Micro",
  24804. height: math.unit(5, "inches")
  24805. },
  24806. {
  24807. name: "Normal",
  24808. height: math.unit(11, "feet"),
  24809. default: true
  24810. },
  24811. {
  24812. name: "Macro",
  24813. height: math.unit(9.5e9, "feet")
  24814. },
  24815. {
  24816. name: "Max Size",
  24817. height: math.unit(1.4e283, "yottameters")
  24818. },
  24819. ]
  24820. ))
  24821. characterMakers.push(() => makeCharacter(
  24822. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24823. {
  24824. female: {
  24825. height: math.unit(29.9, "m"),
  24826. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24827. name: "Female",
  24828. image: {
  24829. source: "./media/characters/zenari/female.svg",
  24830. extra: 3281.6 / 3217,
  24831. bottom: 72.2 / 3353
  24832. }
  24833. },
  24834. male: {
  24835. height: math.unit(27.7, "m"),
  24836. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24837. name: "Male",
  24838. image: {
  24839. source: "./media/characters/zenari/male.svg",
  24840. extra: 3008 / 2991,
  24841. bottom: 54.6 / 3069
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Macro",
  24848. height: math.unit(29.7, "meters"),
  24849. default: true
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24855. {
  24856. female: {
  24857. height: math.unit(23.8, "m"),
  24858. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24859. name: "Female",
  24860. image: {
  24861. source: "./media/characters/mactarian/female.svg",
  24862. extra: 2662 / 2569,
  24863. bottom: 73 / 2736
  24864. }
  24865. },
  24866. male: {
  24867. height: math.unit(23.8, "m"),
  24868. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24869. name: "Male",
  24870. image: {
  24871. source: "./media/characters/mactarian/male.svg",
  24872. extra: 2673 / 2600,
  24873. bottom: 76 / 2750
  24874. }
  24875. },
  24876. },
  24877. [
  24878. {
  24879. name: "Macro",
  24880. height: math.unit(23.8, "meters"),
  24881. default: true
  24882. },
  24883. ]
  24884. ))
  24885. characterMakers.push(() => makeCharacter(
  24886. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24887. {
  24888. female: {
  24889. height: math.unit(19.3, "m"),
  24890. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24891. name: "Female",
  24892. image: {
  24893. source: "./media/characters/umok/female.svg",
  24894. extra: 2186 / 2078,
  24895. bottom: 87 / 2277
  24896. }
  24897. },
  24898. male: {
  24899. height: math.unit(19.5, "m"),
  24900. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24901. name: "Male",
  24902. image: {
  24903. source: "./media/characters/umok/male.svg",
  24904. extra: 2233 / 2140,
  24905. bottom: 24.4 / 2258
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Macro",
  24912. height: math.unit(19.3, "meters"),
  24913. default: true
  24914. },
  24915. ]
  24916. ))
  24917. characterMakers.push(() => makeCharacter(
  24918. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24919. {
  24920. female: {
  24921. height: math.unit(26.15, "m"),
  24922. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24923. name: "Female",
  24924. image: {
  24925. source: "./media/characters/joraxian/female.svg",
  24926. extra: 2912 / 2824,
  24927. bottom: 36 / 2956
  24928. }
  24929. },
  24930. male: {
  24931. height: math.unit(25.4, "m"),
  24932. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24933. name: "Male",
  24934. image: {
  24935. source: "./media/characters/joraxian/male.svg",
  24936. extra: 2877 / 2721,
  24937. bottom: 82 / 2967
  24938. }
  24939. },
  24940. },
  24941. [
  24942. {
  24943. name: "Macro",
  24944. height: math.unit(26.15, "meters"),
  24945. default: true
  24946. },
  24947. ]
  24948. ))
  24949. characterMakers.push(() => makeCharacter(
  24950. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24951. {
  24952. female: {
  24953. height: math.unit(21.6, "m"),
  24954. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24955. name: "Female",
  24956. image: {
  24957. source: "./media/characters/sthara/female.svg",
  24958. extra: 2516 / 2347,
  24959. bottom: 21.5 / 2537
  24960. }
  24961. },
  24962. male: {
  24963. height: math.unit(24, "m"),
  24964. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24965. name: "Male",
  24966. image: {
  24967. source: "./media/characters/sthara/male.svg",
  24968. extra: 2732 / 2607,
  24969. bottom: 23 / 2732
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Macro",
  24976. height: math.unit(21.6, "meters"),
  24977. default: true
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(6 + 4 / 12, "feet"),
  24986. weight: math.unit(175, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/luka-bryzant/front.svg",
  24990. extra: 311 / 289,
  24991. bottom: 4 / 315
  24992. }
  24993. },
  24994. back: {
  24995. height: math.unit(6 + 4 / 12, "feet"),
  24996. weight: math.unit(175, "lb"),
  24997. name: "Back",
  24998. image: {
  24999. source: "./media/characters/luka-bryzant/back.svg",
  25000. extra: 311 / 289,
  25001. bottom: 3.8 / 313.7
  25002. }
  25003. },
  25004. },
  25005. [
  25006. {
  25007. name: "Micro",
  25008. height: math.unit(10, "inches")
  25009. },
  25010. {
  25011. name: "Normal",
  25012. height: math.unit(6 + 4 / 12, "feet"),
  25013. default: true
  25014. },
  25015. {
  25016. name: "Large",
  25017. height: math.unit(12, "feet")
  25018. },
  25019. ]
  25020. ))
  25021. characterMakers.push(() => makeCharacter(
  25022. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25023. {
  25024. front: {
  25025. height: math.unit(5 + 7 / 12, "feet"),
  25026. weight: math.unit(185, "lb"),
  25027. name: "Front",
  25028. image: {
  25029. source: "./media/characters/aman-aquila/front.svg",
  25030. extra: 1013 / 976,
  25031. bottom: 45.6 / 1057
  25032. }
  25033. },
  25034. side: {
  25035. height: math.unit(5 + 7 / 12, "feet"),
  25036. weight: math.unit(185, "lb"),
  25037. name: "Side",
  25038. image: {
  25039. source: "./media/characters/aman-aquila/side.svg",
  25040. extra: 1054 / 1011,
  25041. bottom: 15 / 1070
  25042. }
  25043. },
  25044. back: {
  25045. height: math.unit(5 + 7 / 12, "feet"),
  25046. weight: math.unit(185, "lb"),
  25047. name: "Back",
  25048. image: {
  25049. source: "./media/characters/aman-aquila/back.svg",
  25050. extra: 1026 / 970,
  25051. bottom: 12 / 1039
  25052. }
  25053. },
  25054. head: {
  25055. height: math.unit(1.211, "feet"),
  25056. name: "Head",
  25057. image: {
  25058. source: "./media/characters/aman-aquila/head.svg",
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Minimicro",
  25065. height: math.unit(0.057, "inches")
  25066. },
  25067. {
  25068. name: "Micro",
  25069. height: math.unit(7, "inches")
  25070. },
  25071. {
  25072. name: "Mini",
  25073. height: math.unit(3 + 7 / 12, "feet")
  25074. },
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(5 + 7 / 12, "feet"),
  25078. default: true
  25079. },
  25080. {
  25081. name: "Macro",
  25082. height: math.unit(157 + 7 / 12, "feet")
  25083. },
  25084. {
  25085. name: "Megamacro",
  25086. height: math.unit(1557 + 7 / 12, "feet")
  25087. },
  25088. {
  25089. name: "Gigamacro",
  25090. height: math.unit(15557 + 7 / 12, "feet")
  25091. },
  25092. ]
  25093. ))
  25094. characterMakers.push(() => makeCharacter(
  25095. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25096. {
  25097. front: {
  25098. height: math.unit(3 + 2 / 12, "inches"),
  25099. weight: math.unit(0.3, "ounces"),
  25100. name: "Front",
  25101. image: {
  25102. source: "./media/characters/hiphae/front.svg",
  25103. extra: 1931 / 1683,
  25104. bottom: 24 / 1955
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Normal",
  25111. height: math.unit(3 + 1 / 2, "inches"),
  25112. default: true
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25118. {
  25119. front: {
  25120. height: math.unit(5 + 10 / 12, "feet"),
  25121. weight: math.unit(165, "lb"),
  25122. name: "Front",
  25123. image: {
  25124. source: "./media/characters/nicky/front.svg",
  25125. extra: 3144 / 2886,
  25126. bottom: 45.6 / 3192
  25127. }
  25128. },
  25129. back: {
  25130. height: math.unit(5 + 10 / 12, "feet"),
  25131. weight: math.unit(165, "lb"),
  25132. name: "Back",
  25133. image: {
  25134. source: "./media/characters/nicky/back.svg",
  25135. extra: 3055 / 2804,
  25136. bottom: 28.4 / 3087
  25137. }
  25138. },
  25139. frontclothed: {
  25140. height: math.unit(5 + 10 / 12, "feet"),
  25141. weight: math.unit(165, "lb"),
  25142. name: "Front-clothed",
  25143. image: {
  25144. source: "./media/characters/nicky/front-clothed.svg",
  25145. extra: 3184.9 / 2926.9,
  25146. bottom: 86.5 / 3239.9
  25147. }
  25148. },
  25149. foot: {
  25150. height: math.unit(1.16, "feet"),
  25151. name: "Foot",
  25152. image: {
  25153. source: "./media/characters/nicky/foot.svg"
  25154. }
  25155. },
  25156. feet: {
  25157. height: math.unit(1.34, "feet"),
  25158. name: "Feet",
  25159. image: {
  25160. source: "./media/characters/nicky/feet.svg"
  25161. }
  25162. },
  25163. maw: {
  25164. height: math.unit(0.9, "feet"),
  25165. name: "Maw",
  25166. image: {
  25167. source: "./media/characters/nicky/maw.svg"
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(5 + 10 / 12, "feet"),
  25175. default: true
  25176. },
  25177. {
  25178. name: "Macro",
  25179. height: math.unit(60, "feet")
  25180. },
  25181. {
  25182. name: "Megamacro",
  25183. height: math.unit(1, "mile")
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25189. {
  25190. side: {
  25191. height: math.unit(10, "feet"),
  25192. weight: math.unit(600, "lb"),
  25193. name: "Side",
  25194. image: {
  25195. source: "./media/characters/blair/side.svg",
  25196. bottom: 16.6 / 475,
  25197. extra: 458 / 431
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Micro",
  25204. height: math.unit(8, "inches")
  25205. },
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(10, "feet"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "Macro",
  25213. height: math.unit(180, "feet")
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(5 + 4 / 12, "feet"),
  25222. weight: math.unit(125, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/fisher/front.svg",
  25226. extra: 444 / 390,
  25227. bottom: 2 / 444.8
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Micro",
  25234. height: math.unit(4, "inches")
  25235. },
  25236. {
  25237. name: "Normal",
  25238. height: math.unit(5 + 4 / 12, "feet"),
  25239. default: true
  25240. },
  25241. {
  25242. name: "Macro",
  25243. height: math.unit(100, "feet")
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25249. {
  25250. front: {
  25251. height: math.unit(6.71, "feet"),
  25252. weight: math.unit(200, "lb"),
  25253. capacity: math.unit(1000000, "people"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/gliss/front.svg",
  25257. extra: 2347 / 2231,
  25258. bottom: 113 / 2462
  25259. }
  25260. },
  25261. hammerspaceSize: {
  25262. height: math.unit(6.71 * 717, "feet"),
  25263. weight: math.unit(200, "lb"),
  25264. capacity: math.unit(1000000, "people"),
  25265. name: "Hammerspace Size",
  25266. image: {
  25267. source: "./media/characters/gliss/front.svg",
  25268. extra: 2347 / 2231,
  25269. bottom: 113 / 2462
  25270. }
  25271. },
  25272. },
  25273. [
  25274. {
  25275. name: "Normal",
  25276. height: math.unit(6.71, "feet"),
  25277. default: true
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25283. {
  25284. side: {
  25285. height: math.unit(1.44, "m"),
  25286. weight: math.unit(80, "kg"),
  25287. name: "Side",
  25288. image: {
  25289. source: "./media/characters/dune-anderson/side.svg",
  25290. bottom: 49 / 1426
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Wolf-sized",
  25297. height: math.unit(1.44, "meters")
  25298. },
  25299. {
  25300. name: "Normal",
  25301. height: math.unit(5.05, "meters"),
  25302. default: true
  25303. },
  25304. {
  25305. name: "Big",
  25306. height: math.unit(14.4, "meters")
  25307. },
  25308. {
  25309. name: "Huge",
  25310. height: math.unit(144, "meters")
  25311. },
  25312. ]
  25313. ))
  25314. characterMakers.push(() => makeCharacter(
  25315. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25316. {
  25317. front: {
  25318. height: math.unit(7, "feet"),
  25319. weight: math.unit(425, "lb"),
  25320. name: "Front",
  25321. image: {
  25322. source: "./media/characters/hind/front.svg",
  25323. extra: 2091 / 1860,
  25324. bottom: 129 / 2220
  25325. }
  25326. },
  25327. back: {
  25328. height: math.unit(7, "feet"),
  25329. weight: math.unit(425, "lb"),
  25330. name: "Back",
  25331. image: {
  25332. source: "./media/characters/hind/back.svg",
  25333. extra: 2091 / 1860,
  25334. bottom: 24.6 / 2309
  25335. }
  25336. },
  25337. tail: {
  25338. height: math.unit(2.8, "feet"),
  25339. name: "Tail",
  25340. image: {
  25341. source: "./media/characters/hind/tail.svg"
  25342. }
  25343. },
  25344. head: {
  25345. height: math.unit(2.55, "feet"),
  25346. name: "Head",
  25347. image: {
  25348. source: "./media/characters/hind/head.svg"
  25349. }
  25350. },
  25351. },
  25352. [
  25353. {
  25354. name: "XS",
  25355. height: math.unit(0.7, "feet")
  25356. },
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(7, "feet"),
  25360. default: true
  25361. },
  25362. {
  25363. name: "XL",
  25364. height: math.unit(70, "feet")
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(2.1, "meters"),
  25373. weight: math.unit(150, "lb"),
  25374. name: "Front",
  25375. image: {
  25376. source: "./media/characters/tharquench-sizestealer/front.svg",
  25377. extra: 1605/1470,
  25378. bottom: 36/1641
  25379. }
  25380. },
  25381. frontAlt: {
  25382. height: math.unit(2.1, "meters"),
  25383. weight: math.unit(150, "lb"),
  25384. name: "Front (Alt)",
  25385. image: {
  25386. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25387. extra: 2318 / 2063,
  25388. bottom: 93.4 / 2410
  25389. }
  25390. },
  25391. },
  25392. [
  25393. {
  25394. name: "Nano",
  25395. height: math.unit(1, "mm")
  25396. },
  25397. {
  25398. name: "Micro",
  25399. height: math.unit(1, "cm")
  25400. },
  25401. {
  25402. name: "Normal",
  25403. height: math.unit(2.1, "meters"),
  25404. default: true
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25410. {
  25411. front: {
  25412. height: math.unit(7 + 5 / 12, "feet"),
  25413. weight: math.unit(357, "lb"),
  25414. name: "Front",
  25415. image: {
  25416. source: "./media/characters/solex-draconov/front.svg",
  25417. extra: 1993 / 1865,
  25418. bottom: 117 / 2111
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Natural Height",
  25425. height: math.unit(7 + 5 / 12, "feet"),
  25426. default: true
  25427. },
  25428. {
  25429. name: "Macro",
  25430. height: math.unit(350, "feet")
  25431. },
  25432. {
  25433. name: "Macro+",
  25434. height: math.unit(1000, "feet")
  25435. },
  25436. {
  25437. name: "Megamacro",
  25438. height: math.unit(20, "km")
  25439. },
  25440. {
  25441. name: "Megamacro+",
  25442. height: math.unit(1000, "km")
  25443. },
  25444. {
  25445. name: "Gigamacro",
  25446. height: math.unit(2.5, "Gm")
  25447. },
  25448. {
  25449. name: "Teramacro",
  25450. height: math.unit(15, "Tm")
  25451. },
  25452. {
  25453. name: "Galactic",
  25454. height: math.unit(30, "Zm")
  25455. },
  25456. {
  25457. name: "Universal",
  25458. height: math.unit(21000, "Ym")
  25459. },
  25460. {
  25461. name: "Omniversal",
  25462. height: math.unit(9.861e50, "Ym")
  25463. },
  25464. {
  25465. name: "Existential",
  25466. height: math.unit(1e300, "meters")
  25467. },
  25468. ]
  25469. ))
  25470. characterMakers.push(() => makeCharacter(
  25471. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25472. {
  25473. side: {
  25474. height: math.unit(25, "feet"),
  25475. weight: math.unit(90000, "lb"),
  25476. name: "Side",
  25477. image: {
  25478. source: "./media/characters/mandarax/side.svg",
  25479. extra: 614 / 332,
  25480. bottom: 55 / 630
  25481. }
  25482. },
  25483. head: {
  25484. height: math.unit(11.4, "feet"),
  25485. name: "Head",
  25486. image: {
  25487. source: "./media/characters/mandarax/head.svg"
  25488. }
  25489. },
  25490. belly: {
  25491. height: math.unit(33, "feet"),
  25492. name: "Belly",
  25493. capacity: math.unit(500, "people"),
  25494. image: {
  25495. source: "./media/characters/mandarax/belly.svg"
  25496. }
  25497. },
  25498. dick: {
  25499. height: math.unit(8.46, "feet"),
  25500. name: "Dick",
  25501. image: {
  25502. source: "./media/characters/mandarax/dick.svg"
  25503. }
  25504. },
  25505. top: {
  25506. height: math.unit(28, "meters"),
  25507. name: "Top",
  25508. image: {
  25509. source: "./media/characters/mandarax/top.svg"
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Normal",
  25516. height: math.unit(25, "feet"),
  25517. default: true
  25518. },
  25519. ]
  25520. ))
  25521. characterMakers.push(() => makeCharacter(
  25522. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25523. {
  25524. front: {
  25525. height: math.unit(5, "feet"),
  25526. weight: math.unit(90, "lb"),
  25527. name: "Front",
  25528. image: {
  25529. source: "./media/characters/pixil/front.svg",
  25530. extra: 2000 / 1618,
  25531. bottom: 12.3 / 2011
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(5, "feet"),
  25539. default: true
  25540. },
  25541. {
  25542. name: "Megamacro",
  25543. height: math.unit(10, "miles"),
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25549. {
  25550. front: {
  25551. height: math.unit(7 + 2 / 12, "feet"),
  25552. weight: math.unit(200, "lb"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/angel/front.svg",
  25556. extra: 1830 / 1737,
  25557. bottom: 22.6 / 1854,
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Normal",
  25564. height: math.unit(7 + 2 / 12, "feet"),
  25565. default: true
  25566. },
  25567. {
  25568. name: "Macro",
  25569. height: math.unit(1000, "feet")
  25570. },
  25571. {
  25572. name: "Megamacro",
  25573. height: math.unit(2, "miles")
  25574. },
  25575. {
  25576. name: "Gigamacro",
  25577. height: math.unit(20, "earths")
  25578. },
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25583. {
  25584. front: {
  25585. height: math.unit(5, "feet"),
  25586. weight: math.unit(180, "lb"),
  25587. name: "Front",
  25588. image: {
  25589. source: "./media/characters/mekana/front.svg",
  25590. extra: 1671 / 1605,
  25591. bottom: 3.5 / 1691
  25592. }
  25593. },
  25594. side: {
  25595. height: math.unit(5, "feet"),
  25596. weight: math.unit(180, "lb"),
  25597. name: "Side",
  25598. image: {
  25599. source: "./media/characters/mekana/side.svg",
  25600. extra: 1671 / 1605,
  25601. bottom: 3.5 / 1691
  25602. }
  25603. },
  25604. back: {
  25605. height: math.unit(5, "feet"),
  25606. weight: math.unit(180, "lb"),
  25607. name: "Back",
  25608. image: {
  25609. source: "./media/characters/mekana/back.svg",
  25610. extra: 1671 / 1605,
  25611. bottom: 3.5 / 1691
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(5, "feet"),
  25619. default: true
  25620. },
  25621. ]
  25622. ))
  25623. characterMakers.push(() => makeCharacter(
  25624. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25625. {
  25626. front: {
  25627. height: math.unit(4 + 6 / 12, "feet"),
  25628. weight: math.unit(80, "lb"),
  25629. name: "Front",
  25630. image: {
  25631. source: "./media/characters/pixie/front.svg",
  25632. extra: 1924 / 1825,
  25633. bottom: 22.4 / 1946
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(4 + 6 / 12, "feet"),
  25641. default: true
  25642. },
  25643. {
  25644. name: "Macro",
  25645. height: math.unit(40, "feet")
  25646. },
  25647. ]
  25648. ))
  25649. characterMakers.push(() => makeCharacter(
  25650. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25651. {
  25652. front: {
  25653. height: math.unit(2.1, "meters"),
  25654. weight: math.unit(200, "lb"),
  25655. name: "Front",
  25656. image: {
  25657. source: "./media/characters/the-lascivious/front.svg",
  25658. extra: 1 / 0.893,
  25659. bottom: 3.5 / 573.7
  25660. }
  25661. },
  25662. },
  25663. [
  25664. {
  25665. name: "Human Scale",
  25666. height: math.unit(2.1, "meters")
  25667. },
  25668. {
  25669. name: "Wolxi Scale",
  25670. height: math.unit(46.2, "m"),
  25671. default: true
  25672. },
  25673. {
  25674. name: "Boinker of Buildings",
  25675. height: math.unit(10, "km")
  25676. },
  25677. {
  25678. name: "Shagger of Skyscrapers",
  25679. height: math.unit(40, "km")
  25680. },
  25681. {
  25682. name: "Banger of Boroughs",
  25683. height: math.unit(4000, "km")
  25684. },
  25685. {
  25686. name: "Screwer of States",
  25687. height: math.unit(100000, "km")
  25688. },
  25689. {
  25690. name: "Pounder of Planets",
  25691. height: math.unit(2000000, "km")
  25692. },
  25693. ]
  25694. ))
  25695. characterMakers.push(() => makeCharacter(
  25696. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25697. {
  25698. front: {
  25699. height: math.unit(6, "feet"),
  25700. weight: math.unit(150, "lb"),
  25701. name: "Front",
  25702. image: {
  25703. source: "./media/characters/aj/front.svg",
  25704. extra: 2039 / 1562,
  25705. bottom: 40 / 2079
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Normal",
  25712. height: math.unit(11 + 6 / 12, "feet"),
  25713. default: true
  25714. },
  25715. {
  25716. name: "Megamacro",
  25717. height: math.unit(60, "megameters")
  25718. },
  25719. ]
  25720. ))
  25721. characterMakers.push(() => makeCharacter(
  25722. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25723. {
  25724. side: {
  25725. height: math.unit(31 + 8 / 12, "feet"),
  25726. weight: math.unit(75000, "kg"),
  25727. name: "Side",
  25728. image: {
  25729. source: "./media/characters/koros/side.svg",
  25730. extra: 1442 / 1297,
  25731. bottom: 122.7 / 1562
  25732. }
  25733. },
  25734. dicksKingsCrown: {
  25735. height: math.unit(6, "feet"),
  25736. name: "Dicks (King's Crown)",
  25737. image: {
  25738. source: "./media/characters/koros/dicks-kings-crown.svg"
  25739. }
  25740. },
  25741. dicksTailSet: {
  25742. height: math.unit(3, "feet"),
  25743. name: "Dicks (Tail Set)",
  25744. image: {
  25745. source: "./media/characters/koros/dicks-tail-set.svg"
  25746. }
  25747. },
  25748. dickCumming: {
  25749. height: math.unit(7.98, "feet"),
  25750. name: "Dick (Cumming)",
  25751. image: {
  25752. source: "./media/characters/koros/dick-cumming.svg"
  25753. }
  25754. },
  25755. dicksBack: {
  25756. height: math.unit(5.9, "feet"),
  25757. name: "Dicks (Back)",
  25758. image: {
  25759. source: "./media/characters/koros/dicks-back.svg"
  25760. }
  25761. },
  25762. dicksFront: {
  25763. height: math.unit(3.72, "feet"),
  25764. name: "Dicks (Front)",
  25765. image: {
  25766. source: "./media/characters/koros/dicks-front.svg"
  25767. }
  25768. },
  25769. dicksPeeking: {
  25770. height: math.unit(3.0, "feet"),
  25771. name: "Dicks (Peeking)",
  25772. image: {
  25773. source: "./media/characters/koros/dicks-peeking.svg"
  25774. }
  25775. },
  25776. eye: {
  25777. height: math.unit(1.7, "feet"),
  25778. name: "Eye",
  25779. image: {
  25780. source: "./media/characters/koros/eye.svg"
  25781. }
  25782. },
  25783. headFront: {
  25784. height: math.unit(11.69, "feet"),
  25785. name: "Head (Front)",
  25786. image: {
  25787. source: "./media/characters/koros/head-front.svg"
  25788. }
  25789. },
  25790. headSide: {
  25791. height: math.unit(14, "feet"),
  25792. name: "Head (Side)",
  25793. image: {
  25794. source: "./media/characters/koros/head-side.svg"
  25795. }
  25796. },
  25797. leg: {
  25798. height: math.unit(17, "feet"),
  25799. name: "Leg",
  25800. image: {
  25801. source: "./media/characters/koros/leg.svg"
  25802. }
  25803. },
  25804. mawSide: {
  25805. height: math.unit(12.8, "feet"),
  25806. name: "Maw (Side)",
  25807. image: {
  25808. source: "./media/characters/koros/maw-side.svg"
  25809. }
  25810. },
  25811. mawSpitting: {
  25812. height: math.unit(17, "feet"),
  25813. name: "Maw (Spitting)",
  25814. image: {
  25815. source: "./media/characters/koros/maw-spitting.svg"
  25816. }
  25817. },
  25818. slit: {
  25819. height: math.unit(2.8, "feet"),
  25820. name: "Slit",
  25821. image: {
  25822. source: "./media/characters/koros/slit.svg"
  25823. }
  25824. },
  25825. stomach: {
  25826. height: math.unit(6.8, "feet"),
  25827. capacity: math.unit(20, "people"),
  25828. name: "Stomach",
  25829. image: {
  25830. source: "./media/characters/koros/stomach.svg"
  25831. }
  25832. },
  25833. wingspanBottom: {
  25834. height: math.unit(114, "feet"),
  25835. name: "Wingspan (Bottom)",
  25836. image: {
  25837. source: "./media/characters/koros/wingspan-bottom.svg"
  25838. }
  25839. },
  25840. wingspanTop: {
  25841. height: math.unit(104, "feet"),
  25842. name: "Wingspan (Top)",
  25843. image: {
  25844. source: "./media/characters/koros/wingspan-top.svg"
  25845. }
  25846. },
  25847. },
  25848. [
  25849. {
  25850. name: "Normal",
  25851. height: math.unit(31 + 8 / 12, "feet"),
  25852. default: true
  25853. },
  25854. ]
  25855. ))
  25856. characterMakers.push(() => makeCharacter(
  25857. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25858. {
  25859. front: {
  25860. height: math.unit(18 + 5 / 12, "feet"),
  25861. weight: math.unit(3750, "kg"),
  25862. name: "Front",
  25863. image: {
  25864. source: "./media/characters/vexx/front.svg",
  25865. extra: 426 / 396,
  25866. bottom: 31.5 / 458
  25867. }
  25868. },
  25869. maw: {
  25870. height: math.unit(6, "feet"),
  25871. name: "Maw",
  25872. image: {
  25873. source: "./media/characters/vexx/maw.svg"
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(18 + 5 / 12, "feet"),
  25881. default: true
  25882. },
  25883. ]
  25884. ))
  25885. characterMakers.push(() => makeCharacter(
  25886. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25887. {
  25888. front: {
  25889. height: math.unit(17 + 6 / 12, "feet"),
  25890. weight: math.unit(150, "lb"),
  25891. name: "Front",
  25892. image: {
  25893. source: "./media/characters/baadra/front.svg",
  25894. extra: 3137 / 2890,
  25895. bottom: 168.4 / 3305
  25896. }
  25897. },
  25898. back: {
  25899. height: math.unit(17 + 6 / 12, "feet"),
  25900. weight: math.unit(150, "lb"),
  25901. name: "Back",
  25902. image: {
  25903. source: "./media/characters/baadra/back.svg",
  25904. extra: 3142 / 2890,
  25905. bottom: 220 / 3371
  25906. }
  25907. },
  25908. head: {
  25909. height: math.unit(5.45, "feet"),
  25910. name: "Head",
  25911. image: {
  25912. source: "./media/characters/baadra/head.svg"
  25913. }
  25914. },
  25915. headAngry: {
  25916. height: math.unit(4.95, "feet"),
  25917. name: "Head (Angry)",
  25918. image: {
  25919. source: "./media/characters/baadra/head-angry.svg"
  25920. }
  25921. },
  25922. headOpen: {
  25923. height: math.unit(6, "feet"),
  25924. name: "Head (Open)",
  25925. image: {
  25926. source: "./media/characters/baadra/head-open.svg"
  25927. }
  25928. },
  25929. },
  25930. [
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(17 + 6 / 12, "feet"),
  25934. default: true
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25940. {
  25941. front: {
  25942. height: math.unit(7 + 3 / 12, "feet"),
  25943. weight: math.unit(180, "lb"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/juri/front.svg",
  25947. extra: 1401 / 1237,
  25948. bottom: 18.5 / 1418
  25949. }
  25950. },
  25951. side: {
  25952. height: math.unit(7 + 3 / 12, "feet"),
  25953. weight: math.unit(180, "lb"),
  25954. name: "Side",
  25955. image: {
  25956. source: "./media/characters/juri/side.svg",
  25957. extra: 1424 / 1242,
  25958. bottom: 18.5 / 1447
  25959. }
  25960. },
  25961. sitting: {
  25962. height: math.unit(6, "feet"),
  25963. weight: math.unit(180, "lb"),
  25964. name: "Sitting",
  25965. image: {
  25966. source: "./media/characters/juri/sitting.svg",
  25967. extra: 1270 / 1143,
  25968. bottom: 100 / 1343
  25969. }
  25970. },
  25971. back: {
  25972. height: math.unit(7 + 3 / 12, "feet"),
  25973. weight: math.unit(180, "lb"),
  25974. name: "Back",
  25975. image: {
  25976. source: "./media/characters/juri/back.svg",
  25977. extra: 1377 / 1240,
  25978. bottom: 23.7 / 1405
  25979. }
  25980. },
  25981. maw: {
  25982. height: math.unit(2.8, "feet"),
  25983. name: "Maw",
  25984. image: {
  25985. source: "./media/characters/juri/maw.svg"
  25986. }
  25987. },
  25988. stomach: {
  25989. height: math.unit(0.89, "feet"),
  25990. capacity: math.unit(4, "liters"),
  25991. name: "Stomach",
  25992. image: {
  25993. source: "./media/characters/juri/stomach.svg"
  25994. }
  25995. },
  25996. },
  25997. [
  25998. {
  25999. name: "Normal",
  26000. height: math.unit(7 + 3 / 12, "feet"),
  26001. default: true
  26002. },
  26003. ]
  26004. ))
  26005. characterMakers.push(() => makeCharacter(
  26006. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26007. {
  26008. fox: {
  26009. height: math.unit(5 + 6 / 12, "feet"),
  26010. weight: math.unit(140, "lb"),
  26011. name: "Fox",
  26012. image: {
  26013. source: "./media/characters/maxene-sita/fox.svg",
  26014. extra: 146 / 138,
  26015. bottom: 2.1 / 148.19
  26016. }
  26017. },
  26018. foxLaying: {
  26019. height: math.unit(1.70, "feet"),
  26020. weight: math.unit(140, "lb"),
  26021. name: "Fox (Laying)",
  26022. image: {
  26023. source: "./media/characters/maxene-sita/fox-laying.svg",
  26024. extra: 910 / 572,
  26025. bottom: 71 / 981
  26026. }
  26027. },
  26028. kitsune: {
  26029. height: math.unit(10, "feet"),
  26030. weight: math.unit(800, "lb"),
  26031. name: "Kitsune",
  26032. image: {
  26033. source: "./media/characters/maxene-sita/kitsune.svg",
  26034. extra: 185 / 176,
  26035. bottom: 4.7 / 189.9
  26036. }
  26037. },
  26038. hellhound: {
  26039. height: math.unit(10, "feet"),
  26040. weight: math.unit(700, "lb"),
  26041. name: "Hellhound",
  26042. image: {
  26043. source: "./media/characters/maxene-sita/hellhound.svg",
  26044. extra: 1600 / 1545,
  26045. bottom: 81 / 1681
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(5 + 6 / 12, "feet"),
  26053. default: true
  26054. },
  26055. ]
  26056. ))
  26057. characterMakers.push(() => makeCharacter(
  26058. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26059. {
  26060. front: {
  26061. height: math.unit(3 + 4 / 12, "feet"),
  26062. weight: math.unit(70, "lb"),
  26063. name: "Front",
  26064. image: {
  26065. source: "./media/characters/maia/front.svg",
  26066. extra: 227 / 219.5,
  26067. bottom: 40 / 267
  26068. }
  26069. },
  26070. back: {
  26071. height: math.unit(3 + 4 / 12, "feet"),
  26072. weight: math.unit(70, "lb"),
  26073. name: "Back",
  26074. image: {
  26075. source: "./media/characters/maia/back.svg",
  26076. extra: 237 / 225
  26077. }
  26078. },
  26079. },
  26080. [
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(3 + 4 / 12, "feet"),
  26084. default: true
  26085. },
  26086. ]
  26087. ))
  26088. characterMakers.push(() => makeCharacter(
  26089. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26090. {
  26091. front: {
  26092. height: math.unit(5 + 10 / 12, "feet"),
  26093. weight: math.unit(197, "lb"),
  26094. name: "Front",
  26095. image: {
  26096. source: "./media/characters/jabaro/front.svg",
  26097. extra: 225 / 216,
  26098. bottom: 5.06 / 230
  26099. }
  26100. },
  26101. back: {
  26102. height: math.unit(5 + 10 / 12, "feet"),
  26103. weight: math.unit(197, "lb"),
  26104. name: "Back",
  26105. image: {
  26106. source: "./media/characters/jabaro/back.svg",
  26107. extra: 225 / 219,
  26108. bottom: 1.9 / 227
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Normal",
  26115. height: math.unit(5 + 10 / 12, "feet"),
  26116. default: true
  26117. },
  26118. ]
  26119. ))
  26120. characterMakers.push(() => makeCharacter(
  26121. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26122. {
  26123. front: {
  26124. height: math.unit(5 + 8 / 12, "feet"),
  26125. weight: math.unit(139, "lb"),
  26126. name: "Front",
  26127. image: {
  26128. source: "./media/characters/risa/front.svg",
  26129. extra: 270 / 260,
  26130. bottom: 11.2 / 282
  26131. }
  26132. },
  26133. back: {
  26134. height: math.unit(5 + 8 / 12, "feet"),
  26135. weight: math.unit(139, "lb"),
  26136. name: "Back",
  26137. image: {
  26138. source: "./media/characters/risa/back.svg",
  26139. extra: 264 / 255,
  26140. bottom: 4 / 268
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Normal",
  26147. height: math.unit(5 + 8 / 12, "feet"),
  26148. default: true
  26149. },
  26150. ]
  26151. ))
  26152. characterMakers.push(() => makeCharacter(
  26153. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26154. {
  26155. front: {
  26156. height: math.unit(2 + 11 / 12, "feet"),
  26157. weight: math.unit(30, "lb"),
  26158. name: "Front",
  26159. image: {
  26160. source: "./media/characters/weatley/front.svg",
  26161. bottom: 10.7 / 414,
  26162. extra: 403.5 / 362
  26163. }
  26164. },
  26165. back: {
  26166. height: math.unit(2 + 11 / 12, "feet"),
  26167. weight: math.unit(30, "lb"),
  26168. name: "Back",
  26169. image: {
  26170. source: "./media/characters/weatley/back.svg",
  26171. bottom: 10.7 / 414,
  26172. extra: 403.5 / 362
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Normal",
  26179. height: math.unit(2 + 11 / 12, "feet"),
  26180. default: true
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26186. {
  26187. front: {
  26188. height: math.unit(5 + 2 / 12, "feet"),
  26189. weight: math.unit(50, "kg"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/mercury-crescent/front.svg",
  26193. extra: 1088 / 1033,
  26194. bottom: 18.9 / 1109
  26195. }
  26196. },
  26197. },
  26198. [
  26199. {
  26200. name: "Normal",
  26201. height: math.unit(5 + 2 / 12, "feet"),
  26202. default: true
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(2, "feet"),
  26211. weight: math.unit(15, "kg"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/diamond-jones/front.svg",
  26215. extra: 727/723,
  26216. bottom: 46/773
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Normal",
  26223. height: math.unit(2, "feet"),
  26224. default: true
  26225. },
  26226. ]
  26227. ))
  26228. characterMakers.push(() => makeCharacter(
  26229. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26230. {
  26231. front: {
  26232. height: math.unit(3, "feet"),
  26233. weight: math.unit(30, "kg"),
  26234. name: "Front",
  26235. image: {
  26236. source: "./media/characters/sweet-bit/front.svg",
  26237. extra: 675 / 567,
  26238. bottom: 27.7 / 703
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Normal",
  26245. height: math.unit(3, "feet"),
  26246. default: true
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26252. {
  26253. side: {
  26254. height: math.unit(9.178, "feet"),
  26255. weight: math.unit(500, "lb"),
  26256. name: "Side",
  26257. image: {
  26258. source: "./media/characters/umbrazen/side.svg",
  26259. extra: 1730 / 1473,
  26260. bottom: 34.6 / 1765
  26261. }
  26262. },
  26263. },
  26264. [
  26265. {
  26266. name: "Normal",
  26267. height: math.unit(9.178, "feet"),
  26268. default: true
  26269. },
  26270. ]
  26271. ))
  26272. characterMakers.push(() => makeCharacter(
  26273. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26274. {
  26275. front: {
  26276. height: math.unit(10, "feet"),
  26277. weight: math.unit(750, "lb"),
  26278. name: "Front",
  26279. image: {
  26280. source: "./media/characters/arlist/front.svg",
  26281. extra: 961 / 778,
  26282. bottom: 6.2 / 986
  26283. }
  26284. },
  26285. },
  26286. [
  26287. {
  26288. name: "Normal",
  26289. height: math.unit(10, "feet"),
  26290. default: true
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26296. {
  26297. front: {
  26298. height: math.unit(5 + 1 / 12, "feet"),
  26299. weight: math.unit(110, "lb"),
  26300. name: "Front",
  26301. image: {
  26302. source: "./media/characters/aradel/front.svg",
  26303. extra: 324 / 303,
  26304. bottom: 3.6 / 329.4
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Normal",
  26311. height: math.unit(5 + 1 / 12, "feet"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(3 + 8 / 12, "feet"),
  26321. weight: math.unit(50, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/serryn/front.svg",
  26325. extra: 1792 / 1656,
  26326. bottom: 43.5 / 1840
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(3 + 8 / 12, "feet"),
  26334. default: true
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26340. {
  26341. front: {
  26342. height: math.unit(7 + 10 / 12, "feet"),
  26343. weight: math.unit(255, "lb"),
  26344. name: "Front",
  26345. image: {
  26346. source: "./media/characters/xavier-thyme/front.svg",
  26347. extra: 3733 / 3642,
  26348. bottom: 131 / 3869
  26349. }
  26350. },
  26351. frontRaven: {
  26352. height: math.unit(7 + 10 / 12, "feet"),
  26353. weight: math.unit(255, "lb"),
  26354. name: "Front (Raven)",
  26355. image: {
  26356. source: "./media/characters/xavier-thyme/front-raven.svg",
  26357. extra: 4385 / 3642,
  26358. bottom: 131 / 4517
  26359. }
  26360. },
  26361. },
  26362. [
  26363. {
  26364. name: "Normal",
  26365. height: math.unit(7 + 10 / 12, "feet"),
  26366. default: true
  26367. },
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26372. {
  26373. front: {
  26374. height: math.unit(1.6, "m"),
  26375. weight: math.unit(50, "kg"),
  26376. name: "Front",
  26377. image: {
  26378. source: "./media/characters/kiki/front.svg",
  26379. extra: 4682 / 3610,
  26380. bottom: 115 / 4777
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Normal",
  26387. height: math.unit(1.6, "meters"),
  26388. default: true
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26394. {
  26395. front: {
  26396. height: math.unit(50, "m"),
  26397. weight: math.unit(500, "tonnes"),
  26398. name: "Front",
  26399. image: {
  26400. source: "./media/characters/ryoko/front.svg",
  26401. extra: 4632 / 3926,
  26402. bottom: 193 / 4823
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Normal",
  26409. height: math.unit(50, "meters"),
  26410. default: true
  26411. },
  26412. ]
  26413. ))
  26414. characterMakers.push(() => makeCharacter(
  26415. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26416. {
  26417. front: {
  26418. height: math.unit(30, "m"),
  26419. weight: math.unit(22, "tonnes"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/elio/front.svg",
  26423. extra: 4582 / 3720,
  26424. bottom: 236 / 4828
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(30, "meters"),
  26432. default: true
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26438. {
  26439. front: {
  26440. height: math.unit(6 + 3 / 12, "feet"),
  26441. weight: math.unit(120, "lb"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/azura/front.svg",
  26445. extra: 1149 / 1135,
  26446. bottom: 45 / 1194
  26447. }
  26448. },
  26449. frontClothed: {
  26450. height: math.unit(6 + 3 / 12, "feet"),
  26451. weight: math.unit(120, "lb"),
  26452. name: "Front (Clothed)",
  26453. image: {
  26454. source: "./media/characters/azura/front-clothed.svg",
  26455. extra: 1149 / 1135,
  26456. bottom: 45 / 1194
  26457. }
  26458. },
  26459. },
  26460. [
  26461. {
  26462. name: "Normal",
  26463. height: math.unit(6 + 3 / 12, "feet"),
  26464. default: true
  26465. },
  26466. {
  26467. name: "Macro",
  26468. height: math.unit(20 + 6 / 12, "feet")
  26469. },
  26470. {
  26471. name: "Megamacro",
  26472. height: math.unit(12, "miles")
  26473. },
  26474. {
  26475. name: "Gigamacro",
  26476. height: math.unit(10000, "miles")
  26477. },
  26478. {
  26479. name: "Teramacro",
  26480. height: math.unit(900000, "miles")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(12, "feet"),
  26489. weight: math.unit(1, "ton"),
  26490. capacity: math.unit(660000, "gallons"),
  26491. name: "Front",
  26492. image: {
  26493. source: "./media/characters/zeus/front.svg",
  26494. extra: 5005 / 4717,
  26495. bottom: 363 / 5388
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Normal",
  26502. height: math.unit(12, "feet")
  26503. },
  26504. {
  26505. name: "Preferred Size",
  26506. height: math.unit(0.5, "miles"),
  26507. default: true
  26508. },
  26509. {
  26510. name: "Giga Horse",
  26511. height: math.unit(300, "miles")
  26512. },
  26513. {
  26514. name: "Riding Planets",
  26515. height: math.unit(30, "megameters")
  26516. },
  26517. {
  26518. name: "Cosmic Giant",
  26519. height: math.unit(3, "zettameters")
  26520. },
  26521. {
  26522. name: "Breeding God",
  26523. height: math.unit(9.92e22, "yottameters")
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26529. {
  26530. side: {
  26531. height: math.unit(9, "feet"),
  26532. weight: math.unit(1500, "kg"),
  26533. name: "Side",
  26534. image: {
  26535. source: "./media/characters/fang/side.svg",
  26536. extra: 924 / 866,
  26537. bottom: 47.5 / 972.3
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(9, "feet"),
  26545. default: true
  26546. },
  26547. {
  26548. name: "Macro",
  26549. height: math.unit(75 + 6 / 12, "feet")
  26550. },
  26551. {
  26552. name: "Teramacro",
  26553. height: math.unit(50000, "miles")
  26554. },
  26555. ]
  26556. ))
  26557. characterMakers.push(() => makeCharacter(
  26558. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26559. {
  26560. front: {
  26561. height: math.unit(10, "feet"),
  26562. weight: math.unit(2, "tons"),
  26563. name: "Front",
  26564. image: {
  26565. source: "./media/characters/rekhit/front.svg",
  26566. extra: 2796 / 2590,
  26567. bottom: 225 / 3022
  26568. }
  26569. },
  26570. },
  26571. [
  26572. {
  26573. name: "Normal",
  26574. height: math.unit(10, "feet"),
  26575. default: true
  26576. },
  26577. {
  26578. name: "Macro",
  26579. height: math.unit(500, "feet")
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26585. {
  26586. front: {
  26587. height: math.unit(7 + 6.451 / 12, "feet"),
  26588. weight: math.unit(310, "lb"),
  26589. name: "Front",
  26590. image: {
  26591. source: "./media/characters/dahlia-verrick/front.svg",
  26592. extra: 1488 / 1365,
  26593. bottom: 6.2 / 1495
  26594. }
  26595. },
  26596. back: {
  26597. height: math.unit(7 + 6.451 / 12, "feet"),
  26598. weight: math.unit(310, "lb"),
  26599. name: "Back",
  26600. image: {
  26601. source: "./media/characters/dahlia-verrick/back.svg",
  26602. extra: 1472 / 1351,
  26603. bottom: 5.28 / 1477
  26604. }
  26605. },
  26606. frontBusiness: {
  26607. height: math.unit(7 + 6.451 / 12, "feet"),
  26608. weight: math.unit(200, "lb"),
  26609. name: "Front (Business)",
  26610. image: {
  26611. source: "./media/characters/dahlia-verrick/front-business.svg",
  26612. extra: 1478 / 1381,
  26613. bottom: 5.5 / 1484
  26614. }
  26615. },
  26616. frontCasual: {
  26617. height: math.unit(7 + 6.451 / 12, "feet"),
  26618. weight: math.unit(200, "lb"),
  26619. name: "Front (Casual)",
  26620. image: {
  26621. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26622. extra: 1478 / 1381,
  26623. bottom: 5.5 / 1484
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Travel-Sized",
  26630. height: math.unit(7.45, "inches")
  26631. },
  26632. {
  26633. name: "Normal",
  26634. height: math.unit(7 + 6.451 / 12, "feet"),
  26635. default: true
  26636. },
  26637. {
  26638. name: "Hitting the Town",
  26639. height: math.unit(37 + 8 / 12, "feet")
  26640. },
  26641. {
  26642. name: "Stomp in the Suburbs",
  26643. height: math.unit(964 + 9.728 / 12, "feet")
  26644. },
  26645. {
  26646. name: "Sit on the City",
  26647. height: math.unit(61747 + 10.592 / 12, "feet")
  26648. },
  26649. {
  26650. name: "Glomp the Globe",
  26651. height: math.unit(252919327 + 4.832 / 12, "feet")
  26652. },
  26653. ]
  26654. ))
  26655. characterMakers.push(() => makeCharacter(
  26656. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26657. {
  26658. front: {
  26659. height: math.unit(6 + 4 / 12, "feet"),
  26660. weight: math.unit(320, "lb"),
  26661. name: "Front",
  26662. image: {
  26663. source: "./media/characters/balina-mahigan/front.svg",
  26664. extra: 447 / 428,
  26665. bottom: 18 / 466
  26666. }
  26667. },
  26668. back: {
  26669. height: math.unit(6 + 4 / 12, "feet"),
  26670. weight: math.unit(320, "lb"),
  26671. name: "Back",
  26672. image: {
  26673. source: "./media/characters/balina-mahigan/back.svg",
  26674. extra: 445 / 428,
  26675. bottom: 4.07 / 448
  26676. }
  26677. },
  26678. arm: {
  26679. height: math.unit(1.88, "feet"),
  26680. name: "Arm",
  26681. image: {
  26682. source: "./media/characters/balina-mahigan/arm.svg"
  26683. }
  26684. },
  26685. backPort: {
  26686. height: math.unit(0.685, "feet"),
  26687. name: "Back Port",
  26688. image: {
  26689. source: "./media/characters/balina-mahigan/back-port.svg"
  26690. }
  26691. },
  26692. hoofpaw: {
  26693. height: math.unit(1.41, "feet"),
  26694. name: "Hoofpaw",
  26695. image: {
  26696. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26697. }
  26698. },
  26699. leftHandBack: {
  26700. height: math.unit(0.938, "feet"),
  26701. name: "Left Hand (Back)",
  26702. image: {
  26703. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26704. }
  26705. },
  26706. leftHandFront: {
  26707. height: math.unit(0.938, "feet"),
  26708. name: "Left Hand (Front)",
  26709. image: {
  26710. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26711. }
  26712. },
  26713. rightHandBack: {
  26714. height: math.unit(0.95, "feet"),
  26715. name: "Right Hand (Back)",
  26716. image: {
  26717. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26718. }
  26719. },
  26720. rightHandFront: {
  26721. height: math.unit(0.95, "feet"),
  26722. name: "Right Hand (Front)",
  26723. image: {
  26724. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Normal",
  26731. height: math.unit(6 + 4 / 12, "feet"),
  26732. default: true
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26738. {
  26739. front: {
  26740. height: math.unit(6, "feet"),
  26741. weight: math.unit(320, "lb"),
  26742. name: "Front",
  26743. image: {
  26744. source: "./media/characters/balina-mejeri/front.svg",
  26745. extra: 517 / 488,
  26746. bottom: 44.2 / 561
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Normal",
  26753. height: math.unit(6 + 4 / 12, "feet")
  26754. },
  26755. {
  26756. name: "Business",
  26757. height: math.unit(155, "feet"),
  26758. default: true
  26759. },
  26760. ]
  26761. ))
  26762. characterMakers.push(() => makeCharacter(
  26763. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26764. {
  26765. kneeling: {
  26766. height: math.unit(6 + 4 / 12, "feet"),
  26767. weight: math.unit(300 * 20, "lb"),
  26768. name: "Kneeling",
  26769. image: {
  26770. source: "./media/characters/balbarian/kneeling.svg",
  26771. extra: 922 / 862,
  26772. bottom: 42.4 / 965
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(6 + 4 / 12, "feet")
  26780. },
  26781. {
  26782. name: "Treasured",
  26783. height: math.unit(18 + 9 / 12, "feet"),
  26784. default: true
  26785. },
  26786. {
  26787. name: "Macro",
  26788. height: math.unit(900, "feet")
  26789. },
  26790. ]
  26791. ))
  26792. characterMakers.push(() => makeCharacter(
  26793. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26794. {
  26795. front: {
  26796. height: math.unit(6 + 4 / 12, "feet"),
  26797. weight: math.unit(325, "lb"),
  26798. name: "Front",
  26799. image: {
  26800. source: "./media/characters/balina-amarini/front.svg",
  26801. extra: 415 / 403,
  26802. bottom: 19 / 433.4
  26803. }
  26804. },
  26805. back: {
  26806. height: math.unit(6 + 4 / 12, "feet"),
  26807. weight: math.unit(325, "lb"),
  26808. name: "Back",
  26809. image: {
  26810. source: "./media/characters/balina-amarini/back.svg",
  26811. extra: 415 / 403,
  26812. bottom: 13.5 / 432
  26813. }
  26814. },
  26815. overdrive: {
  26816. height: math.unit(6 + 4 / 12, "feet"),
  26817. weight: math.unit(400, "lb"),
  26818. name: "Overdrive",
  26819. image: {
  26820. source: "./media/characters/balina-amarini/overdrive.svg",
  26821. extra: 269 / 259,
  26822. bottom: 12 / 282
  26823. }
  26824. },
  26825. },
  26826. [
  26827. {
  26828. name: "Boom",
  26829. height: math.unit(9 + 10 / 12, "feet"),
  26830. default: true
  26831. },
  26832. {
  26833. name: "Macro",
  26834. height: math.unit(280, "feet")
  26835. },
  26836. ]
  26837. ))
  26838. characterMakers.push(() => makeCharacter(
  26839. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26840. {
  26841. goddess: {
  26842. height: math.unit(600, "feet"),
  26843. weight: math.unit(2000000, "tons"),
  26844. name: "Goddess",
  26845. image: {
  26846. source: "./media/characters/lady-kubwa/goddess.svg",
  26847. extra: 1240.5 / 1223,
  26848. bottom: 22 / 1263
  26849. }
  26850. },
  26851. goddesser: {
  26852. height: math.unit(900, "feet"),
  26853. weight: math.unit(20000000, "lb"),
  26854. name: "Goddess-er",
  26855. image: {
  26856. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26857. extra: 899 / 888,
  26858. bottom: 12.6 / 912
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Macro",
  26865. height: math.unit(600, "feet"),
  26866. default: true
  26867. },
  26868. {
  26869. name: "Megamacro",
  26870. height: math.unit(250, "miles")
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26876. {
  26877. front: {
  26878. height: math.unit(7 + 7 / 12, "feet"),
  26879. weight: math.unit(250, "lb"),
  26880. name: "Front",
  26881. image: {
  26882. source: "./media/characters/tala-grovehorn/front.svg",
  26883. extra: 2636 / 2525,
  26884. bottom: 147 / 2781
  26885. }
  26886. },
  26887. back: {
  26888. height: math.unit(7 + 7 / 12, "feet"),
  26889. weight: math.unit(250, "lb"),
  26890. name: "Back",
  26891. image: {
  26892. source: "./media/characters/tala-grovehorn/back.svg",
  26893. extra: 2635 / 2539,
  26894. bottom: 100 / 2732.8
  26895. }
  26896. },
  26897. mouth: {
  26898. height: math.unit(1.15, "feet"),
  26899. name: "Mouth",
  26900. image: {
  26901. source: "./media/characters/tala-grovehorn/mouth.svg"
  26902. }
  26903. },
  26904. dick: {
  26905. height: math.unit(2.36, "feet"),
  26906. name: "Dick",
  26907. image: {
  26908. source: "./media/characters/tala-grovehorn/dick.svg"
  26909. }
  26910. },
  26911. slit: {
  26912. height: math.unit(0.61, "feet"),
  26913. name: "Slit",
  26914. image: {
  26915. source: "./media/characters/tala-grovehorn/slit.svg"
  26916. }
  26917. },
  26918. },
  26919. [
  26920. ]
  26921. ))
  26922. characterMakers.push(() => makeCharacter(
  26923. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26924. {
  26925. front: {
  26926. height: math.unit(7 + 7 / 12, "feet"),
  26927. weight: math.unit(225, "lb"),
  26928. name: "Front",
  26929. image: {
  26930. source: "./media/characters/epona/front.svg",
  26931. extra: 2445 / 2290,
  26932. bottom: 251 / 2696
  26933. }
  26934. },
  26935. back: {
  26936. height: math.unit(7 + 7 / 12, "feet"),
  26937. weight: math.unit(225, "lb"),
  26938. name: "Back",
  26939. image: {
  26940. source: "./media/characters/epona/back.svg",
  26941. extra: 2546 / 2408,
  26942. bottom: 44 / 2589
  26943. }
  26944. },
  26945. genitals: {
  26946. height: math.unit(1.5, "feet"),
  26947. name: "Genitals",
  26948. image: {
  26949. source: "./media/characters/epona/genitals.svg"
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Normal",
  26956. height: math.unit(7 + 7 / 12, "feet"),
  26957. default: true
  26958. },
  26959. ]
  26960. ))
  26961. characterMakers.push(() => makeCharacter(
  26962. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26963. {
  26964. front: {
  26965. height: math.unit(7, "feet"),
  26966. weight: math.unit(518, "lb"),
  26967. name: "Front",
  26968. image: {
  26969. source: "./media/characters/avia-bloodbourn/front.svg",
  26970. extra: 1466 / 1350,
  26971. bottom: 65 / 1527
  26972. }
  26973. },
  26974. },
  26975. [
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(9.35, "feet"),
  26983. weight: math.unit(600, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/amera/front.svg",
  26987. extra: 891 / 818,
  26988. bottom: 30 / 922.7
  26989. }
  26990. },
  26991. back: {
  26992. height: math.unit(9.35, "feet"),
  26993. weight: math.unit(600, "lb"),
  26994. name: "Back",
  26995. image: {
  26996. source: "./media/characters/amera/back.svg",
  26997. extra: 876 / 824,
  26998. bottom: 6.8 / 884
  26999. }
  27000. },
  27001. dick: {
  27002. height: math.unit(2.14, "feet"),
  27003. name: "Dick",
  27004. image: {
  27005. source: "./media/characters/amera/dick.svg"
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(9.35, "feet"),
  27013. default: true
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27019. {
  27020. kneeling: {
  27021. height: math.unit(3 + 4 / 12, "feet"),
  27022. weight: math.unit(90, "lb"),
  27023. name: "Kneeling",
  27024. image: {
  27025. source: "./media/characters/rosewen/kneeling.svg",
  27026. extra: 1835 / 1571,
  27027. bottom: 27.7 / 1862
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(3 + 4 / 12, "feet"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(5 + 10 / 12, "feet"),
  27044. weight: math.unit(200, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/sabah/front.svg",
  27048. extra: 849 / 763,
  27049. bottom: 33.9 / 881
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(5 + 10 / 12, "feet"),
  27057. default: true
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27063. {
  27064. front: {
  27065. height: math.unit(3 + 5 / 12, "feet"),
  27066. weight: math.unit(40, "kg"),
  27067. name: "Front",
  27068. image: {
  27069. source: "./media/characters/purple-flame/front.svg",
  27070. extra: 1577 / 1412,
  27071. bottom: 97 / 1694
  27072. }
  27073. },
  27074. frontDressed: {
  27075. height: math.unit(3 + 5 / 12, "feet"),
  27076. weight: math.unit(40, "kg"),
  27077. name: "Front (Dressed)",
  27078. image: {
  27079. source: "./media/characters/purple-flame/front-dressed.svg",
  27080. extra: 1577 / 1412,
  27081. bottom: 97 / 1694
  27082. }
  27083. },
  27084. headphones: {
  27085. height: math.unit(0.85, "feet"),
  27086. name: "Headphones",
  27087. image: {
  27088. source: "./media/characters/purple-flame/headphones.svg"
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Really Small",
  27095. height: math.unit(5, "cm")
  27096. },
  27097. {
  27098. name: "Micro",
  27099. height: math.unit(1 + 5 / 12, "feet")
  27100. },
  27101. {
  27102. name: "Normal",
  27103. height: math.unit(3 + 5 / 12, "feet"),
  27104. default: true
  27105. },
  27106. {
  27107. name: "Minimacro",
  27108. height: math.unit(125, "feet")
  27109. },
  27110. {
  27111. name: "Macro",
  27112. height: math.unit(0.5, "miles")
  27113. },
  27114. {
  27115. name: "Megamacro",
  27116. height: math.unit(50, "miles")
  27117. },
  27118. {
  27119. name: "Gigantic",
  27120. height: math.unit(750, "miles")
  27121. },
  27122. {
  27123. name: "Planetary",
  27124. height: math.unit(15000, "miles")
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(14, "feet"),
  27133. weight: math.unit(959, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/arsenal/front.svg",
  27137. extra: 2357 / 2157,
  27138. bottom: 93 / 2458
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Normal",
  27145. height: math.unit(14, "feet"),
  27146. default: true
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27152. {
  27153. front: {
  27154. height: math.unit(6, "feet"),
  27155. weight: math.unit(150, "lb"),
  27156. name: "Front",
  27157. image: {
  27158. source: "./media/characters/adira/front.svg",
  27159. extra: 1078 / 1029,
  27160. bottom: 87 / 1166
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Micro",
  27167. height: math.unit(4, "inches"),
  27168. default: true
  27169. },
  27170. {
  27171. name: "Macro",
  27172. height: math.unit(50, "feet")
  27173. },
  27174. ]
  27175. ))
  27176. characterMakers.push(() => makeCharacter(
  27177. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27178. {
  27179. front: {
  27180. height: math.unit(16, "feet"),
  27181. weight: math.unit(1000, "lb"),
  27182. name: "Front",
  27183. image: {
  27184. source: "./media/characters/grim/front.svg",
  27185. extra: 622 / 614,
  27186. bottom: 18.1 / 642
  27187. }
  27188. },
  27189. back: {
  27190. height: math.unit(16, "feet"),
  27191. weight: math.unit(1000, "lb"),
  27192. name: "Back",
  27193. image: {
  27194. source: "./media/characters/grim/back.svg",
  27195. extra: 610.6 / 602,
  27196. bottom: 40.8 / 652
  27197. }
  27198. },
  27199. hunched: {
  27200. height: math.unit(9.75, "feet"),
  27201. weight: math.unit(1000, "lb"),
  27202. name: "Hunched",
  27203. image: {
  27204. source: "./media/characters/grim/hunched.svg",
  27205. extra: 304 / 297,
  27206. bottom: 35.4 / 394
  27207. }
  27208. },
  27209. },
  27210. [
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(16, "feet"),
  27214. default: true
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27220. {
  27221. front: {
  27222. height: math.unit(2.3, "meters"),
  27223. weight: math.unit(300, "lb"),
  27224. name: "Front",
  27225. image: {
  27226. source: "./media/characters/sinja/front-sfw.svg",
  27227. extra: 1393 / 1294,
  27228. bottom: 70 / 1463
  27229. }
  27230. },
  27231. frontNsfw: {
  27232. height: math.unit(2.3, "meters"),
  27233. weight: math.unit(300, "lb"),
  27234. name: "Front (NSFW)",
  27235. image: {
  27236. source: "./media/characters/sinja/front-nsfw.svg",
  27237. extra: 1393 / 1294,
  27238. bottom: 70 / 1463
  27239. }
  27240. },
  27241. back: {
  27242. height: math.unit(2.3, "meters"),
  27243. weight: math.unit(300, "lb"),
  27244. name: "Back",
  27245. image: {
  27246. source: "./media/characters/sinja/back.svg",
  27247. extra: 1393 / 1294,
  27248. bottom: 70 / 1463
  27249. }
  27250. },
  27251. head: {
  27252. height: math.unit(1.771, "feet"),
  27253. name: "Head",
  27254. image: {
  27255. source: "./media/characters/sinja/head.svg"
  27256. }
  27257. },
  27258. slit: {
  27259. height: math.unit(0.8, "feet"),
  27260. name: "Slit",
  27261. image: {
  27262. source: "./media/characters/sinja/slit.svg"
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(2.3, "meters")
  27270. },
  27271. {
  27272. name: "Macro",
  27273. height: math.unit(91, "meters"),
  27274. default: true
  27275. },
  27276. {
  27277. name: "Megamacro",
  27278. height: math.unit(91440, "meters")
  27279. },
  27280. {
  27281. name: "Gigamacro",
  27282. height: math.unit(60960000, "meters")
  27283. },
  27284. {
  27285. name: "Teramacro",
  27286. height: math.unit(9144000000, "meters")
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(1.7, "meters"),
  27295. weight: math.unit(130, "lb"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/kyu/front.svg",
  27299. extra: 415 / 395,
  27300. bottom: 5 / 420
  27301. }
  27302. },
  27303. head: {
  27304. height: math.unit(1.75, "feet"),
  27305. name: "Head",
  27306. image: {
  27307. source: "./media/characters/kyu/head.svg"
  27308. }
  27309. },
  27310. foot: {
  27311. height: math.unit(0.81, "feet"),
  27312. name: "Foot",
  27313. image: {
  27314. source: "./media/characters/kyu/foot.svg"
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(1.7, "meters")
  27322. },
  27323. {
  27324. name: "Macro",
  27325. height: math.unit(131, "feet"),
  27326. default: true
  27327. },
  27328. {
  27329. name: "Megamacro",
  27330. height: math.unit(91440, "meters")
  27331. },
  27332. {
  27333. name: "Gigamacro",
  27334. height: math.unit(60960000, "meters")
  27335. },
  27336. {
  27337. name: "Teramacro",
  27338. height: math.unit(9144000000, "meters")
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27344. {
  27345. front: {
  27346. height: math.unit(7 + 1 / 12, "feet"),
  27347. weight: math.unit(250, "lb"),
  27348. name: "Front",
  27349. image: {
  27350. source: "./media/characters/joey/front.svg",
  27351. extra: 1791 / 1537,
  27352. bottom: 28 / 1816
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Micro",
  27359. height: math.unit(3, "inches")
  27360. },
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(7 + 1 / 12, "feet"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(165, "cm"),
  27373. weight: math.unit(140, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/sam-evans/front.svg",
  27377. extra: 3417 / 3230,
  27378. bottom: 41.3 / 3417
  27379. }
  27380. },
  27381. frontSixTails: {
  27382. height: math.unit(165, "cm"),
  27383. weight: math.unit(140, "lb"),
  27384. name: "Front-six-tails",
  27385. image: {
  27386. source: "./media/characters/sam-evans/front-six-tails.svg",
  27387. extra: 3417 / 3230,
  27388. bottom: 41.3 / 3417
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(165, "cm"),
  27393. weight: math.unit(140, "lb"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/sam-evans/back.svg",
  27397. extra: 3227 / 3032,
  27398. bottom: 6.8 / 3234
  27399. }
  27400. },
  27401. face: {
  27402. height: math.unit(0.68, "feet"),
  27403. name: "Face",
  27404. image: {
  27405. source: "./media/characters/sam-evans/face.svg"
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(165, "cm"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Macro",
  27417. height: math.unit(100, "meters")
  27418. },
  27419. {
  27420. name: "Macro+",
  27421. height: math.unit(800, "meters")
  27422. },
  27423. {
  27424. name: "Macro++",
  27425. height: math.unit(3, "km")
  27426. },
  27427. {
  27428. name: "Macro+++",
  27429. height: math.unit(30, "km")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27435. {
  27436. front: {
  27437. height: math.unit(10, "feet"),
  27438. weight: math.unit(750, "lb"),
  27439. name: "Front",
  27440. image: {
  27441. source: "./media/characters/juliet-a/front.svg",
  27442. extra: 1766 / 1720,
  27443. bottom: 43 / 1809
  27444. }
  27445. },
  27446. back: {
  27447. height: math.unit(10, "feet"),
  27448. weight: math.unit(750, "lb"),
  27449. name: "Back",
  27450. image: {
  27451. source: "./media/characters/juliet-a/back.svg",
  27452. extra: 1781 / 1734,
  27453. bottom: 35 / 1810,
  27454. }
  27455. },
  27456. },
  27457. [
  27458. {
  27459. name: "Normal",
  27460. height: math.unit(10, "feet"),
  27461. default: true
  27462. },
  27463. {
  27464. name: "Dragon Form",
  27465. height: math.unit(250, "feet")
  27466. },
  27467. {
  27468. name: "Macro",
  27469. height: math.unit(1000, "feet")
  27470. },
  27471. {
  27472. name: "Megamacro",
  27473. height: math.unit(10000, "feet")
  27474. }
  27475. ]
  27476. ))
  27477. characterMakers.push(() => makeCharacter(
  27478. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27479. {
  27480. regular: {
  27481. height: math.unit(7 + 3 / 12, "feet"),
  27482. weight: math.unit(260, "lb"),
  27483. name: "Regular",
  27484. image: {
  27485. source: "./media/characters/wild/regular.svg",
  27486. extra: 97.45 / 92,
  27487. bottom: 6.8 / 104.3
  27488. }
  27489. },
  27490. biggums: {
  27491. height: math.unit(8 + 6 / 12, "feet"),
  27492. weight: math.unit(425, "lb"),
  27493. name: "Biggums",
  27494. image: {
  27495. source: "./media/characters/wild/biggums.svg",
  27496. extra: 97.45 / 92,
  27497. bottom: 7.5 / 132.34
  27498. }
  27499. },
  27500. mawRegular: {
  27501. height: math.unit(1.24, "feet"),
  27502. name: "Maw (Regular)",
  27503. image: {
  27504. source: "./media/characters/wild/maw.svg"
  27505. }
  27506. },
  27507. mawBiggums: {
  27508. height: math.unit(1.47, "feet"),
  27509. name: "Maw (Biggums)",
  27510. image: {
  27511. source: "./media/characters/wild/maw.svg"
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Normal",
  27518. height: math.unit(7 + 3 / 12, "feet"),
  27519. default: true
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27525. {
  27526. front: {
  27527. height: math.unit(2.5, "meters"),
  27528. weight: math.unit(200, "kg"),
  27529. name: "Front",
  27530. image: {
  27531. source: "./media/characters/vidar/front.svg",
  27532. extra: 2994 / 2795,
  27533. bottom: 56 / 3061
  27534. }
  27535. },
  27536. back: {
  27537. height: math.unit(2.5, "meters"),
  27538. weight: math.unit(200, "kg"),
  27539. name: "Back",
  27540. image: {
  27541. source: "./media/characters/vidar/back.svg",
  27542. extra: 3131 / 2928,
  27543. bottom: 13.5 / 3141.5
  27544. }
  27545. },
  27546. feral: {
  27547. height: math.unit(2.5, "meters"),
  27548. weight: math.unit(2000, "kg"),
  27549. name: "Feral",
  27550. image: {
  27551. source: "./media/characters/vidar/feral.svg",
  27552. extra: 2790 / 1765,
  27553. bottom: 6 / 2796
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Normal",
  27560. height: math.unit(2.5, "meters"),
  27561. default: true
  27562. },
  27563. {
  27564. name: "Macro",
  27565. height: math.unit(100, "meters")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(5 + 9 / 12, "feet"),
  27574. weight: math.unit(120, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/ash/front.svg",
  27578. extra: 2189 / 1961,
  27579. bottom: 5.2 / 2194
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(5 + 9 / 12, "feet"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(9, "feet"),
  27596. weight: math.unit(10000, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/gygabite/front.svg",
  27600. bottom: 31.7 / 537.8,
  27601. extra: 505 / 370
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Normal",
  27608. height: math.unit(9, "feet"),
  27609. default: true
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27615. {
  27616. front: {
  27617. height: math.unit(12, "feet"),
  27618. weight: math.unit(35000, "lb"),
  27619. name: "Front",
  27620. image: {
  27621. source: "./media/characters/p0tat0/front.svg",
  27622. extra: 1065 / 921,
  27623. bottom: 55.7 / 1121.25
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(12, "feet"),
  27631. default: true
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27637. {
  27638. side: {
  27639. height: math.unit(6.5, "feet"),
  27640. weight: math.unit(800, "lb"),
  27641. name: "Side",
  27642. image: {
  27643. source: "./media/characters/dusk/side.svg",
  27644. extra: 615 / 373,
  27645. bottom: 53 / 664
  27646. }
  27647. },
  27648. sitting: {
  27649. height: math.unit(7, "feet"),
  27650. weight: math.unit(800, "lb"),
  27651. name: "Sitting",
  27652. image: {
  27653. source: "./media/characters/dusk/sitting.svg",
  27654. extra: 753 / 425,
  27655. bottom: 33 / 774
  27656. }
  27657. },
  27658. head: {
  27659. height: math.unit(6.1, "feet"),
  27660. name: "Head",
  27661. image: {
  27662. source: "./media/characters/dusk/head.svg"
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Normal",
  27669. height: math.unit(7, "feet"),
  27670. default: true
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27676. {
  27677. front: {
  27678. height: math.unit(15, "feet"),
  27679. weight: math.unit(7000, "lb"),
  27680. name: "Front",
  27681. image: {
  27682. source: "./media/characters/jay-direwolf/front.svg",
  27683. extra: 1810 / 1732,
  27684. bottom: 66 / 1892
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(15, "feet"),
  27692. default: true
  27693. },
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27698. {
  27699. front: {
  27700. height: math.unit(4 + 9 / 12, "feet"),
  27701. weight: math.unit(130, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/anchovie/front.svg",
  27705. extra: 382 / 350,
  27706. bottom: 25 / 409
  27707. }
  27708. },
  27709. back: {
  27710. height: math.unit(4 + 9 / 12, "feet"),
  27711. weight: math.unit(130, "lb"),
  27712. name: "Back",
  27713. image: {
  27714. source: "./media/characters/anchovie/back.svg",
  27715. extra: 385 / 352,
  27716. bottom: 16.6 / 402
  27717. }
  27718. },
  27719. frontDressed: {
  27720. height: math.unit(4 + 9 / 12, "feet"),
  27721. weight: math.unit(130, "lb"),
  27722. name: "Front (Dressed)",
  27723. image: {
  27724. source: "./media/characters/anchovie/front-dressed.svg",
  27725. extra: 382 / 350,
  27726. bottom: 25 / 409
  27727. }
  27728. },
  27729. backDressed: {
  27730. height: math.unit(4 + 9 / 12, "feet"),
  27731. weight: math.unit(130, "lb"),
  27732. name: "Back (Dressed)",
  27733. image: {
  27734. source: "./media/characters/anchovie/back-dressed.svg",
  27735. extra: 385 / 352,
  27736. bottom: 16.6 / 402
  27737. }
  27738. },
  27739. },
  27740. [
  27741. {
  27742. name: "Micro",
  27743. height: math.unit(6.4, "inches")
  27744. },
  27745. {
  27746. name: "Normal",
  27747. height: math.unit(4 + 9 / 12, "feet"),
  27748. default: true
  27749. },
  27750. ]
  27751. ))
  27752. characterMakers.push(() => makeCharacter(
  27753. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27754. {
  27755. front: {
  27756. height: math.unit(2, "meters"),
  27757. weight: math.unit(180, "lb"),
  27758. name: "Front",
  27759. image: {
  27760. source: "./media/characters/acidrenamon/front.svg",
  27761. extra: 987 / 890,
  27762. bottom: 22.8 / 1009
  27763. }
  27764. },
  27765. back: {
  27766. height: math.unit(2, "meters"),
  27767. weight: math.unit(180, "lb"),
  27768. name: "Back",
  27769. image: {
  27770. source: "./media/characters/acidrenamon/back.svg",
  27771. extra: 983 / 891,
  27772. bottom: 8.4 / 992
  27773. }
  27774. },
  27775. head: {
  27776. height: math.unit(1.92, "feet"),
  27777. name: "Head",
  27778. image: {
  27779. source: "./media/characters/acidrenamon/head.svg"
  27780. }
  27781. },
  27782. rump: {
  27783. height: math.unit(1.72, "feet"),
  27784. name: "Rump",
  27785. image: {
  27786. source: "./media/characters/acidrenamon/rump.svg"
  27787. }
  27788. },
  27789. tail: {
  27790. height: math.unit(4.2, "feet"),
  27791. name: "Tail",
  27792. image: {
  27793. source: "./media/characters/acidrenamon/tail.svg"
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(2, "meters"),
  27801. default: true
  27802. },
  27803. {
  27804. name: "Minimacro",
  27805. height: math.unit(7, "meters")
  27806. },
  27807. {
  27808. name: "Macro",
  27809. height: math.unit(200, "meters")
  27810. },
  27811. {
  27812. name: "Gigamacro",
  27813. height: math.unit(0.2, "earths")
  27814. },
  27815. ]
  27816. ))
  27817. characterMakers.push(() => makeCharacter(
  27818. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27819. {
  27820. front: {
  27821. height: math.unit(152, "feet"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/kenzie-lee/front.svg",
  27825. extra: 1869/1774,
  27826. bottom: 128/1997
  27827. }
  27828. },
  27829. side: {
  27830. height: math.unit(86, "feet"),
  27831. name: "Side",
  27832. image: {
  27833. source: "./media/characters/kenzie-lee/side.svg",
  27834. extra: 930/815,
  27835. bottom: 177/1107
  27836. }
  27837. },
  27838. paw: {
  27839. height: math.unit(15, "feet"),
  27840. name: "Paw",
  27841. image: {
  27842. source: "./media/characters/kenzie-lee/paw.svg"
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Micro",
  27849. height: math.unit(1.5, "inches")
  27850. },
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(152, "feet"),
  27854. default: true
  27855. },
  27856. {
  27857. name: "Megamacro",
  27858. height: math.unit(7, "miles")
  27859. },
  27860. {
  27861. name: "Gigamacro",
  27862. height: math.unit(8000, "miles")
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27868. {
  27869. side: {
  27870. height: math.unit(6, "feet"),
  27871. weight: math.unit(150, "lb"),
  27872. name: "Side",
  27873. image: {
  27874. source: "./media/characters/withers/side.svg",
  27875. extra: 1830 / 1728,
  27876. bottom: 96 / 1927
  27877. }
  27878. },
  27879. front: {
  27880. height: math.unit(6, "feet"),
  27881. weight: math.unit(150, "lb"),
  27882. name: "Front",
  27883. image: {
  27884. source: "./media/characters/withers/front.svg",
  27885. extra: 1514 / 1438,
  27886. bottom: 118 / 1632
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Macro",
  27893. height: math.unit(168, "feet"),
  27894. default: true
  27895. },
  27896. {
  27897. name: "Megamacro",
  27898. height: math.unit(15, "miles")
  27899. }
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(6 + 7 / 12, "feet"),
  27907. weight: math.unit(250, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/nemoskii/front.svg",
  27911. extra: 2270 / 1734,
  27912. bottom: 86 / 2354
  27913. }
  27914. },
  27915. back: {
  27916. height: math.unit(6 + 7 / 12, "feet"),
  27917. weight: math.unit(250, "lb"),
  27918. name: "Back",
  27919. image: {
  27920. source: "./media/characters/nemoskii/back.svg",
  27921. extra: 1845 / 1788,
  27922. bottom: 10.5 / 1852
  27923. }
  27924. },
  27925. head: {
  27926. height: math.unit(1.31, "feet"),
  27927. name: "Head",
  27928. image: {
  27929. source: "./media/characters/nemoskii/head.svg"
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Micro",
  27936. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27937. },
  27938. {
  27939. name: "Normal",
  27940. height: math.unit(6 + 7 / 12, "feet"),
  27941. default: true
  27942. },
  27943. {
  27944. name: "Macro",
  27945. height: math.unit((6 + 7 / 12) * 150, "feet")
  27946. },
  27947. {
  27948. name: "Macro+",
  27949. height: math.unit((6 + 7 / 12) * 500, "feet")
  27950. },
  27951. {
  27952. name: "Megamacro",
  27953. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27954. },
  27955. ]
  27956. ))
  27957. characterMakers.push(() => makeCharacter(
  27958. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27959. {
  27960. front: {
  27961. height: math.unit(1, "mile"),
  27962. weight: math.unit(265261.9, "lb"),
  27963. name: "Front",
  27964. image: {
  27965. source: "./media/characters/shui/front.svg",
  27966. extra: 1633 / 1564,
  27967. bottom: 91.5 / 1726
  27968. }
  27969. },
  27970. },
  27971. [
  27972. {
  27973. name: "Macro",
  27974. height: math.unit(1, "mile"),
  27975. default: true
  27976. },
  27977. ]
  27978. ))
  27979. characterMakers.push(() => makeCharacter(
  27980. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27981. {
  27982. front: {
  27983. height: math.unit(12 + 6 / 12, "feet"),
  27984. weight: math.unit(1342, "lb"),
  27985. name: "Front",
  27986. image: {
  27987. source: "./media/characters/arokh-takakura/front.svg",
  27988. extra: 1089 / 1043,
  27989. bottom: 77.4 / 1176.7
  27990. }
  27991. },
  27992. back: {
  27993. height: math.unit(12 + 6 / 12, "feet"),
  27994. weight: math.unit(1342, "lb"),
  27995. name: "Back",
  27996. image: {
  27997. source: "./media/characters/arokh-takakura/back.svg",
  27998. extra: 1046 / 1019,
  27999. bottom: 102 / 1150
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Big",
  28006. height: math.unit(12 + 6 / 12, "feet"),
  28007. default: true
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(5 + 6 / 12, "feet"),
  28016. weight: math.unit(150, "lb"),
  28017. name: "Front",
  28018. image: {
  28019. source: "./media/characters/theo/front.svg",
  28020. extra: 1184 / 1131,
  28021. bottom: 7.4 / 1191
  28022. }
  28023. },
  28024. },
  28025. [
  28026. {
  28027. name: "Micro",
  28028. height: math.unit(5, "inches")
  28029. },
  28030. {
  28031. name: "Normal",
  28032. height: math.unit(5 + 6 / 12, "feet"),
  28033. default: true
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28039. {
  28040. front: {
  28041. height: math.unit(5 + 9 / 12, "feet"),
  28042. weight: math.unit(130, "lb"),
  28043. name: "Front",
  28044. image: {
  28045. source: "./media/characters/cecelia-swift/front.svg",
  28046. extra: 502 / 484,
  28047. bottom: 23 / 523
  28048. }
  28049. },
  28050. back: {
  28051. height: math.unit(5 + 9 / 12, "feet"),
  28052. weight: math.unit(130, "lb"),
  28053. name: "Back",
  28054. image: {
  28055. source: "./media/characters/cecelia-swift/back.svg",
  28056. extra: 499 / 485,
  28057. bottom: 12 / 511
  28058. }
  28059. },
  28060. head: {
  28061. height: math.unit(0.90, "feet"),
  28062. name: "Head",
  28063. image: {
  28064. source: "./media/characters/cecelia-swift/head.svg"
  28065. }
  28066. },
  28067. rump: {
  28068. height: math.unit(1.75, "feet"),
  28069. name: "Rump",
  28070. image: {
  28071. source: "./media/characters/cecelia-swift/rump.svg"
  28072. }
  28073. },
  28074. },
  28075. [
  28076. {
  28077. name: "Normal",
  28078. height: math.unit(5 + 9 / 12, "feet"),
  28079. default: true
  28080. },
  28081. {
  28082. name: "Big",
  28083. height: math.unit(50, "feet")
  28084. },
  28085. {
  28086. name: "Macro",
  28087. height: math.unit(100, "feet")
  28088. },
  28089. {
  28090. name: "Macro+",
  28091. height: math.unit(500, "feet")
  28092. },
  28093. {
  28094. name: "Macro++",
  28095. height: math.unit(1000, "feet")
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28101. {
  28102. front: {
  28103. height: math.unit(6, "feet"),
  28104. weight: math.unit(150, "lb"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/kaunan/front.svg",
  28108. extra: 2890 / 2523,
  28109. bottom: 49 / 2939
  28110. }
  28111. },
  28112. },
  28113. [
  28114. {
  28115. name: "Macro",
  28116. height: math.unit(150, "feet"),
  28117. default: true
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28123. {
  28124. front: {
  28125. height: math.unit(175, "cm"),
  28126. weight: math.unit(60, "kg"),
  28127. name: "Front",
  28128. image: {
  28129. source: "./media/characters/fei/front.svg",
  28130. extra: 1873/1723,
  28131. bottom: 53/1926
  28132. }
  28133. },
  28134. },
  28135. [
  28136. {
  28137. name: "Mortal",
  28138. height: math.unit(175, "cm")
  28139. },
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(3500, "m"),
  28143. default: true
  28144. },
  28145. {
  28146. name: "Stroll",
  28147. height: math.unit(17.5, "km")
  28148. },
  28149. {
  28150. name: "Showoff",
  28151. height: math.unit(175, "km")
  28152. },
  28153. ]
  28154. ))
  28155. characterMakers.push(() => makeCharacter(
  28156. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28157. {
  28158. front: {
  28159. height: math.unit(7, "feet"),
  28160. weight: math.unit(1000, "kg"),
  28161. name: "Front",
  28162. image: {
  28163. source: "./media/characters/edrax/front.svg",
  28164. extra: 2838 / 2550,
  28165. bottom: 130 / 2968
  28166. }
  28167. },
  28168. },
  28169. [
  28170. {
  28171. name: "Small",
  28172. height: math.unit(7, "feet")
  28173. },
  28174. {
  28175. name: "Normal",
  28176. height: math.unit(1500, "meters")
  28177. },
  28178. {
  28179. name: "Mega",
  28180. height: math.unit(12000000, "km"),
  28181. default: true
  28182. },
  28183. {
  28184. name: "Megamacro",
  28185. height: math.unit(10600000, "lightyears")
  28186. },
  28187. {
  28188. name: "Hypermacro",
  28189. height: math.unit(256, "yottameters")
  28190. },
  28191. ]
  28192. ))
  28193. characterMakers.push(() => makeCharacter(
  28194. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28195. {
  28196. front: {
  28197. height: math.unit(10, "feet"),
  28198. weight: math.unit(750, "lb"),
  28199. name: "Front",
  28200. image: {
  28201. source: "./media/characters/clove/front.svg",
  28202. extra: 1918/1751,
  28203. bottom: 52/1970
  28204. }
  28205. },
  28206. back: {
  28207. height: math.unit(10, "feet"),
  28208. weight: math.unit(750, "lb"),
  28209. name: "Back",
  28210. image: {
  28211. source: "./media/characters/clove/back.svg",
  28212. extra: 1912/1747,
  28213. bottom: 50/1962
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(10, "feet"),
  28221. default: true
  28222. },
  28223. ]
  28224. ))
  28225. characterMakers.push(() => makeCharacter(
  28226. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28227. {
  28228. front: {
  28229. height: math.unit(4, "feet"),
  28230. weight: math.unit(50, "lb"),
  28231. name: "Front",
  28232. image: {
  28233. source: "./media/characters/alex-rabbit/front.svg",
  28234. extra: 507 / 458,
  28235. bottom: 18.5 / 527
  28236. }
  28237. },
  28238. back: {
  28239. height: math.unit(4, "feet"),
  28240. weight: math.unit(50, "lb"),
  28241. name: "Back",
  28242. image: {
  28243. source: "./media/characters/alex-rabbit/back.svg",
  28244. extra: 502 / 460,
  28245. bottom: 18.9 / 521
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(4, "feet"),
  28253. default: true
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(1 + 3 / 12, "feet"),
  28262. weight: math.unit(80, "lb"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/zander-rose/front.svg",
  28266. extra: 916 / 797,
  28267. bottom: 17 / 933
  28268. }
  28269. },
  28270. back: {
  28271. height: math.unit(1 + 3 / 12, "feet"),
  28272. weight: math.unit(80, "lb"),
  28273. name: "Back",
  28274. image: {
  28275. source: "./media/characters/zander-rose/back.svg",
  28276. extra: 903 / 779,
  28277. bottom: 31 / 934
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Normal",
  28284. height: math.unit(1 + 3 / 12, "feet"),
  28285. default: true
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28291. {
  28292. anthro: {
  28293. height: math.unit(6, "feet"),
  28294. weight: math.unit(150, "lb"),
  28295. name: "Anthro",
  28296. image: {
  28297. source: "./media/characters/razz/anthro.svg",
  28298. extra: 1437 / 1343,
  28299. bottom: 48 / 1485
  28300. }
  28301. },
  28302. feral: {
  28303. height: math.unit(6, "feet"),
  28304. weight: math.unit(150, "lb"),
  28305. name: "Feral",
  28306. image: {
  28307. source: "./media/characters/razz/feral.svg",
  28308. extra: 2569 / 1385,
  28309. bottom: 95 / 2664
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(6, "feet"),
  28317. default: true
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28323. {
  28324. front: {
  28325. height: math.unit(9 + 4 / 12, "feet"),
  28326. weight: math.unit(500, "lb"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/morrigan/front.svg",
  28330. extra: 2707 / 2579,
  28331. bottom: 156 / 2863
  28332. }
  28333. },
  28334. },
  28335. [
  28336. {
  28337. name: "Normal",
  28338. height: math.unit(9 + 4 / 12, "feet"),
  28339. default: true
  28340. },
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28345. {
  28346. front: {
  28347. height: math.unit(5, "stories"),
  28348. weight: math.unit(4000, "lb"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/jenene/front.svg",
  28352. extra: 1780 / 1710,
  28353. bottom: 57 / 1837
  28354. }
  28355. },
  28356. },
  28357. [
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(5, "stories"),
  28361. default: true
  28362. },
  28363. ]
  28364. ))
  28365. characterMakers.push(() => makeCharacter(
  28366. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28367. {
  28368. taurSfw: {
  28369. height: math.unit(10, "meters"),
  28370. weight: math.unit(17500, "kg"),
  28371. name: "Taur",
  28372. image: {
  28373. source: "./media/characters/faey/taur-sfw.svg",
  28374. extra: 1200 / 968,
  28375. bottom: 41 / 1241
  28376. }
  28377. },
  28378. chestmaw: {
  28379. height: math.unit(2.01, "meters"),
  28380. name: "Chestmaw",
  28381. image: {
  28382. source: "./media/characters/faey/chestmaw.svg"
  28383. }
  28384. },
  28385. foot: {
  28386. height: math.unit(2.43, "meters"),
  28387. name: "Foot",
  28388. image: {
  28389. source: "./media/characters/faey/foot.svg"
  28390. }
  28391. },
  28392. jaws: {
  28393. height: math.unit(1.66, "meters"),
  28394. name: "Jaws",
  28395. image: {
  28396. source: "./media/characters/faey/jaws.svg"
  28397. }
  28398. },
  28399. tongues: {
  28400. height: math.unit(2.01, "meters"),
  28401. name: "Tongues",
  28402. image: {
  28403. source: "./media/characters/faey/tongues.svg"
  28404. }
  28405. },
  28406. },
  28407. [
  28408. {
  28409. name: "Small",
  28410. height: math.unit(10, "meters"),
  28411. default: true
  28412. },
  28413. {
  28414. name: "Big",
  28415. height: math.unit(500000, "km")
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28421. {
  28422. front: {
  28423. height: math.unit(7, "feet"),
  28424. weight: math.unit(275, "lb"),
  28425. name: "Front",
  28426. image: {
  28427. source: "./media/characters/roku/front.svg",
  28428. extra: 903 / 878,
  28429. bottom: 37 / 940
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Normal",
  28436. height: math.unit(7, "feet"),
  28437. default: true
  28438. },
  28439. {
  28440. name: "Macro",
  28441. height: math.unit(500, "feet")
  28442. },
  28443. {
  28444. name: "Megamacro",
  28445. height: math.unit(200, "miles")
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(6 + 2 / 12, "feet"),
  28454. weight: math.unit(150, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/lira/front.svg",
  28458. extra: 1727 / 1605,
  28459. bottom: 26 / 1753
  28460. }
  28461. },
  28462. back: {
  28463. height: math.unit(6 + 2 / 12, "feet"),
  28464. weight: math.unit(150, "lb"),
  28465. name: "Back",
  28466. image: {
  28467. source: "./media/characters/lira/back.svg",
  28468. extra: 1713/1621,
  28469. bottom: 20/1733
  28470. }
  28471. },
  28472. hand: {
  28473. height: math.unit(0.75, "feet"),
  28474. name: "Hand",
  28475. image: {
  28476. source: "./media/characters/lira/hand.svg"
  28477. }
  28478. },
  28479. maw: {
  28480. height: math.unit(0.65, "feet"),
  28481. name: "Maw",
  28482. image: {
  28483. source: "./media/characters/lira/maw.svg"
  28484. }
  28485. },
  28486. pawDigi: {
  28487. height: math.unit(1.6, "feet"),
  28488. name: "Paw Digi",
  28489. image: {
  28490. source: "./media/characters/lira/paw-digi.svg"
  28491. }
  28492. },
  28493. pawPlanti: {
  28494. height: math.unit(1.4, "feet"),
  28495. name: "Paw Planti",
  28496. image: {
  28497. source: "./media/characters/lira/paw-planti.svg"
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(6 + 2 / 12, "feet"),
  28505. default: true
  28506. },
  28507. {
  28508. name: "Macro",
  28509. height: math.unit(100, "feet")
  28510. },
  28511. {
  28512. name: "Macro²",
  28513. height: math.unit(1600, "feet")
  28514. },
  28515. {
  28516. name: "Planetary",
  28517. height: math.unit(20, "earths")
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(6, "feet"),
  28526. weight: math.unit(150, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/hadjet/front.svg",
  28530. extra: 1480 / 1346,
  28531. bottom: 26 / 1506
  28532. }
  28533. },
  28534. frontNsfw: {
  28535. height: math.unit(6, "feet"),
  28536. weight: math.unit(150, "lb"),
  28537. name: "Front (NSFW)",
  28538. image: {
  28539. source: "./media/characters/hadjet/front-nsfw.svg",
  28540. extra: 1440 / 1358,
  28541. bottom: 52 / 1492
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Macro",
  28548. height: math.unit(10, "stories"),
  28549. default: true
  28550. },
  28551. {
  28552. name: "Megamacro",
  28553. height: math.unit(1.5, "miles")
  28554. },
  28555. {
  28556. name: "Megamacro+",
  28557. height: math.unit(5, "miles")
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28563. {
  28564. side: {
  28565. height: math.unit(106, "feet"),
  28566. weight: math.unit(500, "tonnes"),
  28567. name: "Side",
  28568. image: {
  28569. source: "./media/characters/kodran/side.svg",
  28570. extra: 553 / 480,
  28571. bottom: 33 / 586
  28572. }
  28573. },
  28574. front: {
  28575. height: math.unit(132, "feet"),
  28576. weight: math.unit(500, "tonnes"),
  28577. name: "Front",
  28578. image: {
  28579. source: "./media/characters/kodran/front.svg",
  28580. extra: 667 / 643,
  28581. bottom: 42 / 709
  28582. }
  28583. },
  28584. flying: {
  28585. height: math.unit(350, "feet"),
  28586. weight: math.unit(500, "tonnes"),
  28587. name: "Flying",
  28588. image: {
  28589. source: "./media/characters/kodran/flying.svg"
  28590. }
  28591. },
  28592. foot: {
  28593. height: math.unit(33, "feet"),
  28594. name: "Foot",
  28595. image: {
  28596. source: "./media/characters/kodran/foot.svg"
  28597. }
  28598. },
  28599. footFront: {
  28600. height: math.unit(19, "feet"),
  28601. name: "Foot (Front)",
  28602. image: {
  28603. source: "./media/characters/kodran/foot-front.svg",
  28604. extra: 261 / 261,
  28605. bottom: 91 / 352
  28606. }
  28607. },
  28608. headFront: {
  28609. height: math.unit(53, "feet"),
  28610. name: "Head (Front)",
  28611. image: {
  28612. source: "./media/characters/kodran/head-front.svg"
  28613. }
  28614. },
  28615. headSide: {
  28616. height: math.unit(65, "feet"),
  28617. name: "Head (Side)",
  28618. image: {
  28619. source: "./media/characters/kodran/head-side.svg"
  28620. }
  28621. },
  28622. throat: {
  28623. height: math.unit(79, "feet"),
  28624. name: "Throat",
  28625. image: {
  28626. source: "./media/characters/kodran/throat.svg"
  28627. }
  28628. },
  28629. },
  28630. [
  28631. {
  28632. name: "Large",
  28633. height: math.unit(106, "feet"),
  28634. default: true
  28635. },
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28640. {
  28641. side: {
  28642. height: math.unit(11, "feet"),
  28643. weight: math.unit(150, "lb"),
  28644. name: "Side",
  28645. image: {
  28646. source: "./media/characters/pyxaron/side.svg",
  28647. extra: 305 / 195,
  28648. bottom: 17 / 322
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(11, "feet"),
  28656. default: true
  28657. },
  28658. ]
  28659. ))
  28660. characterMakers.push(() => makeCharacter(
  28661. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28662. {
  28663. front: {
  28664. height: math.unit(6, "feet"),
  28665. weight: math.unit(150, "lb"),
  28666. name: "Front",
  28667. image: {
  28668. source: "./media/characters/meep/front.svg",
  28669. extra: 88 / 80,
  28670. bottom: 6 / 94
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Fun Sized",
  28677. height: math.unit(2, "inches"),
  28678. default: true
  28679. },
  28680. {
  28681. name: "Friend Sized",
  28682. height: math.unit(8, "inches")
  28683. },
  28684. ]
  28685. ))
  28686. characterMakers.push(() => makeCharacter(
  28687. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28688. {
  28689. front: {
  28690. height: math.unit(15, "feet"),
  28691. weight: math.unit(2500, "lb"),
  28692. name: "Front",
  28693. image: {
  28694. source: "./media/characters/holly-rabbit/front.svg",
  28695. extra: 1433 / 1233,
  28696. bottom: 125 / 1558
  28697. }
  28698. },
  28699. dick: {
  28700. height: math.unit(4.6, "feet"),
  28701. name: "Dick",
  28702. image: {
  28703. source: "./media/characters/holly-rabbit/dick.svg"
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Normal",
  28710. height: math.unit(15, "feet"),
  28711. default: true
  28712. },
  28713. {
  28714. name: "Macro",
  28715. height: math.unit(250, "feet")
  28716. },
  28717. {
  28718. name: "Macro+",
  28719. height: math.unit(2500, "feet")
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(3.02, "meters"),
  28728. weight: math.unit(500, "kg"),
  28729. name: "Front",
  28730. image: {
  28731. source: "./media/characters/drena/front.svg",
  28732. extra: 282 / 243,
  28733. bottom: 8 / 290
  28734. }
  28735. },
  28736. side: {
  28737. height: math.unit(3.02, "meters"),
  28738. weight: math.unit(500, "kg"),
  28739. name: "Side",
  28740. image: {
  28741. source: "./media/characters/drena/side.svg",
  28742. extra: 280 / 245,
  28743. bottom: 10 / 290
  28744. }
  28745. },
  28746. back: {
  28747. height: math.unit(3.02, "meters"),
  28748. weight: math.unit(500, "kg"),
  28749. name: "Back",
  28750. image: {
  28751. source: "./media/characters/drena/back.svg",
  28752. extra: 278 / 243,
  28753. bottom: 2 / 280
  28754. }
  28755. },
  28756. foot: {
  28757. height: math.unit(0.75, "meters"),
  28758. name: "Foot",
  28759. image: {
  28760. source: "./media/characters/drena/foot.svg"
  28761. }
  28762. },
  28763. maw: {
  28764. height: math.unit(0.82, "meters"),
  28765. name: "Maw",
  28766. image: {
  28767. source: "./media/characters/drena/maw.svg"
  28768. }
  28769. },
  28770. rump: {
  28771. height: math.unit(0.93, "meters"),
  28772. name: "Rump",
  28773. image: {
  28774. source: "./media/characters/drena/rump.svg"
  28775. }
  28776. },
  28777. },
  28778. [
  28779. {
  28780. name: "Normal",
  28781. height: math.unit(3.02, "meters"),
  28782. default: true
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28788. {
  28789. front: {
  28790. height: math.unit(6 + 4 / 12, "feet"),
  28791. weight: math.unit(250, "lb"),
  28792. name: "Front",
  28793. image: {
  28794. source: "./media/characters/remmyzilla/front.svg",
  28795. extra: 4033 / 3588,
  28796. bottom: 123 / 4156
  28797. }
  28798. },
  28799. back: {
  28800. height: math.unit(6 + 4 / 12, "feet"),
  28801. weight: math.unit(250, "lb"),
  28802. name: "Back",
  28803. image: {
  28804. source: "./media/characters/remmyzilla/back.svg",
  28805. extra: 2687 / 2555,
  28806. bottom: 48 / 2735
  28807. }
  28808. },
  28809. paw: {
  28810. height: math.unit(1.73, "feet"),
  28811. name: "Paw",
  28812. image: {
  28813. source: "./media/characters/remmyzilla/paw.svg"
  28814. }
  28815. },
  28816. maw: {
  28817. height: math.unit(1.73, "feet"),
  28818. name: "Maw",
  28819. image: {
  28820. source: "./media/characters/remmyzilla/maw.svg"
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(6 + 4 / 12, "feet")
  28828. },
  28829. {
  28830. name: "Minimacro",
  28831. height: math.unit(12 + 8 / 12, "feet")
  28832. },
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(640, "feet"),
  28836. default: true
  28837. },
  28838. {
  28839. name: "Megamacro",
  28840. height: math.unit(6400, "feet")
  28841. },
  28842. {
  28843. name: "Gigamacro",
  28844. height: math.unit(64000, "miles")
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(2.5, "meters"),
  28853. weight: math.unit(300, "lb"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/lawrence/front.svg",
  28857. extra: 357 / 335,
  28858. bottom: 30 / 387
  28859. }
  28860. },
  28861. back: {
  28862. height: math.unit(2.5, "meters"),
  28863. weight: math.unit(300, "lb"),
  28864. name: "Back",
  28865. image: {
  28866. source: "./media/characters/lawrence/back.svg",
  28867. extra: 357 / 338,
  28868. bottom: 16 / 373
  28869. }
  28870. },
  28871. head: {
  28872. height: math.unit(0.9, "meter"),
  28873. name: "Head",
  28874. image: {
  28875. source: "./media/characters/lawrence/head.svg"
  28876. }
  28877. },
  28878. maw: {
  28879. height: math.unit(0.7, "meter"),
  28880. name: "Maw",
  28881. image: {
  28882. source: "./media/characters/lawrence/maw.svg"
  28883. }
  28884. },
  28885. footBottom: {
  28886. height: math.unit(0.5, "meter"),
  28887. name: "Foot (Bottom)",
  28888. image: {
  28889. source: "./media/characters/lawrence/foot-bottom.svg"
  28890. }
  28891. },
  28892. footTop: {
  28893. height: math.unit(0.5, "meter"),
  28894. name: "Foot (Top)",
  28895. image: {
  28896. source: "./media/characters/lawrence/foot-top.svg"
  28897. }
  28898. },
  28899. },
  28900. [
  28901. {
  28902. name: "Normal",
  28903. height: math.unit(2.5, "meters"),
  28904. default: true
  28905. },
  28906. {
  28907. name: "Macro",
  28908. height: math.unit(95, "meters")
  28909. },
  28910. {
  28911. name: "Megamacro",
  28912. height: math.unit(150, "km")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28918. {
  28919. front: {
  28920. height: math.unit(4.2, "meters"),
  28921. name: "Front",
  28922. image: {
  28923. source: "./media/characters/sydney/front.svg",
  28924. extra: 1323 / 1277,
  28925. bottom: 111 / 1434
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(4.2, "meters"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28939. {
  28940. back: {
  28941. height: math.unit(201, "feet"),
  28942. name: "Back",
  28943. image: {
  28944. source: "./media/characters/jessica/back.svg",
  28945. extra: 273 / 259,
  28946. bottom: 7 / 280
  28947. }
  28948. },
  28949. },
  28950. [
  28951. {
  28952. name: "Normal",
  28953. height: math.unit(201, "feet"),
  28954. default: true
  28955. },
  28956. {
  28957. name: "Megamacro",
  28958. height: math.unit(8, "miles")
  28959. },
  28960. ]
  28961. ))
  28962. characterMakers.push(() => makeCharacter(
  28963. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28964. {
  28965. side: {
  28966. height: math.unit(5.6, "m"),
  28967. weight: math.unit(8000, "kg"),
  28968. name: "Side",
  28969. image: {
  28970. source: "./media/characters/victoria/side.svg",
  28971. extra: 1542/1229,
  28972. bottom: 124/1666
  28973. }
  28974. },
  28975. maw: {
  28976. height: math.unit(7.14, "feet"),
  28977. name: "Maw",
  28978. image: {
  28979. source: "./media/characters/victoria/maw.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(5.6, "m"),
  28987. default: true
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28993. {
  28994. front: {
  28995. height: math.unit(5 + 6 / 12, "feet"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/cat/front.svg",
  28999. extra: 1449/1295,
  29000. bottom: 34/1483
  29001. }
  29002. },
  29003. back: {
  29004. height: math.unit(5 + 6 / 12, "feet"),
  29005. name: "Back",
  29006. image: {
  29007. source: "./media/characters/cat/back.svg",
  29008. extra: 1466/1301,
  29009. bottom: 19/1485
  29010. }
  29011. },
  29012. taur: {
  29013. height: math.unit(7, "feet"),
  29014. name: "Taur",
  29015. image: {
  29016. source: "./media/characters/cat/taur.svg",
  29017. extra: 1389/1233,
  29018. bottom: 83/1472
  29019. }
  29020. },
  29021. lucarioFront: {
  29022. height: math.unit(4, "feet"),
  29023. name: "Lucario (Front)",
  29024. image: {
  29025. source: "./media/characters/cat/lucario-front.svg",
  29026. extra: 1149/1019,
  29027. bottom: 84/1233
  29028. }
  29029. },
  29030. lucarioBack: {
  29031. height: math.unit(4, "feet"),
  29032. name: "Lucario (Back)",
  29033. image: {
  29034. source: "./media/characters/cat/lucario-back.svg",
  29035. extra: 1190/1059,
  29036. bottom: 33/1223
  29037. }
  29038. },
  29039. megaLucario: {
  29040. height: math.unit(4, "feet"),
  29041. name: "Mega Lucario",
  29042. image: {
  29043. source: "./media/characters/cat/mega-lucario.svg",
  29044. extra: 1515 / 1319,
  29045. bottom: 63 / 1578
  29046. }
  29047. },
  29048. nickit: {
  29049. height: math.unit(2, "feet"),
  29050. name: "Nickit",
  29051. image: {
  29052. source: "./media/characters/cat/nickit.svg",
  29053. extra: 1980 / 1585,
  29054. bottom: 102 / 2082
  29055. }
  29056. },
  29057. lopunnyFront: {
  29058. height: math.unit(5, "feet"),
  29059. name: "Lopunny (Front)",
  29060. image: {
  29061. source: "./media/characters/cat/lopunny-front.svg",
  29062. extra: 1782 / 1469,
  29063. bottom: 38 / 1820
  29064. }
  29065. },
  29066. lopunnyBack: {
  29067. height: math.unit(5, "feet"),
  29068. name: "Lopunny (Back)",
  29069. image: {
  29070. source: "./media/characters/cat/lopunny-back.svg",
  29071. extra: 1660 / 1490,
  29072. bottom: 25 / 1685
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Really small",
  29079. height: math.unit(1, "nm")
  29080. },
  29081. {
  29082. name: "Micro",
  29083. height: math.unit(5, "inches")
  29084. },
  29085. {
  29086. name: "Normal",
  29087. height: math.unit(5 + 6 / 12, "feet"),
  29088. default: true
  29089. },
  29090. {
  29091. name: "Macro",
  29092. height: math.unit(50, "feet")
  29093. },
  29094. {
  29095. name: "Macro+",
  29096. height: math.unit(150, "feet")
  29097. },
  29098. {
  29099. name: "Megamacro",
  29100. height: math.unit(100, "miles")
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(63.4, "meters"),
  29109. weight: math.unit(3.28349e+6, "kilograms"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/kirina-violet/front.svg",
  29113. extra: 2812 / 2725,
  29114. bottom: 0 / 2812
  29115. }
  29116. },
  29117. back: {
  29118. height: math.unit(63.4, "meters"),
  29119. weight: math.unit(3.28349e+6, "kilograms"),
  29120. name: "Back",
  29121. image: {
  29122. source: "./media/characters/kirina-violet/back.svg",
  29123. extra: 2812 / 2725,
  29124. bottom: 0 / 2812
  29125. }
  29126. },
  29127. mouth: {
  29128. height: math.unit(4.35, "meters"),
  29129. name: "Mouth",
  29130. image: {
  29131. source: "./media/characters/kirina-violet/mouth.svg"
  29132. }
  29133. },
  29134. paw: {
  29135. height: math.unit(5.6, "meters"),
  29136. name: "Paw",
  29137. image: {
  29138. source: "./media/characters/kirina-violet/paw.svg"
  29139. }
  29140. },
  29141. tail: {
  29142. height: math.unit(18, "meters"),
  29143. name: "Tail",
  29144. image: {
  29145. source: "./media/characters/kirina-violet/tail.svg"
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Macro",
  29152. height: math.unit(63.4, "meters"),
  29153. default: true
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(75, "feet"),
  29162. name: "Front",
  29163. image: {
  29164. source: "./media/characters/cat-gigachu/front.svg",
  29165. extra: 1239/1027,
  29166. bottom: 32/1271
  29167. }
  29168. },
  29169. back: {
  29170. height: math.unit(75, "feet"),
  29171. name: "Back",
  29172. image: {
  29173. source: "./media/characters/cat-gigachu/back.svg",
  29174. extra: 1229/1030,
  29175. bottom: 9/1238
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Dynamax",
  29182. height: math.unit(75, "feet"),
  29183. default: true
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(6, "feet"),
  29192. weight: math.unit(150, "lb"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/sfaiyan/front.svg",
  29196. extra: 999 / 978,
  29197. bottom: 5 / 1004
  29198. }
  29199. },
  29200. },
  29201. [
  29202. {
  29203. name: "Normal",
  29204. height: math.unit(1.82, "meters")
  29205. },
  29206. {
  29207. name: "Giant",
  29208. height: math.unit(2.27, "km"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(179, "cm"),
  29218. weight: math.unit(100, "kg"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/raunehkeli/front.svg",
  29222. extra: 1934 / 1926,
  29223. bottom: 0 / 1934
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Normal",
  29230. height: math.unit(179, "cm")
  29231. },
  29232. {
  29233. name: "Maximum",
  29234. height: math.unit(575, "meters"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(6, "feet"),
  29244. weight: math.unit(150, "lb"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29248. extra: 2625 / 2518,
  29249. bottom: 60 / 2685
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(6 + 2 / 12, "feet")
  29257. },
  29258. {
  29259. name: "Macro",
  29260. height: math.unit(1180, "feet"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(5 + 6 / 12, "feet"),
  29270. weight: math.unit(108, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/lilith-zott/front.svg",
  29274. extra: 2510 / 2238,
  29275. bottom: 100 / 2610
  29276. }
  29277. },
  29278. frontDressed: {
  29279. height: math.unit(5 + 6 / 12, "feet"),
  29280. weight: math.unit(108, "lb"),
  29281. name: "Front (Dressed)",
  29282. image: {
  29283. source: "./media/characters/lilith-zott/front-dressed.svg",
  29284. extra: 2510 / 2238,
  29285. bottom: 100 / 2610
  29286. }
  29287. },
  29288. },
  29289. [
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(5 + 6 / 12, "feet")
  29293. },
  29294. {
  29295. name: "Macro",
  29296. height: math.unit(1030, "feet"),
  29297. default: true
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29303. {
  29304. front: {
  29305. height: math.unit(6, "feet"),
  29306. weight: math.unit(150, "lb"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29310. extra: 2567 / 2435,
  29311. bottom: 39 / 2606
  29312. }
  29313. },
  29314. frontSuper: {
  29315. height: math.unit(6, "feet"),
  29316. name: "Front (Super)",
  29317. image: {
  29318. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29319. extra: 2567 / 2435,
  29320. bottom: 39 / 2606
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(5 + 10 / 12, "feet")
  29328. },
  29329. {
  29330. name: "Macro",
  29331. height: math.unit(1100, "feet"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(100, "miles"),
  29341. name: "Front",
  29342. image: {
  29343. source: "./media/characters/sona/front.svg",
  29344. extra: 2433 / 2201,
  29345. bottom: 53 / 2486
  29346. }
  29347. },
  29348. foot: {
  29349. height: math.unit(16.1, "miles"),
  29350. name: "Foot",
  29351. image: {
  29352. source: "./media/characters/sona/foot.svg"
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Macro",
  29359. height: math.unit(100, "miles"),
  29360. default: true
  29361. },
  29362. ]
  29363. ))
  29364. characterMakers.push(() => makeCharacter(
  29365. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29366. {
  29367. front: {
  29368. height: math.unit(6, "feet"),
  29369. weight: math.unit(150, "lb"),
  29370. name: "Front",
  29371. image: {
  29372. source: "./media/characters/bailey/front.svg",
  29373. extra: 1778 / 1724,
  29374. bottom: 30 / 1808
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "Micro",
  29381. height: math.unit(4, "inches")
  29382. },
  29383. {
  29384. name: "Normal",
  29385. height: math.unit(5 + 5 / 12, "feet"),
  29386. default: true
  29387. },
  29388. {
  29389. name: "Macro",
  29390. height: math.unit(250, "feet")
  29391. },
  29392. {
  29393. name: "Megamacro",
  29394. height: math.unit(100, "miles")
  29395. },
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29400. {
  29401. front: {
  29402. height: math.unit(5 + 2 / 12, "feet"),
  29403. weight: math.unit(120, "lb"),
  29404. name: "Front",
  29405. image: {
  29406. source: "./media/characters/snaps/front.svg",
  29407. extra: 2370 / 2177,
  29408. bottom: 48 / 2418
  29409. }
  29410. },
  29411. back: {
  29412. height: math.unit(5 + 2 / 12, "feet"),
  29413. weight: math.unit(120, "lb"),
  29414. name: "Back",
  29415. image: {
  29416. source: "./media/characters/snaps/back.svg",
  29417. extra: 2408 / 2258,
  29418. bottom: 15 / 2423
  29419. }
  29420. },
  29421. },
  29422. [
  29423. {
  29424. name: "Micro",
  29425. height: math.unit(9, "inches")
  29426. },
  29427. {
  29428. name: "Normal",
  29429. height: math.unit(5 + 2 / 12, "feet"),
  29430. default: true
  29431. },
  29432. {
  29433. name: "Mini Macro",
  29434. height: math.unit(10, "feet")
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29440. {
  29441. front: {
  29442. height: math.unit(1.8, "meters"),
  29443. weight: math.unit(85, "kg"),
  29444. name: "Front",
  29445. image: {
  29446. source: "./media/characters/azteck/front.svg",
  29447. extra: 2815 / 2625,
  29448. bottom: 89 / 2904
  29449. }
  29450. },
  29451. back: {
  29452. height: math.unit(1.8, "meters"),
  29453. weight: math.unit(85, "kg"),
  29454. name: "Back",
  29455. image: {
  29456. source: "./media/characters/azteck/back.svg",
  29457. extra: 2856 / 2648,
  29458. bottom: 85 / 2941
  29459. }
  29460. },
  29461. frontDressed: {
  29462. height: math.unit(1.8, "meters"),
  29463. weight: math.unit(85, "kg"),
  29464. name: "Front (Dressed)",
  29465. image: {
  29466. source: "./media/characters/azteck/front-dressed.svg",
  29467. extra: 2147 / 2003,
  29468. bottom: 68 / 2215
  29469. }
  29470. },
  29471. head: {
  29472. height: math.unit(0.47, "meters"),
  29473. weight: math.unit(85, "kg"),
  29474. name: "Head",
  29475. image: {
  29476. source: "./media/characters/azteck/head.svg"
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Bite sized",
  29483. height: math.unit(16, "cm")
  29484. },
  29485. {
  29486. name: "Normal",
  29487. height: math.unit(1.8, "meters"),
  29488. default: true
  29489. },
  29490. ]
  29491. ))
  29492. characterMakers.push(() => makeCharacter(
  29493. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29494. {
  29495. front: {
  29496. height: math.unit(6, "feet"),
  29497. weight: math.unit(150, "lb"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/pidge/front.svg",
  29501. extra: 620 / 588,
  29502. bottom: 9 / 629
  29503. }
  29504. },
  29505. back: {
  29506. height: math.unit(6, "feet"),
  29507. weight: math.unit(150, "lb"),
  29508. name: "Back",
  29509. image: {
  29510. source: "./media/characters/pidge/back.svg",
  29511. extra: 620 / 588,
  29512. bottom: 9 / 629
  29513. }
  29514. },
  29515. },
  29516. [
  29517. {
  29518. name: "Macro",
  29519. height: math.unit(1, "mile"),
  29520. default: true
  29521. },
  29522. ]
  29523. ))
  29524. characterMakers.push(() => makeCharacter(
  29525. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29526. {
  29527. front: {
  29528. height: math.unit(6, "feet"),
  29529. weight: math.unit(150, "lb"),
  29530. name: "Front",
  29531. image: {
  29532. source: "./media/characters/en/front.svg",
  29533. extra: 1697 / 1563,
  29534. bottom: 103 / 1800
  29535. }
  29536. },
  29537. back: {
  29538. height: math.unit(6, "feet"),
  29539. weight: math.unit(150, "lb"),
  29540. name: "Back",
  29541. image: {
  29542. source: "./media/characters/en/back.svg",
  29543. extra: 1700 / 1570,
  29544. bottom: 51 / 1751
  29545. }
  29546. },
  29547. frontDressed: {
  29548. height: math.unit(6, "feet"),
  29549. weight: math.unit(150, "lb"),
  29550. name: "Front (Dressed)",
  29551. image: {
  29552. source: "./media/characters/en/front-dressed.svg",
  29553. extra: 1697 / 1563,
  29554. bottom: 103 / 1800
  29555. }
  29556. },
  29557. backDressed: {
  29558. height: math.unit(6, "feet"),
  29559. weight: math.unit(150, "lb"),
  29560. name: "Back (Dressed)",
  29561. image: {
  29562. source: "./media/characters/en/back-dressed.svg",
  29563. extra: 1700 / 1570,
  29564. bottom: 51 / 1751
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Macro",
  29571. height: math.unit(210, "feet"),
  29572. default: true
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29578. {
  29579. front: {
  29580. height: math.unit(6, "feet"),
  29581. weight: math.unit(150, "lb"),
  29582. name: "Front",
  29583. image: {
  29584. source: "./media/characters/haze-orris/front.svg",
  29585. extra: 3975 / 3525,
  29586. bottom: 137 / 4112
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Micro",
  29593. height: math.unit(150, "mm"),
  29594. default: true
  29595. },
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29600. {
  29601. front: {
  29602. height: math.unit(6, "feet"),
  29603. weight: math.unit(150, "lb"),
  29604. name: "Front",
  29605. image: {
  29606. source: "./media/characters/casselene-yaro/front.svg",
  29607. extra: 4721 / 4541,
  29608. bottom: 82 / 4803
  29609. }
  29610. },
  29611. back: {
  29612. height: math.unit(6, "feet"),
  29613. weight: math.unit(150, "lb"),
  29614. name: "Back",
  29615. image: {
  29616. source: "./media/characters/casselene-yaro/back.svg",
  29617. extra: 4569 / 4377,
  29618. bottom: 69 / 4638
  29619. }
  29620. },
  29621. frontDressed: {
  29622. height: math.unit(6, "feet"),
  29623. weight: math.unit(150, "lb"),
  29624. name: "Front-dressed",
  29625. image: {
  29626. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29627. extra: 4721 / 4541,
  29628. bottom: 82 / 4803
  29629. }
  29630. },
  29631. },
  29632. [
  29633. {
  29634. name: "Macro",
  29635. height: math.unit(190, "feet"),
  29636. default: true
  29637. },
  29638. ]
  29639. ))
  29640. characterMakers.push(() => makeCharacter(
  29641. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29642. {
  29643. front: {
  29644. height: math.unit(6, "feet"),
  29645. weight: math.unit(150, "lb"),
  29646. name: "Front",
  29647. image: {
  29648. source: "./media/characters/myra-rue-delore/front.svg",
  29649. extra: 1340 / 1308,
  29650. bottom: 67 / 1407
  29651. }
  29652. },
  29653. back: {
  29654. height: math.unit(6, "feet"),
  29655. weight: math.unit(150, "lb"),
  29656. name: "Back",
  29657. image: {
  29658. source: "./media/characters/myra-rue-delore/back.svg",
  29659. extra: 1341 / 1310,
  29660. bottom: 40 / 1381
  29661. }
  29662. },
  29663. frontDressed: {
  29664. height: math.unit(6, "feet"),
  29665. weight: math.unit(150, "lb"),
  29666. name: "Front (Dressed)",
  29667. image: {
  29668. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29669. extra: 1340 / 1308,
  29670. bottom: 67 / 1407
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Macro",
  29677. height: math.unit(150, "feet"),
  29678. default: true
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(10, "feet"),
  29687. weight: math.unit(15015, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/fem!plat/front.svg",
  29691. extra: 2799 / 2604,
  29692. bottom: 149 / 2948
  29693. }
  29694. },
  29695. },
  29696. [
  29697. {
  29698. name: "Normal",
  29699. height: math.unit(10, "feet"),
  29700. default: true
  29701. },
  29702. {
  29703. name: "Macro",
  29704. height: math.unit(100, "feet")
  29705. },
  29706. {
  29707. name: "Megamacro",
  29708. height: math.unit(1000, "feet")
  29709. },
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29714. {
  29715. front: {
  29716. height: math.unit(15 + 5 / 12, "feet"),
  29717. weight: math.unit(4600, "lb"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/neapolitan-ananassa/front.svg",
  29721. extra: 2903 / 2736,
  29722. bottom: 0 / 2903
  29723. }
  29724. },
  29725. side: {
  29726. height: math.unit(15 + 5 / 12, "feet"),
  29727. weight: math.unit(4600, "lb"),
  29728. name: "Side",
  29729. image: {
  29730. source: "./media/characters/neapolitan-ananassa/side.svg",
  29731. extra: 2925 / 2719,
  29732. bottom: 0 / 2925
  29733. }
  29734. },
  29735. back: {
  29736. height: math.unit(15 + 5 / 12, "feet"),
  29737. weight: math.unit(4600, "lb"),
  29738. name: "Back",
  29739. image: {
  29740. source: "./media/characters/neapolitan-ananassa/back.svg",
  29741. extra: 2903 / 2736,
  29742. bottom: 0 / 2903
  29743. }
  29744. },
  29745. },
  29746. [
  29747. {
  29748. name: "Normal",
  29749. height: math.unit(15 + 5 / 12, "feet"),
  29750. default: true
  29751. },
  29752. {
  29753. name: "Post-Millenium",
  29754. height: math.unit(35 + 5 / 12, "feet")
  29755. },
  29756. {
  29757. name: "Post-Era",
  29758. height: math.unit(450 + 5 / 12, "feet")
  29759. },
  29760. ]
  29761. ))
  29762. characterMakers.push(() => makeCharacter(
  29763. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29764. {
  29765. front: {
  29766. height: math.unit(300, "meters"),
  29767. weight: math.unit(125000, "tonnes"),
  29768. name: "Front",
  29769. image: {
  29770. source: "./media/characters/pazuzu/front.svg",
  29771. extra: 877 / 794,
  29772. bottom: 47 / 924
  29773. }
  29774. },
  29775. },
  29776. [
  29777. {
  29778. name: "Macro",
  29779. height: math.unit(300, "meters"),
  29780. default: true
  29781. },
  29782. ]
  29783. ))
  29784. characterMakers.push(() => makeCharacter(
  29785. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29786. {
  29787. side: {
  29788. height: math.unit(10 + 7 / 12, "feet"),
  29789. weight: math.unit(2.5, "tons"),
  29790. name: "Side",
  29791. image: {
  29792. source: "./media/characters/aasha/side.svg",
  29793. extra: 1345 / 1245,
  29794. bottom: 111 / 1456
  29795. }
  29796. },
  29797. back: {
  29798. height: math.unit(10 + 7 / 12, "feet"),
  29799. weight: math.unit(2.5, "tons"),
  29800. name: "Back",
  29801. image: {
  29802. source: "./media/characters/aasha/back.svg",
  29803. extra: 1133 / 1057,
  29804. bottom: 257 / 1390
  29805. }
  29806. },
  29807. },
  29808. [
  29809. {
  29810. name: "Normal",
  29811. height: math.unit(10 + 7 / 12, "feet"),
  29812. default: true
  29813. },
  29814. ]
  29815. ))
  29816. characterMakers.push(() => makeCharacter(
  29817. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29818. {
  29819. front: {
  29820. height: math.unit(6 + 3 / 12, "feet"),
  29821. name: "Front",
  29822. image: {
  29823. source: "./media/characters/nevan/front.svg",
  29824. extra: 704 / 704,
  29825. bottom: 28 / 732
  29826. }
  29827. },
  29828. back: {
  29829. height: math.unit(6 + 3 / 12, "feet"),
  29830. name: "Back",
  29831. image: {
  29832. source: "./media/characters/nevan/back.svg",
  29833. extra: 714 / 714,
  29834. bottom: 21 / 735
  29835. }
  29836. },
  29837. frontFlaccid: {
  29838. height: math.unit(6 + 3 / 12, "feet"),
  29839. name: "Front (Flaccid)",
  29840. image: {
  29841. source: "./media/characters/nevan/front-flaccid.svg",
  29842. extra: 704 / 704,
  29843. bottom: 28 / 732
  29844. }
  29845. },
  29846. frontErect: {
  29847. height: math.unit(6 + 3 / 12, "feet"),
  29848. name: "Front (Erect)",
  29849. image: {
  29850. source: "./media/characters/nevan/front-erect.svg",
  29851. extra: 704 / 704,
  29852. bottom: 28 / 732
  29853. }
  29854. },
  29855. backFlaccid: {
  29856. height: math.unit(6 + 3 / 12, "feet"),
  29857. name: "Back (Flaccid)",
  29858. image: {
  29859. source: "./media/characters/nevan/back-flaccid.svg",
  29860. extra: 714 / 714,
  29861. bottom: 21 / 735
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(6 + 3 / 12, "feet"),
  29869. default: true
  29870. },
  29871. ]
  29872. ))
  29873. characterMakers.push(() => makeCharacter(
  29874. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29875. {
  29876. front: {
  29877. height: math.unit(4, "feet"),
  29878. name: "Front",
  29879. image: {
  29880. source: "./media/characters/arhan/front.svg",
  29881. extra: 3368 / 3133,
  29882. bottom: 0 / 3368
  29883. }
  29884. },
  29885. side: {
  29886. height: math.unit(4, "feet"),
  29887. name: "Side",
  29888. image: {
  29889. source: "./media/characters/arhan/side.svg",
  29890. extra: 3347 / 3105,
  29891. bottom: 0 / 3347
  29892. }
  29893. },
  29894. tongue: {
  29895. height: math.unit(1.42, "feet"),
  29896. name: "Tongue",
  29897. image: {
  29898. source: "./media/characters/arhan/tongue.svg"
  29899. }
  29900. },
  29901. head: {
  29902. height: math.unit(0.85, "feet"),
  29903. name: "Head",
  29904. image: {
  29905. source: "./media/characters/arhan/head.svg"
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(4, "feet"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(5 + 7.5 / 12, "feet"),
  29922. weight: math.unit(120, "lb"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/digi-duncan/front.svg",
  29926. extra: 330 / 326,
  29927. bottom: 16 / 346
  29928. }
  29929. },
  29930. side: {
  29931. height: math.unit(5 + 7.5 / 12, "feet"),
  29932. weight: math.unit(120, "lb"),
  29933. name: "Side",
  29934. image: {
  29935. source: "./media/characters/digi-duncan/side.svg",
  29936. extra: 341 / 337,
  29937. bottom: 1 / 342
  29938. }
  29939. },
  29940. back: {
  29941. height: math.unit(5 + 7.5 / 12, "feet"),
  29942. weight: math.unit(120, "lb"),
  29943. name: "Back",
  29944. image: {
  29945. source: "./media/characters/digi-duncan/back.svg",
  29946. extra: 330 / 326,
  29947. bottom: 12 / 342
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Speck",
  29954. height: math.unit(0.25, "mm")
  29955. },
  29956. {
  29957. name: "Micro",
  29958. height: math.unit(5, "mm")
  29959. },
  29960. {
  29961. name: "Tiny",
  29962. height: math.unit(0.5, "inches"),
  29963. default: true
  29964. },
  29965. {
  29966. name: "Human",
  29967. height: math.unit(5 + 7.5 / 12, "feet")
  29968. },
  29969. {
  29970. name: "Minigiant",
  29971. height: math.unit(8 + 5.25, "feet")
  29972. },
  29973. {
  29974. name: "Giant",
  29975. height: math.unit(2000, "feet")
  29976. },
  29977. {
  29978. name: "Mega",
  29979. height: math.unit(371.1, "miles")
  29980. },
  29981. ]
  29982. ))
  29983. characterMakers.push(() => makeCharacter(
  29984. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29985. {
  29986. front: {
  29987. height: math.unit(2, "meters"),
  29988. weight: math.unit(350, "kg"),
  29989. name: "Front",
  29990. image: {
  29991. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29992. extra: 898 / 838,
  29993. bottom: 9 / 907
  29994. }
  29995. },
  29996. },
  29997. [
  29998. {
  29999. name: "Micro",
  30000. height: math.unit(8, "meters")
  30001. },
  30002. {
  30003. name: "Normal",
  30004. height: math.unit(50, "meters"),
  30005. default: true
  30006. },
  30007. {
  30008. name: "Macro",
  30009. height: math.unit(500, "meters")
  30010. },
  30011. ]
  30012. ))
  30013. characterMakers.push(() => makeCharacter(
  30014. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30015. {
  30016. front: {
  30017. height: math.unit(6 + 6 / 12, "feet"),
  30018. name: "Front",
  30019. image: {
  30020. source: "./media/characters/khardesh/front.svg",
  30021. extra: 1788/1596,
  30022. bottom: 66/1854
  30023. }
  30024. },
  30025. back: {
  30026. height: math.unit(6 + 6 / 12, "feet"),
  30027. name: "Back",
  30028. image: {
  30029. source: "./media/characters/khardesh/back.svg",
  30030. extra: 1781/1584,
  30031. bottom: 68/1849
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6 + 6 / 12, "feet"),
  30039. default: true
  30040. },
  30041. {
  30042. name: "Normal+",
  30043. height: math.unit(4, "meters")
  30044. },
  30045. {
  30046. name: "Macro",
  30047. height: math.unit(50, "meters")
  30048. },
  30049. {
  30050. name: "Macro+",
  30051. height: math.unit(100, "meters")
  30052. },
  30053. {
  30054. name: "Megamacro",
  30055. height: math.unit(20, "km")
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30061. {
  30062. front: {
  30063. height: math.unit(6, "feet"),
  30064. weight: math.unit(150, "lb"),
  30065. name: "Front",
  30066. image: {
  30067. source: "./media/characters/kosho/front.svg",
  30068. extra: 1847 / 1847,
  30069. bottom: 86 / 1933
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Second-stage micro",
  30076. height: math.unit(0.5, "inches")
  30077. },
  30078. {
  30079. name: "First-stage micro",
  30080. height: math.unit(6, "inches")
  30081. },
  30082. {
  30083. name: "Normal",
  30084. height: math.unit(6, "feet"),
  30085. default: true
  30086. },
  30087. {
  30088. name: "First-stage macro",
  30089. height: math.unit(72, "feet")
  30090. },
  30091. {
  30092. name: "Second-stage macro",
  30093. height: math.unit(864, "feet")
  30094. },
  30095. ]
  30096. ))
  30097. characterMakers.push(() => makeCharacter(
  30098. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30099. {
  30100. normal: {
  30101. height: math.unit(4 + 6 / 12, "feet"),
  30102. name: "Normal",
  30103. image: {
  30104. source: "./media/characters/hydra/normal.svg",
  30105. extra: 2833 / 2634,
  30106. bottom: 68 / 2901
  30107. }
  30108. },
  30109. smol: {
  30110. height: math.unit(0.705, "inches"),
  30111. name: "Smol",
  30112. image: {
  30113. source: "./media/characters/hydra/smol.svg",
  30114. extra: 2715 / 2540,
  30115. bottom: 0 / 2715
  30116. }
  30117. },
  30118. },
  30119. [
  30120. {
  30121. name: "Normal",
  30122. height: math.unit(4 + 6 / 12, "feet"),
  30123. default: true
  30124. }
  30125. ]
  30126. ))
  30127. characterMakers.push(() => makeCharacter(
  30128. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30129. {
  30130. front: {
  30131. height: math.unit(0.6, "cm"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/daz/front.svg",
  30135. extra: 1682 / 1164,
  30136. bottom: 42 / 1724
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Normal",
  30143. height: math.unit(0.6, "cm"),
  30144. default: true
  30145. },
  30146. ]
  30147. ))
  30148. characterMakers.push(() => makeCharacter(
  30149. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30150. {
  30151. front: {
  30152. height: math.unit(6, "feet"),
  30153. weight: math.unit(235, "lb"),
  30154. name: "Front",
  30155. image: {
  30156. source: "./media/characters/theo-pangolin/front.svg",
  30157. extra: 1996 / 1969,
  30158. bottom: 115 / 2111
  30159. }
  30160. },
  30161. back: {
  30162. height: math.unit(6, "feet"),
  30163. weight: math.unit(235, "lb"),
  30164. name: "Back",
  30165. image: {
  30166. source: "./media/characters/theo-pangolin/back.svg",
  30167. extra: 1979 / 1979,
  30168. bottom: 40 / 2019
  30169. }
  30170. },
  30171. feral: {
  30172. height: math.unit(2, "feet"),
  30173. weight: math.unit(30, "lb"),
  30174. name: "Feral",
  30175. image: {
  30176. source: "./media/characters/theo-pangolin/feral.svg",
  30177. extra: 803 / 791,
  30178. bottom: 181 / 984
  30179. }
  30180. },
  30181. footFive: {
  30182. height: math.unit(1.43, "feet"),
  30183. name: "Foot (Five Toes)",
  30184. image: {
  30185. source: "./media/characters/theo-pangolin/foot-five.svg"
  30186. }
  30187. },
  30188. footFour: {
  30189. height: math.unit(1.43, "feet"),
  30190. name: "Foot (Four Toes)",
  30191. image: {
  30192. source: "./media/characters/theo-pangolin/foot-four.svg"
  30193. }
  30194. },
  30195. handFour: {
  30196. height: math.unit(0.81, "feet"),
  30197. name: "Hand (Four Fingers)",
  30198. image: {
  30199. source: "./media/characters/theo-pangolin/hand-four.svg"
  30200. }
  30201. },
  30202. handThree: {
  30203. height: math.unit(0.81, "feet"),
  30204. name: "Hand (Three Fingers)",
  30205. image: {
  30206. source: "./media/characters/theo-pangolin/hand-three.svg"
  30207. }
  30208. },
  30209. headFront: {
  30210. height: math.unit(1.37, "feet"),
  30211. name: "Head (Front)",
  30212. image: {
  30213. source: "./media/characters/theo-pangolin/head-front.svg"
  30214. }
  30215. },
  30216. headSide: {
  30217. height: math.unit(1.43, "feet"),
  30218. name: "Head (Side)",
  30219. image: {
  30220. source: "./media/characters/theo-pangolin/head-side.svg"
  30221. }
  30222. },
  30223. tongue: {
  30224. height: math.unit(2.29, "feet"),
  30225. name: "Tongue",
  30226. image: {
  30227. source: "./media/characters/theo-pangolin/tongue.svg"
  30228. }
  30229. },
  30230. },
  30231. [
  30232. {
  30233. name: "Normal",
  30234. height: math.unit(6, "feet")
  30235. },
  30236. {
  30237. name: "Macro",
  30238. height: math.unit(400, "feet"),
  30239. default: true
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(6, "inches"),
  30248. weight: math.unit(0.036, "kg"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/renée/front.svg",
  30252. extra: 900 / 886,
  30253. bottom: 8 / 908
  30254. }
  30255. },
  30256. },
  30257. [
  30258. {
  30259. name: "Nano",
  30260. height: math.unit(1, "nm")
  30261. },
  30262. {
  30263. name: "Micro",
  30264. height: math.unit(1, "mm")
  30265. },
  30266. {
  30267. name: "Normal",
  30268. height: math.unit(6, "inches")
  30269. },
  30270. {
  30271. name: "Macro",
  30272. height: math.unit(2000, "feet"),
  30273. default: true
  30274. },
  30275. {
  30276. name: "Megamacro",
  30277. height: math.unit(2, "km")
  30278. },
  30279. {
  30280. name: "Gigamacro",
  30281. height: math.unit(2000, "km")
  30282. },
  30283. {
  30284. name: "Teramacro",
  30285. height: math.unit(250000, "km")
  30286. },
  30287. ]
  30288. ))
  30289. characterMakers.push(() => makeCharacter(
  30290. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30291. {
  30292. front: {
  30293. height: math.unit(4, "meters"),
  30294. weight: math.unit(150, "kg"),
  30295. name: "Front",
  30296. image: {
  30297. source: "./media/characters/caledvwlch/front.svg",
  30298. extra: 1760 / 1551,
  30299. bottom: 28 / 1788
  30300. }
  30301. },
  30302. side: {
  30303. height: math.unit(4, "meters"),
  30304. weight: math.unit(150, "kg"),
  30305. name: "Side",
  30306. image: {
  30307. source: "./media/characters/caledvwlch/side.svg",
  30308. extra: 1605 / 1536,
  30309. bottom: 31 / 1636
  30310. }
  30311. },
  30312. back: {
  30313. height: math.unit(4, "meters"),
  30314. weight: math.unit(150, "kg"),
  30315. name: "Back",
  30316. image: {
  30317. source: "./media/characters/caledvwlch/back.svg",
  30318. extra: 1635 / 1565,
  30319. bottom: 27 / 1662
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "\"Incognito\"",
  30326. height: math.unit(4, "meters")
  30327. },
  30328. {
  30329. name: "Small rampage",
  30330. height: math.unit(600, "meters")
  30331. },
  30332. {
  30333. name: "Mega",
  30334. height: math.unit(30, "km")
  30335. },
  30336. {
  30337. name: "Home-size",
  30338. height: math.unit(50, "km"),
  30339. default: true
  30340. },
  30341. {
  30342. name: "Giga",
  30343. height: math.unit(300, "km")
  30344. },
  30345. {
  30346. name: "Lounging",
  30347. height: math.unit(11000, "km")
  30348. },
  30349. {
  30350. name: "Planet snacking",
  30351. height: math.unit(2000000, "km")
  30352. },
  30353. ]
  30354. ))
  30355. characterMakers.push(() => makeCharacter(
  30356. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30357. {
  30358. front: {
  30359. height: math.unit(6, "feet"),
  30360. weight: math.unit(215, "lb"),
  30361. name: "Front",
  30362. image: {
  30363. source: "./media/characters/sapphire-svell/front.svg",
  30364. extra: 495 / 455,
  30365. bottom: 20 / 515
  30366. }
  30367. },
  30368. back: {
  30369. height: math.unit(6, "feet"),
  30370. weight: math.unit(216, "lb"),
  30371. name: "Back",
  30372. image: {
  30373. source: "./media/characters/sapphire-svell/back.svg",
  30374. extra: 497 / 477,
  30375. bottom: 7 / 504
  30376. }
  30377. },
  30378. maw: {
  30379. height: math.unit(1.57, "feet"),
  30380. name: "Maw",
  30381. image: {
  30382. source: "./media/characters/sapphire-svell/maw.svg"
  30383. }
  30384. },
  30385. foot: {
  30386. height: math.unit(1.07, "feet"),
  30387. name: "Foot",
  30388. image: {
  30389. source: "./media/characters/sapphire-svell/foot.svg"
  30390. }
  30391. },
  30392. toering: {
  30393. height: math.unit(1.7, "inch"),
  30394. name: "Toering",
  30395. image: {
  30396. source: "./media/characters/sapphire-svell/toering.svg"
  30397. }
  30398. },
  30399. },
  30400. [
  30401. {
  30402. name: "Normal",
  30403. height: math.unit(300, "feet"),
  30404. default: true
  30405. },
  30406. {
  30407. name: "Augmented",
  30408. height: math.unit(1250, "feet")
  30409. },
  30410. {
  30411. name: "Unleashed",
  30412. height: math.unit(3000, "feet")
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30418. {
  30419. side: {
  30420. height: math.unit(2 + 3 / 12, "feet"),
  30421. weight: math.unit(110, "lb"),
  30422. name: "Side",
  30423. image: {
  30424. source: "./media/characters/glitch-flux/side.svg",
  30425. extra: 997 / 805,
  30426. bottom: 20 / 1017
  30427. }
  30428. },
  30429. },
  30430. [
  30431. {
  30432. name: "Normal",
  30433. height: math.unit(2 + 3 / 12, "feet"),
  30434. default: true
  30435. },
  30436. ]
  30437. ))
  30438. characterMakers.push(() => makeCharacter(
  30439. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30440. {
  30441. front: {
  30442. height: math.unit(4, "meters"),
  30443. name: "Front",
  30444. image: {
  30445. source: "./media/characters/mid/front.svg",
  30446. extra: 507 / 476,
  30447. bottom: 17 / 524
  30448. }
  30449. },
  30450. back: {
  30451. height: math.unit(4, "meters"),
  30452. name: "Back",
  30453. image: {
  30454. source: "./media/characters/mid/back.svg",
  30455. extra: 519 / 487,
  30456. bottom: 7 / 526
  30457. }
  30458. },
  30459. stuck: {
  30460. height: math.unit(2.2, "meters"),
  30461. name: "Stuck",
  30462. image: {
  30463. source: "./media/characters/mid/stuck.svg",
  30464. extra: 1951 / 1869,
  30465. bottom: 88 / 2039
  30466. }
  30467. }
  30468. },
  30469. [
  30470. {
  30471. name: "Normal",
  30472. height: math.unit(4, "meters"),
  30473. default: true
  30474. },
  30475. {
  30476. name: "Big",
  30477. height: math.unit(10, "meters")
  30478. },
  30479. {
  30480. name: "Macro",
  30481. height: math.unit(800, "meters")
  30482. },
  30483. {
  30484. name: "Megamacro",
  30485. height: math.unit(100, "km")
  30486. },
  30487. {
  30488. name: "Overgrown",
  30489. height: math.unit(1, "parsec")
  30490. },
  30491. ]
  30492. ))
  30493. characterMakers.push(() => makeCharacter(
  30494. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30495. {
  30496. front: {
  30497. height: math.unit(2.5, "meters"),
  30498. weight: math.unit(225, "kg"),
  30499. name: "Front",
  30500. image: {
  30501. source: "./media/characters/iris/front.svg",
  30502. extra: 3348 / 3251,
  30503. bottom: 205 / 3553
  30504. }
  30505. },
  30506. maw: {
  30507. height: math.unit(0.56, "meter"),
  30508. name: "Maw",
  30509. image: {
  30510. source: "./media/characters/iris/maw.svg"
  30511. }
  30512. },
  30513. },
  30514. [
  30515. {
  30516. name: "Mewter cat",
  30517. height: math.unit(1.2, "meters")
  30518. },
  30519. {
  30520. name: "Minimacro",
  30521. height: math.unit(2.5, "meters"),
  30522. default: true
  30523. },
  30524. {
  30525. name: "Macro",
  30526. height: math.unit(180, "meters")
  30527. },
  30528. {
  30529. name: "Megamacro",
  30530. height: math.unit(2746, "meters")
  30531. },
  30532. ]
  30533. ))
  30534. characterMakers.push(() => makeCharacter(
  30535. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30536. {
  30537. front: {
  30538. height: math.unit(6, "feet"),
  30539. weight: math.unit(135, "lb"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/axel/front.svg",
  30543. extra: 908 / 908,
  30544. bottom: 58 / 966
  30545. }
  30546. },
  30547. side: {
  30548. height: math.unit(6, "feet"),
  30549. weight: math.unit(135, "lb"),
  30550. name: "Side",
  30551. image: {
  30552. source: "./media/characters/axel/side.svg",
  30553. extra: 958 / 958,
  30554. bottom: 11 / 969
  30555. }
  30556. },
  30557. back: {
  30558. height: math.unit(6, "feet"),
  30559. weight: math.unit(135, "lb"),
  30560. name: "Back",
  30561. image: {
  30562. source: "./media/characters/axel/back.svg",
  30563. extra: 887 / 887,
  30564. bottom: 34 / 921
  30565. }
  30566. },
  30567. head: {
  30568. height: math.unit(1.07, "feet"),
  30569. name: "Head",
  30570. image: {
  30571. source: "./media/characters/axel/head.svg"
  30572. }
  30573. },
  30574. beak: {
  30575. height: math.unit(1.4, "feet"),
  30576. name: "Beak",
  30577. image: {
  30578. source: "./media/characters/axel/beak.svg"
  30579. }
  30580. },
  30581. beakSide: {
  30582. height: math.unit(1.4, "feet"),
  30583. name: "Beak Side",
  30584. image: {
  30585. source: "./media/characters/axel/beak-side.svg"
  30586. }
  30587. },
  30588. sheath: {
  30589. height: math.unit(0.5, "feet"),
  30590. name: "Sheath",
  30591. image: {
  30592. source: "./media/characters/axel/sheath.svg"
  30593. }
  30594. },
  30595. dick: {
  30596. height: math.unit(0.98, "feet"),
  30597. name: "Dick",
  30598. image: {
  30599. source: "./media/characters/axel/dick.svg"
  30600. }
  30601. },
  30602. },
  30603. [
  30604. {
  30605. name: "Macro",
  30606. height: math.unit(68, "meters"),
  30607. default: true
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30613. {
  30614. front: {
  30615. height: math.unit(3.5, "meters"),
  30616. weight: math.unit(1200, "kg"),
  30617. name: "Front",
  30618. image: {
  30619. source: "./media/characters/joanna/front.svg",
  30620. extra: 1596 / 1488,
  30621. bottom: 29 / 1625
  30622. }
  30623. },
  30624. back: {
  30625. height: math.unit(3.5, "meters"),
  30626. weight: math.unit(1200, "kg"),
  30627. name: "Back",
  30628. image: {
  30629. source: "./media/characters/joanna/back.svg",
  30630. extra: 1594 / 1495,
  30631. bottom: 26 / 1620
  30632. }
  30633. },
  30634. frontShorts: {
  30635. height: math.unit(3.5, "meters"),
  30636. weight: math.unit(1200, "kg"),
  30637. name: "Front (Shorts)",
  30638. image: {
  30639. source: "./media/characters/joanna/front-shorts.svg",
  30640. extra: 1596 / 1488,
  30641. bottom: 29 / 1625
  30642. }
  30643. },
  30644. frontBiker: {
  30645. height: math.unit(3.5, "meters"),
  30646. weight: math.unit(1200, "kg"),
  30647. name: "Front (Biker)",
  30648. image: {
  30649. source: "./media/characters/joanna/front-biker.svg",
  30650. extra: 1596 / 1488,
  30651. bottom: 29 / 1625
  30652. }
  30653. },
  30654. backBiker: {
  30655. height: math.unit(3.5, "meters"),
  30656. weight: math.unit(1200, "kg"),
  30657. name: "Back (Biker)",
  30658. image: {
  30659. source: "./media/characters/joanna/back-biker.svg",
  30660. extra: 1594 / 1495,
  30661. bottom: 88 / 1682
  30662. }
  30663. },
  30664. bikeLeft: {
  30665. height: math.unit(2.4, "meters"),
  30666. weight: math.unit(1600, "kg"),
  30667. name: "Bike (Left)",
  30668. image: {
  30669. source: "./media/characters/joanna/bike-left.svg",
  30670. extra: 720 / 720,
  30671. bottom: 8 / 728
  30672. }
  30673. },
  30674. bikeRight: {
  30675. height: math.unit(2.4, "meters"),
  30676. weight: math.unit(1600, "kg"),
  30677. name: "Bike (Right)",
  30678. image: {
  30679. source: "./media/characters/joanna/bike-right.svg",
  30680. extra: 720 / 720,
  30681. bottom: 8 / 728
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Incognito",
  30688. height: math.unit(3.5, "meters")
  30689. },
  30690. {
  30691. name: "Casual Big",
  30692. height: math.unit(200, "meters")
  30693. },
  30694. {
  30695. name: "Macro",
  30696. height: math.unit(600, "meters")
  30697. },
  30698. {
  30699. name: "Original",
  30700. height: math.unit(20, "km"),
  30701. default: true
  30702. },
  30703. {
  30704. name: "Giga",
  30705. height: math.unit(400, "km")
  30706. },
  30707. {
  30708. name: "Lounging",
  30709. height: math.unit(1500, "km")
  30710. },
  30711. {
  30712. name: "Planetary",
  30713. height: math.unit(200000, "km")
  30714. },
  30715. ]
  30716. ))
  30717. characterMakers.push(() => makeCharacter(
  30718. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30719. {
  30720. front: {
  30721. height: math.unit(6, "feet"),
  30722. weight: math.unit(150, "lb"),
  30723. name: "Front",
  30724. image: {
  30725. source: "./media/characters/hugo-sigil/front.svg",
  30726. extra: 522 / 500,
  30727. bottom: 2 / 524
  30728. }
  30729. },
  30730. back: {
  30731. height: math.unit(6, "feet"),
  30732. weight: math.unit(150, "lb"),
  30733. name: "Back",
  30734. image: {
  30735. source: "./media/characters/hugo-sigil/back.svg",
  30736. extra: 519 / 495,
  30737. bottom: 5 / 524
  30738. }
  30739. },
  30740. maw: {
  30741. height: math.unit(1.4, "feet"),
  30742. weight: math.unit(150, "lb"),
  30743. name: "Maw",
  30744. image: {
  30745. source: "./media/characters/hugo-sigil/maw.svg"
  30746. }
  30747. },
  30748. feet: {
  30749. height: math.unit(1.56, "feet"),
  30750. weight: math.unit(150, "lb"),
  30751. name: "Feet",
  30752. image: {
  30753. source: "./media/characters/hugo-sigil/feet.svg",
  30754. extra: 177 / 177,
  30755. bottom: 12 / 189
  30756. }
  30757. },
  30758. },
  30759. [
  30760. {
  30761. name: "Normal",
  30762. height: math.unit(6, "feet")
  30763. },
  30764. {
  30765. name: "Macro",
  30766. height: math.unit(200, "feet"),
  30767. default: true
  30768. },
  30769. ]
  30770. ))
  30771. characterMakers.push(() => makeCharacter(
  30772. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30773. {
  30774. front: {
  30775. height: math.unit(6, "feet"),
  30776. weight: math.unit(150, "lb"),
  30777. name: "Front",
  30778. image: {
  30779. source: "./media/characters/peri/front.svg",
  30780. extra: 2354 / 2233,
  30781. bottom: 49 / 2403
  30782. }
  30783. },
  30784. },
  30785. [
  30786. {
  30787. name: "Really Small",
  30788. height: math.unit(1, "nm")
  30789. },
  30790. {
  30791. name: "Micro",
  30792. height: math.unit(4, "inches")
  30793. },
  30794. {
  30795. name: "Normal",
  30796. height: math.unit(7, "inches"),
  30797. default: true
  30798. },
  30799. {
  30800. name: "Macro",
  30801. height: math.unit(400, "feet")
  30802. },
  30803. {
  30804. name: "Megamacro",
  30805. height: math.unit(100, "miles")
  30806. },
  30807. ]
  30808. ))
  30809. characterMakers.push(() => makeCharacter(
  30810. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30811. {
  30812. frontSlim: {
  30813. height: math.unit(7, "feet"),
  30814. name: "Front (Slim)",
  30815. image: {
  30816. source: "./media/characters/issilora/front-slim.svg",
  30817. extra: 529 / 449,
  30818. bottom: 53 / 582
  30819. }
  30820. },
  30821. sideSlim: {
  30822. height: math.unit(7, "feet"),
  30823. name: "Side (Slim)",
  30824. image: {
  30825. source: "./media/characters/issilora/side-slim.svg",
  30826. extra: 570 / 480,
  30827. bottom: 30 / 600
  30828. }
  30829. },
  30830. backSlim: {
  30831. height: math.unit(7, "feet"),
  30832. name: "Back (Slim)",
  30833. image: {
  30834. source: "./media/characters/issilora/back-slim.svg",
  30835. extra: 537 / 455,
  30836. bottom: 46 / 583
  30837. }
  30838. },
  30839. frontBuff: {
  30840. height: math.unit(7, "feet"),
  30841. name: "Front (Buff)",
  30842. image: {
  30843. source: "./media/characters/issilora/front-buff.svg",
  30844. extra: 2310 / 2035,
  30845. bottom: 335 / 2645
  30846. }
  30847. },
  30848. head: {
  30849. height: math.unit(1.94, "feet"),
  30850. name: "Head",
  30851. image: {
  30852. source: "./media/characters/issilora/head.svg"
  30853. }
  30854. },
  30855. },
  30856. [
  30857. {
  30858. name: "Minimum",
  30859. height: math.unit(7, "feet")
  30860. },
  30861. {
  30862. name: "Comfortable",
  30863. height: math.unit(17, "feet")
  30864. },
  30865. {
  30866. name: "Fun Size",
  30867. height: math.unit(47, "feet")
  30868. },
  30869. {
  30870. name: "Natural Macro",
  30871. height: math.unit(137, "feet"),
  30872. default: true
  30873. },
  30874. {
  30875. name: "Maximum Kaiju",
  30876. height: math.unit(397, "feet")
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30882. {
  30883. front: {
  30884. height: math.unit(50 + 9/12, "feet"),
  30885. weight: math.unit(32.8, "tons"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/irb'iiritaahn/front.svg",
  30889. extra: 1878/1826,
  30890. bottom: 326/2204
  30891. }
  30892. },
  30893. back: {
  30894. height: math.unit(50 + 9/12, "feet"),
  30895. weight: math.unit(32.8, "tons"),
  30896. name: "Back",
  30897. image: {
  30898. source: "./media/characters/irb'iiritaahn/back.svg",
  30899. extra: 2052/2018,
  30900. bottom: 152/2204
  30901. }
  30902. },
  30903. head: {
  30904. height: math.unit(12.86, "feet"),
  30905. name: "Head",
  30906. image: {
  30907. source: "./media/characters/irb'iiritaahn/head.svg"
  30908. }
  30909. },
  30910. maw: {
  30911. height: math.unit(9.66, "feet"),
  30912. name: "Maw",
  30913. image: {
  30914. source: "./media/characters/irb'iiritaahn/maw.svg"
  30915. }
  30916. },
  30917. frontDick: {
  30918. height: math.unit(8.78461, "feet"),
  30919. name: "Front Dick",
  30920. image: {
  30921. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30922. }
  30923. },
  30924. rearDick: {
  30925. height: math.unit(8.78461, "feet"),
  30926. name: "Rear Dick",
  30927. image: {
  30928. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30929. }
  30930. },
  30931. rearDickUnfolded: {
  30932. height: math.unit(8.78, "feet"),
  30933. name: "Rear Dick (Unfolded)",
  30934. image: {
  30935. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30936. }
  30937. },
  30938. wings: {
  30939. height: math.unit(43, "feet"),
  30940. name: "Wings",
  30941. image: {
  30942. source: "./media/characters/irb'iiritaahn/wings.svg"
  30943. }
  30944. },
  30945. },
  30946. [
  30947. {
  30948. name: "Macro",
  30949. height: math.unit(50 + 9/12, "feet"),
  30950. default: true
  30951. },
  30952. ]
  30953. ))
  30954. characterMakers.push(() => makeCharacter(
  30955. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30956. {
  30957. front: {
  30958. height: math.unit(205, "cm"),
  30959. weight: math.unit(102, "kg"),
  30960. name: "Front",
  30961. image: {
  30962. source: "./media/characters/irbisgreif/front.svg",
  30963. extra: 785/706,
  30964. bottom: 13/798
  30965. }
  30966. },
  30967. back: {
  30968. height: math.unit(205, "cm"),
  30969. weight: math.unit(102, "kg"),
  30970. name: "Back",
  30971. image: {
  30972. source: "./media/characters/irbisgreif/back.svg",
  30973. extra: 713/701,
  30974. bottom: 26/739
  30975. }
  30976. },
  30977. frontDressed: {
  30978. height: math.unit(216, "cm"),
  30979. weight: math.unit(102, "kg"),
  30980. name: "Front-dressed",
  30981. image: {
  30982. source: "./media/characters/irbisgreif/front-dressed.svg",
  30983. extra: 902/776,
  30984. bottom: 14/916
  30985. }
  30986. },
  30987. sideDressed: {
  30988. height: math.unit(195, "cm"),
  30989. weight: math.unit(102, "kg"),
  30990. name: "Side-dressed",
  30991. image: {
  30992. source: "./media/characters/irbisgreif/side-dressed.svg",
  30993. extra: 788/688,
  30994. bottom: 21/809
  30995. }
  30996. },
  30997. backDressed: {
  30998. height: math.unit(216, "cm"),
  30999. weight: math.unit(102, "kg"),
  31000. name: "Back-dressed",
  31001. image: {
  31002. source: "./media/characters/irbisgreif/back-dressed.svg",
  31003. extra: 901/783,
  31004. bottom: 10/911
  31005. }
  31006. },
  31007. dick: {
  31008. height: math.unit(0.49, "feet"),
  31009. name: "Dick",
  31010. image: {
  31011. source: "./media/characters/irbisgreif/dick.svg"
  31012. }
  31013. },
  31014. wingTop: {
  31015. height: math.unit(1.93 , "feet"),
  31016. name: "Wing-top",
  31017. image: {
  31018. source: "./media/characters/irbisgreif/wing-top.svg"
  31019. }
  31020. },
  31021. wingBottom: {
  31022. height: math.unit(1.93 , "feet"),
  31023. name: "Wing-bottom",
  31024. image: {
  31025. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31026. }
  31027. },
  31028. },
  31029. [
  31030. {
  31031. name: "Normal",
  31032. height: math.unit(216, "cm"),
  31033. default: true
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(6, "feet"),
  31042. weight: math.unit(150, "lb"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/pride/front.svg",
  31046. extra: 1299/1230,
  31047. bottom: 18/1317
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Normal",
  31054. height: math.unit(7, "feet")
  31055. },
  31056. {
  31057. name: "Mini-macro",
  31058. height: math.unit(11, "feet")
  31059. },
  31060. {
  31061. name: "Macro",
  31062. height: math.unit(15, "meters"),
  31063. default: true
  31064. },
  31065. {
  31066. name: "Macro+",
  31067. height: math.unit(40, "meters")
  31068. },
  31069. ]
  31070. ))
  31071. characterMakers.push(() => makeCharacter(
  31072. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31073. {
  31074. front: {
  31075. height: math.unit(4 + 2 / 12, "feet"),
  31076. weight: math.unit(95, "lb"),
  31077. name: "Front",
  31078. image: {
  31079. source: "./media/characters/vaelophis-nyx/front.svg",
  31080. extra: 2532/2330,
  31081. bottom: 0/2532
  31082. }
  31083. },
  31084. back: {
  31085. height: math.unit(4 + 2 / 12, "feet"),
  31086. weight: math.unit(95, "lb"),
  31087. name: "Back",
  31088. image: {
  31089. source: "./media/characters/vaelophis-nyx/back.svg",
  31090. extra: 2484/2361,
  31091. bottom: 0/2484
  31092. }
  31093. },
  31094. feralSide: {
  31095. height: math.unit(2 + 1/12, "feet"),
  31096. weight: math.unit(20, "lb"),
  31097. name: "Feral (Side)",
  31098. image: {
  31099. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31100. extra: 1721/1581,
  31101. bottom: 70/1791
  31102. }
  31103. },
  31104. feralLazing: {
  31105. height: math.unit(1.08, "feet"),
  31106. weight: math.unit(20, "lb"),
  31107. name: "Feral (Lazing)",
  31108. image: {
  31109. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31110. extra: 822/822,
  31111. bottom: 248/1070
  31112. }
  31113. },
  31114. ear: {
  31115. height: math.unit(0.416, "feet"),
  31116. name: "Ear",
  31117. image: {
  31118. source: "./media/characters/vaelophis-nyx/ear.svg"
  31119. }
  31120. },
  31121. eye: {
  31122. height: math.unit(0.0748, "feet"),
  31123. name: "Eye",
  31124. image: {
  31125. source: "./media/characters/vaelophis-nyx/eye.svg"
  31126. }
  31127. },
  31128. mouth: {
  31129. height: math.unit(0.378, "feet"),
  31130. name: "Mouth",
  31131. image: {
  31132. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31133. }
  31134. },
  31135. spade: {
  31136. height: math.unit(0.55, "feet"),
  31137. name: "Spade",
  31138. image: {
  31139. source: "./media/characters/vaelophis-nyx/spade.svg"
  31140. }
  31141. },
  31142. },
  31143. [
  31144. {
  31145. name: "Normal",
  31146. height: math.unit(4 + 2/12, "feet"),
  31147. default: true
  31148. },
  31149. ]
  31150. ))
  31151. characterMakers.push(() => makeCharacter(
  31152. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31153. {
  31154. front: {
  31155. height: math.unit(7, "feet"),
  31156. weight: math.unit(231, "lb"),
  31157. name: "Front",
  31158. image: {
  31159. source: "./media/characters/flux/front.svg",
  31160. extra: 919/871,
  31161. bottom: 0/919
  31162. }
  31163. },
  31164. back: {
  31165. height: math.unit(7, "feet"),
  31166. weight: math.unit(231, "lb"),
  31167. name: "Back",
  31168. image: {
  31169. source: "./media/characters/flux/back.svg",
  31170. extra: 1040/992,
  31171. bottom: 0/1040
  31172. }
  31173. },
  31174. frontDressed: {
  31175. height: math.unit(7, "feet"),
  31176. weight: math.unit(231, "lb"),
  31177. name: "Front (Dressed)",
  31178. image: {
  31179. source: "./media/characters/flux/front-dressed.svg",
  31180. extra: 919/871,
  31181. bottom: 0/919
  31182. }
  31183. },
  31184. feralSide: {
  31185. height: math.unit(5, "feet"),
  31186. weight: math.unit(150, "lb"),
  31187. name: "Feral (Side)",
  31188. image: {
  31189. source: "./media/characters/flux/feral-side.svg",
  31190. extra: 598/528,
  31191. bottom: 28/626
  31192. }
  31193. },
  31194. head: {
  31195. height: math.unit(1.585, "feet"),
  31196. name: "Head",
  31197. image: {
  31198. source: "./media/characters/flux/head.svg"
  31199. }
  31200. },
  31201. headSide: {
  31202. height: math.unit(1.74, "feet"),
  31203. name: "Head (Side)",
  31204. image: {
  31205. source: "./media/characters/flux/head-side.svg"
  31206. }
  31207. },
  31208. headSideFire: {
  31209. height: math.unit(1.76, "feet"),
  31210. name: "Head (Side, Fire)",
  31211. image: {
  31212. source: "./media/characters/flux/head-side-fire.svg"
  31213. }
  31214. },
  31215. },
  31216. [
  31217. {
  31218. name: "Normal",
  31219. height: math.unit(7, "feet"),
  31220. default: true
  31221. },
  31222. ]
  31223. ))
  31224. characterMakers.push(() => makeCharacter(
  31225. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31226. {
  31227. front: {
  31228. height: math.unit(9, "feet"),
  31229. weight: math.unit(1012, "lb"),
  31230. name: "Front",
  31231. image: {
  31232. source: "./media/characters/ulfra-lupae/front.svg",
  31233. extra: 1083/1011,
  31234. bottom: 67/1150
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Micro",
  31241. height: math.unit(6, "inches")
  31242. },
  31243. {
  31244. name: "Socializing",
  31245. height: math.unit(6 + 5/12, "feet")
  31246. },
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(9, "feet"),
  31250. default: true
  31251. },
  31252. {
  31253. name: "Macro",
  31254. height: math.unit(150, "feet")
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(5 + 2/12, "feet"),
  31263. weight: math.unit(120, "lb"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/timber/front.svg",
  31267. extra: 2814/2705,
  31268. bottom: 181/2995
  31269. }
  31270. },
  31271. },
  31272. [
  31273. {
  31274. name: "Normal",
  31275. height: math.unit(5 + 2/12, "feet"),
  31276. default: true
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31282. {
  31283. front: {
  31284. height: math.unit(5 + 7/12, "feet"),
  31285. weight: math.unit(220, "lb"),
  31286. name: "Front",
  31287. image: {
  31288. source: "./media/characters/nicki/front.svg",
  31289. extra: 453/419,
  31290. bottom: 7/460
  31291. }
  31292. },
  31293. frontAlt: {
  31294. height: math.unit(5 + 7/12, "feet"),
  31295. weight: math.unit(220, "lb"),
  31296. name: "Front-alt",
  31297. image: {
  31298. source: "./media/characters/nicki/front-alt.svg",
  31299. extra: 435/411,
  31300. bottom: 12/447
  31301. }
  31302. },
  31303. back: {
  31304. height: math.unit(5 + 7/12, "feet"),
  31305. weight: math.unit(220, "lb"),
  31306. name: "Back",
  31307. image: {
  31308. source: "./media/characters/nicki/back.svg",
  31309. extra: 440/413,
  31310. bottom: 19/459
  31311. }
  31312. },
  31313. taur: {
  31314. height: math.unit(7 + 6/12, "feet"),
  31315. weight: math.unit(700, "lb"),
  31316. name: "Taur",
  31317. image: {
  31318. source: "./media/characters/nicki/taur.svg",
  31319. extra: 975/773,
  31320. bottom: 0/975
  31321. }
  31322. },
  31323. frontNsfw: {
  31324. height: math.unit(5 + 7/12, "feet"),
  31325. weight: math.unit(220, "lb"),
  31326. name: "Front (NSFW)",
  31327. image: {
  31328. source: "./media/characters/nicki/front-nsfw.svg",
  31329. extra: 453/419,
  31330. bottom: 7/460
  31331. }
  31332. },
  31333. frontNsfwAlt: {
  31334. height: math.unit(5 + 7/12, "feet"),
  31335. weight: math.unit(220, "lb"),
  31336. name: "Front (Alt, NSFW)",
  31337. image: {
  31338. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31339. extra: 435/411,
  31340. bottom: 12/447
  31341. }
  31342. },
  31343. backNsfw: {
  31344. height: math.unit(5 + 7/12, "feet"),
  31345. weight: math.unit(220, "lb"),
  31346. name: "Back (NSFW)",
  31347. image: {
  31348. source: "./media/characters/nicki/back-nsfw.svg",
  31349. extra: 440/413,
  31350. bottom: 19/459
  31351. }
  31352. },
  31353. head: {
  31354. height: math.unit(2.1, "feet"),
  31355. name: "Head",
  31356. image: {
  31357. source: "./media/characters/nicki/head.svg"
  31358. }
  31359. },
  31360. paw: {
  31361. height: math.unit(1.88, "feet"),
  31362. name: "Paw",
  31363. image: {
  31364. source: "./media/characters/nicki/paw.svg"
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Normal",
  31371. height: math.unit(5 + 7/12, "feet"),
  31372. default: true
  31373. },
  31374. ]
  31375. ))
  31376. characterMakers.push(() => makeCharacter(
  31377. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31378. {
  31379. front: {
  31380. height: math.unit(7 + 10/12, "feet"),
  31381. weight: math.unit(3.5, "tons"),
  31382. name: "Front",
  31383. image: {
  31384. source: "./media/characters/lee/front.svg",
  31385. extra: 1773/1615,
  31386. bottom: 86/1859
  31387. }
  31388. },
  31389. hand: {
  31390. height: math.unit(1.78, "feet"),
  31391. name: "Hand",
  31392. image: {
  31393. source: "./media/characters/lee/hand.svg"
  31394. }
  31395. },
  31396. maw: {
  31397. height: math.unit(1.18, "feet"),
  31398. name: "Maw",
  31399. image: {
  31400. source: "./media/characters/lee/maw.svg"
  31401. }
  31402. },
  31403. },
  31404. [
  31405. {
  31406. name: "Normal",
  31407. height: math.unit(7 + 10/12, "feet"),
  31408. default: true
  31409. },
  31410. ]
  31411. ))
  31412. characterMakers.push(() => makeCharacter(
  31413. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31414. {
  31415. front: {
  31416. height: math.unit(9, "feet"),
  31417. name: "Front",
  31418. image: {
  31419. source: "./media/characters/guti/front.svg",
  31420. extra: 4551/4355,
  31421. bottom: 123/4674
  31422. }
  31423. },
  31424. tongue: {
  31425. height: math.unit(1, "feet"),
  31426. name: "Tongue",
  31427. image: {
  31428. source: "./media/characters/guti/tongue.svg"
  31429. }
  31430. },
  31431. paw: {
  31432. height: math.unit(1.18, "feet"),
  31433. name: "Paw",
  31434. image: {
  31435. source: "./media/characters/guti/paw.svg"
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(9, "feet"),
  31443. default: true
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31449. {
  31450. side: {
  31451. height: math.unit(5, "meters"),
  31452. name: "Side",
  31453. image: {
  31454. source: "./media/characters/vesper/side.svg",
  31455. extra: 1605/1518,
  31456. bottom: 0/1605
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Small",
  31463. height: math.unit(5, "meters")
  31464. },
  31465. {
  31466. name: "Sage",
  31467. height: math.unit(100, "meters"),
  31468. default: true
  31469. },
  31470. {
  31471. name: "Fun Size",
  31472. height: math.unit(600, "meters")
  31473. },
  31474. {
  31475. name: "Goddess",
  31476. height: math.unit(20000, "km")
  31477. },
  31478. {
  31479. name: "Maximum",
  31480. height: math.unit(5, "galaxies")
  31481. },
  31482. ]
  31483. ))
  31484. characterMakers.push(() => makeCharacter(
  31485. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31486. {
  31487. front: {
  31488. height: math.unit(6 + 3/12, "feet"),
  31489. weight: math.unit(190, "lb"),
  31490. name: "Front",
  31491. image: {
  31492. source: "./media/characters/gawain/front.svg",
  31493. extra: 2222/2139,
  31494. bottom: 90/2312
  31495. }
  31496. },
  31497. back: {
  31498. height: math.unit(6 + 3/12, "feet"),
  31499. weight: math.unit(190, "lb"),
  31500. name: "Back",
  31501. image: {
  31502. source: "./media/characters/gawain/back.svg",
  31503. extra: 2199/2111,
  31504. bottom: 73/2272
  31505. }
  31506. },
  31507. },
  31508. [
  31509. {
  31510. name: "Normal",
  31511. height: math.unit(6 + 3/12, "feet"),
  31512. default: true
  31513. },
  31514. ]
  31515. ))
  31516. characterMakers.push(() => makeCharacter(
  31517. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31518. {
  31519. side: {
  31520. height: math.unit(3.5, "meters"),
  31521. weight: math.unit(16000, "lb"),
  31522. name: "Side",
  31523. image: {
  31524. source: "./media/characters/dascalti/side.svg",
  31525. extra: 392/273,
  31526. bottom: 47/439
  31527. }
  31528. },
  31529. breath: {
  31530. height: math.unit(7.4, "feet"),
  31531. name: "Breath",
  31532. image: {
  31533. source: "./media/characters/dascalti/breath.svg"
  31534. }
  31535. },
  31536. fed: {
  31537. height: math.unit(3.6, "meters"),
  31538. weight: math.unit(16000, "lb"),
  31539. name: "Fed",
  31540. image: {
  31541. source: "./media/characters/dascalti/fed.svg",
  31542. extra: 1419/820,
  31543. bottom: 95/1514
  31544. }
  31545. },
  31546. },
  31547. [
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(3.5, "meters"),
  31551. default: true
  31552. },
  31553. ]
  31554. ))
  31555. characterMakers.push(() => makeCharacter(
  31556. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31557. {
  31558. front: {
  31559. height: math.unit(3 + 5/12, "feet"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/mauve/front.svg",
  31563. extra: 1126/1033,
  31564. bottom: 65/1191
  31565. }
  31566. },
  31567. side: {
  31568. height: math.unit(3 + 5/12, "feet"),
  31569. name: "Side",
  31570. image: {
  31571. source: "./media/characters/mauve/side.svg",
  31572. extra: 1089/1001,
  31573. bottom: 29/1118
  31574. }
  31575. },
  31576. back: {
  31577. height: math.unit(3 + 5/12, "feet"),
  31578. name: "Back",
  31579. image: {
  31580. source: "./media/characters/mauve/back.svg",
  31581. extra: 1173/1053,
  31582. bottom: 109/1282
  31583. }
  31584. },
  31585. },
  31586. [
  31587. {
  31588. name: "Normal",
  31589. height: math.unit(3 + 5/12, "feet"),
  31590. default: true
  31591. },
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(6 + 3/12, "feet"),
  31599. weight: math.unit(430, "lb"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/carlos/front.svg",
  31603. extra: 1964/1913,
  31604. bottom: 70/2034
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(6 + 3/12, "feet"),
  31612. default: true
  31613. },
  31614. ]
  31615. ))
  31616. characterMakers.push(() => makeCharacter(
  31617. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31618. {
  31619. back: {
  31620. height: math.unit(5 + 10/12, "feet"),
  31621. weight: math.unit(200, "lb"),
  31622. name: "Back",
  31623. image: {
  31624. source: "./media/characters/jax/back.svg",
  31625. extra: 764/739,
  31626. bottom: 25/789
  31627. }
  31628. },
  31629. },
  31630. [
  31631. {
  31632. name: "Normal",
  31633. height: math.unit(5 + 10/12, "feet"),
  31634. default: true
  31635. },
  31636. ]
  31637. ))
  31638. characterMakers.push(() => makeCharacter(
  31639. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31640. {
  31641. front: {
  31642. height: math.unit(8, "feet"),
  31643. weight: math.unit(250, "lb"),
  31644. name: "Front",
  31645. image: {
  31646. source: "./media/characters/eikthynir/front.svg",
  31647. extra: 1332/1166,
  31648. bottom: 82/1414
  31649. }
  31650. },
  31651. back: {
  31652. height: math.unit(8, "feet"),
  31653. weight: math.unit(250, "lb"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/eikthynir/back.svg",
  31657. extra: 1342/1190,
  31658. bottom: 19/1361
  31659. }
  31660. },
  31661. dick: {
  31662. height: math.unit(2.35, "feet"),
  31663. name: "Dick",
  31664. image: {
  31665. source: "./media/characters/eikthynir/dick.svg"
  31666. }
  31667. },
  31668. },
  31669. [
  31670. {
  31671. name: "Normal",
  31672. height: math.unit(8, "feet"),
  31673. default: true
  31674. },
  31675. ]
  31676. ))
  31677. characterMakers.push(() => makeCharacter(
  31678. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31679. {
  31680. front: {
  31681. height: math.unit(99, "meters"),
  31682. weight: math.unit(13000, "tons"),
  31683. name: "Front",
  31684. image: {
  31685. source: "./media/characters/zlmos/front.svg",
  31686. extra: 2202/1992,
  31687. bottom: 315/2517
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Macro",
  31694. height: math.unit(99, "meters"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(6 + 5/12, "feet"),
  31704. name: "Front",
  31705. image: {
  31706. source: "./media/characters/purri/front.svg",
  31707. extra: 1698/1610,
  31708. bottom: 32/1730
  31709. }
  31710. },
  31711. frontAlt: {
  31712. height: math.unit(6 + 5/12, "feet"),
  31713. name: "Front (Alt)",
  31714. image: {
  31715. source: "./media/characters/purri/front-alt.svg",
  31716. extra: 450/420,
  31717. bottom: 26/476
  31718. }
  31719. },
  31720. boots: {
  31721. height: math.unit(5.5, "feet"),
  31722. name: "Boots",
  31723. image: {
  31724. source: "./media/characters/purri/boots.svg",
  31725. extra: 905/853,
  31726. bottom: 18/923
  31727. }
  31728. },
  31729. lying: {
  31730. height: math.unit(2, "feet"),
  31731. name: "Lying",
  31732. image: {
  31733. source: "./media/characters/purri/lying.svg",
  31734. extra: 940/843,
  31735. bottom: 146/1086
  31736. }
  31737. },
  31738. devious: {
  31739. height: math.unit(1.77, "feet"),
  31740. name: "Devious",
  31741. image: {
  31742. source: "./media/characters/purri/devious.svg",
  31743. extra: 1440/1155,
  31744. bottom: 147/1587
  31745. }
  31746. },
  31747. bean: {
  31748. height: math.unit(1.94, "feet"),
  31749. name: "Bean",
  31750. image: {
  31751. source: "./media/characters/purri/bean.svg"
  31752. }
  31753. },
  31754. },
  31755. [
  31756. {
  31757. name: "Micro",
  31758. height: math.unit(1, "mm")
  31759. },
  31760. {
  31761. name: "Normal",
  31762. height: math.unit(6 + 5/12, "feet"),
  31763. default: true
  31764. },
  31765. {
  31766. name: "Macro :3c",
  31767. height: math.unit(2, "miles")
  31768. },
  31769. ]
  31770. ))
  31771. characterMakers.push(() => makeCharacter(
  31772. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31773. {
  31774. front: {
  31775. height: math.unit(6 + 2/12, "feet"),
  31776. weight: math.unit(250, "lb"),
  31777. name: "Front",
  31778. image: {
  31779. source: "./media/characters/moonlight/front.svg",
  31780. extra: 1044/908,
  31781. bottom: 56/1100
  31782. }
  31783. },
  31784. feral: {
  31785. height: math.unit(3 + 1/12, "feet"),
  31786. weight: math.unit(50, "kg"),
  31787. name: "Feral",
  31788. image: {
  31789. source: "./media/characters/moonlight/feral.svg",
  31790. extra: 3705/2791,
  31791. bottom: 145/3850
  31792. }
  31793. },
  31794. paw: {
  31795. height: math.unit(1, "feet"),
  31796. name: "Paw",
  31797. image: {
  31798. source: "./media/characters/moonlight/paw.svg"
  31799. }
  31800. },
  31801. paws: {
  31802. height: math.unit(0.98, "feet"),
  31803. name: "Paws",
  31804. image: {
  31805. source: "./media/characters/moonlight/paws.svg",
  31806. extra: 939/939,
  31807. bottom: 50/989
  31808. }
  31809. },
  31810. mouth: {
  31811. height: math.unit(0.48, "feet"),
  31812. name: "Mouth",
  31813. image: {
  31814. source: "./media/characters/moonlight/mouth.svg"
  31815. }
  31816. },
  31817. dick: {
  31818. height: math.unit(1.46, "feet"),
  31819. name: "Dick",
  31820. image: {
  31821. source: "./media/characters/moonlight/dick.svg"
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Normal",
  31828. height: math.unit(6 + 2/12, "feet"),
  31829. default: true
  31830. },
  31831. {
  31832. name: "Macro",
  31833. height: math.unit(300, "feet")
  31834. },
  31835. {
  31836. name: "Macro+",
  31837. height: math.unit(1, "mile")
  31838. },
  31839. {
  31840. name: "Mt. Moon",
  31841. height: math.unit(5, "miles")
  31842. },
  31843. {
  31844. name: "Megamacro",
  31845. height: math.unit(15, "miles")
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31851. {
  31852. back: {
  31853. height: math.unit(6, "feet"),
  31854. weight: math.unit(150, "lb"),
  31855. name: "Back",
  31856. image: {
  31857. source: "./media/characters/sylen/back.svg",
  31858. extra: 1335/1273,
  31859. bottom: 107/1442
  31860. }
  31861. },
  31862. },
  31863. [
  31864. {
  31865. name: "Normal",
  31866. height: math.unit(5 + 5/12, "feet")
  31867. },
  31868. {
  31869. name: "Megamacro",
  31870. height: math.unit(3, "miles"),
  31871. default: true
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31877. {
  31878. front: {
  31879. height: math.unit(6, "feet"),
  31880. weight: math.unit(190, "lb"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/huttser/front.svg",
  31884. extra: 1152/1058,
  31885. bottom: 23/1175
  31886. }
  31887. },
  31888. side: {
  31889. height: math.unit(6, "feet"),
  31890. weight: math.unit(190, "lb"),
  31891. name: "Side",
  31892. image: {
  31893. source: "./media/characters/huttser/side.svg",
  31894. extra: 1174/1065,
  31895. bottom: 18/1192
  31896. }
  31897. },
  31898. back: {
  31899. height: math.unit(6, "feet"),
  31900. weight: math.unit(190, "lb"),
  31901. name: "Back",
  31902. image: {
  31903. source: "./media/characters/huttser/back.svg",
  31904. extra: 1158/1056,
  31905. bottom: 12/1170
  31906. }
  31907. },
  31908. },
  31909. [
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31914. {
  31915. side: {
  31916. height: math.unit(12 + 9/12, "feet"),
  31917. weight: math.unit(15000, "lb"),
  31918. name: "Side",
  31919. image: {
  31920. source: "./media/characters/faan/side.svg",
  31921. extra: 2747/2697,
  31922. bottom: 0/2747
  31923. }
  31924. },
  31925. front: {
  31926. height: math.unit(12 + 9/12, "feet"),
  31927. weight: math.unit(15000, "lb"),
  31928. name: "Front",
  31929. image: {
  31930. source: "./media/characters/faan/front.svg",
  31931. extra: 607/571,
  31932. bottom: 24/631
  31933. }
  31934. },
  31935. head: {
  31936. height: math.unit(2.85, "feet"),
  31937. name: "Head",
  31938. image: {
  31939. source: "./media/characters/faan/head.svg"
  31940. }
  31941. },
  31942. headAlt: {
  31943. height: math.unit(3.13, "feet"),
  31944. name: "Head-alt",
  31945. image: {
  31946. source: "./media/characters/faan/head-alt.svg"
  31947. }
  31948. },
  31949. },
  31950. [
  31951. {
  31952. name: "Normal",
  31953. height: math.unit(12 + 9/12, "feet"),
  31954. default: true
  31955. },
  31956. ]
  31957. ))
  31958. characterMakers.push(() => makeCharacter(
  31959. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31960. {
  31961. front: {
  31962. height: math.unit(6, "feet"),
  31963. weight: math.unit(300, "lb"),
  31964. name: "Front",
  31965. image: {
  31966. source: "./media/characters/tanio/front.svg",
  31967. extra: 711/673,
  31968. bottom: 25/736
  31969. }
  31970. },
  31971. },
  31972. [
  31973. {
  31974. name: "Normal",
  31975. height: math.unit(6, "feet"),
  31976. default: true
  31977. },
  31978. ]
  31979. ))
  31980. characterMakers.push(() => makeCharacter(
  31981. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31982. {
  31983. front: {
  31984. height: math.unit(3, "inches"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/noboru/front.svg",
  31988. extra: 1039/932,
  31989. bottom: 18/1057
  31990. }
  31991. },
  31992. },
  31993. [
  31994. {
  31995. name: "Micro",
  31996. height: math.unit(3, "inches"),
  31997. default: true
  31998. },
  31999. ]
  32000. ))
  32001. characterMakers.push(() => makeCharacter(
  32002. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32003. {
  32004. front: {
  32005. height: math.unit(1.85, "meters"),
  32006. weight: math.unit(80, "kg"),
  32007. name: "Front",
  32008. image: {
  32009. source: "./media/characters/daniel-barrett/front.svg",
  32010. extra: 355/337,
  32011. bottom: 9/364
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Pico",
  32018. height: math.unit(0.0433, "mm")
  32019. },
  32020. {
  32021. name: "Nano",
  32022. height: math.unit(1.5, "mm")
  32023. },
  32024. {
  32025. name: "Micro",
  32026. height: math.unit(5.3, "cm"),
  32027. default: true
  32028. },
  32029. {
  32030. name: "Normal",
  32031. height: math.unit(1.85, "meters")
  32032. },
  32033. {
  32034. name: "Macro",
  32035. height: math.unit(64.7, "meters")
  32036. },
  32037. {
  32038. name: "Megamacro",
  32039. height: math.unit(2.26, "km")
  32040. },
  32041. {
  32042. name: "Gigamacro",
  32043. height: math.unit(79, "km")
  32044. },
  32045. {
  32046. name: "Teramacro",
  32047. height: math.unit(2765, "km")
  32048. },
  32049. {
  32050. name: "Petamacro",
  32051. height: math.unit(96678, "km")
  32052. },
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32057. {
  32058. front: {
  32059. height: math.unit(30, "meters"),
  32060. weight: math.unit(400, "tons"),
  32061. name: "Front",
  32062. image: {
  32063. source: "./media/characters/zeel/front.svg",
  32064. extra: 2599/2599,
  32065. bottom: 226/2825
  32066. }
  32067. },
  32068. },
  32069. [
  32070. {
  32071. name: "Macro",
  32072. height: math.unit(30, "meters"),
  32073. default: true
  32074. },
  32075. ]
  32076. ))
  32077. characterMakers.push(() => makeCharacter(
  32078. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32079. {
  32080. front: {
  32081. height: math.unit(6 + 7/12, "feet"),
  32082. weight: math.unit(210, "lb"),
  32083. name: "Front",
  32084. image: {
  32085. source: "./media/characters/tarn/front.svg",
  32086. extra: 3517/3220,
  32087. bottom: 91/3608
  32088. }
  32089. },
  32090. back: {
  32091. height: math.unit(6 + 7/12, "feet"),
  32092. weight: math.unit(210, "lb"),
  32093. name: "Back",
  32094. image: {
  32095. source: "./media/characters/tarn/back.svg",
  32096. extra: 3566/3241,
  32097. bottom: 34/3600
  32098. }
  32099. },
  32100. dick: {
  32101. height: math.unit(1.65, "feet"),
  32102. name: "Dick",
  32103. image: {
  32104. source: "./media/characters/tarn/dick.svg"
  32105. }
  32106. },
  32107. paw: {
  32108. height: math.unit(1.80, "feet"),
  32109. name: "Paw",
  32110. image: {
  32111. source: "./media/characters/tarn/paw.svg"
  32112. }
  32113. },
  32114. tongue: {
  32115. height: math.unit(0.97, "feet"),
  32116. name: "Tongue",
  32117. image: {
  32118. source: "./media/characters/tarn/tongue.svg"
  32119. }
  32120. },
  32121. },
  32122. [
  32123. {
  32124. name: "Micro",
  32125. height: math.unit(4, "inches")
  32126. },
  32127. {
  32128. name: "Normal",
  32129. height: math.unit(6 + 7/12, "feet"),
  32130. default: true
  32131. },
  32132. {
  32133. name: "Macro",
  32134. height: math.unit(300, "feet")
  32135. },
  32136. ]
  32137. ))
  32138. characterMakers.push(() => makeCharacter(
  32139. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32140. {
  32141. front: {
  32142. height: math.unit(5 + 7/12, "feet"),
  32143. weight: math.unit(80, "kg"),
  32144. name: "Front",
  32145. image: {
  32146. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32147. extra: 3023/2865,
  32148. bottom: 33/3056
  32149. }
  32150. },
  32151. back: {
  32152. height: math.unit(5 + 7/12, "feet"),
  32153. weight: math.unit(80, "kg"),
  32154. name: "Back",
  32155. image: {
  32156. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32157. extra: 3020/2886,
  32158. bottom: 30/3050
  32159. }
  32160. },
  32161. dick: {
  32162. height: math.unit(0.98, "feet"),
  32163. name: "Dick",
  32164. image: {
  32165. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32166. }
  32167. },
  32168. anatomy: {
  32169. height: math.unit(2.86, "feet"),
  32170. name: "Anatomy",
  32171. image: {
  32172. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32173. }
  32174. },
  32175. },
  32176. [
  32177. {
  32178. name: "Really Small",
  32179. height: math.unit(2, "inches")
  32180. },
  32181. {
  32182. name: "Micro",
  32183. height: math.unit(5.583, "inches")
  32184. },
  32185. {
  32186. name: "Normal",
  32187. height: math.unit(5 + 7/12, "feet"),
  32188. default: true
  32189. },
  32190. {
  32191. name: "Macro",
  32192. height: math.unit(67, "feet")
  32193. },
  32194. {
  32195. name: "Megamacro",
  32196. height: math.unit(134, "feet")
  32197. },
  32198. ]
  32199. ))
  32200. characterMakers.push(() => makeCharacter(
  32201. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32202. {
  32203. front: {
  32204. height: math.unit(9, "feet"),
  32205. weight: math.unit(120, "lb"),
  32206. name: "Front",
  32207. image: {
  32208. source: "./media/characters/sally/front.svg",
  32209. extra: 1506/1349,
  32210. bottom: 66/1572
  32211. }
  32212. },
  32213. },
  32214. [
  32215. {
  32216. name: "Normal",
  32217. height: math.unit(9, "feet"),
  32218. default: true
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32224. {
  32225. front: {
  32226. height: math.unit(8, "feet"),
  32227. weight: math.unit(900, "lb"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/owen/front.svg",
  32231. extra: 1761/1657,
  32232. bottom: 74/1835
  32233. }
  32234. },
  32235. side: {
  32236. height: math.unit(8, "feet"),
  32237. weight: math.unit(900, "lb"),
  32238. name: "Side",
  32239. image: {
  32240. source: "./media/characters/owen/side.svg",
  32241. extra: 1797/1734,
  32242. bottom: 30/1827
  32243. }
  32244. },
  32245. back: {
  32246. height: math.unit(8, "feet"),
  32247. weight: math.unit(900, "lb"),
  32248. name: "Back",
  32249. image: {
  32250. source: "./media/characters/owen/back.svg",
  32251. extra: 1796/1706,
  32252. bottom: 59/1855
  32253. }
  32254. },
  32255. maw: {
  32256. height: math.unit(1.76, "feet"),
  32257. name: "Maw",
  32258. image: {
  32259. source: "./media/characters/owen/maw.svg"
  32260. }
  32261. },
  32262. },
  32263. [
  32264. {
  32265. name: "Normal",
  32266. height: math.unit(8, "feet"),
  32267. default: true
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32273. {
  32274. front: {
  32275. height: math.unit(4, "feet"),
  32276. weight: math.unit(400, "lb"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/ryth/front.svg",
  32280. extra: 1920/1748,
  32281. bottom: 42/1962
  32282. }
  32283. },
  32284. back: {
  32285. height: math.unit(4, "feet"),
  32286. weight: math.unit(400, "lb"),
  32287. name: "Back",
  32288. image: {
  32289. source: "./media/characters/ryth/back.svg",
  32290. extra: 1897/1690,
  32291. bottom: 89/1986
  32292. }
  32293. },
  32294. mouth: {
  32295. height: math.unit(1.39, "feet"),
  32296. name: "Mouth",
  32297. image: {
  32298. source: "./media/characters/ryth/mouth.svg"
  32299. }
  32300. },
  32301. tailmaw: {
  32302. height: math.unit(1.23, "feet"),
  32303. name: "Tailmaw",
  32304. image: {
  32305. source: "./media/characters/ryth/tailmaw.svg"
  32306. }
  32307. },
  32308. goia: {
  32309. height: math.unit(4, "meters"),
  32310. weight: math.unit(10800, "lb"),
  32311. name: "Goia",
  32312. image: {
  32313. source: "./media/characters/ryth/goia.svg",
  32314. extra: 745/640,
  32315. bottom: 107/852
  32316. }
  32317. },
  32318. goiaFront: {
  32319. height: math.unit(4, "meters"),
  32320. weight: math.unit(10800, "lb"),
  32321. name: "Goia (Front)",
  32322. image: {
  32323. source: "./media/characters/ryth/goia-front.svg",
  32324. extra: 750/586,
  32325. bottom: 114/864
  32326. }
  32327. },
  32328. goiaMaw: {
  32329. height: math.unit(5.55, "feet"),
  32330. name: "Goia Maw",
  32331. image: {
  32332. source: "./media/characters/ryth/goia-maw.svg"
  32333. }
  32334. },
  32335. goiaForepaw: {
  32336. height: math.unit(3.5, "feet"),
  32337. name: "Goia Forepaw",
  32338. image: {
  32339. source: "./media/characters/ryth/goia-forepaw.svg"
  32340. }
  32341. },
  32342. goiaHindpaw: {
  32343. height: math.unit(5.55, "feet"),
  32344. name: "Goia Hindpaw",
  32345. image: {
  32346. source: "./media/characters/ryth/goia-hindpaw.svg"
  32347. }
  32348. },
  32349. },
  32350. [
  32351. {
  32352. name: "Normal",
  32353. height: math.unit(4, "feet"),
  32354. default: true
  32355. },
  32356. ]
  32357. ))
  32358. characterMakers.push(() => makeCharacter(
  32359. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32360. {
  32361. front: {
  32362. height: math.unit(7, "feet"),
  32363. weight: math.unit(180, "lb"),
  32364. name: "Front",
  32365. image: {
  32366. source: "./media/characters/necrolance/front.svg",
  32367. extra: 1062/947,
  32368. bottom: 41/1103
  32369. }
  32370. },
  32371. back: {
  32372. height: math.unit(7, "feet"),
  32373. weight: math.unit(180, "lb"),
  32374. name: "Back",
  32375. image: {
  32376. source: "./media/characters/necrolance/back.svg",
  32377. extra: 1045/984,
  32378. bottom: 14/1059
  32379. }
  32380. },
  32381. wing: {
  32382. height: math.unit(2.67, "feet"),
  32383. name: "Wing",
  32384. image: {
  32385. source: "./media/characters/necrolance/wing.svg"
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(7, "feet"),
  32393. default: true
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32399. {
  32400. front: {
  32401. height: math.unit(76, "meters"),
  32402. weight: math.unit(30000, "tons"),
  32403. name: "Front",
  32404. image: {
  32405. source: "./media/characters/tyler/front.svg",
  32406. extra: 1640/1640,
  32407. bottom: 114/1754
  32408. }
  32409. },
  32410. },
  32411. [
  32412. {
  32413. name: "Macro",
  32414. height: math.unit(76, "meters"),
  32415. default: true
  32416. },
  32417. ]
  32418. ))
  32419. characterMakers.push(() => makeCharacter(
  32420. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32421. {
  32422. front: {
  32423. height: math.unit(4 + 11/12, "feet"),
  32424. weight: math.unit(132, "lb"),
  32425. name: "Front",
  32426. image: {
  32427. source: "./media/characters/icey/front.svg",
  32428. extra: 2750/2550,
  32429. bottom: 33/2783
  32430. }
  32431. },
  32432. back: {
  32433. height: math.unit(4 + 11/12, "feet"),
  32434. weight: math.unit(132, "lb"),
  32435. name: "Back",
  32436. image: {
  32437. source: "./media/characters/icey/back.svg",
  32438. extra: 2624/2481,
  32439. bottom: 35/2659
  32440. }
  32441. },
  32442. },
  32443. [
  32444. {
  32445. name: "Normal",
  32446. height: math.unit(4 + 11/12, "feet"),
  32447. default: true
  32448. },
  32449. ]
  32450. ))
  32451. characterMakers.push(() => makeCharacter(
  32452. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32453. {
  32454. front: {
  32455. height: math.unit(100, "feet"),
  32456. weight: math.unit(0, "lb"),
  32457. name: "Front",
  32458. image: {
  32459. source: "./media/characters/smile/front.svg",
  32460. extra: 2983/2912,
  32461. bottom: 162/3145
  32462. }
  32463. },
  32464. back: {
  32465. height: math.unit(100, "feet"),
  32466. weight: math.unit(0, "lb"),
  32467. name: "Back",
  32468. image: {
  32469. source: "./media/characters/smile/back.svg",
  32470. extra: 3143/3031,
  32471. bottom: 91/3234
  32472. }
  32473. },
  32474. head: {
  32475. height: math.unit(26.3, "feet"),
  32476. weight: math.unit(0, "lb"),
  32477. name: "Head",
  32478. image: {
  32479. source: "./media/characters/smile/head.svg"
  32480. }
  32481. },
  32482. collar: {
  32483. height: math.unit(5.3, "feet"),
  32484. weight: math.unit(0, "lb"),
  32485. name: "Collar",
  32486. image: {
  32487. source: "./media/characters/smile/collar.svg"
  32488. }
  32489. },
  32490. },
  32491. [
  32492. {
  32493. name: "Macro",
  32494. height: math.unit(100, "feet"),
  32495. default: true
  32496. },
  32497. ]
  32498. ))
  32499. characterMakers.push(() => makeCharacter(
  32500. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32501. {
  32502. dragon: {
  32503. height: math.unit(26, "feet"),
  32504. weight: math.unit(36, "tons"),
  32505. name: "Dragon",
  32506. image: {
  32507. source: "./media/characters/arimphae/dragon.svg",
  32508. extra: 1574/983,
  32509. bottom: 357/1931
  32510. }
  32511. },
  32512. drake: {
  32513. height: math.unit(9, "feet"),
  32514. weight: math.unit(1.5, "tons"),
  32515. name: "Drake",
  32516. image: {
  32517. source: "./media/characters/arimphae/drake.svg",
  32518. extra: 1120/925,
  32519. bottom: 435/1555
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Small",
  32526. height: math.unit(26*5/9, "feet")
  32527. },
  32528. {
  32529. name: "Normal",
  32530. height: math.unit(26, "feet"),
  32531. default: true
  32532. },
  32533. ]
  32534. ))
  32535. characterMakers.push(() => makeCharacter(
  32536. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32537. {
  32538. front: {
  32539. height: math.unit(8 + 9/12, "feet"),
  32540. name: "Front",
  32541. image: {
  32542. source: "./media/characters/xander/front.svg",
  32543. extra: 1237/974,
  32544. bottom: 94/1331
  32545. }
  32546. },
  32547. },
  32548. [
  32549. {
  32550. name: "Normal",
  32551. height: math.unit(8 + 9/12, "feet"),
  32552. default: true
  32553. },
  32554. {
  32555. name: "Gaze Grabber",
  32556. height: math.unit(13 + 8/12, "feet")
  32557. },
  32558. {
  32559. name: "Jaw Dropper",
  32560. height: math.unit(27, "feet")
  32561. },
  32562. {
  32563. name: "Show Stopper",
  32564. height: math.unit(136, "feet")
  32565. },
  32566. {
  32567. name: "Superstar",
  32568. height: math.unit(1.9e6, "miles")
  32569. },
  32570. ]
  32571. ))
  32572. characterMakers.push(() => makeCharacter(
  32573. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32574. {
  32575. side: {
  32576. height: math.unit(2100, "feet"),
  32577. name: "Side",
  32578. image: {
  32579. source: "./media/characters/osiris/side.svg",
  32580. extra: 1105/939,
  32581. bottom: 167/1272
  32582. }
  32583. },
  32584. },
  32585. [
  32586. {
  32587. name: "Macro",
  32588. height: math.unit(2100, "feet"),
  32589. default: true
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32595. {
  32596. front: {
  32597. height: math.unit(6 + 8/12, "feet"),
  32598. weight: math.unit(225, "lb"),
  32599. name: "Front",
  32600. image: {
  32601. source: "./media/characters/rhys-londe/front.svg",
  32602. extra: 2258/2141,
  32603. bottom: 188/2446
  32604. }
  32605. },
  32606. back: {
  32607. height: math.unit(6 + 8/12, "feet"),
  32608. weight: math.unit(225, "lb"),
  32609. name: "Back",
  32610. image: {
  32611. source: "./media/characters/rhys-londe/back.svg",
  32612. extra: 2237/2137,
  32613. bottom: 63/2300
  32614. }
  32615. },
  32616. frontNsfw: {
  32617. height: math.unit(6 + 8/12, "feet"),
  32618. weight: math.unit(225, "lb"),
  32619. name: "Front (NSFW)",
  32620. image: {
  32621. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32622. extra: 2258/2141,
  32623. bottom: 188/2446
  32624. }
  32625. },
  32626. backNsfw: {
  32627. height: math.unit(6 + 8/12, "feet"),
  32628. weight: math.unit(225, "lb"),
  32629. name: "Back (NSFW)",
  32630. image: {
  32631. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32632. extra: 2237/2137,
  32633. bottom: 63/2300
  32634. }
  32635. },
  32636. dick: {
  32637. height: math.unit(30, "inches"),
  32638. name: "Dick",
  32639. image: {
  32640. source: "./media/characters/rhys-londe/dick.svg"
  32641. }
  32642. },
  32643. maw: {
  32644. height: math.unit(1.6, "feet"),
  32645. name: "Maw",
  32646. image: {
  32647. source: "./media/characters/rhys-londe/maw.svg"
  32648. }
  32649. },
  32650. },
  32651. [
  32652. {
  32653. name: "Normal",
  32654. height: math.unit(6 + 8/12, "feet"),
  32655. default: true
  32656. },
  32657. ]
  32658. ))
  32659. characterMakers.push(() => makeCharacter(
  32660. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32661. {
  32662. front: {
  32663. height: math.unit(3 + 10/12, "feet"),
  32664. weight: math.unit(90, "lb"),
  32665. name: "Front",
  32666. image: {
  32667. source: "./media/characters/taivas-ensim/front.svg",
  32668. extra: 1327/1216,
  32669. bottom: 96/1423
  32670. }
  32671. },
  32672. back: {
  32673. height: math.unit(3 + 10/12, "feet"),
  32674. weight: math.unit(90, "lb"),
  32675. name: "Back",
  32676. image: {
  32677. source: "./media/characters/taivas-ensim/back.svg",
  32678. extra: 1355/1247,
  32679. bottom: 11/1366
  32680. }
  32681. },
  32682. frontNsfw: {
  32683. height: math.unit(3 + 10/12, "feet"),
  32684. weight: math.unit(90, "lb"),
  32685. name: "Front (NSFW)",
  32686. image: {
  32687. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32688. extra: 1327/1216,
  32689. bottom: 96/1423
  32690. }
  32691. },
  32692. backNsfw: {
  32693. height: math.unit(3 + 10/12, "feet"),
  32694. weight: math.unit(90, "lb"),
  32695. name: "Back (NSFW)",
  32696. image: {
  32697. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32698. extra: 1355/1247,
  32699. bottom: 11/1366
  32700. }
  32701. },
  32702. },
  32703. [
  32704. {
  32705. name: "Normal",
  32706. height: math.unit(3 + 10/12, "feet"),
  32707. default: true
  32708. },
  32709. ]
  32710. ))
  32711. characterMakers.push(() => makeCharacter(
  32712. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32713. {
  32714. front: {
  32715. height: math.unit(9 + 6/12, "feet"),
  32716. weight: math.unit(940, "lb"),
  32717. name: "Front",
  32718. image: {
  32719. source: "./media/characters/byliss/front.svg",
  32720. extra: 1327/1290,
  32721. bottom: 82/1409
  32722. }
  32723. },
  32724. back: {
  32725. height: math.unit(9 + 6/12, "feet"),
  32726. weight: math.unit(940, "lb"),
  32727. name: "Back",
  32728. image: {
  32729. source: "./media/characters/byliss/back.svg",
  32730. extra: 1376/1349,
  32731. bottom: 9/1385
  32732. }
  32733. },
  32734. frontNsfw: {
  32735. height: math.unit(9 + 6/12, "feet"),
  32736. weight: math.unit(940, "lb"),
  32737. name: "Front (NSFW)",
  32738. image: {
  32739. source: "./media/characters/byliss/front-nsfw.svg",
  32740. extra: 1327/1290,
  32741. bottom: 82/1409
  32742. }
  32743. },
  32744. backNsfw: {
  32745. height: math.unit(9 + 6/12, "feet"),
  32746. weight: math.unit(940, "lb"),
  32747. name: "Back (NSFW)",
  32748. image: {
  32749. source: "./media/characters/byliss/back-nsfw.svg",
  32750. extra: 1376/1349,
  32751. bottom: 9/1385
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "Normal",
  32758. height: math.unit(9 + 6/12, "feet"),
  32759. default: true
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(5 + 2/12, "feet"),
  32768. weight: math.unit(200, "lb"),
  32769. name: "Front",
  32770. image: {
  32771. source: "./media/characters/noraly/front.svg",
  32772. extra: 4985/4773,
  32773. bottom: 150/5135
  32774. }
  32775. },
  32776. full: {
  32777. height: math.unit(5 + 2/12, "feet"),
  32778. weight: math.unit(164, "lb"),
  32779. name: "Full",
  32780. image: {
  32781. source: "./media/characters/noraly/full.svg",
  32782. extra: 1114/1059,
  32783. bottom: 35/1149
  32784. }
  32785. },
  32786. fuller: {
  32787. height: math.unit(5 + 2/12, "feet"),
  32788. weight: math.unit(230, "lb"),
  32789. name: "Fuller",
  32790. image: {
  32791. source: "./media/characters/noraly/fuller.svg",
  32792. extra: 1114/1059,
  32793. bottom: 35/1149
  32794. }
  32795. },
  32796. fullest: {
  32797. height: math.unit(5 + 2/12, "feet"),
  32798. weight: math.unit(300, "lb"),
  32799. name: "Fullest",
  32800. image: {
  32801. source: "./media/characters/noraly/fullest.svg",
  32802. extra: 1114/1059,
  32803. bottom: 35/1149
  32804. }
  32805. },
  32806. },
  32807. [
  32808. {
  32809. name: "Normal",
  32810. height: math.unit(5 + 2/12, "feet"),
  32811. default: true
  32812. },
  32813. ]
  32814. ))
  32815. characterMakers.push(() => makeCharacter(
  32816. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32817. {
  32818. front: {
  32819. height: math.unit(5 + 2/12, "feet"),
  32820. weight: math.unit(210, "lb"),
  32821. name: "Front",
  32822. image: {
  32823. source: "./media/characters/pera/front.svg",
  32824. extra: 1560/1531,
  32825. bottom: 165/1725
  32826. }
  32827. },
  32828. back: {
  32829. height: math.unit(5 + 2/12, "feet"),
  32830. weight: math.unit(210, "lb"),
  32831. name: "Back",
  32832. image: {
  32833. source: "./media/characters/pera/back.svg",
  32834. extra: 1523/1493,
  32835. bottom: 152/1675
  32836. }
  32837. },
  32838. dick: {
  32839. height: math.unit(2.4, "feet"),
  32840. name: "Dick",
  32841. image: {
  32842. source: "./media/characters/pera/dick.svg"
  32843. }
  32844. },
  32845. },
  32846. [
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(5 + 2/12, "feet"),
  32850. default: true
  32851. },
  32852. ]
  32853. ))
  32854. characterMakers.push(() => makeCharacter(
  32855. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32856. {
  32857. front: {
  32858. height: math.unit(12, "feet"),
  32859. weight: math.unit(3200, "lb"),
  32860. name: "Front",
  32861. image: {
  32862. source: "./media/characters/julian/front.svg",
  32863. extra: 2962/2701,
  32864. bottom: 184/3146
  32865. }
  32866. },
  32867. maw: {
  32868. height: math.unit(5.35, "feet"),
  32869. name: "Maw",
  32870. image: {
  32871. source: "./media/characters/julian/maw.svg"
  32872. }
  32873. },
  32874. paw: {
  32875. height: math.unit(3.07, "feet"),
  32876. name: "Paw",
  32877. image: {
  32878. source: "./media/characters/julian/paw.svg"
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Default",
  32885. height: math.unit(12, "feet"),
  32886. default: true
  32887. },
  32888. {
  32889. name: "Big",
  32890. height: math.unit(50, "feet")
  32891. },
  32892. {
  32893. name: "Really Big",
  32894. height: math.unit(1, "mile")
  32895. },
  32896. {
  32897. name: "Extremely Big",
  32898. height: math.unit(100, "miles")
  32899. },
  32900. {
  32901. name: "Planet Hugger",
  32902. height: math.unit(200, "megameters")
  32903. },
  32904. {
  32905. name: "Unreasonably Big",
  32906. height: math.unit(1e300, "meters")
  32907. },
  32908. ]
  32909. ))
  32910. characterMakers.push(() => makeCharacter(
  32911. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32912. {
  32913. solgooleo: {
  32914. height: math.unit(4, "meters"),
  32915. weight: math.unit(6000*1.5, "kg"),
  32916. volume: math.unit(6000, "liters"),
  32917. name: "Solgooleo",
  32918. image: {
  32919. source: "./media/characters/pi/solgooleo.svg",
  32920. extra: 388/331,
  32921. bottom: 29/417
  32922. }
  32923. },
  32924. },
  32925. [
  32926. {
  32927. name: "Normal",
  32928. height: math.unit(4, "meters"),
  32929. default: true
  32930. },
  32931. ]
  32932. ))
  32933. characterMakers.push(() => makeCharacter(
  32934. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32935. {
  32936. front: {
  32937. height: math.unit(8, "feet"),
  32938. weight: math.unit(4, "tons"),
  32939. name: "Front",
  32940. image: {
  32941. source: "./media/characters/shaun/front.svg",
  32942. extra: 503/495,
  32943. bottom: 20/523
  32944. }
  32945. },
  32946. back: {
  32947. height: math.unit(8, "feet"),
  32948. weight: math.unit(4, "tons"),
  32949. name: "Back",
  32950. image: {
  32951. source: "./media/characters/shaun/back.svg",
  32952. extra: 487/480,
  32953. bottom: 20/507
  32954. }
  32955. },
  32956. },
  32957. [
  32958. {
  32959. name: "Lorg",
  32960. height: math.unit(8, "feet"),
  32961. default: true
  32962. },
  32963. ]
  32964. ))
  32965. characterMakers.push(() => makeCharacter(
  32966. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32967. {
  32968. front: {
  32969. height: math.unit(7, "feet"),
  32970. name: "Front",
  32971. image: {
  32972. source: "./media/characters/sini/front.svg",
  32973. extra: 726/678,
  32974. bottom: 35/761
  32975. }
  32976. },
  32977. back: {
  32978. height: math.unit(7, "feet"),
  32979. name: "Back",
  32980. image: {
  32981. source: "./media/characters/sini/back.svg",
  32982. extra: 743/701,
  32983. bottom: 12/755
  32984. }
  32985. },
  32986. mawAnthro: {
  32987. height: math.unit(2.14, "feet"),
  32988. name: "Maw (Anthro)",
  32989. image: {
  32990. source: "./media/characters/sini/maw-anthro.svg"
  32991. }
  32992. },
  32993. dick: {
  32994. height: math.unit(1.45, "feet"),
  32995. name: "Dick (Anthro)",
  32996. image: {
  32997. source: "./media/characters/sini/dick-anthro.svg"
  32998. }
  32999. },
  33000. feral: {
  33001. height: math.unit(16, "feet"),
  33002. name: "Feral",
  33003. image: {
  33004. source: "./media/characters/sini/feral.svg",
  33005. extra: 814/605,
  33006. bottom: 11/825
  33007. }
  33008. },
  33009. mawFeral: {
  33010. height: math.unit(5.66, "feet"),
  33011. name: "Maw-feral",
  33012. image: {
  33013. source: "./media/characters/sini/maw-feral.svg"
  33014. }
  33015. },
  33016. footFeral: {
  33017. height: math.unit(5.17, "feet"),
  33018. name: "Foot-feral",
  33019. image: {
  33020. source: "./media/characters/sini/foot-feral.svg"
  33021. }
  33022. },
  33023. },
  33024. [
  33025. {
  33026. name: "Normal",
  33027. height: math.unit(7, "feet"),
  33028. default: true
  33029. },
  33030. ]
  33031. ))
  33032. characterMakers.push(() => makeCharacter(
  33033. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33034. {
  33035. side: {
  33036. height: math.unit(13, "meters"),
  33037. weight: math.unit(9072, "kg"),
  33038. name: "Side",
  33039. image: {
  33040. source: "./media/characters/raylldo/side.svg",
  33041. extra: 403/344,
  33042. bottom: 42/445
  33043. }
  33044. },
  33045. leaping: {
  33046. height: math.unit(12.3, "meters"),
  33047. weight: math.unit(9072, "kg"),
  33048. name: "Leaping",
  33049. image: {
  33050. source: "./media/characters/raylldo/leaping.svg",
  33051. extra: 470/249,
  33052. bottom: 13/483
  33053. }
  33054. },
  33055. flying: {
  33056. height: math.unit(18, "meters"),
  33057. weight: math.unit(9072, "kg"),
  33058. name: "Flying",
  33059. image: {
  33060. source: "./media/characters/raylldo/flying.svg"
  33061. }
  33062. },
  33063. head: {
  33064. height: math.unit(5.85, "meters"),
  33065. name: "Head",
  33066. image: {
  33067. source: "./media/characters/raylldo/head.svg"
  33068. }
  33069. },
  33070. maw: {
  33071. height: math.unit(5.32, "meters"),
  33072. name: "Maw",
  33073. image: {
  33074. source: "./media/characters/raylldo/maw.svg"
  33075. }
  33076. },
  33077. eye: {
  33078. height: math.unit(0.54, "meters"),
  33079. name: "Eye",
  33080. image: {
  33081. source: "./media/characters/raylldo/eye.svg"
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(13, "meters"),
  33089. default: true
  33090. },
  33091. ]
  33092. ))
  33093. characterMakers.push(() => makeCharacter(
  33094. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33095. {
  33096. anthroFront: {
  33097. height: math.unit(9, "feet"),
  33098. weight: math.unit(600, "lb"),
  33099. name: "Anthro (Front)",
  33100. image: {
  33101. source: "./media/characters/glint/anthro-front.svg",
  33102. extra: 1097/1018,
  33103. bottom: 28/1125
  33104. }
  33105. },
  33106. anthroBack: {
  33107. height: math.unit(9, "feet"),
  33108. weight: math.unit(600, "lb"),
  33109. name: "Anthro (Back)",
  33110. image: {
  33111. source: "./media/characters/glint/anthro-back.svg",
  33112. extra: 1154/997,
  33113. bottom: 36/1190
  33114. }
  33115. },
  33116. feral: {
  33117. height: math.unit(11, "feet"),
  33118. weight: math.unit(50000, "lb"),
  33119. name: "Feral",
  33120. image: {
  33121. source: "./media/characters/glint/feral.svg",
  33122. extra: 3035/1585,
  33123. bottom: 1169/4204
  33124. }
  33125. },
  33126. dickAnthro: {
  33127. height: math.unit(0.7, "meters"),
  33128. name: "Dick (Anthro)",
  33129. image: {
  33130. source: "./media/characters/glint/dick-anthro.svg"
  33131. }
  33132. },
  33133. dickFeral: {
  33134. height: math.unit(2.65, "meters"),
  33135. name: "Dick (Feral)",
  33136. image: {
  33137. source: "./media/characters/glint/dick-feral.svg"
  33138. }
  33139. },
  33140. slitHidden: {
  33141. height: math.unit(5.85, "meters"),
  33142. name: "Slit (Hidden)",
  33143. image: {
  33144. source: "./media/characters/glint/slit-hidden.svg"
  33145. }
  33146. },
  33147. slitErect: {
  33148. height: math.unit(5.85, "meters"),
  33149. name: "Slit (Erect)",
  33150. image: {
  33151. source: "./media/characters/glint/slit-erect.svg"
  33152. }
  33153. },
  33154. mawAnthro: {
  33155. height: math.unit(0.63, "meters"),
  33156. name: "Maw (Anthro)",
  33157. image: {
  33158. source: "./media/characters/glint/maw.svg"
  33159. }
  33160. },
  33161. mawFeral: {
  33162. height: math.unit(2.89, "meters"),
  33163. name: "Maw (Feral)",
  33164. image: {
  33165. source: "./media/characters/glint/maw.svg"
  33166. }
  33167. },
  33168. },
  33169. [
  33170. {
  33171. name: "Normal",
  33172. height: math.unit(9, "feet"),
  33173. default: true
  33174. },
  33175. ]
  33176. ))
  33177. characterMakers.push(() => makeCharacter(
  33178. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33179. {
  33180. side: {
  33181. height: math.unit(15, "feet"),
  33182. weight: math.unit(5000, "kg"),
  33183. name: "Side",
  33184. image: {
  33185. source: "./media/characters/kairne/side.svg",
  33186. extra: 979/811,
  33187. bottom: 13/992
  33188. }
  33189. },
  33190. front: {
  33191. height: math.unit(15, "feet"),
  33192. weight: math.unit(5000, "kg"),
  33193. name: "Front",
  33194. image: {
  33195. source: "./media/characters/kairne/front.svg",
  33196. extra: 908/814,
  33197. bottom: 26/934
  33198. }
  33199. },
  33200. sideNsfw: {
  33201. height: math.unit(15, "feet"),
  33202. weight: math.unit(5000, "kg"),
  33203. name: "Side (NSFW)",
  33204. image: {
  33205. source: "./media/characters/kairne/side-nsfw.svg",
  33206. extra: 979/811,
  33207. bottom: 13/992
  33208. }
  33209. },
  33210. frontNsfw: {
  33211. height: math.unit(15, "feet"),
  33212. weight: math.unit(5000, "kg"),
  33213. name: "Front (NSFW)",
  33214. image: {
  33215. source: "./media/characters/kairne/front-nsfw.svg",
  33216. extra: 908/814,
  33217. bottom: 26/934
  33218. }
  33219. },
  33220. dickCaged: {
  33221. height: math.unit(0.65, "meters"),
  33222. name: "Dick-caged",
  33223. image: {
  33224. source: "./media/characters/kairne/dick-caged.svg"
  33225. }
  33226. },
  33227. dick: {
  33228. height: math.unit(0.79, "meters"),
  33229. name: "Dick",
  33230. image: {
  33231. source: "./media/characters/kairne/dick.svg"
  33232. }
  33233. },
  33234. genitals: {
  33235. height: math.unit(1.29, "meters"),
  33236. name: "Genitals",
  33237. image: {
  33238. source: "./media/characters/kairne/genitals.svg"
  33239. }
  33240. },
  33241. maw: {
  33242. height: math.unit(1.73, "meters"),
  33243. name: "Maw",
  33244. image: {
  33245. source: "./media/characters/kairne/maw.svg"
  33246. }
  33247. },
  33248. },
  33249. [
  33250. {
  33251. name: "Normal",
  33252. height: math.unit(15, "feet"),
  33253. default: true
  33254. },
  33255. ]
  33256. ))
  33257. characterMakers.push(() => makeCharacter(
  33258. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33259. {
  33260. front: {
  33261. height: math.unit(5 + 8/12, "feet"),
  33262. weight: math.unit(139, "lb"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/biscuit-jackal/front.svg",
  33266. extra: 2106/1961,
  33267. bottom: 58/2164
  33268. }
  33269. },
  33270. back: {
  33271. height: math.unit(5 + 8/12, "feet"),
  33272. weight: math.unit(139, "lb"),
  33273. name: "Back",
  33274. image: {
  33275. source: "./media/characters/biscuit-jackal/back.svg",
  33276. extra: 2132/1976,
  33277. bottom: 57/2189
  33278. }
  33279. },
  33280. werejackal: {
  33281. height: math.unit(6 + 3/12, "feet"),
  33282. weight: math.unit(188, "lb"),
  33283. name: "Werejackal",
  33284. image: {
  33285. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33286. extra: 2373/2178,
  33287. bottom: 53/2426
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(5 + 8/12, "feet"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(140, "cm"),
  33304. weight: math.unit(45, "kg"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/tayra-white/front.svg",
  33308. extra: 2229/2192,
  33309. bottom: 75/2304
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(140, "cm"),
  33317. default: true
  33318. },
  33319. ]
  33320. ))
  33321. characterMakers.push(() => makeCharacter(
  33322. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33323. {
  33324. front: {
  33325. height: math.unit(4 + 5/12, "feet"),
  33326. name: "Front",
  33327. image: {
  33328. source: "./media/characters/scoop/front.svg",
  33329. extra: 1257/1136,
  33330. bottom: 69/1326
  33331. }
  33332. },
  33333. back: {
  33334. height: math.unit(4 + 5/12, "feet"),
  33335. name: "Back",
  33336. image: {
  33337. source: "./media/characters/scoop/back.svg",
  33338. extra: 1321/1152,
  33339. bottom: 32/1353
  33340. }
  33341. },
  33342. maw: {
  33343. height: math.unit(0.68, "feet"),
  33344. name: "Maw",
  33345. image: {
  33346. source: "./media/characters/scoop/maw.svg"
  33347. }
  33348. },
  33349. },
  33350. [
  33351. {
  33352. name: "Really Small",
  33353. height: math.unit(1, "mm")
  33354. },
  33355. {
  33356. name: "Micro",
  33357. height: math.unit(1, "inch")
  33358. },
  33359. {
  33360. name: "Normal",
  33361. height: math.unit(4 + 5/12, "feet"),
  33362. default: true
  33363. },
  33364. {
  33365. name: "Macro",
  33366. height: math.unit(200, "feet")
  33367. },
  33368. {
  33369. name: "Megamacro",
  33370. height: math.unit(3240, "feet")
  33371. },
  33372. {
  33373. name: "Teramacro",
  33374. height: math.unit(2500, "miles")
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33380. {
  33381. front: {
  33382. height: math.unit(15 + 7/12, "feet"),
  33383. name: "Front",
  33384. image: {
  33385. source: "./media/characters/saphinara/front.svg",
  33386. extra: 604/546,
  33387. bottom: 19/623
  33388. }
  33389. },
  33390. side: {
  33391. height: math.unit(15 + 7/12, "feet"),
  33392. name: "Side",
  33393. image: {
  33394. source: "./media/characters/saphinara/side.svg",
  33395. extra: 605/547,
  33396. bottom: 6/611
  33397. }
  33398. },
  33399. back: {
  33400. height: math.unit(15 + 7/12, "feet"),
  33401. name: "Back",
  33402. image: {
  33403. source: "./media/characters/saphinara/back.svg",
  33404. extra: 591/531,
  33405. bottom: 13/604
  33406. }
  33407. },
  33408. frontTail: {
  33409. height: math.unit(15 + 7/12, "feet"),
  33410. name: "Front (Full Tail)",
  33411. image: {
  33412. source: "./media/characters/saphinara/front-tail.svg",
  33413. extra: 748/547,
  33414. bottom: 66/814
  33415. }
  33416. },
  33417. },
  33418. [
  33419. {
  33420. name: "Normal",
  33421. height: math.unit(15 + 7/12, "feet"),
  33422. default: true
  33423. },
  33424. {
  33425. name: "Angry",
  33426. height: math.unit(30 + 6/12, "feet")
  33427. },
  33428. {
  33429. name: "Enraged",
  33430. height: math.unit(102 + 1/12, "feet")
  33431. },
  33432. ]
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33436. {
  33437. front: {
  33438. height: math.unit(6 + 8/12, "feet"),
  33439. weight: math.unit(300, "lb"),
  33440. name: "Front",
  33441. image: {
  33442. source: "./media/characters/jrain/front.svg",
  33443. extra: 3039/2865,
  33444. bottom: 399/3438
  33445. }
  33446. },
  33447. back: {
  33448. height: math.unit(6 + 8/12, "feet"),
  33449. weight: math.unit(300, "lb"),
  33450. name: "Back",
  33451. image: {
  33452. source: "./media/characters/jrain/back.svg",
  33453. extra: 3089/2938,
  33454. bottom: 172/3261
  33455. }
  33456. },
  33457. head: {
  33458. height: math.unit(2.14, "feet"),
  33459. name: "Head",
  33460. image: {
  33461. source: "./media/characters/jrain/head.svg"
  33462. }
  33463. },
  33464. maw: {
  33465. height: math.unit(1.77, "feet"),
  33466. name: "Maw",
  33467. image: {
  33468. source: "./media/characters/jrain/maw.svg"
  33469. }
  33470. },
  33471. leftHand: {
  33472. height: math.unit(1.1, "feet"),
  33473. name: "Left Hand",
  33474. image: {
  33475. source: "./media/characters/jrain/left-hand.svg"
  33476. }
  33477. },
  33478. rightHand: {
  33479. height: math.unit(1.1, "feet"),
  33480. name: "Right Hand",
  33481. image: {
  33482. source: "./media/characters/jrain/right-hand.svg"
  33483. }
  33484. },
  33485. eye: {
  33486. height: math.unit(0.35, "feet"),
  33487. name: "Eye",
  33488. image: {
  33489. source: "./media/characters/jrain/eye.svg"
  33490. }
  33491. },
  33492. },
  33493. [
  33494. {
  33495. name: "Normal",
  33496. height: math.unit(6 + 8/12, "feet"),
  33497. default: true
  33498. },
  33499. {
  33500. name: "Casually Large",
  33501. height: math.unit(25, "feet")
  33502. },
  33503. {
  33504. name: "Giant",
  33505. height: math.unit(100, "feet")
  33506. },
  33507. {
  33508. name: "Kaiju",
  33509. height: math.unit(300, "feet")
  33510. },
  33511. ]
  33512. ))
  33513. characterMakers.push(() => makeCharacter(
  33514. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33515. {
  33516. dragon: {
  33517. height: math.unit(5, "meters"),
  33518. name: "Dragon",
  33519. image: {
  33520. source: "./media/characters/sabrina/dragon.svg",
  33521. extra: 3670 / 2365,
  33522. bottom: 333 / 4003
  33523. }
  33524. },
  33525. gryphon: {
  33526. height: math.unit(3, "meters"),
  33527. name: "Gryphon",
  33528. image: {
  33529. source: "./media/characters/sabrina/gryphon.svg",
  33530. extra: 1576 / 945,
  33531. bottom: 71 / 1647
  33532. }
  33533. },
  33534. snake: {
  33535. height: math.unit(12, "meters"),
  33536. name: "Snake",
  33537. image: {
  33538. source: "./media/characters/sabrina/snake.svg",
  33539. extra: 1758 / 1320,
  33540. bottom: 186 / 1944
  33541. }
  33542. },
  33543. collar: {
  33544. height: math.unit(1.86, "meters"),
  33545. name: "Collar",
  33546. image: {
  33547. source: "./media/characters/sabrina/collar.svg"
  33548. }
  33549. },
  33550. eye: {
  33551. height: math.unit(0.53, "meters"),
  33552. name: "Eye",
  33553. image: {
  33554. source: "./media/characters/sabrina/eye.svg"
  33555. }
  33556. },
  33557. foot: {
  33558. height: math.unit(1.86, "meters"),
  33559. name: "Foot",
  33560. image: {
  33561. source: "./media/characters/sabrina/foot.svg"
  33562. }
  33563. },
  33564. hand: {
  33565. height: math.unit(1.32, "meters"),
  33566. name: "Hand",
  33567. image: {
  33568. source: "./media/characters/sabrina/hand.svg"
  33569. }
  33570. },
  33571. head: {
  33572. height: math.unit(2.44, "meters"),
  33573. name: "Head",
  33574. image: {
  33575. source: "./media/characters/sabrina/head.svg"
  33576. }
  33577. },
  33578. headAngry: {
  33579. height: math.unit(2.44, "meters"),
  33580. name: "Head (Angry))",
  33581. image: {
  33582. source: "./media/characters/sabrina/head-angry.svg"
  33583. }
  33584. },
  33585. maw: {
  33586. height: math.unit(1.65, "meters"),
  33587. name: "Maw",
  33588. image: {
  33589. source: "./media/characters/sabrina/maw.svg"
  33590. }
  33591. },
  33592. spikes: {
  33593. height: math.unit(1.69, "meters"),
  33594. name: "Spikes",
  33595. image: {
  33596. source: "./media/characters/sabrina/spikes.svg"
  33597. }
  33598. },
  33599. stomach: {
  33600. height: math.unit(1.15, "meters"),
  33601. name: "Stomach",
  33602. image: {
  33603. source: "./media/characters/sabrina/stomach.svg"
  33604. }
  33605. },
  33606. tongue: {
  33607. height: math.unit(1.27, "meters"),
  33608. name: "Tongue",
  33609. image: {
  33610. source: "./media/characters/sabrina/tongue.svg"
  33611. }
  33612. },
  33613. wingDorsal: {
  33614. height: math.unit(4.85, "meters"),
  33615. name: "Wing (Dorsal)",
  33616. image: {
  33617. source: "./media/characters/sabrina/wing-dorsal.svg"
  33618. }
  33619. },
  33620. wingVentral: {
  33621. height: math.unit(4.85, "meters"),
  33622. name: "Wing (Ventral)",
  33623. image: {
  33624. source: "./media/characters/sabrina/wing-ventral.svg"
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(5, "meters"),
  33632. default: true
  33633. },
  33634. ]
  33635. ))
  33636. characterMakers.push(() => makeCharacter(
  33637. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33638. {
  33639. frontMaid: {
  33640. height: math.unit(5 + 5/12, "feet"),
  33641. weight: math.unit(130, "lb"),
  33642. name: "Front (Maid)",
  33643. image: {
  33644. source: "./media/characters/midnight-tales/front-maid.svg",
  33645. extra: 489/454,
  33646. bottom: 61/550
  33647. }
  33648. },
  33649. frontFormal: {
  33650. height: math.unit(5 + 5/12, "feet"),
  33651. weight: math.unit(130, "lb"),
  33652. name: "Front (Formal)",
  33653. image: {
  33654. source: "./media/characters/midnight-tales/front-formal.svg",
  33655. extra: 489/454,
  33656. bottom: 61/550
  33657. }
  33658. },
  33659. back: {
  33660. height: math.unit(5 + 5/12, "feet"),
  33661. weight: math.unit(130, "lb"),
  33662. name: "Back",
  33663. image: {
  33664. source: "./media/characters/midnight-tales/back.svg",
  33665. extra: 498/456,
  33666. bottom: 33/531
  33667. }
  33668. },
  33669. frontBeast: {
  33670. height: math.unit(40, "feet"),
  33671. weight: math.unit(64000, "lb"),
  33672. name: "Front (Beast)",
  33673. image: {
  33674. source: "./media/characters/midnight-tales/front-beast.svg",
  33675. extra: 927/860,
  33676. bottom: 53/980
  33677. }
  33678. },
  33679. backBeast: {
  33680. height: math.unit(40, "feet"),
  33681. weight: math.unit(64000, "lb"),
  33682. name: "Back (Beast)",
  33683. image: {
  33684. source: "./media/characters/midnight-tales/back-beast.svg",
  33685. extra: 929/855,
  33686. bottom: 16/945
  33687. }
  33688. },
  33689. footBeast: {
  33690. height: math.unit(6.7, "feet"),
  33691. name: "Foot (Beast)",
  33692. image: {
  33693. source: "./media/characters/midnight-tales/foot-beast.svg"
  33694. }
  33695. },
  33696. headBeast: {
  33697. height: math.unit(8, "feet"),
  33698. name: "Head (Beast)",
  33699. image: {
  33700. source: "./media/characters/midnight-tales/head-beast.svg"
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(5 + 5 / 12, "feet"),
  33708. default: true
  33709. },
  33710. {
  33711. name: "Macro",
  33712. height: math.unit(25, "feet")
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(5 + 10/12, "feet"),
  33721. name: "Front",
  33722. image: {
  33723. source: "./media/characters/argon/front.svg",
  33724. extra: 2009/1935,
  33725. bottom: 118/2127
  33726. }
  33727. },
  33728. back: {
  33729. height: math.unit(5 + 10/12, "feet"),
  33730. name: "Back",
  33731. image: {
  33732. source: "./media/characters/argon/back.svg",
  33733. extra: 2047/1992,
  33734. bottom: 20/2067
  33735. }
  33736. },
  33737. frontDressed: {
  33738. height: math.unit(5 + 10/12, "feet"),
  33739. name: "Front (Dressed)",
  33740. image: {
  33741. source: "./media/characters/argon/front-dressed.svg",
  33742. extra: 2009/1935,
  33743. bottom: 118/2127
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Normal",
  33750. height: math.unit(5 + 10/12, "feet"),
  33751. default: true
  33752. },
  33753. ]
  33754. ))
  33755. characterMakers.push(() => makeCharacter(
  33756. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33757. {
  33758. front: {
  33759. height: math.unit(8 + 6/12, "feet"),
  33760. weight: math.unit(1150, "lb"),
  33761. name: "Front",
  33762. image: {
  33763. source: "./media/characters/kichi/front.svg",
  33764. extra: 1267/1164,
  33765. bottom: 61/1328
  33766. }
  33767. },
  33768. back: {
  33769. height: math.unit(8 + 6/12, "feet"),
  33770. weight: math.unit(1150, "lb"),
  33771. name: "Back",
  33772. image: {
  33773. source: "./media/characters/kichi/back.svg",
  33774. extra: 1273/1166,
  33775. bottom: 33/1306
  33776. }
  33777. },
  33778. },
  33779. [
  33780. {
  33781. name: "Normal",
  33782. height: math.unit(8 + 6/12, "feet"),
  33783. default: true
  33784. },
  33785. ]
  33786. ))
  33787. characterMakers.push(() => makeCharacter(
  33788. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33789. {
  33790. front: {
  33791. height: math.unit(6, "feet"),
  33792. weight: math.unit(210, "lb"),
  33793. name: "Front",
  33794. image: {
  33795. source: "./media/characters/manetel-greyscale/front.svg",
  33796. extra: 350/312,
  33797. bottom: 8/358
  33798. }
  33799. },
  33800. },
  33801. [
  33802. {
  33803. name: "Micro",
  33804. height: math.unit(2, "inches")
  33805. },
  33806. {
  33807. name: "Normal",
  33808. height: math.unit(6, "feet"),
  33809. default: true
  33810. },
  33811. {
  33812. name: "Minimacro",
  33813. height: math.unit(17, "feet")
  33814. },
  33815. {
  33816. name: "Macro",
  33817. height: math.unit(117, "feet")
  33818. },
  33819. ]
  33820. ))
  33821. characterMakers.push(() => makeCharacter(
  33822. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33823. {
  33824. side: {
  33825. height: math.unit(5 + 1/12, "feet"),
  33826. weight: math.unit(418, "lb"),
  33827. name: "Side",
  33828. image: {
  33829. source: "./media/characters/softpurr/side.svg",
  33830. extra: 1993/1945,
  33831. bottom: 134/2127
  33832. }
  33833. },
  33834. front: {
  33835. height: math.unit(5 + 1/12, "feet"),
  33836. weight: math.unit(418, "lb"),
  33837. name: "Front",
  33838. image: {
  33839. source: "./media/characters/softpurr/front.svg",
  33840. extra: 1950/1856,
  33841. bottom: 174/2124
  33842. }
  33843. },
  33844. paw: {
  33845. height: math.unit(1, "feet"),
  33846. name: "Paw",
  33847. image: {
  33848. source: "./media/characters/softpurr/paw.svg"
  33849. }
  33850. },
  33851. },
  33852. [
  33853. {
  33854. name: "Normal",
  33855. height: math.unit(5 + 1/12, "feet"),
  33856. default: true
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33862. {
  33863. front: {
  33864. height: math.unit(260, "meters"),
  33865. name: "Front",
  33866. image: {
  33867. source: "./media/characters/anahita/front.svg",
  33868. extra: 665/635,
  33869. bottom: 89/754
  33870. }
  33871. },
  33872. },
  33873. [
  33874. {
  33875. name: "Macro",
  33876. height: math.unit(260, "meters"),
  33877. default: true
  33878. },
  33879. ]
  33880. ))
  33881. characterMakers.push(() => makeCharacter(
  33882. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33883. {
  33884. front: {
  33885. height: math.unit(4 + 10/12, "feet"),
  33886. weight: math.unit(160, "lb"),
  33887. name: "Front",
  33888. image: {
  33889. source: "./media/characters/chip-mouse/front.svg",
  33890. extra: 3528/3408,
  33891. bottom: 0/3528
  33892. }
  33893. },
  33894. frontNsfw: {
  33895. height: math.unit(4 + 10/12, "feet"),
  33896. weight: math.unit(160, "lb"),
  33897. name: "Front (NSFW)",
  33898. image: {
  33899. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33900. extra: 3528/3408,
  33901. bottom: 0/3528
  33902. }
  33903. },
  33904. },
  33905. [
  33906. {
  33907. name: "Normal",
  33908. height: math.unit(4 + 10/12, "feet"),
  33909. default: true
  33910. },
  33911. ]
  33912. ))
  33913. characterMakers.push(() => makeCharacter(
  33914. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33915. {
  33916. side: {
  33917. height: math.unit(10, "feet"),
  33918. weight: math.unit(14000, "lb"),
  33919. name: "Side",
  33920. image: {
  33921. source: "./media/characters/kremm/side.svg",
  33922. extra: 1390/1053,
  33923. bottom: 90/1480
  33924. }
  33925. },
  33926. gut: {
  33927. height: math.unit(5.8, "feet"),
  33928. name: "Gut",
  33929. image: {
  33930. source: "./media/characters/kremm/gut.svg"
  33931. }
  33932. },
  33933. ass: {
  33934. height: math.unit(6.1, "feet"),
  33935. name: "Ass",
  33936. image: {
  33937. source: "./media/characters/kremm/ass.svg"
  33938. }
  33939. },
  33940. jaws: {
  33941. height: math.unit(2.2, "feet"),
  33942. name: "Jaws",
  33943. image: {
  33944. source: "./media/characters/kremm/jaws.svg"
  33945. }
  33946. },
  33947. dick: {
  33948. height: math.unit(4.26, "feet"),
  33949. name: "Dick",
  33950. image: {
  33951. source: "./media/characters/kremm/dick.svg"
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Normal",
  33958. height: math.unit(10, "feet"),
  33959. default: true
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33965. {
  33966. front: {
  33967. height: math.unit(30, "stories"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/kai/front.svg",
  33971. extra: 1892/1718,
  33972. bottom: 162/2054
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Macro",
  33979. height: math.unit(30, "stories"),
  33980. default: true
  33981. },
  33982. ]
  33983. ))
  33984. characterMakers.push(() => makeCharacter(
  33985. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33986. {
  33987. front: {
  33988. height: math.unit(6 + 4/12, "feet"),
  33989. weight: math.unit(145, "lb"),
  33990. name: "Front",
  33991. image: {
  33992. source: "./media/characters/sykes/front.svg",
  33993. extra: 1321 / 1187,
  33994. bottom: 66 / 1387
  33995. }
  33996. },
  33997. back: {
  33998. height: math.unit(6 + 4/12, "feet"),
  33999. weight: math.unit(145, "lb"),
  34000. name: "Back",
  34001. image: {
  34002. source: "./media/characters/sykes/back.svg",
  34003. extra: 1326/1181,
  34004. bottom: 31/1357
  34005. }
  34006. },
  34007. handBack: {
  34008. height: math.unit(0.9, "feet"),
  34009. name: "Hand (Back)",
  34010. image: {
  34011. source: "./media/characters/sykes/hand-back.svg"
  34012. }
  34013. },
  34014. handFront: {
  34015. height: math.unit(0.839, "feet"),
  34016. name: "Hand (Front)",
  34017. image: {
  34018. source: "./media/characters/sykes/hand-front.svg"
  34019. }
  34020. },
  34021. leftFoot: {
  34022. height: math.unit(1.2, "feet"),
  34023. name: "Foot (Left)",
  34024. image: {
  34025. source: "./media/characters/sykes/foot-left.svg"
  34026. }
  34027. },
  34028. rightFoot: {
  34029. height: math.unit(1.2, "feet"),
  34030. name: "Foot (Right)",
  34031. image: {
  34032. source: "./media/characters/sykes/foot-right.svg"
  34033. }
  34034. },
  34035. maw: {
  34036. height: math.unit(1.93, "feet"),
  34037. name: "Maw",
  34038. image: {
  34039. source: "./media/characters/sykes/maw.svg"
  34040. }
  34041. },
  34042. teeth: {
  34043. height: math.unit(0.51, "feet"),
  34044. name: "Teeth",
  34045. image: {
  34046. source: "./media/characters/sykes/teeth.svg"
  34047. }
  34048. },
  34049. tongue: {
  34050. height: math.unit(2.13, "feet"),
  34051. name: "Tongue",
  34052. image: {
  34053. source: "./media/characters/sykes/tongue.svg"
  34054. }
  34055. },
  34056. uvula: {
  34057. height: math.unit(0.16, "feet"),
  34058. name: "Uvula",
  34059. image: {
  34060. source: "./media/characters/sykes/uvula.svg"
  34061. }
  34062. },
  34063. collar: {
  34064. height: math.unit(0.287, "feet"),
  34065. name: "Collar",
  34066. image: {
  34067. source: "./media/characters/sykes/collar.svg"
  34068. }
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "Shrunken",
  34074. height: math.unit(5, "inches")
  34075. },
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(6 + 4 / 12, "feet"),
  34079. default: true
  34080. },
  34081. {
  34082. name: "Big",
  34083. height: math.unit(15, "feet")
  34084. },
  34085. ]
  34086. ))
  34087. characterMakers.push(() => makeCharacter(
  34088. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34089. {
  34090. front: {
  34091. height: math.unit(5 + 8/12, "feet"),
  34092. weight: math.unit(190, "lb"),
  34093. name: "Front",
  34094. image: {
  34095. source: "./media/characters/oven-otter/front.svg",
  34096. extra: 1809/1740,
  34097. bottom: 181/1990
  34098. }
  34099. },
  34100. back: {
  34101. height: math.unit(5 + 8/12, "feet"),
  34102. weight: math.unit(190, "lb"),
  34103. name: "Back",
  34104. image: {
  34105. source: "./media/characters/oven-otter/back.svg",
  34106. extra: 1709/1635,
  34107. bottom: 118/1827
  34108. }
  34109. },
  34110. hand: {
  34111. height: math.unit(1.07, "feet"),
  34112. name: "Hand",
  34113. image: {
  34114. source: "./media/characters/oven-otter/hand.svg"
  34115. }
  34116. },
  34117. beans: {
  34118. height: math.unit(1.74, "feet"),
  34119. name: "Beans",
  34120. image: {
  34121. source: "./media/characters/oven-otter/beans.svg"
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Micro",
  34128. height: math.unit(0.5, "inches")
  34129. },
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(5 + 8/12, "feet"),
  34133. default: true
  34134. },
  34135. {
  34136. name: "Macro",
  34137. height: math.unit(250, "feet")
  34138. },
  34139. {
  34140. name: "Really High",
  34141. height: math.unit(420, "feet")
  34142. },
  34143. ]
  34144. ))
  34145. characterMakers.push(() => makeCharacter(
  34146. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34147. {
  34148. front: {
  34149. height: math.unit(5, "meters"),
  34150. weight: math.unit(292000000000000, "kg"),
  34151. name: "Front",
  34152. image: {
  34153. source: "./media/characters/devourer/front.svg",
  34154. extra: 1800/1733,
  34155. bottom: 211/2011
  34156. }
  34157. },
  34158. maw: {
  34159. height: math.unit(1.1, "meter"),
  34160. name: "Maw",
  34161. image: {
  34162. source: "./media/characters/devourer/maw.svg"
  34163. }
  34164. },
  34165. },
  34166. [
  34167. {
  34168. name: "Small",
  34169. height: math.unit(3, "meters")
  34170. },
  34171. {
  34172. name: "Large",
  34173. height: math.unit(5, "meters"),
  34174. default: true
  34175. },
  34176. ]
  34177. ))
  34178. characterMakers.push(() => makeCharacter(
  34179. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34180. {
  34181. front: {
  34182. height: math.unit(6, "feet"),
  34183. weight: math.unit(400, "lb"),
  34184. name: "Front",
  34185. image: {
  34186. source: "./media/characters/ellarby/front.svg",
  34187. extra: 1909/1763,
  34188. bottom: 80/1989
  34189. }
  34190. },
  34191. back: {
  34192. height: math.unit(6, "feet"),
  34193. weight: math.unit(400, "lb"),
  34194. name: "Back",
  34195. image: {
  34196. source: "./media/characters/ellarby/back.svg",
  34197. extra: 1914/1784,
  34198. bottom: 172/2086
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Mischief",
  34205. height: math.unit(18, "inches")
  34206. },
  34207. {
  34208. name: "Trouble",
  34209. height: math.unit(12, "feet")
  34210. },
  34211. {
  34212. name: "Havoc",
  34213. height: math.unit(200, "feet"),
  34214. default: true
  34215. },
  34216. {
  34217. name: "Pandemonium",
  34218. height: math.unit(1, "mile")
  34219. },
  34220. {
  34221. name: "Catastrophe",
  34222. height: math.unit(100, "miles")
  34223. },
  34224. ]
  34225. ))
  34226. characterMakers.push(() => makeCharacter(
  34227. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34228. {
  34229. front: {
  34230. height: math.unit(4.7, "meters"),
  34231. weight: math.unit(6500, "kg"),
  34232. name: "Front",
  34233. image: {
  34234. source: "./media/characters/vex/front.svg",
  34235. extra: 1288/1140,
  34236. bottom: 100/1388
  34237. }
  34238. },
  34239. },
  34240. [
  34241. {
  34242. name: "Normal",
  34243. height: math.unit(4.7, "meters"),
  34244. default: true
  34245. },
  34246. ]
  34247. ))
  34248. characterMakers.push(() => makeCharacter(
  34249. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34250. {
  34251. normal: {
  34252. height: math.unit(6, "feet"),
  34253. weight: math.unit(350, "lb"),
  34254. name: "Normal",
  34255. image: {
  34256. source: "./media/characters/teshy/normal.svg",
  34257. extra: 1795/1735,
  34258. bottom: 16/1811
  34259. }
  34260. },
  34261. monsterFront: {
  34262. height: math.unit(12, "feet"),
  34263. weight: math.unit(4700, "lb"),
  34264. name: "Monster (Front)",
  34265. image: {
  34266. source: "./media/characters/teshy/monster-front.svg",
  34267. extra: 2042/2034,
  34268. bottom: 128/2170
  34269. }
  34270. },
  34271. monsterSide: {
  34272. height: math.unit(12, "feet"),
  34273. weight: math.unit(4700, "lb"),
  34274. name: "Monster (Side)",
  34275. image: {
  34276. source: "./media/characters/teshy/monster-side.svg",
  34277. extra: 2067/2056,
  34278. bottom: 70/2137
  34279. }
  34280. },
  34281. monsterBack: {
  34282. height: math.unit(12, "feet"),
  34283. weight: math.unit(4700, "lb"),
  34284. name: "Monster (Back)",
  34285. image: {
  34286. source: "./media/characters/teshy/monster-back.svg",
  34287. extra: 1921/1914,
  34288. bottom: 171/2092
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Normal",
  34295. height: math.unit(6, "feet"),
  34296. default: true
  34297. },
  34298. ]
  34299. ))
  34300. characterMakers.push(() => makeCharacter(
  34301. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34302. {
  34303. front: {
  34304. height: math.unit(6, "feet"),
  34305. name: "Front",
  34306. image: {
  34307. source: "./media/characters/ramey/front.svg",
  34308. extra: 790/787,
  34309. bottom: 27/817
  34310. }
  34311. },
  34312. },
  34313. [
  34314. {
  34315. name: "Normal",
  34316. height: math.unit(6, "feet"),
  34317. default: true
  34318. },
  34319. ]
  34320. ))
  34321. characterMakers.push(() => makeCharacter(
  34322. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34323. {
  34324. front: {
  34325. height: math.unit(5 + 5/12, "feet"),
  34326. weight: math.unit(120, "lb"),
  34327. name: "Front",
  34328. image: {
  34329. source: "./media/characters/phirae/front.svg",
  34330. extra: 2491/2436,
  34331. bottom: 38/2529
  34332. }
  34333. },
  34334. },
  34335. [
  34336. {
  34337. name: "Normal",
  34338. height: math.unit(5 + 5/12, "feet"),
  34339. default: true
  34340. },
  34341. ]
  34342. ))
  34343. characterMakers.push(() => makeCharacter(
  34344. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34345. {
  34346. front: {
  34347. height: math.unit(5 + 3/12, "feet"),
  34348. name: "Front",
  34349. image: {
  34350. source: "./media/characters/stagglas/front.svg",
  34351. extra: 962/882,
  34352. bottom: 53/1015
  34353. }
  34354. },
  34355. feral: {
  34356. height: math.unit(335, "cm"),
  34357. name: "Feral",
  34358. image: {
  34359. source: "./media/characters/stagglas/feral.svg",
  34360. extra: 1732/1090,
  34361. bottom: 48/1780
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Normal",
  34368. height: math.unit(5 + 3/12, "feet"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(5 + 4/12, "feet"),
  34378. weight: math.unit(145, "lb"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/starra/front.svg",
  34382. extra: 1790/1691,
  34383. bottom: 91/1881
  34384. }
  34385. },
  34386. },
  34387. [
  34388. {
  34389. name: "Normal",
  34390. height: math.unit(5 + 4/12, "feet"),
  34391. default: true
  34392. },
  34393. ]
  34394. ))
  34395. characterMakers.push(() => makeCharacter(
  34396. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34397. {
  34398. front: {
  34399. height: math.unit(2.2, "meters"),
  34400. name: "Front",
  34401. image: {
  34402. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34403. extra: 1194/1005,
  34404. bottom: 25/1219
  34405. }
  34406. },
  34407. },
  34408. [
  34409. {
  34410. name: "Normal",
  34411. height: math.unit(2.2, "meters"),
  34412. default: true
  34413. },
  34414. ]
  34415. ))
  34416. characterMakers.push(() => makeCharacter(
  34417. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34418. {
  34419. side: {
  34420. height: math.unit(8 + 2/12, "feet"),
  34421. weight: math.unit(1240, "lb"),
  34422. name: "Side",
  34423. image: {
  34424. source: "./media/characters/mika-valentine/side.svg",
  34425. extra: 2670/2501,
  34426. bottom: 250/2920
  34427. }
  34428. },
  34429. },
  34430. [
  34431. {
  34432. name: "Normal",
  34433. height: math.unit(8 + 2/12, "feet"),
  34434. default: true
  34435. },
  34436. ]
  34437. ))
  34438. characterMakers.push(() => makeCharacter(
  34439. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34440. {
  34441. front: {
  34442. height: math.unit(7 + 2/12, "feet"),
  34443. name: "Front",
  34444. image: {
  34445. source: "./media/characters/xoltol/front.svg",
  34446. extra: 2212/2124,
  34447. bottom: 84/2296
  34448. }
  34449. },
  34450. side: {
  34451. height: math.unit(7 + 2/12, "feet"),
  34452. name: "Side",
  34453. image: {
  34454. source: "./media/characters/xoltol/side.svg",
  34455. extra: 2273/2197,
  34456. bottom: 26/2299
  34457. }
  34458. },
  34459. hand: {
  34460. height: math.unit(2.5, "feet"),
  34461. name: "Hand",
  34462. image: {
  34463. source: "./media/characters/xoltol/hand.svg"
  34464. }
  34465. },
  34466. },
  34467. [
  34468. {
  34469. name: "Small-ish",
  34470. height: math.unit(5 + 11/12, "feet")
  34471. },
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(7 + 2/12, "feet")
  34475. },
  34476. {
  34477. name: "\"Macro\"",
  34478. height: math.unit(14 + 9/12, "feet"),
  34479. default: true
  34480. },
  34481. {
  34482. name: "Alternate Height",
  34483. height: math.unit(20, "feet")
  34484. },
  34485. {
  34486. name: "Actually Macro",
  34487. height: math.unit(100, "feet")
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34493. {
  34494. front: {
  34495. height: math.unit(5 + 2/12, "feet"),
  34496. name: "Front",
  34497. image: {
  34498. source: "./media/characters/kotetsu-redwood/front.svg",
  34499. extra: 1053/942,
  34500. bottom: 60/1113
  34501. }
  34502. },
  34503. },
  34504. [
  34505. {
  34506. name: "Normal",
  34507. height: math.unit(5 + 2/12, "feet"),
  34508. default: true
  34509. },
  34510. ]
  34511. ))
  34512. characterMakers.push(() => makeCharacter(
  34513. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34514. {
  34515. front: {
  34516. height: math.unit(2.4, "meters"),
  34517. weight: math.unit(125, "kg"),
  34518. name: "Front",
  34519. image: {
  34520. source: "./media/characters/lilith/front.svg",
  34521. extra: 1590/1513,
  34522. bottom: 203/1793
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Humanoid",
  34529. height: math.unit(2.4, "meters")
  34530. },
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(6, "meters"),
  34534. default: true
  34535. },
  34536. {
  34537. name: "Largest",
  34538. height: math.unit(55, "meters")
  34539. },
  34540. ]
  34541. ))
  34542. characterMakers.push(() => makeCharacter(
  34543. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34544. {
  34545. front: {
  34546. height: math.unit(8 + 4/12, "feet"),
  34547. weight: math.unit(535, "lb"),
  34548. name: "Front",
  34549. image: {
  34550. source: "./media/characters/beh'kah-bolger/front.svg",
  34551. extra: 1660/1603,
  34552. bottom: 37/1697
  34553. }
  34554. },
  34555. },
  34556. [
  34557. {
  34558. name: "Normal",
  34559. height: math.unit(8 + 4/12, "feet"),
  34560. default: true
  34561. },
  34562. {
  34563. name: "Kaiju",
  34564. height: math.unit(250, "feet")
  34565. },
  34566. {
  34567. name: "Still Growing",
  34568. height: math.unit(10, "miles")
  34569. },
  34570. {
  34571. name: "Continental",
  34572. height: math.unit(5000, "miles")
  34573. },
  34574. {
  34575. name: "Final Form",
  34576. height: math.unit(2500000, "miles")
  34577. },
  34578. ]
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34582. {
  34583. front: {
  34584. height: math.unit(7 + 2/12, "feet"),
  34585. weight: math.unit(230, "kg"),
  34586. name: "Front",
  34587. image: {
  34588. source: "./media/characters/tatyana-milewska/front.svg",
  34589. extra: 1199/1150,
  34590. bottom: 86/1285
  34591. }
  34592. },
  34593. },
  34594. [
  34595. {
  34596. name: "Normal",
  34597. height: math.unit(7 + 2/12, "feet"),
  34598. default: true
  34599. },
  34600. {
  34601. name: "Big",
  34602. height: math.unit(12, "feet")
  34603. },
  34604. {
  34605. name: "Minimacro",
  34606. height: math.unit(20, "feet")
  34607. },
  34608. {
  34609. name: "Macro",
  34610. height: math.unit(120, "feet")
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34616. {
  34617. front: {
  34618. height: math.unit(7 + 8/12, "feet"),
  34619. weight: math.unit(152, "kg"),
  34620. name: "Front",
  34621. image: {
  34622. source: "./media/characters/helen-arri/front.svg",
  34623. extra: 440/423,
  34624. bottom: 14/454
  34625. }
  34626. },
  34627. back: {
  34628. height: math.unit(7 + 8/12, "feet"),
  34629. weight: math.unit(152, "kg"),
  34630. name: "Back",
  34631. image: {
  34632. source: "./media/characters/helen-arri/back.svg",
  34633. extra: 443/426,
  34634. bottom: 8/451
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(7 + 8/12, "feet"),
  34642. default: true
  34643. },
  34644. {
  34645. name: "Big",
  34646. height: math.unit(14, "feet")
  34647. },
  34648. {
  34649. name: "Minimacro",
  34650. height: math.unit(24, "feet")
  34651. },
  34652. {
  34653. name: "Macro",
  34654. height: math.unit(140, "feet")
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(6, "meters"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/ehanu-rehu/front.svg",
  34666. extra: 1800/1800,
  34667. bottom: 59/1859
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Normal",
  34674. height: math.unit(6, "meters"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(7 + 3/12, "feet"),
  34684. name: "Front",
  34685. image: {
  34686. source: "./media/characters/renholder/front.svg",
  34687. extra: 3096/2960,
  34688. bottom: 250/3346
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal Bat",
  34695. height: math.unit(7 + 3/12, "feet"),
  34696. default: true
  34697. },
  34698. {
  34699. name: "Slightly Tall Bat",
  34700. height: math.unit(100, "feet")
  34701. },
  34702. {
  34703. name: "Big Bat",
  34704. height: math.unit(1000, "feet")
  34705. },
  34706. {
  34707. name: "City-Sized Bat",
  34708. height: math.unit(200000, "feet")
  34709. },
  34710. {
  34711. name: "Bigger Bat",
  34712. height: math.unit(10000, "miles")
  34713. },
  34714. {
  34715. name: "Solar Sized Bat",
  34716. height: math.unit(100, "AU")
  34717. },
  34718. {
  34719. name: "Galactic Bat",
  34720. height: math.unit(200000, "lightyears")
  34721. },
  34722. {
  34723. name: "Universally Known Bat",
  34724. height: math.unit(1, "universe")
  34725. },
  34726. ]
  34727. ))
  34728. characterMakers.push(() => makeCharacter(
  34729. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34730. {
  34731. front: {
  34732. height: math.unit(6 + 11/12, "feet"),
  34733. weight: math.unit(250, "lb"),
  34734. name: "Front",
  34735. image: {
  34736. source: "./media/characters/cookiecat/front.svg",
  34737. extra: 893/827,
  34738. bottom: 14/907
  34739. }
  34740. },
  34741. },
  34742. [
  34743. {
  34744. name: "Micro",
  34745. height: math.unit(3, "inches")
  34746. },
  34747. {
  34748. name: "Normal",
  34749. height: math.unit(6 + 11/12, "feet"),
  34750. default: true
  34751. },
  34752. {
  34753. name: "Macro",
  34754. height: math.unit(100, "feet")
  34755. },
  34756. {
  34757. name: "Macro+",
  34758. height: math.unit(404, "feet")
  34759. },
  34760. {
  34761. name: "Megamacro",
  34762. height: math.unit(165, "miles")
  34763. },
  34764. {
  34765. name: "Planetary",
  34766. height: math.unit(4600, "miles")
  34767. },
  34768. ]
  34769. ))
  34770. characterMakers.push(() => makeCharacter(
  34771. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34772. {
  34773. front: {
  34774. height: math.unit(10 + 3/12, "feet"),
  34775. weight: math.unit(1500, "lb"),
  34776. name: "Front",
  34777. image: {
  34778. source: "./media/characters/tux-kusanagi/front.svg",
  34779. extra: 944/840,
  34780. bottom: 39/983
  34781. }
  34782. },
  34783. back: {
  34784. height: math.unit(10 + 3/12, "feet"),
  34785. weight: math.unit(1500, "lb"),
  34786. name: "Back",
  34787. image: {
  34788. source: "./media/characters/tux-kusanagi/back.svg",
  34789. extra: 941/842,
  34790. bottom: 28/969
  34791. }
  34792. },
  34793. rump: {
  34794. height: math.unit(5.25, "feet"),
  34795. name: "Rump",
  34796. image: {
  34797. source: "./media/characters/tux-kusanagi/rump.svg"
  34798. }
  34799. },
  34800. beak: {
  34801. height: math.unit(1.54, "feet"),
  34802. name: "Beak",
  34803. image: {
  34804. source: "./media/characters/tux-kusanagi/beak.svg"
  34805. }
  34806. },
  34807. },
  34808. [
  34809. {
  34810. name: "Normal",
  34811. height: math.unit(10 + 3/12, "feet"),
  34812. default: true
  34813. },
  34814. ]
  34815. ))
  34816. characterMakers.push(() => makeCharacter(
  34817. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34818. {
  34819. front: {
  34820. height: math.unit(58, "feet"),
  34821. weight: math.unit(200, "tons"),
  34822. name: "Front",
  34823. image: {
  34824. source: "./media/characters/uzarmazari/front.svg",
  34825. extra: 1575/1455,
  34826. bottom: 152/1727
  34827. }
  34828. },
  34829. back: {
  34830. height: math.unit(58, "feet"),
  34831. weight: math.unit(200, "tons"),
  34832. name: "Back",
  34833. image: {
  34834. source: "./media/characters/uzarmazari/back.svg",
  34835. extra: 1585/1510,
  34836. bottom: 157/1742
  34837. }
  34838. },
  34839. head: {
  34840. height: math.unit(26, "feet"),
  34841. name: "Head",
  34842. image: {
  34843. source: "./media/characters/uzarmazari/head.svg"
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(58, "feet"),
  34851. default: true
  34852. },
  34853. ]
  34854. ))
  34855. characterMakers.push(() => makeCharacter(
  34856. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34857. {
  34858. side: {
  34859. height: math.unit(15, "feet"),
  34860. name: "Side",
  34861. image: {
  34862. source: "./media/characters/akitu/side.svg",
  34863. extra: 1421/1321,
  34864. bottom: 157/1578
  34865. }
  34866. },
  34867. front: {
  34868. height: math.unit(15, "feet"),
  34869. name: "Front",
  34870. image: {
  34871. source: "./media/characters/akitu/front.svg",
  34872. extra: 1435/1326,
  34873. bottom: 232/1667
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(15, "feet"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34887. {
  34888. front: {
  34889. height: math.unit(10 + 8/12, "feet"),
  34890. name: "Front",
  34891. image: {
  34892. source: "./media/characters/azalie-croixland/front.svg",
  34893. extra: 1972/1856,
  34894. bottom: 31/2003
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Original Height",
  34901. height: math.unit(5 + 4/12, "feet")
  34902. },
  34903. {
  34904. name: "Normal Height",
  34905. height: math.unit(10 + 8/12, "feet"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34912. {
  34913. side: {
  34914. height: math.unit(7 + 1/12, "feet"),
  34915. weight: math.unit(245, "lb"),
  34916. name: "Side",
  34917. image: {
  34918. source: "./media/characters/kavus-kazian/side.svg",
  34919. extra: 349/342,
  34920. bottom: 15/364
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Normal",
  34927. height: math.unit(7 + 1/12, "feet"),
  34928. default: true
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34934. {
  34935. normal: {
  34936. height: math.unit(5 + 11/12, "feet"),
  34937. name: "Normal",
  34938. image: {
  34939. source: "./media/characters/moonlight-rose/normal.svg",
  34940. extra: 1979/1835,
  34941. bottom: 14/1993
  34942. }
  34943. },
  34944. demon: {
  34945. height: math.unit(5, "km"),
  34946. name: "Demon",
  34947. image: {
  34948. source: "./media/characters/moonlight-rose/demon.svg",
  34949. extra: 986/916,
  34950. bottom: 28/1014
  34951. }
  34952. },
  34953. },
  34954. [
  34955. {
  34956. name: "\"Natural\" height",
  34957. height: math.unit(5 + 11/12, "feet")
  34958. },
  34959. {
  34960. name: "Comfortable Size",
  34961. height: math.unit(40, "meters")
  34962. },
  34963. {
  34964. name: "Common Size",
  34965. height: math.unit(50, "km"),
  34966. default: true
  34967. },
  34968. {
  34969. name: "Demonic",
  34970. height: math.unit(1.24415e+21, "meters")
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(16, "feet"),
  34979. weight: math.unit(610, "kg"),
  34980. name: "Front",
  34981. image: {
  34982. source: "./media/characters/huckle/front.svg",
  34983. extra: 1731/1625,
  34984. bottom: 33/1764
  34985. }
  34986. },
  34987. back: {
  34988. height: math.unit(16, "feet"),
  34989. weight: math.unit(610, "kg"),
  34990. name: "Back",
  34991. image: {
  34992. source: "./media/characters/huckle/back.svg",
  34993. extra: 1738/1651,
  34994. bottom: 37/1775
  34995. }
  34996. },
  34997. laughing: {
  34998. height: math.unit(3.75, "feet"),
  34999. name: "Laughing",
  35000. image: {
  35001. source: "./media/characters/huckle/laughing.svg"
  35002. }
  35003. },
  35004. angry: {
  35005. height: math.unit(4.15, "feet"),
  35006. name: "Angry",
  35007. image: {
  35008. source: "./media/characters/huckle/angry.svg"
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Normal",
  35015. height: math.unit(16, "feet"),
  35016. default: true
  35017. },
  35018. {
  35019. name: "Mini Macro",
  35020. height: math.unit(463, "feet")
  35021. },
  35022. {
  35023. name: "Macro",
  35024. height: math.unit(1680, "meters")
  35025. },
  35026. {
  35027. name: "Mega Macro",
  35028. height: math.unit(175, "km")
  35029. },
  35030. {
  35031. name: "Terra Macro",
  35032. height: math.unit(32, "gigameters")
  35033. },
  35034. {
  35035. name: "Multiverse+",
  35036. height: math.unit(2.56e23, "yottameters")
  35037. },
  35038. ]
  35039. ))
  35040. characterMakers.push(() => makeCharacter(
  35041. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35042. {
  35043. front: {
  35044. height: math.unit(6 + 9/12, "feet"),
  35045. weight: math.unit(280, "lb"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/candy/front.svg",
  35049. extra: 234/217,
  35050. bottom: 11/245
  35051. }
  35052. },
  35053. },
  35054. [
  35055. {
  35056. name: "Really Small",
  35057. height: math.unit(0.1, "nm")
  35058. },
  35059. {
  35060. name: "Micro",
  35061. height: math.unit(2, "inches")
  35062. },
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(6 + 9/12, "feet"),
  35066. default: true
  35067. },
  35068. {
  35069. name: "Small Macro",
  35070. height: math.unit(69, "feet")
  35071. },
  35072. {
  35073. name: "Macro",
  35074. height: math.unit(160, "feet")
  35075. },
  35076. {
  35077. name: "Megamacro",
  35078. height: math.unit(22000, "miles")
  35079. },
  35080. {
  35081. name: "Gigamacro",
  35082. height: math.unit(50000, "miles")
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35088. {
  35089. front: {
  35090. height: math.unit(4, "feet"),
  35091. weight: math.unit(90, "lb"),
  35092. name: "Front",
  35093. image: {
  35094. source: "./media/characters/joey-mcdonald/front.svg",
  35095. extra: 1059/852,
  35096. bottom: 33/1092
  35097. }
  35098. },
  35099. back: {
  35100. height: math.unit(4, "feet"),
  35101. weight: math.unit(90, "lb"),
  35102. name: "Back",
  35103. image: {
  35104. source: "./media/characters/joey-mcdonald/back.svg",
  35105. extra: 1077/879,
  35106. bottom: 5/1082
  35107. }
  35108. },
  35109. frontKobold: {
  35110. height: math.unit(4, "feet"),
  35111. weight: math.unit(100, "lb"),
  35112. name: "Front-kobold",
  35113. image: {
  35114. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35115. extra: 1480/1367,
  35116. bottom: 0/1480
  35117. }
  35118. },
  35119. backKobold: {
  35120. height: math.unit(4, "feet"),
  35121. weight: math.unit(100, "lb"),
  35122. name: "Back-kobold",
  35123. image: {
  35124. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35125. extra: 1449/1361,
  35126. bottom: 0/1449
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(4, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(12 + 6/12, "feet"),
  35143. name: "Front",
  35144. image: {
  35145. source: "./media/characters/kass-lockheed/front.svg",
  35146. extra: 354/343,
  35147. bottom: 9/363
  35148. }
  35149. },
  35150. back: {
  35151. height: math.unit(12 + 6/12, "feet"),
  35152. name: "Back",
  35153. image: {
  35154. source: "./media/characters/kass-lockheed/back.svg",
  35155. extra: 364/352,
  35156. bottom: 3/367
  35157. }
  35158. },
  35159. dick: {
  35160. height: math.unit(3.12, "feet"),
  35161. name: "Dick",
  35162. image: {
  35163. source: "./media/characters/kass-lockheed/dick.svg"
  35164. }
  35165. },
  35166. head: {
  35167. height: math.unit(2.6, "feet"),
  35168. name: "Head",
  35169. image: {
  35170. source: "./media/characters/kass-lockheed/head.svg"
  35171. }
  35172. },
  35173. bleh: {
  35174. height: math.unit(2.85, "feet"),
  35175. name: "Bleh",
  35176. image: {
  35177. source: "./media/characters/kass-lockheed/bleh.svg"
  35178. }
  35179. },
  35180. smug: {
  35181. height: math.unit(2.85, "feet"),
  35182. name: "Smug",
  35183. image: {
  35184. source: "./media/characters/kass-lockheed/smug.svg"
  35185. }
  35186. },
  35187. },
  35188. [
  35189. {
  35190. name: "Normal",
  35191. height: math.unit(12 + 6/12, "feet"),
  35192. default: true
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(6 + 2/12, "feet"),
  35201. name: "Front",
  35202. image: {
  35203. source: "./media/characters/taylor/front.svg",
  35204. extra: 639/495,
  35205. bottom: 12/651
  35206. }
  35207. },
  35208. },
  35209. [
  35210. {
  35211. name: "Normal",
  35212. height: math.unit(6 + 2/12, "feet"),
  35213. default: true
  35214. },
  35215. {
  35216. name: "Big",
  35217. height: math.unit(15, "feet")
  35218. },
  35219. {
  35220. name: "Lorg",
  35221. height: math.unit(80, "feet")
  35222. },
  35223. {
  35224. name: "Too Lorg",
  35225. height: math.unit(120, "feet")
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35231. {
  35232. front: {
  35233. height: math.unit(15, "feet"),
  35234. name: "Front",
  35235. image: {
  35236. source: "./media/characters/kaizer/front.svg",
  35237. extra: 1612/1436,
  35238. bottom: 43/1655
  35239. }
  35240. },
  35241. },
  35242. [
  35243. {
  35244. name: "Normal",
  35245. height: math.unit(15, "feet"),
  35246. default: true
  35247. },
  35248. ]
  35249. ))
  35250. characterMakers.push(() => makeCharacter(
  35251. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35252. {
  35253. front: {
  35254. height: math.unit(2, "feet"),
  35255. weight: math.unit(30, "lb"),
  35256. name: "Front",
  35257. image: {
  35258. source: "./media/characters/sandy/front.svg",
  35259. extra: 1439/1307,
  35260. bottom: 194/1633
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(2, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(3, "feet"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/mellvi/front.svg",
  35280. extra: 1831/1630,
  35281. bottom: 58/1889
  35282. }
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(3, "feet"),
  35289. default: true
  35290. },
  35291. ]
  35292. ))
  35293. characterMakers.push(() => makeCharacter(
  35294. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35295. {
  35296. front: {
  35297. height: math.unit(5 + 11/12, "feet"),
  35298. weight: math.unit(200, "lb"),
  35299. name: "Front",
  35300. image: {
  35301. source: "./media/characters/shirou/front.svg",
  35302. extra: 2491/2383,
  35303. bottom: 189/2680
  35304. }
  35305. },
  35306. back: {
  35307. height: math.unit(5 + 11/12, "feet"),
  35308. weight: math.unit(200, "lb"),
  35309. name: "Back",
  35310. image: {
  35311. source: "./media/characters/shirou/back.svg",
  35312. extra: 2554/2450,
  35313. bottom: 76/2630
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Normal",
  35320. height: math.unit(5 + 11/12, "feet"),
  35321. default: true
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35327. {
  35328. front: {
  35329. height: math.unit(6 + 3/12, "feet"),
  35330. weight: math.unit(177, "lb"),
  35331. name: "Front",
  35332. image: {
  35333. source: "./media/characters/noryu/front.svg",
  35334. extra: 973/885,
  35335. bottom: 10/983
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(6 + 3/12, "feet"),
  35343. default: true
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35349. {
  35350. front: {
  35351. height: math.unit(5 + 6/12, "feet"),
  35352. weight: math.unit(170, "lb"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/mevolas-rubenido/front.svg",
  35356. extra: 2109/1901,
  35357. bottom: 96/2205
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(5 + 6/12, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(100, "feet"),
  35374. name: "Front",
  35375. image: {
  35376. source: "./media/characters/dee/front.svg",
  35377. extra: 2153/2036,
  35378. bottom: 59/2212
  35379. }
  35380. },
  35381. back: {
  35382. height: math.unit(100, "feet"),
  35383. name: "Back",
  35384. image: {
  35385. source: "./media/characters/dee/back.svg",
  35386. extra: 2183/2058,
  35387. bottom: 75/2258
  35388. }
  35389. },
  35390. foot: {
  35391. height: math.unit(19.43, "feet"),
  35392. name: "Foot",
  35393. image: {
  35394. source: "./media/characters/dee/foot.svg"
  35395. }
  35396. },
  35397. hoof: {
  35398. height: math.unit(20.6, "feet"),
  35399. name: "Hoof",
  35400. image: {
  35401. source: "./media/characters/dee/hoof.svg"
  35402. }
  35403. },
  35404. },
  35405. [
  35406. {
  35407. name: "Macro",
  35408. height: math.unit(100, "feet"),
  35409. default: true
  35410. },
  35411. ]
  35412. ))
  35413. characterMakers.push(() => makeCharacter(
  35414. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35415. {
  35416. front: {
  35417. height: math.unit(5 + 6/12, "feet"),
  35418. name: "Front",
  35419. image: {
  35420. source: "./media/characters/teh/front.svg",
  35421. extra: 1002/847,
  35422. bottom: 62/1064
  35423. }
  35424. },
  35425. },
  35426. [
  35427. {
  35428. name: "Normal",
  35429. height: math.unit(5 + 6/12, "feet"),
  35430. default: true
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35436. {
  35437. side: {
  35438. height: math.unit(6 + 1/12, "feet"),
  35439. weight: math.unit(204, "lb"),
  35440. name: "Side",
  35441. image: {
  35442. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35443. extra: 974/775,
  35444. bottom: 169/1143
  35445. }
  35446. },
  35447. sitting: {
  35448. height: math.unit(6 + 2/12, "feet"),
  35449. weight: math.unit(204, "lb"),
  35450. name: "Sitting",
  35451. image: {
  35452. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35453. extra: 1175/964,
  35454. bottom: 378/1553
  35455. }
  35456. },
  35457. },
  35458. [
  35459. {
  35460. name: "Normal",
  35461. height: math.unit(6 + 1/12, "feet"),
  35462. default: true
  35463. },
  35464. ]
  35465. ))
  35466. characterMakers.push(() => makeCharacter(
  35467. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35468. {
  35469. front: {
  35470. height: math.unit(6, "inches"),
  35471. name: "Front",
  35472. image: {
  35473. source: "./media/characters/tululi/front.svg",
  35474. extra: 1997/1876,
  35475. bottom: 20/2017
  35476. }
  35477. },
  35478. },
  35479. [
  35480. {
  35481. name: "Normal",
  35482. height: math.unit(6, "inches"),
  35483. default: true
  35484. },
  35485. ]
  35486. ))
  35487. characterMakers.push(() => makeCharacter(
  35488. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35489. {
  35490. front: {
  35491. height: math.unit(4 + 1/12, "feet"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/star/front.svg",
  35495. extra: 1493/1189,
  35496. bottom: 48/1541
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Normal",
  35503. height: math.unit(4 + 1/12, "feet"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35510. {
  35511. front: {
  35512. height: math.unit(6 + 3/12, "feet"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/comet/front.svg",
  35516. extra: 1681/1462,
  35517. bottom: 26/1707
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(6 + 3/12, "feet"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(950, "feet"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/vortex/front.svg",
  35537. extra: 1497/1434,
  35538. bottom: 56/1553
  35539. }
  35540. },
  35541. maw: {
  35542. height: math.unit(285, "feet"),
  35543. name: "Maw",
  35544. image: {
  35545. source: "./media/characters/vortex/maw.svg"
  35546. }
  35547. },
  35548. },
  35549. [
  35550. {
  35551. name: "Macro",
  35552. height: math.unit(950, "feet"),
  35553. default: true
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(600, "feet"),
  35562. weight: math.unit(0.02, "grams"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/doodle/front.svg",
  35566. extra: 1578/1413,
  35567. bottom: 37/1615
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Macro",
  35574. height: math.unit(600, "feet"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(6 + 6/12, "feet"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/jai/front.svg",
  35587. extra: 1645/1534,
  35588. bottom: 115/1760
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(6 + 6/12, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35602. {
  35603. front: {
  35604. height: math.unit(6 + 8/12, "feet"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/pixel/front.svg",
  35608. extra: 1900/1735,
  35609. bottom: 63/1963
  35610. }
  35611. },
  35612. },
  35613. [
  35614. {
  35615. name: "Normal",
  35616. height: math.unit(6 + 8/12, "feet"),
  35617. default: true
  35618. },
  35619. ]
  35620. ))
  35621. characterMakers.push(() => makeCharacter(
  35622. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35623. {
  35624. back: {
  35625. height: math.unit(4 + 1/12, "feet"),
  35626. weight: math.unit(75, "lb"),
  35627. name: "Back",
  35628. image: {
  35629. source: "./media/characters/rhett/back.svg",
  35630. extra: 930/878,
  35631. bottom: 25/955
  35632. }
  35633. },
  35634. front: {
  35635. height: math.unit(4 + 1/12, "feet"),
  35636. weight: math.unit(75, "lb"),
  35637. name: "Front",
  35638. image: {
  35639. source: "./media/characters/rhett/front.svg",
  35640. extra: 1682/1586,
  35641. bottom: 92/1774
  35642. }
  35643. },
  35644. },
  35645. [
  35646. {
  35647. name: "Micro",
  35648. height: math.unit(8, "inches")
  35649. },
  35650. {
  35651. name: "Tiny",
  35652. height: math.unit(2, "feet")
  35653. },
  35654. {
  35655. name: "Normal",
  35656. height: math.unit(4 + 1/12, "feet"),
  35657. default: true
  35658. },
  35659. ]
  35660. ))
  35661. characterMakers.push(() => makeCharacter(
  35662. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35663. {
  35664. front: {
  35665. height: math.unit(3 + 3/12, "feet"),
  35666. name: "Front",
  35667. image: {
  35668. source: "./media/characters/penny/front.svg",
  35669. extra: 1406/1311,
  35670. bottom: 26/1432
  35671. }
  35672. },
  35673. },
  35674. [
  35675. {
  35676. name: "Normal",
  35677. height: math.unit(3 + 3/12, "feet"),
  35678. default: true
  35679. },
  35680. ]
  35681. ))
  35682. characterMakers.push(() => makeCharacter(
  35683. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35684. {
  35685. front: {
  35686. height: math.unit(4 + 11/12, "feet"),
  35687. name: "Front",
  35688. image: {
  35689. source: "./media/characters/monty/front.svg",
  35690. extra: 1479/1209,
  35691. bottom: 0/1479
  35692. }
  35693. },
  35694. },
  35695. [
  35696. {
  35697. name: "Normal",
  35698. height: math.unit(4 + 11/12, "feet"),
  35699. default: true
  35700. },
  35701. ]
  35702. ))
  35703. characterMakers.push(() => makeCharacter(
  35704. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35705. {
  35706. front: {
  35707. height: math.unit(8 + 4/12, "feet"),
  35708. name: "Front",
  35709. image: {
  35710. source: "./media/characters/sterling/front.svg",
  35711. extra: 1420/1236,
  35712. bottom: 27/1447
  35713. }
  35714. },
  35715. },
  35716. [
  35717. {
  35718. name: "Normal",
  35719. height: math.unit(8 + 4/12, "feet"),
  35720. default: true
  35721. },
  35722. ]
  35723. ))
  35724. characterMakers.push(() => makeCharacter(
  35725. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35726. {
  35727. front: {
  35728. height: math.unit(15, "feet"),
  35729. name: "Front",
  35730. image: {
  35731. source: "./media/characters/marble/front.svg",
  35732. extra: 973/937,
  35733. bottom: 32/1005
  35734. }
  35735. },
  35736. },
  35737. [
  35738. {
  35739. name: "Normal",
  35740. height: math.unit(15, "feet"),
  35741. default: true
  35742. },
  35743. ]
  35744. ))
  35745. characterMakers.push(() => makeCharacter(
  35746. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35747. {
  35748. front: {
  35749. height: math.unit(3, "inches"),
  35750. name: "Front",
  35751. image: {
  35752. source: "./media/characters/powder/front.svg",
  35753. extra: 1504/1334,
  35754. bottom: 518/2022
  35755. }
  35756. },
  35757. },
  35758. [
  35759. {
  35760. name: "Normal",
  35761. height: math.unit(3, "inches"),
  35762. default: true
  35763. },
  35764. ]
  35765. ))
  35766. characterMakers.push(() => makeCharacter(
  35767. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35768. {
  35769. front: {
  35770. height: math.unit(4 + 5/12, "feet"),
  35771. name: "Front",
  35772. image: {
  35773. source: "./media/characters/joey-raccoon/front.svg",
  35774. extra: 1273/1197,
  35775. bottom: 0/1273
  35776. }
  35777. },
  35778. },
  35779. [
  35780. {
  35781. name: "Normal",
  35782. height: math.unit(4 + 5/12, "feet"),
  35783. default: true
  35784. },
  35785. ]
  35786. ))
  35787. characterMakers.push(() => makeCharacter(
  35788. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35789. {
  35790. front: {
  35791. height: math.unit(8 + 4/12, "feet"),
  35792. name: "Front",
  35793. image: {
  35794. source: "./media/characters/vick/front.svg",
  35795. extra: 2187/2118,
  35796. bottom: 47/2234
  35797. }
  35798. },
  35799. },
  35800. [
  35801. {
  35802. name: "Normal",
  35803. height: math.unit(8 + 4/12, "feet"),
  35804. default: true
  35805. },
  35806. ]
  35807. ))
  35808. characterMakers.push(() => makeCharacter(
  35809. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35810. {
  35811. front: {
  35812. height: math.unit(5 + 5/12, "feet"),
  35813. name: "Front",
  35814. image: {
  35815. source: "./media/characters/mitsy/front.svg",
  35816. extra: 1842/1695,
  35817. bottom: 0/1842
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Normal",
  35824. height: math.unit(5 + 5/12, "feet"),
  35825. default: true
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35831. {
  35832. front: {
  35833. height: math.unit(6 + 3/12, "feet"),
  35834. name: "Front",
  35835. image: {
  35836. source: "./media/characters/silvy/front.svg",
  35837. extra: 1995/1836,
  35838. bottom: 225/2220
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(6 + 3/12, "feet"),
  35846. default: true
  35847. },
  35848. ]
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35852. {
  35853. front: {
  35854. height: math.unit(3 + 8/12, "feet"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/rodney/front.svg",
  35858. extra: 1956/1747,
  35859. bottom: 31/1987
  35860. }
  35861. },
  35862. frontDressed: {
  35863. height: math.unit(2.9, "feet"),
  35864. name: "Front (Dressed)",
  35865. image: {
  35866. source: "./media/characters/rodney/front-dressed.svg",
  35867. extra: 1382/1241,
  35868. bottom: 385/1767
  35869. }
  35870. },
  35871. },
  35872. [
  35873. {
  35874. name: "Normal",
  35875. height: math.unit(3 + 8/12, "feet"),
  35876. default: true
  35877. },
  35878. ]
  35879. ))
  35880. characterMakers.push(() => makeCharacter(
  35881. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35882. {
  35883. front: {
  35884. height: math.unit(5 + 9/12, "feet"),
  35885. weight: math.unit(194, "lbs"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/zakail-sudekai/front.svg",
  35889. extra: 2696/2533,
  35890. bottom: 248/2944
  35891. }
  35892. },
  35893. maw: {
  35894. height: math.unit(1.35, "feet"),
  35895. name: "Maw",
  35896. image: {
  35897. source: "./media/characters/zakail-sudekai/maw.svg"
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(5 + 9/12, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(8 + 4/12, "feet"),
  35914. weight: math.unit(1200, "lb"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/eleanor/front.svg",
  35918. extra: 1226/1192,
  35919. bottom: 52/1278
  35920. }
  35921. },
  35922. back: {
  35923. height: math.unit(8 + 4/12, "feet"),
  35924. weight: math.unit(1200, "lb"),
  35925. name: "Back",
  35926. image: {
  35927. source: "./media/characters/eleanor/back.svg",
  35928. extra: 1242/1184,
  35929. bottom: 60/1302
  35930. }
  35931. },
  35932. head: {
  35933. height: math.unit(2.62, "feet"),
  35934. name: "Head",
  35935. image: {
  35936. source: "./media/characters/eleanor/head.svg"
  35937. }
  35938. },
  35939. },
  35940. [
  35941. {
  35942. name: "Normal",
  35943. height: math.unit(8 + 4/12, "feet"),
  35944. default: true
  35945. },
  35946. ]
  35947. ))
  35948. characterMakers.push(() => makeCharacter(
  35949. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35950. {
  35951. front: {
  35952. height: math.unit(8 + 4/12, "feet"),
  35953. weight: math.unit(750, "lb"),
  35954. name: "Front",
  35955. image: {
  35956. source: "./media/characters/tanya/front.svg",
  35957. extra: 1749/1615,
  35958. bottom: 33/1782
  35959. }
  35960. },
  35961. },
  35962. [
  35963. {
  35964. name: "Normal",
  35965. height: math.unit(8 + 4/12, "feet"),
  35966. default: true
  35967. },
  35968. ]
  35969. ))
  35970. characterMakers.push(() => makeCharacter(
  35971. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35972. {
  35973. front: {
  35974. height: math.unit(5, "feet"),
  35975. weight: math.unit(225, "lb"),
  35976. name: "Front",
  35977. image: {
  35978. source: "./media/characters/cindy/front.svg",
  35979. extra: 1320/1250,
  35980. bottom: 42/1362
  35981. }
  35982. },
  35983. frontDressed: {
  35984. height: math.unit(5, "feet"),
  35985. weight: math.unit(225, "lb"),
  35986. name: "Front (Dressed)",
  35987. image: {
  35988. source: "./media/characters/cindy/front-dressed.svg",
  35989. extra: 1320/1250,
  35990. bottom: 42/1362
  35991. }
  35992. },
  35993. back: {
  35994. height: math.unit(5, "feet"),
  35995. weight: math.unit(225, "lb"),
  35996. name: "Back",
  35997. image: {
  35998. source: "./media/characters/cindy/back.svg",
  35999. extra: 1384/1346,
  36000. bottom: 14/1398
  36001. }
  36002. },
  36003. },
  36004. [
  36005. {
  36006. name: "Normal",
  36007. height: math.unit(5, "feet"),
  36008. default: true
  36009. },
  36010. ]
  36011. ))
  36012. characterMakers.push(() => makeCharacter(
  36013. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36014. {
  36015. front: {
  36016. height: math.unit(6 + 9/12, "feet"),
  36017. weight: math.unit(440, "lb"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/wilbur-owen/front.svg",
  36021. extra: 1575/1448,
  36022. bottom: 72/1647
  36023. }
  36024. },
  36025. back: {
  36026. height: math.unit(6 + 9/12, "feet"),
  36027. weight: math.unit(440, "lb"),
  36028. name: "Back",
  36029. image: {
  36030. source: "./media/characters/wilbur-owen/back.svg",
  36031. extra: 1578/1445,
  36032. bottom: 36/1614
  36033. }
  36034. },
  36035. },
  36036. [
  36037. {
  36038. name: "Normal",
  36039. height: math.unit(6 + 9/12, "feet"),
  36040. default: true
  36041. },
  36042. ]
  36043. ))
  36044. characterMakers.push(() => makeCharacter(
  36045. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36046. {
  36047. front: {
  36048. height: math.unit(6 + 5/12, "feet"),
  36049. weight: math.unit(650, "lb"),
  36050. name: "Front",
  36051. image: {
  36052. source: "./media/characters/keegan/front.svg",
  36053. extra: 2387/2198,
  36054. bottom: 33/2420
  36055. }
  36056. },
  36057. side: {
  36058. height: math.unit(6 + 5/12, "feet"),
  36059. weight: math.unit(650, "lb"),
  36060. name: "Side",
  36061. image: {
  36062. source: "./media/characters/keegan/side.svg",
  36063. extra: 2390/2202,
  36064. bottom: 47/2437
  36065. }
  36066. },
  36067. back: {
  36068. height: math.unit(6 + 5/12, "feet"),
  36069. weight: math.unit(650, "lb"),
  36070. name: "Back",
  36071. image: {
  36072. source: "./media/characters/keegan/back.svg",
  36073. extra: 2418/2268,
  36074. bottom: 15/2433
  36075. }
  36076. },
  36077. frontSfw: {
  36078. height: math.unit(6 + 5/12, "feet"),
  36079. weight: math.unit(650, "lb"),
  36080. name: "Front (SFW)",
  36081. image: {
  36082. source: "./media/characters/keegan/front-sfw.svg",
  36083. extra: 2387/2198,
  36084. bottom: 33/2420
  36085. }
  36086. },
  36087. beans: {
  36088. height: math.unit(1.85, "feet"),
  36089. name: "Beans",
  36090. image: {
  36091. source: "./media/characters/keegan/beans.svg"
  36092. }
  36093. },
  36094. },
  36095. [
  36096. {
  36097. name: "Normal",
  36098. height: math.unit(6 + 5/12, "feet"),
  36099. default: true
  36100. },
  36101. ]
  36102. ))
  36103. characterMakers.push(() => makeCharacter(
  36104. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36105. {
  36106. front: {
  36107. height: math.unit(9, "feet"),
  36108. name: "Front",
  36109. image: {
  36110. source: "./media/characters/colton/front.svg",
  36111. extra: 1589/1326,
  36112. bottom: 139/1728
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(9, "feet"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36126. {
  36127. front: {
  36128. height: math.unit(2 + 9/12, "feet"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/bora/front.svg",
  36132. extra: 1265/1250,
  36133. bottom: 24/1289
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(2 + 9/12, "feet"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36147. {
  36148. front: {
  36149. height: math.unit(8, "feet"),
  36150. name: "Front",
  36151. image: {
  36152. source: "./media/characters/myu-myu/front.svg",
  36153. extra: 1949/1857,
  36154. bottom: 90/2039
  36155. }
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(8, "feet"),
  36162. default: true
  36163. },
  36164. {
  36165. name: "Big",
  36166. height: math.unit(15, "feet")
  36167. },
  36168. {
  36169. name: "BIG",
  36170. height: math.unit(25, "feet")
  36171. },
  36172. ]
  36173. ))
  36174. characterMakers.push(() => makeCharacter(
  36175. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36176. {
  36177. side: {
  36178. height: math.unit(7 + 5/12, "feet"),
  36179. weight: math.unit(2800, "lb"),
  36180. name: "Side",
  36181. image: {
  36182. source: "./media/characters/haloren/side.svg",
  36183. extra: 1793/409,
  36184. bottom: 59/1852
  36185. }
  36186. },
  36187. frontPaw: {
  36188. height: math.unit(2.36, "feet"),
  36189. name: "Front paw",
  36190. image: {
  36191. source: "./media/characters/haloren/front-paw.svg"
  36192. }
  36193. },
  36194. hindPaw: {
  36195. height: math.unit(3.18, "feet"),
  36196. name: "Hind paw",
  36197. image: {
  36198. source: "./media/characters/haloren/hind-paw.svg"
  36199. }
  36200. },
  36201. maw: {
  36202. height: math.unit(5.05, "feet"),
  36203. name: "Maw",
  36204. image: {
  36205. source: "./media/characters/haloren/maw.svg"
  36206. }
  36207. },
  36208. dick: {
  36209. height: math.unit(2.90, "feet"),
  36210. name: "Dick",
  36211. image: {
  36212. source: "./media/characters/haloren/dick.svg"
  36213. }
  36214. },
  36215. },
  36216. [
  36217. {
  36218. name: "Normal",
  36219. height: math.unit(7 + 5/12, "feet"),
  36220. default: true
  36221. },
  36222. {
  36223. name: "Enhanced",
  36224. height: math.unit(14 + 3/12, "feet")
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36230. {
  36231. front: {
  36232. height: math.unit(171, "cm"),
  36233. name: "Front",
  36234. image: {
  36235. source: "./media/characters/kimmy/front.svg",
  36236. extra: 1491/1435,
  36237. bottom: 53/1544
  36238. }
  36239. },
  36240. },
  36241. [
  36242. {
  36243. name: "Small",
  36244. height: math.unit(9, "cm")
  36245. },
  36246. {
  36247. name: "Normal",
  36248. height: math.unit(171, "cm"),
  36249. default: true
  36250. },
  36251. ]
  36252. ))
  36253. characterMakers.push(() => makeCharacter(
  36254. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36255. {
  36256. front: {
  36257. height: math.unit(8, "feet"),
  36258. weight: math.unit(300, "lb"),
  36259. name: "Front",
  36260. image: {
  36261. source: "./media/characters/galeboomer/front.svg",
  36262. extra: 4651/4415,
  36263. bottom: 162/4813
  36264. }
  36265. },
  36266. back: {
  36267. height: math.unit(8, "feet"),
  36268. weight: math.unit(300, "lb"),
  36269. name: "Back",
  36270. image: {
  36271. source: "./media/characters/galeboomer/back.svg",
  36272. extra: 4544/4314,
  36273. bottom: 16/4560
  36274. }
  36275. },
  36276. frontAlt: {
  36277. height: math.unit(8, "feet"),
  36278. weight: math.unit(300, "lb"),
  36279. name: "Front (Alt)",
  36280. image: {
  36281. source: "./media/characters/galeboomer/front-alt.svg",
  36282. extra: 4458/4228,
  36283. bottom: 68/4526
  36284. }
  36285. },
  36286. maw: {
  36287. height: math.unit(1.2, "feet"),
  36288. name: "Maw",
  36289. image: {
  36290. source: "./media/characters/galeboomer/maw.svg"
  36291. }
  36292. },
  36293. },
  36294. [
  36295. {
  36296. name: "Normal",
  36297. height: math.unit(8, "feet"),
  36298. default: true
  36299. },
  36300. ]
  36301. ))
  36302. characterMakers.push(() => makeCharacter(
  36303. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36304. {
  36305. front: {
  36306. height: math.unit(5 + 9/12, "feet"),
  36307. weight: math.unit(120, "lb"),
  36308. name: "Front",
  36309. image: {
  36310. source: "./media/characters/chyr/front.svg",
  36311. extra: 1323/1254,
  36312. bottom: 63/1386
  36313. }
  36314. },
  36315. back: {
  36316. height: math.unit(5 + 9/12, "feet"),
  36317. weight: math.unit(120, "lb"),
  36318. name: "Back",
  36319. image: {
  36320. source: "./media/characters/chyr/back.svg",
  36321. extra: 1323/1252,
  36322. bottom: 48/1371
  36323. }
  36324. },
  36325. },
  36326. [
  36327. {
  36328. name: "Normal",
  36329. height: math.unit(5 + 9/12, "feet"),
  36330. default: true
  36331. },
  36332. ]
  36333. ))
  36334. characterMakers.push(() => makeCharacter(
  36335. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36336. {
  36337. front: {
  36338. height: math.unit(7, "feet"),
  36339. weight: math.unit(310, "lb"),
  36340. name: "Front",
  36341. image: {
  36342. source: "./media/characters/solarus/front.svg",
  36343. extra: 2415/2021,
  36344. bottom: 103/2518
  36345. }
  36346. },
  36347. back: {
  36348. height: math.unit(7, "feet"),
  36349. weight: math.unit(310, "lb"),
  36350. name: "Back",
  36351. image: {
  36352. source: "./media/characters/solarus/back.svg",
  36353. extra: 2463/2089,
  36354. bottom: 79/2542
  36355. }
  36356. },
  36357. },
  36358. [
  36359. {
  36360. name: "Normal",
  36361. height: math.unit(7, "feet"),
  36362. default: true
  36363. },
  36364. ]
  36365. ))
  36366. characterMakers.push(() => makeCharacter(
  36367. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36368. {
  36369. front: {
  36370. height: math.unit(16, "feet"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36374. extra: 1844/1780,
  36375. bottom: 58/1902
  36376. }
  36377. },
  36378. winterCoat: {
  36379. height: math.unit(16, "feet"),
  36380. name: "Winter Coat",
  36381. image: {
  36382. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36383. extra: 1807/1775,
  36384. bottom: 69/1876
  36385. }
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "Normal",
  36391. height: math.unit(16, "feet"),
  36392. default: true
  36393. },
  36394. {
  36395. name: "Chicago Size",
  36396. height: math.unit(560, "feet")
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36402. {
  36403. front: {
  36404. height: math.unit(11 + 6/12, "feet"),
  36405. weight: math.unit(1366, "lb"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/lexor/front.svg",
  36409. extra: 1560/1481,
  36410. bottom: 211/1771
  36411. }
  36412. },
  36413. back: {
  36414. height: math.unit(11 + 6/12, "feet"),
  36415. weight: math.unit(1366, "lb"),
  36416. name: "Back",
  36417. image: {
  36418. source: "./media/characters/lexor/back.svg",
  36419. extra: 1614/1533,
  36420. bottom: 76/1690
  36421. }
  36422. },
  36423. maw: {
  36424. height: math.unit(3, "feet"),
  36425. name: "Maw",
  36426. image: {
  36427. source: "./media/characters/lexor/maw.svg"
  36428. }
  36429. },
  36430. dick: {
  36431. height: math.unit(2.59, "feet"),
  36432. name: "Dick",
  36433. image: {
  36434. source: "./media/characters/lexor/dick.svg"
  36435. }
  36436. },
  36437. },
  36438. [
  36439. {
  36440. name: "Normal",
  36441. height: math.unit(11 + 6/12, "feet"),
  36442. default: true
  36443. },
  36444. ]
  36445. ))
  36446. characterMakers.push(() => makeCharacter(
  36447. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36448. {
  36449. front: {
  36450. height: math.unit(5 + 8/12, "feet"),
  36451. name: "Front",
  36452. image: {
  36453. source: "./media/characters/magnum/front.svg",
  36454. extra: 942/855,
  36455. bottom: 26/968
  36456. }
  36457. },
  36458. },
  36459. [
  36460. {
  36461. name: "Normal",
  36462. height: math.unit(5 + 8/12, "feet"),
  36463. default: true
  36464. },
  36465. ]
  36466. ))
  36467. characterMakers.push(() => makeCharacter(
  36468. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36469. {
  36470. front: {
  36471. height: math.unit(18 + 4/12, "feet"),
  36472. weight: math.unit(1500, "kg"),
  36473. name: "Front",
  36474. image: {
  36475. source: "./media/characters/solas-sharpsman/front.svg",
  36476. extra: 1698/1589,
  36477. bottom: 0/1698
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(18 + 4/12, "feet"),
  36485. default: true
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(5 + 5/12, "feet"),
  36494. weight: math.unit(180, "lb"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/october/front.svg",
  36498. extra: 1800/1650,
  36499. bottom: 0/1800
  36500. }
  36501. },
  36502. frontNsfw: {
  36503. height: math.unit(5 + 5/12, "feet"),
  36504. weight: math.unit(180, "lb"),
  36505. name: "Front (NSFW)",
  36506. image: {
  36507. source: "./media/characters/october/front-nsfw.svg",
  36508. extra: 1392/1307,
  36509. bottom: 42/1434
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Normal",
  36516. height: math.unit(5 + 5/12, "feet"),
  36517. default: true
  36518. },
  36519. ]
  36520. ))
  36521. characterMakers.push(() => makeCharacter(
  36522. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36523. {
  36524. front: {
  36525. height: math.unit(8 + 6/12, "feet"),
  36526. name: "Front",
  36527. image: {
  36528. source: "./media/characters/essynkardi/front.svg",
  36529. extra: 1914/1846,
  36530. bottom: 22/1936
  36531. }
  36532. },
  36533. },
  36534. [
  36535. {
  36536. name: "Normal",
  36537. height: math.unit(8 + 6/12, "feet"),
  36538. default: true
  36539. },
  36540. ]
  36541. ))
  36542. characterMakers.push(() => makeCharacter(
  36543. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36544. {
  36545. front: {
  36546. height: math.unit(6 + 6/12, "feet"),
  36547. weight: math.unit(7, "lb"),
  36548. name: "Front",
  36549. image: {
  36550. source: "./media/characters/icky/front.svg",
  36551. extra: 813/782,
  36552. bottom: 66/879
  36553. }
  36554. },
  36555. back: {
  36556. height: math.unit(6 + 6/12, "feet"),
  36557. weight: math.unit(7, "lb"),
  36558. name: "Back",
  36559. image: {
  36560. source: "./media/characters/icky/back.svg",
  36561. extra: 754/735,
  36562. bottom: 56/810
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(6 + 6/12, "feet"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(15, "feet"),
  36579. name: "Front",
  36580. image: {
  36581. source: "./media/characters/rojas/front.svg",
  36582. extra: 1462/1408,
  36583. bottom: 95/1557
  36584. }
  36585. },
  36586. back: {
  36587. height: math.unit(15, "feet"),
  36588. name: "Back",
  36589. image: {
  36590. source: "./media/characters/rojas/back.svg",
  36591. extra: 1023/954,
  36592. bottom: 28/1051
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(15, "feet"),
  36600. default: true
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36606. {
  36607. frontHuman: {
  36608. height: math.unit(5 + 7/12, "feet"),
  36609. name: "Front (Human)",
  36610. image: {
  36611. source: "./media/characters/alek-dryagan/front-human.svg",
  36612. extra: 1687/1667,
  36613. bottom: 69/1756
  36614. }
  36615. },
  36616. backHuman: {
  36617. height: math.unit(5 + 7/12, "feet"),
  36618. name: "Back (Human)",
  36619. image: {
  36620. source: "./media/characters/alek-dryagan/back-human.svg",
  36621. extra: 1670/1649,
  36622. bottom: 65/1735
  36623. }
  36624. },
  36625. frontDemi: {
  36626. height: math.unit(65, "feet"),
  36627. name: "Front (Demi)",
  36628. image: {
  36629. source: "./media/characters/alek-dryagan/front-demi.svg",
  36630. extra: 1669/1642,
  36631. bottom: 49/1718
  36632. }
  36633. },
  36634. backDemi: {
  36635. height: math.unit(65, "feet"),
  36636. name: "Back (Demi)",
  36637. image: {
  36638. source: "./media/characters/alek-dryagan/back-demi.svg",
  36639. extra: 1658/1637,
  36640. bottom: 40/1698
  36641. }
  36642. },
  36643. mawHuman: {
  36644. height: math.unit(0.3, "feet"),
  36645. name: "Maw (Human)",
  36646. image: {
  36647. source: "./media/characters/alek-dryagan/maw-human.svg"
  36648. }
  36649. },
  36650. mawDemi: {
  36651. height: math.unit(3.8, "feet"),
  36652. name: "Maw (Demi)",
  36653. image: {
  36654. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36655. }
  36656. },
  36657. },
  36658. [
  36659. {
  36660. name: "Normal",
  36661. height: math.unit(5 + 7/12, "feet"),
  36662. default: true
  36663. },
  36664. ]
  36665. ))
  36666. characterMakers.push(() => makeCharacter(
  36667. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36668. {
  36669. frontHuman: {
  36670. height: math.unit(5 + 2/12, "feet"),
  36671. name: "Front (Human)",
  36672. image: {
  36673. source: "./media/characters/gen/front-human.svg",
  36674. extra: 1627/1538,
  36675. bottom: 71/1698
  36676. }
  36677. },
  36678. backHuman: {
  36679. height: math.unit(5 + 2/12, "feet"),
  36680. name: "Back (Human)",
  36681. image: {
  36682. source: "./media/characters/gen/back-human.svg",
  36683. extra: 1638/1548,
  36684. bottom: 69/1707
  36685. }
  36686. },
  36687. frontDemi: {
  36688. height: math.unit(5 + 2/12, "feet"),
  36689. name: "Front (Demi)",
  36690. image: {
  36691. source: "./media/characters/gen/front-demi.svg",
  36692. extra: 1627/1538,
  36693. bottom: 71/1698
  36694. }
  36695. },
  36696. backDemi: {
  36697. height: math.unit(5 + 2/12, "feet"),
  36698. name: "Back (Demi)",
  36699. image: {
  36700. source: "./media/characters/gen/back-demi.svg",
  36701. extra: 1638/1548,
  36702. bottom: 69/1707
  36703. }
  36704. },
  36705. },
  36706. [
  36707. {
  36708. name: "Normal",
  36709. height: math.unit(5 + 2/12, "feet"),
  36710. default: true
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36716. {
  36717. frontImp: {
  36718. height: math.unit(1 + 11/12, "feet"),
  36719. name: "Front (Imp)",
  36720. image: {
  36721. source: "./media/characters/max-kobold/front-imp.svg",
  36722. extra: 1238/1134,
  36723. bottom: 81/1319
  36724. }
  36725. },
  36726. backImp: {
  36727. height: math.unit(1 + 11/12, "feet"),
  36728. name: "Back (Imp)",
  36729. image: {
  36730. source: "./media/characters/max-kobold/back-imp.svg",
  36731. extra: 1334/1175,
  36732. bottom: 34/1368
  36733. }
  36734. },
  36735. frontDemi: {
  36736. height: math.unit(5 + 9/12, "feet"),
  36737. name: "Front (Demi)",
  36738. image: {
  36739. source: "./media/characters/max-kobold/front-demi.svg",
  36740. extra: 1715/1685,
  36741. bottom: 54/1769
  36742. }
  36743. },
  36744. backDemi: {
  36745. height: math.unit(5 + 9/12, "feet"),
  36746. name: "Back (Demi)",
  36747. image: {
  36748. source: "./media/characters/max-kobold/back-demi.svg",
  36749. extra: 1752/1729,
  36750. bottom: 41/1793
  36751. }
  36752. },
  36753. handImp: {
  36754. height: math.unit(0.45, "feet"),
  36755. name: "Hand (Imp)",
  36756. image: {
  36757. source: "./media/characters/max-kobold/hand.svg"
  36758. }
  36759. },
  36760. pawImp: {
  36761. height: math.unit(0.46, "feet"),
  36762. name: "Paw (Imp)",
  36763. image: {
  36764. source: "./media/characters/max-kobold/paw.svg"
  36765. }
  36766. },
  36767. handDemi: {
  36768. height: math.unit(0.80, "feet"),
  36769. name: "Hand (Demi)",
  36770. image: {
  36771. source: "./media/characters/max-kobold/hand.svg"
  36772. }
  36773. },
  36774. pawDemi: {
  36775. height: math.unit(1.1, "feet"),
  36776. name: "Paw (Demi)",
  36777. image: {
  36778. source: "./media/characters/max-kobold/paw.svg"
  36779. }
  36780. },
  36781. headImp: {
  36782. height: math.unit(1.33, "feet"),
  36783. name: "Head (Imp)",
  36784. image: {
  36785. source: "./media/characters/max-kobold/head-imp.svg"
  36786. }
  36787. },
  36788. mawImp: {
  36789. height: math.unit(0.75, "feet"),
  36790. name: "Maw (Imp)",
  36791. image: {
  36792. source: "./media/characters/max-kobold/maw-imp.svg"
  36793. }
  36794. },
  36795. mawDemi: {
  36796. height: math.unit(0.42, "feet"),
  36797. name: "Maw (Demi)",
  36798. image: {
  36799. source: "./media/characters/max-kobold/maw-demi.svg"
  36800. }
  36801. },
  36802. },
  36803. [
  36804. {
  36805. name: "Normal",
  36806. height: math.unit(1 + 11/12, "feet"),
  36807. default: true
  36808. },
  36809. ]
  36810. ))
  36811. characterMakers.push(() => makeCharacter(
  36812. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36813. {
  36814. front: {
  36815. height: math.unit(7 + 5/12, "feet"),
  36816. name: "Front",
  36817. image: {
  36818. source: "./media/characters/carbon/front.svg",
  36819. extra: 1754/1689,
  36820. bottom: 65/1819
  36821. }
  36822. },
  36823. back: {
  36824. height: math.unit(7 + 5/12, "feet"),
  36825. name: "Back",
  36826. image: {
  36827. source: "./media/characters/carbon/back.svg",
  36828. extra: 1762/1695,
  36829. bottom: 24/1786
  36830. }
  36831. },
  36832. frontGigantamax: {
  36833. height: math.unit(150, "feet"),
  36834. name: "Front (Gigantamax)",
  36835. image: {
  36836. source: "./media/characters/carbon/front-gigantamax.svg",
  36837. extra: 1826/1669,
  36838. bottom: 59/1885
  36839. }
  36840. },
  36841. backGigantamax: {
  36842. height: math.unit(150, "feet"),
  36843. name: "Back (Gigantamax)",
  36844. image: {
  36845. source: "./media/characters/carbon/back-gigantamax.svg",
  36846. extra: 1796/1653,
  36847. bottom: 53/1849
  36848. }
  36849. },
  36850. maw: {
  36851. height: math.unit(0.48, "feet"),
  36852. name: "Maw",
  36853. image: {
  36854. source: "./media/characters/carbon/maw.svg"
  36855. }
  36856. },
  36857. mawGigantamax: {
  36858. height: math.unit(7.5, "feet"),
  36859. name: "Maw (Gigantamax)",
  36860. image: {
  36861. source: "./media/characters/carbon/maw-gigantamax.svg"
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Normal",
  36868. height: math.unit(7 + 5/12, "feet"),
  36869. default: true
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(6, "feet"),
  36878. name: "Front",
  36879. image: {
  36880. source: "./media/characters/maverick/front.svg",
  36881. extra: 1672/1661,
  36882. bottom: 85/1757
  36883. }
  36884. },
  36885. back: {
  36886. height: math.unit(6, "feet"),
  36887. name: "Back",
  36888. image: {
  36889. source: "./media/characters/maverick/back.svg",
  36890. extra: 1642/1631,
  36891. bottom: 38/1680
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Normal",
  36898. height: math.unit(6, "feet"),
  36899. default: true
  36900. },
  36901. ]
  36902. ))
  36903. characterMakers.push(() => makeCharacter(
  36904. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36905. {
  36906. front: {
  36907. height: math.unit(15, "feet"),
  36908. weight: math.unit(615, "lb"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/grockle/front.svg",
  36912. extra: 1535/1427,
  36913. bottom: 56/1591
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Normal",
  36920. height: math.unit(15, "feet"),
  36921. default: true
  36922. },
  36923. {
  36924. name: "Large",
  36925. height: math.unit(150, "feet")
  36926. },
  36927. {
  36928. name: "Macro",
  36929. height: math.unit(1876, "feet")
  36930. },
  36931. {
  36932. name: "Mega Macro",
  36933. height: math.unit(121940, "feet")
  36934. },
  36935. {
  36936. name: "Giga Macro",
  36937. height: math.unit(750, "km")
  36938. },
  36939. {
  36940. name: "Tera Macro",
  36941. height: math.unit(750000, "km")
  36942. },
  36943. {
  36944. name: "Galactic",
  36945. height: math.unit(1.4e5, "km")
  36946. },
  36947. {
  36948. name: "Godlike",
  36949. height: math.unit(9.8e280, "galaxies")
  36950. },
  36951. ]
  36952. ))
  36953. characterMakers.push(() => makeCharacter(
  36954. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36955. {
  36956. front: {
  36957. height: math.unit(11, "meters"),
  36958. weight: math.unit(20, "tonnes"),
  36959. name: "Front",
  36960. image: {
  36961. source: "./media/characters/alistair/front.svg",
  36962. extra: 1265/1009,
  36963. bottom: 93/1358
  36964. }
  36965. },
  36966. },
  36967. [
  36968. {
  36969. name: "Normal",
  36970. height: math.unit(11, "meters"),
  36971. default: true
  36972. },
  36973. ]
  36974. ))
  36975. characterMakers.push(() => makeCharacter(
  36976. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36977. {
  36978. front: {
  36979. height: math.unit(5 + 8/12, "feet"),
  36980. name: "Front",
  36981. image: {
  36982. source: "./media/characters/haruka/front.svg",
  36983. extra: 2012/1952,
  36984. bottom: 0/2012
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Normal",
  36991. height: math.unit(5 + 8/12, "feet"),
  36992. default: true
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36998. {
  36999. back: {
  37000. height: math.unit(9, "feet"),
  37001. name: "Back",
  37002. image: {
  37003. source: "./media/characters/vivian-sylveon/back.svg",
  37004. extra: 1853/1714,
  37005. bottom: 0/1853
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(9, "feet"),
  37013. default: true
  37014. },
  37015. {
  37016. name: "Macro",
  37017. height: math.unit(500, "feet")
  37018. },
  37019. {
  37020. name: "Megamacro",
  37021. height: math.unit(600, "miles")
  37022. },
  37023. {
  37024. name: "Gigamacro",
  37025. height: math.unit(30000, "miles")
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37031. {
  37032. anthro: {
  37033. height: math.unit(5 + 10/12, "feet"),
  37034. weight: math.unit(100, "lb"),
  37035. name: "Anthro",
  37036. image: {
  37037. source: "./media/characters/daiki/anthro.svg",
  37038. extra: 1115/1027,
  37039. bottom: 69/1184
  37040. }
  37041. },
  37042. feral: {
  37043. height: math.unit(200, "feet"),
  37044. name: "Feral",
  37045. image: {
  37046. source: "./media/characters/daiki/feral.svg",
  37047. extra: 1256/313,
  37048. bottom: 39/1295
  37049. }
  37050. },
  37051. feralHead: {
  37052. height: math.unit(171, "feet"),
  37053. name: "Feral Head",
  37054. image: {
  37055. source: "./media/characters/daiki/feral-head.svg"
  37056. }
  37057. },
  37058. manaDragon: {
  37059. height: math.unit(170, "meters"),
  37060. name: "Mana-dragon",
  37061. image: {
  37062. source: "./media/characters/daiki/mana-dragon.svg",
  37063. extra: 763/420,
  37064. bottom: 97/860
  37065. }
  37066. },
  37067. },
  37068. [
  37069. {
  37070. name: "Normal",
  37071. height: math.unit(5 + 10/12, "feet"),
  37072. default: true
  37073. },
  37074. ]
  37075. ))
  37076. characterMakers.push(() => makeCharacter(
  37077. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37078. {
  37079. fullyEquippedFront: {
  37080. height: math.unit(3 + 1/12, "feet"),
  37081. weight: math.unit(24, "lb"),
  37082. name: "Fully Equipped (Front)",
  37083. image: {
  37084. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37085. extra: 687/605,
  37086. bottom: 18/705
  37087. }
  37088. },
  37089. fullyEquippedBack: {
  37090. height: math.unit(3 + 1/12, "feet"),
  37091. weight: math.unit(24, "lb"),
  37092. name: "Fully Equipped (Back)",
  37093. image: {
  37094. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37095. extra: 689/590,
  37096. bottom: 18/707
  37097. }
  37098. },
  37099. dailyWear: {
  37100. height: math.unit(3 + 1/12, "feet"),
  37101. weight: math.unit(24, "lb"),
  37102. name: "Daily Wear",
  37103. image: {
  37104. source: "./media/characters/tea-spot/daily-wear.svg",
  37105. extra: 701/620,
  37106. bottom: 21/722
  37107. }
  37108. },
  37109. maidWork: {
  37110. height: math.unit(3 + 1/12, "feet"),
  37111. weight: math.unit(24, "lb"),
  37112. name: "Maid Work",
  37113. image: {
  37114. source: "./media/characters/tea-spot/maid-work.svg",
  37115. extra: 693/609,
  37116. bottom: 15/708
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(3 + 1/12, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37130. {
  37131. front: {
  37132. height: math.unit(175, "cm"),
  37133. weight: math.unit(75, "kg"),
  37134. name: "Front",
  37135. image: {
  37136. source: "./media/characters/chee/front.svg",
  37137. extra: 1796/1740,
  37138. bottom: 40/1836
  37139. }
  37140. },
  37141. },
  37142. [
  37143. {
  37144. name: "Micro-Micro",
  37145. height: math.unit(1, "nm")
  37146. },
  37147. {
  37148. name: "Micro-erst",
  37149. height: math.unit(1, "micrometer")
  37150. },
  37151. {
  37152. name: "Micro-er",
  37153. height: math.unit(1, "cm")
  37154. },
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(175, "cm"),
  37158. default: true
  37159. },
  37160. {
  37161. name: "Macro",
  37162. height: math.unit(100, "m")
  37163. },
  37164. {
  37165. name: "Macro-er",
  37166. height: math.unit(1, "km")
  37167. },
  37168. {
  37169. name: "Macro-erst",
  37170. height: math.unit(10, "km")
  37171. },
  37172. {
  37173. name: "Macro-Macro",
  37174. height: math.unit(100, "km")
  37175. },
  37176. ]
  37177. ))
  37178. characterMakers.push(() => makeCharacter(
  37179. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37180. {
  37181. front: {
  37182. height: math.unit(11 + 9/12, "feet"),
  37183. weight: math.unit(935, "lb"),
  37184. name: "Front",
  37185. image: {
  37186. source: "./media/characters/kingsley/front.svg",
  37187. extra: 1803/1674,
  37188. bottom: 127/1930
  37189. }
  37190. },
  37191. frontNude: {
  37192. height: math.unit(11 + 9/12, "feet"),
  37193. weight: math.unit(935, "lb"),
  37194. name: "Front (Nude)",
  37195. image: {
  37196. source: "./media/characters/kingsley/front-nude.svg",
  37197. extra: 1803/1674,
  37198. bottom: 127/1930
  37199. }
  37200. },
  37201. },
  37202. [
  37203. {
  37204. name: "Normal",
  37205. height: math.unit(11 + 9/12, "feet"),
  37206. default: true
  37207. },
  37208. ]
  37209. ))
  37210. characterMakers.push(() => makeCharacter(
  37211. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37212. {
  37213. side: {
  37214. height: math.unit(9, "feet"),
  37215. name: "Side",
  37216. image: {
  37217. source: "./media/characters/rymel/side.svg",
  37218. extra: 792/469,
  37219. bottom: 121/913
  37220. }
  37221. },
  37222. maw: {
  37223. height: math.unit(2.4, "meters"),
  37224. name: "Maw",
  37225. image: {
  37226. source: "./media/characters/rymel/maw.svg"
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "House Drake",
  37233. height: math.unit(2, "feet")
  37234. },
  37235. {
  37236. name: "Reduced",
  37237. height: math.unit(4.5, "feet")
  37238. },
  37239. {
  37240. name: "Normal",
  37241. height: math.unit(9, "feet"),
  37242. default: true
  37243. },
  37244. ]
  37245. ))
  37246. characterMakers.push(() => makeCharacter(
  37247. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37248. {
  37249. front: {
  37250. height: math.unit(1.74, "meters"),
  37251. weight: math.unit(55, "kg"),
  37252. name: "Front",
  37253. image: {
  37254. source: "./media/characters/rubus/front.svg",
  37255. extra: 1894/1742,
  37256. bottom: 44/1938
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(1.74, "meters"),
  37264. default: true
  37265. },
  37266. ]
  37267. ))
  37268. characterMakers.push(() => makeCharacter(
  37269. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37270. {
  37271. front: {
  37272. height: math.unit(5 + 2/12, "feet"),
  37273. weight: math.unit(112, "lb"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/cassie-kingston/front.svg",
  37277. extra: 1438/1390,
  37278. bottom: 47/1485
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(5 + 2/12, "feet"),
  37286. default: true
  37287. },
  37288. {
  37289. name: "Macro",
  37290. height: math.unit(128, "feet")
  37291. },
  37292. {
  37293. name: "Megamacro",
  37294. height: math.unit(2.56, "miles")
  37295. },
  37296. ]
  37297. ))
  37298. characterMakers.push(() => makeCharacter(
  37299. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37300. {
  37301. front: {
  37302. height: math.unit(7, "feet"),
  37303. name: "Front",
  37304. image: {
  37305. source: "./media/characters/fox/front.svg",
  37306. extra: 1798/1703,
  37307. bottom: 55/1853
  37308. }
  37309. },
  37310. back: {
  37311. height: math.unit(7, "feet"),
  37312. name: "Back",
  37313. image: {
  37314. source: "./media/characters/fox/back.svg",
  37315. extra: 1748/1649,
  37316. bottom: 32/1780
  37317. }
  37318. },
  37319. head: {
  37320. height: math.unit(1.95, "feet"),
  37321. name: "Head",
  37322. image: {
  37323. source: "./media/characters/fox/head.svg"
  37324. }
  37325. },
  37326. dick: {
  37327. height: math.unit(1.33, "feet"),
  37328. name: "Dick",
  37329. image: {
  37330. source: "./media/characters/fox/dick.svg"
  37331. }
  37332. },
  37333. foot: {
  37334. height: math.unit(1, "feet"),
  37335. name: "Foot",
  37336. image: {
  37337. source: "./media/characters/fox/foot.svg"
  37338. }
  37339. },
  37340. paw: {
  37341. height: math.unit(0.92, "feet"),
  37342. name: "Paw",
  37343. image: {
  37344. source: "./media/characters/fox/paw.svg"
  37345. }
  37346. },
  37347. },
  37348. [
  37349. {
  37350. name: "Small",
  37351. height: math.unit(3, "inches")
  37352. },
  37353. {
  37354. name: "\"Realistic\"",
  37355. height: math.unit(7, "feet")
  37356. },
  37357. {
  37358. name: "Normal",
  37359. height: math.unit(150, "feet"),
  37360. default: true
  37361. },
  37362. {
  37363. name: "BIG",
  37364. height: math.unit(1200, "feet")
  37365. },
  37366. {
  37367. name: "👀",
  37368. height: math.unit(5, "miles")
  37369. },
  37370. {
  37371. name: "👀👀👀",
  37372. height: math.unit(64, "miles")
  37373. },
  37374. ]
  37375. ))
  37376. characterMakers.push(() => makeCharacter(
  37377. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37378. {
  37379. front: {
  37380. height: math.unit(625, "feet"),
  37381. name: "Front",
  37382. image: {
  37383. source: "./media/characters/asonja-rossa/front.svg",
  37384. extra: 1833/1686,
  37385. bottom: 24/1857
  37386. }
  37387. },
  37388. back: {
  37389. height: math.unit(625, "feet"),
  37390. name: "Back",
  37391. image: {
  37392. source: "./media/characters/asonja-rossa/back.svg",
  37393. extra: 1852/1753,
  37394. bottom: 26/1878
  37395. }
  37396. },
  37397. },
  37398. [
  37399. {
  37400. name: "Macro",
  37401. height: math.unit(625, "feet"),
  37402. default: true
  37403. },
  37404. ]
  37405. ))
  37406. characterMakers.push(() => makeCharacter(
  37407. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37408. {
  37409. side: {
  37410. height: math.unit(8, "feet"),
  37411. name: "Side",
  37412. image: {
  37413. source: "./media/characters/rezukii/side.svg",
  37414. extra: 979/542,
  37415. bottom: 87/1066
  37416. }
  37417. },
  37418. sitting: {
  37419. height: math.unit(14.6, "feet"),
  37420. name: "Sitting",
  37421. image: {
  37422. source: "./media/characters/rezukii/sitting.svg",
  37423. extra: 1023/813,
  37424. bottom: 45/1068
  37425. }
  37426. },
  37427. },
  37428. [
  37429. {
  37430. name: "Tiny",
  37431. height: math.unit(2, "feet")
  37432. },
  37433. {
  37434. name: "Smol",
  37435. height: math.unit(4, "feet")
  37436. },
  37437. {
  37438. name: "Normal",
  37439. height: math.unit(8, "feet"),
  37440. default: true
  37441. },
  37442. {
  37443. name: "Big",
  37444. height: math.unit(12, "feet")
  37445. },
  37446. {
  37447. name: "Macro",
  37448. height: math.unit(30, "feet")
  37449. },
  37450. ]
  37451. ))
  37452. characterMakers.push(() => makeCharacter(
  37453. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37454. {
  37455. front: {
  37456. height: math.unit(14, "feet"),
  37457. weight: math.unit(9.5, "tonnes"),
  37458. name: "Front",
  37459. image: {
  37460. source: "./media/characters/dawnheart/front.svg",
  37461. extra: 2792/2675,
  37462. bottom: 64/2856
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Normal",
  37469. height: math.unit(14, "feet"),
  37470. default: true
  37471. },
  37472. ]
  37473. ))
  37474. characterMakers.push(() => makeCharacter(
  37475. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37476. {
  37477. front: {
  37478. height: math.unit(1.7, "m"),
  37479. name: "Front",
  37480. image: {
  37481. source: "./media/characters/gladi/front.svg",
  37482. extra: 1460/1362,
  37483. bottom: 19/1479
  37484. }
  37485. },
  37486. back: {
  37487. height: math.unit(1.7, "m"),
  37488. name: "Back",
  37489. image: {
  37490. source: "./media/characters/gladi/back.svg",
  37491. extra: 1459/1357,
  37492. bottom: 12/1471
  37493. }
  37494. },
  37495. feral: {
  37496. height: math.unit(2.05, "m"),
  37497. name: "Feral",
  37498. image: {
  37499. source: "./media/characters/gladi/feral.svg",
  37500. extra: 821/557,
  37501. bottom: 91/912
  37502. }
  37503. },
  37504. },
  37505. [
  37506. {
  37507. name: "Shortest",
  37508. height: math.unit(70, "cm")
  37509. },
  37510. {
  37511. name: "Normal",
  37512. height: math.unit(1.7, "m")
  37513. },
  37514. {
  37515. name: "Macro",
  37516. height: math.unit(10, "m"),
  37517. default: true
  37518. },
  37519. {
  37520. name: "Tallest",
  37521. height: math.unit(200, "m")
  37522. },
  37523. ]
  37524. ))
  37525. characterMakers.push(() => makeCharacter(
  37526. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37527. {
  37528. front: {
  37529. height: math.unit(5 + 7/12, "feet"),
  37530. weight: math.unit(2, "tons"),
  37531. name: "Front",
  37532. image: {
  37533. source: "./media/characters/erdno/front.svg",
  37534. extra: 1234/1129,
  37535. bottom: 35/1269
  37536. }
  37537. },
  37538. angled: {
  37539. height: math.unit(5 + 7/12, "feet"),
  37540. weight: math.unit(2, "tons"),
  37541. name: "Angled",
  37542. image: {
  37543. source: "./media/characters/erdno/angled.svg",
  37544. extra: 1185/1139,
  37545. bottom: 36/1221
  37546. }
  37547. },
  37548. side: {
  37549. height: math.unit(5 + 7/12, "feet"),
  37550. weight: math.unit(2, "tons"),
  37551. name: "Side",
  37552. image: {
  37553. source: "./media/characters/erdno/side.svg",
  37554. extra: 1191/1144,
  37555. bottom: 40/1231
  37556. }
  37557. },
  37558. back: {
  37559. height: math.unit(5 + 7/12, "feet"),
  37560. weight: math.unit(2, "tons"),
  37561. name: "Back",
  37562. image: {
  37563. source: "./media/characters/erdno/back.svg",
  37564. extra: 1202/1146,
  37565. bottom: 17/1219
  37566. }
  37567. },
  37568. frontNsfw: {
  37569. height: math.unit(5 + 7/12, "feet"),
  37570. weight: math.unit(2, "tons"),
  37571. name: "Front (NSFW)",
  37572. image: {
  37573. source: "./media/characters/erdno/front-nsfw.svg",
  37574. extra: 1234/1129,
  37575. bottom: 35/1269
  37576. }
  37577. },
  37578. angledNsfw: {
  37579. height: math.unit(5 + 7/12, "feet"),
  37580. weight: math.unit(2, "tons"),
  37581. name: "Angled (NSFW)",
  37582. image: {
  37583. source: "./media/characters/erdno/angled-nsfw.svg",
  37584. extra: 1185/1139,
  37585. bottom: 36/1221
  37586. }
  37587. },
  37588. sideNsfw: {
  37589. height: math.unit(5 + 7/12, "feet"),
  37590. weight: math.unit(2, "tons"),
  37591. name: "Side (NSFW)",
  37592. image: {
  37593. source: "./media/characters/erdno/side-nsfw.svg",
  37594. extra: 1191/1144,
  37595. bottom: 40/1231
  37596. }
  37597. },
  37598. backNsfw: {
  37599. height: math.unit(5 + 7/12, "feet"),
  37600. weight: math.unit(2, "tons"),
  37601. name: "Back (NSFW)",
  37602. image: {
  37603. source: "./media/characters/erdno/back-nsfw.svg",
  37604. extra: 1202/1146,
  37605. bottom: 17/1219
  37606. }
  37607. },
  37608. frontHyper: {
  37609. height: math.unit(5 + 7/12, "feet"),
  37610. weight: math.unit(2, "tons"),
  37611. name: "Front (Hyper)",
  37612. image: {
  37613. source: "./media/characters/erdno/front-hyper.svg",
  37614. extra: 1298/1136,
  37615. bottom: 35/1333
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(5 + 7/12, "feet"),
  37623. default: true
  37624. },
  37625. {
  37626. name: "Big",
  37627. height: math.unit(5.7, "meters")
  37628. },
  37629. {
  37630. name: "Macro",
  37631. height: math.unit(5.7, "kilometers")
  37632. },
  37633. {
  37634. name: "Megamacro",
  37635. height: math.unit(5.7, "earths")
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37641. {
  37642. front: {
  37643. height: math.unit(5 + 10/12, "feet"),
  37644. weight: math.unit(150, "lb"),
  37645. name: "Front",
  37646. image: {
  37647. source: "./media/characters/jamie/front.svg",
  37648. extra: 1908/1768,
  37649. bottom: 19/1927
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Minimum",
  37656. height: math.unit(2, "cm")
  37657. },
  37658. {
  37659. name: "Micro",
  37660. height: math.unit(3, "inches")
  37661. },
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(5 + 10/12, "feet"),
  37665. default: true
  37666. },
  37667. {
  37668. name: "Macro",
  37669. height: math.unit(150, "feet")
  37670. },
  37671. {
  37672. name: "Megamacro",
  37673. height: math.unit(10000, "m")
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37679. {
  37680. front: {
  37681. height: math.unit(2, "meters"),
  37682. weight: math.unit(100, "kg"),
  37683. name: "Front",
  37684. image: {
  37685. source: "./media/characters/shiron/front.svg",
  37686. extra: 2103/1985,
  37687. bottom: 98/2201
  37688. }
  37689. },
  37690. back: {
  37691. height: math.unit(2, "meters"),
  37692. weight: math.unit(100, "kg"),
  37693. name: "Back",
  37694. image: {
  37695. source: "./media/characters/shiron/back.svg",
  37696. extra: 2110/2015,
  37697. bottom: 89/2199
  37698. }
  37699. },
  37700. hand: {
  37701. height: math.unit(0.96, "feet"),
  37702. name: "Hand",
  37703. image: {
  37704. source: "./media/characters/shiron/hand.svg"
  37705. }
  37706. },
  37707. foot: {
  37708. height: math.unit(1.464, "feet"),
  37709. name: "Foot",
  37710. image: {
  37711. source: "./media/characters/shiron/foot.svg"
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(2, "meters")
  37719. },
  37720. {
  37721. name: "Macro",
  37722. height: math.unit(500, "meters"),
  37723. default: true
  37724. },
  37725. {
  37726. name: "Megamacro",
  37727. height: math.unit(20, "km")
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37733. {
  37734. front: {
  37735. height: math.unit(6, "feet"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/sam/front.svg",
  37739. extra: 849/826,
  37740. bottom: 19/868
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(6, "feet"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(8 + 4/12, "feet"),
  37757. weight: math.unit(122, "kg"),
  37758. name: "Front",
  37759. image: {
  37760. source: "./media/characters/namori-kurogawa/front.svg",
  37761. extra: 1894/1576,
  37762. bottom: 34/1928
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Normal",
  37769. height: math.unit(8 + 4/12, "feet"),
  37770. default: true
  37771. },
  37772. ]
  37773. ))
  37774. characterMakers.push(() => makeCharacter(
  37775. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37776. {
  37777. front: {
  37778. height: math.unit(9, "feet"),
  37779. weight: math.unit(621, "lb"),
  37780. name: "Front",
  37781. image: {
  37782. source: "./media/characters/unmru/front.svg",
  37783. extra: 1853/1747,
  37784. bottom: 73/1926
  37785. }
  37786. },
  37787. side: {
  37788. height: math.unit(9, "feet"),
  37789. weight: math.unit(621, "lb"),
  37790. name: "Side",
  37791. image: {
  37792. source: "./media/characters/unmru/side.svg",
  37793. extra: 1781/1671,
  37794. bottom: 127/1908
  37795. }
  37796. },
  37797. back: {
  37798. height: math.unit(9, "feet"),
  37799. weight: math.unit(621, "lb"),
  37800. name: "Back",
  37801. image: {
  37802. source: "./media/characters/unmru/back.svg",
  37803. extra: 1894/1765,
  37804. bottom: 75/1969
  37805. }
  37806. },
  37807. dick: {
  37808. height: math.unit(3, "feet"),
  37809. weight: math.unit(35, "lb"),
  37810. name: "Dick",
  37811. image: {
  37812. source: "./media/characters/unmru/dick.svg"
  37813. }
  37814. },
  37815. },
  37816. [
  37817. {
  37818. name: "Normal",
  37819. height: math.unit(9, "feet")
  37820. },
  37821. {
  37822. name: "Natural",
  37823. height: math.unit(27, "feet"),
  37824. default: true
  37825. },
  37826. {
  37827. name: "Giant",
  37828. height: math.unit(90, "feet")
  37829. },
  37830. {
  37831. name: "Kaiju",
  37832. height: math.unit(270, "feet")
  37833. },
  37834. {
  37835. name: "Macro",
  37836. height: math.unit(900, "feet")
  37837. },
  37838. {
  37839. name: "Macro+",
  37840. height: math.unit(2700, "feet")
  37841. },
  37842. {
  37843. name: "Megamacro",
  37844. height: math.unit(9000, "feet")
  37845. },
  37846. {
  37847. name: "City-Crushing",
  37848. height: math.unit(27000, "feet")
  37849. },
  37850. {
  37851. name: "Mountain-Mashing",
  37852. height: math.unit(90000, "feet")
  37853. },
  37854. {
  37855. name: "Earth-Eclipsing",
  37856. height: math.unit(2.7e8, "feet")
  37857. },
  37858. {
  37859. name: "Sol-Swallowing",
  37860. height: math.unit(9e10, "feet")
  37861. },
  37862. {
  37863. name: "Majoris-Munching",
  37864. height: math.unit(2.7e13, "feet")
  37865. },
  37866. ]
  37867. ))
  37868. characterMakers.push(() => makeCharacter(
  37869. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37870. {
  37871. front: {
  37872. height: math.unit(1, "inch"),
  37873. name: "Front",
  37874. image: {
  37875. source: "./media/characters/squeaks-mouse/front.svg",
  37876. extra: 352/308,
  37877. bottom: 25/377
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Micro",
  37884. height: math.unit(1, "inch"),
  37885. default: true
  37886. },
  37887. ]
  37888. ))
  37889. characterMakers.push(() => makeCharacter(
  37890. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37891. {
  37892. side: {
  37893. height: math.unit(35, "feet"),
  37894. name: "Side",
  37895. image: {
  37896. source: "./media/characters/sayko/side.svg",
  37897. extra: 1697/1021,
  37898. bottom: 82/1779
  37899. }
  37900. },
  37901. head: {
  37902. height: math.unit(16, "feet"),
  37903. name: "Head",
  37904. image: {
  37905. source: "./media/characters/sayko/head.svg"
  37906. }
  37907. },
  37908. forepaw: {
  37909. height: math.unit(7.85, "feet"),
  37910. name: "Forepaw",
  37911. image: {
  37912. source: "./media/characters/sayko/forepaw.svg"
  37913. }
  37914. },
  37915. hindpaw: {
  37916. height: math.unit(8.8, "feet"),
  37917. name: "Hindpaw",
  37918. image: {
  37919. source: "./media/characters/sayko/hindpaw.svg"
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(35, "feet"),
  37927. default: true
  37928. },
  37929. {
  37930. name: "Colossus",
  37931. height: math.unit(100, "meters")
  37932. },
  37933. {
  37934. name: "\"Small\" Deity",
  37935. height: math.unit(1, "km")
  37936. },
  37937. {
  37938. name: "\"Large\" Deity",
  37939. height: math.unit(15, "km")
  37940. },
  37941. ]
  37942. ))
  37943. characterMakers.push(() => makeCharacter(
  37944. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37945. {
  37946. front: {
  37947. height: math.unit(6, "feet"),
  37948. weight: math.unit(250, "lb"),
  37949. name: "Front",
  37950. image: {
  37951. source: "./media/characters/mukiro/front.svg",
  37952. extra: 1368/1310,
  37953. bottom: 34/1402
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "Normal",
  37960. height: math.unit(6, "feet"),
  37961. default: true
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37967. {
  37968. front: {
  37969. height: math.unit(12 + 4/12, "feet"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37973. extra: 1346/1311,
  37974. bottom: 65/1411
  37975. }
  37976. },
  37977. },
  37978. [
  37979. {
  37980. name: "Base",
  37981. height: math.unit(12 + 4/12, "feet"),
  37982. default: true
  37983. },
  37984. {
  37985. name: "Macro",
  37986. height: math.unit(150, "feet")
  37987. },
  37988. {
  37989. name: "Mega",
  37990. height: math.unit(2, "miles")
  37991. },
  37992. {
  37993. name: "Demi God",
  37994. height: math.unit(4, "AU")
  37995. },
  37996. {
  37997. name: "God Size",
  37998. height: math.unit(1, "universe")
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38004. {
  38005. front: {
  38006. height: math.unit(3 + 3/12, "feet"),
  38007. weight: math.unit(88, "lb"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/trey/front.svg",
  38011. extra: 1815/1509,
  38012. bottom: 60/1875
  38013. }
  38014. },
  38015. },
  38016. [
  38017. {
  38018. name: "Normal",
  38019. height: math.unit(3 + 3/12, "feet"),
  38020. default: true
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38026. {
  38027. front: {
  38028. height: math.unit(4, "meters"),
  38029. name: "Front",
  38030. image: {
  38031. source: "./media/characters/adelonda/front.svg",
  38032. extra: 1077/982,
  38033. bottom: 39/1116
  38034. }
  38035. },
  38036. back: {
  38037. height: math.unit(4, "meters"),
  38038. name: "Back",
  38039. image: {
  38040. source: "./media/characters/adelonda/back.svg",
  38041. extra: 1105/1003,
  38042. bottom: 25/1130
  38043. }
  38044. },
  38045. feral: {
  38046. height: math.unit(40/1.5, "meters"),
  38047. name: "Feral",
  38048. image: {
  38049. source: "./media/characters/adelonda/feral.svg",
  38050. extra: 597/271,
  38051. bottom: 387/984
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(4, "meters"),
  38059. default: true
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38065. {
  38066. front: {
  38067. height: math.unit(8 + 4/12, "feet"),
  38068. weight: math.unit(670, "lb"),
  38069. name: "Front",
  38070. image: {
  38071. source: "./media/characters/acadiel/front.svg",
  38072. extra: 1901/1595,
  38073. bottom: 142/2043
  38074. }
  38075. },
  38076. },
  38077. [
  38078. {
  38079. name: "Normal",
  38080. height: math.unit(8 + 4/12, "feet"),
  38081. default: true
  38082. },
  38083. {
  38084. name: "Macro",
  38085. height: math.unit(200, "feet")
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(6 + 2/12, "feet"),
  38094. weight: math.unit(185, "lb"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/kayne-ein/front.svg",
  38098. extra: 1780/1560,
  38099. bottom: 81/1861
  38100. }
  38101. },
  38102. },
  38103. [
  38104. {
  38105. name: "Normal",
  38106. height: math.unit(6 + 2/12, "feet"),
  38107. default: true
  38108. },
  38109. {
  38110. name: "Transformation Stage",
  38111. height: math.unit(15, "feet")
  38112. },
  38113. {
  38114. name: "Macro",
  38115. height: math.unit(150, "feet")
  38116. },
  38117. {
  38118. name: "Earth's Shadow",
  38119. height: math.unit(6200, "miles")
  38120. },
  38121. {
  38122. name: "Universal Demon",
  38123. height: math.unit(28e9, "parsecs")
  38124. },
  38125. {
  38126. name: "Multiverse God",
  38127. height: math.unit(3, "multiverses")
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38133. {
  38134. front: {
  38135. height: math.unit(5 + 5/12, "feet"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/fawn/front.svg",
  38139. extra: 1873/1731,
  38140. bottom: 95/1968
  38141. }
  38142. },
  38143. back: {
  38144. height: math.unit(5 + 5/12, "feet"),
  38145. name: "Back",
  38146. image: {
  38147. source: "./media/characters/fawn/back.svg",
  38148. extra: 1813/1700,
  38149. bottom: 14/1827
  38150. }
  38151. },
  38152. hoof: {
  38153. height: math.unit(1.45, "feet"),
  38154. name: "Hoof",
  38155. image: {
  38156. source: "./media/characters/fawn/hoof.svg"
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Normal",
  38163. height: math.unit(5 + 5/12, "feet"),
  38164. default: true
  38165. },
  38166. ]
  38167. ))
  38168. characterMakers.push(() => makeCharacter(
  38169. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38170. {
  38171. front: {
  38172. height: math.unit(2 + 5/12, "feet"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/orion/front.svg",
  38176. extra: 1366/1304,
  38177. bottom: 43/1409
  38178. }
  38179. },
  38180. paw: {
  38181. height: math.unit(0.52, "feet"),
  38182. name: "Paw",
  38183. image: {
  38184. source: "./media/characters/orion/paw.svg"
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(2 + 5/12, "feet"),
  38192. default: true
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38198. {
  38199. front: {
  38200. height: math.unit(5 + 10/12, "feet"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/vera/front.svg",
  38204. extra: 1680/1575,
  38205. bottom: 49/1729
  38206. }
  38207. },
  38208. back: {
  38209. height: math.unit(5 + 10/12, "feet"),
  38210. name: "Back",
  38211. image: {
  38212. source: "./media/characters/vera/back.svg",
  38213. extra: 1700/1588,
  38214. bottom: 18/1718
  38215. }
  38216. },
  38217. arcanine: {
  38218. height: math.unit(6 + 8/12, "feet"),
  38219. name: "Arcanine",
  38220. image: {
  38221. source: "./media/characters/vera/arcanine.svg",
  38222. extra: 1590/1511,
  38223. bottom: 71/1661
  38224. }
  38225. },
  38226. maw: {
  38227. height: math.unit(0.82, "feet"),
  38228. name: "Maw",
  38229. image: {
  38230. source: "./media/characters/vera/maw.svg"
  38231. }
  38232. },
  38233. mawArcanine: {
  38234. height: math.unit(0.97, "feet"),
  38235. name: "Maw (Arcanine)",
  38236. image: {
  38237. source: "./media/characters/vera/maw-arcanine.svg"
  38238. }
  38239. },
  38240. paw: {
  38241. height: math.unit(0.75, "feet"),
  38242. name: "Paw",
  38243. image: {
  38244. source: "./media/characters/vera/paw.svg"
  38245. }
  38246. },
  38247. pawprint: {
  38248. height: math.unit(0.52, "feet"),
  38249. name: "Pawprint",
  38250. image: {
  38251. source: "./media/characters/vera/pawprint.svg"
  38252. }
  38253. },
  38254. },
  38255. [
  38256. {
  38257. name: "Normal",
  38258. height: math.unit(5 + 10/12, "feet"),
  38259. default: true
  38260. },
  38261. {
  38262. name: "Macro",
  38263. height: math.unit(75, "feet")
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38269. {
  38270. front: {
  38271. height: math.unit(4, "feet"),
  38272. weight: math.unit(40, "lb"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/orvan-rabbit/front.svg",
  38276. extra: 1896/1642,
  38277. bottom: 29/1925
  38278. }
  38279. },
  38280. },
  38281. [
  38282. {
  38283. name: "Normal",
  38284. height: math.unit(4, "feet"),
  38285. default: true
  38286. },
  38287. ]
  38288. ))
  38289. characterMakers.push(() => makeCharacter(
  38290. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38291. {
  38292. front: {
  38293. height: math.unit(6, "feet"),
  38294. weight: math.unit(168, "lb"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/lisa/front.svg",
  38298. extra: 2065/1867,
  38299. bottom: 46/2111
  38300. }
  38301. },
  38302. back: {
  38303. height: math.unit(6, "feet"),
  38304. weight: math.unit(168, "lb"),
  38305. name: "Back",
  38306. image: {
  38307. source: "./media/characters/lisa/back.svg",
  38308. extra: 1982/1838,
  38309. bottom: 29/2011
  38310. }
  38311. },
  38312. maw: {
  38313. height: math.unit(0.81, "feet"),
  38314. name: "Maw",
  38315. image: {
  38316. source: "./media/characters/lisa/maw.svg"
  38317. }
  38318. },
  38319. paw: {
  38320. height: math.unit(0.9, "feet"),
  38321. name: "Paw",
  38322. image: {
  38323. source: "./media/characters/lisa/paw.svg"
  38324. }
  38325. },
  38326. caribousune: {
  38327. height: math.unit(7 + 2/12, "feet"),
  38328. weight: math.unit(268, "lb"),
  38329. name: "Caribousune",
  38330. image: {
  38331. source: "./media/characters/lisa/caribousune.svg",
  38332. extra: 1843/1633,
  38333. bottom: 29/1872
  38334. }
  38335. },
  38336. frontCaribousune: {
  38337. height: math.unit(7 + 2/12, "feet"),
  38338. weight: math.unit(268, "lb"),
  38339. name: "Front (Caribousune)",
  38340. image: {
  38341. source: "./media/characters/lisa/front-caribousune.svg",
  38342. extra: 1818/1638,
  38343. bottom: 52/1870
  38344. }
  38345. },
  38346. sideCaribousune: {
  38347. height: math.unit(7 + 2/12, "feet"),
  38348. weight: math.unit(268, "lb"),
  38349. name: "Side (Caribousune)",
  38350. image: {
  38351. source: "./media/characters/lisa/side-caribousune.svg",
  38352. extra: 1851/1635,
  38353. bottom: 16/1867
  38354. }
  38355. },
  38356. backCaribousune: {
  38357. height: math.unit(7 + 2/12, "feet"),
  38358. weight: math.unit(268, "lb"),
  38359. name: "Back (Caribousune)",
  38360. image: {
  38361. source: "./media/characters/lisa/back-caribousune.svg",
  38362. extra: 1801/1604,
  38363. bottom: 44/1845
  38364. }
  38365. },
  38366. caribou: {
  38367. height: math.unit(7 + 2/12, "feet"),
  38368. weight: math.unit(268, "lb"),
  38369. name: "Caribou",
  38370. image: {
  38371. source: "./media/characters/lisa/caribou.svg",
  38372. extra: 1843/1633,
  38373. bottom: 29/1872
  38374. }
  38375. },
  38376. frontCaribou: {
  38377. height: math.unit(7 + 2/12, "feet"),
  38378. weight: math.unit(268, "lb"),
  38379. name: "Front (Caribou)",
  38380. image: {
  38381. source: "./media/characters/lisa/front-caribou.svg",
  38382. extra: 1818/1638,
  38383. bottom: 52/1870
  38384. }
  38385. },
  38386. sideCaribou: {
  38387. height: math.unit(7 + 2/12, "feet"),
  38388. weight: math.unit(268, "lb"),
  38389. name: "Side (Caribou)",
  38390. image: {
  38391. source: "./media/characters/lisa/side-caribou.svg",
  38392. extra: 1851/1635,
  38393. bottom: 16/1867
  38394. }
  38395. },
  38396. backCaribou: {
  38397. height: math.unit(7 + 2/12, "feet"),
  38398. weight: math.unit(268, "lb"),
  38399. name: "Back (Caribou)",
  38400. image: {
  38401. source: "./media/characters/lisa/back-caribou.svg",
  38402. extra: 1801/1604,
  38403. bottom: 44/1845
  38404. }
  38405. },
  38406. mawCaribou: {
  38407. height: math.unit(1.45, "feet"),
  38408. name: "Maw (Caribou)",
  38409. image: {
  38410. source: "./media/characters/lisa/maw-caribou.svg"
  38411. }
  38412. },
  38413. mawCaribousune: {
  38414. height: math.unit(1.45, "feet"),
  38415. name: "Maw (Caribousune)",
  38416. image: {
  38417. source: "./media/characters/lisa/maw-caribousune.svg"
  38418. }
  38419. },
  38420. pawCaribousune: {
  38421. height: math.unit(1.61, "feet"),
  38422. name: "Paw (Caribou)",
  38423. image: {
  38424. source: "./media/characters/lisa/paw-caribousune.svg"
  38425. }
  38426. },
  38427. },
  38428. [
  38429. {
  38430. name: "Normal",
  38431. height: math.unit(6, "feet")
  38432. },
  38433. {
  38434. name: "God Size",
  38435. height: math.unit(72, "feet"),
  38436. default: true
  38437. },
  38438. {
  38439. name: "Towering",
  38440. height: math.unit(288, "feet")
  38441. },
  38442. {
  38443. name: "City Size",
  38444. height: math.unit(48384, "feet")
  38445. },
  38446. {
  38447. name: "Continental",
  38448. height: math.unit(4200, "miles")
  38449. },
  38450. {
  38451. name: "Planet Eater",
  38452. height: math.unit(42, "earths")
  38453. },
  38454. {
  38455. name: "Star Swallower",
  38456. height: math.unit(42, "solarradii")
  38457. },
  38458. {
  38459. name: "System Swallower",
  38460. height: math.unit(84000, "AU")
  38461. },
  38462. {
  38463. name: "Galaxy Gobbler",
  38464. height: math.unit(42, "galaxies")
  38465. },
  38466. {
  38467. name: "Universe Devourer",
  38468. height: math.unit(42, "universes")
  38469. },
  38470. {
  38471. name: "Multiverse Muncher",
  38472. height: math.unit(42, "multiverses")
  38473. },
  38474. ]
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(36, "feet"),
  38481. name: "Front",
  38482. image: {
  38483. source: "./media/characters/shadow-rat/front.svg",
  38484. extra: 1845/1758,
  38485. bottom: 83/1928
  38486. }
  38487. },
  38488. },
  38489. [
  38490. {
  38491. name: "Macro",
  38492. height: math.unit(36, "feet"),
  38493. default: true
  38494. },
  38495. ]
  38496. ))
  38497. characterMakers.push(() => makeCharacter(
  38498. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38499. {
  38500. side: {
  38501. height: math.unit(8, "feet"),
  38502. weight: math.unit(2630, "lb"),
  38503. name: "Side",
  38504. image: {
  38505. source: "./media/characters/torallia/side.svg",
  38506. extra: 2164/2021,
  38507. bottom: 371/2535
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Mortal Interaction",
  38514. height: math.unit(8, "feet")
  38515. },
  38516. {
  38517. name: "Natural",
  38518. height: math.unit(24, "feet"),
  38519. default: true
  38520. },
  38521. {
  38522. name: "Giant",
  38523. height: math.unit(80, "feet")
  38524. },
  38525. {
  38526. name: "Kaiju",
  38527. height: math.unit(240, "feet")
  38528. },
  38529. {
  38530. name: "Macro",
  38531. height: math.unit(800, "feet")
  38532. },
  38533. {
  38534. name: "Macro+",
  38535. height: math.unit(2400, "feet")
  38536. },
  38537. {
  38538. name: "Macro++",
  38539. height: math.unit(8000, "feet")
  38540. },
  38541. {
  38542. name: "City-Crushing",
  38543. height: math.unit(24000, "feet")
  38544. },
  38545. {
  38546. name: "Mountain-Mashing",
  38547. height: math.unit(80000, "feet")
  38548. },
  38549. {
  38550. name: "District Demolisher",
  38551. height: math.unit(240000, "feet")
  38552. },
  38553. {
  38554. name: "Tri-County Terror",
  38555. height: math.unit(800000, "feet")
  38556. },
  38557. {
  38558. name: "State Smasher",
  38559. height: math.unit(2.4e6, "feet")
  38560. },
  38561. {
  38562. name: "Nation Nemesis",
  38563. height: math.unit(8e6, "feet")
  38564. },
  38565. {
  38566. name: "Continent Cracker",
  38567. height: math.unit(2.4e7, "feet")
  38568. },
  38569. {
  38570. name: "Planet-Pillaging",
  38571. height: math.unit(8e7, "feet")
  38572. },
  38573. {
  38574. name: "Earth-Eclipsing",
  38575. height: math.unit(2.4e8, "feet")
  38576. },
  38577. {
  38578. name: "Jovian-Jostling",
  38579. height: math.unit(8e8, "feet")
  38580. },
  38581. {
  38582. name: "Gas Giant Gulper",
  38583. height: math.unit(2.4e9, "feet")
  38584. },
  38585. {
  38586. name: "Astral Annihilator",
  38587. height: math.unit(8e9, "feet")
  38588. },
  38589. {
  38590. name: "Celestial Conqueror",
  38591. height: math.unit(2.4e10, "feet")
  38592. },
  38593. {
  38594. name: "Sol-Swallowing",
  38595. height: math.unit(8e10, "feet")
  38596. },
  38597. {
  38598. name: "Hunter of the Heavens",
  38599. height: math.unit(2.4e13, "feet")
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(6 + 8/12, "feet"),
  38608. name: "Front",
  38609. image: {
  38610. source: "./media/characters/rebecca-pawlson/front.svg",
  38611. extra: 1737/1596,
  38612. bottom: 107/1844
  38613. }
  38614. },
  38615. back: {
  38616. height: math.unit(6 + 8/12, "feet"),
  38617. name: "Back",
  38618. image: {
  38619. source: "./media/characters/rebecca-pawlson/back.svg",
  38620. extra: 1702/1523,
  38621. bottom: 86/1788
  38622. }
  38623. },
  38624. },
  38625. [
  38626. {
  38627. name: "Normal",
  38628. height: math.unit(6 + 8/12, "feet")
  38629. },
  38630. {
  38631. name: "Mini Macro",
  38632. height: math.unit(10, "feet"),
  38633. default: true
  38634. },
  38635. {
  38636. name: "Macro",
  38637. height: math.unit(100, "feet")
  38638. },
  38639. {
  38640. name: "Mega Macro",
  38641. height: math.unit(2500, "feet")
  38642. },
  38643. {
  38644. name: "Giga Macro",
  38645. height: math.unit(50, "miles")
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38651. {
  38652. front: {
  38653. height: math.unit(7 + 6/12, "feet"),
  38654. weight: math.unit(600, "lb"),
  38655. name: "Front",
  38656. image: {
  38657. source: "./media/characters/moxie-nova/front.svg",
  38658. extra: 1734/1652,
  38659. bottom: 41/1775
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(7 + 6/12, "feet"),
  38667. default: true
  38668. },
  38669. ]
  38670. ))
  38671. characterMakers.push(() => makeCharacter(
  38672. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38673. {
  38674. goat: {
  38675. height: math.unit(4, "feet"),
  38676. weight: math.unit(180, "lb"),
  38677. name: "Goat",
  38678. image: {
  38679. source: "./media/characters/tiffany/goat.svg",
  38680. extra: 1845/1595,
  38681. bottom: 106/1951
  38682. }
  38683. },
  38684. front: {
  38685. height: math.unit(5, "feet"),
  38686. weight: math.unit(150, "lb"),
  38687. name: "Foxcoon",
  38688. image: {
  38689. source: "./media/characters/tiffany/foxcoon.svg",
  38690. extra: 1941/1845,
  38691. bottom: 58/1999
  38692. }
  38693. },
  38694. },
  38695. [
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(5, "feet"),
  38699. default: true
  38700. },
  38701. ]
  38702. ))
  38703. characterMakers.push(() => makeCharacter(
  38704. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38705. {
  38706. front: {
  38707. height: math.unit(8, "feet"),
  38708. weight: math.unit(300, "lb"),
  38709. name: "Front",
  38710. image: {
  38711. source: "./media/characters/raxinath/front.svg",
  38712. extra: 1407/1309,
  38713. bottom: 39/1446
  38714. }
  38715. },
  38716. back: {
  38717. height: math.unit(8, "feet"),
  38718. weight: math.unit(300, "lb"),
  38719. name: "Back",
  38720. image: {
  38721. source: "./media/characters/raxinath/back.svg",
  38722. extra: 1405/1315,
  38723. bottom: 9/1414
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Speck",
  38730. height: math.unit(0.5, "nm")
  38731. },
  38732. {
  38733. name: "Micro",
  38734. height: math.unit(3, "inches")
  38735. },
  38736. {
  38737. name: "Kobold",
  38738. height: math.unit(3, "feet")
  38739. },
  38740. {
  38741. name: "Normal",
  38742. height: math.unit(8, "feet"),
  38743. default: true
  38744. },
  38745. {
  38746. name: "Giant",
  38747. height: math.unit(50, "feet")
  38748. },
  38749. {
  38750. name: "Macro",
  38751. height: math.unit(1000, "feet")
  38752. },
  38753. {
  38754. name: "Megamacro",
  38755. height: math.unit(1, "mile")
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(10, "feet"),
  38764. weight: math.unit(1442, "lb"),
  38765. name: "Front",
  38766. image: {
  38767. source: "./media/characters/mal-dragon/front.svg",
  38768. extra: 1515/1444,
  38769. bottom: 113/1628
  38770. }
  38771. },
  38772. back: {
  38773. height: math.unit(10, "feet"),
  38774. weight: math.unit(1442, "lb"),
  38775. name: "Back",
  38776. image: {
  38777. source: "./media/characters/mal-dragon/back.svg",
  38778. extra: 1527/1434,
  38779. bottom: 25/1552
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Mortal Interaction",
  38786. height: math.unit(10, "feet"),
  38787. default: true
  38788. },
  38789. {
  38790. name: "Large",
  38791. height: math.unit(30, "feet")
  38792. },
  38793. {
  38794. name: "Kaiju",
  38795. height: math.unit(300, "feet")
  38796. },
  38797. {
  38798. name: "Megamacro",
  38799. height: math.unit(10000, "feet")
  38800. },
  38801. {
  38802. name: "Continent Cracker",
  38803. height: math.unit(30000000, "feet")
  38804. },
  38805. {
  38806. name: "Sol-Swallowing",
  38807. height: math.unit(1e11, "feet")
  38808. },
  38809. {
  38810. name: "Light Universal",
  38811. height: math.unit(5, "universes")
  38812. },
  38813. {
  38814. name: "Universe Atoms",
  38815. height: math.unit(1.829e9, "universes")
  38816. },
  38817. {
  38818. name: "Light Multiversal",
  38819. height: math.unit(5, "multiverses")
  38820. },
  38821. {
  38822. name: "Multiverse Atoms",
  38823. height: math.unit(1.829e9, "multiverses")
  38824. },
  38825. {
  38826. name: "Fabric of Time",
  38827. height: math.unit(1e262, "multiverses")
  38828. },
  38829. ]
  38830. ))
  38831. characterMakers.push(() => makeCharacter(
  38832. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38833. {
  38834. front: {
  38835. height: math.unit(9, "feet"),
  38836. weight: math.unit(1050, "lb"),
  38837. name: "Front",
  38838. image: {
  38839. source: "./media/characters/tabitha/front.svg",
  38840. extra: 2083/1994,
  38841. bottom: 68/2151
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Baseline",
  38848. height: math.unit(9, "feet"),
  38849. default: true
  38850. },
  38851. {
  38852. name: "Giant",
  38853. height: math.unit(90, "feet")
  38854. },
  38855. {
  38856. name: "Macro",
  38857. height: math.unit(900, "feet")
  38858. },
  38859. {
  38860. name: "Megamacro",
  38861. height: math.unit(9000, "feet")
  38862. },
  38863. {
  38864. name: "City-Crushing",
  38865. height: math.unit(27000, "feet")
  38866. },
  38867. {
  38868. name: "Mountain-Mashing",
  38869. height: math.unit(90000, "feet")
  38870. },
  38871. {
  38872. name: "Nation Nemesis",
  38873. height: math.unit(9e6, "feet")
  38874. },
  38875. {
  38876. name: "Continent Cracker",
  38877. height: math.unit(27e6, "feet")
  38878. },
  38879. {
  38880. name: "Earth-Eclipsing",
  38881. height: math.unit(2.7e8, "feet")
  38882. },
  38883. {
  38884. name: "Gas Giant Gulper",
  38885. height: math.unit(2.7e9, "feet")
  38886. },
  38887. {
  38888. name: "Sol-Swallowing",
  38889. height: math.unit(9e10, "feet")
  38890. },
  38891. {
  38892. name: "Galaxy Gulper",
  38893. height: math.unit(9, "galaxies")
  38894. },
  38895. {
  38896. name: "Cosmos Churner",
  38897. height: math.unit(9, "universes")
  38898. },
  38899. ]
  38900. ))
  38901. characterMakers.push(() => makeCharacter(
  38902. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38903. {
  38904. front: {
  38905. height: math.unit(160, "cm"),
  38906. weight: math.unit(55, "kg"),
  38907. name: "Front",
  38908. image: {
  38909. source: "./media/characters/tow/front.svg",
  38910. extra: 1751/1722,
  38911. bottom: 74/1825
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "Norm",
  38918. height: math.unit(160, "cm")
  38919. },
  38920. {
  38921. name: "Casual",
  38922. height: math.unit(3200, "m"),
  38923. default: true
  38924. },
  38925. {
  38926. name: "Show-Off",
  38927. height: math.unit(160, "km")
  38928. },
  38929. ]
  38930. ))
  38931. characterMakers.push(() => makeCharacter(
  38932. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38933. {
  38934. front: {
  38935. height: math.unit(7 + 11/12, "feet"),
  38936. weight: math.unit(342.8, "lb"),
  38937. name: "Front",
  38938. image: {
  38939. source: "./media/characters/vivian-orca-dragon/front.svg",
  38940. extra: 1890/1865,
  38941. bottom: 28/1918
  38942. }
  38943. },
  38944. },
  38945. [
  38946. {
  38947. name: "Micro",
  38948. height: math.unit(5, "inches")
  38949. },
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(7 + 11/12, "feet"),
  38953. default: true
  38954. },
  38955. {
  38956. name: "Macro",
  38957. height: math.unit(395 + 7/12, "feet")
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38963. {
  38964. side: {
  38965. height: math.unit(10, "feet"),
  38966. weight: math.unit(1442, "lb"),
  38967. name: "Side",
  38968. image: {
  38969. source: "./media/characters/lotherakon/side.svg",
  38970. extra: 1604/1497,
  38971. bottom: 89/1693
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Mortal Interaction",
  38978. height: math.unit(10, "feet")
  38979. },
  38980. {
  38981. name: "Large",
  38982. height: math.unit(30, "feet"),
  38983. default: true
  38984. },
  38985. {
  38986. name: "Giant",
  38987. height: math.unit(100, "feet")
  38988. },
  38989. {
  38990. name: "Kaiju",
  38991. height: math.unit(300, "feet")
  38992. },
  38993. {
  38994. name: "Macro",
  38995. height: math.unit(1000, "feet")
  38996. },
  38997. {
  38998. name: "Macro+",
  38999. height: math.unit(3000, "feet")
  39000. },
  39001. {
  39002. name: "Megamacro",
  39003. height: math.unit(10000, "feet")
  39004. },
  39005. {
  39006. name: "City-Crushing",
  39007. height: math.unit(30000, "feet")
  39008. },
  39009. {
  39010. name: "Continent Cracker",
  39011. height: math.unit(30e6, "feet")
  39012. },
  39013. {
  39014. name: "Earth Eclipsing",
  39015. height: math.unit(3e8, "feet")
  39016. },
  39017. {
  39018. name: "Gas Giant Gulper",
  39019. height: math.unit(3e9, "feet")
  39020. },
  39021. {
  39022. name: "Sol-Swallowing",
  39023. height: math.unit(1e11, "feet")
  39024. },
  39025. {
  39026. name: "System Swallower",
  39027. height: math.unit(3e14, "feet")
  39028. },
  39029. {
  39030. name: "Galaxy Gulper",
  39031. height: math.unit(10, "galaxies")
  39032. },
  39033. {
  39034. name: "Light Universal",
  39035. height: math.unit(5, "universes")
  39036. },
  39037. {
  39038. name: "Universe Palm",
  39039. height: math.unit(20, "universes")
  39040. },
  39041. {
  39042. name: "Light Multiversal",
  39043. height: math.unit(5, "multiverses")
  39044. },
  39045. {
  39046. name: "Multiverse Palm",
  39047. height: math.unit(20, "multiverses")
  39048. },
  39049. {
  39050. name: "Inferno Incarnate",
  39051. height: math.unit(1e7, "multiverses")
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39057. {
  39058. front: {
  39059. height: math.unit(8, "feet"),
  39060. weight: math.unit(1200, "lb"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/malithee/front.svg",
  39064. extra: 1675/1640,
  39065. bottom: 162/1837
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Mortal Interaction",
  39072. height: math.unit(8, "feet"),
  39073. default: true
  39074. },
  39075. {
  39076. name: "Large",
  39077. height: math.unit(24, "feet")
  39078. },
  39079. {
  39080. name: "Kaiju",
  39081. height: math.unit(240, "feet")
  39082. },
  39083. {
  39084. name: "Megamacro",
  39085. height: math.unit(8000, "feet")
  39086. },
  39087. {
  39088. name: "Continent Cracker",
  39089. height: math.unit(24e6, "feet")
  39090. },
  39091. {
  39092. name: "Earth-Eclipsing",
  39093. height: math.unit(2.4e8, "feet")
  39094. },
  39095. {
  39096. name: "Sol-Swallowing",
  39097. height: math.unit(8e10, "feet")
  39098. },
  39099. {
  39100. name: "Galaxy Gulper",
  39101. height: math.unit(8, "galaxies")
  39102. },
  39103. {
  39104. name: "Light Universal",
  39105. height: math.unit(4, "universes")
  39106. },
  39107. {
  39108. name: "Universe Atoms",
  39109. height: math.unit(1.829e9, "universes")
  39110. },
  39111. {
  39112. name: "Light Multiversal",
  39113. height: math.unit(4, "multiverses")
  39114. },
  39115. {
  39116. name: "Multiverse Atoms",
  39117. height: math.unit(1.829e9, "multiverses")
  39118. },
  39119. {
  39120. name: "Nigh-Omnipresence",
  39121. height: math.unit(8e261, "multiverses")
  39122. },
  39123. ]
  39124. ))
  39125. characterMakers.push(() => makeCharacter(
  39126. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39127. {
  39128. front: {
  39129. height: math.unit(10, "feet"),
  39130. weight: math.unit(1500, "lb"),
  39131. name: "Front",
  39132. image: {
  39133. source: "./media/characters/miles-thestia/front.svg",
  39134. extra: 1812/1727,
  39135. bottom: 86/1898
  39136. }
  39137. },
  39138. back: {
  39139. height: math.unit(10, "feet"),
  39140. weight: math.unit(1500, "lb"),
  39141. name: "Back",
  39142. image: {
  39143. source: "./media/characters/miles-thestia/back.svg",
  39144. extra: 1799/1690,
  39145. bottom: 47/1846
  39146. }
  39147. },
  39148. frontNsfw: {
  39149. height: math.unit(10, "feet"),
  39150. weight: math.unit(1500, "lb"),
  39151. name: "Front (NSFW)",
  39152. image: {
  39153. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39154. extra: 1812/1727,
  39155. bottom: 86/1898
  39156. }
  39157. },
  39158. },
  39159. [
  39160. {
  39161. name: "Mini-Macro",
  39162. height: math.unit(10, "feet"),
  39163. default: true
  39164. },
  39165. ]
  39166. ))
  39167. characterMakers.push(() => makeCharacter(
  39168. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39169. {
  39170. front: {
  39171. height: math.unit(25, "feet"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/titan-s-wulf/front.svg",
  39175. extra: 1560/1484,
  39176. bottom: 76/1636
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Smallest",
  39183. height: math.unit(25, "feet"),
  39184. default: true
  39185. },
  39186. {
  39187. name: "Normal",
  39188. height: math.unit(200, "feet")
  39189. },
  39190. {
  39191. name: "Macro",
  39192. height: math.unit(200000, "feet")
  39193. },
  39194. {
  39195. name: "Multiversal Original",
  39196. height: math.unit(10000, "multiverses")
  39197. },
  39198. ]
  39199. ))
  39200. characterMakers.push(() => makeCharacter(
  39201. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39202. {
  39203. front: {
  39204. height: math.unit(8, "feet"),
  39205. weight: math.unit(553, "lb"),
  39206. name: "Front",
  39207. image: {
  39208. source: "./media/characters/tawendeh/front.svg",
  39209. extra: 2365/2268,
  39210. bottom: 83/2448
  39211. }
  39212. },
  39213. frontClothed: {
  39214. height: math.unit(8, "feet"),
  39215. weight: math.unit(553, "lb"),
  39216. name: "Front (Clothed)",
  39217. image: {
  39218. source: "./media/characters/tawendeh/front-clothed.svg",
  39219. extra: 2365/2268,
  39220. bottom: 83/2448
  39221. }
  39222. },
  39223. back: {
  39224. height: math.unit(8, "feet"),
  39225. weight: math.unit(553, "lb"),
  39226. name: "Back",
  39227. image: {
  39228. source: "./media/characters/tawendeh/back.svg",
  39229. extra: 2397/2294,
  39230. bottom: 42/2439
  39231. }
  39232. },
  39233. },
  39234. [
  39235. {
  39236. name: "Mortal Interaction",
  39237. height: math.unit(8, "feet"),
  39238. default: true
  39239. },
  39240. {
  39241. name: "Giant",
  39242. height: math.unit(80, "feet")
  39243. },
  39244. {
  39245. name: "Macro",
  39246. height: math.unit(800, "feet")
  39247. },
  39248. {
  39249. name: "Megamacro",
  39250. height: math.unit(8000, "feet")
  39251. },
  39252. {
  39253. name: "City-Crushing",
  39254. height: math.unit(24000, "feet")
  39255. },
  39256. {
  39257. name: "Mountain-Mashing",
  39258. height: math.unit(80000, "feet")
  39259. },
  39260. {
  39261. name: "Nation Nemesis",
  39262. height: math.unit(8e6, "feet")
  39263. },
  39264. {
  39265. name: "Continent Cracker",
  39266. height: math.unit(24e6, "feet")
  39267. },
  39268. {
  39269. name: "Earth-Eclipsing",
  39270. height: math.unit(2.4e8, "feet")
  39271. },
  39272. {
  39273. name: "Gas Giant Gulper",
  39274. height: math.unit(2.4e9, "feet")
  39275. },
  39276. {
  39277. name: "Sol-Swallowing",
  39278. height: math.unit(8e10, "feet")
  39279. },
  39280. {
  39281. name: "Galaxy Gulper",
  39282. height: math.unit(8, "galaxies")
  39283. },
  39284. {
  39285. name: "Cosmos Churner",
  39286. height: math.unit(8, "universes")
  39287. },
  39288. {
  39289. name: "Omnipotent Otter",
  39290. height: math.unit(80, "universes")
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39296. {
  39297. front: {
  39298. height: math.unit(2.6, "meters"),
  39299. weight: math.unit(900, "kg"),
  39300. name: "Front",
  39301. image: {
  39302. source: "./media/characters/neesha/front.svg",
  39303. extra: 1803/1653,
  39304. bottom: 128/1931
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Normal",
  39311. height: math.unit(2.6, "meters"),
  39312. default: true
  39313. },
  39314. {
  39315. name: "Macro",
  39316. height: math.unit(50, "meters")
  39317. },
  39318. ]
  39319. ))
  39320. characterMakers.push(() => makeCharacter(
  39321. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39322. {
  39323. front: {
  39324. height: math.unit(5, "feet"),
  39325. weight: math.unit(185, "lb"),
  39326. name: "Front",
  39327. image: {
  39328. source: "./media/characters/kyera/front.svg",
  39329. extra: 1875/1790,
  39330. bottom: 96/1971
  39331. }
  39332. },
  39333. },
  39334. [
  39335. {
  39336. name: "Normal",
  39337. height: math.unit(5, "feet"),
  39338. default: true
  39339. },
  39340. ]
  39341. ))
  39342. characterMakers.push(() => makeCharacter(
  39343. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39344. {
  39345. front: {
  39346. height: math.unit(7 + 6/12, "feet"),
  39347. weight: math.unit(540, "lb"),
  39348. name: "Front",
  39349. image: {
  39350. source: "./media/characters/yuko/front.svg",
  39351. extra: 1282/1222,
  39352. bottom: 101/1383
  39353. }
  39354. },
  39355. frontClothed: {
  39356. height: math.unit(7 + 6/12, "feet"),
  39357. weight: math.unit(540, "lb"),
  39358. name: "Front (Clothed)",
  39359. image: {
  39360. source: "./media/characters/yuko/front-clothed.svg",
  39361. extra: 1282/1222,
  39362. bottom: 101/1383
  39363. }
  39364. },
  39365. },
  39366. [
  39367. {
  39368. name: "Normal",
  39369. height: math.unit(7 + 6/12, "feet"),
  39370. default: true
  39371. },
  39372. {
  39373. name: "Macro",
  39374. height: math.unit(26 + 9/12, "feet")
  39375. },
  39376. {
  39377. name: "Megamacro",
  39378. height: math.unit(300, "feet")
  39379. },
  39380. {
  39381. name: "Gigamacro",
  39382. height: math.unit(5000, "feet")
  39383. },
  39384. {
  39385. name: "Planetary",
  39386. height: math.unit(10000, "miles")
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(8 + 2/12, "feet"),
  39395. weight: math.unit(600, "lb"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/deam-nitrel/front.svg",
  39399. extra: 1308/1234,
  39400. bottom: 125/1433
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Normal",
  39407. height: math.unit(8 + 2/12, "feet"),
  39408. default: true
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39414. {
  39415. front: {
  39416. height: math.unit(6.1, "feet"),
  39417. weight: math.unit(180, "lb"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/skyress/front.svg",
  39421. extra: 1045/915,
  39422. bottom: 28/1073
  39423. }
  39424. },
  39425. maw: {
  39426. height: math.unit(1, "feet"),
  39427. name: "Maw",
  39428. image: {
  39429. source: "./media/characters/skyress/maw.svg"
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "Normal",
  39436. height: math.unit(6.1, "feet"),
  39437. default: true
  39438. },
  39439. {
  39440. name: "Macro",
  39441. height: math.unit(200, "feet")
  39442. },
  39443. ]
  39444. ))
  39445. characterMakers.push(() => makeCharacter(
  39446. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39447. {
  39448. front: {
  39449. height: math.unit(4 + 2/12, "feet"),
  39450. weight: math.unit(40, "kg"),
  39451. name: "Front",
  39452. image: {
  39453. source: "./media/characters/amethyst-jones/front.svg",
  39454. extra: 1220/1150,
  39455. bottom: 101/1321
  39456. }
  39457. },
  39458. },
  39459. [
  39460. {
  39461. name: "Normal",
  39462. height: math.unit(4 + 2/12, "feet"),
  39463. default: true
  39464. },
  39465. ]
  39466. ))
  39467. characterMakers.push(() => makeCharacter(
  39468. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39469. {
  39470. front: {
  39471. height: math.unit(1.7, "m"),
  39472. weight: math.unit(135, "lb"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/jade/front.svg",
  39476. extra: 1818/1767,
  39477. bottom: 32/1850
  39478. }
  39479. },
  39480. back: {
  39481. height: math.unit(1.7, "m"),
  39482. weight: math.unit(135, "lb"),
  39483. name: "Back",
  39484. image: {
  39485. source: "./media/characters/jade/back.svg",
  39486. extra: 1869/1809,
  39487. bottom: 35/1904
  39488. }
  39489. },
  39490. hand: {
  39491. height: math.unit(0.24, "m"),
  39492. name: "Hand",
  39493. image: {
  39494. source: "./media/characters/jade/hand.svg"
  39495. }
  39496. },
  39497. foot: {
  39498. height: math.unit(0.263, "m"),
  39499. name: "Foot",
  39500. image: {
  39501. source: "./media/characters/jade/foot.svg"
  39502. }
  39503. },
  39504. dick: {
  39505. height: math.unit(0.47, "m"),
  39506. name: "Dick",
  39507. image: {
  39508. source: "./media/characters/jade/dick.svg"
  39509. }
  39510. },
  39511. },
  39512. [
  39513. {
  39514. name: "Micro",
  39515. height: math.unit(22, "cm")
  39516. },
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(1.7, "m"),
  39520. default: true
  39521. },
  39522. {
  39523. name: "Macro",
  39524. height: math.unit(152, "m")
  39525. },
  39526. ]
  39527. ))
  39528. characterMakers.push(() => makeCharacter(
  39529. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39530. {
  39531. front: {
  39532. height: math.unit(100, "miles"),
  39533. weight: math.unit(20000, "tons"),
  39534. name: "Front",
  39535. image: {
  39536. source: "./media/characters/cookie/front.svg",
  39537. extra: 1125/1070,
  39538. bottom: 30/1155
  39539. }
  39540. },
  39541. },
  39542. [
  39543. {
  39544. name: "Big",
  39545. height: math.unit(50, "feet")
  39546. },
  39547. {
  39548. name: "Macro",
  39549. height: math.unit(100, "miles"),
  39550. default: true
  39551. },
  39552. {
  39553. name: "Megamacro",
  39554. height: math.unit(90000, "miles")
  39555. },
  39556. ]
  39557. ))
  39558. characterMakers.push(() => makeCharacter(
  39559. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39560. {
  39561. front: {
  39562. height: math.unit(6, "feet"),
  39563. weight: math.unit(145, "lb"),
  39564. name: "Front",
  39565. image: {
  39566. source: "./media/characters/farzian/front.svg",
  39567. extra: 1902/1693,
  39568. bottom: 108/2010
  39569. }
  39570. },
  39571. },
  39572. [
  39573. {
  39574. name: "Macro",
  39575. height: math.unit(500, "feet"),
  39576. default: true
  39577. },
  39578. ]
  39579. ))
  39580. characterMakers.push(() => makeCharacter(
  39581. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39582. {
  39583. front: {
  39584. height: math.unit(3 + 6/12, "feet"),
  39585. weight: math.unit(50, "lb"),
  39586. name: "Front",
  39587. image: {
  39588. source: "./media/characters/kimberly-tilson/front.svg",
  39589. extra: 1400/1322,
  39590. bottom: 36/1436
  39591. }
  39592. },
  39593. back: {
  39594. height: math.unit(3 + 6/12, "feet"),
  39595. weight: math.unit(50, "lb"),
  39596. name: "Back",
  39597. image: {
  39598. source: "./media/characters/kimberly-tilson/back.svg",
  39599. extra: 1370/1307,
  39600. bottom: 20/1390
  39601. }
  39602. },
  39603. },
  39604. [
  39605. {
  39606. name: "Normal",
  39607. height: math.unit(3 + 6/12, "feet"),
  39608. default: true
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(1148, "feet"),
  39617. weight: math.unit(34057, "lb"),
  39618. name: "Front",
  39619. image: {
  39620. source: "./media/characters/harthos/front.svg",
  39621. extra: 1391/1339,
  39622. bottom: 13/1404
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Macro",
  39629. height: math.unit(1148, "feet"),
  39630. default: true
  39631. },
  39632. ]
  39633. ))
  39634. characterMakers.push(() => makeCharacter(
  39635. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39636. {
  39637. front: {
  39638. height: math.unit(15, "feet"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/hypatia/front.svg",
  39642. extra: 1653/1591,
  39643. bottom: 79/1732
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(15, "feet")
  39651. },
  39652. {
  39653. name: "Small",
  39654. height: math.unit(300, "feet")
  39655. },
  39656. {
  39657. name: "Macro",
  39658. height: math.unit(2500, "feet"),
  39659. default: true
  39660. },
  39661. {
  39662. name: "Mega Macro",
  39663. height: math.unit(1500, "miles")
  39664. },
  39665. {
  39666. name: "Giga Macro",
  39667. height: math.unit(1.5e6, "miles")
  39668. },
  39669. ]
  39670. ))
  39671. characterMakers.push(() => makeCharacter(
  39672. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39673. {
  39674. front: {
  39675. height: math.unit(6, "feet"),
  39676. weight: math.unit(200, "lb"),
  39677. name: "Front",
  39678. image: {
  39679. source: "./media/characters/wulver/front.svg",
  39680. extra: 1724/1632,
  39681. bottom: 130/1854
  39682. }
  39683. },
  39684. frontNsfw: {
  39685. height: math.unit(6, "feet"),
  39686. weight: math.unit(200, "lb"),
  39687. name: "Front (NSFW)",
  39688. image: {
  39689. source: "./media/characters/wulver/front-nsfw.svg",
  39690. extra: 1724/1632,
  39691. bottom: 130/1854
  39692. }
  39693. },
  39694. },
  39695. [
  39696. {
  39697. name: "Human-Sized",
  39698. height: math.unit(6, "feet")
  39699. },
  39700. {
  39701. name: "Normal",
  39702. height: math.unit(4, "meters"),
  39703. default: true
  39704. },
  39705. {
  39706. name: "Large",
  39707. height: math.unit(6, "m")
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39713. {
  39714. front: {
  39715. height: math.unit(7, "feet"),
  39716. name: "Front",
  39717. image: {
  39718. source: "./media/characters/maru/front.svg",
  39719. extra: 1595/1570,
  39720. bottom: 0/1595
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(7, "feet"),
  39728. default: true
  39729. },
  39730. {
  39731. name: "Macro",
  39732. height: math.unit(700, "feet")
  39733. },
  39734. {
  39735. name: "Mega Macro",
  39736. height: math.unit(25, "miles")
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(6, "feet"),
  39745. weight: math.unit(170, "lb"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/xenon/front.svg",
  39749. extra: 1376/1305,
  39750. bottom: 56/1432
  39751. }
  39752. },
  39753. back: {
  39754. height: math.unit(6, "feet"),
  39755. weight: math.unit(170, "lb"),
  39756. name: "Back",
  39757. image: {
  39758. source: "./media/characters/xenon/back.svg",
  39759. extra: 1328/1259,
  39760. bottom: 95/1423
  39761. }
  39762. },
  39763. maw: {
  39764. height: math.unit(0.52, "feet"),
  39765. name: "Maw",
  39766. image: {
  39767. source: "./media/characters/xenon/maw.svg"
  39768. }
  39769. },
  39770. hand: {
  39771. height: math.unit(0.82, "feet"),
  39772. name: "Hand",
  39773. image: {
  39774. source: "./media/characters/xenon/hand.svg"
  39775. }
  39776. },
  39777. foot: {
  39778. height: math.unit(1.13, "feet"),
  39779. name: "Foot",
  39780. image: {
  39781. source: "./media/characters/xenon/foot.svg"
  39782. }
  39783. },
  39784. },
  39785. [
  39786. {
  39787. name: "Micro",
  39788. height: math.unit(0.8, "inches")
  39789. },
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(6, "feet")
  39793. },
  39794. {
  39795. name: "Macro",
  39796. height: math.unit(50, "feet"),
  39797. default: true
  39798. },
  39799. {
  39800. name: "Macro+",
  39801. height: math.unit(250, "feet")
  39802. },
  39803. {
  39804. name: "Megamacro",
  39805. height: math.unit(1500, "feet")
  39806. },
  39807. ]
  39808. ))
  39809. characterMakers.push(() => makeCharacter(
  39810. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39811. {
  39812. front: {
  39813. height: math.unit(7 + 5/12, "feet"),
  39814. name: "Front",
  39815. image: {
  39816. source: "./media/characters/zane/front.svg",
  39817. extra: 1260/1203,
  39818. bottom: 94/1354
  39819. }
  39820. },
  39821. back: {
  39822. height: math.unit(5.05, "feet"),
  39823. name: "Back",
  39824. image: {
  39825. source: "./media/characters/zane/back.svg",
  39826. extra: 893/829,
  39827. bottom: 30/923
  39828. }
  39829. },
  39830. werewolf: {
  39831. height: math.unit(11, "feet"),
  39832. name: "Werewolf",
  39833. image: {
  39834. source: "./media/characters/zane/werewolf.svg",
  39835. extra: 1383/1323,
  39836. bottom: 89/1472
  39837. }
  39838. },
  39839. foot: {
  39840. height: math.unit(1.46, "feet"),
  39841. name: "Foot",
  39842. image: {
  39843. source: "./media/characters/zane/foot.svg"
  39844. }
  39845. },
  39846. footFront: {
  39847. height: math.unit(0.784, "feet"),
  39848. name: "Foot (Front)",
  39849. image: {
  39850. source: "./media/characters/zane/foot-front.svg"
  39851. }
  39852. },
  39853. dick: {
  39854. height: math.unit(1.95, "feet"),
  39855. name: "Dick",
  39856. image: {
  39857. source: "./media/characters/zane/dick.svg"
  39858. }
  39859. },
  39860. dickWerewolf: {
  39861. height: math.unit(3.77, "feet"),
  39862. name: "Dick (Werewolf)",
  39863. image: {
  39864. source: "./media/characters/zane/dick.svg"
  39865. }
  39866. },
  39867. },
  39868. [
  39869. {
  39870. name: "Normal",
  39871. height: math.unit(7 + 5/12, "feet"),
  39872. default: true
  39873. },
  39874. ]
  39875. ))
  39876. characterMakers.push(() => makeCharacter(
  39877. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39878. {
  39879. front: {
  39880. height: math.unit(6 + 2/12, "feet"),
  39881. weight: math.unit(284, "lb"),
  39882. name: "Front",
  39883. image: {
  39884. source: "./media/characters/benni-desparque/front.svg",
  39885. extra: 1353/1126,
  39886. bottom: 69/1422
  39887. }
  39888. },
  39889. },
  39890. [
  39891. {
  39892. name: "Civilian",
  39893. height: math.unit(6 + 2/12, "feet")
  39894. },
  39895. {
  39896. name: "Normal",
  39897. height: math.unit(98, "feet"),
  39898. default: true
  39899. },
  39900. {
  39901. name: "Kaiju Fighter",
  39902. height: math.unit(268, "feet")
  39903. },
  39904. ]
  39905. ))
  39906. characterMakers.push(() => makeCharacter(
  39907. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39908. {
  39909. front: {
  39910. height: math.unit(5, "feet"),
  39911. weight: math.unit(105, "lb"),
  39912. name: "Front",
  39913. image: {
  39914. source: "./media/characters/maxine/front.svg",
  39915. extra: 1386/1250,
  39916. bottom: 71/1457
  39917. }
  39918. },
  39919. },
  39920. [
  39921. {
  39922. name: "Normal",
  39923. height: math.unit(5, "feet"),
  39924. default: true
  39925. },
  39926. ]
  39927. ))
  39928. characterMakers.push(() => makeCharacter(
  39929. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39930. {
  39931. front: {
  39932. height: math.unit(11 + 7/12, "feet"),
  39933. weight: math.unit(9576, "lb"),
  39934. name: "Front",
  39935. image: {
  39936. source: "./media/characters/scaly/front.svg",
  39937. extra: 888/867,
  39938. bottom: 36/924
  39939. }
  39940. },
  39941. },
  39942. [
  39943. {
  39944. name: "Normal",
  39945. height: math.unit(11 + 7/12, "feet"),
  39946. default: true
  39947. },
  39948. ]
  39949. ))
  39950. characterMakers.push(() => makeCharacter(
  39951. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  39952. {
  39953. front: {
  39954. height: math.unit(6 + 3/12, "feet"),
  39955. name: "Front",
  39956. image: {
  39957. source: "./media/characters/saelria/front.svg",
  39958. extra: 1243/1138,
  39959. bottom: 46/1289
  39960. }
  39961. },
  39962. },
  39963. [
  39964. {
  39965. name: "Micro",
  39966. height: math.unit(6, "inches"),
  39967. },
  39968. {
  39969. name: "Normal",
  39970. height: math.unit(6 + 3/12, "feet"),
  39971. default: true
  39972. },
  39973. {
  39974. name: "Macro",
  39975. height: math.unit(25, "feet")
  39976. },
  39977. ]
  39978. ))
  39979. characterMakers.push(() => makeCharacter(
  39980. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39981. {
  39982. front: {
  39983. height: math.unit(80, "meters"),
  39984. weight: math.unit(7000, "tonnes"),
  39985. name: "Front",
  39986. image: {
  39987. source: "./media/characters/tef/front.svg",
  39988. extra: 2036/1991,
  39989. bottom: 54/2090
  39990. }
  39991. },
  39992. back: {
  39993. height: math.unit(80, "meters"),
  39994. weight: math.unit(7000, "tonnes"),
  39995. name: "Back",
  39996. image: {
  39997. source: "./media/characters/tef/back.svg",
  39998. extra: 2036/1991,
  39999. bottom: 54/2090
  40000. }
  40001. },
  40002. },
  40003. [
  40004. {
  40005. name: "Macro",
  40006. height: math.unit(80, "meters"),
  40007. default: true
  40008. },
  40009. ]
  40010. ))
  40011. characterMakers.push(() => makeCharacter(
  40012. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40013. {
  40014. front: {
  40015. height: math.unit(13, "feet"),
  40016. weight: math.unit(6, "tons"),
  40017. name: "Front",
  40018. image: {
  40019. source: "./media/characters/rover/front.svg",
  40020. extra: 1233/1156,
  40021. bottom: 50/1283
  40022. }
  40023. },
  40024. back: {
  40025. height: math.unit(13, "feet"),
  40026. weight: math.unit(6, "tons"),
  40027. name: "Back",
  40028. image: {
  40029. source: "./media/characters/rover/back.svg",
  40030. extra: 1327/1258,
  40031. bottom: 39/1366
  40032. }
  40033. },
  40034. },
  40035. [
  40036. {
  40037. name: "Normal",
  40038. height: math.unit(13, "feet"),
  40039. default: true
  40040. },
  40041. {
  40042. name: "Macro",
  40043. height: math.unit(1300, "feet")
  40044. },
  40045. {
  40046. name: "Megamacro",
  40047. height: math.unit(1300, "miles")
  40048. },
  40049. {
  40050. name: "Gigamacro",
  40051. height: math.unit(1300000, "miles")
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(6, "feet"),
  40060. weight: math.unit(150, "lb"),
  40061. name: "Front",
  40062. image: {
  40063. source: "./media/characters/ariz/front.svg",
  40064. extra: 1401/1346,
  40065. bottom: 5/1406
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(10, "feet"),
  40073. default: true
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40079. {
  40080. front: {
  40081. height: math.unit(6, "feet"),
  40082. weight: math.unit(140, "lb"),
  40083. name: "Front",
  40084. image: {
  40085. source: "./media/characters/sigrun/front.svg",
  40086. extra: 1418/1359,
  40087. bottom: 27/1445
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Macro",
  40094. height: math.unit(35, "feet"),
  40095. default: true
  40096. },
  40097. ]
  40098. ))
  40099. characterMakers.push(() => makeCharacter(
  40100. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40101. {
  40102. front: {
  40103. height: math.unit(6, "feet"),
  40104. weight: math.unit(150, "lb"),
  40105. name: "Front",
  40106. image: {
  40107. source: "./media/characters/numin/front.svg",
  40108. extra: 1433/1388,
  40109. bottom: 12/1445
  40110. }
  40111. },
  40112. },
  40113. [
  40114. {
  40115. name: "Macro",
  40116. height: math.unit(21.5, "km"),
  40117. default: true
  40118. },
  40119. ]
  40120. ))
  40121. characterMakers.push(() => makeCharacter(
  40122. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40123. {
  40124. front: {
  40125. height: math.unit(6, "feet"),
  40126. weight: math.unit(463, "lb"),
  40127. name: "Front",
  40128. image: {
  40129. source: "./media/characters/melwa/front.svg",
  40130. extra: 1307/1248,
  40131. bottom: 93/1400
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Macro",
  40138. height: math.unit(50, "meters"),
  40139. default: true
  40140. },
  40141. ]
  40142. ))
  40143. characterMakers.push(() => makeCharacter(
  40144. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40145. {
  40146. front: {
  40147. height: math.unit(325, "feet"),
  40148. name: "Front",
  40149. image: {
  40150. source: "./media/characters/zorkaiju/front.svg",
  40151. extra: 1955/1814,
  40152. bottom: 40/1995
  40153. }
  40154. },
  40155. frontExtended: {
  40156. height: math.unit(325, "feet"),
  40157. name: "Front (Extended)",
  40158. image: {
  40159. source: "./media/characters/zorkaiju/front-extended.svg",
  40160. extra: 1955/1814,
  40161. bottom: 40/1995
  40162. }
  40163. },
  40164. side: {
  40165. height: math.unit(325, "feet"),
  40166. name: "Side",
  40167. image: {
  40168. source: "./media/characters/zorkaiju/side.svg",
  40169. extra: 1495/1396,
  40170. bottom: 17/1512
  40171. }
  40172. },
  40173. sideExtended: {
  40174. height: math.unit(325, "feet"),
  40175. name: "Side (Extended)",
  40176. image: {
  40177. source: "./media/characters/zorkaiju/side-extended.svg",
  40178. extra: 1495/1396,
  40179. bottom: 17/1512
  40180. }
  40181. },
  40182. back: {
  40183. height: math.unit(325, "feet"),
  40184. name: "Back",
  40185. image: {
  40186. source: "./media/characters/zorkaiju/back.svg",
  40187. extra: 1959/1821,
  40188. bottom: 31/1990
  40189. }
  40190. },
  40191. backExtended: {
  40192. height: math.unit(325, "feet"),
  40193. name: "Back (Extended)",
  40194. image: {
  40195. source: "./media/characters/zorkaiju/back-extended.svg",
  40196. extra: 1959/1821,
  40197. bottom: 31/1990
  40198. }
  40199. },
  40200. hand: {
  40201. height: math.unit(58.4, "feet"),
  40202. name: "Hand",
  40203. image: {
  40204. source: "./media/characters/zorkaiju/hand.svg"
  40205. }
  40206. },
  40207. handExtended: {
  40208. height: math.unit(61.4, "feet"),
  40209. name: "Hand (Extended)",
  40210. image: {
  40211. source: "./media/characters/zorkaiju/hand-extended.svg"
  40212. }
  40213. },
  40214. foot: {
  40215. height: math.unit(95, "feet"),
  40216. name: "Foot",
  40217. image: {
  40218. source: "./media/characters/zorkaiju/foot.svg"
  40219. }
  40220. },
  40221. leftArm: {
  40222. height: math.unit(59, "feet"),
  40223. name: "Left Arm",
  40224. image: {
  40225. source: "./media/characters/zorkaiju/left-arm.svg"
  40226. }
  40227. },
  40228. rightArm: {
  40229. height: math.unit(59, "feet"),
  40230. name: "Right Arm",
  40231. image: {
  40232. source: "./media/characters/zorkaiju/right-arm.svg"
  40233. }
  40234. },
  40235. tail: {
  40236. height: math.unit(104, "feet"),
  40237. name: "Tail",
  40238. image: {
  40239. source: "./media/characters/zorkaiju/tail.svg"
  40240. }
  40241. },
  40242. tailExtended: {
  40243. height: math.unit(104, "feet"),
  40244. name: "Tail (Extended)",
  40245. image: {
  40246. source: "./media/characters/zorkaiju/tail-extended.svg"
  40247. }
  40248. },
  40249. tailBottom: {
  40250. height: math.unit(104, "feet"),
  40251. name: "Tail Bottom",
  40252. image: {
  40253. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40254. }
  40255. },
  40256. crystal: {
  40257. height: math.unit(27.54, "feet"),
  40258. name: "Crystal",
  40259. image: {
  40260. source: "./media/characters/zorkaiju/crystal.svg"
  40261. }
  40262. },
  40263. },
  40264. [
  40265. {
  40266. name: "Kaiju",
  40267. height: math.unit(325, "feet"),
  40268. default: true
  40269. },
  40270. ]
  40271. ))
  40272. characterMakers.push(() => makeCharacter(
  40273. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40274. {
  40275. front: {
  40276. height: math.unit(6 + 1/12, "feet"),
  40277. weight: math.unit(115, "lb"),
  40278. name: "Front",
  40279. image: {
  40280. source: "./media/characters/bailey-belfry/front.svg",
  40281. extra: 1240/1121,
  40282. bottom: 101/1341
  40283. }
  40284. },
  40285. },
  40286. [
  40287. {
  40288. name: "Normal",
  40289. height: math.unit(6 + 1/12, "feet"),
  40290. default: true
  40291. },
  40292. ]
  40293. ))
  40294. characterMakers.push(() => makeCharacter(
  40295. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40296. {
  40297. side: {
  40298. height: math.unit(4, "meters"),
  40299. weight: math.unit(250, "kg"),
  40300. name: "Side",
  40301. image: {
  40302. source: "./media/characters/blacky/side.svg",
  40303. extra: 1027/919,
  40304. bottom: 43/1070
  40305. }
  40306. },
  40307. maw: {
  40308. height: math.unit(1, "meters"),
  40309. name: "Maw",
  40310. image: {
  40311. source: "./media/characters/blacky/maw.svg"
  40312. }
  40313. },
  40314. paw: {
  40315. height: math.unit(1, "meters"),
  40316. name: "Paw",
  40317. image: {
  40318. source: "./media/characters/blacky/paw.svg"
  40319. }
  40320. },
  40321. },
  40322. [
  40323. {
  40324. name: "Normal",
  40325. height: math.unit(4, "meters"),
  40326. default: true
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(170, "cm"),
  40335. weight: math.unit(66, "kg"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/thux-ei/front.svg",
  40339. extra: 1109/1011,
  40340. bottom: 8/1117
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Normal",
  40347. height: math.unit(170, "cm"),
  40348. default: true
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(5, "feet"),
  40357. weight: math.unit(120, "lb"),
  40358. name: "Front",
  40359. image: {
  40360. source: "./media/characters/roxanne-voltaire/front.svg",
  40361. extra: 1901/1779,
  40362. bottom: 53/1954
  40363. }
  40364. },
  40365. },
  40366. [
  40367. {
  40368. name: "Normal",
  40369. height: math.unit(5, "feet"),
  40370. default: true
  40371. },
  40372. {
  40373. name: "Giant",
  40374. height: math.unit(50, "feet")
  40375. },
  40376. {
  40377. name: "Titan",
  40378. height: math.unit(500, "feet")
  40379. },
  40380. {
  40381. name: "Macro",
  40382. height: math.unit(5000, "feet")
  40383. },
  40384. {
  40385. name: "Megamacro",
  40386. height: math.unit(50000, "feet")
  40387. },
  40388. {
  40389. name: "Gigamacro",
  40390. height: math.unit(500000, "feet")
  40391. },
  40392. {
  40393. name: "Teramacro",
  40394. height: math.unit(5e6, "feet")
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(6 + 2/12, "feet"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/squeaks/front.svg",
  40406. extra: 1823/1768,
  40407. bottom: 138/1961
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Micro",
  40414. height: math.unit(0.5, "inches")
  40415. },
  40416. {
  40417. name: "Normal",
  40418. height: math.unit(6 + 2/12, "feet"),
  40419. default: true
  40420. },
  40421. {
  40422. name: "Macro",
  40423. height: math.unit(600, "feet")
  40424. },
  40425. ]
  40426. ))
  40427. characterMakers.push(() => makeCharacter(
  40428. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40429. {
  40430. front: {
  40431. height: math.unit(1.72, "meters"),
  40432. name: "Front",
  40433. image: {
  40434. source: "./media/characters/archinger/front.svg",
  40435. extra: 1861/1675,
  40436. bottom: 125/1986
  40437. }
  40438. },
  40439. back: {
  40440. height: math.unit(1.72, "meters"),
  40441. name: "Back",
  40442. image: {
  40443. source: "./media/characters/archinger/back.svg",
  40444. extra: 1844/1701,
  40445. bottom: 104/1948
  40446. }
  40447. },
  40448. cock: {
  40449. height: math.unit(0.59, "feet"),
  40450. name: "Cock",
  40451. image: {
  40452. source: "./media/characters/archinger/cock.svg"
  40453. }
  40454. },
  40455. },
  40456. [
  40457. {
  40458. name: "Normal",
  40459. height: math.unit(1.72, "meters"),
  40460. default: true
  40461. },
  40462. {
  40463. name: "Macro",
  40464. height: math.unit(84, "meters")
  40465. },
  40466. {
  40467. name: "Macro+",
  40468. height: math.unit(112, "meters")
  40469. },
  40470. {
  40471. name: "Macro++",
  40472. height: math.unit(960, "meters")
  40473. },
  40474. {
  40475. name: "Macro+++",
  40476. height: math.unit(4, "km")
  40477. },
  40478. {
  40479. name: "Macro++++",
  40480. height: math.unit(48, "km")
  40481. },
  40482. {
  40483. name: "Macro+++++",
  40484. height: math.unit(4500, "km")
  40485. },
  40486. ]
  40487. ))
  40488. characterMakers.push(() => makeCharacter(
  40489. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40490. {
  40491. front: {
  40492. height: math.unit(5 + 5/12, "feet"),
  40493. name: "Front",
  40494. image: {
  40495. source: "./media/characters/alsnapz/front.svg",
  40496. extra: 1157/1065,
  40497. bottom: 42/1199
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Normal",
  40504. height: math.unit(5 + 5/12, "feet"),
  40505. default: true
  40506. },
  40507. ]
  40508. ))
  40509. characterMakers.push(() => makeCharacter(
  40510. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40511. {
  40512. side: {
  40513. height: math.unit(3.2, "earths"),
  40514. name: "Side",
  40515. image: {
  40516. source: "./media/characters/mag/side.svg",
  40517. extra: 1331/1008,
  40518. bottom: 52/1383
  40519. }
  40520. },
  40521. wing: {
  40522. height: math.unit(1.94, "earths"),
  40523. name: "Wing",
  40524. image: {
  40525. source: "./media/characters/mag/wing.svg"
  40526. }
  40527. },
  40528. dick: {
  40529. height: math.unit(1.8, "earths"),
  40530. name: "Dick",
  40531. image: {
  40532. source: "./media/characters/mag/dick.svg"
  40533. }
  40534. },
  40535. ass: {
  40536. height: math.unit(1.33, "earths"),
  40537. name: "Ass",
  40538. image: {
  40539. source: "./media/characters/mag/ass.svg"
  40540. }
  40541. },
  40542. head: {
  40543. height: math.unit(1.1, "earths"),
  40544. name: "Head",
  40545. image: {
  40546. source: "./media/characters/mag/head.svg"
  40547. }
  40548. },
  40549. maw: {
  40550. height: math.unit(1.62, "earths"),
  40551. name: "Maw",
  40552. image: {
  40553. source: "./media/characters/mag/maw.svg"
  40554. }
  40555. },
  40556. },
  40557. [
  40558. {
  40559. name: "Small",
  40560. height: math.unit(162, "feet")
  40561. },
  40562. {
  40563. name: "Normal",
  40564. height: math.unit(3.2, "earths"),
  40565. default: true
  40566. },
  40567. ]
  40568. ))
  40569. characterMakers.push(() => makeCharacter(
  40570. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40571. {
  40572. front: {
  40573. height: math.unit(512, "feet"),
  40574. weight: math.unit(63509, "tonnes"),
  40575. name: "Front",
  40576. image: {
  40577. source: "./media/characters/vorrel-harroc/front.svg",
  40578. extra: 1075/1063,
  40579. bottom: 62/1137
  40580. }
  40581. },
  40582. },
  40583. [
  40584. {
  40585. name: "Normal",
  40586. height: math.unit(10, "feet")
  40587. },
  40588. {
  40589. name: "Macro",
  40590. height: math.unit(512, "feet"),
  40591. default: true
  40592. },
  40593. {
  40594. name: "Megamacro",
  40595. height: math.unit(256, "miles")
  40596. },
  40597. {
  40598. name: "Gigamacro",
  40599. height: math.unit(4096, "miles")
  40600. },
  40601. ]
  40602. ))
  40603. characterMakers.push(() => makeCharacter(
  40604. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40605. {
  40606. side: {
  40607. height: math.unit(50, "feet"),
  40608. name: "Side",
  40609. image: {
  40610. source: "./media/characters/froimar/side.svg",
  40611. extra: 855/638,
  40612. bottom: 99/954
  40613. }
  40614. },
  40615. },
  40616. [
  40617. {
  40618. name: "Macro",
  40619. height: math.unit(50, "feet"),
  40620. default: true
  40621. },
  40622. ]
  40623. ))
  40624. characterMakers.push(() => makeCharacter(
  40625. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40626. {
  40627. front: {
  40628. height: math.unit(210, "miles"),
  40629. name: "Front",
  40630. image: {
  40631. source: "./media/characters/timothy/front.svg",
  40632. extra: 1007/943,
  40633. bottom: 62/1069
  40634. }
  40635. },
  40636. frontSkirt: {
  40637. height: math.unit(210, "miles"),
  40638. name: "Front (Skirt)",
  40639. image: {
  40640. source: "./media/characters/timothy/front-skirt.svg",
  40641. extra: 1007/943,
  40642. bottom: 62/1069
  40643. }
  40644. },
  40645. frontCoat: {
  40646. height: math.unit(210, "miles"),
  40647. name: "Front (Coat)",
  40648. image: {
  40649. source: "./media/characters/timothy/front-coat.svg",
  40650. extra: 1007/943,
  40651. bottom: 62/1069
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(210, "miles"),
  40659. default: true
  40660. },
  40661. {
  40662. name: "Megamacro",
  40663. height: math.unit(210000, "miles")
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40669. {
  40670. front: {
  40671. height: math.unit(188, "feet"),
  40672. name: "Front",
  40673. image: {
  40674. source: "./media/characters/pyotr/front.svg",
  40675. extra: 1912/1826,
  40676. bottom: 18/1930
  40677. }
  40678. },
  40679. },
  40680. [
  40681. {
  40682. name: "Macro",
  40683. height: math.unit(188, "feet"),
  40684. default: true
  40685. },
  40686. {
  40687. name: "Megamacro",
  40688. height: math.unit(8, "miles")
  40689. },
  40690. ]
  40691. ))
  40692. characterMakers.push(() => makeCharacter(
  40693. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40694. {
  40695. side: {
  40696. height: math.unit(10, "feet"),
  40697. weight: math.unit(4500, "lb"),
  40698. name: "Side",
  40699. image: {
  40700. source: "./media/characters/ackart/side.svg",
  40701. extra: 1776/1668,
  40702. bottom: 116/1892
  40703. }
  40704. },
  40705. },
  40706. [
  40707. {
  40708. name: "Normal",
  40709. height: math.unit(10, "feet"),
  40710. default: true
  40711. },
  40712. ]
  40713. ))
  40714. characterMakers.push(() => makeCharacter(
  40715. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40716. {
  40717. side: {
  40718. height: math.unit(21, "feet"),
  40719. name: "Side",
  40720. image: {
  40721. source: "./media/characters/nolow/side.svg",
  40722. extra: 1484/1434,
  40723. bottom: 85/1569
  40724. }
  40725. },
  40726. sideErect: {
  40727. height: math.unit(21, "feet"),
  40728. name: "Side-erect",
  40729. image: {
  40730. source: "./media/characters/nolow/side-erect.svg",
  40731. extra: 1484/1434,
  40732. bottom: 85/1569
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Regular",
  40739. height: math.unit(12, "feet")
  40740. },
  40741. {
  40742. name: "Big Chee",
  40743. height: math.unit(21, "feet"),
  40744. default: true
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(7, "feet"),
  40753. weight: math.unit(250, "lb"),
  40754. name: "Front",
  40755. image: {
  40756. source: "./media/characters/nines/front.svg",
  40757. extra: 1741/1607,
  40758. bottom: 41/1782
  40759. }
  40760. },
  40761. side: {
  40762. height: math.unit(7, "feet"),
  40763. weight: math.unit(250, "lb"),
  40764. name: "Side",
  40765. image: {
  40766. source: "./media/characters/nines/side.svg",
  40767. extra: 1854/1735,
  40768. bottom: 93/1947
  40769. }
  40770. },
  40771. back: {
  40772. height: math.unit(7, "feet"),
  40773. weight: math.unit(250, "lb"),
  40774. name: "Back",
  40775. image: {
  40776. source: "./media/characters/nines/back.svg",
  40777. extra: 1748/1615,
  40778. bottom: 20/1768
  40779. }
  40780. },
  40781. },
  40782. [
  40783. {
  40784. name: "Megamacro",
  40785. height: math.unit(99, "km"),
  40786. default: true
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(5 + 10/12, "feet"),
  40795. weight: math.unit(210, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/zenith/front.svg",
  40799. extra: 1531/1452,
  40800. bottom: 198/1729
  40801. }
  40802. },
  40803. back: {
  40804. height: math.unit(5 + 10/12, "feet"),
  40805. weight: math.unit(210, "lb"),
  40806. name: "Back",
  40807. image: {
  40808. source: "./media/characters/zenith/back.svg",
  40809. extra: 1571/1487,
  40810. bottom: 75/1646
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(5 + 10/12, "feet"),
  40818. default: true
  40819. }
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(4, "feet"),
  40827. weight: math.unit(60, "lb"),
  40828. name: "Front",
  40829. image: {
  40830. source: "./media/characters/jasper/front.svg",
  40831. extra: 1450/1379,
  40832. bottom: 19/1469
  40833. }
  40834. },
  40835. },
  40836. [
  40837. {
  40838. name: "Normal",
  40839. height: math.unit(4, "feet"),
  40840. default: true
  40841. },
  40842. ]
  40843. ))
  40844. characterMakers.push(() => makeCharacter(
  40845. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40846. {
  40847. front: {
  40848. height: math.unit(6 + 5/12, "feet"),
  40849. weight: math.unit(290, "lb"),
  40850. name: "Front",
  40851. image: {
  40852. source: "./media/characters/tiberius-thyben/front.svg",
  40853. extra: 757/739,
  40854. bottom: 39/796
  40855. }
  40856. },
  40857. },
  40858. [
  40859. {
  40860. name: "Micro",
  40861. height: math.unit(1.5, "inches")
  40862. },
  40863. {
  40864. name: "Normal",
  40865. height: math.unit(6 + 5/12, "feet"),
  40866. default: true
  40867. },
  40868. {
  40869. name: "Macro",
  40870. height: math.unit(300, "feet")
  40871. },
  40872. ]
  40873. ))
  40874. characterMakers.push(() => makeCharacter(
  40875. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40876. {
  40877. front: {
  40878. height: math.unit(5 + 6/12, "feet"),
  40879. weight: math.unit(60, "kg"),
  40880. name: "Front",
  40881. image: {
  40882. source: "./media/characters/sabre/front.svg",
  40883. extra: 738/671,
  40884. bottom: 27/765
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Teeny",
  40891. height: math.unit(2, "inches")
  40892. },
  40893. {
  40894. name: "Smol",
  40895. height: math.unit(8, "inches")
  40896. },
  40897. {
  40898. name: "Normal",
  40899. height: math.unit(5 + 6/12, "feet"),
  40900. default: true
  40901. },
  40902. {
  40903. name: "Mini-Macro",
  40904. height: math.unit(15, "feet")
  40905. },
  40906. {
  40907. name: "Macro",
  40908. height: math.unit(50, "feet")
  40909. },
  40910. ]
  40911. ))
  40912. characterMakers.push(() => makeCharacter(
  40913. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40914. {
  40915. front: {
  40916. height: math.unit(6 + 4/12, "feet"),
  40917. weight: math.unit(170, "lb"),
  40918. name: "Front",
  40919. image: {
  40920. source: "./media/characters/charlie/front.svg",
  40921. extra: 1348/1228,
  40922. bottom: 15/1363
  40923. }
  40924. },
  40925. },
  40926. [
  40927. {
  40928. name: "Macro",
  40929. height: math.unit(1700, "meters"),
  40930. default: true
  40931. },
  40932. {
  40933. name: "MegaMacro",
  40934. height: math.unit(20400, "meters")
  40935. },
  40936. ]
  40937. ))
  40938. characterMakers.push(() => makeCharacter(
  40939. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40940. {
  40941. front: {
  40942. height: math.unit(6 + 3/12, "feet"),
  40943. weight: math.unit(185, "lb"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/susan-grant/front.svg",
  40947. extra: 1351/1327,
  40948. bottom: 26/1377
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Normal",
  40955. height: math.unit(6 + 3/12, "feet"),
  40956. default: true
  40957. },
  40958. {
  40959. name: "Macro",
  40960. height: math.unit(225, "feet")
  40961. },
  40962. {
  40963. name: "Macro+",
  40964. height: math.unit(900, "feet")
  40965. },
  40966. {
  40967. name: "MegaMacro",
  40968. height: math.unit(14400, "feet")
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(5 + 4/12, "feet"),
  40977. weight: math.unit(110, "lb"),
  40978. name: "Front",
  40979. image: {
  40980. source: "./media/characters/axel-isanov/front.svg",
  40981. extra: 1096/1065,
  40982. bottom: 13/1109
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Normal",
  40989. height: math.unit(5 + 4/12, "feet"),
  40990. default: true
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(9, "feet"),
  40999. weight: math.unit(467, "lb"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/necahual/front.svg",
  41003. extra: 920/873,
  41004. bottom: 26/946
  41005. }
  41006. },
  41007. back: {
  41008. height: math.unit(9, "feet"),
  41009. weight: math.unit(467, "lb"),
  41010. name: "Back",
  41011. image: {
  41012. source: "./media/characters/necahual/back.svg",
  41013. extra: 930/884,
  41014. bottom: 16/946
  41015. }
  41016. },
  41017. frontUnderwear: {
  41018. height: math.unit(9, "feet"),
  41019. weight: math.unit(467, "lb"),
  41020. name: "Front (Underwear)",
  41021. image: {
  41022. source: "./media/characters/necahual/front-underwear.svg",
  41023. extra: 920/873,
  41024. bottom: 26/946
  41025. }
  41026. },
  41027. frontDressed: {
  41028. height: math.unit(9, "feet"),
  41029. weight: math.unit(467, "lb"),
  41030. name: "Front (Dressed)",
  41031. image: {
  41032. source: "./media/characters/necahual/front-dressed.svg",
  41033. extra: 920/873,
  41034. bottom: 26/946
  41035. }
  41036. },
  41037. },
  41038. [
  41039. {
  41040. name: "Comprsesed",
  41041. height: math.unit(9, "feet")
  41042. },
  41043. {
  41044. name: "Natural",
  41045. height: math.unit(15, "feet"),
  41046. default: true
  41047. },
  41048. {
  41049. name: "Boosted",
  41050. height: math.unit(50, "feet")
  41051. },
  41052. {
  41053. name: "Boosted+",
  41054. height: math.unit(150, "feet")
  41055. },
  41056. {
  41057. name: "Max",
  41058. height: math.unit(500, "feet")
  41059. },
  41060. ]
  41061. ))
  41062. characterMakers.push(() => makeCharacter(
  41063. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41064. {
  41065. front: {
  41066. height: math.unit(22 + 1/12, "feet"),
  41067. weight: math.unit(3200, "lb"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/theo-acacia/front.svg",
  41071. extra: 1796/1741,
  41072. bottom: 83/1879
  41073. }
  41074. },
  41075. frontUnderwear: {
  41076. height: math.unit(22 + 1/12, "feet"),
  41077. weight: math.unit(3200, "lb"),
  41078. name: "Front (Underwear)",
  41079. image: {
  41080. source: "./media/characters/theo-acacia/front-underwear.svg",
  41081. extra: 1796/1741,
  41082. bottom: 83/1879
  41083. }
  41084. },
  41085. frontNude: {
  41086. height: math.unit(22 + 1/12, "feet"),
  41087. weight: math.unit(3200, "lb"),
  41088. name: "Front (Nude)",
  41089. image: {
  41090. source: "./media/characters/theo-acacia/front-nude.svg",
  41091. extra: 1796/1741,
  41092. bottom: 83/1879
  41093. }
  41094. },
  41095. },
  41096. [
  41097. {
  41098. name: "Normal",
  41099. height: math.unit(22 + 1/12, "feet"),
  41100. default: true
  41101. },
  41102. ]
  41103. ))
  41104. characterMakers.push(() => makeCharacter(
  41105. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41106. {
  41107. front: {
  41108. height: math.unit(20, "feet"),
  41109. name: "Front",
  41110. image: {
  41111. source: "./media/characters/astra/front.svg",
  41112. extra: 1850/1714,
  41113. bottom: 106/1956
  41114. }
  41115. },
  41116. frontUndressed: {
  41117. height: math.unit(20, "feet"),
  41118. name: "Front (Undressed)",
  41119. image: {
  41120. source: "./media/characters/astra/front-undressed.svg",
  41121. extra: 1926/1749,
  41122. bottom: 0/1926
  41123. }
  41124. },
  41125. hand: {
  41126. height: math.unit(1.53, "feet"),
  41127. name: "Hand",
  41128. image: {
  41129. source: "./media/characters/astra/hand.svg"
  41130. }
  41131. },
  41132. paw: {
  41133. height: math.unit(1.53, "feet"),
  41134. name: "Paw",
  41135. image: {
  41136. source: "./media/characters/astra/paw.svg"
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Smallest",
  41143. height: math.unit(20, "feet")
  41144. },
  41145. {
  41146. name: "Normal",
  41147. height: math.unit(1e9, "miles"),
  41148. default: true
  41149. },
  41150. {
  41151. name: "Larger",
  41152. height: math.unit(5, "multiverses")
  41153. },
  41154. {
  41155. name: "Largest",
  41156. height: math.unit(1e9, "multiverses")
  41157. },
  41158. ]
  41159. ))
  41160. characterMakers.push(() => makeCharacter(
  41161. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41162. {
  41163. front: {
  41164. height: math.unit(8, "feet"),
  41165. name: "Front",
  41166. image: {
  41167. source: "./media/characters/breanna/front.svg",
  41168. extra: 1912/1632,
  41169. bottom: 33/1945
  41170. }
  41171. },
  41172. },
  41173. [
  41174. {
  41175. name: "Smallest",
  41176. height: math.unit(8, "feet")
  41177. },
  41178. {
  41179. name: "Normal",
  41180. height: math.unit(1, "mile"),
  41181. default: true
  41182. },
  41183. {
  41184. name: "Maximum",
  41185. height: math.unit(1500000000000, "lightyears")
  41186. },
  41187. ]
  41188. ))
  41189. characterMakers.push(() => makeCharacter(
  41190. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41191. {
  41192. front: {
  41193. height: math.unit(5 + 11/12, "feet"),
  41194. weight: math.unit(155, "lb"),
  41195. name: "Front",
  41196. image: {
  41197. source: "./media/characters/cai/front.svg",
  41198. extra: 1823/1702,
  41199. bottom: 32/1855
  41200. }
  41201. },
  41202. back: {
  41203. height: math.unit(5 + 11/12, "feet"),
  41204. weight: math.unit(155, "lb"),
  41205. name: "Back",
  41206. image: {
  41207. source: "./media/characters/cai/back.svg",
  41208. extra: 1809/1708,
  41209. bottom: 31/1840
  41210. }
  41211. },
  41212. },
  41213. [
  41214. {
  41215. name: "Normal",
  41216. height: math.unit(5 + 11/12, "feet"),
  41217. default: true
  41218. },
  41219. {
  41220. name: "Big",
  41221. height: math.unit(15, "feet")
  41222. },
  41223. {
  41224. name: "Macro",
  41225. height: math.unit(200, "feet")
  41226. },
  41227. ]
  41228. ))
  41229. characterMakers.push(() => makeCharacter(
  41230. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41231. {
  41232. front: {
  41233. height: math.unit(5 + 6/12, "feet"),
  41234. weight: math.unit(160, "lb"),
  41235. name: "Front",
  41236. image: {
  41237. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41238. extra: 1227/1174,
  41239. bottom: 37/1264
  41240. }
  41241. },
  41242. },
  41243. [
  41244. {
  41245. name: "Macro",
  41246. height: math.unit(444, "meters"),
  41247. default: true
  41248. },
  41249. ]
  41250. ))
  41251. characterMakers.push(() => makeCharacter(
  41252. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41253. {
  41254. front: {
  41255. height: math.unit(18 + 7/12, "feet"),
  41256. name: "Front",
  41257. image: {
  41258. source: "./media/characters/rex/front.svg",
  41259. extra: 1941/1807,
  41260. bottom: 66/2007
  41261. }
  41262. },
  41263. back: {
  41264. height: math.unit(18 + 7/12, "feet"),
  41265. name: "Back",
  41266. image: {
  41267. source: "./media/characters/rex/back.svg",
  41268. extra: 1937/1822,
  41269. bottom: 42/1979
  41270. }
  41271. },
  41272. boot: {
  41273. height: math.unit(3.45, "feet"),
  41274. name: "Boot",
  41275. image: {
  41276. source: "./media/characters/rex/boot.svg"
  41277. }
  41278. },
  41279. paw: {
  41280. height: math.unit(4.17, "feet"),
  41281. name: "Paw",
  41282. image: {
  41283. source: "./media/characters/rex/paw.svg"
  41284. }
  41285. },
  41286. head: {
  41287. height: math.unit(6.728, "feet"),
  41288. name: "Head",
  41289. image: {
  41290. source: "./media/characters/rex/head.svg"
  41291. }
  41292. },
  41293. },
  41294. [
  41295. {
  41296. name: "Nano",
  41297. height: math.unit(18 + 7/12, "feet")
  41298. },
  41299. {
  41300. name: "Micro",
  41301. height: math.unit(1.5, "megameters")
  41302. },
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(440, "megameters"),
  41306. default: true
  41307. },
  41308. {
  41309. name: "Macro",
  41310. height: math.unit(2.5, "gigameters")
  41311. },
  41312. {
  41313. name: "Gigamacro",
  41314. height: math.unit(2, "galaxies")
  41315. },
  41316. ]
  41317. ))
  41318. characterMakers.push(() => makeCharacter(
  41319. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41320. {
  41321. side: {
  41322. height: math.unit(32, "feet"),
  41323. weight: math.unit(250000, "lb"),
  41324. name: "Side",
  41325. image: {
  41326. source: "./media/characters/silverwing/side.svg",
  41327. extra: 1100/1019,
  41328. bottom: 204/1304
  41329. }
  41330. },
  41331. },
  41332. [
  41333. {
  41334. name: "Normal",
  41335. height: math.unit(32, "feet"),
  41336. default: true
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41342. {
  41343. front: {
  41344. height: math.unit(6 + 6/12, "feet"),
  41345. weight: math.unit(350, "lb"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/tristan-hawthorne/front.svg",
  41349. extra: 1159/1124,
  41350. bottom: 37/1196
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Normal",
  41357. height: math.unit(6 + 6/12, "feet"),
  41358. default: true
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41364. {
  41365. front: {
  41366. height: math.unit(5 + 11/12, "feet"),
  41367. weight: math.unit(190, "lb"),
  41368. name: "Front",
  41369. image: {
  41370. source: "./media/characters/mizu/front.svg",
  41371. extra: 1988/1788,
  41372. bottom: 14/2002
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Normal",
  41379. height: math.unit(5 + 11/12, "feet"),
  41380. default: true
  41381. },
  41382. ]
  41383. ))
  41384. characterMakers.push(() => makeCharacter(
  41385. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41386. {
  41387. front: {
  41388. height: math.unit(6, "feet"),
  41389. name: "Front",
  41390. image: {
  41391. source: "./media/characters/moonlight-rose-terra/front.svg",
  41392. extra: 1434/1252,
  41393. bottom: 48/1482
  41394. }
  41395. },
  41396. },
  41397. [
  41398. {
  41399. name: "TRAPPIST-1D",
  41400. height: math.unit(4992*2, "km")
  41401. },
  41402. {
  41403. name: "Earth",
  41404. height: math.unit(6367*2, "km"),
  41405. default: true
  41406. },
  41407. {
  41408. name: "Kepler-22b",
  41409. height: math.unit(15282*2, "km")
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(6, "feet"),
  41418. name: "Front",
  41419. image: {
  41420. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41421. extra: 1851/1712,
  41422. bottom: 0/1851
  41423. }
  41424. },
  41425. },
  41426. [
  41427. {
  41428. name: "Enceladus",
  41429. height: math.unit(513*2, "km")
  41430. },
  41431. {
  41432. name: "Europe",
  41433. height: math.unit(1560*2, "km")
  41434. },
  41435. {
  41436. name: "Neptune",
  41437. height: math.unit(24622*2, "km"),
  41438. default: true
  41439. },
  41440. {
  41441. name: "CoRoT-9b",
  41442. height: math.unit(75067*2, "km")
  41443. },
  41444. ]
  41445. ))
  41446. characterMakers.push(() => makeCharacter(
  41447. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41448. {
  41449. front: {
  41450. height: math.unit(6, "feet"),
  41451. name: "Front",
  41452. image: {
  41453. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41454. extra: 1367/1286,
  41455. bottom: 55/1422
  41456. }
  41457. },
  41458. },
  41459. [
  41460. {
  41461. name: "Saturn",
  41462. height: math.unit(58232*2, "km")
  41463. },
  41464. {
  41465. name: "Jupiter",
  41466. height: math.unit(69911*2, "km"),
  41467. default: true
  41468. },
  41469. {
  41470. name: "HD 100546 b",
  41471. height: math.unit(482938, "km")
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41477. {
  41478. front: {
  41479. height: math.unit(1.7, "feet"),
  41480. weight: math.unit(50, "lb"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/dechroma/front.svg",
  41484. extra: 1095/859,
  41485. bottom: 64/1159
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Normal",
  41492. height: math.unit(1.7, "feet"),
  41493. default: true
  41494. },
  41495. ]
  41496. ))
  41497. characterMakers.push(() => makeCharacter(
  41498. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41499. {
  41500. side: {
  41501. height: math.unit(30, "feet"),
  41502. name: "Side",
  41503. image: {
  41504. source: "./media/characters/veluren-thanazel/side.svg",
  41505. extra: 1611/633,
  41506. bottom: 118/1729
  41507. }
  41508. },
  41509. front: {
  41510. height: math.unit(30, "feet"),
  41511. name: "Front",
  41512. image: {
  41513. source: "./media/characters/veluren-thanazel/front.svg",
  41514. extra: 1486/636,
  41515. bottom: 238/1724
  41516. }
  41517. },
  41518. head: {
  41519. height: math.unit(21.4, "feet"),
  41520. name: "Head",
  41521. image: {
  41522. source: "./media/characters/veluren-thanazel/head.svg"
  41523. }
  41524. },
  41525. genitals: {
  41526. height: math.unit(19.4, "feet"),
  41527. name: "Genitals",
  41528. image: {
  41529. source: "./media/characters/veluren-thanazel/genitals.svg"
  41530. }
  41531. },
  41532. },
  41533. [
  41534. {
  41535. name: "Social",
  41536. height: math.unit(6, "feet")
  41537. },
  41538. {
  41539. name: "Play",
  41540. height: math.unit(12, "feet")
  41541. },
  41542. {
  41543. name: "True",
  41544. height: math.unit(30, "feet"),
  41545. default: true
  41546. },
  41547. ]
  41548. ))
  41549. characterMakers.push(() => makeCharacter(
  41550. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41551. {
  41552. front: {
  41553. height: math.unit(7 + 6/12, "feet"),
  41554. weight: math.unit(500, "kg"),
  41555. name: "Front",
  41556. image: {
  41557. source: "./media/characters/arcturas/front.svg",
  41558. extra: 1700/1500,
  41559. bottom: 145/1845
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(7 + 6/12, "feet"),
  41567. default: true
  41568. },
  41569. ]
  41570. ))
  41571. characterMakers.push(() => makeCharacter(
  41572. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41573. {
  41574. side: {
  41575. height: math.unit(6, "feet"),
  41576. weight: math.unit(2, "tons"),
  41577. name: "Side",
  41578. image: {
  41579. source: "./media/characters/vitaen/side.svg",
  41580. extra: 1157/617,
  41581. bottom: 122/1279
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Normal",
  41588. height: math.unit(6, "feet"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41595. {
  41596. front: {
  41597. height: math.unit(19, "feet"),
  41598. name: "Front",
  41599. image: {
  41600. source: "./media/characters/fia-dreamweaver/front.svg",
  41601. extra: 1630/1504,
  41602. bottom: 25/1655
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Normal",
  41609. height: math.unit(19, "feet"),
  41610. default: true
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41616. {
  41617. front: {
  41618. height: math.unit(5 + 4/12, "feet"),
  41619. name: "Front",
  41620. image: {
  41621. source: "./media/characters/artan/front.svg",
  41622. extra: 1618/1535,
  41623. bottom: 46/1664
  41624. }
  41625. },
  41626. back: {
  41627. height: math.unit(5 + 4/12, "feet"),
  41628. name: "Back",
  41629. image: {
  41630. source: "./media/characters/artan/back.svg",
  41631. extra: 1618/1543,
  41632. bottom: 31/1649
  41633. }
  41634. },
  41635. },
  41636. [
  41637. {
  41638. name: "Normal",
  41639. height: math.unit(5 + 4/12, "feet"),
  41640. default: true
  41641. },
  41642. ]
  41643. ))
  41644. characterMakers.push(() => makeCharacter(
  41645. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41646. {
  41647. side: {
  41648. height: math.unit(182, "cm"),
  41649. weight: math.unit(1000, "lb"),
  41650. name: "Side",
  41651. image: {
  41652. source: "./media/characters/silver-dragon/side.svg",
  41653. extra: 710/287,
  41654. bottom: 88/798
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Normal",
  41661. height: math.unit(182, "cm"),
  41662. default: true
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41668. {
  41669. side: {
  41670. height: math.unit(6 + 6/12, "feet"),
  41671. weight: math.unit(1.5, "tons"),
  41672. name: "Side",
  41673. image: {
  41674. source: "./media/characters/zephyr/side.svg",
  41675. extra: 1433/586,
  41676. bottom: 109/1542
  41677. }
  41678. },
  41679. },
  41680. [
  41681. {
  41682. name: "Normal",
  41683. height: math.unit(6 + 6/12, "feet"),
  41684. default: true
  41685. },
  41686. ]
  41687. ))
  41688. characterMakers.push(() => makeCharacter(
  41689. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41690. {
  41691. side: {
  41692. height: math.unit(1, "feet"),
  41693. name: "Side",
  41694. image: {
  41695. source: "./media/characters/vixye/side.svg",
  41696. extra: 632/541,
  41697. bottom: 0/632
  41698. }
  41699. },
  41700. },
  41701. [
  41702. {
  41703. name: "Normal",
  41704. height: math.unit(1, "feet"),
  41705. default: true
  41706. },
  41707. {
  41708. name: "True",
  41709. height: math.unit(1e15, "multiverses")
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(8 + 2/12, "feet"),
  41718. weight: math.unit(650, "lb"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41722. extra: 1174/1137,
  41723. bottom: 82/1256
  41724. }
  41725. },
  41726. back: {
  41727. height: math.unit(8 + 2/12, "feet"),
  41728. weight: math.unit(650, "lb"),
  41729. name: "Back",
  41730. image: {
  41731. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41732. extra: 1204/1157,
  41733. bottom: 46/1250
  41734. }
  41735. },
  41736. },
  41737. [
  41738. {
  41739. name: "Wildform",
  41740. height: math.unit(8 + 2/12, "feet"),
  41741. default: true
  41742. },
  41743. ]
  41744. ))
  41745. characterMakers.push(() => makeCharacter(
  41746. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41747. {
  41748. front: {
  41749. height: math.unit(18, "feet"),
  41750. name: "Front",
  41751. image: {
  41752. source: "./media/characters/cyphin/front.svg",
  41753. extra: 970/886,
  41754. bottom: 42/1012
  41755. }
  41756. },
  41757. back: {
  41758. height: math.unit(18, "feet"),
  41759. name: "Back",
  41760. image: {
  41761. source: "./media/characters/cyphin/back.svg",
  41762. extra: 1009/894,
  41763. bottom: 24/1033
  41764. }
  41765. },
  41766. head: {
  41767. height: math.unit(5.05, "feet"),
  41768. name: "Head",
  41769. image: {
  41770. source: "./media/characters/cyphin/head.svg"
  41771. }
  41772. },
  41773. tailbud: {
  41774. height: math.unit(5, "feet"),
  41775. name: "Tailbud",
  41776. image: {
  41777. source: "./media/characters/cyphin/tailbud.svg"
  41778. }
  41779. },
  41780. },
  41781. [
  41782. ]
  41783. ))
  41784. characterMakers.push(() => makeCharacter(
  41785. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41786. {
  41787. side: {
  41788. height: math.unit(10, "feet"),
  41789. weight: math.unit(6, "tons"),
  41790. name: "Side",
  41791. image: {
  41792. source: "./media/characters/raijin/side.svg",
  41793. extra: 1529/613,
  41794. bottom: 337/1866
  41795. }
  41796. },
  41797. },
  41798. [
  41799. {
  41800. name: "Normal",
  41801. height: math.unit(10, "feet"),
  41802. default: true
  41803. },
  41804. ]
  41805. ))
  41806. characterMakers.push(() => makeCharacter(
  41807. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41808. {
  41809. side: {
  41810. height: math.unit(9, "feet"),
  41811. name: "Side",
  41812. image: {
  41813. source: "./media/characters/nilghais/side.svg",
  41814. extra: 1047/744,
  41815. bottom: 91/1138
  41816. }
  41817. },
  41818. head: {
  41819. height: math.unit(3.14, "feet"),
  41820. name: "Head",
  41821. image: {
  41822. source: "./media/characters/nilghais/head.svg"
  41823. }
  41824. },
  41825. mouth: {
  41826. height: math.unit(4.6, "feet"),
  41827. name: "Mouth",
  41828. image: {
  41829. source: "./media/characters/nilghais/mouth.svg"
  41830. }
  41831. },
  41832. wings: {
  41833. height: math.unit(24, "feet"),
  41834. name: "Wings",
  41835. image: {
  41836. source: "./media/characters/nilghais/wings.svg"
  41837. }
  41838. },
  41839. ass: {
  41840. height: math.unit(6.12, "feet"),
  41841. name: "Ass",
  41842. image: {
  41843. source: "./media/characters/nilghais/ass.svg"
  41844. }
  41845. },
  41846. },
  41847. [
  41848. {
  41849. name: "Normal",
  41850. height: math.unit(9, "feet"),
  41851. default: true
  41852. },
  41853. ]
  41854. ))
  41855. characterMakers.push(() => makeCharacter(
  41856. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41857. {
  41858. regular: {
  41859. height: math.unit(16 + 2/12, "feet"),
  41860. weight: math.unit(2300, "lb"),
  41861. name: "Regular",
  41862. image: {
  41863. source: "./media/characters/zolgar/regular.svg",
  41864. extra: 1246/1004,
  41865. bottom: 124/1370
  41866. }
  41867. },
  41868. boxers: {
  41869. height: math.unit(16 + 2/12, "feet"),
  41870. weight: math.unit(2300, "lb"),
  41871. name: "Boxers",
  41872. image: {
  41873. source: "./media/characters/zolgar/boxers.svg",
  41874. extra: 1246/1004,
  41875. bottom: 124/1370
  41876. }
  41877. },
  41878. armored: {
  41879. height: math.unit(16 + 2/12, "feet"),
  41880. weight: math.unit(2300, "lb"),
  41881. name: "Armored",
  41882. image: {
  41883. source: "./media/characters/zolgar/armored.svg",
  41884. extra: 1246/1004,
  41885. bottom: 124/1370
  41886. }
  41887. },
  41888. goth: {
  41889. height: math.unit(16 + 2/12, "feet"),
  41890. weight: math.unit(2300, "lb"),
  41891. name: "Goth",
  41892. image: {
  41893. source: "./media/characters/zolgar/goth.svg",
  41894. extra: 1246/1004,
  41895. bottom: 124/1370
  41896. }
  41897. },
  41898. },
  41899. [
  41900. {
  41901. name: "Shrunken Down",
  41902. height: math.unit(9 + 2/12, "feet")
  41903. },
  41904. {
  41905. name: "Normal",
  41906. height: math.unit(16 + 2/12, "feet"),
  41907. default: true
  41908. },
  41909. ]
  41910. ))
  41911. characterMakers.push(() => makeCharacter(
  41912. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41913. {
  41914. front: {
  41915. height: math.unit(6, "feet"),
  41916. weight: math.unit(168, "lb"),
  41917. name: "Front",
  41918. image: {
  41919. source: "./media/characters/luca/front.svg",
  41920. extra: 841/667,
  41921. bottom: 102/943
  41922. }
  41923. },
  41924. },
  41925. [
  41926. {
  41927. name: "Normal",
  41928. height: math.unit(6, "feet"),
  41929. default: true
  41930. },
  41931. ]
  41932. ))
  41933. characterMakers.push(() => makeCharacter(
  41934. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41935. {
  41936. side: {
  41937. height: math.unit(7 + 3/12, "feet"),
  41938. weight: math.unit(312, "lb"),
  41939. name: "Side",
  41940. image: {
  41941. source: "./media/characters/zezo/side.svg",
  41942. extra: 1192/1067,
  41943. bottom: 63/1255
  41944. }
  41945. },
  41946. },
  41947. [
  41948. {
  41949. name: "Normal",
  41950. height: math.unit(7 + 3/12, "feet"),
  41951. default: true
  41952. },
  41953. ]
  41954. ))
  41955. characterMakers.push(() => makeCharacter(
  41956. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41957. {
  41958. front: {
  41959. height: math.unit(5 + 5/12, "feet"),
  41960. weight: math.unit(170, "lb"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/mayso/front.svg",
  41964. extra: 1215/1108,
  41965. bottom: 16/1231
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(5 + 5/12, "feet"),
  41973. default: true
  41974. },
  41975. ]
  41976. ))
  41977. characterMakers.push(() => makeCharacter(
  41978. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41979. {
  41980. front: {
  41981. height: math.unit(4 + 3/12, "feet"),
  41982. weight: math.unit(80, "lb"),
  41983. name: "Front",
  41984. image: {
  41985. source: "./media/characters/hess/front.svg",
  41986. extra: 1200/1123,
  41987. bottom: 16/1216
  41988. }
  41989. },
  41990. },
  41991. [
  41992. {
  41993. name: "Normal",
  41994. height: math.unit(4 + 3/12, "feet"),
  41995. default: true
  41996. },
  41997. ]
  41998. ))
  41999. characterMakers.push(() => makeCharacter(
  42000. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42001. {
  42002. front: {
  42003. height: math.unit(1.9, "meters"),
  42004. name: "Front",
  42005. image: {
  42006. source: "./media/characters/ashgar/front.svg",
  42007. extra: 1177/1146,
  42008. bottom: 99/1276
  42009. }
  42010. },
  42011. back: {
  42012. height: math.unit(1.9, "meters"),
  42013. name: "Back",
  42014. image: {
  42015. source: "./media/characters/ashgar/back.svg",
  42016. extra: 1201/1183,
  42017. bottom: 53/1254
  42018. }
  42019. },
  42020. feral: {
  42021. height: math.unit(1.4, "meters"),
  42022. name: "Feral",
  42023. image: {
  42024. source: "./media/characters/ashgar/feral.svg",
  42025. extra: 370/345,
  42026. bottom: 45/415
  42027. }
  42028. },
  42029. },
  42030. [
  42031. {
  42032. name: "Normal",
  42033. height: math.unit(1.9, "meters"),
  42034. default: true
  42035. },
  42036. ]
  42037. ))
  42038. characterMakers.push(() => makeCharacter(
  42039. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42040. {
  42041. regular: {
  42042. height: math.unit(6, "feet"),
  42043. weight: math.unit(220, "lb"),
  42044. name: "Regular",
  42045. image: {
  42046. source: "./media/characters/phillip/regular.svg",
  42047. extra: 1373/1277,
  42048. bottom: 75/1448
  42049. }
  42050. },
  42051. dressed: {
  42052. height: math.unit(6, "feet"),
  42053. weight: math.unit(220, "lb"),
  42054. name: "Dressed",
  42055. image: {
  42056. source: "./media/characters/phillip/dressed.svg",
  42057. extra: 1373/1277,
  42058. bottom: 75/1448
  42059. }
  42060. },
  42061. paw: {
  42062. height: math.unit(1.44, "feet"),
  42063. name: "Paw",
  42064. image: {
  42065. source: "./media/characters/phillip/paw.svg"
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(6, "feet"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42079. {
  42080. side: {
  42081. height: math.unit(42, "feet"),
  42082. name: "Side",
  42083. image: {
  42084. source: "./media/characters/uvula/side.svg",
  42085. extra: 683/586,
  42086. bottom: 60/743
  42087. }
  42088. },
  42089. front: {
  42090. height: math.unit(42, "feet"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/uvula/front.svg",
  42094. extra: 705/613,
  42095. bottom: 54/759
  42096. }
  42097. },
  42098. maw: {
  42099. height: math.unit(23.5, "feet"),
  42100. name: "Maw",
  42101. image: {
  42102. source: "./media/characters/uvula/maw.svg"
  42103. }
  42104. },
  42105. },
  42106. [
  42107. {
  42108. name: "Original Size",
  42109. height: math.unit(14, "inches")
  42110. },
  42111. {
  42112. name: "Human Size",
  42113. height: math.unit(6, "feet")
  42114. },
  42115. {
  42116. name: "Big",
  42117. height: math.unit(42, "feet"),
  42118. default: true
  42119. },
  42120. {
  42121. name: "Bigger",
  42122. height: math.unit(100, "feet")
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(5 + 11/12, "feet"),
  42131. name: "Front",
  42132. image: {
  42133. source: "./media/characters/lannah/front.svg",
  42134. extra: 1208/1113,
  42135. bottom: 97/1305
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Normal",
  42142. height: math.unit(5 + 11/12, "feet"),
  42143. default: true
  42144. },
  42145. ]
  42146. ))
  42147. characterMakers.push(() => makeCharacter(
  42148. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42149. {
  42150. front: {
  42151. height: math.unit(6 + 3/12, "feet"),
  42152. weight: math.unit(3.5, "tons"),
  42153. name: "Front",
  42154. image: {
  42155. source: "./media/characters/emberflame/front.svg",
  42156. extra: 1198/672,
  42157. bottom: 82/1280
  42158. }
  42159. },
  42160. side: {
  42161. height: math.unit(6 + 3/12, "feet"),
  42162. weight: math.unit(3.5, "tons"),
  42163. name: "Side",
  42164. image: {
  42165. source: "./media/characters/emberflame/side.svg",
  42166. extra: 938/527,
  42167. bottom: 56/994
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Normal",
  42174. height: math.unit(6 + 3/12, "feet"),
  42175. default: true
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42181. {
  42182. side: {
  42183. height: math.unit(17.5, "feet"),
  42184. weight: math.unit(35, "tons"),
  42185. name: "Side",
  42186. image: {
  42187. source: "./media/characters/sophie-ambrose/side.svg",
  42188. extra: 1573/1242,
  42189. bottom: 71/1644
  42190. }
  42191. },
  42192. maw: {
  42193. height: math.unit(7.4, "feet"),
  42194. name: "Maw",
  42195. image: {
  42196. source: "./media/characters/sophie-ambrose/maw.svg"
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(17.5, "feet"),
  42204. default: true
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42210. {
  42211. front: {
  42212. height: math.unit(280, "feet"),
  42213. weight: math.unit(550, "tons"),
  42214. name: "Front",
  42215. image: {
  42216. source: "./media/characters/king-mugi/front.svg",
  42217. extra: 1102/947,
  42218. bottom: 104/1206
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "King Mugi",
  42225. height: math.unit(280, "feet"),
  42226. default: true
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(64, "meters"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/nova-fox/front.svg",
  42238. extra: 1310/1246,
  42239. bottom: 65/1375
  42240. }
  42241. },
  42242. },
  42243. [
  42244. {
  42245. name: "Macro",
  42246. height: math.unit(64, "meters"),
  42247. default: true
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42253. {
  42254. front: {
  42255. height: math.unit(6 + 3/12, "feet"),
  42256. weight: math.unit(170, "lb"),
  42257. name: "Front",
  42258. image: {
  42259. source: "./media/characters/sam-bat/front.svg",
  42260. extra: 1601/1411,
  42261. bottom: 125/1726
  42262. }
  42263. },
  42264. back: {
  42265. height: math.unit(6 + 3/12, "feet"),
  42266. weight: math.unit(170, "lb"),
  42267. name: "Back",
  42268. image: {
  42269. source: "./media/characters/sam-bat/back.svg",
  42270. extra: 1577/1405,
  42271. bottom: 58/1635
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Normal",
  42278. height: math.unit(6 + 3/12, "feet"),
  42279. default: true
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42285. {
  42286. front: {
  42287. height: math.unit(59, "feet"),
  42288. weight: math.unit(40000, "lb"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/inari/front.svg",
  42292. extra: 1884/1350,
  42293. bottom: 95/1979
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Gigantamax",
  42300. height: math.unit(59, "feet"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42307. {
  42308. front: {
  42309. height: math.unit(5 + 8/12, "feet"),
  42310. name: "Front",
  42311. image: {
  42312. source: "./media/characters/elizabeth/front.svg",
  42313. extra: 1395/1298,
  42314. bottom: 54/1449
  42315. }
  42316. },
  42317. mouth: {
  42318. height: math.unit(1.97, "feet"),
  42319. name: "Mouth",
  42320. image: {
  42321. source: "./media/characters/elizabeth/mouth.svg"
  42322. }
  42323. },
  42324. foot: {
  42325. height: math.unit(1.17, "feet"),
  42326. name: "Foot",
  42327. image: {
  42328. source: "./media/characters/elizabeth/foot.svg"
  42329. }
  42330. },
  42331. },
  42332. [
  42333. {
  42334. name: "Normal",
  42335. height: math.unit(5 + 8/12, "feet"),
  42336. default: true
  42337. },
  42338. {
  42339. name: "Minimacro",
  42340. height: math.unit(18, "feet")
  42341. },
  42342. {
  42343. name: "Macro",
  42344. height: math.unit(180, "feet")
  42345. },
  42346. ]
  42347. ))
  42348. characterMakers.push(() => makeCharacter(
  42349. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42350. {
  42351. front: {
  42352. height: math.unit(5 + 2/12, "feet"),
  42353. name: "Front",
  42354. image: {
  42355. source: "./media/characters/october-gossamer/front.svg",
  42356. extra: 505/454,
  42357. bottom: 7/512
  42358. }
  42359. },
  42360. back: {
  42361. height: math.unit(5 + 2/12, "feet"),
  42362. name: "Back",
  42363. image: {
  42364. source: "./media/characters/october-gossamer/back.svg",
  42365. extra: 501/454,
  42366. bottom: 11/512
  42367. }
  42368. },
  42369. },
  42370. [
  42371. {
  42372. name: "Normal",
  42373. height: math.unit(5 + 2/12, "feet"),
  42374. default: true
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42380. {
  42381. front: {
  42382. height: math.unit(5, "feet"),
  42383. name: "Front",
  42384. image: {
  42385. source: "./media/characters/epiglottis/front.svg",
  42386. extra: 923/849,
  42387. bottom: 17/940
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Original Size",
  42394. height: math.unit(10, "inches")
  42395. },
  42396. {
  42397. name: "Human Size",
  42398. height: math.unit(5, "feet"),
  42399. default: true
  42400. },
  42401. {
  42402. name: "Big",
  42403. height: math.unit(25, "feet")
  42404. },
  42405. {
  42406. name: "Bigger",
  42407. height: math.unit(50, "feet")
  42408. },
  42409. {
  42410. name: "oh lawd",
  42411. height: math.unit(75, "feet")
  42412. },
  42413. ]
  42414. ))
  42415. characterMakers.push(() => makeCharacter(
  42416. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42417. {
  42418. front: {
  42419. height: math.unit(2 + 4/12, "feet"),
  42420. weight: math.unit(60, "lb"),
  42421. name: "Front",
  42422. image: {
  42423. source: "./media/characters/lerm/front.svg",
  42424. extra: 796/790,
  42425. bottom: 79/875
  42426. }
  42427. },
  42428. },
  42429. [
  42430. {
  42431. name: "Normal",
  42432. height: math.unit(2 + 4/12, "feet"),
  42433. default: true
  42434. },
  42435. ]
  42436. ))
  42437. characterMakers.push(() => makeCharacter(
  42438. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42439. {
  42440. front: {
  42441. height: math.unit(5.5, "feet"),
  42442. weight: math.unit(130, "lb"),
  42443. name: "Front",
  42444. image: {
  42445. source: "./media/characters/xena-nebadon/front.svg",
  42446. extra: 1828/1730,
  42447. bottom: 79/1907
  42448. }
  42449. },
  42450. },
  42451. [
  42452. {
  42453. name: "Tiny Puppy",
  42454. height: math.unit(3, "inches")
  42455. },
  42456. {
  42457. name: "Normal",
  42458. height: math.unit(5.5, "feet"),
  42459. default: true
  42460. },
  42461. {
  42462. name: "Lotta Lady",
  42463. height: math.unit(12, "feet")
  42464. },
  42465. {
  42466. name: "Pretty Big",
  42467. height: math.unit(100, "feet")
  42468. },
  42469. {
  42470. name: "Big",
  42471. height: math.unit(500, "feet")
  42472. },
  42473. {
  42474. name: "Skyscraper Toys",
  42475. height: math.unit(2500, "feet")
  42476. },
  42477. {
  42478. name: "Plane Catcher",
  42479. height: math.unit(8, "miles")
  42480. },
  42481. {
  42482. name: "Planet Toys",
  42483. height: math.unit(15, "earths")
  42484. },
  42485. {
  42486. name: "Stardust",
  42487. height: math.unit(0.25, "galaxies")
  42488. },
  42489. {
  42490. name: "Snacks",
  42491. height: math.unit(70, "universes")
  42492. },
  42493. ]
  42494. ))
  42495. characterMakers.push(() => makeCharacter(
  42496. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42497. {
  42498. front: {
  42499. height: math.unit(1.6, "meters"),
  42500. weight: math.unit(60, "kg"),
  42501. name: "Front",
  42502. image: {
  42503. source: "./media/characters/bounty/front.svg",
  42504. extra: 1426/1308,
  42505. bottom: 15/1441
  42506. }
  42507. },
  42508. back: {
  42509. height: math.unit(1.6, "meters"),
  42510. weight: math.unit(60, "kg"),
  42511. name: "Back",
  42512. image: {
  42513. source: "./media/characters/bounty/back.svg",
  42514. extra: 1417/1307,
  42515. bottom: 8/1425
  42516. }
  42517. },
  42518. },
  42519. [
  42520. {
  42521. name: "Normal",
  42522. height: math.unit(1.6, "meters"),
  42523. default: true
  42524. },
  42525. {
  42526. name: "Macro",
  42527. height: math.unit(300, "meters")
  42528. },
  42529. ]
  42530. ))
  42531. characterMakers.push(() => makeCharacter(
  42532. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42533. {
  42534. front: {
  42535. height: math.unit(2 + 8/12, "feet"),
  42536. weight: math.unit(15, "lb"),
  42537. name: "Front",
  42538. image: {
  42539. source: "./media/characters/mochi/front.svg",
  42540. extra: 1022/852,
  42541. bottom: 435/1457
  42542. }
  42543. },
  42544. back: {
  42545. height: math.unit(2 + 8/12, "feet"),
  42546. weight: math.unit(15, "lb"),
  42547. name: "Back",
  42548. image: {
  42549. source: "./media/characters/mochi/back.svg",
  42550. extra: 1335/1119,
  42551. bottom: 39/1374
  42552. }
  42553. },
  42554. bird: {
  42555. height: math.unit(2 + 8/12, "feet"),
  42556. weight: math.unit(15, "lb"),
  42557. name: "Bird",
  42558. image: {
  42559. source: "./media/characters/mochi/bird.svg",
  42560. extra: 1251/1113,
  42561. bottom: 178/1429
  42562. }
  42563. },
  42564. kaiju: {
  42565. height: math.unit(154, "feet"),
  42566. weight: math.unit(1e7, "lb"),
  42567. name: "Kaiju",
  42568. image: {
  42569. source: "./media/characters/mochi/kaiju.svg",
  42570. extra: 460/324,
  42571. bottom: 40/500
  42572. }
  42573. },
  42574. head: {
  42575. height: math.unit(1.21, "feet"),
  42576. name: "Head",
  42577. image: {
  42578. source: "./media/characters/mochi/head.svg"
  42579. }
  42580. },
  42581. alternateTail: {
  42582. height: math.unit(2 + 8/12, "feet"),
  42583. weight: math.unit(45, "lb"),
  42584. name: "Alternate Tail",
  42585. image: {
  42586. source: "./media/characters/mochi/alternate-tail.svg",
  42587. extra: 139/76,
  42588. bottom: 45/184
  42589. }
  42590. },
  42591. },
  42592. [
  42593. {
  42594. name: "Micro",
  42595. height: math.unit(2, "inches")
  42596. },
  42597. {
  42598. name: "Normal",
  42599. height: math.unit(2 + 8/12, "feet"),
  42600. default: true
  42601. },
  42602. {
  42603. name: "Macro",
  42604. height: math.unit(106, "feet")
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(5.67, "feet"),
  42613. weight: math.unit(135, "lb"),
  42614. name: "Front",
  42615. image: {
  42616. source: "./media/characters/sarel/front.svg",
  42617. extra: 865/788,
  42618. bottom: 97/962
  42619. }
  42620. },
  42621. back: {
  42622. height: math.unit(5.67, "feet"),
  42623. weight: math.unit(135, "lb"),
  42624. name: "Back",
  42625. image: {
  42626. source: "./media/characters/sarel/back.svg",
  42627. extra: 857/777,
  42628. bottom: 32/889
  42629. }
  42630. },
  42631. chozoan: {
  42632. height: math.unit(5.67, "feet"),
  42633. weight: math.unit(135, "lb"),
  42634. name: "Chozoan",
  42635. image: {
  42636. source: "./media/characters/sarel/chozoan.svg",
  42637. extra: 865/788,
  42638. bottom: 97/962
  42639. }
  42640. },
  42641. current: {
  42642. height: math.unit(5.67, "feet"),
  42643. weight: math.unit(135, "lb"),
  42644. name: "Current",
  42645. image: {
  42646. source: "./media/characters/sarel/current.svg",
  42647. extra: 865/788,
  42648. bottom: 97/962
  42649. }
  42650. },
  42651. head: {
  42652. height: math.unit(1.77, "feet"),
  42653. name: "Head",
  42654. image: {
  42655. source: "./media/characters/sarel/head.svg"
  42656. }
  42657. },
  42658. claws: {
  42659. height: math.unit(1.8, "feet"),
  42660. name: "Claws",
  42661. image: {
  42662. source: "./media/characters/sarel/claws.svg"
  42663. }
  42664. },
  42665. clawsAlt: {
  42666. height: math.unit(1.8, "feet"),
  42667. name: "Claws-alt",
  42668. image: {
  42669. source: "./media/characters/sarel/claws-alt.svg"
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Normal",
  42676. height: math.unit(5.67, "feet"),
  42677. default: true
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(5500, "feet"),
  42686. name: "Front",
  42687. image: {
  42688. source: "./media/characters/alyonia/front.svg",
  42689. extra: 1200/1135,
  42690. bottom: 29/1229
  42691. }
  42692. },
  42693. back: {
  42694. height: math.unit(5500, "feet"),
  42695. name: "Back",
  42696. image: {
  42697. source: "./media/characters/alyonia/back.svg",
  42698. extra: 1205/1138,
  42699. bottom: 10/1215
  42700. }
  42701. },
  42702. },
  42703. [
  42704. {
  42705. name: "Small",
  42706. height: math.unit(10, "feet")
  42707. },
  42708. {
  42709. name: "Macro",
  42710. height: math.unit(500, "feet")
  42711. },
  42712. {
  42713. name: "Mega Macro",
  42714. height: math.unit(5500, "feet"),
  42715. default: true
  42716. },
  42717. {
  42718. name: "Mega Macro+",
  42719. height: math.unit(500000, "feet")
  42720. },
  42721. {
  42722. name: "Giga Macro",
  42723. height: math.unit(3000, "miles")
  42724. },
  42725. {
  42726. name: "Tera Macro",
  42727. height: math.unit(2.8e6, "miles")
  42728. },
  42729. {
  42730. name: "Galactic",
  42731. height: math.unit(120000, "lightyears")
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42737. {
  42738. werewolf: {
  42739. height: math.unit(8, "feet"),
  42740. weight: math.unit(425, "lb"),
  42741. name: "Werewolf",
  42742. image: {
  42743. source: "./media/characters/autumn/werewolf.svg",
  42744. extra: 2154/2031,
  42745. bottom: 160/2314
  42746. }
  42747. },
  42748. human: {
  42749. height: math.unit(5 + 8/12, "feet"),
  42750. weight: math.unit(150, "lb"),
  42751. name: "Human",
  42752. image: {
  42753. source: "./media/characters/autumn/human.svg",
  42754. extra: 1200/1149,
  42755. bottom: 30/1230
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(8, "feet"),
  42763. default: true
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(8 + 5/12, "feet"),
  42772. weight: math.unit(825, "lb"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/cobalt-charizard/front.svg",
  42776. extra: 1268/1155,
  42777. bottom: 122/1390
  42778. }
  42779. },
  42780. side: {
  42781. height: math.unit(8 + 5/12, "feet"),
  42782. weight: math.unit(825, "lb"),
  42783. name: "Side",
  42784. image: {
  42785. source: "./media/characters/cobalt-charizard/side.svg",
  42786. extra: 1348/1257,
  42787. bottom: 58/1406
  42788. }
  42789. },
  42790. gMax: {
  42791. height: math.unit(134 + 11/12, "feet"),
  42792. name: "G-Max",
  42793. image: {
  42794. source: "./media/characters/cobalt-charizard/g-max.svg",
  42795. extra: 1835/1541,
  42796. bottom: 151/1986
  42797. }
  42798. },
  42799. },
  42800. [
  42801. {
  42802. name: "Normal",
  42803. height: math.unit(8 + 5/12, "feet"),
  42804. default: true
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42810. {
  42811. front: {
  42812. height: math.unit(6 + 3/12, "feet"),
  42813. weight: math.unit(210, "lb"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/stella/front.svg",
  42817. extra: 3549/3335,
  42818. bottom: 51/3600
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Normal",
  42825. height: math.unit(6 + 3/12, "feet"),
  42826. default: true
  42827. },
  42828. ]
  42829. ))
  42830. characterMakers.push(() => makeCharacter(
  42831. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42832. {
  42833. front: {
  42834. height: math.unit(5, "feet"),
  42835. weight: math.unit(90, "lb"),
  42836. name: "Front",
  42837. image: {
  42838. source: "./media/characters/riley-bishop/front.svg",
  42839. extra: 1450/1428,
  42840. bottom: 152/1602
  42841. }
  42842. },
  42843. },
  42844. [
  42845. {
  42846. name: "Normal",
  42847. height: math.unit(5, "feet"),
  42848. default: true
  42849. },
  42850. ]
  42851. ))
  42852. characterMakers.push(() => makeCharacter(
  42853. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42854. {
  42855. side: {
  42856. height: math.unit(8 + 2/12, "feet"),
  42857. weight: math.unit(500, "kg"),
  42858. name: "Side",
  42859. image: {
  42860. source: "./media/characters/theo-arcanine/side.svg",
  42861. extra: 1342/1074,
  42862. bottom: 111/1453
  42863. }
  42864. },
  42865. },
  42866. [
  42867. {
  42868. name: "Normal",
  42869. height: math.unit(8 + 2/12, "feet"),
  42870. default: true
  42871. },
  42872. ]
  42873. ))
  42874. characterMakers.push(() => makeCharacter(
  42875. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42876. {
  42877. front: {
  42878. height: math.unit(4, "feet"),
  42879. name: "Front",
  42880. image: {
  42881. source: "./media/characters/kali/front.svg",
  42882. extra: 1921/1357,
  42883. bottom: 70/1991
  42884. }
  42885. },
  42886. },
  42887. [
  42888. {
  42889. name: "Normal",
  42890. height: math.unit(4, "feet"),
  42891. default: true
  42892. },
  42893. {
  42894. name: "Macro",
  42895. height: math.unit(32, "meters")
  42896. },
  42897. {
  42898. name: "Macro+",
  42899. height: math.unit(150, "meters")
  42900. },
  42901. {
  42902. name: "Megamacro",
  42903. height: math.unit(7500, "meters")
  42904. },
  42905. {
  42906. name: "Megamacro+",
  42907. height: math.unit(80, "kilometers")
  42908. },
  42909. ]
  42910. ))
  42911. characterMakers.push(() => makeCharacter(
  42912. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42913. {
  42914. side: {
  42915. height: math.unit(5 + 11/12, "feet"),
  42916. weight: math.unit(236, "lb"),
  42917. name: "Side",
  42918. image: {
  42919. source: "./media/characters/gapp/side.svg",
  42920. extra: 775/340,
  42921. bottom: 58/833
  42922. }
  42923. },
  42924. mouth: {
  42925. height: math.unit(2.98, "feet"),
  42926. name: "Mouth",
  42927. image: {
  42928. source: "./media/characters/gapp/mouth.svg"
  42929. }
  42930. },
  42931. },
  42932. [
  42933. {
  42934. name: "Normal",
  42935. height: math.unit(5 + 1/12, "feet"),
  42936. default: true
  42937. },
  42938. ]
  42939. ))
  42940. characterMakers.push(() => makeCharacter(
  42941. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42942. {
  42943. front: {
  42944. height: math.unit(6, "feet"),
  42945. name: "Front",
  42946. image: {
  42947. source: "./media/characters/persephone/front.svg",
  42948. extra: 1895/1717,
  42949. bottom: 96/1991
  42950. }
  42951. },
  42952. back: {
  42953. height: math.unit(6, "feet"),
  42954. name: "Back",
  42955. image: {
  42956. source: "./media/characters/persephone/back.svg",
  42957. extra: 1868/1679,
  42958. bottom: 26/1894
  42959. }
  42960. },
  42961. casual: {
  42962. height: math.unit(6, "feet"),
  42963. name: "Casual",
  42964. image: {
  42965. source: "./media/characters/persephone/casual.svg",
  42966. extra: 1713/1541,
  42967. bottom: 76/1789
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Human Size",
  42974. height: math.unit(6, "feet")
  42975. },
  42976. {
  42977. name: "Big Steppy",
  42978. height: math.unit(600, "meters"),
  42979. default: true
  42980. },
  42981. {
  42982. name: "Galaxy Brain",
  42983. height: math.unit(1, "zettameter")
  42984. },
  42985. ]
  42986. ))
  42987. characterMakers.push(() => makeCharacter(
  42988. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42989. {
  42990. front: {
  42991. height: math.unit(1.85, "meters"),
  42992. name: "Front",
  42993. image: {
  42994. source: "./media/characters/riley-foxthing/front.svg",
  42995. extra: 1495/1354,
  42996. bottom: 122/1617
  42997. }
  42998. },
  42999. frontAlt: {
  43000. height: math.unit(1.85, "meters"),
  43001. name: "Front (Alt)",
  43002. image: {
  43003. source: "./media/characters/riley-foxthing/front-alt.svg",
  43004. extra: 1572/1389,
  43005. bottom: 116/1688
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Normal Sized",
  43012. height: math.unit(1.85, "meters"),
  43013. default: true
  43014. },
  43015. {
  43016. name: "Quite Sizable",
  43017. height: math.unit(5, "meters")
  43018. },
  43019. {
  43020. name: "Rather Large",
  43021. height: math.unit(20, "meters")
  43022. },
  43023. {
  43024. name: "Macro",
  43025. height: math.unit(450, "meters")
  43026. },
  43027. {
  43028. name: "Giga",
  43029. height: math.unit(5, "km")
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43035. {
  43036. front: {
  43037. height: math.unit(6, "feet"),
  43038. weight: math.unit(200, "lb"),
  43039. name: "Front",
  43040. image: {
  43041. source: "./media/characters/blizzard/front.svg",
  43042. extra: 1136/990,
  43043. bottom: 136/1272
  43044. }
  43045. },
  43046. back: {
  43047. height: math.unit(6, "feet"),
  43048. weight: math.unit(200, "lb"),
  43049. name: "Back",
  43050. image: {
  43051. source: "./media/characters/blizzard/back.svg",
  43052. extra: 1175/1034,
  43053. bottom: 97/1272
  43054. }
  43055. },
  43056. sitting: {
  43057. height: math.unit(3.725, "feet"),
  43058. weight: math.unit(200, "lb"),
  43059. name: "Sitting",
  43060. image: {
  43061. source: "./media/characters/blizzard/sitting.svg",
  43062. extra: 581/485,
  43063. bottom: 90/671
  43064. }
  43065. },
  43066. frontWizard: {
  43067. height: math.unit(7.9, "feet"),
  43068. weight: math.unit(200, "lb"),
  43069. name: "Front (Wizard)",
  43070. image: {
  43071. source: "./media/characters/blizzard/front-wizard.svg"
  43072. }
  43073. },
  43074. backWizard: {
  43075. height: math.unit(7.9, "feet"),
  43076. weight: math.unit(200, "lb"),
  43077. name: "Back (Wizard)",
  43078. image: {
  43079. source: "./media/characters/blizzard/back-wizard.svg"
  43080. }
  43081. },
  43082. frontNsfw: {
  43083. height: math.unit(6, "feet"),
  43084. weight: math.unit(200, "lb"),
  43085. name: "Front (NSFW)",
  43086. image: {
  43087. source: "./media/characters/blizzard/front-nsfw.svg",
  43088. extra: 1136/990,
  43089. bottom: 136/1272
  43090. }
  43091. },
  43092. backNsfw: {
  43093. height: math.unit(6, "feet"),
  43094. weight: math.unit(200, "lb"),
  43095. name: "Back (NSFW)",
  43096. image: {
  43097. source: "./media/characters/blizzard/back-nsfw.svg",
  43098. extra: 1175/1034,
  43099. bottom: 97/1272
  43100. }
  43101. },
  43102. sittingNsfw: {
  43103. height: math.unit(3.725, "feet"),
  43104. weight: math.unit(200, "lb"),
  43105. name: "Sitting (NSFW)",
  43106. image: {
  43107. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43108. extra: 581/485,
  43109. bottom: 90/671
  43110. }
  43111. },
  43112. wizardFrontNsfw: {
  43113. height: math.unit(7.9, "feet"),
  43114. weight: math.unit(200, "lb"),
  43115. name: "Wizard (Front, NSFW)",
  43116. image: {
  43117. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43118. }
  43119. },
  43120. },
  43121. [
  43122. {
  43123. name: "Normal",
  43124. height: math.unit(6, "feet"),
  43125. default: true
  43126. },
  43127. ]
  43128. ))
  43129. characterMakers.push(() => makeCharacter(
  43130. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43131. {
  43132. front: {
  43133. height: math.unit(5 + 2/12, "feet"),
  43134. name: "Front",
  43135. image: {
  43136. source: "./media/characters/lumi/front.svg",
  43137. extra: 1328/1268,
  43138. bottom: 103/1431
  43139. }
  43140. },
  43141. back: {
  43142. height: math.unit(5 + 2/12, "feet"),
  43143. name: "Back",
  43144. image: {
  43145. source: "./media/characters/lumi/back.svg",
  43146. extra: 1381/1327,
  43147. bottom: 43/1424
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "Normal",
  43154. height: math.unit(5 + 2/12, "feet"),
  43155. default: true
  43156. },
  43157. ]
  43158. ))
  43159. characterMakers.push(() => makeCharacter(
  43160. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43161. {
  43162. front: {
  43163. height: math.unit(5 + 9/12, "feet"),
  43164. name: "Front",
  43165. image: {
  43166. source: "./media/characters/aliya-cotton/front.svg",
  43167. extra: 577/564,
  43168. bottom: 29/606
  43169. }
  43170. },
  43171. },
  43172. [
  43173. {
  43174. name: "Normal",
  43175. height: math.unit(5 + 9/12, "feet"),
  43176. default: true
  43177. },
  43178. ]
  43179. ))
  43180. characterMakers.push(() => makeCharacter(
  43181. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43182. {
  43183. front: {
  43184. height: math.unit(2.7, "meters"),
  43185. weight: math.unit(25000, "lb"),
  43186. name: "Front",
  43187. image: {
  43188. source: "./media/characters/noah-luxray/front.svg",
  43189. extra: 1644/825,
  43190. bottom: 339/1983
  43191. }
  43192. },
  43193. side: {
  43194. height: math.unit(2.97, "meters"),
  43195. weight: math.unit(25000, "lb"),
  43196. name: "Side",
  43197. image: {
  43198. source: "./media/characters/noah-luxray/side.svg",
  43199. extra: 1319/650,
  43200. bottom: 163/1482
  43201. }
  43202. },
  43203. dick: {
  43204. height: math.unit(7.4, "feet"),
  43205. weight: math.unit(2500, "lb"),
  43206. name: "Dick",
  43207. image: {
  43208. source: "./media/characters/noah-luxray/dick.svg"
  43209. }
  43210. },
  43211. dickAlt: {
  43212. height: math.unit(10.83, "feet"),
  43213. weight: math.unit(2500, "lb"),
  43214. name: "Dick-alt",
  43215. image: {
  43216. source: "./media/characters/noah-luxray/dick-alt.svg"
  43217. }
  43218. },
  43219. },
  43220. [
  43221. {
  43222. name: "BIG",
  43223. height: math.unit(2.7, "meters"),
  43224. default: true
  43225. },
  43226. ]
  43227. ))
  43228. characterMakers.push(() => makeCharacter(
  43229. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43230. {
  43231. standing: {
  43232. height: math.unit(183, "cm"),
  43233. weight: math.unit(68, "kg"),
  43234. name: "Standing",
  43235. image: {
  43236. source: "./media/characters/arion/standing.svg",
  43237. extra: 1869/1807,
  43238. bottom: 93/1962
  43239. }
  43240. },
  43241. reclining: {
  43242. height: math.unit(70.5, "cm"),
  43243. weight: math.unit(68, "lb"),
  43244. name: "Reclining",
  43245. image: {
  43246. source: "./media/characters/arion/reclining.svg",
  43247. extra: 937/870,
  43248. bottom: 63/1000
  43249. }
  43250. },
  43251. },
  43252. [
  43253. {
  43254. name: "Colossus Size, Low",
  43255. height: math.unit(33, "meters"),
  43256. default: true
  43257. },
  43258. {
  43259. name: "Colossus Size, Mid",
  43260. height: math.unit(52, "meters")
  43261. },
  43262. {
  43263. name: "Colossus Size, High",
  43264. height: math.unit(60, "meters")
  43265. },
  43266. {
  43267. name: "Titan Size, Low",
  43268. height: math.unit(91, "meters"),
  43269. },
  43270. {
  43271. name: "Titan Size, Mid",
  43272. height: math.unit(122, "meters")
  43273. },
  43274. {
  43275. name: "Titan Size, High",
  43276. height: math.unit(162, "meters")
  43277. },
  43278. ]
  43279. ))
  43280. characterMakers.push(() => makeCharacter(
  43281. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43282. {
  43283. front: {
  43284. height: math.unit(53, "meters"),
  43285. name: "Front",
  43286. image: {
  43287. source: "./media/characters/stellar-marbey/front.svg",
  43288. extra: 1913/1805,
  43289. bottom: 92/2005
  43290. }
  43291. },
  43292. back: {
  43293. height: math.unit(53, "meters"),
  43294. name: "Back",
  43295. image: {
  43296. source: "./media/characters/stellar-marbey/back.svg",
  43297. extra: 1960/1851,
  43298. bottom: 28/1988
  43299. }
  43300. },
  43301. mouth: {
  43302. height: math.unit(3.5, "meters"),
  43303. name: "Mouth",
  43304. image: {
  43305. source: "./media/characters/stellar-marbey/mouth.svg"
  43306. }
  43307. },
  43308. },
  43309. [
  43310. {
  43311. name: "Macro",
  43312. height: math.unit(53, "meters"),
  43313. default: true
  43314. },
  43315. ]
  43316. ))
  43317. characterMakers.push(() => makeCharacter(
  43318. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43319. {
  43320. front: {
  43321. height: math.unit(8 + 1/12, "feet"),
  43322. weight: math.unit(233, "lb"),
  43323. name: "Front",
  43324. image: {
  43325. source: "./media/characters/matsu/front.svg",
  43326. extra: 832/772,
  43327. bottom: 40/872
  43328. }
  43329. },
  43330. back: {
  43331. height: math.unit(8 + 1/12, "feet"),
  43332. weight: math.unit(233, "lb"),
  43333. name: "Back",
  43334. image: {
  43335. source: "./media/characters/matsu/back.svg",
  43336. extra: 839/780,
  43337. bottom: 47/886
  43338. }
  43339. },
  43340. },
  43341. [
  43342. {
  43343. name: "Normal",
  43344. height: math.unit(8 + 1/12, "feet"),
  43345. default: true
  43346. },
  43347. ]
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43351. {
  43352. front: {
  43353. height: math.unit(4, "feet"),
  43354. weight: math.unit(148, "lb"),
  43355. name: "Front",
  43356. image: {
  43357. source: "./media/characters/thiz/front.svg",
  43358. extra: 1913/1748,
  43359. bottom: 62/1975
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(4, "feet"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(7 + 6/12, "feet"),
  43376. weight: math.unit(267, "lb"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/marcel/front.svg",
  43380. extra: 1221/1096,
  43381. bottom: 76/1297
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(7 + 6/12, "feet"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43395. {
  43396. side: {
  43397. height: math.unit(42, "meters"),
  43398. name: "Side",
  43399. image: {
  43400. source: "./media/characters/flake/side.svg",
  43401. extra: 1525/1306,
  43402. bottom: 209/1734
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "Normal",
  43409. height: math.unit(42, "meters"),
  43410. default: true
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43416. {
  43417. dressed: {
  43418. height: math.unit(6 + 4/12, "feet"),
  43419. weight: math.unit(520, "lb"),
  43420. name: "Dressed",
  43421. image: {
  43422. source: "./media/characters/someonne/dressed.svg",
  43423. extra: 1020/1010,
  43424. bottom: 178/1198
  43425. }
  43426. },
  43427. undressed: {
  43428. height: math.unit(6 + 4/12, "feet"),
  43429. weight: math.unit(520, "lb"),
  43430. name: "Undressed",
  43431. image: {
  43432. source: "./media/characters/someonne/undressed.svg",
  43433. extra: 1019/1014,
  43434. bottom: 169/1188
  43435. }
  43436. },
  43437. },
  43438. [
  43439. {
  43440. name: "Normal",
  43441. height: math.unit(6 + 4/12, "feet"),
  43442. default: true
  43443. },
  43444. ]
  43445. ))
  43446. characterMakers.push(() => makeCharacter(
  43447. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43448. {
  43449. front: {
  43450. height: math.unit(3, "feet"),
  43451. weight: math.unit(30, "lb"),
  43452. name: "Front",
  43453. image: {
  43454. source: "./media/characters/till/front.svg",
  43455. extra: 892/823,
  43456. bottom: 55/947
  43457. }
  43458. },
  43459. },
  43460. [
  43461. {
  43462. name: "Normal",
  43463. height: math.unit(3, "feet"),
  43464. default: true
  43465. },
  43466. ]
  43467. ))
  43468. characterMakers.push(() => makeCharacter(
  43469. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43470. {
  43471. front: {
  43472. height: math.unit(9 + 8/12, "feet"),
  43473. weight: math.unit(800, "lb"),
  43474. name: "Front",
  43475. image: {
  43476. source: "./media/characters/sydney-heki/front.svg",
  43477. extra: 1360/1300,
  43478. bottom: 22/1382
  43479. }
  43480. },
  43481. back: {
  43482. height: math.unit(9 + 8/12, "feet"),
  43483. weight: math.unit(800, "lb"),
  43484. name: "Back",
  43485. image: {
  43486. source: "./media/characters/sydney-heki/back.svg",
  43487. extra: 1356/1293,
  43488. bottom: 12/1368
  43489. }
  43490. },
  43491. frontDressed: {
  43492. height: math.unit(9 + 8/12, "feet"),
  43493. weight: math.unit(800, "lb"),
  43494. name: "Front-dressed",
  43495. image: {
  43496. source: "./media/characters/sydney-heki/front-dressed.svg",
  43497. extra: 1360/1300,
  43498. bottom: 22/1382
  43499. }
  43500. },
  43501. },
  43502. [
  43503. {
  43504. name: "Normal",
  43505. height: math.unit(9 + 8/12, "feet"),
  43506. default: true
  43507. },
  43508. {
  43509. name: "Macro",
  43510. height: math.unit(500, "feet")
  43511. },
  43512. {
  43513. name: "Megamacro",
  43514. height: math.unit(3.6, "miles")
  43515. },
  43516. ]
  43517. ))
  43518. characterMakers.push(() => makeCharacter(
  43519. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43520. {
  43521. front: {
  43522. height: math.unit(200, "cm"),
  43523. weight: math.unit(250, "lb"),
  43524. name: "Front",
  43525. image: {
  43526. source: "./media/characters/fowler-karlsson/front.svg",
  43527. extra: 897/845,
  43528. bottom: 123/1020
  43529. }
  43530. },
  43531. back: {
  43532. height: math.unit(200, "cm"),
  43533. weight: math.unit(250, "lb"),
  43534. name: "Back",
  43535. image: {
  43536. source: "./media/characters/fowler-karlsson/back.svg",
  43537. extra: 999/944,
  43538. bottom: 26/1025
  43539. }
  43540. },
  43541. dick: {
  43542. height: math.unit(1.92, "feet"),
  43543. weight: math.unit(150, "lb"),
  43544. name: "Dick",
  43545. image: {
  43546. source: "./media/characters/fowler-karlsson/dick.svg"
  43547. }
  43548. },
  43549. },
  43550. [
  43551. {
  43552. name: "Normal",
  43553. height: math.unit(200, "cm"),
  43554. default: true
  43555. },
  43556. {
  43557. name: "Smaller Macro",
  43558. height: math.unit(90, "m")
  43559. },
  43560. {
  43561. name: "Macro",
  43562. height: math.unit(150, "m")
  43563. },
  43564. {
  43565. name: "Bigger Macro",
  43566. height: math.unit(300, "m")
  43567. },
  43568. ]
  43569. ))
  43570. characterMakers.push(() => makeCharacter(
  43571. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43572. {
  43573. side: {
  43574. height: math.unit(8 + 2/12, "feet"),
  43575. weight: math.unit(1, "tonne"),
  43576. name: "Side",
  43577. image: {
  43578. source: "./media/characters/rylide/side.svg",
  43579. extra: 1318/1034,
  43580. bottom: 106/1424
  43581. }
  43582. },
  43583. sitting: {
  43584. height: math.unit(303, "cm"),
  43585. weight: math.unit(1, "tonne"),
  43586. name: "Sitting",
  43587. image: {
  43588. source: "./media/characters/rylide/sitting.svg",
  43589. extra: 1303/1103,
  43590. bottom: 36/1339
  43591. }
  43592. },
  43593. },
  43594. [
  43595. {
  43596. name: "Normal",
  43597. height: math.unit(8 + 2/12, "feet"),
  43598. default: true
  43599. },
  43600. ]
  43601. ))
  43602. characterMakers.push(() => makeCharacter(
  43603. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43604. {
  43605. front: {
  43606. height: math.unit(5 + 10/12, "feet"),
  43607. weight: math.unit(160, "lb"),
  43608. name: "Front",
  43609. image: {
  43610. source: "./media/characters/pudask/front.svg",
  43611. extra: 1616/1590,
  43612. bottom: 161/1777
  43613. }
  43614. },
  43615. },
  43616. [
  43617. {
  43618. name: "Ferret Height",
  43619. height: math.unit(2 + 5/12, "feet")
  43620. },
  43621. {
  43622. name: "Canon Height",
  43623. height: math.unit(5 + 10/12, "feet"),
  43624. default: true
  43625. },
  43626. ]
  43627. ))
  43628. characterMakers.push(() => makeCharacter(
  43629. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43630. {
  43631. front: {
  43632. height: math.unit(3 + 6/12, "feet"),
  43633. weight: math.unit(60, "lb"),
  43634. name: "Front",
  43635. image: {
  43636. source: "./media/characters/ramita/front.svg",
  43637. extra: 1402/1232,
  43638. bottom: 62/1464
  43639. }
  43640. },
  43641. dressed: {
  43642. height: math.unit(3 + 6/12, "feet"),
  43643. weight: math.unit(60, "lb"),
  43644. name: "Dressed",
  43645. image: {
  43646. source: "./media/characters/ramita/dressed.svg",
  43647. extra: 1534/1249,
  43648. bottom: 50/1584
  43649. }
  43650. },
  43651. },
  43652. [
  43653. {
  43654. name: "Normal",
  43655. height: math.unit(3 + 6/12, "feet"),
  43656. default: true
  43657. },
  43658. ]
  43659. ))
  43660. characterMakers.push(() => makeCharacter(
  43661. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43662. {
  43663. front: {
  43664. height: math.unit(8, "feet"),
  43665. name: "Front",
  43666. image: {
  43667. source: "./media/characters/ark/front.svg",
  43668. extra: 772/693,
  43669. bottom: 45/817
  43670. }
  43671. },
  43672. },
  43673. [
  43674. {
  43675. name: "Normal",
  43676. height: math.unit(8, "feet"),
  43677. default: true
  43678. },
  43679. ]
  43680. ))
  43681. characterMakers.push(() => makeCharacter(
  43682. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43683. {
  43684. front: {
  43685. height: math.unit(6, "feet"),
  43686. weight: math.unit(250, "lb"),
  43687. volume: math.unit(5/8, "gallons"),
  43688. name: "Front",
  43689. image: {
  43690. source: "./media/characters/ludwig-horn/front.svg",
  43691. extra: 1782/1635,
  43692. bottom: 96/1878
  43693. }
  43694. },
  43695. back: {
  43696. height: math.unit(6, "feet"),
  43697. weight: math.unit(250, "lb"),
  43698. volume: math.unit(5/8, "gallons"),
  43699. name: "Back",
  43700. image: {
  43701. source: "./media/characters/ludwig-horn/back.svg",
  43702. extra: 1874/1729,
  43703. bottom: 27/1901
  43704. }
  43705. },
  43706. dick: {
  43707. height: math.unit(1.05, "feet"),
  43708. weight: math.unit(15, "lb"),
  43709. volume: math.unit(5/8, "gallons"),
  43710. name: "Dick",
  43711. image: {
  43712. source: "./media/characters/ludwig-horn/dick.svg"
  43713. }
  43714. },
  43715. },
  43716. [
  43717. {
  43718. name: "Small",
  43719. height: math.unit(6, "feet")
  43720. },
  43721. {
  43722. name: "Typical",
  43723. height: math.unit(12, "feet"),
  43724. default: true
  43725. },
  43726. {
  43727. name: "Building",
  43728. height: math.unit(80, "feet")
  43729. },
  43730. {
  43731. name: "Town",
  43732. height: math.unit(800, "feet")
  43733. },
  43734. {
  43735. name: "Kingdom",
  43736. height: math.unit(80000, "feet")
  43737. },
  43738. {
  43739. name: "Planet",
  43740. height: math.unit(8000000, "feet")
  43741. },
  43742. {
  43743. name: "Universe",
  43744. height: math.unit(8000000000, "feet")
  43745. },
  43746. {
  43747. name: "Transcended",
  43748. height: math.unit(8e27, "feet")
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43754. {
  43755. front: {
  43756. height: math.unit(5, "feet"),
  43757. weight: math.unit(50, "kg"),
  43758. name: "Front",
  43759. image: {
  43760. source: "./media/characters/biot-avery/front.svg",
  43761. extra: 1295/1232,
  43762. bottom: 86/1381
  43763. }
  43764. },
  43765. },
  43766. [
  43767. {
  43768. name: "Normal",
  43769. height: math.unit(5, "feet"),
  43770. default: true
  43771. },
  43772. ]
  43773. ))
  43774. characterMakers.push(() => makeCharacter(
  43775. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43776. {
  43777. front: {
  43778. height: math.unit(6, "feet"),
  43779. name: "Front",
  43780. image: {
  43781. source: "./media/characters/kitsune-kiro/front.svg",
  43782. extra: 1270/1158,
  43783. bottom: 42/1312
  43784. }
  43785. },
  43786. frontAlt: {
  43787. height: math.unit(6, "feet"),
  43788. name: "Front-alt",
  43789. image: {
  43790. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43791. extra: 1130/1081,
  43792. bottom: 36/1166
  43793. }
  43794. },
  43795. },
  43796. [
  43797. {
  43798. name: "Smol",
  43799. height: math.unit(3, "feet")
  43800. },
  43801. {
  43802. name: "Normal",
  43803. height: math.unit(6, "feet"),
  43804. default: true
  43805. },
  43806. ]
  43807. ))
  43808. characterMakers.push(() => makeCharacter(
  43809. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43810. {
  43811. front: {
  43812. height: math.unit(6, "feet"),
  43813. weight: math.unit(125, "lb"),
  43814. name: "Front",
  43815. image: {
  43816. source: "./media/characters/jack-thatcher/front.svg",
  43817. extra: 1474/1370,
  43818. bottom: 26/1500
  43819. }
  43820. },
  43821. back: {
  43822. height: math.unit(6, "feet"),
  43823. weight: math.unit(125, "lb"),
  43824. name: "Back",
  43825. image: {
  43826. source: "./media/characters/jack-thatcher/back.svg",
  43827. extra: 1489/1384,
  43828. bottom: 18/1507
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal",
  43835. height: math.unit(6, "feet"),
  43836. default: true
  43837. },
  43838. {
  43839. name: "Macro",
  43840. height: math.unit(75, "feet")
  43841. },
  43842. {
  43843. name: "Macro-er",
  43844. height: math.unit(250, "feet")
  43845. },
  43846. ]
  43847. ))
  43848. characterMakers.push(() => makeCharacter(
  43849. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43850. {
  43851. front: {
  43852. height: math.unit(7, "feet"),
  43853. weight: math.unit(110, "kg"),
  43854. name: "Front",
  43855. image: {
  43856. source: "./media/characters/max-hyper/front.svg",
  43857. extra: 1969/1881,
  43858. bottom: 49/2018
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(7, "feet"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43872. {
  43873. front: {
  43874. height: math.unit(5 + 5/12, "feet"),
  43875. weight: math.unit(160, "lb"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/spook/front.svg",
  43879. extra: 794/791,
  43880. bottom: 54/848
  43881. }
  43882. },
  43883. back: {
  43884. height: math.unit(5 + 5/12, "feet"),
  43885. weight: math.unit(160, "lb"),
  43886. name: "Back",
  43887. image: {
  43888. source: "./media/characters/spook/back.svg",
  43889. extra: 812/798,
  43890. bottom: 32/844
  43891. }
  43892. },
  43893. },
  43894. [
  43895. {
  43896. name: "Normal",
  43897. height: math.unit(5 + 5/12, "feet"),
  43898. default: true
  43899. },
  43900. ]
  43901. ))
  43902. characterMakers.push(() => makeCharacter(
  43903. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43904. {
  43905. front: {
  43906. height: math.unit(18, "feet"),
  43907. name: "Front",
  43908. image: {
  43909. source: "./media/characters/xeaduulix/front.svg",
  43910. extra: 1380/1166,
  43911. bottom: 110/1490
  43912. }
  43913. },
  43914. back: {
  43915. height: math.unit(18, "feet"),
  43916. name: "Back",
  43917. image: {
  43918. source: "./media/characters/xeaduulix/back.svg",
  43919. extra: 1592/1170,
  43920. bottom: 128/1720
  43921. }
  43922. },
  43923. frontNsfw: {
  43924. height: math.unit(18, "feet"),
  43925. name: "Front (NSFW)",
  43926. image: {
  43927. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43928. extra: 1380/1166,
  43929. bottom: 110/1490
  43930. }
  43931. },
  43932. backNsfw: {
  43933. height: math.unit(18, "feet"),
  43934. name: "Back (NSFW)",
  43935. image: {
  43936. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43937. extra: 1592/1170,
  43938. bottom: 128/1720
  43939. }
  43940. },
  43941. },
  43942. [
  43943. {
  43944. name: "Normal",
  43945. height: math.unit(18, "feet"),
  43946. default: true
  43947. },
  43948. ]
  43949. ))
  43950. characterMakers.push(() => makeCharacter(
  43951. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43952. {
  43953. spreadWings: {
  43954. height: math.unit(20, "feet"),
  43955. name: "Spread Wings",
  43956. image: {
  43957. source: "./media/characters/fledge/spread-wings.svg",
  43958. extra: 693/635,
  43959. bottom: 26/719
  43960. }
  43961. },
  43962. front: {
  43963. height: math.unit(20, "feet"),
  43964. name: "Front",
  43965. image: {
  43966. source: "./media/characters/fledge/front.svg",
  43967. extra: 684/637,
  43968. bottom: 18/702
  43969. }
  43970. },
  43971. frontAlt: {
  43972. height: math.unit(20, "feet"),
  43973. name: "Front (Alt)",
  43974. image: {
  43975. source: "./media/characters/fledge/front-alt.svg",
  43976. extra: 708/664,
  43977. bottom: 13/721
  43978. }
  43979. },
  43980. back: {
  43981. height: math.unit(20, "feet"),
  43982. name: "Back",
  43983. image: {
  43984. source: "./media/characters/fledge/back.svg",
  43985. extra: 718/634,
  43986. bottom: 22/740
  43987. }
  43988. },
  43989. head: {
  43990. height: math.unit(5.55, "feet"),
  43991. name: "Head",
  43992. image: {
  43993. source: "./media/characters/fledge/head.svg"
  43994. }
  43995. },
  43996. headAlt: {
  43997. height: math.unit(5.1, "feet"),
  43998. name: "Head (Alt)",
  43999. image: {
  44000. source: "./media/characters/fledge/head-alt.svg"
  44001. }
  44002. },
  44003. },
  44004. [
  44005. {
  44006. name: "Small",
  44007. height: math.unit(6 + 2/12, "feet")
  44008. },
  44009. {
  44010. name: "Big",
  44011. height: math.unit(20, "feet"),
  44012. default: true
  44013. },
  44014. {
  44015. name: "Giant",
  44016. height: math.unit(100, "feet")
  44017. },
  44018. {
  44019. name: "Macro",
  44020. height: math.unit(200, "feet")
  44021. },
  44022. ]
  44023. ))
  44024. characterMakers.push(() => makeCharacter(
  44025. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44026. {
  44027. front: {
  44028. height: math.unit(1, "meter"),
  44029. name: "Front",
  44030. image: {
  44031. source: "./media/characters/atlas-morenai/front.svg",
  44032. extra: 1275/1043,
  44033. bottom: 19/1294
  44034. }
  44035. },
  44036. back: {
  44037. height: math.unit(1, "meter"),
  44038. name: "Back",
  44039. image: {
  44040. source: "./media/characters/atlas-morenai/back.svg",
  44041. extra: 1141/1001,
  44042. bottom: 25/1166
  44043. }
  44044. },
  44045. },
  44046. [
  44047. {
  44048. name: "Normal",
  44049. height: math.unit(1, "meter"),
  44050. default: true
  44051. },
  44052. {
  44053. name: "Magic-Infused",
  44054. height: math.unit(5, "meters")
  44055. },
  44056. ]
  44057. ))
  44058. characterMakers.push(() => makeCharacter(
  44059. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44060. {
  44061. front: {
  44062. height: math.unit(5, "meters"),
  44063. name: "Front",
  44064. image: {
  44065. source: "./media/characters/cintia/front.svg",
  44066. extra: 1312/1228,
  44067. bottom: 38/1350
  44068. }
  44069. },
  44070. back: {
  44071. height: math.unit(5, "meters"),
  44072. name: "Back",
  44073. image: {
  44074. source: "./media/characters/cintia/back.svg",
  44075. extra: 1260/1166,
  44076. bottom: 98/1358
  44077. }
  44078. },
  44079. frontDick: {
  44080. height: math.unit(5, "meters"),
  44081. name: "Front (Dick)",
  44082. image: {
  44083. source: "./media/characters/cintia/front-dick.svg",
  44084. extra: 1312/1228,
  44085. bottom: 38/1350
  44086. }
  44087. },
  44088. backDick: {
  44089. height: math.unit(5, "meters"),
  44090. name: "Back (Dick)",
  44091. image: {
  44092. source: "./media/characters/cintia/back-dick.svg",
  44093. extra: 1260/1166,
  44094. bottom: 98/1358
  44095. }
  44096. },
  44097. bust: {
  44098. height: math.unit(1.97, "meters"),
  44099. name: "Bust",
  44100. image: {
  44101. source: "./media/characters/cintia/bust.svg",
  44102. extra: 617/565,
  44103. bottom: 0/617
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(5, "meters"),
  44111. default: true
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44117. {
  44118. side: {
  44119. height: math.unit(100, "feet"),
  44120. name: "Side",
  44121. image: {
  44122. source: "./media/characters/denora/side.svg",
  44123. extra: 875/803,
  44124. bottom: 9/884
  44125. }
  44126. },
  44127. },
  44128. [
  44129. {
  44130. name: "Standard",
  44131. height: math.unit(100, "feet"),
  44132. default: true
  44133. },
  44134. {
  44135. name: "Grand",
  44136. height: math.unit(1000, "feet")
  44137. },
  44138. {
  44139. name: "Conquering",
  44140. height: math.unit(10000, "feet")
  44141. },
  44142. ]
  44143. ))
  44144. characterMakers.push(() => makeCharacter(
  44145. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44146. {
  44147. dressed: {
  44148. height: math.unit(8 + 5/12, "feet"),
  44149. weight: math.unit(700, "lb"),
  44150. name: "Dressed",
  44151. image: {
  44152. source: "./media/characters/kiva/dressed.svg",
  44153. extra: 1102/1055,
  44154. bottom: 60/1162
  44155. }
  44156. },
  44157. nude: {
  44158. height: math.unit(8 + 5/12, "feet"),
  44159. weight: math.unit(700, "lb"),
  44160. name: "Nude",
  44161. image: {
  44162. source: "./media/characters/kiva/nude.svg",
  44163. extra: 1102/1055,
  44164. bottom: 60/1162
  44165. }
  44166. },
  44167. },
  44168. [
  44169. {
  44170. name: "Base Height",
  44171. height: math.unit(8 + 5/12, "feet"),
  44172. default: true
  44173. },
  44174. {
  44175. name: "Macro",
  44176. height: math.unit(100, "feet")
  44177. },
  44178. {
  44179. name: "Max",
  44180. height: math.unit(3280, "feet")
  44181. },
  44182. ]
  44183. ))
  44184. characterMakers.push(() => makeCharacter(
  44185. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44186. {
  44187. front: {
  44188. height: math.unit(6 + 8/12, "feet"),
  44189. weight: math.unit(250, "lb"),
  44190. name: "Front",
  44191. image: {
  44192. source: "./media/characters/ztragon/front.svg",
  44193. extra: 1825/1684,
  44194. bottom: 98/1923
  44195. }
  44196. },
  44197. },
  44198. [
  44199. {
  44200. name: "Normal",
  44201. height: math.unit(6 + 8/12, "feet"),
  44202. default: true
  44203. },
  44204. {
  44205. name: "Macro",
  44206. height: math.unit(80, "feet")
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44212. {
  44213. front: {
  44214. height: math.unit(10.4, "feet"),
  44215. weight: math.unit(2, "tons"),
  44216. name: "Front",
  44217. image: {
  44218. source: "./media/characters/yesenia/front.svg",
  44219. extra: 1479/1474,
  44220. bottom: 233/1712
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(10.4, "feet"),
  44228. default: true
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44234. {
  44235. normal: {
  44236. height: math.unit(6 + 1/12, "feet"),
  44237. weight: math.unit(180, "lb"),
  44238. name: "Normal",
  44239. image: {
  44240. source: "./media/characters/leanne-lycheborne/normal.svg",
  44241. extra: 1748/1660,
  44242. bottom: 98/1846
  44243. }
  44244. },
  44245. were: {
  44246. height: math.unit(12, "feet"),
  44247. weight: math.unit(1600, "lb"),
  44248. name: "Were",
  44249. image: {
  44250. source: "./media/characters/leanne-lycheborne/were.svg",
  44251. extra: 1485/1432,
  44252. bottom: 66/1551
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(6 + 1/12, "feet"),
  44260. default: true
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44266. {
  44267. side: {
  44268. height: math.unit(13, "feet"),
  44269. name: "Side",
  44270. image: {
  44271. source: "./media/characters/kira-tyler/side.svg",
  44272. extra: 693/393,
  44273. bottom: 58/751
  44274. }
  44275. },
  44276. },
  44277. [
  44278. {
  44279. name: "Normal",
  44280. height: math.unit(13, "feet"),
  44281. default: true
  44282. },
  44283. ]
  44284. ))
  44285. characterMakers.push(() => makeCharacter(
  44286. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44287. {
  44288. front: {
  44289. height: math.unit(10.3, "feet"),
  44290. weight: math.unit(150, "lb"),
  44291. name: "Front",
  44292. image: {
  44293. source: "./media/characters/blaze/front.svg",
  44294. extra: 1378/1286,
  44295. bottom: 172/1550
  44296. }
  44297. },
  44298. },
  44299. [
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(10.3, "feet"),
  44303. default: true
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44309. {
  44310. side: {
  44311. height: math.unit(2, "meters"),
  44312. weight: math.unit(400, "kg"),
  44313. name: "Side",
  44314. image: {
  44315. source: "./media/characters/anu/side.svg",
  44316. extra: 506/394,
  44317. bottom: 18/524
  44318. }
  44319. },
  44320. },
  44321. [
  44322. {
  44323. name: "Humanoid",
  44324. height: math.unit(2, "meters")
  44325. },
  44326. {
  44327. name: "Normal",
  44328. height: math.unit(5, "meters"),
  44329. default: true
  44330. },
  44331. ]
  44332. ))
  44333. characterMakers.push(() => makeCharacter(
  44334. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44335. {
  44336. front: {
  44337. height: math.unit(5 + 5/12, "feet"),
  44338. weight: math.unit(170, "lb"),
  44339. name: "Front",
  44340. image: {
  44341. source: "./media/characters/synx-the-lynx/front.svg",
  44342. extra: 1893/1745,
  44343. bottom: 17/1910
  44344. }
  44345. },
  44346. side: {
  44347. height: math.unit(5 + 5/12, "feet"),
  44348. weight: math.unit(170, "lb"),
  44349. name: "Side",
  44350. image: {
  44351. source: "./media/characters/synx-the-lynx/side.svg",
  44352. extra: 1884/1740,
  44353. bottom: 39/1923
  44354. }
  44355. },
  44356. back: {
  44357. height: math.unit(5 + 5/12, "feet"),
  44358. weight: math.unit(170, "lb"),
  44359. name: "Back",
  44360. image: {
  44361. source: "./media/characters/synx-the-lynx/back.svg",
  44362. extra: 1903/1755,
  44363. bottom: 14/1917
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Normal",
  44370. height: math.unit(5 + 5/12, "feet"),
  44371. default: true
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44377. {
  44378. back: {
  44379. height: math.unit(15, "feet"),
  44380. name: "Back",
  44381. image: {
  44382. source: "./media/characters/nadezda-fex/back.svg",
  44383. extra: 1695/1481,
  44384. bottom: 25/1720
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Normal",
  44391. height: math.unit(15, "feet"),
  44392. default: true
  44393. },
  44394. {
  44395. name: "Macro",
  44396. height: math.unit(2.5, "miles")
  44397. },
  44398. {
  44399. name: "Goddess",
  44400. height: math.unit(2, "multiverses")
  44401. },
  44402. ]
  44403. ))
  44404. characterMakers.push(() => makeCharacter(
  44405. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44406. {
  44407. front: {
  44408. height: math.unit(216, "cm"),
  44409. name: "Front",
  44410. image: {
  44411. source: "./media/characters/lev/front.svg",
  44412. extra: 1728/1670,
  44413. bottom: 82/1810
  44414. }
  44415. },
  44416. back: {
  44417. height: math.unit(216, "cm"),
  44418. name: "Back",
  44419. image: {
  44420. source: "./media/characters/lev/back.svg",
  44421. extra: 1738/1675,
  44422. bottom: 24/1762
  44423. }
  44424. },
  44425. dressed: {
  44426. height: math.unit(216, "cm"),
  44427. name: "Dressed",
  44428. image: {
  44429. source: "./media/characters/lev/dressed.svg",
  44430. extra: 1397/1351,
  44431. bottom: 73/1470
  44432. }
  44433. },
  44434. head: {
  44435. height: math.unit(0.51, "meter"),
  44436. name: "Head",
  44437. image: {
  44438. source: "./media/characters/lev/head.svg"
  44439. }
  44440. },
  44441. },
  44442. [
  44443. {
  44444. name: "Normal",
  44445. height: math.unit(216, "cm"),
  44446. default: true
  44447. },
  44448. {
  44449. name: "Relatively Macro",
  44450. height: math.unit(80, "meters")
  44451. },
  44452. {
  44453. name: "Megamacro",
  44454. height: math.unit(21600, "meters")
  44455. },
  44456. {
  44457. name: "Megamacro+",
  44458. height: math.unit(64800, "meters")
  44459. },
  44460. ]
  44461. ))
  44462. characterMakers.push(() => makeCharacter(
  44463. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44464. {
  44465. front: {
  44466. height: math.unit(2, "meters"),
  44467. weight: math.unit(80, "kg"),
  44468. name: "Front",
  44469. image: {
  44470. source: "./media/characters/moka/front.svg",
  44471. extra: 1337/1255,
  44472. bottom: 58/1395
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Micro",
  44479. height: math.unit(15, "cm")
  44480. },
  44481. {
  44482. name: "Normal",
  44483. height: math.unit(2, "meters"),
  44484. default: true
  44485. },
  44486. {
  44487. name: "Macro",
  44488. height: math.unit(20, "meters"),
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(9, "feet"),
  44497. weight: math.unit(240, "lb"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/kuzco/front.svg",
  44501. extra: 1593/1487,
  44502. bottom: 32/1625
  44503. }
  44504. },
  44505. side: {
  44506. height: math.unit(9, "feet"),
  44507. weight: math.unit(240, "lb"),
  44508. name: "Side",
  44509. image: {
  44510. source: "./media/characters/kuzco/side.svg",
  44511. extra: 1575/1485,
  44512. bottom: 30/1605
  44513. }
  44514. },
  44515. back: {
  44516. height: math.unit(9, "feet"),
  44517. weight: math.unit(240, "lb"),
  44518. name: "Back",
  44519. image: {
  44520. source: "./media/characters/kuzco/back.svg",
  44521. extra: 1603/1514,
  44522. bottom: 14/1617
  44523. }
  44524. },
  44525. },
  44526. [
  44527. {
  44528. name: "Normal",
  44529. height: math.unit(9, "feet"),
  44530. default: true
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44536. {
  44537. side: {
  44538. height: math.unit(2, "meters"),
  44539. weight: math.unit(300, "kg"),
  44540. name: "Side",
  44541. image: {
  44542. source: "./media/characters/ceruleus/side.svg",
  44543. extra: 1068/974,
  44544. bottom: 126/1194
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Normal",
  44551. height: math.unit(16, "meters"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(9, "feet"),
  44561. weight: math.unit(500, "kg"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/acouya/front.svg",
  44565. extra: 1660/1473,
  44566. bottom: 28/1688
  44567. }
  44568. },
  44569. },
  44570. [
  44571. {
  44572. name: "Normal",
  44573. height: math.unit(9, "feet"),
  44574. default: true
  44575. },
  44576. ]
  44577. ))
  44578. characterMakers.push(() => makeCharacter(
  44579. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44580. {
  44581. front: {
  44582. height: math.unit(5 + 6/12, "feet"),
  44583. weight: math.unit(195, "lb"),
  44584. name: "Front",
  44585. image: {
  44586. source: "./media/characters/vant/front.svg",
  44587. extra: 1396/1320,
  44588. bottom: 20/1416
  44589. }
  44590. },
  44591. back: {
  44592. height: math.unit(5 + 6/12, "feet"),
  44593. weight: math.unit(195, "lb"),
  44594. name: "Back",
  44595. image: {
  44596. source: "./media/characters/vant/back.svg",
  44597. extra: 1396/1320,
  44598. bottom: 20/1416
  44599. }
  44600. },
  44601. maw: {
  44602. height: math.unit(0.75, "feet"),
  44603. name: "Maw",
  44604. image: {
  44605. source: "./media/characters/vant/maw.svg"
  44606. }
  44607. },
  44608. paw: {
  44609. height: math.unit(1.07, "feet"),
  44610. name: "Paw",
  44611. image: {
  44612. source: "./media/characters/vant/paw.svg"
  44613. }
  44614. },
  44615. },
  44616. [
  44617. {
  44618. name: "Micro",
  44619. height: math.unit(0.25, "inches")
  44620. },
  44621. {
  44622. name: "Normal",
  44623. height: math.unit(5 + 6/12, "feet"),
  44624. default: true
  44625. },
  44626. {
  44627. name: "Macro",
  44628. height: math.unit(75, "feet")
  44629. },
  44630. ]
  44631. ))
  44632. characterMakers.push(() => makeCharacter(
  44633. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44634. {
  44635. front: {
  44636. height: math.unit(30, "meters"),
  44637. weight: math.unit(363, "tons"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/ahra/front.svg",
  44641. extra: 1914/1814,
  44642. bottom: 46/1960
  44643. }
  44644. },
  44645. },
  44646. [
  44647. {
  44648. name: "Macro",
  44649. height: math.unit(30, "meters"),
  44650. default: true
  44651. },
  44652. ]
  44653. ))
  44654. characterMakers.push(() => makeCharacter(
  44655. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44656. {
  44657. undressed: {
  44658. height: math.unit(2, "m"),
  44659. weight: math.unit(250, "kg"),
  44660. name: "Undressed",
  44661. image: {
  44662. source: "./media/characters/coriander/undressed.svg",
  44663. extra: 1757/1606,
  44664. bottom: 107/1864
  44665. }
  44666. },
  44667. dressed: {
  44668. height: math.unit(2, "m"),
  44669. weight: math.unit(250, "kg"),
  44670. name: "Dressed",
  44671. image: {
  44672. source: "./media/characters/coriander/dressed.svg",
  44673. extra: 1757/1606,
  44674. bottom: 107/1864
  44675. }
  44676. },
  44677. },
  44678. [
  44679. {
  44680. name: "Normal",
  44681. height: math.unit(4, "meters"),
  44682. default: true
  44683. },
  44684. {
  44685. name: "XL",
  44686. height: math.unit(6, "meters")
  44687. },
  44688. {
  44689. name: "XXL",
  44690. height: math.unit(8, "meters")
  44691. },
  44692. ]
  44693. ))
  44694. characterMakers.push(() => makeCharacter(
  44695. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44696. {
  44697. front: {
  44698. height: math.unit(6, "feet"),
  44699. name: "Front",
  44700. image: {
  44701. source: "./media/characters/syrinx/front.svg",
  44702. extra: 1557/1259,
  44703. bottom: 171/1728
  44704. }
  44705. },
  44706. },
  44707. [
  44708. {
  44709. name: "Normal",
  44710. height: math.unit(6 + 3/12, "feet"),
  44711. default: true
  44712. },
  44713. ]
  44714. ))
  44715. characterMakers.push(() => makeCharacter(
  44716. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44717. {
  44718. front: {
  44719. height: math.unit(11 + 6/12, "feet"),
  44720. weight: math.unit(1.5, "tons"),
  44721. name: "Front",
  44722. image: {
  44723. source: "./media/characters/bor/front.svg",
  44724. extra: 1189/1109,
  44725. bottom: 170/1359
  44726. }
  44727. },
  44728. },
  44729. [
  44730. {
  44731. name: "Normal",
  44732. height: math.unit(11 + 6/12, "feet"),
  44733. default: true
  44734. },
  44735. {
  44736. name: "Macro",
  44737. height: math.unit(32 + 9/12, "feet")
  44738. },
  44739. ]
  44740. ))
  44741. characterMakers.push(() => makeCharacter(
  44742. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44743. {
  44744. anthro: {
  44745. height: math.unit(9, "feet"),
  44746. weight: math.unit(2076, "lb"),
  44747. name: "Anthro",
  44748. image: {
  44749. source: "./media/characters/abacus/anthro.svg",
  44750. extra: 1540/1494,
  44751. bottom: 233/1773
  44752. }
  44753. },
  44754. pigeon: {
  44755. height: math.unit(1, "feet"),
  44756. name: "Pigeon",
  44757. image: {
  44758. source: "./media/characters/abacus/pigeon.svg",
  44759. extra: 528/525,
  44760. bottom: 46/574
  44761. }
  44762. },
  44763. },
  44764. [
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(9, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44774. {
  44775. side: {
  44776. height: math.unit(6, "feet"),
  44777. name: "Side",
  44778. image: {
  44779. source: "./media/characters/delkhan/side.svg",
  44780. extra: 1884/1786,
  44781. bottom: 308/2192
  44782. }
  44783. },
  44784. head: {
  44785. height: math.unit(3.38, "feet"),
  44786. name: "Head",
  44787. image: {
  44788. source: "./media/characters/delkhan/head.svg"
  44789. }
  44790. },
  44791. },
  44792. [
  44793. {
  44794. name: "Normal",
  44795. height: math.unit(72, "feet"),
  44796. default: true
  44797. },
  44798. {
  44799. name: "Giant",
  44800. height: math.unit(172, "feet")
  44801. },
  44802. ]
  44803. ))
  44804. characterMakers.push(() => makeCharacter(
  44805. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44806. {
  44807. standing: {
  44808. height: math.unit(6, "feet"),
  44809. name: "Standing",
  44810. image: {
  44811. source: "./media/characters/euchidat/standing.svg",
  44812. extra: 1612/1553,
  44813. bottom: 116/1728
  44814. }
  44815. },
  44816. leaning: {
  44817. height: math.unit(6, "feet"),
  44818. name: "Leaning",
  44819. image: {
  44820. source: "./media/characters/euchidat/leaning.svg",
  44821. extra: 1719/1674,
  44822. bottom: 27/1746
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Normal",
  44829. height: math.unit(175, "feet"),
  44830. default: true
  44831. },
  44832. {
  44833. name: "Megamacro",
  44834. height: math.unit(190, "miles")
  44835. },
  44836. {
  44837. name: "Gigamacro",
  44838. height: math.unit(190000, "miles")
  44839. },
  44840. ]
  44841. ))
  44842. characterMakers.push(() => makeCharacter(
  44843. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44844. {
  44845. front: {
  44846. height: math.unit(6, "feet"),
  44847. weight: math.unit(150, "lb"),
  44848. name: "Front",
  44849. image: {
  44850. source: "./media/characters/rebecca-stack/front.svg",
  44851. extra: 1256/1201,
  44852. bottom: 18/1274
  44853. }
  44854. },
  44855. },
  44856. [
  44857. {
  44858. name: "Normal",
  44859. height: math.unit(5 + 8/12, "feet"),
  44860. default: true
  44861. },
  44862. {
  44863. name: "Demolitionist",
  44864. height: math.unit(200, "feet")
  44865. },
  44866. {
  44867. name: "Out of Control",
  44868. height: math.unit(2, "miles")
  44869. },
  44870. {
  44871. name: "Giga",
  44872. height: math.unit(7200, "miles")
  44873. },
  44874. ]
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44878. {
  44879. front: {
  44880. height: math.unit(6, "feet"),
  44881. weight: math.unit(150, "lb"),
  44882. name: "Front",
  44883. image: {
  44884. source: "./media/characters/jenny-cartwright/front.svg",
  44885. extra: 1384/1376,
  44886. bottom: 58/1442
  44887. }
  44888. },
  44889. },
  44890. [
  44891. {
  44892. name: "Normal",
  44893. height: math.unit(6 + 7/12, "feet"),
  44894. default: true
  44895. },
  44896. {
  44897. name: "Librarian",
  44898. height: math.unit(55, "feet")
  44899. },
  44900. {
  44901. name: "Sightseer",
  44902. height: math.unit(50, "miles")
  44903. },
  44904. {
  44905. name: "Giga",
  44906. height: math.unit(30000, "miles")
  44907. },
  44908. ]
  44909. ))
  44910. characterMakers.push(() => makeCharacter(
  44911. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44912. {
  44913. nude: {
  44914. height: math.unit(8, "feet"),
  44915. weight: math.unit(225, "lb"),
  44916. name: "Nude",
  44917. image: {
  44918. source: "./media/characters/marvy/nude.svg",
  44919. extra: 1900/1683,
  44920. bottom: 89/1989
  44921. }
  44922. },
  44923. dressed: {
  44924. height: math.unit(8, "feet"),
  44925. weight: math.unit(225, "lb"),
  44926. name: "Dressed",
  44927. image: {
  44928. source: "./media/characters/marvy/dressed.svg",
  44929. extra: 1900/1683,
  44930. bottom: 89/1989
  44931. }
  44932. },
  44933. head: {
  44934. height: math.unit(2.85, "feet"),
  44935. name: "Head",
  44936. image: {
  44937. source: "./media/characters/marvy/head.svg"
  44938. }
  44939. },
  44940. },
  44941. [
  44942. {
  44943. name: "Normal",
  44944. height: math.unit(8, "feet"),
  44945. default: true
  44946. },
  44947. ]
  44948. ))
  44949. characterMakers.push(() => makeCharacter(
  44950. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44951. {
  44952. front: {
  44953. height: math.unit(8, "feet"),
  44954. weight: math.unit(250, "lb"),
  44955. name: "Front",
  44956. image: {
  44957. source: "./media/characters/leah/front.svg",
  44958. extra: 1257/1149,
  44959. bottom: 109/1366
  44960. }
  44961. },
  44962. },
  44963. [
  44964. {
  44965. name: "Normal",
  44966. height: math.unit(8, "feet"),
  44967. default: true
  44968. },
  44969. {
  44970. name: "Minimacro",
  44971. height: math.unit(40, "feet")
  44972. },
  44973. {
  44974. name: "Macro",
  44975. height: math.unit(124, "feet")
  44976. },
  44977. {
  44978. name: "Megamacro",
  44979. height: math.unit(850, "feet")
  44980. },
  44981. ]
  44982. ))
  44983. characterMakers.push(() => makeCharacter(
  44984. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44985. {
  44986. side: {
  44987. height: math.unit(13 + 6/12, "feet"),
  44988. weight: math.unit(3200, "lb"),
  44989. name: "Side",
  44990. image: {
  44991. source: "./media/characters/alvir/side.svg",
  44992. extra: 896/589,
  44993. bottom: 26/922
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Normal",
  45000. height: math.unit(13 + 6/12, "feet"),
  45001. default: true
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45007. {
  45008. front: {
  45009. height: math.unit(5 + 4/12, "feet"),
  45010. weight: math.unit(236, "lb"),
  45011. name: "Front",
  45012. image: {
  45013. source: "./media/characters/zaina-khalil/front.svg",
  45014. extra: 1533/1485,
  45015. bottom: 94/1627
  45016. }
  45017. },
  45018. side: {
  45019. height: math.unit(5 + 4/12, "feet"),
  45020. weight: math.unit(236, "lb"),
  45021. name: "Side",
  45022. image: {
  45023. source: "./media/characters/zaina-khalil/side.svg",
  45024. extra: 1537/1498,
  45025. bottom: 66/1603
  45026. }
  45027. },
  45028. back: {
  45029. height: math.unit(5 + 4/12, "feet"),
  45030. weight: math.unit(236, "lb"),
  45031. name: "Back",
  45032. image: {
  45033. source: "./media/characters/zaina-khalil/back.svg",
  45034. extra: 1546/1494,
  45035. bottom: 89/1635
  45036. }
  45037. },
  45038. },
  45039. [
  45040. {
  45041. name: "Normal",
  45042. height: math.unit(5 + 4/12, "feet"),
  45043. default: true
  45044. },
  45045. ]
  45046. ))
  45047. characterMakers.push(() => makeCharacter(
  45048. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45049. {
  45050. side: {
  45051. height: math.unit(12, "feet"),
  45052. weight: math.unit(4000, "lb"),
  45053. name: "Side",
  45054. image: {
  45055. source: "./media/characters/terry/side.svg",
  45056. extra: 1518/1439,
  45057. bottom: 149/1667
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Normal",
  45064. height: math.unit(12, "feet"),
  45065. default: true
  45066. },
  45067. ]
  45068. ))
  45069. characterMakers.push(() => makeCharacter(
  45070. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45071. {
  45072. front: {
  45073. height: math.unit(12, "feet"),
  45074. weight: math.unit(1500, "lb"),
  45075. name: "Front",
  45076. image: {
  45077. source: "./media/characters/kahea/front.svg",
  45078. extra: 1722/1617,
  45079. bottom: 179/1901
  45080. }
  45081. },
  45082. },
  45083. [
  45084. {
  45085. name: "Normal",
  45086. height: math.unit(12, "feet"),
  45087. default: true
  45088. },
  45089. ]
  45090. ))
  45091. characterMakers.push(() => makeCharacter(
  45092. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45093. {
  45094. demonFront: {
  45095. height: math.unit(36, "feet"),
  45096. name: "Front",
  45097. image: {
  45098. source: "./media/characters/alex-xuria/demon-front.svg",
  45099. extra: 1705/1673,
  45100. bottom: 198/1903
  45101. },
  45102. form: "demon",
  45103. default: true
  45104. },
  45105. demonBack: {
  45106. height: math.unit(36, "feet"),
  45107. name: "Back",
  45108. image: {
  45109. source: "./media/characters/alex-xuria/demon-back.svg",
  45110. extra: 1725/1693,
  45111. bottom: 70/1795
  45112. },
  45113. form: "demon"
  45114. },
  45115. demonHead: {
  45116. height: math.unit(2.14, "meters"),
  45117. name: "Head",
  45118. image: {
  45119. source: "./media/characters/alex-xuria/demon-head.svg"
  45120. },
  45121. form: "demon"
  45122. },
  45123. demonHand: {
  45124. height: math.unit(1.61, "meters"),
  45125. name: "Hand",
  45126. image: {
  45127. source: "./media/characters/alex-xuria/demon-hand.svg"
  45128. },
  45129. form: "demon"
  45130. },
  45131. demonPaw: {
  45132. height: math.unit(1.35, "meters"),
  45133. name: "Paw",
  45134. image: {
  45135. source: "./media/characters/alex-xuria/demon-paw.svg"
  45136. },
  45137. form: "demon"
  45138. },
  45139. demonFoot: {
  45140. height: math.unit(2.2, "meters"),
  45141. name: "Foot",
  45142. image: {
  45143. source: "./media/characters/alex-xuria/demon-foot.svg"
  45144. },
  45145. form: "demon"
  45146. },
  45147. demonCock: {
  45148. height: math.unit(1.74, "meters"),
  45149. name: "Cock",
  45150. image: {
  45151. source: "./media/characters/alex-xuria/demon-cock.svg"
  45152. },
  45153. form: "demon"
  45154. },
  45155. demonTailClosed: {
  45156. height: math.unit(1.47, "meters"),
  45157. name: "Tail (Closed)",
  45158. image: {
  45159. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45160. },
  45161. form: "demon"
  45162. },
  45163. demonTailOpen: {
  45164. height: math.unit(2.85, "meters"),
  45165. name: "Tail (Open)",
  45166. image: {
  45167. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45168. },
  45169. form: "demon"
  45170. },
  45171. incubusFront: {
  45172. height: math.unit(12, "feet"),
  45173. name: "Front",
  45174. image: {
  45175. source: "./media/characters/alex-xuria/incubus-front.svg",
  45176. extra: 1754/1677,
  45177. bottom: 125/1879
  45178. },
  45179. form: "incubus",
  45180. default: true
  45181. },
  45182. incubusBack: {
  45183. height: math.unit(12, "feet"),
  45184. name: "Back",
  45185. image: {
  45186. source: "./media/characters/alex-xuria/incubus-back.svg",
  45187. extra: 1702/1647,
  45188. bottom: 30/1732
  45189. },
  45190. form: "incubus"
  45191. },
  45192. incubusHead: {
  45193. height: math.unit(3.45, "feet"),
  45194. name: "Head",
  45195. image: {
  45196. source: "./media/characters/alex-xuria/incubus-head.svg"
  45197. },
  45198. form: "incubus"
  45199. },
  45200. rabbitFront: {
  45201. height: math.unit(6, "feet"),
  45202. name: "Front",
  45203. image: {
  45204. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45205. extra: 1369/1349,
  45206. bottom: 45/1414
  45207. },
  45208. form: "rabbit",
  45209. default: true
  45210. },
  45211. rabbitSide: {
  45212. height: math.unit(6, "feet"),
  45213. name: "Side",
  45214. image: {
  45215. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45216. extra: 1370/1356,
  45217. bottom: 37/1407
  45218. },
  45219. form: "rabbit"
  45220. },
  45221. rabbitBack: {
  45222. height: math.unit(6, "feet"),
  45223. name: "Back",
  45224. image: {
  45225. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45226. extra: 1375/1358,
  45227. bottom: 43/1418
  45228. },
  45229. form: "rabbit"
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Normal",
  45235. height: math.unit(6, "feet"),
  45236. default: true,
  45237. form: "rabbit"
  45238. },
  45239. {
  45240. name: "Incubus",
  45241. height: math.unit(12, "feet"),
  45242. default: true,
  45243. form: "incubus"
  45244. },
  45245. {
  45246. name: "Demon",
  45247. height: math.unit(36, "feet"),
  45248. default: true,
  45249. form: "demon"
  45250. }
  45251. ],
  45252. {
  45253. "demon": {
  45254. name: "Demon",
  45255. default: true
  45256. },
  45257. "incubus": {
  45258. name: "Incubus",
  45259. },
  45260. "rabbit": {
  45261. name: "Rabbit"
  45262. }
  45263. }
  45264. ))
  45265. characterMakers.push(() => makeCharacter(
  45266. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45267. {
  45268. front: {
  45269. height: math.unit(7 + 5/12, "feet"),
  45270. weight: math.unit(510, "lb"),
  45271. name: "Front",
  45272. image: {
  45273. source: "./media/characters/syrup/front.svg",
  45274. extra: 932/916,
  45275. bottom: 26/958
  45276. }
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(7 + 5/12, "feet"),
  45283. default: true
  45284. },
  45285. {
  45286. name: "Big",
  45287. height: math.unit(50, "feet")
  45288. },
  45289. {
  45290. name: "Macro",
  45291. height: math.unit(300, "feet")
  45292. },
  45293. {
  45294. name: "Megamacro",
  45295. height: math.unit(1, "mile")
  45296. },
  45297. ]
  45298. ))
  45299. characterMakers.push(() => makeCharacter(
  45300. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45301. {
  45302. front: {
  45303. height: math.unit(6 + 9/12, "feet"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/zeimne/front.svg",
  45307. extra: 1969/1806,
  45308. bottom: 53/2022
  45309. }
  45310. },
  45311. },
  45312. [
  45313. {
  45314. name: "Normal",
  45315. height: math.unit(6 + 9/12, "feet"),
  45316. default: true
  45317. },
  45318. {
  45319. name: "Giant",
  45320. height: math.unit(550, "feet")
  45321. },
  45322. {
  45323. name: "Mega",
  45324. height: math.unit(3, "miles")
  45325. },
  45326. {
  45327. name: "Giga",
  45328. height: math.unit(250, "miles")
  45329. },
  45330. {
  45331. name: "Tera",
  45332. height: math.unit(1, "AU")
  45333. },
  45334. ]
  45335. ))
  45336. characterMakers.push(() => makeCharacter(
  45337. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45338. {
  45339. front: {
  45340. height: math.unit(5 + 2/12, "feet"),
  45341. name: "Front",
  45342. image: {
  45343. source: "./media/characters/grar/front.svg",
  45344. extra: 1331/1119,
  45345. bottom: 60/1391
  45346. }
  45347. },
  45348. back: {
  45349. height: math.unit(5 + 2/12, "feet"),
  45350. name: "Back",
  45351. image: {
  45352. source: "./media/characters/grar/back.svg",
  45353. extra: 1385/1169,
  45354. bottom: 23/1408
  45355. }
  45356. },
  45357. },
  45358. [
  45359. {
  45360. name: "Normal",
  45361. height: math.unit(5 + 2/12, "feet"),
  45362. default: true
  45363. },
  45364. ]
  45365. ))
  45366. characterMakers.push(() => makeCharacter(
  45367. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45368. {
  45369. front: {
  45370. height: math.unit(13 + 7/12, "feet"),
  45371. weight: math.unit(2200, "lb"),
  45372. name: "Front",
  45373. image: {
  45374. source: "./media/characters/endraya/front.svg",
  45375. extra: 1289/1215,
  45376. bottom: 50/1339
  45377. }
  45378. },
  45379. nude: {
  45380. height: math.unit(13 + 7/12, "feet"),
  45381. weight: math.unit(2200, "lb"),
  45382. name: "Nude",
  45383. image: {
  45384. source: "./media/characters/endraya/nude.svg",
  45385. extra: 1247/1171,
  45386. bottom: 40/1287
  45387. }
  45388. },
  45389. head: {
  45390. height: math.unit(2.6, "feet"),
  45391. name: "Head",
  45392. image: {
  45393. source: "./media/characters/endraya/head.svg"
  45394. }
  45395. },
  45396. slit: {
  45397. height: math.unit(3.4, "feet"),
  45398. name: "Slit",
  45399. image: {
  45400. source: "./media/characters/endraya/slit.svg"
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Normal",
  45407. height: math.unit(13 + 7/12, "feet"),
  45408. default: true
  45409. },
  45410. {
  45411. name: "Macro",
  45412. height: math.unit(200, "feet")
  45413. },
  45414. ]
  45415. ))
  45416. characterMakers.push(() => makeCharacter(
  45417. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45418. {
  45419. front: {
  45420. height: math.unit(412, "meters"),
  45421. name: "Front",
  45422. image: {
  45423. source: "./media/characters/rodryana/front.svg",
  45424. extra: 2002/1921,
  45425. bottom: 53/2055
  45426. }
  45427. },
  45428. back: {
  45429. height: math.unit(412, "meters"),
  45430. name: "Back",
  45431. image: {
  45432. source: "./media/characters/rodryana/back.svg",
  45433. extra: 1993/1926,
  45434. bottom: 48/2041
  45435. }
  45436. },
  45437. maw: {
  45438. height: math.unit(45, "meters"),
  45439. name: "Maw",
  45440. image: {
  45441. source: "./media/characters/rodryana/maw.svg"
  45442. }
  45443. },
  45444. slit: {
  45445. height: math.unit(72, "meters"),
  45446. name: "Slit",
  45447. image: {
  45448. source: "./media/characters/rodryana/slit.svg"
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Macro",
  45455. height: math.unit(412, "meters"),
  45456. default: true
  45457. },
  45458. ]
  45459. ))
  45460. characterMakers.push(() => makeCharacter(
  45461. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45462. {
  45463. front: {
  45464. height: math.unit(6, "feet"),
  45465. weight: math.unit(1000, "lb"),
  45466. name: "Front",
  45467. image: {
  45468. source: "./media/characters/asaya/front.svg",
  45469. extra: 1460/1200,
  45470. bottom: 71/1531
  45471. }
  45472. },
  45473. },
  45474. [
  45475. {
  45476. name: "Normal",
  45477. height: math.unit(8, "km"),
  45478. default: true
  45479. },
  45480. ]
  45481. ))
  45482. characterMakers.push(() => makeCharacter(
  45483. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45484. {
  45485. front: {
  45486. height: math.unit(3.5, "meters"),
  45487. name: "Front",
  45488. image: {
  45489. source: "./media/characters/sarzu-and-israz/front.svg",
  45490. extra: 1570/1558,
  45491. bottom: 150/1720
  45492. },
  45493. },
  45494. back: {
  45495. height: math.unit(3.5, "meters"),
  45496. name: "Back",
  45497. image: {
  45498. source: "./media/characters/sarzu-and-israz/back.svg",
  45499. extra: 1523/1509,
  45500. bottom: 132/1655
  45501. },
  45502. },
  45503. frontFemale: {
  45504. height: math.unit(3.5, "meters"),
  45505. name: "Front (Female)",
  45506. image: {
  45507. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45508. extra: 1570/1558,
  45509. bottom: 150/1720
  45510. },
  45511. },
  45512. frontHerm: {
  45513. height: math.unit(3.5, "meters"),
  45514. name: "Front (Herm)",
  45515. image: {
  45516. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45517. extra: 1570/1558,
  45518. bottom: 150/1720
  45519. },
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Normal",
  45525. height: math.unit(3.5, "meters"),
  45526. default: true,
  45527. },
  45528. {
  45529. name: "Macro",
  45530. height: math.unit(65.5, "meters"),
  45531. },
  45532. ],
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45536. {
  45537. front: {
  45538. height: math.unit(6, "feet"),
  45539. weight: math.unit(250, "lb"),
  45540. name: "Front",
  45541. image: {
  45542. source: "./media/characters/zenimma/front.svg",
  45543. extra: 1346/1320,
  45544. bottom: 58/1404
  45545. }
  45546. },
  45547. back: {
  45548. height: math.unit(6, "feet"),
  45549. weight: math.unit(250, "lb"),
  45550. name: "Back",
  45551. image: {
  45552. source: "./media/characters/zenimma/back.svg",
  45553. extra: 1324/1308,
  45554. bottom: 44/1368
  45555. }
  45556. },
  45557. dick: {
  45558. height: math.unit(1.44, "feet"),
  45559. name: "Dick",
  45560. image: {
  45561. source: "./media/characters/zenimma/dick.svg"
  45562. }
  45563. },
  45564. },
  45565. [
  45566. {
  45567. name: "Canon Height",
  45568. height: math.unit(66, "miles"),
  45569. default: true
  45570. },
  45571. ]
  45572. ))
  45573. characterMakers.push(() => makeCharacter(
  45574. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45575. {
  45576. nude: {
  45577. height: math.unit(6, "feet"),
  45578. weight: math.unit(150, "lb"),
  45579. name: "Nude",
  45580. image: {
  45581. source: "./media/characters/shavon/nude.svg",
  45582. extra: 1242/1096,
  45583. bottom: 98/1340
  45584. }
  45585. },
  45586. dressed: {
  45587. height: math.unit(6, "feet"),
  45588. weight: math.unit(150, "lb"),
  45589. name: "Dressed",
  45590. image: {
  45591. source: "./media/characters/shavon/dressed.svg",
  45592. extra: 1242/1096,
  45593. bottom: 98/1340
  45594. }
  45595. },
  45596. },
  45597. [
  45598. {
  45599. name: "Macro",
  45600. height: math.unit(255, "feet"),
  45601. default: true
  45602. },
  45603. ]
  45604. ))
  45605. characterMakers.push(() => makeCharacter(
  45606. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45607. {
  45608. front: {
  45609. height: math.unit(6, "feet"),
  45610. name: "Front",
  45611. image: {
  45612. source: "./media/characters/steph/front.svg",
  45613. extra: 1430/1330,
  45614. bottom: 54/1484
  45615. }
  45616. },
  45617. },
  45618. [
  45619. {
  45620. name: "Normal",
  45621. height: math.unit(6, "feet"),
  45622. default: true
  45623. },
  45624. ]
  45625. ))
  45626. characterMakers.push(() => makeCharacter(
  45627. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45628. {
  45629. front: {
  45630. height: math.unit(9, "feet"),
  45631. weight: math.unit(400, "lb"),
  45632. name: "Front",
  45633. image: {
  45634. source: "./media/characters/kil'aman/front.svg",
  45635. extra: 1210/1159,
  45636. bottom: 109/1319
  45637. }
  45638. },
  45639. head: {
  45640. height: math.unit(2.14, "feet"),
  45641. name: "Head",
  45642. image: {
  45643. source: "./media/characters/kil'aman/head.svg"
  45644. }
  45645. },
  45646. maw: {
  45647. height: math.unit(1.21, "feet"),
  45648. name: "Maw",
  45649. image: {
  45650. source: "./media/characters/kil'aman/maw.svg"
  45651. }
  45652. },
  45653. foot: {
  45654. height: math.unit(1.7, "feet"),
  45655. name: "Foot",
  45656. image: {
  45657. source: "./media/characters/kil'aman/foot.svg"
  45658. }
  45659. },
  45660. dick: {
  45661. height: math.unit(2.1, "feet"),
  45662. name: "Dick",
  45663. image: {
  45664. source: "./media/characters/kil'aman/dick.svg"
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(9, "feet")
  45672. },
  45673. {
  45674. name: "Canon Height",
  45675. height: math.unit(10, "miles"),
  45676. default: true
  45677. },
  45678. {
  45679. name: "Maximum",
  45680. height: math.unit(6e9, "miles")
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45686. {
  45687. front: {
  45688. height: math.unit(90, "feet"),
  45689. weight: math.unit(675000, "lb"),
  45690. name: "Front",
  45691. image: {
  45692. source: "./media/characters/qadan/front.svg",
  45693. extra: 1012/1004,
  45694. bottom: 78/1090
  45695. }
  45696. },
  45697. back: {
  45698. height: math.unit(90, "feet"),
  45699. weight: math.unit(675000, "lb"),
  45700. name: "Back",
  45701. image: {
  45702. source: "./media/characters/qadan/back.svg",
  45703. extra: 1042/1031,
  45704. bottom: 55/1097
  45705. }
  45706. },
  45707. armored: {
  45708. height: math.unit(90, "feet"),
  45709. weight: math.unit(675000, "lb"),
  45710. name: "Armored",
  45711. image: {
  45712. source: "./media/characters/qadan/armored.svg",
  45713. extra: 1047/1037,
  45714. bottom: 48/1095
  45715. }
  45716. },
  45717. },
  45718. [
  45719. {
  45720. name: "Normal",
  45721. height: math.unit(90, "feet"),
  45722. default: true
  45723. },
  45724. ]
  45725. ))
  45726. //characters
  45727. function makeCharacters() {
  45728. const results = [];
  45729. characterMakers.forEach(character => {
  45730. results.push(character());
  45731. });
  45732. return results;
  45733. }