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.
 
 
 

47912 lines
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon0"]
  1882. },
  1883. }
  1884. //species
  1885. function getSpeciesInfo(speciesList) {
  1886. let result = new Set();
  1887. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1888. result.add(entry)
  1889. });
  1890. return Array.from(result);
  1891. };
  1892. function getSpeciesInfoHelper(species) {
  1893. if (!speciesData[species]) {
  1894. console.warn(species + " doesn't exist");
  1895. return [];
  1896. }
  1897. if (speciesData[species].parents) {
  1898. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1899. } else {
  1900. return [species];
  1901. }
  1902. }
  1903. characterMakers.push(() => makeCharacter(
  1904. {
  1905. name: "Fen",
  1906. species: ["crux"],
  1907. description: {
  1908. title: "Bio",
  1909. text: "Very furry. Sheds on everything."
  1910. },
  1911. tags: [
  1912. "anthro",
  1913. "goo"
  1914. ]
  1915. },
  1916. {
  1917. front: {
  1918. height: math.unit(12, "feet"),
  1919. weight: math.unit(2400, "lb"),
  1920. name: "Front",
  1921. image: {
  1922. source: "./media/characters/fen/front.svg",
  1923. extra: 1804/1562,
  1924. bottom: 205/2009
  1925. }
  1926. },
  1927. diving: {
  1928. height: math.unit(4.9, "meters"),
  1929. weight: math.unit(2400, "lb"),
  1930. name: "Diving",
  1931. image: {
  1932. source: "./media/characters/fen/diving.svg"
  1933. }
  1934. },
  1935. goo: {
  1936. height: math.unit(12, "feet"),
  1937. weight: math.unit(3000, "lb"),
  1938. capacity: math.unit(6, "people"),
  1939. name: "Goo",
  1940. image: {
  1941. source: "./media/characters/fen/goo.svg",
  1942. extra: 1307/1071,
  1943. bottom: 134/1441
  1944. }
  1945. },
  1946. maw: {
  1947. height: math.unit(5.03, "feet"),
  1948. name: "Maw",
  1949. image: {
  1950. source: "./media/characters/fen/maw.svg"
  1951. }
  1952. },
  1953. gooCeiling: {
  1954. height: math.unit(6.6, "feet"),
  1955. weight: math.unit(3000, "lb"),
  1956. capacity: math.unit(6, "people"),
  1957. name: "Goo (Ceiling)",
  1958. image: {
  1959. source: "./media/characters/fen/goo-ceiling.svg"
  1960. }
  1961. },
  1962. back: {
  1963. height: math.unit(12, "feet"),
  1964. weight: math.unit(2400, "lb"),
  1965. name: "Back",
  1966. image: {
  1967. source: "./media/characters/fen/back.svg",
  1968. },
  1969. info: {
  1970. description: {
  1971. mode: "append",
  1972. text: "\n\nHe is not currently looking at you."
  1973. }
  1974. }
  1975. },
  1976. full: {
  1977. height: math.unit(1.6, "meter"),
  1978. weight: math.unit(3200, "lb"),
  1979. name: "Full",
  1980. image: {
  1981. source: "./media/characters/fen/full.svg",
  1982. extra: 1133/859,
  1983. bottom: 145/1278
  1984. },
  1985. info: {
  1986. description: {
  1987. mode: "append",
  1988. text: "\n\nMunch."
  1989. }
  1990. }
  1991. },
  1992. gooLounging: {
  1993. height: math.unit(4.53, "feet"),
  1994. weight: math.unit(3000, "lb"),
  1995. capacity: math.unit(6, "people"),
  1996. name: "Goo (Lounging)",
  1997. image: {
  1998. source: "./media/characters/fen/goo.svg",
  1999. bottom: 116 / 613
  2000. }
  2001. },
  2002. lounging: {
  2003. height: math.unit(10.52, "feet"),
  2004. weight: math.unit(2400, "lb"),
  2005. name: "Lounging",
  2006. image: {
  2007. source: "./media/characters/fen/lounging.svg"
  2008. }
  2009. },
  2010. },
  2011. [
  2012. {
  2013. name: "Small",
  2014. height: math.unit(2.2428, "meter")
  2015. },
  2016. {
  2017. name: "Normal",
  2018. height: math.unit(12, "feet"),
  2019. default: true,
  2020. },
  2021. {
  2022. name: "Big",
  2023. height: math.unit(20, "feet")
  2024. },
  2025. {
  2026. name: "Minimacro",
  2027. height: math.unit(40, "feet"),
  2028. info: {
  2029. description: {
  2030. mode: "append",
  2031. text: "\n\nTOO DAMN BIG"
  2032. }
  2033. }
  2034. },
  2035. {
  2036. name: "Macro",
  2037. height: math.unit(100, "feet"),
  2038. info: {
  2039. description: {
  2040. mode: "append",
  2041. text: "\n\nTOO DAMN BIG"
  2042. }
  2043. }
  2044. },
  2045. {
  2046. name: "Megamacro",
  2047. height: math.unit(2, "miles")
  2048. },
  2049. {
  2050. name: "Gigamacro",
  2051. height: math.unit(10, "earths")
  2052. },
  2053. ]
  2054. ))
  2055. characterMakers.push(() => makeCharacter(
  2056. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2057. {
  2058. front: {
  2059. height: math.unit(183, "cm"),
  2060. weight: math.unit(80, "kg"),
  2061. name: "Front",
  2062. image: {
  2063. source: "./media/characters/sofia-fluttertail/front.svg",
  2064. bottom: 0.01,
  2065. extra: 2154 / 2081
  2066. }
  2067. },
  2068. frontAlt: {
  2069. height: math.unit(183, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Front (alt)",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2074. }
  2075. },
  2076. back: {
  2077. height: math.unit(183, "cm"),
  2078. weight: math.unit(80, "kg"),
  2079. name: "Back",
  2080. image: {
  2081. source: "./media/characters/sofia-fluttertail/back.svg"
  2082. }
  2083. },
  2084. kneeling: {
  2085. height: math.unit(125, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Kneeling",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2090. extra: 1033 / 977,
  2091. bottom: 23.7 / 1057
  2092. }
  2093. },
  2094. maw: {
  2095. height: math.unit(183 / 5, "cm"),
  2096. name: "Maw",
  2097. image: {
  2098. source: "./media/characters/sofia-fluttertail/maw.svg"
  2099. }
  2100. },
  2101. mawcloseup: {
  2102. height: math.unit(183 / 5 * 0.41, "cm"),
  2103. name: "Maw (Closeup)",
  2104. image: {
  2105. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2106. }
  2107. },
  2108. paws: {
  2109. height: math.unit(1.17, "feet"),
  2110. name: "Paws",
  2111. image: {
  2112. source: "./media/characters/sofia-fluttertail/paws.svg",
  2113. extra: 851 / 851,
  2114. bottom: 17 / 868
  2115. }
  2116. },
  2117. },
  2118. [
  2119. {
  2120. name: "Normal",
  2121. height: math.unit(1.83, "meter")
  2122. },
  2123. {
  2124. name: "Size Thief",
  2125. height: math.unit(18, "feet")
  2126. },
  2127. {
  2128. name: "50 Foot Collie",
  2129. height: math.unit(50, "feet")
  2130. },
  2131. {
  2132. name: "Macro",
  2133. height: math.unit(96, "feet"),
  2134. default: true
  2135. },
  2136. {
  2137. name: "Megamerger",
  2138. height: math.unit(650, "feet")
  2139. },
  2140. ]
  2141. ))
  2142. characterMakers.push(() => makeCharacter(
  2143. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2144. {
  2145. front: {
  2146. height: math.unit(7, "feet"),
  2147. weight: math.unit(100, "kg"),
  2148. name: "Front",
  2149. image: {
  2150. source: "./media/characters/march/front.svg",
  2151. extra: 1992/1851,
  2152. bottom: 39/2031
  2153. }
  2154. },
  2155. foot: {
  2156. height: math.unit(0.9, "feet"),
  2157. name: "Foot",
  2158. image: {
  2159. source: "./media/characters/march/foot.svg"
  2160. }
  2161. },
  2162. },
  2163. [
  2164. {
  2165. name: "Normal",
  2166. height: math.unit(7.9, "feet")
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(220, "meters")
  2171. },
  2172. {
  2173. name: "Megamacro",
  2174. height: math.unit(2.98, "km"),
  2175. default: true
  2176. },
  2177. {
  2178. name: "Gigamacro",
  2179. height: math.unit(15963, "km")
  2180. },
  2181. {
  2182. name: "Teramacro",
  2183. height: math.unit(2980000000, "km")
  2184. },
  2185. {
  2186. name: "Examacro",
  2187. height: math.unit(250, "parsecs")
  2188. },
  2189. ]
  2190. ))
  2191. characterMakers.push(() => makeCharacter(
  2192. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2193. {
  2194. front: {
  2195. height: math.unit(6, "feet"),
  2196. weight: math.unit(60, "kg"),
  2197. name: "Front",
  2198. image: {
  2199. source: "./media/characters/noir/front.svg",
  2200. extra: 1,
  2201. bottom: 0.032
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(6.6, "feet")
  2209. },
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(500, "feet")
  2213. },
  2214. {
  2215. name: "Megamacro",
  2216. height: math.unit(2.5, "km"),
  2217. default: true
  2218. },
  2219. {
  2220. name: "Gigamacro",
  2221. height: math.unit(22500, "km")
  2222. },
  2223. {
  2224. name: "Teramacro",
  2225. height: math.unit(2500000000, "km")
  2226. },
  2227. {
  2228. name: "Examacro",
  2229. height: math.unit(200, "parsecs")
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/okuri/front.svg",
  2242. extra: 1,
  2243. bottom: 0.037
  2244. }
  2245. },
  2246. back: {
  2247. height: math.unit(7, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Back",
  2250. image: {
  2251. source: "./media/characters/okuri/back.svg",
  2252. extra: 1,
  2253. bottom: 0.007
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Megamacro",
  2260. height: math.unit(100, "miles"),
  2261. default: true
  2262. },
  2263. ]
  2264. ))
  2265. characterMakers.push(() => makeCharacter(
  2266. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2267. {
  2268. front: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/manny/front.svg",
  2274. extra: 1,
  2275. bottom: 0.06
  2276. }
  2277. },
  2278. back: {
  2279. height: math.unit(7, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Back",
  2282. image: {
  2283. source: "./media/characters/manny/back.svg",
  2284. extra: 1,
  2285. bottom: 0.014
  2286. }
  2287. },
  2288. },
  2289. [
  2290. {
  2291. name: "Normal",
  2292. height: math.unit(7, "feet"),
  2293. },
  2294. {
  2295. name: "Macro",
  2296. height: math.unit(78, "feet"),
  2297. default: true
  2298. },
  2299. {
  2300. name: "Macro+",
  2301. height: math.unit(300, "meters")
  2302. },
  2303. {
  2304. name: "Macro++",
  2305. height: math.unit(2400, "meters")
  2306. },
  2307. {
  2308. name: "Megamacro",
  2309. height: math.unit(5167, "meters")
  2310. },
  2311. {
  2312. name: "Gigamacro",
  2313. height: math.unit(41769, "miles")
  2314. },
  2315. ]
  2316. ))
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2319. {
  2320. front: {
  2321. height: math.unit(7, "feet"),
  2322. weight: math.unit(100, "kg"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/adake/front-1.svg"
  2326. }
  2327. },
  2328. frontAlt: {
  2329. height: math.unit(7, "feet"),
  2330. weight: math.unit(100, "kg"),
  2331. name: "Front (Alt)",
  2332. image: {
  2333. source: "./media/characters/adake/front-2.svg",
  2334. extra: 1,
  2335. bottom: 0.01
  2336. }
  2337. },
  2338. back: {
  2339. height: math.unit(7, "feet"),
  2340. weight: math.unit(100, "kg"),
  2341. name: "Back",
  2342. image: {
  2343. source: "./media/characters/adake/back.svg",
  2344. }
  2345. },
  2346. kneel: {
  2347. height: math.unit(5.385, "feet"),
  2348. weight: math.unit(100, "kg"),
  2349. name: "Kneeling",
  2350. image: {
  2351. source: "./media/characters/adake/kneel.svg",
  2352. bottom: 0.052
  2353. }
  2354. },
  2355. },
  2356. [
  2357. {
  2358. name: "Normal",
  2359. height: math.unit(7, "feet"),
  2360. },
  2361. {
  2362. name: "Macro",
  2363. height: math.unit(78, "feet"),
  2364. default: true
  2365. },
  2366. {
  2367. name: "Macro+",
  2368. height: math.unit(300, "meters")
  2369. },
  2370. {
  2371. name: "Macro++",
  2372. height: math.unit(2400, "meters")
  2373. },
  2374. {
  2375. name: "Megamacro",
  2376. height: math.unit(5167, "meters")
  2377. },
  2378. {
  2379. name: "Gigamacro",
  2380. height: math.unit(41769, "miles")
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(1.65, "meters"),
  2389. weight: math.unit(50, "kg"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/elijah/front.svg",
  2393. extra: 858 / 830,
  2394. bottom: 95.5 / 953.8559
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(1.65, "meters"),
  2399. weight: math.unit(50, "kg"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/elijah/back.svg",
  2403. extra: 895 / 850,
  2404. bottom: 5.3 / 897.956
  2405. }
  2406. },
  2407. frontNsfw: {
  2408. height: math.unit(1.65, "meters"),
  2409. weight: math.unit(50, "kg"),
  2410. name: "Front (NSFW)",
  2411. image: {
  2412. source: "./media/characters/elijah/front-nsfw.svg",
  2413. extra: 858 / 830,
  2414. bottom: 95.5 / 953.8559
  2415. }
  2416. },
  2417. backNsfw: {
  2418. height: math.unit(1.65, "meters"),
  2419. weight: math.unit(50, "kg"),
  2420. name: "Back (NSFW)",
  2421. image: {
  2422. source: "./media/characters/elijah/back-nsfw.svg",
  2423. extra: 895 / 850,
  2424. bottom: 5.3 / 897.956
  2425. }
  2426. },
  2427. dick: {
  2428. height: math.unit(1, "feet"),
  2429. name: "Dick",
  2430. image: {
  2431. source: "./media/characters/elijah/dick.svg"
  2432. }
  2433. },
  2434. beakOpen: {
  2435. height: math.unit(1.25, "feet"),
  2436. name: "Beak (Open)",
  2437. image: {
  2438. source: "./media/characters/elijah/beak-open.svg"
  2439. }
  2440. },
  2441. beakShut: {
  2442. height: math.unit(1.25, "feet"),
  2443. name: "Beak (Shut)",
  2444. image: {
  2445. source: "./media/characters/elijah/beak-shut.svg"
  2446. }
  2447. },
  2448. footFlexing: {
  2449. height: math.unit(1.61, "feet"),
  2450. name: "Foot (Flexing)",
  2451. image: {
  2452. source: "./media/characters/elijah/foot-flexing.svg"
  2453. }
  2454. },
  2455. footStepping: {
  2456. height: math.unit(1.44, "feet"),
  2457. name: "Foot (Stepping)",
  2458. image: {
  2459. source: "./media/characters/elijah/foot-stepping.svg"
  2460. }
  2461. },
  2462. plantigradeLeg: {
  2463. height: math.unit(2.34, "feet"),
  2464. name: "Plantigrade Leg",
  2465. image: {
  2466. source: "./media/characters/elijah/plantigrade-leg.svg"
  2467. }
  2468. },
  2469. plantigradeFootLeft: {
  2470. height: math.unit(0.9, "feet"),
  2471. name: "Plantigrade Foot (Left)",
  2472. image: {
  2473. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2474. }
  2475. },
  2476. plantigradeFootRight: {
  2477. height: math.unit(0.9, "feet"),
  2478. name: "Plantigrade Foot (Right)",
  2479. image: {
  2480. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2481. }
  2482. },
  2483. },
  2484. [
  2485. {
  2486. name: "Normal",
  2487. height: math.unit(1.65, "meters")
  2488. },
  2489. {
  2490. name: "Macro",
  2491. height: math.unit(55, "meters"),
  2492. default: true
  2493. },
  2494. {
  2495. name: "Macro+",
  2496. height: math.unit(105, "meters")
  2497. },
  2498. ]
  2499. ))
  2500. characterMakers.push(() => makeCharacter(
  2501. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2502. {
  2503. front: {
  2504. height: math.unit(7 + 2/12, "feet"),
  2505. weight: math.unit(320, "kg"),
  2506. name: "Front",
  2507. image: {
  2508. source: "./media/characters/rai/front.svg",
  2509. extra: 1802/1696,
  2510. bottom: 68/1870
  2511. }
  2512. },
  2513. frontDressed: {
  2514. height: math.unit(7 + 2/12, "feet"),
  2515. weight: math.unit(320, "kg"),
  2516. name: "Front (Dressed)",
  2517. image: {
  2518. source: "./media/characters/rai/front-dressed.svg",
  2519. extra: 1802/1696,
  2520. bottom: 68/1870
  2521. }
  2522. },
  2523. side: {
  2524. height: math.unit(7 + 2/12, "feet"),
  2525. weight: math.unit(320, "kg"),
  2526. name: "Side",
  2527. image: {
  2528. source: "./media/characters/rai/side.svg",
  2529. extra: 1789/1710,
  2530. bottom: 115/1904
  2531. }
  2532. },
  2533. back: {
  2534. height: math.unit(7 + 2/12, "feet"),
  2535. weight: math.unit(320, "kg"),
  2536. name: "Back",
  2537. image: {
  2538. source: "./media/characters/rai/back.svg",
  2539. extra: 1770/1707,
  2540. bottom: 28/1798
  2541. }
  2542. },
  2543. feral: {
  2544. height: math.unit(9.5, "feet"),
  2545. weight: math.unit(640, "kg"),
  2546. name: "Feral",
  2547. image: {
  2548. source: "./media/characters/rai/feral.svg",
  2549. extra: 945/553,
  2550. bottom: 176/1121
  2551. }
  2552. },
  2553. dragon: {
  2554. height: math.unit(23, "feet"),
  2555. weight: math.unit(50000, "lb"),
  2556. name: "Dragon",
  2557. image: {
  2558. source: "./media/characters/rai/dragon.svg",
  2559. extra: 2498 / 2030,
  2560. bottom: 85.2 / 2584
  2561. }
  2562. },
  2563. maw: {
  2564. height: math.unit(1.69, "feet"),
  2565. name: "Maw",
  2566. image: {
  2567. source: "./media/characters/rai/maw.svg"
  2568. }
  2569. },
  2570. },
  2571. [
  2572. {
  2573. name: "Normal",
  2574. height: math.unit(7 + 2/12, "feet")
  2575. },
  2576. {
  2577. name: "Big",
  2578. height: math.unit(11, "feet")
  2579. },
  2580. {
  2581. name: "Macro",
  2582. height: math.unit(302, "feet"),
  2583. default: true
  2584. },
  2585. ]
  2586. ))
  2587. characterMakers.push(() => makeCharacter(
  2588. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2589. {
  2590. frontDressed: {
  2591. height: math.unit(216, "feet"),
  2592. weight: math.unit(7000000, "lb"),
  2593. name: "Front (Dressed)",
  2594. image: {
  2595. source: "./media/characters/jazzy/front-dressed.svg",
  2596. extra: 2738 / 2651,
  2597. bottom: 41.8 / 2786
  2598. }
  2599. },
  2600. backDressed: {
  2601. height: math.unit(216, "feet"),
  2602. weight: math.unit(7000000, "lb"),
  2603. name: "Back (Dressed)",
  2604. image: {
  2605. source: "./media/characters/jazzy/back-dressed.svg",
  2606. extra: 2775 / 2673,
  2607. bottom: 36.8 / 2817
  2608. }
  2609. },
  2610. front: {
  2611. height: math.unit(216, "feet"),
  2612. weight: math.unit(7000000, "lb"),
  2613. name: "Front",
  2614. image: {
  2615. source: "./media/characters/jazzy/front.svg",
  2616. extra: 2738 / 2651,
  2617. bottom: 41.8 / 2786
  2618. }
  2619. },
  2620. back: {
  2621. height: math.unit(216, "feet"),
  2622. weight: math.unit(7000000, "lb"),
  2623. name: "Back",
  2624. image: {
  2625. source: "./media/characters/jazzy/back.svg",
  2626. extra: 2775 / 2673,
  2627. bottom: 36.8 / 2817
  2628. }
  2629. },
  2630. maw: {
  2631. height: math.unit(20, "feet"),
  2632. name: "Maw",
  2633. image: {
  2634. source: "./media/characters/jazzy/maw.svg"
  2635. }
  2636. },
  2637. paws: {
  2638. height: math.unit(27.5, "feet"),
  2639. name: "Paws",
  2640. image: {
  2641. source: "./media/characters/jazzy/paws.svg"
  2642. }
  2643. },
  2644. eye: {
  2645. height: math.unit(4.4, "feet"),
  2646. name: "Eye",
  2647. image: {
  2648. source: "./media/characters/jazzy/eye.svg"
  2649. }
  2650. },
  2651. droneOffense: {
  2652. height: math.unit(9.5, "inches"),
  2653. name: "Drone (Offense)",
  2654. image: {
  2655. source: "./media/characters/jazzy/drone-offense.svg"
  2656. }
  2657. },
  2658. droneRecon: {
  2659. height: math.unit(9.5, "inches"),
  2660. name: "Drone (Recon)",
  2661. image: {
  2662. source: "./media/characters/jazzy/drone-recon.svg"
  2663. }
  2664. },
  2665. droneDefense: {
  2666. height: math.unit(9.5, "inches"),
  2667. name: "Drone (Defense)",
  2668. image: {
  2669. source: "./media/characters/jazzy/drone-defense.svg"
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(216, "feet"),
  2677. default: true
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(9 + 6/12, "feet"),
  2686. weight: math.unit(700, "lb"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/flamm/front.svg",
  2690. extra: 1751/1632,
  2691. bottom: 46/1797
  2692. }
  2693. },
  2694. buff: {
  2695. height: math.unit(9 + 6/12, "feet"),
  2696. weight: math.unit(950, "lb"),
  2697. name: "Buff",
  2698. image: {
  2699. source: "./media/characters/flamm/buff.svg",
  2700. extra: 3018/2874,
  2701. bottom: 221/3239
  2702. }
  2703. },
  2704. },
  2705. [
  2706. {
  2707. name: "Normal",
  2708. height: math.unit(9.5, "feet")
  2709. },
  2710. {
  2711. name: "Macro",
  2712. height: math.unit(200, "feet"),
  2713. default: true
  2714. },
  2715. ]
  2716. ))
  2717. characterMakers.push(() => makeCharacter(
  2718. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2719. {
  2720. front: {
  2721. height: math.unit(5 + 3/12, "feet"),
  2722. weight: math.unit(60, "kg"),
  2723. name: "Front",
  2724. image: {
  2725. source: "./media/characters/zephiro/front.svg",
  2726. extra: 2309 / 2162,
  2727. bottom: 0.069
  2728. }
  2729. },
  2730. side: {
  2731. height: math.unit(5 + 3/12, "feet"),
  2732. weight: math.unit(60, "kg"),
  2733. name: "Side",
  2734. image: {
  2735. source: "./media/characters/zephiro/side.svg",
  2736. extra: 2403 / 2279,
  2737. bottom: 0.015
  2738. }
  2739. },
  2740. back: {
  2741. height: math.unit(5 + 3/12, "feet"),
  2742. weight: math.unit(60, "kg"),
  2743. name: "Back",
  2744. image: {
  2745. source: "./media/characters/zephiro/back.svg",
  2746. extra: 2373 / 2244,
  2747. bottom: 0.013
  2748. }
  2749. },
  2750. hand: {
  2751. height: math.unit(0.68, "feet"),
  2752. name: "Hand",
  2753. image: {
  2754. source: "./media/characters/zephiro/hand.svg"
  2755. }
  2756. },
  2757. paw: {
  2758. height: math.unit(1, "feet"),
  2759. name: "Paw",
  2760. image: {
  2761. source: "./media/characters/zephiro/paw.svg"
  2762. }
  2763. },
  2764. beans: {
  2765. height: math.unit(0.93, "feet"),
  2766. name: "Beans",
  2767. image: {
  2768. source: "./media/characters/zephiro/beans.svg"
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Micro",
  2775. height: math.unit(3, "inches")
  2776. },
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(5 + 3 / 12, "feet"),
  2780. default: true
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(118, "feet")
  2785. },
  2786. ]
  2787. ))
  2788. characterMakers.push(() => makeCharacter(
  2789. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2790. {
  2791. front: {
  2792. height: math.unit(5, "feet"),
  2793. weight: math.unit(90, "kg"),
  2794. name: "Front",
  2795. image: {
  2796. source: "./media/characters/fory/front.svg",
  2797. extra: 2862 / 2674,
  2798. bottom: 180 / 3043.8
  2799. }
  2800. },
  2801. back: {
  2802. height: math.unit(5, "feet"),
  2803. weight: math.unit(90, "kg"),
  2804. name: "Back",
  2805. image: {
  2806. source: "./media/characters/fory/back.svg",
  2807. extra: 2962 / 2791,
  2808. bottom: 106 / 3071.8
  2809. }
  2810. },
  2811. foot: {
  2812. height: math.unit(2.14, "feet"),
  2813. name: "Foot",
  2814. image: {
  2815. source: "./media/characters/fory/foot.svg"
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(5, "feet")
  2823. },
  2824. {
  2825. name: "Macro",
  2826. height: math.unit(50, "feet"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Megamacro",
  2831. height: math.unit(10, "miles")
  2832. },
  2833. {
  2834. name: "Gigamacro",
  2835. height: math.unit(5, "earths")
  2836. },
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2841. {
  2842. front: {
  2843. height: math.unit(7, "feet"),
  2844. weight: math.unit(90, "kg"),
  2845. name: "Front",
  2846. image: {
  2847. source: "./media/characters/kurrikage/front.svg",
  2848. extra: 1845/1733,
  2849. bottom: 119/1964
  2850. }
  2851. },
  2852. back: {
  2853. height: math.unit(7, "feet"),
  2854. weight: math.unit(90, "kg"),
  2855. name: "Back",
  2856. image: {
  2857. source: "./media/characters/kurrikage/back.svg",
  2858. extra: 1790/1677,
  2859. bottom: 61/1851
  2860. }
  2861. },
  2862. dressed: {
  2863. height: math.unit(7, "feet"),
  2864. weight: math.unit(90, "kg"),
  2865. name: "Dressed",
  2866. image: {
  2867. source: "./media/characters/kurrikage/dressed.svg",
  2868. extra: 1845/1733,
  2869. bottom: 119/1964
  2870. }
  2871. },
  2872. foot: {
  2873. height: math.unit(1.5, "feet"),
  2874. name: "Foot",
  2875. image: {
  2876. source: "./media/characters/kurrikage/foot.svg"
  2877. }
  2878. },
  2879. staff: {
  2880. height: math.unit(6.7, "feet"),
  2881. name: "Staff",
  2882. image: {
  2883. source: "./media/characters/kurrikage/staff.svg"
  2884. }
  2885. },
  2886. peek: {
  2887. height: math.unit(1.05, "feet"),
  2888. name: "Peeking",
  2889. image: {
  2890. source: "./media/characters/kurrikage/peek.svg",
  2891. bottom: 0.08
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(12, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Big",
  2903. height: math.unit(20, "feet")
  2904. },
  2905. {
  2906. name: "Macro",
  2907. height: math.unit(500, "feet")
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(20, "miles")
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(6, "feet"),
  2920. weight: math.unit(75, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/shingo/front.svg",
  2924. extra: 1900/1825,
  2925. bottom: 82/1982
  2926. }
  2927. },
  2928. side: {
  2929. height: math.unit(6, "feet"),
  2930. weight: math.unit(75, "kg"),
  2931. name: "Side",
  2932. image: {
  2933. source: "./media/characters/shingo/side.svg",
  2934. extra: 1930/1865,
  2935. bottom: 16/1946
  2936. }
  2937. },
  2938. back: {
  2939. height: math.unit(6, "feet"),
  2940. weight: math.unit(75, "kg"),
  2941. name: "Back",
  2942. image: {
  2943. source: "./media/characters/shingo/back.svg",
  2944. extra: 1922/1852,
  2945. bottom: 16/1938
  2946. }
  2947. },
  2948. frontDressed: {
  2949. height: math.unit(6, "feet"),
  2950. weight: math.unit(150, "lb"),
  2951. name: "Front-dressed",
  2952. image: {
  2953. source: "./media/characters/shingo/front-dressed.svg",
  2954. extra: 1900/1825,
  2955. bottom: 82/1982
  2956. }
  2957. },
  2958. paw: {
  2959. height: math.unit(1.29, "feet"),
  2960. name: "Paw",
  2961. image: {
  2962. source: "./media/characters/shingo/paw.svg"
  2963. }
  2964. },
  2965. hand: {
  2966. height: math.unit(1.07, "feet"),
  2967. name: "Hand",
  2968. image: {
  2969. source: "./media/characters/shingo/hand.svg"
  2970. }
  2971. },
  2972. frontAlt: {
  2973. height: math.unit(6, "feet"),
  2974. weight: math.unit(75, "kg"),
  2975. name: "Front (Alt)",
  2976. image: {
  2977. source: "./media/characters/shingo/front-alt.svg",
  2978. extra: 3511 / 3338,
  2979. bottom: 0.005
  2980. }
  2981. },
  2982. frontAlt2: {
  2983. height: math.unit(6, "feet"),
  2984. weight: math.unit(75, "kg"),
  2985. name: "Front (Alt 2)",
  2986. image: {
  2987. source: "./media/characters/shingo/front-alt-2.svg",
  2988. extra: 706/681,
  2989. bottom: 11/717
  2990. }
  2991. },
  2992. pawAlt: {
  2993. height: math.unit(1, "feet"),
  2994. name: "Paw (Alt)",
  2995. image: {
  2996. source: "./media/characters/shingo/paw-alt.svg"
  2997. }
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Micro",
  3003. height: math.unit(4, "inches")
  3004. },
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(6, "feet"),
  3008. default: true
  3009. },
  3010. {
  3011. name: "Macro",
  3012. height: math.unit(108, "feet")
  3013. },
  3014. {
  3015. name: "Macro+",
  3016. height: math.unit(1500, "feet")
  3017. },
  3018. ]
  3019. ))
  3020. characterMakers.push(() => makeCharacter(
  3021. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3022. {
  3023. side: {
  3024. height: math.unit(6, "feet"),
  3025. weight: math.unit(75, "kg"),
  3026. name: "Side",
  3027. image: {
  3028. source: "./media/characters/aigey/side.svg"
  3029. }
  3030. },
  3031. },
  3032. [
  3033. {
  3034. name: "Macro",
  3035. height: math.unit(200, "feet"),
  3036. default: true
  3037. },
  3038. {
  3039. name: "Megamacro",
  3040. height: math.unit(100, "miles")
  3041. },
  3042. ]
  3043. )
  3044. )
  3045. characterMakers.push(() => makeCharacter(
  3046. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3047. {
  3048. front: {
  3049. height: math.unit(5 + 5 / 12, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front",
  3052. image: {
  3053. source: "./media/characters/natasha/front.svg",
  3054. extra: 859 / 824,
  3055. bottom: 23 / 879.6
  3056. }
  3057. },
  3058. frontNsfw: {
  3059. height: math.unit(5 + 5 / 12, "feet"),
  3060. weight: math.unit(75, "kg"),
  3061. name: "Front (NSFW)",
  3062. image: {
  3063. source: "./media/characters/natasha/front-nsfw.svg",
  3064. extra: 859 / 824,
  3065. bottom: 23 / 879.6
  3066. }
  3067. },
  3068. frontErect: {
  3069. height: math.unit(5 + 5 / 12, "feet"),
  3070. weight: math.unit(75, "kg"),
  3071. name: "Front (Erect)",
  3072. image: {
  3073. source: "./media/characters/natasha/front-erect.svg",
  3074. extra: 859 / 824,
  3075. bottom: 23 / 879.6
  3076. }
  3077. },
  3078. back: {
  3079. height: math.unit(5 + 5 / 12, "feet"),
  3080. weight: math.unit(75, "kg"),
  3081. name: "Back",
  3082. image: {
  3083. source: "./media/characters/natasha/back.svg",
  3084. extra: 887.9 / 852.6,
  3085. bottom: 9.7 / 896.4
  3086. }
  3087. },
  3088. backAlt: {
  3089. height: math.unit(5 + 5 / 12, "feet"),
  3090. weight: math.unit(75, "kg"),
  3091. name: "Back (Alt)",
  3092. image: {
  3093. source: "./media/characters/natasha/back-alt.svg",
  3094. extra: 1236.7 / 1192,
  3095. bottom: 22.3 / 1258.2
  3096. }
  3097. },
  3098. dick: {
  3099. height: math.unit(1.772, "feet"),
  3100. name: "Dick",
  3101. image: {
  3102. source: "./media/characters/natasha/dick.svg"
  3103. }
  3104. },
  3105. paw: {
  3106. height: math.unit(0.250, "meters"),
  3107. name: "Paw",
  3108. image: {
  3109. source: "./media/characters/natasha/paw.svg"
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(5 + 5 / 12, "feet")
  3117. },
  3118. {
  3119. name: "Large",
  3120. height: math.unit(12, "feet")
  3121. },
  3122. {
  3123. name: "Macro",
  3124. height: math.unit(100, "feet"),
  3125. default: true
  3126. },
  3127. {
  3128. name: "Macro+",
  3129. height: math.unit(260, "feet")
  3130. },
  3131. {
  3132. name: "Macro++",
  3133. height: math.unit(1, "mile")
  3134. },
  3135. ]
  3136. ))
  3137. characterMakers.push(() => makeCharacter(
  3138. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3139. {
  3140. front: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front",
  3144. image: {
  3145. source: "./media/characters/malik/front.svg"
  3146. }
  3147. },
  3148. side: {
  3149. height: math.unit(6, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Side",
  3152. image: {
  3153. source: "./media/characters/malik/side.svg",
  3154. extra: 1.1539
  3155. }
  3156. },
  3157. back: {
  3158. height: math.unit(6, "feet"),
  3159. weight: math.unit(75, "kg"),
  3160. name: "Back",
  3161. image: {
  3162. source: "./media/characters/malik/back.svg"
  3163. }
  3164. },
  3165. },
  3166. [
  3167. {
  3168. name: "Macro",
  3169. height: math.unit(156, "feet"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Macro+",
  3174. height: math.unit(1188, "feet")
  3175. },
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(75, "kg"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/sefer/front.svg",
  3187. extra: 848 / 659,
  3188. bottom: 28.3 / 876.442
  3189. }
  3190. },
  3191. back: {
  3192. height: math.unit(6, "feet"),
  3193. weight: math.unit(75, "kg"),
  3194. name: "Back",
  3195. image: {
  3196. source: "./media/characters/sefer/back.svg",
  3197. extra: 864 / 695,
  3198. bottom: 10 / 871
  3199. }
  3200. },
  3201. frontDressed: {
  3202. height: math.unit(6, "feet"),
  3203. weight: math.unit(75, "kg"),
  3204. name: "Front (Dressed)",
  3205. image: {
  3206. source: "./media/characters/sefer/front-dressed.svg",
  3207. extra: 839 / 653,
  3208. bottom: 37.6 / 878
  3209. }
  3210. },
  3211. },
  3212. [
  3213. {
  3214. name: "Normal",
  3215. height: math.unit(6, "feet"),
  3216. default: true
  3217. },
  3218. ]
  3219. ))
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3222. {
  3223. body: {
  3224. height: math.unit(2.2428, "meter"),
  3225. weight: math.unit(124.738, "kg"),
  3226. name: "Body",
  3227. image: {
  3228. extra: 1225 / 1050,
  3229. source: "./media/characters/north/front.svg"
  3230. }
  3231. }
  3232. },
  3233. [
  3234. {
  3235. name: "Micro",
  3236. height: math.unit(4, "inches")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(63, "meters")
  3241. },
  3242. {
  3243. name: "Megamacro",
  3244. height: math.unit(101, "miles"),
  3245. default: true
  3246. }
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3251. {
  3252. angled: {
  3253. height: math.unit(4, "meter"),
  3254. weight: math.unit(150, "kg"),
  3255. name: "Angled",
  3256. image: {
  3257. source: "./media/characters/talan/angled-sfw.svg",
  3258. bottom: 29 / 3734
  3259. }
  3260. },
  3261. angledNsfw: {
  3262. height: math.unit(4, "meter"),
  3263. weight: math.unit(150, "kg"),
  3264. name: "Angled (NSFW)",
  3265. image: {
  3266. source: "./media/characters/talan/angled-nsfw.svg",
  3267. bottom: 29 / 3734
  3268. }
  3269. },
  3270. frontNsfw: {
  3271. height: math.unit(4, "meter"),
  3272. weight: math.unit(150, "kg"),
  3273. name: "Front (NSFW)",
  3274. image: {
  3275. source: "./media/characters/talan/front-nsfw.svg",
  3276. bottom: 29 / 3734
  3277. }
  3278. },
  3279. sideNsfw: {
  3280. height: math.unit(4, "meter"),
  3281. weight: math.unit(150, "kg"),
  3282. name: "Side (NSFW)",
  3283. image: {
  3284. source: "./media/characters/talan/side-nsfw.svg",
  3285. bottom: 29 / 3734
  3286. }
  3287. },
  3288. back: {
  3289. height: math.unit(4, "meter"),
  3290. weight: math.unit(150, "kg"),
  3291. name: "Back",
  3292. image: {
  3293. source: "./media/characters/talan/back.svg"
  3294. }
  3295. },
  3296. dickBottom: {
  3297. height: math.unit(0.621, "meter"),
  3298. name: "Dick (Bottom)",
  3299. image: {
  3300. source: "./media/characters/talan/dick-bottom.svg"
  3301. }
  3302. },
  3303. dickTop: {
  3304. height: math.unit(0.621, "meter"),
  3305. name: "Dick (Top)",
  3306. image: {
  3307. source: "./media/characters/talan/dick-top.svg"
  3308. }
  3309. },
  3310. dickSide: {
  3311. height: math.unit(0.305, "meter"),
  3312. name: "Dick (Side)",
  3313. image: {
  3314. source: "./media/characters/talan/dick-side.svg"
  3315. }
  3316. },
  3317. dickFront: {
  3318. height: math.unit(0.305, "meter"),
  3319. name: "Dick (Front)",
  3320. image: {
  3321. source: "./media/characters/talan/dick-front.svg"
  3322. }
  3323. },
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(4, "meters")
  3329. },
  3330. {
  3331. name: "Macro",
  3332. height: math.unit(100, "meters")
  3333. },
  3334. {
  3335. name: "Megamacro",
  3336. height: math.unit(2, "miles"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Gigamacro",
  3341. height: math.unit(5000, "miles")
  3342. },
  3343. {
  3344. name: "Teramacro",
  3345. height: math.unit(100, "parsecs")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front.svg"
  3358. }
  3359. },
  3360. frontAlt: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(90, "kg"),
  3363. name: "Front (alt)",
  3364. image: {
  3365. source: "./media/characters/gael'rathus/front-alt.svg"
  3366. }
  3367. },
  3368. frontAlt2: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(90, "kg"),
  3371. name: "Front (alt 2)",
  3372. image: {
  3373. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3374. }
  3375. }
  3376. },
  3377. [
  3378. {
  3379. name: "Normal",
  3380. height: math.unit(9, "feet"),
  3381. default: true
  3382. },
  3383. {
  3384. name: "Large",
  3385. height: math.unit(25, "feet")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(0.25, "miles")
  3390. },
  3391. {
  3392. name: "Megamacro",
  3393. height: math.unit(10, "miles")
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3399. {
  3400. side: {
  3401. height: math.unit(2, "meter"),
  3402. weight: math.unit(140, "kg"),
  3403. name: "Side",
  3404. image: {
  3405. source: "./media/characters/sosha/side.svg",
  3406. bottom: 0.042
  3407. }
  3408. },
  3409. },
  3410. [
  3411. {
  3412. name: "Normal",
  3413. height: math.unit(12, "feet"),
  3414. default: true
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3420. {
  3421. side: {
  3422. height: math.unit(5 + 5 / 12, "feet"),
  3423. weight: math.unit(170, "kg"),
  3424. name: "Side",
  3425. image: {
  3426. source: "./media/characters/runnola/side.svg",
  3427. extra: 741 / 448,
  3428. bottom: 0.05
  3429. }
  3430. },
  3431. },
  3432. [
  3433. {
  3434. name: "Small",
  3435. height: math.unit(3, "feet")
  3436. },
  3437. {
  3438. name: "Normal",
  3439. height: math.unit(5 + 5 / 12, "feet"),
  3440. default: true
  3441. },
  3442. {
  3443. name: "Big",
  3444. height: math.unit(10, "feet")
  3445. },
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(2, "meter"),
  3453. weight: math.unit(50, "kg"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/kurribird/front.svg",
  3457. bottom: 0.015
  3458. }
  3459. },
  3460. frontAlt: {
  3461. height: math.unit(1.5, "meter"),
  3462. weight: math.unit(50, "kg"),
  3463. name: "Front (Alt)",
  3464. image: {
  3465. source: "./media/characters/kurribird/front-alt.svg",
  3466. extra: 1.45
  3467. }
  3468. },
  3469. },
  3470. [
  3471. {
  3472. name: "Normal",
  3473. height: math.unit(7, "feet")
  3474. },
  3475. {
  3476. name: "Big",
  3477. height: math.unit(12, "feet"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Macro",
  3482. height: math.unit(1500, "feet")
  3483. },
  3484. {
  3485. name: "Megamacro",
  3486. height: math.unit(2, "miles")
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3492. {
  3493. front: {
  3494. height: math.unit(2, "meter"),
  3495. weight: math.unit(80, "kg"),
  3496. name: "Front",
  3497. image: {
  3498. source: "./media/characters/elbial/front.svg",
  3499. extra: 1643 / 1556,
  3500. bottom: 60.2 / 1696
  3501. }
  3502. },
  3503. side: {
  3504. height: math.unit(2, "meter"),
  3505. weight: math.unit(80, "kg"),
  3506. name: "Side",
  3507. image: {
  3508. source: "./media/characters/elbial/side.svg",
  3509. extra: 1601/1528,
  3510. bottom: 97/1698
  3511. }
  3512. },
  3513. back: {
  3514. height: math.unit(2, "meter"),
  3515. weight: math.unit(80, "kg"),
  3516. name: "Back",
  3517. image: {
  3518. source: "./media/characters/elbial/back.svg",
  3519. extra: 1653/1569,
  3520. bottom: 20/1673
  3521. }
  3522. },
  3523. frontDressed: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(80, "kg"),
  3526. name: "Front (Dressed)",
  3527. image: {
  3528. source: "./media/characters/elbial/front-dressed.svg",
  3529. extra: 1638/1569,
  3530. bottom: 70/1708
  3531. }
  3532. },
  3533. genitals: {
  3534. height: math.unit(2 / 3.367, "meter"),
  3535. name: "Genitals",
  3536. image: {
  3537. source: "./media/characters/elbial/genitals.svg"
  3538. }
  3539. },
  3540. },
  3541. [
  3542. {
  3543. name: "Large",
  3544. height: math.unit(100, "feet")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(500, "feet"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Megamacro",
  3553. height: math.unit(10, "miles")
  3554. },
  3555. {
  3556. name: "Gigamacro",
  3557. height: math.unit(25000, "miles")
  3558. },
  3559. {
  3560. name: "Full-Size",
  3561. height: math.unit(8000000, "gigaparsecs")
  3562. }
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3567. {
  3568. front: {
  3569. height: math.unit(2, "meter"),
  3570. weight: math.unit(60, "kg"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/noah/front.svg"
  3574. }
  3575. },
  3576. talons: {
  3577. height: math.unit(0.315, "meter"),
  3578. name: "Talons",
  3579. image: {
  3580. source: "./media/characters/noah/talons.svg"
  3581. }
  3582. }
  3583. },
  3584. [
  3585. {
  3586. name: "Large",
  3587. height: math.unit(50, "feet")
  3588. },
  3589. {
  3590. name: "Macro",
  3591. height: math.unit(750, "feet"),
  3592. default: true
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(50, "miles")
  3597. },
  3598. {
  3599. name: "Gigamacro",
  3600. height: math.unit(100000, "miles")
  3601. },
  3602. {
  3603. name: "Full-Size",
  3604. height: math.unit(3000000000, "miles")
  3605. }
  3606. ]
  3607. ))
  3608. characterMakers.push(() => makeCharacter(
  3609. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3610. {
  3611. front: {
  3612. height: math.unit(2, "meter"),
  3613. weight: math.unit(80, "kg"),
  3614. name: "Front",
  3615. image: {
  3616. source: "./media/characters/natalya/front.svg"
  3617. }
  3618. },
  3619. back: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(80, "kg"),
  3622. name: "Back",
  3623. image: {
  3624. source: "./media/characters/natalya/back.svg"
  3625. }
  3626. }
  3627. },
  3628. [
  3629. {
  3630. name: "Normal",
  3631. height: math.unit(150, "feet"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Megamacro",
  3636. height: math.unit(5, "miles")
  3637. },
  3638. {
  3639. name: "Full-Size",
  3640. height: math.unit(600, "kiloparsecs")
  3641. }
  3642. ]
  3643. ))
  3644. characterMakers.push(() => makeCharacter(
  3645. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3646. {
  3647. front: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(50, "kg"),
  3650. name: "Front",
  3651. image: {
  3652. source: "./media/characters/erestrebah/front.svg",
  3653. extra: 1262/1162,
  3654. bottom: 96/1358
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(2, "meter"),
  3659. weight: math.unit(50, "kg"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/erestrebah/back.svg",
  3663. extra: 1257/1139,
  3664. bottom: 13/1270
  3665. }
  3666. },
  3667. wing: {
  3668. height: math.unit(2, "meter"),
  3669. weight: math.unit(50, "kg"),
  3670. name: "Wing",
  3671. image: {
  3672. source: "./media/characters/erestrebah/wing.svg",
  3673. extra: 1262/1162,
  3674. bottom: 96/1358
  3675. }
  3676. },
  3677. mouth: {
  3678. height: math.unit(0.39, "feet"),
  3679. name: "Mouth",
  3680. image: {
  3681. source: "./media/characters/erestrebah/mouth.svg"
  3682. }
  3683. }
  3684. },
  3685. [
  3686. {
  3687. name: "Normal",
  3688. height: math.unit(10, "feet")
  3689. },
  3690. {
  3691. name: "Large",
  3692. height: math.unit(50, "feet"),
  3693. default: true
  3694. },
  3695. {
  3696. name: "Macro",
  3697. height: math.unit(300, "feet")
  3698. },
  3699. {
  3700. name: "Macro+",
  3701. height: math.unit(750, "feet")
  3702. },
  3703. {
  3704. name: "Megamacro",
  3705. height: math.unit(3, "miles")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3711. {
  3712. front: {
  3713. height: math.unit(2, "meter"),
  3714. weight: math.unit(80, "kg"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/jennifer/front.svg",
  3718. bottom: 0.11,
  3719. extra: 1.16
  3720. }
  3721. },
  3722. frontAlt: {
  3723. height: math.unit(2, "meter"),
  3724. weight: math.unit(80, "kg"),
  3725. name: "Front (Alt)",
  3726. image: {
  3727. source: "./media/characters/jennifer/front-alt.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Canon Height",
  3734. height: math.unit(120, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro+",
  3739. height: math.unit(300, "feet")
  3740. },
  3741. {
  3742. name: "Megamacro",
  3743. height: math.unit(20000, "feet")
  3744. }
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(2, "meter"),
  3752. weight: math.unit(50, "kg"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/kalista/front.svg",
  3756. extra: 1314/1145,
  3757. bottom: 101/1415
  3758. }
  3759. },
  3760. back: {
  3761. height: math.unit(2, "meter"),
  3762. weight: math.unit(50, "kg"),
  3763. name: "Back",
  3764. image: {
  3765. source: "./media/characters/kalista/back.svg",
  3766. extra: 1366 / 1156,
  3767. bottom: 33.9 / 1362.78
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Uncomfortably Small",
  3774. height: math.unit(10, "feet")
  3775. },
  3776. {
  3777. name: "Small",
  3778. height: math.unit(30, "feet")
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(100, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro+",
  3787. height: math.unit(2000, "feet")
  3788. },
  3789. {
  3790. name: "True Form",
  3791. height: math.unit(8924, "miles")
  3792. }
  3793. ]
  3794. ))
  3795. characterMakers.push(() => makeCharacter(
  3796. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3797. {
  3798. front: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(120, "kg"),
  3801. name: "Front",
  3802. image: {
  3803. source: "./media/characters/ggv/front.svg"
  3804. }
  3805. },
  3806. side: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(120, "kg"),
  3809. name: "Side",
  3810. image: {
  3811. source: "./media/characters/ggv/side.svg"
  3812. }
  3813. }
  3814. },
  3815. [
  3816. {
  3817. name: "Extremely Puny",
  3818. height: math.unit(9 + 5 / 12, "feet")
  3819. },
  3820. {
  3821. name: "Horribly Small",
  3822. height: math.unit(47.7, "miles"),
  3823. default: true
  3824. },
  3825. {
  3826. name: "Reasonably Sized",
  3827. height: math.unit(25000, "parsecs")
  3828. },
  3829. {
  3830. name: "Slightly Uncompressed",
  3831. height: math.unit(7.77e31, "parsecs")
  3832. },
  3833. {
  3834. name: "Omniversal",
  3835. height: math.unit(1e300, "meters")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(2, "meter"),
  3844. weight: math.unit(75, "lb"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/napalm/front.svg"
  3848. }
  3849. },
  3850. back: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(75, "lb"),
  3853. name: "Back",
  3854. image: {
  3855. source: "./media/characters/napalm/back.svg"
  3856. }
  3857. }
  3858. },
  3859. [
  3860. {
  3861. name: "Standard",
  3862. height: math.unit(55, "feet"),
  3863. default: true
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(7 + 5 / 6, "feet"),
  3872. weight: math.unit(325, "lb"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/asana/front.svg",
  3876. extra: 1133 / 1060,
  3877. bottom: 15.2 / 1148.6
  3878. }
  3879. },
  3880. back: {
  3881. height: math.unit(7 + 5 / 6, "feet"),
  3882. weight: math.unit(325, "lb"),
  3883. name: "Back",
  3884. image: {
  3885. source: "./media/characters/asana/back.svg",
  3886. extra: 1114 / 1043,
  3887. bottom: 5 / 1120
  3888. }
  3889. },
  3890. dressedDark: {
  3891. height: math.unit(7 + 5 / 6, "feet"),
  3892. weight: math.unit(325, "lb"),
  3893. name: "Dressed (Dark)",
  3894. image: {
  3895. source: "./media/characters/asana/dressed-dark.svg",
  3896. extra: 1133 / 1060,
  3897. bottom: 15.2 / 1148.6
  3898. }
  3899. },
  3900. dressedLight: {
  3901. height: math.unit(7 + 5 / 6, "feet"),
  3902. weight: math.unit(325, "lb"),
  3903. name: "Dressed (Light)",
  3904. image: {
  3905. source: "./media/characters/asana/dressed-light.svg",
  3906. extra: 1133 / 1060,
  3907. bottom: 15.2 / 1148.6
  3908. }
  3909. },
  3910. },
  3911. [
  3912. {
  3913. name: "Standard",
  3914. height: math.unit(7 + 5 / 6, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Large",
  3919. height: math.unit(10, "meters")
  3920. },
  3921. {
  3922. name: "Macro",
  3923. height: math.unit(2500, "meters")
  3924. },
  3925. {
  3926. name: "Megamacro",
  3927. height: math.unit(5e6, "meters")
  3928. },
  3929. {
  3930. name: "Examacro",
  3931. height: math.unit(5e12, "lightyears")
  3932. },
  3933. {
  3934. name: "Max Size",
  3935. height: math.unit(1e31, "lightyears")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(2, "meter"),
  3944. weight: math.unit(60, "kg"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/ebony/front.svg",
  3948. bottom: 0.03,
  3949. extra: 1045 / 810 + 0.03
  3950. }
  3951. },
  3952. side: {
  3953. height: math.unit(2, "meter"),
  3954. weight: math.unit(60, "kg"),
  3955. name: "Side",
  3956. image: {
  3957. source: "./media/characters/ebony/side.svg",
  3958. bottom: 0.03,
  3959. extra: 1045 / 810 + 0.03
  3960. }
  3961. },
  3962. back: {
  3963. height: math.unit(2, "meter"),
  3964. weight: math.unit(60, "kg"),
  3965. name: "Back",
  3966. image: {
  3967. source: "./media/characters/ebony/back.svg",
  3968. bottom: 0.01,
  3969. extra: 1045 / 810 + 0.01
  3970. }
  3971. },
  3972. },
  3973. [
  3974. // TODO check why I did this lol
  3975. {
  3976. name: "Standard",
  3977. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Macro",
  3982. height: math.unit(200, "feet")
  3983. },
  3984. {
  3985. name: "Gigamacro",
  3986. height: math.unit(13000, "km")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(175, "lb"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/mountain/front.svg",
  3999. extra: 972 / 955,
  4000. bottom: 64 / 1036.6
  4001. }
  4002. },
  4003. back: {
  4004. height: math.unit(6, "feet"),
  4005. weight: math.unit(175, "lb"),
  4006. name: "Back",
  4007. image: {
  4008. source: "./media/characters/mountain/back.svg",
  4009. extra: 970 / 950,
  4010. bottom: 28.25 / 999
  4011. }
  4012. },
  4013. },
  4014. [
  4015. {
  4016. name: "Large",
  4017. height: math.unit(20, "meters")
  4018. },
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(300, "meters")
  4022. },
  4023. {
  4024. name: "Gigamacro",
  4025. height: math.unit(10000, "km"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Examacro",
  4030. height: math.unit(10e9, "lightyears")
  4031. }
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(8, "feet"),
  4039. weight: math.unit(500, "lb"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/rick/front.svg"
  4043. }
  4044. }
  4045. },
  4046. [
  4047. {
  4048. name: "Normal",
  4049. height: math.unit(8, "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(5, "km")
  4055. }
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/ona/front.svg"
  4067. }
  4068. },
  4069. frontAlt: {
  4070. height: math.unit(8, "feet"),
  4071. weight: math.unit(120, "lb"),
  4072. name: "Front (Alt)",
  4073. image: {
  4074. source: "./media/characters/ona/front-alt.svg"
  4075. }
  4076. },
  4077. back: {
  4078. height: math.unit(8, "feet"),
  4079. weight: math.unit(120, "lb"),
  4080. name: "Back",
  4081. image: {
  4082. source: "./media/characters/ona/back.svg"
  4083. }
  4084. },
  4085. foot: {
  4086. height: math.unit(1.1, "feet"),
  4087. name: "Foot",
  4088. image: {
  4089. source: "./media/characters/ona/foot.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Megamacro",
  4096. height: math.unit(70, "km"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(681818, "miles")
  4102. },
  4103. {
  4104. name: "Examacro",
  4105. height: math.unit(3800000, "lightyears")
  4106. },
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(12, "feet"),
  4114. weight: math.unit(3000, "lb"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/mech/front.svg",
  4118. extra: 2900 / 2770,
  4119. bottom: 110 / 3010
  4120. }
  4121. },
  4122. back: {
  4123. height: math.unit(12, "feet"),
  4124. weight: math.unit(3000, "lb"),
  4125. name: "Back",
  4126. image: {
  4127. source: "./media/characters/mech/back.svg",
  4128. extra: 3011 / 2890,
  4129. bottom: 94 / 3105
  4130. }
  4131. },
  4132. maw: {
  4133. height: math.unit(3.07, "feet"),
  4134. name: "Maw",
  4135. image: {
  4136. source: "./media/characters/mech/maw.svg"
  4137. }
  4138. },
  4139. head: {
  4140. height: math.unit(2.82, "feet"),
  4141. name: "Head",
  4142. image: {
  4143. source: "./media/characters/mech/head.svg"
  4144. }
  4145. },
  4146. dick: {
  4147. height: math.unit(1.43, "feet"),
  4148. name: "Dick",
  4149. image: {
  4150. source: "./media/characters/mech/dick.svg"
  4151. }
  4152. },
  4153. },
  4154. [
  4155. {
  4156. name: "Normal",
  4157. height: math.unit(12, "feet")
  4158. },
  4159. {
  4160. name: "Macro",
  4161. height: math.unit(300, "feet"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Macro+",
  4166. height: math.unit(1500, "feet")
  4167. },
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(1.3, "meter"),
  4175. weight: math.unit(30, "kg"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/gregory/front.svg",
  4179. }
  4180. }
  4181. },
  4182. [
  4183. {
  4184. name: "Normal",
  4185. height: math.unit(1.3, "meter"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Macro",
  4190. height: math.unit(20, "meter")
  4191. }
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4196. {
  4197. front: {
  4198. height: math.unit(2.8, "meter"),
  4199. weight: math.unit(200, "kg"),
  4200. name: "Front",
  4201. image: {
  4202. source: "./media/characters/elory/front.svg",
  4203. }
  4204. }
  4205. },
  4206. [
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(2.8, "meter"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(38, "meter")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4220. {
  4221. front: {
  4222. height: math.unit(470, "feet"),
  4223. weight: math.unit(924, "tons"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/angelpatamon/front.svg",
  4227. }
  4228. }
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(470, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Deity Size I",
  4238. height: math.unit(28651.2, "km")
  4239. },
  4240. {
  4241. name: "Deity Size II",
  4242. height: math.unit(171907.2, "km")
  4243. }
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4248. {
  4249. side: {
  4250. height: math.unit(7.2, "meter"),
  4251. weight: math.unit(8.2, "tons"),
  4252. name: "Side",
  4253. image: {
  4254. source: "./media/characters/cryae/side.svg",
  4255. extra: 3500 / 1500
  4256. }
  4257. }
  4258. },
  4259. [
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(7.2, "meter"),
  4263. default: true
  4264. }
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(6, "feet"),
  4272. weight: math.unit(175, "lb"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/xera/front.svg",
  4276. extra: 2377 / 1972,
  4277. bottom: 75.5 / 2452
  4278. }
  4279. },
  4280. side: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(175, "lb"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/xera/side.svg",
  4286. extra: 2345 / 2019,
  4287. bottom: 39.7 / 2384
  4288. }
  4289. },
  4290. back: {
  4291. height: math.unit(6, "feet"),
  4292. weight: math.unit(175, "lb"),
  4293. name: "Back",
  4294. image: {
  4295. source: "./media/characters/xera/back.svg",
  4296. extra: 2095 / 1984,
  4297. bottom: 67 / 2166
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Small",
  4304. height: math.unit(10, "feet")
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(500, "meters"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Macro+",
  4313. height: math.unit(10, "km")
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(25000, "km")
  4318. },
  4319. {
  4320. name: "Teramacro",
  4321. height: math.unit(3e6, "km")
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(6, "feet"),
  4330. weight: math.unit(175, "lb"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/nebula/front.svg",
  4334. extra: 2566 / 2362,
  4335. bottom: 81 / 2644
  4336. }
  4337. }
  4338. },
  4339. [
  4340. {
  4341. name: "Small",
  4342. height: math.unit(4.5, "meters")
  4343. },
  4344. {
  4345. name: "Macro",
  4346. height: math.unit(1500, "meters"),
  4347. default: true
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(150, "km")
  4352. },
  4353. {
  4354. name: "Gigamacro",
  4355. height: math.unit(27000, "km")
  4356. }
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(225, "lb"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/abysgar/front.svg"
  4368. }
  4369. }
  4370. },
  4371. [
  4372. {
  4373. name: "Small",
  4374. height: math.unit(4.5, "meters")
  4375. },
  4376. {
  4377. name: "Macro",
  4378. height: math.unit(1250, "meters"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "Megamacro",
  4383. height: math.unit(125, "km")
  4384. },
  4385. {
  4386. name: "Gigamacro",
  4387. height: math.unit(26000, "km")
  4388. }
  4389. ]
  4390. ))
  4391. characterMakers.push(() => makeCharacter(
  4392. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4393. {
  4394. front: {
  4395. height: math.unit(6, "feet"),
  4396. weight: math.unit(180, "lb"),
  4397. name: "Front",
  4398. image: {
  4399. source: "./media/characters/yakuz/front.svg"
  4400. }
  4401. }
  4402. },
  4403. [
  4404. {
  4405. name: "Small",
  4406. height: math.unit(5, "meters")
  4407. },
  4408. {
  4409. name: "Macro",
  4410. height: math.unit(1500, "meters"),
  4411. default: true
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(200, "km")
  4416. },
  4417. {
  4418. name: "Gigamacro",
  4419. height: math.unit(100000, "km")
  4420. }
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(6, "feet"),
  4428. weight: math.unit(175, "lb"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/mirova/front.svg",
  4432. extra: 3334 / 3071,
  4433. bottom: 42 / 3375.6
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Small",
  4440. height: math.unit(5, "meters")
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(900, "meters"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Megamacro",
  4449. height: math.unit(135, "km")
  4450. },
  4451. {
  4452. name: "Gigamacro",
  4453. height: math.unit(20000, "km")
  4454. }
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4459. {
  4460. side: {
  4461. height: math.unit(28.35, "feet"),
  4462. weight: math.unit(99.75, "tons"),
  4463. name: "Side",
  4464. image: {
  4465. source: "./media/characters/asana-mech/side.svg",
  4466. extra: 923 / 699,
  4467. bottom: 50 / 975
  4468. }
  4469. },
  4470. chaingun: {
  4471. height: math.unit(7, "feet"),
  4472. weight: math.unit(2400, "lb"),
  4473. name: "Chaingun",
  4474. image: {
  4475. source: "./media/characters/asana-mech/chaingun.svg"
  4476. }
  4477. },
  4478. laser: {
  4479. height: math.unit(7.12, "feet"),
  4480. weight: math.unit(2000, "lb"),
  4481. name: "Laser",
  4482. image: {
  4483. source: "./media/characters/asana-mech/laser.svg"
  4484. }
  4485. },
  4486. },
  4487. [
  4488. {
  4489. name: "Normal",
  4490. height: math.unit(28.35, "feet"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(2500, "feet")
  4496. },
  4497. {
  4498. name: "Megamacro",
  4499. height: math.unit(25, "miles")
  4500. },
  4501. {
  4502. name: "Examacro",
  4503. height: math.unit(6e8, "lightyears")
  4504. },
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4509. {
  4510. front: {
  4511. height: math.unit(5, "meters"),
  4512. weight: math.unit(1000, "kg"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/asche/front.svg",
  4516. extra: 1258 / 1190,
  4517. bottom: 47 / 1305
  4518. }
  4519. },
  4520. frontUnderwear: {
  4521. height: math.unit(5, "meters"),
  4522. weight: math.unit(1000, "kg"),
  4523. name: "Front (Underwear)",
  4524. image: {
  4525. source: "./media/characters/asche/front-underwear.svg",
  4526. extra: 1258 / 1190,
  4527. bottom: 47 / 1305
  4528. }
  4529. },
  4530. frontDressed: {
  4531. height: math.unit(5, "meters"),
  4532. weight: math.unit(1000, "kg"),
  4533. name: "Front (Dressed)",
  4534. image: {
  4535. source: "./media/characters/asche/front-dressed.svg",
  4536. extra: 1258 / 1190,
  4537. bottom: 47 / 1305
  4538. }
  4539. },
  4540. frontArmor: {
  4541. height: math.unit(5, "meters"),
  4542. weight: math.unit(1000, "kg"),
  4543. name: "Front (Armored)",
  4544. image: {
  4545. source: "./media/characters/asche/front-armored.svg",
  4546. extra: 1374 / 1308,
  4547. bottom: 23 / 1397
  4548. }
  4549. },
  4550. mp724: {
  4551. height: math.unit(0.96, "meters"),
  4552. weight: math.unit(38, "kg"),
  4553. name: "H&K MP724",
  4554. image: {
  4555. source: "./media/characters/asche/h&k-mp724.svg"
  4556. }
  4557. },
  4558. side: {
  4559. height: math.unit(5, "meters"),
  4560. weight: math.unit(1000, "kg"),
  4561. name: "Side",
  4562. image: {
  4563. source: "./media/characters/asche/side.svg",
  4564. extra: 1717 / 1609,
  4565. bottom: 0.005
  4566. }
  4567. },
  4568. back: {
  4569. height: math.unit(5, "meters"),
  4570. weight: math.unit(1000, "kg"),
  4571. name: "Back",
  4572. image: {
  4573. source: "./media/characters/asche/back.svg",
  4574. extra: 1570 / 1501
  4575. }
  4576. },
  4577. },
  4578. [
  4579. {
  4580. name: "DEFCON 5",
  4581. height: math.unit(5, "meters")
  4582. },
  4583. {
  4584. name: "DEFCON 4",
  4585. height: math.unit(500, "meters"),
  4586. default: true
  4587. },
  4588. {
  4589. name: "DEFCON 3",
  4590. height: math.unit(5, "km")
  4591. },
  4592. {
  4593. name: "DEFCON 2",
  4594. height: math.unit(500, "km")
  4595. },
  4596. {
  4597. name: "DEFCON 1",
  4598. height: math.unit(500000, "km")
  4599. },
  4600. {
  4601. name: "DEFCON 0",
  4602. height: math.unit(3, "gigaparsecs")
  4603. },
  4604. ]
  4605. ))
  4606. characterMakers.push(() => makeCharacter(
  4607. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4608. {
  4609. front: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front",
  4613. image: {
  4614. source: "./media/characters/gale/front.svg"
  4615. }
  4616. },
  4617. frontAlt1: {
  4618. height: math.unit(2, "meters"),
  4619. weight: math.unit(76, "kg"),
  4620. name: "Front (Alt 1)",
  4621. image: {
  4622. source: "./media/characters/gale/front-alt-1.svg"
  4623. }
  4624. },
  4625. frontAlt2: {
  4626. height: math.unit(2, "meters"),
  4627. weight: math.unit(76, "kg"),
  4628. name: "Front (Alt 2)",
  4629. image: {
  4630. source: "./media/characters/gale/front-alt-2.svg"
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(7, "feet")
  4638. },
  4639. {
  4640. name: "Macro",
  4641. height: math.unit(150, "feet"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Macro+",
  4646. height: math.unit(300, "feet")
  4647. },
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4652. {
  4653. front: {
  4654. height: math.unit(5 + 10/12, "feet"),
  4655. weight: math.unit(67, "kg"),
  4656. name: "Front",
  4657. image: {
  4658. source: "./media/characters/draylen/front.svg",
  4659. extra: 832/777,
  4660. bottom: 85/917
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(5 + 10/12, "feet")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(150, "feet"),
  4672. default: true
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(7 + 9 / 12, "feet"),
  4681. weight: math.unit(379, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/chez/front.svg"
  4685. }
  4686. },
  4687. side: {
  4688. height: math.unit(7 + 9 / 12, "feet"),
  4689. weight: math.unit(379, "lbs"),
  4690. name: "Side",
  4691. image: {
  4692. source: "./media/characters/chez/side.svg"
  4693. }
  4694. }
  4695. },
  4696. [
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(7 + 9 / 12, "feet"),
  4700. default: true
  4701. },
  4702. {
  4703. name: "God King",
  4704. height: math.unit(9750000, "meters")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(275, "lbs"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/kaylum/front.svg",
  4717. bottom: 0.01,
  4718. extra: 1166 / 1031
  4719. }
  4720. },
  4721. frontWingless: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(275, "lbs"),
  4724. name: "Front (Wingless)",
  4725. image: {
  4726. source: "./media/characters/kaylum/front-wingless.svg",
  4727. bottom: 0.01,
  4728. extra: 1117 / 1031
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(3.05, "meters")
  4736. },
  4737. {
  4738. name: "Master",
  4739. height: math.unit(5.5, "meters")
  4740. },
  4741. {
  4742. name: "Rampage",
  4743. height: math.unit(19, "meters")
  4744. },
  4745. {
  4746. name: "Macro Lite",
  4747. height: math.unit(37, "meters")
  4748. },
  4749. {
  4750. name: "Hyper Predator",
  4751. height: math.unit(61, "meters")
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(138, "meters"),
  4756. default: true
  4757. }
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(150, "lbs"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/geta/front.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Micro",
  4775. height: math.unit(3, "inches"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Normal",
  4780. height: math.unit(5 + 5 / 12, "feet")
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(300, "lbs"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/tyrnn/front.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Main Height",
  4799. height: math.unit(355, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Fave. Height",
  4804. height: math.unit(2400, "feet")
  4805. }
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(300, "lbs"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/appledectomy/front.svg"
  4817. }
  4818. }
  4819. },
  4820. [
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(2500, "feet")
  4824. },
  4825. {
  4826. name: "Megamacro",
  4827. height: math.unit(50, "miles"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Gigamacro",
  4832. height: math.unit(5000, "miles")
  4833. },
  4834. {
  4835. name: "Teramacro",
  4836. height: math.unit(250000, "miles")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(200, "lbs"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/vulpes/front.svg",
  4849. extra: 573 / 543,
  4850. bottom: 0.033
  4851. }
  4852. },
  4853. side: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(200, "lbs"),
  4856. name: "Side",
  4857. image: {
  4858. source: "./media/characters/vulpes/side.svg",
  4859. extra: 577 / 549,
  4860. bottom: 11 / 588
  4861. }
  4862. },
  4863. back: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(200, "lbs"),
  4866. name: "Back",
  4867. image: {
  4868. source: "./media/characters/vulpes/back.svg",
  4869. extra: 573 / 549,
  4870. bottom: 20 / 593
  4871. }
  4872. },
  4873. feet: {
  4874. height: math.unit(1.276, "feet"),
  4875. name: "Feet",
  4876. image: {
  4877. source: "./media/characters/vulpes/feet.svg"
  4878. }
  4879. },
  4880. maw: {
  4881. height: math.unit(1.18, "feet"),
  4882. name: "Maw",
  4883. image: {
  4884. source: "./media/characters/vulpes/maw.svg"
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Micro",
  4891. height: math.unit(2, "inches")
  4892. },
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(6.3, "feet")
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(850, "feet")
  4900. },
  4901. {
  4902. name: "Megamacro",
  4903. height: math.unit(7500, "feet"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Gigamacro",
  4908. height: math.unit(570000, "miles")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/front.svg"
  4921. }
  4922. },
  4923. side: {
  4924. height: math.unit(6, "feet"),
  4925. weight: math.unit(210, "lbs"),
  4926. name: "Side",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/side.svg"
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(210, "lbs"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/rain-fallen/back.svg"
  4937. }
  4938. },
  4939. feral: {
  4940. height: math.unit(9, "feet"),
  4941. weight: math.unit(700, "lbs"),
  4942. name: "Feral",
  4943. image: {
  4944. source: "./media/characters/rain-fallen/feral.svg"
  4945. }
  4946. },
  4947. },
  4948. [
  4949. {
  4950. name: "Meddling with Mortals",
  4951. height: math.unit(8 + 8/12, "feet")
  4952. },
  4953. {
  4954. name: "Normal",
  4955. height: math.unit(5, "meter")
  4956. },
  4957. {
  4958. name: "Macro",
  4959. height: math.unit(150, "meter"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Megamacro",
  4964. height: math.unit(278e6, "meter")
  4965. },
  4966. {
  4967. name: "Gigamacro",
  4968. height: math.unit(2e9, "meter")
  4969. },
  4970. {
  4971. name: "Teramacro",
  4972. height: math.unit(8e12, "meter")
  4973. },
  4974. {
  4975. name: "Devourer",
  4976. height: math.unit(14, "zettameters")
  4977. },
  4978. {
  4979. name: "Scarlet King",
  4980. height: math.unit(18, "yottameters")
  4981. },
  4982. {
  4983. name: "Void",
  4984. height: math.unit(1e88, "yottameters")
  4985. }
  4986. ]
  4987. ))
  4988. characterMakers.push(() => makeCharacter(
  4989. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4990. {
  4991. standing: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(180, "lbs"),
  4994. name: "Standing",
  4995. image: {
  4996. source: "./media/characters/zaakira/standing.svg",
  4997. extra: 1599/1504,
  4998. bottom: 39/1638
  4999. }
  5000. },
  5001. laying: {
  5002. height: math.unit(3, "feet"),
  5003. weight: math.unit(180, "lbs"),
  5004. name: "Laying",
  5005. image: {
  5006. source: "./media/characters/zaakira/laying.svg"
  5007. }
  5008. },
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(12, "feet")
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(279, "feet"),
  5018. default: true
  5019. }
  5020. ]
  5021. ))
  5022. characterMakers.push(() => makeCharacter(
  5023. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5024. {
  5025. femSfw: {
  5026. height: math.unit(8, "feet"),
  5027. weight: math.unit(350, "lb"),
  5028. name: "Fem",
  5029. image: {
  5030. source: "./media/characters/sigvald/fem-sfw.svg",
  5031. extra: 182 / 164,
  5032. bottom: 8.7 / 190.5
  5033. }
  5034. },
  5035. femNsfw: {
  5036. height: math.unit(8, "feet"),
  5037. weight: math.unit(350, "lb"),
  5038. name: "Fem (NSFW)",
  5039. image: {
  5040. source: "./media/characters/sigvald/fem-nsfw.svg",
  5041. extra: 182 / 164,
  5042. bottom: 8.7 / 190.5
  5043. }
  5044. },
  5045. maleNsfw: {
  5046. height: math.unit(8, "feet"),
  5047. weight: math.unit(350, "lb"),
  5048. name: "Male (NSFW)",
  5049. image: {
  5050. source: "./media/characters/sigvald/male-nsfw.svg",
  5051. extra: 182 / 164,
  5052. bottom: 8.7 / 190.5
  5053. }
  5054. },
  5055. hermNsfw: {
  5056. height: math.unit(8, "feet"),
  5057. weight: math.unit(350, "lb"),
  5058. name: "Herm (NSFW)",
  5059. image: {
  5060. source: "./media/characters/sigvald/herm-nsfw.svg",
  5061. extra: 182 / 164,
  5062. bottom: 8.7 / 190.5
  5063. }
  5064. },
  5065. dick: {
  5066. height: math.unit(2.36, "feet"),
  5067. name: "Dick",
  5068. image: {
  5069. source: "./media/characters/sigvald/dick.svg"
  5070. }
  5071. },
  5072. eye: {
  5073. height: math.unit(0.31, "feet"),
  5074. name: "Eye",
  5075. image: {
  5076. source: "./media/characters/sigvald/eye.svg"
  5077. }
  5078. },
  5079. mouth: {
  5080. height: math.unit(0.92, "feet"),
  5081. name: "Mouth",
  5082. image: {
  5083. source: "./media/characters/sigvald/mouth.svg"
  5084. }
  5085. },
  5086. paws: {
  5087. height: math.unit(2.2, "feet"),
  5088. name: "Paws",
  5089. image: {
  5090. source: "./media/characters/sigvald/paws.svg"
  5091. }
  5092. }
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(8, "feet")
  5098. },
  5099. {
  5100. name: "Large",
  5101. height: math.unit(12, "feet")
  5102. },
  5103. {
  5104. name: "Larger",
  5105. height: math.unit(20, "feet")
  5106. },
  5107. {
  5108. name: "Macro",
  5109. height: math.unit(150, "feet")
  5110. },
  5111. {
  5112. name: "Macro+",
  5113. height: math.unit(200, "feet"),
  5114. default: true
  5115. },
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5120. {
  5121. side: {
  5122. height: math.unit(12, "feet"),
  5123. weight: math.unit(2000, "kg"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/scott/side.svg",
  5127. extra: 754 / 724,
  5128. bottom: 0.069
  5129. }
  5130. },
  5131. upright: {
  5132. height: math.unit(12, "feet"),
  5133. weight: math.unit(2000, "kg"),
  5134. name: "Upright",
  5135. image: {
  5136. source: "./media/characters/scott/upright.svg",
  5137. extra: 3881 / 3722,
  5138. bottom: 0.05
  5139. }
  5140. },
  5141. },
  5142. [
  5143. {
  5144. name: "Normal",
  5145. height: math.unit(12, "feet"),
  5146. default: true
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5152. {
  5153. side: {
  5154. height: math.unit(8, "meters"),
  5155. weight: math.unit(84755, "lbs"),
  5156. name: "Side",
  5157. image: {
  5158. source: "./media/characters/tobias/side.svg",
  5159. extra: 1474 / 1096,
  5160. bottom: 38.9 / 1513.1235
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(8, "meters"),
  5168. default: true
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5174. {
  5175. front: {
  5176. height: math.unit(5.5, "feet"),
  5177. weight: math.unit(400, "lbs"),
  5178. name: "Front",
  5179. image: {
  5180. source: "./media/characters/kieran/front.svg",
  5181. extra: 2694 / 2364,
  5182. bottom: 217 / 2908
  5183. }
  5184. },
  5185. side: {
  5186. height: math.unit(5.5, "feet"),
  5187. weight: math.unit(400, "lbs"),
  5188. name: "Side",
  5189. image: {
  5190. source: "./media/characters/kieran/side.svg",
  5191. extra: 875 / 777,
  5192. bottom: 84.6 / 959
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(5.5, "feet"),
  5200. default: true
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5206. {
  5207. side: {
  5208. height: math.unit(2, "meters"),
  5209. weight: math.unit(70, "kg"),
  5210. name: "Side",
  5211. image: {
  5212. source: "./media/characters/sanya/side.svg",
  5213. bottom: 0.02,
  5214. extra: 1.02
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Small",
  5221. height: math.unit(2, "meters")
  5222. },
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(3, "meters")
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(16, "meters"),
  5230. default: true
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(2, "meters"),
  5239. weight: math.unit(120, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/miranda/front.svg",
  5243. extra: 195 / 185,
  5244. bottom: 10.9 / 206.5
  5245. }
  5246. },
  5247. back: {
  5248. height: math.unit(2, "meters"),
  5249. weight: math.unit(120, "kg"),
  5250. name: "Back",
  5251. image: {
  5252. source: "./media/characters/miranda/back.svg",
  5253. extra: 201 / 193,
  5254. bottom: 2.3 / 203.7
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(10, "feet"),
  5262. default: true
  5263. }
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "James", species: ["deer"], tags: ["anthro"] },
  5268. {
  5269. side: {
  5270. height: math.unit(2, "meters"),
  5271. weight: math.unit(100, "kg"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/james/front.svg",
  5275. extra: 10 / 8.5
  5276. }
  5277. },
  5278. },
  5279. [
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(8.5, "feet"),
  5283. default: true
  5284. }
  5285. ]
  5286. ))
  5287. characterMakers.push(() => makeCharacter(
  5288. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5289. {
  5290. side: {
  5291. height: math.unit(9.5, "feet"),
  5292. weight: math.unit(2500, "lbs"),
  5293. name: "Side",
  5294. image: {
  5295. source: "./media/characters/heather/side.svg"
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Normal",
  5302. height: math.unit(9.5, "feet"),
  5303. default: true
  5304. }
  5305. ]
  5306. ))
  5307. characterMakers.push(() => makeCharacter(
  5308. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5309. {
  5310. side: {
  5311. height: math.unit(6.5, "feet"),
  5312. weight: math.unit(400, "lbs"),
  5313. name: "Side",
  5314. image: {
  5315. source: "./media/characters/lukas/side.svg",
  5316. extra: 7.25 / 6.5
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(6.5, "feet"),
  5324. default: true
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5330. {
  5331. side: {
  5332. height: math.unit(5, "feet"),
  5333. weight: math.unit(3000, "lbs"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/louise/side.svg"
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(5, "feet"),
  5344. default: true
  5345. }
  5346. ]
  5347. ))
  5348. characterMakers.push(() => makeCharacter(
  5349. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5350. {
  5351. side: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(150, "lbs"),
  5354. name: "Side",
  5355. image: {
  5356. source: "./media/characters/ramona/side.svg",
  5357. extra: 871/854,
  5358. bottom: 41/912
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(5.3, "meters"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(20, "stories")
  5371. },
  5372. {
  5373. name: "Macro+",
  5374. height: math.unit(50, "stories")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5380. {
  5381. standing: {
  5382. height: math.unit(5.75, "feet"),
  5383. weight: math.unit(160, "lbs"),
  5384. name: "Standing",
  5385. image: {
  5386. source: "./media/characters/deerpuff/standing.svg",
  5387. extra: 682 / 624
  5388. }
  5389. },
  5390. sitting: {
  5391. height: math.unit(5.75 / 1.79, "feet"),
  5392. weight: math.unit(160, "lbs"),
  5393. name: "Sitting",
  5394. image: {
  5395. source: "./media/characters/deerpuff/sitting.svg",
  5396. bottom: 44 / 400,
  5397. extra: 1
  5398. }
  5399. },
  5400. taurLaying: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(400, "lbs"),
  5403. name: "Taur (Laying)",
  5404. image: {
  5405. source: "./media/characters/deerpuff/taur-laying.svg"
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Puffball",
  5412. height: math.unit(6, "inches")
  5413. },
  5414. {
  5415. name: "Normalpuff",
  5416. height: math.unit(5.75, "feet")
  5417. },
  5418. {
  5419. name: "Macropuff",
  5420. height: math.unit(1500, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Megapuff",
  5425. height: math.unit(500, "miles")
  5426. },
  5427. {
  5428. name: "Gigapuff",
  5429. height: math.unit(250000, "miles")
  5430. },
  5431. {
  5432. name: "Omegapuff",
  5433. height: math.unit(1000, "lightyears")
  5434. },
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5439. {
  5440. stomping: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(170, "lbs"),
  5443. name: "Stomping",
  5444. image: {
  5445. source: "./media/characters/vivian/stomping.svg"
  5446. }
  5447. },
  5448. sitting: {
  5449. height: math.unit(6 / 1.75, "feet"),
  5450. weight: math.unit(170, "lbs"),
  5451. name: "Sitting",
  5452. image: {
  5453. source: "./media/characters/vivian/sitting.svg",
  5454. bottom: 1 / 6.4,
  5455. extra: 1,
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(7, "feet"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(10, "stories")
  5468. },
  5469. {
  5470. name: "Macro+",
  5471. height: math.unit(30, "stories")
  5472. },
  5473. {
  5474. name: "Megamacro",
  5475. height: math.unit(10, "miles")
  5476. },
  5477. {
  5478. name: "Megamacro+",
  5479. height: math.unit(2750000, "meters")
  5480. },
  5481. ]
  5482. ))
  5483. characterMakers.push(() => makeCharacter(
  5484. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5485. {
  5486. front: {
  5487. height: math.unit(6, "feet"),
  5488. weight: math.unit(160, "lbs"),
  5489. name: "Front",
  5490. image: {
  5491. source: "./media/characters/prince/front.svg",
  5492. extra: 3400 / 3000
  5493. }
  5494. },
  5495. jumping: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(160, "lbs"),
  5498. name: "Jumping",
  5499. image: {
  5500. source: "./media/characters/prince/jump.svg",
  5501. extra: 2555 / 2134
  5502. }
  5503. },
  5504. },
  5505. [
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(7.75, "feet"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Not cute",
  5513. height: math.unit(17, "feet")
  5514. },
  5515. {
  5516. name: "I said NOT",
  5517. height: math.unit(91, "feet")
  5518. },
  5519. {
  5520. name: "Please stop",
  5521. height: math.unit(560, "feet")
  5522. },
  5523. {
  5524. name: "What have you done",
  5525. height: math.unit(2200, "feet")
  5526. },
  5527. {
  5528. name: "Deer God",
  5529. height: math.unit(3.6, "miles")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5535. {
  5536. standing: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(300, "lbs"),
  5539. name: "Standing",
  5540. image: {
  5541. source: "./media/characters/psymon/standing.svg",
  5542. extra: 1888 / 1810,
  5543. bottom: 0.05
  5544. }
  5545. },
  5546. slithering: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(300, "lbs"),
  5549. name: "Slithering",
  5550. image: {
  5551. source: "./media/characters/psymon/slithering.svg",
  5552. extra: 1330 / 1224
  5553. }
  5554. },
  5555. slitheringAlt: {
  5556. height: math.unit(6, "feet"),
  5557. weight: math.unit(300, "lbs"),
  5558. name: "Slithering (Alt)",
  5559. image: {
  5560. source: "./media/characters/psymon/slithering-alt.svg",
  5561. extra: 1330 / 1224
  5562. }
  5563. },
  5564. },
  5565. [
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(11.25, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Large",
  5573. height: math.unit(27, "feet")
  5574. },
  5575. {
  5576. name: "Giant",
  5577. height: math.unit(87, "feet")
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(365, "feet")
  5582. },
  5583. {
  5584. name: "Megamacro",
  5585. height: math.unit(3, "miles")
  5586. },
  5587. {
  5588. name: "World Serpent",
  5589. height: math.unit(8000, "miles")
  5590. },
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(180, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/daimos/front.svg",
  5602. extra: 4160 / 3897,
  5603. bottom: 0.021
  5604. }
  5605. }
  5606. },
  5607. [
  5608. {
  5609. name: "Normal",
  5610. height: math.unit(8, "feet"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Big Dog",
  5615. height: math.unit(22, "feet")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(127, "feet")
  5620. },
  5621. {
  5622. name: "Megamacro",
  5623. height: math.unit(3600, "feet")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5629. {
  5630. side: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(180, "lbs"),
  5633. name: "Side",
  5634. image: {
  5635. source: "./media/characters/blake/side.svg",
  5636. extra: 1212 / 1120,
  5637. bottom: 0.05
  5638. }
  5639. },
  5640. crouched: {
  5641. height: math.unit(6 * 0.57, "feet"),
  5642. weight: math.unit(180, "lbs"),
  5643. name: "Crouched",
  5644. image: {
  5645. source: "./media/characters/blake/crouched.svg",
  5646. extra: 840 / 587,
  5647. bottom: 0.04
  5648. }
  5649. },
  5650. bent: {
  5651. height: math.unit(6 * 0.75, "feet"),
  5652. weight: math.unit(180, "lbs"),
  5653. name: "Bent",
  5654. image: {
  5655. source: "./media/characters/blake/bent.svg",
  5656. extra: 592 / 544,
  5657. bottom: 0.035
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(8 + 1 / 6, "feet"),
  5665. default: true
  5666. },
  5667. {
  5668. name: "Big Backside",
  5669. height: math.unit(37, "feet")
  5670. },
  5671. {
  5672. name: "Subway Shredder",
  5673. height: math.unit(72, "feet")
  5674. },
  5675. {
  5676. name: "City Carver",
  5677. height: math.unit(1675, "feet")
  5678. },
  5679. {
  5680. name: "Tectonic Tweaker",
  5681. height: math.unit(2300, "miles")
  5682. },
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5687. {
  5688. front: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(180, "lbs"),
  5691. name: "Front",
  5692. image: {
  5693. source: "./media/characters/guisetto/front.svg",
  5694. extra: 856 / 817,
  5695. bottom: 0.06
  5696. }
  5697. },
  5698. airborne: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(180, "lbs"),
  5701. name: "Airborne",
  5702. image: {
  5703. source: "./media/characters/guisetto/airborne.svg",
  5704. extra: 584 / 525
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(10 + 11 / 12, "feet"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Large",
  5716. height: math.unit(35, "feet")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(475, "feet")
  5721. },
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5726. {
  5727. front: {
  5728. height: math.unit(6, "feet"),
  5729. weight: math.unit(180, "lbs"),
  5730. name: "Front",
  5731. image: {
  5732. source: "./media/characters/luxor/front.svg",
  5733. extra: 2940 / 2152
  5734. }
  5735. },
  5736. back: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(180, "lbs"),
  5739. name: "Back",
  5740. image: {
  5741. source: "./media/characters/luxor/back.svg",
  5742. extra: 1083 / 960
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(5 + 5 / 6, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Lamp",
  5754. height: math.unit(50, "feet")
  5755. },
  5756. {
  5757. name: "Lämp",
  5758. height: math.unit(300, "feet")
  5759. },
  5760. {
  5761. name: "The sun is a lamp",
  5762. height: math.unit(250000, "miles")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(50, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/huoyan/front.svg"
  5775. }
  5776. },
  5777. side: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(180, "lbs"),
  5780. name: "Side",
  5781. image: {
  5782. source: "./media/characters/huoyan/side.svg"
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Chef",
  5789. height: math.unit(9, "feet")
  5790. },
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(65, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(780, "feet")
  5799. },
  5800. {
  5801. name: "Flaming Mountain",
  5802. height: math.unit(4.8, "miles")
  5803. },
  5804. {
  5805. name: "Celestial",
  5806. height: math.unit(765000, "miles")
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(5 + 3 / 4, "feet"),
  5815. weight: math.unit(120, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/tails/front.svg"
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(5 + 3 / 4, "feet"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(4, "feet"),
  5835. weight: math.unit(50, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/rainy/front.svg"
  5839. }
  5840. }
  5841. },
  5842. [
  5843. {
  5844. name: "Macro",
  5845. height: math.unit(800, "feet"),
  5846. default: true
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5852. {
  5853. front: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(150, "lbs"),
  5856. name: "Front",
  5857. image: {
  5858. source: "./media/characters/rainier/front.svg"
  5859. }
  5860. }
  5861. },
  5862. [
  5863. {
  5864. name: "Micro",
  5865. height: math.unit(2, "mm"),
  5866. default: true
  5867. }
  5868. ]
  5869. ))
  5870. characterMakers.push(() => makeCharacter(
  5871. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5872. {
  5873. front: {
  5874. height: math.unit(8 + 4/12, "feet"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/andy-renard/front.svg",
  5878. extra: 1839/1726,
  5879. bottom: 134/1973
  5880. }
  5881. },
  5882. back: {
  5883. height: math.unit(8 + 4/12, "feet"),
  5884. name: "Back",
  5885. image: {
  5886. source: "./media/characters/andy-renard/back.svg",
  5887. extra: 1838/1710,
  5888. bottom: 105/1943
  5889. }
  5890. },
  5891. },
  5892. [
  5893. {
  5894. name: "Tall",
  5895. height: math.unit(8 + 4/12, "feet")
  5896. },
  5897. {
  5898. name: "Mini Macro",
  5899. height: math.unit(15, "feet"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Macro",
  5904. height: math.unit(100, "feet")
  5905. },
  5906. {
  5907. name: "Mega Macro",
  5908. height: math.unit(1000, "feet")
  5909. },
  5910. {
  5911. name: "Giga Macro",
  5912. height: math.unit(10, "miles")
  5913. },
  5914. {
  5915. name: "God Macro",
  5916. height: math.unit(1, "multiverse")
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5922. {
  5923. front: {
  5924. height: math.unit(6, "feet"),
  5925. weight: math.unit(210, "lbs"),
  5926. name: "Front",
  5927. image: {
  5928. source: "./media/characters/cimmaron/front-sfw.svg",
  5929. extra: 701 / 676,
  5930. bottom: 0.046
  5931. }
  5932. },
  5933. back: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(210, "lbs"),
  5936. name: "Back",
  5937. image: {
  5938. source: "./media/characters/cimmaron/back-sfw.svg",
  5939. extra: 701 / 676,
  5940. bottom: 0.046
  5941. }
  5942. },
  5943. frontNsfw: {
  5944. height: math.unit(6, "feet"),
  5945. weight: math.unit(210, "lbs"),
  5946. name: "Front (NSFW)",
  5947. image: {
  5948. source: "./media/characters/cimmaron/front-nsfw.svg",
  5949. extra: 701 / 676,
  5950. bottom: 0.046
  5951. }
  5952. },
  5953. backNsfw: {
  5954. height: math.unit(6, "feet"),
  5955. weight: math.unit(210, "lbs"),
  5956. name: "Back (NSFW)",
  5957. image: {
  5958. source: "./media/characters/cimmaron/back-nsfw.svg",
  5959. extra: 701 / 676,
  5960. bottom: 0.046
  5961. }
  5962. },
  5963. dick: {
  5964. height: math.unit(1.714, "feet"),
  5965. name: "Dick",
  5966. image: {
  5967. source: "./media/characters/cimmaron/dick.svg"
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(6, "feet"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Macro Mayor",
  5979. height: math.unit(350, "meters")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(6, "feet"),
  5988. weight: math.unit(200, "lbs"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/akari/front.svg",
  5992. extra: 962 / 901,
  5993. bottom: 0.04
  5994. }
  5995. }
  5996. },
  5997. [
  5998. {
  5999. name: "Micro",
  6000. height: math.unit(5, "inches"),
  6001. default: true
  6002. },
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(7, "feet")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(140, "lbs"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/cynosura/front.svg",
  6018. extra: 896 / 847
  6019. }
  6020. },
  6021. back: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(140, "lbs"),
  6024. name: "Back",
  6025. image: {
  6026. source: "./media/characters/cynosura/back.svg",
  6027. extra: 1365 / 1250
  6028. }
  6029. },
  6030. },
  6031. [
  6032. {
  6033. name: "Micro",
  6034. height: math.unit(4, "inches")
  6035. },
  6036. {
  6037. name: "Normal",
  6038. height: math.unit(5.75, "feet"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Tall",
  6043. height: math.unit(10, "feet")
  6044. },
  6045. {
  6046. name: "Big",
  6047. height: math.unit(20, "feet")
  6048. },
  6049. {
  6050. name: "Macro",
  6051. height: math.unit(50, "feet")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(13 + 2/12, "feet"),
  6060. weight: math.unit(800, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/gin/front.svg",
  6064. extra: 1312/1191,
  6065. bottom: 45/1357
  6066. }
  6067. },
  6068. mouth: {
  6069. height: math.unit(2.39 * 1.8, "feet"),
  6070. name: "Mouth",
  6071. image: {
  6072. source: "./media/characters/gin/mouth.svg"
  6073. }
  6074. },
  6075. hand: {
  6076. height: math.unit(1.57 * 2.19, "feet"),
  6077. name: "Hand",
  6078. image: {
  6079. source: "./media/characters/gin/hand.svg"
  6080. }
  6081. },
  6082. foot: {
  6083. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6084. name: "Foot",
  6085. image: {
  6086. source: "./media/characters/gin/foot.svg"
  6087. }
  6088. },
  6089. sole: {
  6090. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6091. name: "Sole",
  6092. image: {
  6093. source: "./media/characters/gin/sole.svg"
  6094. }
  6095. },
  6096. },
  6097. [
  6098. {
  6099. name: "Very Small",
  6100. height: math.unit(13 + 2 / 12, "feet")
  6101. },
  6102. {
  6103. name: "Micro",
  6104. height: math.unit(600, "miles")
  6105. },
  6106. {
  6107. name: "Regular",
  6108. height: math.unit(20, "earths"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Macro",
  6113. height: math.unit(2.2, "solarradii")
  6114. },
  6115. {
  6116. name: "Teramacro",
  6117. height: math.unit(1.2, "galaxies")
  6118. },
  6119. {
  6120. name: "Omegamacro",
  6121. height: math.unit(200, "universes")
  6122. },
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6127. {
  6128. front: {
  6129. height: math.unit(6 + 1 / 6, "feet"),
  6130. weight: math.unit(178, "lbs"),
  6131. name: "Front",
  6132. image: {
  6133. source: "./media/characters/guy/front.svg"
  6134. }
  6135. }
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(6 + 1 / 6, "feet"),
  6141. default: true
  6142. },
  6143. {
  6144. name: "Large",
  6145. height: math.unit(25 + 7 / 12, "feet")
  6146. },
  6147. {
  6148. name: "Macro",
  6149. height: math.unit(60 + 9 / 12, "feet")
  6150. },
  6151. {
  6152. name: "Macro+",
  6153. height: math.unit(246, "feet")
  6154. },
  6155. {
  6156. name: "Macro++",
  6157. height: math.unit(878, "feet")
  6158. }
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6163. {
  6164. front: {
  6165. height: math.unit(9, "feet"),
  6166. weight: math.unit(800, "lbs"),
  6167. name: "Front",
  6168. image: {
  6169. source: "./media/characters/tiberius/front.svg",
  6170. extra: 2295 / 2071
  6171. }
  6172. },
  6173. back: {
  6174. height: math.unit(9, "feet"),
  6175. weight: math.unit(800, "lbs"),
  6176. name: "Back",
  6177. image: {
  6178. source: "./media/characters/tiberius/back.svg",
  6179. extra: 2373 / 2160
  6180. }
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(9, "feet"),
  6187. default: true
  6188. }
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6193. {
  6194. front: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(600, "lbs"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/surgo/front.svg",
  6200. extra: 3591 / 2227
  6201. }
  6202. },
  6203. back: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(600, "lbs"),
  6206. name: "Back",
  6207. image: {
  6208. source: "./media/characters/surgo/back.svg",
  6209. extra: 3557 / 2228
  6210. }
  6211. },
  6212. laying: {
  6213. height: math.unit(6 * 0.85, "feet"),
  6214. weight: math.unit(600, "lbs"),
  6215. name: "Laying",
  6216. image: {
  6217. source: "./media/characters/surgo/laying.svg"
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(6, "feet"),
  6225. default: true
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6231. {
  6232. side: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(150, "lbs"),
  6235. name: "Side",
  6236. image: {
  6237. source: "./media/characters/cibus/side.svg",
  6238. extra: 800 / 400
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(6, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6252. {
  6253. front: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(240, "lbs"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/nibbles/front.svg"
  6259. }
  6260. },
  6261. side: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(240, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/nibbles/side.svg"
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Normal",
  6273. height: math.unit(9, "feet"),
  6274. default: true
  6275. }
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6280. {
  6281. side: {
  6282. height: math.unit(5 + 1 / 6, "feet"),
  6283. weight: math.unit(130, "lbs"),
  6284. name: "Side",
  6285. image: {
  6286. source: "./media/characters/rikky/side.svg",
  6287. extra: 851 / 801
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Normal",
  6294. height: math.unit(5 + 1 / 6, "feet")
  6295. },
  6296. {
  6297. name: "Macro",
  6298. height: math.unit(152, "feet"),
  6299. default: true
  6300. },
  6301. {
  6302. name: "Megamacro",
  6303. height: math.unit(7, "miles")
  6304. }
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6309. {
  6310. side: {
  6311. height: math.unit(370, "cm"),
  6312. weight: math.unit(350, "lbs"),
  6313. name: "Side",
  6314. image: {
  6315. source: "./media/characters/malfressa/side.svg"
  6316. }
  6317. },
  6318. walking: {
  6319. height: math.unit(370, "cm"),
  6320. weight: math.unit(350, "lbs"),
  6321. name: "Walking",
  6322. image: {
  6323. source: "./media/characters/malfressa/walking.svg"
  6324. }
  6325. },
  6326. feral: {
  6327. height: math.unit(2500, "cm"),
  6328. weight: math.unit(100000, "lbs"),
  6329. name: "Feral",
  6330. image: {
  6331. source: "./media/characters/malfressa/feral.svg",
  6332. extra: 2108 / 837,
  6333. bottom: 0.02
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(370, "cm")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(300, "meters"),
  6345. default: true
  6346. }
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(60, "kg"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/jaro/front.svg",
  6358. extra: 845/817,
  6359. bottom: 45/890
  6360. }
  6361. },
  6362. back: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(60, "kg"),
  6365. name: "Back",
  6366. image: {
  6367. source: "./media/characters/jaro/back.svg",
  6368. extra: 847/817,
  6369. bottom: 34/881
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Micro",
  6376. height: math.unit(7, "inches")
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5.5, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Minimacro",
  6385. height: math.unit(20, "feet")
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(200, "meters")
  6390. }
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(195, "lb"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/rogue/front.svg"
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(90, "feet"),
  6409. default: true
  6410. },
  6411. ]
  6412. ))
  6413. characterMakers.push(() => makeCharacter(
  6414. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6415. {
  6416. front: {
  6417. height: math.unit(5 + 8 / 12, "feet"),
  6418. weight: math.unit(140, "lb"),
  6419. name: "Front",
  6420. image: {
  6421. source: "./media/characters/piper/front.svg",
  6422. extra: 3948/3655,
  6423. bottom: 0/3948
  6424. }
  6425. },
  6426. },
  6427. [
  6428. {
  6429. name: "Micro",
  6430. height: math.unit(2, "inches")
  6431. },
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(5 + 8 / 12, "feet")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(250, "feet"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(7, "miles")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(220, "lb"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/gemini/front.svg"
  6456. }
  6457. },
  6458. back: {
  6459. height: math.unit(6, "feet"),
  6460. weight: math.unit(220, "lb"),
  6461. name: "Back",
  6462. image: {
  6463. source: "./media/characters/gemini/back.svg"
  6464. }
  6465. },
  6466. kneeling: {
  6467. height: math.unit(6 / 1.5, "feet"),
  6468. weight: math.unit(220, "lb"),
  6469. name: "Kneeling",
  6470. image: {
  6471. source: "./media/characters/gemini/kneeling.svg",
  6472. bottom: 0.02
  6473. }
  6474. },
  6475. },
  6476. [
  6477. {
  6478. name: "Macro",
  6479. height: math.unit(300, "meters"),
  6480. default: true
  6481. },
  6482. {
  6483. name: "Megamacro",
  6484. height: math.unit(6900, "meters")
  6485. },
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6490. {
  6491. anthro: {
  6492. height: math.unit(2.35, "meters"),
  6493. weight: math.unit(73, "kg"),
  6494. name: "Anthro",
  6495. image: {
  6496. source: "./media/characters/alicia/anthro.svg",
  6497. extra: 2571 / 2385,
  6498. bottom: 75 / 2648
  6499. }
  6500. },
  6501. paw: {
  6502. height: math.unit(1.32, "feet"),
  6503. name: "Paw",
  6504. image: {
  6505. source: "./media/characters/alicia/paw.svg"
  6506. }
  6507. },
  6508. feral: {
  6509. height: math.unit(1.69, "meters"),
  6510. weight: math.unit(73, "kg"),
  6511. name: "Feral",
  6512. image: {
  6513. source: "./media/characters/alicia/feral.svg",
  6514. extra: 2123 / 1715,
  6515. bottom: 222 / 2349
  6516. }
  6517. },
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(2.35, "meters")
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(60, "meters"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Megamacro",
  6531. height: math.unit(10000, "kilometers")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6537. {
  6538. front: {
  6539. height: math.unit(7, "feet"),
  6540. weight: math.unit(250, "lbs"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/archy/front.svg"
  6544. }
  6545. }
  6546. },
  6547. [
  6548. {
  6549. name: "Micro",
  6550. height: math.unit(1, "inch")
  6551. },
  6552. {
  6553. name: "Shorty",
  6554. height: math.unit(5, "feet")
  6555. },
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(7, "feet")
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(600, "meters"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Megamacro",
  6567. height: math.unit(1, "mile")
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(1.65, "meters"),
  6576. weight: math.unit(74, "kg"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/berri/front.svg",
  6580. extra: 857 / 837,
  6581. bottom: 18 / 877
  6582. }
  6583. },
  6584. bum: {
  6585. height: math.unit(1.46, "feet"),
  6586. name: "Bum",
  6587. image: {
  6588. source: "./media/characters/berri/bum.svg"
  6589. }
  6590. },
  6591. mouth: {
  6592. height: math.unit(0.44, "feet"),
  6593. name: "Mouth",
  6594. image: {
  6595. source: "./media/characters/berri/mouth.svg"
  6596. }
  6597. },
  6598. paw: {
  6599. height: math.unit(0.826, "feet"),
  6600. name: "Paw",
  6601. image: {
  6602. source: "./media/characters/berri/paw.svg"
  6603. }
  6604. },
  6605. },
  6606. [
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(1.65, "meters")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(60, "m"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Megamacro",
  6618. height: math.unit(9.213, "km")
  6619. },
  6620. {
  6621. name: "Planet Eater",
  6622. height: math.unit(489, "megameters")
  6623. },
  6624. {
  6625. name: "Teramacro",
  6626. height: math.unit(2471635000000, "meters")
  6627. },
  6628. {
  6629. name: "Examacro",
  6630. height: math.unit(8.0624e+26, "meters")
  6631. }
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6636. {
  6637. front: {
  6638. height: math.unit(1.72, "meters"),
  6639. weight: math.unit(68, "kg"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/lexi/front.svg"
  6643. }
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Very Smol",
  6649. height: math.unit(10, "mm")
  6650. },
  6651. {
  6652. name: "Micro",
  6653. height: math.unit(6.8, "cm"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(1.72, "m")
  6659. }
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(1.69, "meters"),
  6667. weight: math.unit(68, "kg"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/martin/front.svg",
  6671. extra: 596 / 581
  6672. }
  6673. }
  6674. },
  6675. [
  6676. {
  6677. name: "Micro",
  6678. height: math.unit(6.85, "cm"),
  6679. default: true
  6680. },
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(1.69, "m")
  6684. }
  6685. ]
  6686. ))
  6687. characterMakers.push(() => makeCharacter(
  6688. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6689. {
  6690. front: {
  6691. height: math.unit(1.69, "meters"),
  6692. weight: math.unit(68, "kg"),
  6693. name: "Front",
  6694. image: {
  6695. source: "./media/characters/juno/front.svg"
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Micro",
  6702. height: math.unit(7, "cm")
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(1.89, "m")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(353, "meters"),
  6711. default: true
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.93, "meters"),
  6720. weight: math.unit(83, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/samantha/front.svg"
  6724. }
  6725. },
  6726. frontClothed: {
  6727. height: math.unit(1.93, "meters"),
  6728. weight: math.unit(83, "kg"),
  6729. name: "Front (Clothed)",
  6730. image: {
  6731. source: "./media/characters/samantha/front-clothed.svg"
  6732. }
  6733. },
  6734. back: {
  6735. height: math.unit(1.93, "meters"),
  6736. weight: math.unit(83, "kg"),
  6737. name: "Back",
  6738. image: {
  6739. source: "./media/characters/samantha/back.svg"
  6740. }
  6741. },
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(1.93, "m")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(74, "meters"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Macro+",
  6755. height: math.unit(223, "meters"),
  6756. },
  6757. {
  6758. name: "Megamacro",
  6759. height: math.unit(8381, "meters"),
  6760. },
  6761. {
  6762. name: "Megamacro+",
  6763. height: math.unit(12000, "kilometers")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(1.92, "meters"),
  6772. weight: math.unit(80, "kg"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/dr-clay/front.svg"
  6776. }
  6777. },
  6778. frontClothed: {
  6779. height: math.unit(1.92, "meters"),
  6780. weight: math.unit(80, "kg"),
  6781. name: "Front (Clothed)",
  6782. image: {
  6783. source: "./media/characters/dr-clay/front-clothed.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(1.92, "m")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(214, "meters"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Macro+",
  6799. height: math.unit(12.237, "meters"),
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(557, "megameters"),
  6804. },
  6805. {
  6806. name: "Unimaginable",
  6807. height: math.unit(120e9, "lightyears")
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(2, "meters"),
  6816. weight: math.unit(80, "kg"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Teramacro",
  6826. height: math.unit(500000, "lightyears"),
  6827. default: true
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6833. {
  6834. crux: {
  6835. height: math.unit(2, "meters"),
  6836. weight: math.unit(150, "kg"),
  6837. name: "Crux",
  6838. image: {
  6839. source: "./media/characters/vemus/crux.svg",
  6840. extra: 1074/936,
  6841. bottom: 23/1097
  6842. }
  6843. },
  6844. skunkTanuki: {
  6845. height: math.unit(2, "meters"),
  6846. weight: math.unit(150, "kg"),
  6847. name: "Skunk-Tanuki",
  6848. image: {
  6849. source: "./media/characters/vemus/skunk-tanuki.svg",
  6850. extra: 926/893,
  6851. bottom: 20/946
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(3.75, "meters"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Big",
  6863. height: math.unit(8, "meters")
  6864. },
  6865. {
  6866. name: "Macro",
  6867. height: math.unit(100, "meters")
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(1500, "meters")
  6872. },
  6873. {
  6874. name: "Stellar",
  6875. height: math.unit(14e8, "meters")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(2, "meters"),
  6884. weight: math.unit(70, "kg"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/beherit/front.svg",
  6888. extra: 1234/1109,
  6889. bottom: 55/1289
  6890. }
  6891. }
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(6, "feet")
  6897. },
  6898. {
  6899. name: "Lorg",
  6900. height: math.unit(25, "feet"),
  6901. default: true
  6902. },
  6903. {
  6904. name: "Lorger",
  6905. height: math.unit(75, "feet")
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(200, "meters")
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(2, "meters"),
  6918. weight: math.unit(150, "kg"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/everett/front.svg",
  6922. extra: 1017/866,
  6923. bottom: 86/1103
  6924. }
  6925. },
  6926. paw: {
  6927. height: math.unit(2 / 3.6, "meters"),
  6928. name: "Paw",
  6929. image: {
  6930. source: "./media/characters/everett/paw.svg"
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(15, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Lorg",
  6942. height: math.unit(70, "feet"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Lorger",
  6947. height: math.unit(250, "feet")
  6948. },
  6949. {
  6950. name: "Macro",
  6951. height: math.unit(500, "meters")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(2, "meters"),
  6960. weight: math.unit(86, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/rose/front.svg",
  6964. extra: 1785/1636,
  6965. bottom: 30/1815
  6966. }
  6967. },
  6968. frontSporty: {
  6969. height: math.unit(2, "meters"),
  6970. weight: math.unit(86, "kg"),
  6971. name: "Front (Sporty)",
  6972. image: {
  6973. source: "./media/characters/rose/front-sporty.svg",
  6974. extra: 350/335,
  6975. bottom: 10/360
  6976. }
  6977. },
  6978. frontAlt: {
  6979. height: math.unit(1.6, "meters"),
  6980. weight: math.unit(86, "kg"),
  6981. name: "Front (Alt)",
  6982. image: {
  6983. source: "./media/characters/rose/front-alt.svg",
  6984. extra: 299/283,
  6985. bottom: 3/302
  6986. }
  6987. },
  6988. plush: {
  6989. height: math.unit(2, "meters"),
  6990. weight: math.unit(86/3, "kg"),
  6991. name: "Plush",
  6992. image: {
  6993. source: "./media/characters/rose/plush.svg",
  6994. extra: 361/337,
  6995. bottom: 11/372
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "True Micro",
  7002. height: math.unit(9, "cm")
  7003. },
  7004. {
  7005. name: "Micro",
  7006. height: math.unit(16, "cm")
  7007. },
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(1.85, "meters"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Mini-Macro",
  7015. height: math.unit(5, "meters")
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(15, "meters")
  7020. },
  7021. {
  7022. name: "True Macro",
  7023. height: math.unit(40, "meters")
  7024. },
  7025. {
  7026. name: "City Scale",
  7027. height: math.unit(1, "km")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(2, "meters"),
  7036. weight: math.unit(350, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/regal/front.svg"
  7040. }
  7041. },
  7042. back: {
  7043. height: math.unit(2, "meters"),
  7044. weight: math.unit(350, "lbs"),
  7045. name: "Back",
  7046. image: {
  7047. source: "./media/characters/regal/back.svg"
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Macro",
  7054. height: math.unit(350, "feet"),
  7055. default: true
  7056. }
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(4 + 11 / 12, "feet"),
  7064. weight: math.unit(100, "lbs"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/opal/front.svg"
  7068. }
  7069. },
  7070. frontAlt: {
  7071. height: math.unit(4 + 11 / 12, "feet"),
  7072. weight: math.unit(100, "lbs"),
  7073. name: "Front (Alt)",
  7074. image: {
  7075. source: "./media/characters/opal/front-alt.svg"
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Small",
  7082. height: math.unit(4 + 11 / 12, "feet")
  7083. },
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(20, "feet"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(120, "feet")
  7092. },
  7093. {
  7094. name: "Megamacro",
  7095. height: math.unit(80, "miles")
  7096. },
  7097. {
  7098. name: "True Size",
  7099. height: math.unit(100000, "lightyears")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(200, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/vector-wuff/front.svg"
  7112. }
  7113. }
  7114. },
  7115. [
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(2.8, "meters")
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(450, "meters"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Megamacro",
  7127. height: math.unit(15, "kilometers")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(256, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/dannik/front.svg"
  7140. }
  7141. }
  7142. },
  7143. [
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(69.57, "meters"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(120, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/azura-saharah/front.svg"
  7160. }
  7161. },
  7162. back: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(120, "lbs"),
  7165. name: "Back",
  7166. image: {
  7167. source: "./media/characters/azura-saharah/back.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Macro",
  7174. height: math.unit(100, "feet"),
  7175. default: true
  7176. },
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7181. {
  7182. side: {
  7183. height: math.unit(5 + 4 / 12, "feet"),
  7184. weight: math.unit(163, "lbs"),
  7185. name: "Side",
  7186. image: {
  7187. source: "./media/characters/kennedy/side.svg"
  7188. }
  7189. }
  7190. },
  7191. [
  7192. {
  7193. name: "Standard Doggo",
  7194. height: math.unit(5 + 4 / 12, "feet")
  7195. },
  7196. {
  7197. name: "Big Doggo",
  7198. height: math.unit(25 + 3 / 12, "feet"),
  7199. default: true
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(5 + 5/12, "feet"),
  7208. weight: math.unit(100, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/odios-de-lunar/front.svg",
  7212. extra: 1468/1323,
  7213. bottom: 22/1490
  7214. }
  7215. }
  7216. },
  7217. [
  7218. {
  7219. name: "Micro",
  7220. height: math.unit(3, "inches")
  7221. },
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(5.5, "feet"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(100, "feet")
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7235. {
  7236. back: {
  7237. height: math.unit(6, "feet"),
  7238. weight: math.unit(220, "lbs"),
  7239. name: "Back",
  7240. image: {
  7241. source: "./media/characters/mandake/back.svg"
  7242. }
  7243. }
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(7, "feet"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(78, "feet")
  7254. },
  7255. {
  7256. name: "Macro+",
  7257. height: math.unit(300, "meters")
  7258. },
  7259. {
  7260. name: "Macro++",
  7261. height: math.unit(2400, "feet")
  7262. },
  7263. {
  7264. name: "Megamacro",
  7265. height: math.unit(5167, "meters")
  7266. },
  7267. {
  7268. name: "Gigamacro",
  7269. height: math.unit(41769, "miles")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(120, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/yozey/front.svg"
  7282. }
  7283. },
  7284. frontAlt: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(120, "lbs"),
  7287. name: "Front (Alt)",
  7288. image: {
  7289. source: "./media/characters/yozey/front-alt.svg"
  7290. }
  7291. },
  7292. side: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(120, "lbs"),
  7295. name: "Side",
  7296. image: {
  7297. source: "./media/characters/yozey/side.svg"
  7298. }
  7299. },
  7300. },
  7301. [
  7302. {
  7303. name: "Micro",
  7304. height: math.unit(3, "inches"),
  7305. default: true
  7306. },
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(6, "feet")
  7310. }
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(103, "lbs"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/valeska-voss/front.svg"
  7322. }
  7323. }
  7324. },
  7325. [
  7326. {
  7327. name: "Mini-Sized Sub",
  7328. height: math.unit(3.1, "inches")
  7329. },
  7330. {
  7331. name: "Mid-Sized Sub",
  7332. height: math.unit(6.2, "inches")
  7333. },
  7334. {
  7335. name: "Full-Sized Sub",
  7336. height: math.unit(9.3, "inches")
  7337. },
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(5 + 2 / 12, "foot"),
  7341. default: true
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(160, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/gene-zeta/front.svg",
  7354. extra: 3006 / 2826,
  7355. bottom: 182 / 3188
  7356. }
  7357. }
  7358. },
  7359. [
  7360. {
  7361. name: "Micro",
  7362. height: math.unit(6, "inches")
  7363. },
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(5 + 11 / 12, "foot"),
  7367. default: true
  7368. },
  7369. {
  7370. name: "Macro",
  7371. height: math.unit(140, "feet")
  7372. },
  7373. {
  7374. name: "Supercharged",
  7375. height: math.unit(2500, "feet")
  7376. },
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(6, "feet"),
  7384. weight: math.unit(350, "lbs"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/razinox/front.svg",
  7388. extra: 1686 / 1548,
  7389. bottom: 28.2 / 1868
  7390. }
  7391. },
  7392. back: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(350, "lbs"),
  7395. name: "Back",
  7396. image: {
  7397. source: "./media/characters/razinox/back.svg",
  7398. extra: 1660 / 1590,
  7399. bottom: 15 / 1665
  7400. }
  7401. },
  7402. },
  7403. [
  7404. {
  7405. name: "Normal",
  7406. height: math.unit(10 + 8 / 12, "foot")
  7407. },
  7408. {
  7409. name: "Minimacro",
  7410. height: math.unit(15, "foot")
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(60, "foot"),
  7415. default: true
  7416. },
  7417. {
  7418. name: "Megamacro",
  7419. height: math.unit(5, "miles")
  7420. },
  7421. {
  7422. name: "Gigamacro",
  7423. height: math.unit(6000, "miles")
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(150, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/cobalt/front.svg"
  7436. }
  7437. }
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(8 + 1 / 12, "foot")
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(111, "foot"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Supracosmic",
  7451. height: math.unit(1e42, "feet")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(140, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/amanda/front.svg"
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Micro",
  7470. height: math.unit(5, "inches"),
  7471. default: true
  7472. },
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(2.75, "meters"),
  7480. weight: math.unit(1200, "lb"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/teal/front.svg",
  7484. extra: 2463 / 2320,
  7485. bottom: 166 / 2629
  7486. }
  7487. },
  7488. back: {
  7489. height: math.unit(2.75, "meters"),
  7490. weight: math.unit(1200, "lb"),
  7491. name: "Back",
  7492. image: {
  7493. source: "./media/characters/teal/back.svg",
  7494. extra: 2580 / 2489,
  7495. bottom: 151 / 2731
  7496. }
  7497. },
  7498. sitting: {
  7499. height: math.unit(1.9, "meters"),
  7500. weight: math.unit(1200, "lb"),
  7501. name: "Sitting",
  7502. image: {
  7503. source: "./media/characters/teal/sitting.svg",
  7504. extra: 623 / 590,
  7505. bottom: 121 / 744
  7506. }
  7507. },
  7508. standing: {
  7509. height: math.unit(2.75, "meters"),
  7510. weight: math.unit(1200, "lb"),
  7511. name: "Standing",
  7512. image: {
  7513. source: "./media/characters/teal/standing.svg",
  7514. extra: 923 / 893,
  7515. bottom: 60 / 983
  7516. }
  7517. },
  7518. stretching: {
  7519. height: math.unit(3.65, "meters"),
  7520. weight: math.unit(1200, "lb"),
  7521. name: "Stretching",
  7522. image: {
  7523. source: "./media/characters/teal/stretching.svg",
  7524. extra: 1276 / 1244,
  7525. bottom: 0 / 1276
  7526. }
  7527. },
  7528. legged: {
  7529. height: math.unit(1.3, "meters"),
  7530. weight: math.unit(100, "lb"),
  7531. name: "Legged",
  7532. image: {
  7533. source: "./media/characters/teal/legged.svg",
  7534. extra: 462 / 437,
  7535. bottom: 24 / 486
  7536. }
  7537. },
  7538. naga: {
  7539. height: math.unit(5.4, "meters"),
  7540. weight: math.unit(4000, "lb"),
  7541. name: "Naga",
  7542. image: {
  7543. source: "./media/characters/teal/naga.svg",
  7544. extra: 1902 / 1858,
  7545. bottom: 0 / 1902
  7546. }
  7547. },
  7548. hand: {
  7549. height: math.unit(0.52, "meters"),
  7550. name: "Hand",
  7551. image: {
  7552. source: "./media/characters/teal/hand.svg"
  7553. }
  7554. },
  7555. maw: {
  7556. height: math.unit(0.43, "meters"),
  7557. name: "Maw",
  7558. image: {
  7559. source: "./media/characters/teal/maw.svg"
  7560. }
  7561. },
  7562. slit: {
  7563. height: math.unit(0.25, "meters"),
  7564. name: "Slit",
  7565. image: {
  7566. source: "./media/characters/teal/slit.svg"
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(2.75, "meters"),
  7574. default: true
  7575. },
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(300, "feet")
  7579. },
  7580. {
  7581. name: "Macro+",
  7582. height: math.unit(2000, "feet")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7588. {
  7589. frontCat: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(180, "lbs"),
  7592. name: "Front (Cat)",
  7593. image: {
  7594. source: "./media/characters/ravin-amulet/front-cat.svg"
  7595. }
  7596. },
  7597. frontCatAlt: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(180, "lbs"),
  7600. name: "Front (Alt, Cat)",
  7601. image: {
  7602. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7603. }
  7604. },
  7605. frontWerewolf: {
  7606. height: math.unit(6 * 1.2, "feet"),
  7607. weight: math.unit(225, "lbs"),
  7608. name: "Front (Werewolf)",
  7609. image: {
  7610. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7611. }
  7612. },
  7613. backWerewolf: {
  7614. height: math.unit(6 * 1.2, "feet"),
  7615. weight: math.unit(225, "lbs"),
  7616. name: "Back (Werewolf)",
  7617. image: {
  7618. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Nano",
  7625. height: math.unit(1, "micrometer")
  7626. },
  7627. {
  7628. name: "Micro",
  7629. height: math.unit(1, "inch")
  7630. },
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(6, "feet"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(60, "feet")
  7639. }
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(165, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/fluoresce/front.svg"
  7651. }
  7652. }
  7653. },
  7654. [
  7655. {
  7656. name: "Micro",
  7657. height: math.unit(6, "cm")
  7658. },
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(5 + 7 / 12, "feet"),
  7662. default: true
  7663. },
  7664. {
  7665. name: "Macro",
  7666. height: math.unit(56, "feet")
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(1.9, "miles")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(9 + 6 / 12, "feet"),
  7679. weight: math.unit(523, "lbs"),
  7680. name: "Side",
  7681. image: {
  7682. source: "./media/characters/aurora/side.svg"
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(9 + 6 / 12, "feet")
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(96, "feet"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Macro+",
  7698. height: math.unit(243, "feet")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(194, "cm"),
  7707. weight: math.unit(90, "kg"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/ranek/front.svg"
  7711. }
  7712. },
  7713. side: {
  7714. height: math.unit(194, "cm"),
  7715. weight: math.unit(90, "kg"),
  7716. name: "Side",
  7717. image: {
  7718. source: "./media/characters/ranek/side.svg"
  7719. }
  7720. },
  7721. back: {
  7722. height: math.unit(194, "cm"),
  7723. weight: math.unit(90, "kg"),
  7724. name: "Back",
  7725. image: {
  7726. source: "./media/characters/ranek/back.svg"
  7727. }
  7728. },
  7729. feral: {
  7730. height: math.unit(30, "cm"),
  7731. weight: math.unit(1.6, "lbs"),
  7732. name: "Feral",
  7733. image: {
  7734. source: "./media/characters/ranek/feral.svg"
  7735. }
  7736. },
  7737. },
  7738. [
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(194, "cm"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Macro",
  7746. height: math.unit(100, "meters")
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7752. {
  7753. front: {
  7754. height: math.unit(5 + 6 / 12, "feet"),
  7755. weight: math.unit(153, "lbs"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/andrew-cooper/front.svg"
  7759. }
  7760. },
  7761. },
  7762. [
  7763. {
  7764. name: "Nano",
  7765. height: math.unit(1, "mm")
  7766. },
  7767. {
  7768. name: "Micro",
  7769. height: math.unit(2, "inches")
  7770. },
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(5 + 6 / 12, "feet"),
  7774. default: true
  7775. }
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(6, "feet"),
  7783. weight: math.unit(180, "lbs"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/akane-sato/front.svg",
  7787. extra: 1219 / 1140
  7788. }
  7789. },
  7790. back: {
  7791. height: math.unit(6, "feet"),
  7792. weight: math.unit(180, "lbs"),
  7793. name: "Back",
  7794. image: {
  7795. source: "./media/characters/akane-sato/back.svg",
  7796. extra: 1219 / 1170
  7797. }
  7798. },
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(2.5, "meters")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(250, "meters"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Megamacro",
  7812. height: math.unit(25, "km")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(65, "kg"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/rook/front.svg",
  7825. extra: 960 / 950
  7826. }
  7827. }
  7828. },
  7829. [
  7830. {
  7831. name: "Normal",
  7832. height: math.unit(8.8, "feet")
  7833. },
  7834. {
  7835. name: "Macro",
  7836. height: math.unit(88, "feet"),
  7837. default: true
  7838. },
  7839. {
  7840. name: "Megamacro",
  7841. height: math.unit(8, "miles")
  7842. },
  7843. ]
  7844. ))
  7845. characterMakers.push(() => makeCharacter(
  7846. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7847. {
  7848. front: {
  7849. height: math.unit(12 + 2 / 12, "feet"),
  7850. weight: math.unit(808, "lbs"),
  7851. name: "Front",
  7852. image: {
  7853. source: "./media/characters/prodigy/front.svg"
  7854. }
  7855. }
  7856. },
  7857. [
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(12 + 2 / 12, "feet"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(143, "feet")
  7866. },
  7867. {
  7868. name: "Macro+",
  7869. height: math.unit(400, "feet")
  7870. },
  7871. ]
  7872. ))
  7873. characterMakers.push(() => makeCharacter(
  7874. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7875. {
  7876. front: {
  7877. height: math.unit(6, "feet"),
  7878. weight: math.unit(225, "lbs"),
  7879. name: "Front",
  7880. image: {
  7881. source: "./media/characters/daniel/front.svg"
  7882. }
  7883. },
  7884. leaning: {
  7885. height: math.unit(6, "feet"),
  7886. weight: math.unit(225, "lbs"),
  7887. name: "Leaning",
  7888. image: {
  7889. source: "./media/characters/daniel/leaning.svg"
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(1000, "feet"),
  7897. default: true
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(88, "lbs"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/chiros/front.svg",
  7910. extra: 306 / 226
  7911. }
  7912. },
  7913. side: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(88, "lbs"),
  7916. name: "Side",
  7917. image: {
  7918. source: "./media/characters/chiros/side.svg",
  7919. extra: 306 / 226
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(6, "cm"),
  7927. default: true
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7933. {
  7934. front: {
  7935. height: math.unit(6, "feet"),
  7936. weight: math.unit(100, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/selka/front.svg",
  7940. extra: 947 / 887
  7941. }
  7942. }
  7943. },
  7944. [
  7945. {
  7946. name: "Normal",
  7947. height: math.unit(5, "cm"),
  7948. default: true
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(8 + 3 / 12, "feet"),
  7957. weight: math.unit(424, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/verin/front.svg",
  7961. extra: 1845 / 1550
  7962. }
  7963. },
  7964. frontArmored: {
  7965. height: math.unit(8 + 3 / 12, "feet"),
  7966. weight: math.unit(424, "lbs"),
  7967. name: "Front (Armored)",
  7968. image: {
  7969. source: "./media/characters/verin/front-armor.svg",
  7970. extra: 1845 / 1550,
  7971. bottom: 0.01
  7972. }
  7973. },
  7974. back: {
  7975. height: math.unit(8 + 3 / 12, "feet"),
  7976. weight: math.unit(424, "lbs"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/verin/back.svg",
  7980. bottom: 0.1,
  7981. extra: 1
  7982. }
  7983. },
  7984. foot: {
  7985. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7986. name: "Foot",
  7987. image: {
  7988. source: "./media/characters/verin/foot.svg"
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Normal",
  7995. height: math.unit(8 + 3 / 12, "feet")
  7996. },
  7997. {
  7998. name: "Minimacro",
  7999. height: math.unit(21, "feet"),
  8000. default: true
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(626, "feet")
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8010. {
  8011. front: {
  8012. height: math.unit(2.718, "meters"),
  8013. weight: math.unit(150, "lbs"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/sovrim-terraquian/front.svg",
  8017. extra: 1752/1689,
  8018. bottom: 36/1788
  8019. }
  8020. },
  8021. back: {
  8022. height: math.unit(2.718, "meters"),
  8023. weight: math.unit(150, "lbs"),
  8024. name: "Back",
  8025. image: {
  8026. source: "./media/characters/sovrim-terraquian/back.svg",
  8027. extra: 1698/1657,
  8028. bottom: 58/1756
  8029. }
  8030. },
  8031. tongue: {
  8032. height: math.unit(2.865, "feet"),
  8033. name: "Tongue",
  8034. image: {
  8035. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8036. }
  8037. },
  8038. hand: {
  8039. height: math.unit(1.61, "feet"),
  8040. name: "Hand",
  8041. image: {
  8042. source: "./media/characters/sovrim-terraquian/hand.svg"
  8043. }
  8044. },
  8045. foot: {
  8046. height: math.unit(1.05, "feet"),
  8047. name: "Foot",
  8048. image: {
  8049. source: "./media/characters/sovrim-terraquian/foot.svg"
  8050. }
  8051. },
  8052. footAlt: {
  8053. height: math.unit(0.88, "feet"),
  8054. name: "Foot (Alt)",
  8055. image: {
  8056. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Micro",
  8063. height: math.unit(2, "inches")
  8064. },
  8065. {
  8066. name: "Small",
  8067. height: math.unit(1, "meter")
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(Math.E, "meters"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(20, "meters")
  8077. },
  8078. {
  8079. name: "Macro+",
  8080. height: math.unit(400, "meters")
  8081. },
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8086. {
  8087. front: {
  8088. height: math.unit(7, "feet"),
  8089. weight: math.unit(489, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/reece-silvermane/front.svg",
  8093. bottom: 0.02,
  8094. extra: 1
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(1.5, "miles"),
  8102. default: true
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(6, "feet"),
  8111. weight: math.unit(78, "kg"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/kane/front.svg",
  8115. extra: 978 / 899
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(2.1, "m"),
  8123. },
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(1, "km"),
  8127. default: true
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(200, "kg"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/tegon/front.svg",
  8140. bottom: 0.01,
  8141. extra: 1
  8142. }
  8143. },
  8144. },
  8145. [
  8146. {
  8147. name: "Micro",
  8148. height: math.unit(1, "inch")
  8149. },
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(6 + 3 / 12, "feet"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(300, "feet")
  8158. },
  8159. {
  8160. name: "Megamacro",
  8161. height: math.unit(69, "miles")
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8167. {
  8168. side: {
  8169. height: math.unit(6, "feet"),
  8170. weight: math.unit(2304, "lbs"),
  8171. name: "Side",
  8172. image: {
  8173. source: "./media/characters/arcturax/side.svg",
  8174. extra: 790 / 376,
  8175. bottom: 0.01
  8176. }
  8177. },
  8178. },
  8179. [
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(2, "inch")
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(6, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(39, "feet"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(7, "miles")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(50, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/sentri/front.svg",
  8208. extra: 1750 / 1570,
  8209. bottom: 0.025
  8210. }
  8211. },
  8212. frontAlt: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(50, "lbs"),
  8215. name: "Front (Alt)",
  8216. image: {
  8217. source: "./media/characters/sentri/front-alt.svg",
  8218. extra: 1750 / 1570,
  8219. bottom: 0.025
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(15, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(2500, "feet")
  8232. }
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(5 + 8 / 12, "feet"),
  8240. weight: math.unit(130, "lbs"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/corvin/front.svg",
  8244. extra: 1803 / 1629
  8245. }
  8246. },
  8247. frontShirt: {
  8248. height: math.unit(5 + 8 / 12, "feet"),
  8249. weight: math.unit(130, "lbs"),
  8250. name: "Front (Shirt)",
  8251. image: {
  8252. source: "./media/characters/corvin/front-shirt.svg",
  8253. extra: 1803 / 1629
  8254. }
  8255. },
  8256. frontPoncho: {
  8257. height: math.unit(5 + 8 / 12, "feet"),
  8258. weight: math.unit(130, "lbs"),
  8259. name: "Front (Poncho)",
  8260. image: {
  8261. source: "./media/characters/corvin/front-poncho.svg",
  8262. extra: 1803 / 1629
  8263. }
  8264. },
  8265. side: {
  8266. height: math.unit(5 + 8 / 12, "feet"),
  8267. weight: math.unit(130, "lbs"),
  8268. name: "Side",
  8269. image: {
  8270. source: "./media/characters/corvin/side.svg",
  8271. extra: 1012 / 945
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(5 + 8 / 12, "feet"),
  8276. weight: math.unit(130, "lbs"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/corvin/back.svg",
  8280. extra: 1803 / 1629
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Micro",
  8287. height: math.unit(3, "inches")
  8288. },
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(5 + 8 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(300, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(500, "miles")
  8301. }
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(135, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/q/front.svg",
  8313. extra: 854 / 752,
  8314. bottom: 0.005
  8315. }
  8316. },
  8317. back: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(130, "lbs"),
  8320. name: "Back",
  8321. image: {
  8322. source: "./media/characters/q/back.svg",
  8323. extra: 854 / 752
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(90, "feet"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Extra Macro",
  8335. height: math.unit(300, "feet"),
  8336. },
  8337. {
  8338. name: "BIG WALF",
  8339. height: math.unit(750, "feet"),
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(150, "lbs"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/carley/front.svg",
  8352. extra: 3927 / 3540,
  8353. bottom: 29.2 / 735
  8354. }
  8355. }
  8356. },
  8357. [
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(6 + 3 / 12, "feet")
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(185, "feet"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Megamacro",
  8369. height: math.unit(8, "miles"),
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(3, "feet"),
  8378. weight: math.unit(28, "lbs"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/citrine/front.svg"
  8382. }
  8383. }
  8384. },
  8385. [
  8386. {
  8387. name: "Normal",
  8388. height: math.unit(3, "feet"),
  8389. default: true
  8390. }
  8391. ]
  8392. ))
  8393. characterMakers.push(() => makeCharacter(
  8394. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8395. {
  8396. front: {
  8397. height: math.unit(14, "feet"),
  8398. weight: math.unit(1450, "kg"),
  8399. capacity: math.unit(15, "people"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/aura-starwind/front.svg",
  8403. extra: 1440/1327,
  8404. bottom: 11/1451
  8405. }
  8406. },
  8407. side: {
  8408. height: math.unit(14, "feet"),
  8409. weight: math.unit(1450, "kg"),
  8410. capacity: math.unit(15, "people"),
  8411. name: "Side",
  8412. image: {
  8413. source: "./media/characters/aura-starwind/side.svg",
  8414. extra: 1654 / 1497
  8415. }
  8416. },
  8417. taur: {
  8418. height: math.unit(18, "feet"),
  8419. weight: math.unit(5500, "kg"),
  8420. capacity: math.unit(50, "people"),
  8421. name: "Taur",
  8422. image: {
  8423. source: "./media/characters/aura-starwind/taur.svg",
  8424. extra: 1760 / 1650
  8425. }
  8426. },
  8427. feral: {
  8428. height: math.unit(46, "feet"),
  8429. weight: math.unit(25000, "kg"),
  8430. capacity: math.unit(120, "people"),
  8431. name: "Feral",
  8432. image: {
  8433. source: "./media/characters/aura-starwind/feral.svg"
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(14, "feet"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(50, "meters")
  8446. },
  8447. {
  8448. name: "Megamacro",
  8449. height: math.unit(5000, "meters")
  8450. },
  8451. {
  8452. name: "Gigamacro",
  8453. height: math.unit(100000, "kilometers")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8459. {
  8460. front: {
  8461. height: math.unit(2 + 7 / 12, "feet"),
  8462. weight: math.unit(32, "lbs"),
  8463. name: "Front",
  8464. image: {
  8465. source: "./media/characters/rivet/front.svg",
  8466. extra: 1716 / 1658,
  8467. bottom: 0.03
  8468. }
  8469. },
  8470. foot: {
  8471. height: math.unit(0.551, "feet"),
  8472. name: "Rivet's Foot",
  8473. image: {
  8474. source: "./media/characters/rivet/foot.svg"
  8475. },
  8476. rename: true
  8477. }
  8478. },
  8479. [
  8480. {
  8481. name: "Micro",
  8482. height: math.unit(1.5, "inches"),
  8483. },
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(2 + 7 / 12, "feet"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Macro",
  8491. height: math.unit(85, "feet")
  8492. },
  8493. {
  8494. name: "Megamacro",
  8495. height: math.unit(2.2, "km")
  8496. }
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(5 + 9 / 12, "feet"),
  8504. weight: math.unit(150, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/coffee/front.svg",
  8508. extra: 3666 / 3032,
  8509. bottom: 0.04
  8510. }
  8511. },
  8512. foot: {
  8513. height: math.unit(1.29, "feet"),
  8514. name: "Foot",
  8515. image: {
  8516. source: "./media/characters/coffee/foot.svg"
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Micro",
  8523. height: math.unit(2, "inches"),
  8524. },
  8525. {
  8526. name: "Normal",
  8527. height: math.unit(5 + 9 / 12, "feet"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Macro",
  8532. height: math.unit(800, "feet")
  8533. },
  8534. {
  8535. name: "Megamacro",
  8536. height: math.unit(25, "miles")
  8537. }
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(6, "feet"),
  8545. weight: math.unit(200, "lbs"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/chari-gal/front.svg",
  8549. extra: 1568 / 1385,
  8550. bottom: 0.047
  8551. }
  8552. },
  8553. gigantamax: {
  8554. height: math.unit(6 * 16, "feet"),
  8555. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8556. name: "Gigantamax",
  8557. image: {
  8558. source: "./media/characters/chari-gal/gigantamax.svg",
  8559. extra: 1124 / 888,
  8560. bottom: 0.03
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Normal",
  8567. height: math.unit(5 + 7 / 12, "feet")
  8568. },
  8569. {
  8570. name: "Macro",
  8571. height: math.unit(200, "feet"),
  8572. default: true
  8573. }
  8574. ]
  8575. ))
  8576. characterMakers.push(() => makeCharacter(
  8577. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8578. {
  8579. front: {
  8580. height: math.unit(6, "feet"),
  8581. weight: math.unit(150, "lbs"),
  8582. name: "Front",
  8583. image: {
  8584. source: "./media/characters/nova/front.svg",
  8585. extra: 5000 / 4722,
  8586. bottom: 0.02
  8587. }
  8588. }
  8589. },
  8590. [
  8591. {
  8592. name: "Micro-",
  8593. height: math.unit(0.8, "inches")
  8594. },
  8595. {
  8596. name: "Micro",
  8597. height: math.unit(2, "inches"),
  8598. default: true
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8604. {
  8605. front: {
  8606. height: math.unit(3 + 1 / 12, "feet"),
  8607. weight: math.unit(21.7, "lbs"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/argent/front.svg",
  8611. extra: 1471 / 1331,
  8612. bottom: 100.8 / 1575.5
  8613. }
  8614. }
  8615. },
  8616. [
  8617. {
  8618. name: "Micro",
  8619. height: math.unit(2, "inches")
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(3 + 1 / 12, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Macro",
  8628. height: math.unit(120, "feet")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8634. {
  8635. lamp: {
  8636. height: math.unit(7 * 1559 / 989, "feet"),
  8637. name: "Magic Lamp",
  8638. image: {
  8639. source: "./media/characters/mira-al-cul/lamp.svg",
  8640. extra: 1617 / 1559
  8641. }
  8642. },
  8643. front: {
  8644. height: math.unit(7, "feet"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/mira-al-cul/front.svg",
  8648. extra: 1044 / 990
  8649. }
  8650. },
  8651. },
  8652. [
  8653. {
  8654. name: "Heavily Restricted",
  8655. height: math.unit(7 * 1559 / 989, "feet")
  8656. },
  8657. {
  8658. name: "Freshly Freed",
  8659. height: math.unit(50 * 1559 / 989, "feet")
  8660. },
  8661. {
  8662. name: "World Encompassing",
  8663. height: math.unit(10000 * 1559 / 989, "miles")
  8664. },
  8665. {
  8666. name: "Galactic",
  8667. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8668. },
  8669. {
  8670. name: "Palmed Universe",
  8671. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8672. default: true
  8673. },
  8674. {
  8675. name: "Multiversal Matriarch",
  8676. height: math.unit(8.87e10, "yottameters")
  8677. },
  8678. {
  8679. name: "Void Mother",
  8680. height: math.unit(3.14e110, "yottaparsecs")
  8681. },
  8682. {
  8683. name: "Toying with Transcendence",
  8684. height: math.unit(1e307, "meters")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8690. {
  8691. front: {
  8692. height: math.unit(17 + 1 / 12, "feet"),
  8693. weight: math.unit(476.2 * 5, "lbs"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/kuro-shi-uchū/front.svg",
  8697. extra: 2329 / 1835,
  8698. bottom: 0.02
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(2, "inches")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(12, "meters")
  8710. },
  8711. {
  8712. name: "Planetary",
  8713. height: math.unit(0.00929, "AU"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Universal",
  8718. height: math.unit(20, "gigaparsecs")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(5 + 2 / 12, "feet"),
  8727. weight: math.unit(120, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/katherine/front.svg",
  8731. extra: 2075 / 1969
  8732. }
  8733. },
  8734. dress: {
  8735. height: math.unit(5 + 2 / 12, "feet"),
  8736. weight: math.unit(120, "lbs"),
  8737. name: "Dress",
  8738. image: {
  8739. source: "./media/characters/katherine/dress.svg",
  8740. extra: 2258 / 2064
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Micro",
  8747. height: math.unit(1, "inches"),
  8748. default: true
  8749. },
  8750. {
  8751. name: "Normal",
  8752. height: math.unit(5 + 2 / 12, "feet")
  8753. },
  8754. {
  8755. name: "Macro",
  8756. height: math.unit(100, "meters")
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(80, "miles")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(7 + 8 / 12, "feet"),
  8769. weight: math.unit(250, "lbs"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/yevis/front.svg",
  8773. extra: 1938 / 1755
  8774. }
  8775. }
  8776. },
  8777. [
  8778. {
  8779. name: "Mortal",
  8780. height: math.unit(7 + 8 / 12, "feet")
  8781. },
  8782. {
  8783. name: "Battle",
  8784. height: math.unit(25 + 11 / 12, "feet")
  8785. },
  8786. {
  8787. name: "Wrath",
  8788. height: math.unit(1654 + 11 / 12, "feet")
  8789. },
  8790. {
  8791. name: "Planet Destroyer",
  8792. height: math.unit(12000, "miles")
  8793. },
  8794. {
  8795. name: "Galaxy Conqueror",
  8796. height: math.unit(1.45, "zettameters"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Universal War",
  8801. height: math.unit(184, "gigaparsecs")
  8802. },
  8803. {
  8804. name: "Eternity War",
  8805. height: math.unit(1.98e55, "yottaparsecs")
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(5 + 8 / 12, "feet"),
  8814. weight: math.unit(63, "kg"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/xavier/front.svg",
  8818. extra: 944 / 883
  8819. }
  8820. },
  8821. frontStretch: {
  8822. height: math.unit(5 + 8 / 12, "feet"),
  8823. weight: math.unit(63, "kg"),
  8824. name: "Stretching",
  8825. image: {
  8826. source: "./media/characters/xavier/front-stretch.svg",
  8827. extra: 962 / 820
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(5 + 8 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(100, "meters"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "McLargeHuge",
  8843. height: math.unit(10, "miles")
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(5 + 5 / 12, "feet"),
  8852. weight: math.unit(150, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/joshii/front.svg",
  8856. extra: 765 / 653,
  8857. bottom: 51 / 816
  8858. }
  8859. },
  8860. foot: {
  8861. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8862. name: "Foot",
  8863. image: {
  8864. source: "./media/characters/joshii/foot.svg"
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(2, "inches"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(5 + 5 / 12, "feet")
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(785, "feet")
  8881. },
  8882. {
  8883. name: "Megamacro",
  8884. height: math.unit(24.5, "miles")
  8885. },
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(150, "lb"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/goddess-elizabeth/front.svg",
  8897. extra: 1800 / 1525,
  8898. bottom: 0.005
  8899. }
  8900. },
  8901. foot: {
  8902. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8903. name: "Foot",
  8904. image: {
  8905. source: "./media/characters/goddess-elizabeth/foot.svg"
  8906. }
  8907. },
  8908. mouth: {
  8909. height: math.unit(6, "feet"),
  8910. name: "Mouth",
  8911. image: {
  8912. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Micro",
  8919. height: math.unit(12, "feet")
  8920. },
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(80, "miles"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Macro",
  8928. height: math.unit(15000, "parsecs")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(5 + 9 / 12, "feet"),
  8937. weight: math.unit(144, "lb"),
  8938. name: "Front",
  8939. image: {
  8940. source: "./media/characters/kara/front.svg"
  8941. }
  8942. },
  8943. feet: {
  8944. height: math.unit(6 / 6.765, "feet"),
  8945. name: "Kara's Feet",
  8946. rename: true,
  8947. image: {
  8948. source: "./media/characters/kara/feet.svg"
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Normal",
  8955. height: math.unit(5 + 9 / 12, "feet")
  8956. },
  8957. {
  8958. name: "Macro",
  8959. height: math.unit(174, "feet"),
  8960. default: true
  8961. },
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8966. {
  8967. front: {
  8968. height: math.unit(18, "feet"),
  8969. weight: math.unit(4050, "lb"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/tyrone/front.svg",
  8973. extra: 2405 / 2270,
  8974. bottom: 182 / 2587
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(18, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(300, "feet")
  8987. },
  8988. {
  8989. name: "Megamacro",
  8990. height: math.unit(15, "km")
  8991. },
  8992. {
  8993. name: "Gigamacro",
  8994. height: math.unit(500, "km")
  8995. },
  8996. {
  8997. name: "Teramacro",
  8998. height: math.unit(0.5, "gigameters")
  8999. },
  9000. {
  9001. name: "Omnimacro",
  9002. height: math.unit(1e252, "yottauniverse")
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(7 + 8 / 12, "feet"),
  9011. weight: math.unit(120, "lb"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/danny/front.svg",
  9015. extra: 1490 / 1350
  9016. }
  9017. },
  9018. back: {
  9019. height: math.unit(7 + 8 / 12, "feet"),
  9020. weight: math.unit(120, "lb"),
  9021. name: "Back",
  9022. image: {
  9023. source: "./media/characters/danny/back.svg",
  9024. extra: 1490 / 1350
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(7 + 8 / 12, "feet"),
  9032. default: true
  9033. },
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(3.5, "inches"),
  9041. weight: math.unit(19, "grams"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/mallow/front.svg",
  9045. extra: 471 / 431
  9046. }
  9047. },
  9048. back: {
  9049. height: math.unit(3.5, "inches"),
  9050. weight: math.unit(19, "grams"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/mallow/back.svg",
  9054. extra: 471 / 431
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(3.5, "inches"),
  9062. default: true
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(9, "feet"),
  9071. weight: math.unit(230, "kg"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/starry-aqua/front.svg"
  9075. }
  9076. },
  9077. back: {
  9078. height: math.unit(9, "feet"),
  9079. weight: math.unit(230, "kg"),
  9080. name: "Back",
  9081. image: {
  9082. source: "./media/characters/starry-aqua/back.svg"
  9083. }
  9084. },
  9085. hand: {
  9086. height: math.unit(9 * 0.1168, "feet"),
  9087. name: "Hand",
  9088. image: {
  9089. source: "./media/characters/starry-aqua/hand.svg"
  9090. }
  9091. },
  9092. foot: {
  9093. height: math.unit(9 * 0.18, "feet"),
  9094. name: "Foot",
  9095. image: {
  9096. source: "./media/characters/starry-aqua/foot.svg"
  9097. }
  9098. }
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(3, "inches")
  9104. },
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(9, "feet")
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(300, "feet"),
  9112. default: true
  9113. },
  9114. {
  9115. name: "Megamacro",
  9116. height: math.unit(3200, "feet")
  9117. }
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(15, "feet"),
  9125. weight: math.unit(5026, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/luka-towers/front.svg",
  9129. extra: 1269/1133,
  9130. bottom: 51/1320
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(15, "feet"),
  9138. default: true
  9139. },
  9140. {
  9141. name: "Minimacro",
  9142. height: math.unit(25, "feet")
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(320, "feet")
  9147. },
  9148. {
  9149. name: "Megamacro",
  9150. height: math.unit(35000, "feet")
  9151. },
  9152. {
  9153. name: "Gigamacro",
  9154. height: math.unit(4000, "miles")
  9155. },
  9156. {
  9157. name: "Teramacro",
  9158. height: math.unit(15000, "miles")
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9164. {
  9165. front: {
  9166. height: math.unit(6, "feet"),
  9167. weight: math.unit(150, "lb"),
  9168. name: "Front",
  9169. image: {
  9170. source: "./media/characters/natalie-nightring/front.svg",
  9171. extra: 1,
  9172. bottom: 0.06
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Uh Oh",
  9179. height: math.unit(0.1, "mm")
  9180. },
  9181. {
  9182. name: "Small",
  9183. height: math.unit(3, "inches")
  9184. },
  9185. {
  9186. name: "Human Scale",
  9187. height: math.unit(6, "feet")
  9188. },
  9189. {
  9190. name: "Librarian",
  9191. height: math.unit(50, "feet"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Immense",
  9196. height: math.unit(200, "miles")
  9197. },
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(180, "lbs"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/danni-rosie/front.svg",
  9209. extra: 1260 / 1128,
  9210. bottom: 0.022
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Micro",
  9217. height: math.unit(2, "inches"),
  9218. default: true
  9219. },
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(5 + 9 / 12, "feet"),
  9227. weight: math.unit(220, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/samantha-kruse/front.svg",
  9231. extra: (985 / 935),
  9232. bottom: 0.03
  9233. }
  9234. },
  9235. frontUndressed: {
  9236. height: math.unit(5 + 9 / 12, "feet"),
  9237. weight: math.unit(220, "lb"),
  9238. name: "Front (Undressed)",
  9239. image: {
  9240. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9241. extra: (973 / 923),
  9242. bottom: 0.025
  9243. }
  9244. },
  9245. fat: {
  9246. height: math.unit(5 + 9 / 12, "feet"),
  9247. weight: math.unit(900, "lb"),
  9248. name: "Front (Fat)",
  9249. image: {
  9250. source: "./media/characters/samantha-kruse/fat.svg",
  9251. extra: 2688 / 2561
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Normal",
  9258. height: math.unit(5 + 9 / 12, "feet"),
  9259. default: true
  9260. }
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9265. {
  9266. back: {
  9267. height: math.unit(5 + 4 / 12, "feet"),
  9268. weight: math.unit(4963, "lb"),
  9269. name: "Back",
  9270. image: {
  9271. source: "./media/characters/amelia-rosie/back.svg",
  9272. extra: 1113 / 963,
  9273. bottom: 0.01
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Level 0",
  9280. height: math.unit(5 + 4 / 12, "feet")
  9281. },
  9282. {
  9283. name: "Level 1",
  9284. height: math.unit(164597, "feet"),
  9285. default: true
  9286. },
  9287. {
  9288. name: "Level 2",
  9289. height: math.unit(956243, "miles")
  9290. },
  9291. {
  9292. name: "Level 3",
  9293. height: math.unit(29421709423, "miles")
  9294. },
  9295. {
  9296. name: "Level 4",
  9297. height: math.unit(154, "lightyears")
  9298. },
  9299. {
  9300. name: "Level 5",
  9301. height: math.unit(4738272, "lightyears")
  9302. },
  9303. {
  9304. name: "Level 6",
  9305. height: math.unit(145787152896, "lightyears")
  9306. },
  9307. ]
  9308. ))
  9309. characterMakers.push(() => makeCharacter(
  9310. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9311. {
  9312. front: {
  9313. height: math.unit(5 + 11 / 12, "feet"),
  9314. weight: math.unit(65, "kg"),
  9315. name: "Front",
  9316. image: {
  9317. source: "./media/characters/rook-kitara/front.svg",
  9318. extra: 1347 / 1274,
  9319. bottom: 0.005
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Totally Unfair",
  9326. height: math.unit(1.8, "mm")
  9327. },
  9328. {
  9329. name: "Lap Rookie",
  9330. height: math.unit(1.4, "feet")
  9331. },
  9332. {
  9333. name: "Normal",
  9334. height: math.unit(5 + 11 / 12, "feet"),
  9335. default: true
  9336. },
  9337. {
  9338. name: "How Did This Happen",
  9339. height: math.unit(80, "miles")
  9340. }
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(7, "feet"),
  9348. weight: math.unit(300, "lb"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/pisces/front.svg",
  9352. extra: 2255 / 2115,
  9353. bottom: 0.03
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(7, "feet"),
  9358. weight: math.unit(300, "lb"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/pisces/back.svg",
  9362. extra: 2146 / 2055,
  9363. bottom: 0.04
  9364. }
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(7, "feet"),
  9371. default: true
  9372. },
  9373. {
  9374. name: "Swimming Pool",
  9375. height: math.unit(12.2, "meters")
  9376. },
  9377. {
  9378. name: "Olympic Swimming Pool",
  9379. height: math.unit(56.3, "meters")
  9380. },
  9381. {
  9382. name: "Lake Superior",
  9383. height: math.unit(93900, "meters")
  9384. },
  9385. {
  9386. name: "Mediterranean Sea",
  9387. height: math.unit(644457, "meters")
  9388. },
  9389. {
  9390. name: "World's Oceans",
  9391. height: math.unit(4567491, "meters")
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(2.3, "meters"),
  9400. weight: math.unit(120, "kg"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/zelas/front.svg"
  9404. }
  9405. },
  9406. side: {
  9407. height: math.unit(2.3, "meters"),
  9408. weight: math.unit(120, "kg"),
  9409. name: "Side",
  9410. image: {
  9411. source: "./media/characters/zelas/side.svg"
  9412. }
  9413. },
  9414. back: {
  9415. height: math.unit(2.3, "meters"),
  9416. weight: math.unit(120, "kg"),
  9417. name: "Back",
  9418. image: {
  9419. source: "./media/characters/zelas/back.svg"
  9420. }
  9421. },
  9422. foot: {
  9423. height: math.unit(1.116, "feet"),
  9424. name: "Foot",
  9425. image: {
  9426. source: "./media/characters/zelas/foot.svg"
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(2.3, "meters")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(30, "meters"),
  9438. default: true
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(1, "inch"),
  9447. weight: math.unit(0.21, "grams"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/talbot/front.svg",
  9451. extra: 594 / 544
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Micro",
  9458. height: math.unit(1, "inch"),
  9459. default: true
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9465. {
  9466. front: {
  9467. height: math.unit(3 + 3 / 12, "feet"),
  9468. weight: math.unit(51.8, "lb"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/fliss/front.svg",
  9472. extra: 840 / 640
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Teeny Tiny",
  9479. height: math.unit(1, "mm")
  9480. },
  9481. {
  9482. name: "Small",
  9483. height: math.unit(1, "inch"),
  9484. default: true
  9485. },
  9486. {
  9487. name: "Standard Sylveon",
  9488. height: math.unit(3 + 3 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Large Nuisance",
  9492. height: math.unit(33, "feet")
  9493. },
  9494. {
  9495. name: "City Filler",
  9496. height: math.unit(3000, "feet")
  9497. },
  9498. {
  9499. name: "New Horizon",
  9500. height: math.unit(6000, "miles")
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9506. {
  9507. front: {
  9508. height: math.unit(5, "cm"),
  9509. weight: math.unit(1.94, "g"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/fleta/front.svg",
  9513. extra: 835 / 803
  9514. }
  9515. },
  9516. back: {
  9517. height: math.unit(5, "cm"),
  9518. weight: math.unit(1.94, "g"),
  9519. name: "Back",
  9520. image: {
  9521. source: "./media/characters/fleta/back.svg",
  9522. extra: 835 / 803
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(5, "cm"),
  9530. default: true
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(6, "feet"),
  9539. weight: math.unit(225, "lb"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/dominic/front.svg",
  9543. extra: 1770 / 1620,
  9544. bottom: 0.025
  9545. }
  9546. },
  9547. back: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(225, "lb"),
  9550. name: "Back",
  9551. image: {
  9552. source: "./media/characters/dominic/back.svg",
  9553. extra: 1745 / 1620,
  9554. bottom: 0.065
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Nano",
  9561. height: math.unit(0.1, "mm")
  9562. },
  9563. {
  9564. name: "Micro-",
  9565. height: math.unit(1, "mm")
  9566. },
  9567. {
  9568. name: "Micro",
  9569. height: math.unit(4, "inches")
  9570. },
  9571. {
  9572. name: "Normal",
  9573. height: math.unit(6 + 4 / 12, "feet"),
  9574. default: true
  9575. },
  9576. {
  9577. name: "Macro",
  9578. height: math.unit(115, "feet")
  9579. },
  9580. {
  9581. name: "Macro+",
  9582. height: math.unit(955, "feet")
  9583. },
  9584. {
  9585. name: "Megamacro",
  9586. height: math.unit(8990, "feet")
  9587. },
  9588. {
  9589. name: "Gigmacro",
  9590. height: math.unit(9310, "miles")
  9591. },
  9592. {
  9593. name: "Teramacro",
  9594. height: math.unit(1567005010, "miles")
  9595. },
  9596. {
  9597. name: "Examacro",
  9598. height: math.unit(1425, "parsecs")
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(400, "feet"),
  9607. weight: math.unit(44444444, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/major-colonel/front.svg"
  9611. }
  9612. },
  9613. back: {
  9614. height: math.unit(400, "feet"),
  9615. weight: math.unit(44444444, "lb"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/major-colonel/back.svg"
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Macro",
  9625. height: math.unit(400, "feet"),
  9626. default: true
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9632. {
  9633. catFront: {
  9634. height: math.unit(6, "feet"),
  9635. weight: math.unit(120, "lb"),
  9636. name: "Front (Cat Side)",
  9637. image: {
  9638. source: "./media/characters/axel-lycan/cat-front.svg",
  9639. extra: 430 / 402,
  9640. bottom: 43 / 472.35
  9641. }
  9642. },
  9643. catBack: {
  9644. height: math.unit(6, "feet"),
  9645. weight: math.unit(120, "lb"),
  9646. name: "Back (Cat Side)",
  9647. image: {
  9648. source: "./media/characters/axel-lycan/cat-back.svg",
  9649. extra: 447 / 419,
  9650. bottom: 23.3 / 469
  9651. }
  9652. },
  9653. wolfFront: {
  9654. height: math.unit(6, "feet"),
  9655. weight: math.unit(120, "lb"),
  9656. name: "Front (Wolf Side)",
  9657. image: {
  9658. source: "./media/characters/axel-lycan/wolf-front.svg",
  9659. extra: 485 / 456,
  9660. bottom: 19 / 504
  9661. }
  9662. },
  9663. wolfBack: {
  9664. height: math.unit(6, "feet"),
  9665. weight: math.unit(120, "lb"),
  9666. name: "Back (Wolf Side)",
  9667. image: {
  9668. source: "./media/characters/axel-lycan/wolf-back.svg",
  9669. extra: 475 / 438,
  9670. bottom: 39.2 / 514
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Macro",
  9677. height: math.unit(1, "km"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(5 + 9 / 12, "feet"),
  9687. weight: math.unit(175, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/vanrel-hyena/front.svg",
  9691. extra: 1086 / 1010,
  9692. bottom: 0.04
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(5 + 9 / 12, "feet"),
  9700. default: true
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9706. {
  9707. front: {
  9708. height: math.unit(6, "feet"),
  9709. weight: math.unit(103, "lb"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/abbott-absol/front.svg",
  9713. extra: 2010 / 1842
  9714. }
  9715. },
  9716. },
  9717. [
  9718. {
  9719. name: "Megamicro",
  9720. height: math.unit(0.1, "mm")
  9721. },
  9722. {
  9723. name: "Micro",
  9724. height: math.unit(1, "inch")
  9725. },
  9726. {
  9727. name: "Normal",
  9728. height: math.unit(6, "feet"),
  9729. default: true
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(6, "feet"),
  9738. weight: math.unit(264, "lb"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/hector/front.svg",
  9742. extra: 2280 / 2130,
  9743. bottom: 0.07
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(12.25, "foot"),
  9751. default: true
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(160, "feet")
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(6, "feet"),
  9764. weight: math.unit(150, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/sal/front.svg",
  9768. extra: 1846 / 1699,
  9769. bottom: 0.04
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Megamacro",
  9776. height: math.unit(10, "miles"),
  9777. default: true
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9783. {
  9784. front: {
  9785. height: math.unit(3, "meters"),
  9786. weight: math.unit(450, "kg"),
  9787. name: "front",
  9788. image: {
  9789. source: "./media/characters/ranger/front.svg",
  9790. extra: 2401 / 2243,
  9791. bottom: 0.05
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(3, "meters"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(14, "feet"),
  9808. weight: math.unit(800, "kg"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/theresa/front.svg",
  9812. extra: 3575 / 3346,
  9813. bottom: 0.03
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(14, "feet"),
  9821. default: true
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9827. {
  9828. front: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(3, "kg"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/ine/front.svg",
  9834. extra: 678 / 539,
  9835. bottom: 0.023
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(2.265, "feet"),
  9843. default: true
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9849. {
  9850. front: {
  9851. height: math.unit(5, "feet"),
  9852. weight: math.unit(30, "kg"),
  9853. name: "Front",
  9854. image: {
  9855. source: "./media/characters/vial/front.svg",
  9856. extra: 1365 / 1277,
  9857. bottom: 0.04
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(5, "feet"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9871. {
  9872. side: {
  9873. height: math.unit(3.4, "meters"),
  9874. weight: math.unit(1000, "lb"),
  9875. name: "Side",
  9876. image: {
  9877. source: "./media/characters/rovoska/side.svg",
  9878. extra: 4403 / 1515
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(3.4, "meters"),
  9886. default: true
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(8, "feet"),
  9895. weight: math.unit(315, "lb"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/gunner-rotthbauer/front.svg"
  9899. }
  9900. },
  9901. back: {
  9902. height: math.unit(8, "feet"),
  9903. weight: math.unit(315, "lb"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/gunner-rotthbauer/back.svg"
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Micro",
  9913. height: math.unit(3.5, "inches")
  9914. },
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(8, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(250, "feet")
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(1, "AU")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(5 + 5 / 12, "feet"),
  9935. weight: math.unit(140, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/allatia/front.svg",
  9939. extra: 1227 / 1180,
  9940. bottom: 0.027
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(5 + 5 / 12, "feet")
  9948. },
  9949. {
  9950. name: "Macro",
  9951. height: math.unit(250, "feet"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(8, "miles")
  9957. }
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(120, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/tene/front.svg",
  9969. extra: 1728 / 1578,
  9970. bottom: 0.022
  9971. }
  9972. },
  9973. stomping: {
  9974. height: math.unit(2.025, "meters"),
  9975. weight: math.unit(120, "lb"),
  9976. name: "Stomping",
  9977. image: {
  9978. source: "./media/characters/tene/stomping.svg",
  9979. extra: 938 / 873,
  9980. bottom: 0.01
  9981. }
  9982. },
  9983. sitting: {
  9984. height: math.unit(1, "meter"),
  9985. weight: math.unit(120, "lb"),
  9986. name: "Sitting",
  9987. image: {
  9988. source: "./media/characters/tene/sitting.svg",
  9989. extra: 437 / 415,
  9990. bottom: 0.1
  9991. }
  9992. },
  9993. feral: {
  9994. height: math.unit(3.9, "feet"),
  9995. weight: math.unit(250, "lb"),
  9996. name: "Feral",
  9997. image: {
  9998. source: "./media/characters/tene/feral.svg",
  9999. extra: 717 / 458,
  10000. bottom: 0.179
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(6, "feet")
  10008. },
  10009. {
  10010. name: "Macro",
  10011. height: math.unit(300, "feet"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Megamacro",
  10016. height: math.unit(5, "miles")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10022. {
  10023. side: {
  10024. height: math.unit(6, "feet"),
  10025. name: "Side",
  10026. image: {
  10027. source: "./media/characters/evander/side.svg",
  10028. extra: 877 / 477
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(0.83, "meters"),
  10036. default: true
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(12, "feet"),
  10045. weight: math.unit(1000, "lb"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10049. extra: 1762 / 1611
  10050. }
  10051. },
  10052. back: {
  10053. height: math.unit(12, "feet"),
  10054. weight: math.unit(1000, "lb"),
  10055. name: "Back",
  10056. image: {
  10057. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10058. extra: 1762 / 1611
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(12, "feet"),
  10066. default: true
  10067. },
  10068. {
  10069. name: "Kaiju",
  10070. height: math.unit(150, "feet")
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10076. {
  10077. front: {
  10078. height: math.unit(6, "feet"),
  10079. weight: math.unit(150, "lb"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/zero-alurus/front.svg"
  10083. }
  10084. },
  10085. back: {
  10086. height: math.unit(6, "feet"),
  10087. weight: math.unit(150, "lb"),
  10088. name: "Back",
  10089. image: {
  10090. source: "./media/characters/zero-alurus/back.svg"
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(5 + 10 / 12, "feet")
  10098. },
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(60, "feet"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Macro+",
  10106. height: math.unit(450, "feet")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(200, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/mega-shi/front.svg",
  10119. extra: 1279 / 1250,
  10120. bottom: 0.02
  10121. }
  10122. },
  10123. back: {
  10124. height: math.unit(6, "feet"),
  10125. weight: math.unit(200, "lb"),
  10126. name: "Back",
  10127. image: {
  10128. source: "./media/characters/mega-shi/back.svg",
  10129. extra: 1279 / 1250,
  10130. bottom: 0.02
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Micro",
  10137. height: math.unit(16 + 6 / 12, "feet")
  10138. },
  10139. {
  10140. name: "Third Dimension",
  10141. height: math.unit(40, "meters")
  10142. },
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(660, "feet"),
  10146. default: true
  10147. },
  10148. {
  10149. name: "Megamacro",
  10150. height: math.unit(10, "miles")
  10151. },
  10152. {
  10153. name: "Planetary Launch",
  10154. height: math.unit(500, "miles")
  10155. },
  10156. {
  10157. name: "Interstellar",
  10158. height: math.unit(1e9, "miles")
  10159. },
  10160. {
  10161. name: "Leaving the Universe",
  10162. height: math.unit(1, "gigaparsec")
  10163. },
  10164. {
  10165. name: "Travelling Universes",
  10166. height: math.unit(30e15, "parsecs")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10172. {
  10173. front: {
  10174. height: math.unit(5 + 4/12, "feet"),
  10175. weight: math.unit(120, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/odyssey/front.svg",
  10179. extra: 1747/1571,
  10180. bottom: 47/1794
  10181. }
  10182. },
  10183. side: {
  10184. height: math.unit(5.1, "feet"),
  10185. weight: math.unit(120, "lb"),
  10186. name: "Side",
  10187. image: {
  10188. source: "./media/characters/odyssey/side.svg",
  10189. extra: 1847/1619,
  10190. bottom: 47/1894
  10191. }
  10192. },
  10193. lounging: {
  10194. height: math.unit(1.464, "feet"),
  10195. weight: math.unit(120, "lb"),
  10196. name: "Lounging",
  10197. image: {
  10198. source: "./media/characters/odyssey/lounging.svg",
  10199. extra: 1235/837,
  10200. bottom: 551/1786
  10201. }
  10202. },
  10203. },
  10204. [
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(5 + 4 / 12, "feet")
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(1, "km")
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(3000, "km")
  10216. },
  10217. {
  10218. name: "Gigamacro",
  10219. height: math.unit(1, "AU"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Omniversal",
  10224. height: math.unit(100e14, "lightyears")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(300, "lb"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/mekuto/front.svg",
  10237. extra: 921 / 832,
  10238. bottom: 0.03
  10239. }
  10240. },
  10241. hand: {
  10242. height: math.unit(6 / 10.24, "feet"),
  10243. name: "Hand",
  10244. image: {
  10245. source: "./media/characters/mekuto/hand.svg"
  10246. }
  10247. },
  10248. foot: {
  10249. height: math.unit(6 / 5.05, "feet"),
  10250. name: "Foot",
  10251. image: {
  10252. source: "./media/characters/mekuto/foot.svg"
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Minimicro",
  10259. height: math.unit(0.2, "inches")
  10260. },
  10261. {
  10262. name: "Micro",
  10263. height: math.unit(1.5, "inches")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(5 + 11 / 12, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Minimacro",
  10272. height: math.unit(17 + 9 / 12, "feet")
  10273. },
  10274. {
  10275. name: "Macro",
  10276. height: math.unit(177.5, "feet")
  10277. },
  10278. {
  10279. name: "Megamacro",
  10280. height: math.unit(152, "miles")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6.5, "inches"),
  10289. weight: math.unit(13, "oz"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/dafydd-tomos/front.svg",
  10293. extra: 2990 / 2603,
  10294. bottom: 0.03
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(6.5, "inches"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(6, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/splinter/front.svg",
  10315. extra: 2990 / 2882,
  10316. bottom: 0.04
  10317. }
  10318. },
  10319. back: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(150, "lb"),
  10322. name: "Back",
  10323. image: {
  10324. source: "./media/characters/splinter/back.svg",
  10325. extra: 2990 / 2882,
  10326. bottom: 0.04
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(6, "feet")
  10334. },
  10335. {
  10336. name: "Macro",
  10337. height: math.unit(230, "meters"),
  10338. default: true
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(4 + 10 / 12, "feet"),
  10347. weight: math.unit(480, "lb"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/snow-gabumon/front.svg",
  10351. extra: 1140 / 963,
  10352. bottom: 0.058
  10353. }
  10354. },
  10355. back: {
  10356. height: math.unit(4 + 10 / 12, "feet"),
  10357. weight: math.unit(480, "lb"),
  10358. name: "Back",
  10359. image: {
  10360. source: "./media/characters/snow-gabumon/back.svg",
  10361. extra: 1115 / 962,
  10362. bottom: 0.041
  10363. }
  10364. },
  10365. frontUndresed: {
  10366. height: math.unit(4 + 10 / 12, "feet"),
  10367. weight: math.unit(480, "lb"),
  10368. name: "Front (Undressed)",
  10369. image: {
  10370. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10371. extra: 1061 / 960,
  10372. bottom: 0.045
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(1, "inch")
  10380. },
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(4 + 10 / 12, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(200, "feet")
  10389. },
  10390. {
  10391. name: "Megamacro",
  10392. height: math.unit(120, "miles")
  10393. },
  10394. {
  10395. name: "Gigamacro",
  10396. height: math.unit(9800, "miles")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(1.7, "meters"),
  10405. weight: math.unit(140, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/moody/front.svg",
  10409. extra: 3226 / 3007,
  10410. bottom: 0.087
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Micro",
  10417. height: math.unit(1, "mm")
  10418. },
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(1.7, "meters"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Macro",
  10426. height: math.unit(80, "meters")
  10427. },
  10428. {
  10429. name: "Macro+",
  10430. height: math.unit(500, "meters")
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(6, "feet"),
  10439. weight: math.unit(150, "lb"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/zyas/front.svg",
  10443. extra: 1180 / 1120,
  10444. bottom: 0.045
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(10, "feet"),
  10452. default: true
  10453. },
  10454. {
  10455. name: "Macro",
  10456. height: math.unit(500, "feet")
  10457. },
  10458. {
  10459. name: "Megamacro",
  10460. height: math.unit(5, "miles")
  10461. },
  10462. {
  10463. name: "Teramacro",
  10464. height: math.unit(150000, "miles")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(6, "feet"),
  10473. weight: math.unit(150, "lb"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/cuon/front.svg",
  10477. extra: 1390 / 1320,
  10478. bottom: 0.008
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Micro",
  10485. height: math.unit(3, "inches")
  10486. },
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(18 + 9 / 12, "feet"),
  10490. default: true
  10491. },
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(360, "feet")
  10495. },
  10496. {
  10497. name: "Megamacro",
  10498. height: math.unit(360, "miles")
  10499. },
  10500. ]
  10501. ))
  10502. characterMakers.push(() => makeCharacter(
  10503. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10504. {
  10505. front: {
  10506. height: math.unit(2.4, "meters"),
  10507. weight: math.unit(70, "kg"),
  10508. name: "Front",
  10509. image: {
  10510. source: "./media/characters/nyanuxk/front.svg",
  10511. extra: 1172 / 1084,
  10512. bottom: 0.065
  10513. }
  10514. },
  10515. side: {
  10516. height: math.unit(2.4, "meters"),
  10517. weight: math.unit(70, "kg"),
  10518. name: "Side",
  10519. image: {
  10520. source: "./media/characters/nyanuxk/side.svg",
  10521. extra: 1190 / 1132,
  10522. bottom: 0.007
  10523. }
  10524. },
  10525. back: {
  10526. height: math.unit(2.4, "meters"),
  10527. weight: math.unit(70, "kg"),
  10528. name: "Back",
  10529. image: {
  10530. source: "./media/characters/nyanuxk/back.svg",
  10531. extra: 1200 / 1141,
  10532. bottom: 0.015
  10533. }
  10534. },
  10535. foot: {
  10536. height: math.unit(0.52, "meters"),
  10537. name: "Foot",
  10538. image: {
  10539. source: "./media/characters/nyanuxk/foot.svg"
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Micro",
  10546. height: math.unit(2, "cm")
  10547. },
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(2.4, "meters"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Smaller Macro",
  10555. height: math.unit(120, "meters")
  10556. },
  10557. {
  10558. name: "Bigger Macro",
  10559. height: math.unit(1.2, "km")
  10560. },
  10561. {
  10562. name: "Megamacro",
  10563. height: math.unit(15, "kilometers")
  10564. },
  10565. {
  10566. name: "Gigamacro",
  10567. height: math.unit(2000, "km")
  10568. },
  10569. {
  10570. name: "Teramacro",
  10571. height: math.unit(500000, "km")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10577. {
  10578. side: {
  10579. height: math.unit(6, "feet"),
  10580. name: "Side",
  10581. image: {
  10582. source: "./media/characters/ailbhe/side.svg",
  10583. extra: 757 / 464,
  10584. bottom: 0.041
  10585. }
  10586. },
  10587. },
  10588. [
  10589. {
  10590. name: "Normal",
  10591. height: math.unit(1.07, "meters"),
  10592. default: true
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(120, "kg"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/zevulfius/front.svg",
  10605. extra: 965 / 903
  10606. }
  10607. },
  10608. side: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(120, "kg"),
  10611. name: "Side",
  10612. image: {
  10613. source: "./media/characters/zevulfius/side.svg",
  10614. extra: 939 / 900
  10615. }
  10616. },
  10617. back: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(120, "kg"),
  10620. name: "Back",
  10621. image: {
  10622. source: "./media/characters/zevulfius/back.svg",
  10623. extra: 918 / 854,
  10624. bottom: 0.005
  10625. }
  10626. },
  10627. foot: {
  10628. height: math.unit(6 / 3.72, "feet"),
  10629. name: "Foot",
  10630. image: {
  10631. source: "./media/characters/zevulfius/foot.svg"
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Macro",
  10638. height: math.unit(750, "meters")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(20, "km"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Gigamacro",
  10647. height: math.unit(2000, "km")
  10648. },
  10649. {
  10650. name: "Teramacro",
  10651. height: math.unit(250000, "km")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(100, "feet"),
  10660. weight: math.unit(350, "kg"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/rikes/front.svg",
  10664. extra: 1565 / 1483,
  10665. bottom: 0.017
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(100, "feet"),
  10673. default: true
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(8, "feet"),
  10682. weight: math.unit(356, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/adam-silver-mane/front.svg",
  10686. extra: 1036/937,
  10687. bottom: 63/1099
  10688. }
  10689. },
  10690. side: {
  10691. height: math.unit(8, "feet"),
  10692. weight: math.unit(356, "lb"),
  10693. name: "Side",
  10694. image: {
  10695. source: "./media/characters/adam-silver-mane/side.svg",
  10696. extra: 997/901,
  10697. bottom: 59/1056
  10698. }
  10699. },
  10700. frontNsfw: {
  10701. height: math.unit(8, "feet"),
  10702. weight: math.unit(356, "lb"),
  10703. name: "Front (NSFW)",
  10704. image: {
  10705. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10706. extra: 1036/937,
  10707. bottom: 63/1099
  10708. }
  10709. },
  10710. sideNsfw: {
  10711. height: math.unit(8, "feet"),
  10712. weight: math.unit(356, "lb"),
  10713. name: "Side (NSFW)",
  10714. image: {
  10715. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10716. extra: 997/901,
  10717. bottom: 59/1056
  10718. }
  10719. },
  10720. dick: {
  10721. height: math.unit(2.1, "feet"),
  10722. name: "Dick",
  10723. image: {
  10724. source: "./media/characters/adam-silver-mane/dick.svg"
  10725. }
  10726. },
  10727. taur: {
  10728. height: math.unit(16, "feet"),
  10729. weight: math.unit(1500, "kg"),
  10730. name: "Taur",
  10731. image: {
  10732. source: "./media/characters/adam-silver-mane/taur.svg",
  10733. extra: 1713 / 1571,
  10734. bottom: 0.01
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(8, "feet")
  10742. },
  10743. {
  10744. name: "Minimacro",
  10745. height: math.unit(80, "feet")
  10746. },
  10747. {
  10748. name: "MDA",
  10749. height: math.unit(80, "meters")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(800, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Megamacro",
  10758. height: math.unit(8000, "feet")
  10759. },
  10760. {
  10761. name: "Gigamacro",
  10762. height: math.unit(800, "miles")
  10763. },
  10764. {
  10765. name: "Teramacro",
  10766. height: math.unit(80000, "miles")
  10767. },
  10768. {
  10769. name: "Celestial",
  10770. height: math.unit(8e6, "miles")
  10771. },
  10772. {
  10773. name: "Star Dragon",
  10774. height: math.unit(800000, "parsecs")
  10775. },
  10776. {
  10777. name: "Godly",
  10778. height: math.unit(800, "teraparsecs")
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(6, "feet"),
  10787. weight: math.unit(150, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/ky'owin/front.svg",
  10791. extra: 3888 / 3068,
  10792. bottom: 0.015
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(6 + 8 / 12, "feet")
  10800. },
  10801. {
  10802. name: "Large",
  10803. height: math.unit(68, "feet")
  10804. },
  10805. {
  10806. name: "Macro",
  10807. height: math.unit(132, "feet")
  10808. },
  10809. {
  10810. name: "Macro+",
  10811. height: math.unit(340, "feet")
  10812. },
  10813. {
  10814. name: "Macro++",
  10815. height: math.unit(680, "feet"),
  10816. default: true
  10817. },
  10818. {
  10819. name: "Megamacro",
  10820. height: math.unit(1, "mile")
  10821. },
  10822. {
  10823. name: "Megamacro+",
  10824. height: math.unit(10, "miles")
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(4, "feet"),
  10833. weight: math.unit(50, "lb"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/mal/front.svg",
  10837. extra: 785 / 724,
  10838. bottom: 0.07
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(4, "inches")
  10846. },
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(4, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(200, "feet")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(150, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/jordan-deware/front.svg",
  10867. extra: 1191 / 1012
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Nano",
  10874. height: math.unit(0.01, "mm")
  10875. },
  10876. {
  10877. name: "Minimicro",
  10878. height: math.unit(1, "mm")
  10879. },
  10880. {
  10881. name: "Micro",
  10882. height: math.unit(0.5, "inches")
  10883. },
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(4, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Minimacro",
  10891. height: math.unit(40, "meters")
  10892. },
  10893. {
  10894. name: "Small Macro",
  10895. height: math.unit(400, "meters")
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(4, "miles")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(40, "miles")
  10904. },
  10905. {
  10906. name: "Megamacro+",
  10907. height: math.unit(400, "miles")
  10908. },
  10909. {
  10910. name: "Gigamacro",
  10911. height: math.unit(400000, "miles")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10917. {
  10918. side: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Side",
  10922. image: {
  10923. source: "./media/characters/kimiko/side.svg",
  10924. extra: 600 / 358
  10925. }
  10926. },
  10927. },
  10928. [
  10929. {
  10930. name: "Normal",
  10931. height: math.unit(15, "feet"),
  10932. default: true
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(220, "feet")
  10937. },
  10938. {
  10939. name: "Macro+",
  10940. height: math.unit(1450, "feet")
  10941. },
  10942. {
  10943. name: "Megamacro",
  10944. height: math.unit(11500, "feet")
  10945. },
  10946. {
  10947. name: "Gigamacro",
  10948. height: math.unit(9500, "miles")
  10949. },
  10950. {
  10951. name: "Teramacro",
  10952. height: math.unit(2208005005, "miles")
  10953. },
  10954. {
  10955. name: "Examacro",
  10956. height: math.unit(2750, "parsecs")
  10957. },
  10958. {
  10959. name: "Zettamacro",
  10960. height: math.unit(101500, "parsecs")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(70, "kg"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/andrew-sleepy/front.svg"
  10973. }
  10974. },
  10975. side: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(70, "kg"),
  10978. name: "Side",
  10979. image: {
  10980. source: "./media/characters/andrew-sleepy/side.svg"
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Micro",
  10987. height: math.unit(1, "mm"),
  10988. default: true
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10994. {
  10995. front: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(150, "lb"),
  10998. name: "Front",
  10999. image: {
  11000. source: "./media/characters/judio/front.svg",
  11001. extra: 1258 / 1110
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(5 + 6 / 12, "feet")
  11009. },
  11010. {
  11011. name: "Macro",
  11012. height: math.unit(1000, "feet"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Megamacro",
  11017. height: math.unit(10, "miles")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(68, "kg"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/nomaxice/front.svg",
  11030. extra: 1498 / 1073,
  11031. bottom: 0.075
  11032. }
  11033. },
  11034. foot: {
  11035. height: math.unit(1.1, "feet"),
  11036. name: "Foot",
  11037. image: {
  11038. source: "./media/characters/nomaxice/foot.svg"
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Micro",
  11045. height: math.unit(8, "cm")
  11046. },
  11047. {
  11048. name: "Norm",
  11049. height: math.unit(1.82, "m")
  11050. },
  11051. {
  11052. name: "Norm+",
  11053. height: math.unit(8.8, "feet")
  11054. },
  11055. {
  11056. name: "Big",
  11057. height: math.unit(8, "meters"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(18, "meters")
  11063. },
  11064. {
  11065. name: "Macro+",
  11066. height: math.unit(88, "meters")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(12, "feet"),
  11075. weight: math.unit(1.5, "tons"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/dydros/front.svg",
  11079. extra: 863 / 800,
  11080. bottom: 0.015
  11081. }
  11082. },
  11083. back: {
  11084. height: math.unit(12, "feet"),
  11085. weight: math.unit(1.5, "tons"),
  11086. name: "Back",
  11087. image: {
  11088. source: "./media/characters/dydros/back.svg",
  11089. extra: 900 / 843,
  11090. bottom: 0.005
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(12, "feet"),
  11098. default: true
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(100, "kg"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/riggi/front.svg",
  11111. extra: 5787 / 5303
  11112. }
  11113. },
  11114. hyper: {
  11115. height: math.unit(6 * 5 / 3, "feet"),
  11116. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11117. name: "Hyper",
  11118. image: {
  11119. source: "./media/characters/riggi/hyper.svg",
  11120. extra: 3595 / 3485
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Small Macro",
  11127. height: math.unit(50, "feet")
  11128. },
  11129. {
  11130. name: "Default",
  11131. height: math.unit(200, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Loom",
  11136. height: math.unit(10000, "feet")
  11137. },
  11138. {
  11139. name: "Cruising Altitude",
  11140. height: math.unit(30000, "feet")
  11141. },
  11142. {
  11143. name: "Megamacro",
  11144. height: math.unit(100, "miles")
  11145. },
  11146. {
  11147. name: "Continent Sized",
  11148. height: math.unit(2800, "miles")
  11149. },
  11150. {
  11151. name: "Earth Sized",
  11152. height: math.unit(8000, "miles")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(250, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/alexi/front.svg",
  11165. extra: 3483 / 3291,
  11166. bottom: 0.04
  11167. }
  11168. },
  11169. back: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(250, "lb"),
  11172. name: "Back",
  11173. image: {
  11174. source: "./media/characters/alexi/back.svg",
  11175. extra: 3533 / 3356,
  11176. bottom: 0.021
  11177. }
  11178. },
  11179. frontTransforming: {
  11180. height: math.unit(8.58, "feet"),
  11181. weight: math.unit(1300, "lb"),
  11182. name: "Transforming",
  11183. image: {
  11184. source: "./media/characters/alexi/front-transforming.svg",
  11185. extra: 437 / 409,
  11186. bottom: 19 / 458.66
  11187. }
  11188. },
  11189. frontTransformed: {
  11190. height: math.unit(12.5, "feet"),
  11191. weight: math.unit(4000, "lb"),
  11192. name: "Transformed",
  11193. image: {
  11194. source: "./media/characters/alexi/front-transformed.svg",
  11195. extra: 639 / 614,
  11196. bottom: 30.55 / 671
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(14, "feet"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Minimacro",
  11208. height: math.unit(30, "meters")
  11209. },
  11210. {
  11211. name: "Macro",
  11212. height: math.unit(500, "meters")
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(9000, "km")
  11217. },
  11218. {
  11219. name: "Teramacro",
  11220. height: math.unit(384000, "km")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(150, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/kayroo/front.svg",
  11233. extra: 1153 / 1038,
  11234. bottom: 0.06
  11235. }
  11236. },
  11237. foot: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(150, "lb"),
  11240. name: "Foot",
  11241. image: {
  11242. source: "./media/characters/kayroo/foot.svg"
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(8, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Minimacro",
  11254. height: math.unit(250, "feet")
  11255. },
  11256. {
  11257. name: "Macro",
  11258. height: math.unit(2800, "feet")
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(5200, "feet")
  11263. },
  11264. {
  11265. name: "Gigamacro",
  11266. height: math.unit(27000, "feet")
  11267. },
  11268. {
  11269. name: "Omega",
  11270. height: math.unit(45000, "feet")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(18, "feet"),
  11279. weight: math.unit(5800, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/rhys/front.svg",
  11283. extra: 3386 / 3090,
  11284. bottom: 0.07
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(18, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Working Size",
  11296. height: math.unit(200, "feet")
  11297. },
  11298. {
  11299. name: "Demolition Size",
  11300. height: math.unit(2000, "feet")
  11301. },
  11302. {
  11303. name: "Maximum Licensed Size",
  11304. height: math.unit(5, "miles")
  11305. },
  11306. {
  11307. name: "Maximum Observed Size",
  11308. height: math.unit(10, "yottameters")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(6, "feet"),
  11317. weight: math.unit(250, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/toto/front.svg",
  11321. extra: 527 / 479,
  11322. bottom: 0.05
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Micro",
  11329. height: math.unit(3, "feet")
  11330. },
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(10, "feet")
  11334. },
  11335. {
  11336. name: "Macro",
  11337. height: math.unit(150, "feet"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Megamacro",
  11342. height: math.unit(1200, "feet")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "King", species: ["lion"], tags: ["anthro"] },
  11348. {
  11349. back: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(150, "lb"),
  11352. name: "Back",
  11353. image: {
  11354. source: "./media/characters/king/back.svg"
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(2, "inches")
  11362. },
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(8, "feet")
  11366. },
  11367. {
  11368. name: "Macro",
  11369. height: math.unit(200, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(50, "miles")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(11, "feet"),
  11383. weight: math.unit(1400, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/cordite/front.svg",
  11387. extra: 1919/1827,
  11388. bottom: 40/1959
  11389. }
  11390. },
  11391. side: {
  11392. height: math.unit(11, "feet"),
  11393. weight: math.unit(1400, "lb"),
  11394. name: "Side",
  11395. image: {
  11396. source: "./media/characters/cordite/side.svg",
  11397. extra: 1908/1793,
  11398. bottom: 38/1946
  11399. }
  11400. },
  11401. back: {
  11402. height: math.unit(11, "feet"),
  11403. weight: math.unit(1400, "lb"),
  11404. name: "Back",
  11405. image: {
  11406. source: "./media/characters/cordite/back.svg",
  11407. extra: 1938/1837,
  11408. bottom: 10/1948
  11409. }
  11410. },
  11411. feral: {
  11412. height: math.unit(2, "feet"),
  11413. weight: math.unit(90, "lb"),
  11414. name: "Feral",
  11415. image: {
  11416. source: "./media/characters/cordite/feral.svg",
  11417. extra: 1260 / 755,
  11418. bottom: 0.05
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(11, "feet"),
  11426. default: true
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(6, "feet"),
  11435. weight: math.unit(150, "lb"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/pianostrong/front.svg",
  11439. extra: 6577 / 6254,
  11440. bottom: 0.02
  11441. }
  11442. },
  11443. side: {
  11444. height: math.unit(6, "feet"),
  11445. weight: math.unit(150, "lb"),
  11446. name: "Side",
  11447. image: {
  11448. source: "./media/characters/pianostrong/side.svg",
  11449. extra: 6106 / 5730
  11450. }
  11451. },
  11452. back: {
  11453. height: math.unit(6, "feet"),
  11454. weight: math.unit(150, "lb"),
  11455. name: "Back",
  11456. image: {
  11457. source: "./media/characters/pianostrong/back.svg",
  11458. extra: 6085 / 5733,
  11459. bottom: 0.01
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(100, "feet")
  11467. },
  11468. {
  11469. name: "Macro+",
  11470. height: math.unit(300, "feet"),
  11471. default: true
  11472. },
  11473. {
  11474. name: "Macro++",
  11475. height: math.unit(1000, "feet")
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(150, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/kona/front.svg",
  11488. extra: 2960 / 2629,
  11489. bottom: 0.005
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(11 + 8 / 12, "feet")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(850, "feet"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Macro+",
  11505. height: math.unit(1.5, "km"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Megamacro",
  11510. height: math.unit(80, "miles")
  11511. },
  11512. {
  11513. name: "Gigamacro",
  11514. height: math.unit(3500, "miles")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11520. {
  11521. side: {
  11522. height: math.unit(1.9, "meters"),
  11523. weight: math.unit(326, "kg"),
  11524. name: "Side",
  11525. image: {
  11526. source: "./media/characters/levi/side.svg",
  11527. extra: 1704 / 1334,
  11528. bottom: 0.02
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(1.9, "meters"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(20, "meters")
  11541. },
  11542. {
  11543. name: "Macro+",
  11544. height: math.unit(200, "meters")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(2, "km")
  11549. },
  11550. {
  11551. name: "Megamacro+",
  11552. height: math.unit(20, "km")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(2500, "km")
  11557. },
  11558. {
  11559. name: "Gigamacro+",
  11560. height: math.unit(120000, "km")
  11561. },
  11562. {
  11563. name: "Teramacro",
  11564. height: math.unit(7.77e6, "km")
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(6 + 4/12, "feet"),
  11573. weight: math.unit(190, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/bmc/front.svg",
  11577. extra: 1626/1472,
  11578. bottom: 79/1705
  11579. }
  11580. },
  11581. back: {
  11582. height: math.unit(6 + 4/12, "feet"),
  11583. weight: math.unit(190, "lb"),
  11584. name: "Back",
  11585. image: {
  11586. source: "./media/characters/bmc/back.svg",
  11587. extra: 1640/1479,
  11588. bottom: 45/1685
  11589. }
  11590. },
  11591. frontArmor: {
  11592. height: math.unit(6 + 4/12, "feet"),
  11593. weight: math.unit(190, "lb"),
  11594. name: "Front-armor",
  11595. image: {
  11596. source: "./media/characters/bmc/front-armor.svg",
  11597. extra: 1538/1468,
  11598. bottom: 79/1617
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Human-sized",
  11605. height: math.unit(6 + 4 / 12, "feet")
  11606. },
  11607. {
  11608. name: "Interactive Size",
  11609. height: math.unit(25, "feet")
  11610. },
  11611. {
  11612. name: "Small",
  11613. height: math.unit(250, "feet")
  11614. },
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(1250, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Good Day",
  11622. height: math.unit(88, "miles")
  11623. },
  11624. {
  11625. name: "Largest Measured Size",
  11626. height: math.unit(105.960, "galaxies")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(20, "feet"),
  11635. weight: math.unit(2016, "kg"),
  11636. name: "Front",
  11637. image: {
  11638. source: "./media/characters/sven-the-kaiju/front.svg",
  11639. extra: 1277/1250,
  11640. bottom: 35/1312
  11641. }
  11642. },
  11643. mouth: {
  11644. height: math.unit(1.85, "feet"),
  11645. name: "Mouth",
  11646. image: {
  11647. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11648. }
  11649. },
  11650. },
  11651. [
  11652. {
  11653. name: "Fairy",
  11654. height: math.unit(6, "inches")
  11655. },
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(20, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Rampage",
  11663. height: math.unit(200, "feet")
  11664. },
  11665. {
  11666. name: "Archfey Forest Guardian",
  11667. height: math.unit(1, "mile")
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(4, "meters"),
  11676. weight: math.unit(2, "tons"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/marik/front.svg",
  11680. extra: 1057 / 1003,
  11681. bottom: 0.08
  11682. }
  11683. },
  11684. },
  11685. [
  11686. {
  11687. name: "Normal",
  11688. height: math.unit(4, "meters"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Macro",
  11693. height: math.unit(20, "meters")
  11694. },
  11695. {
  11696. name: "Megamacro",
  11697. height: math.unit(50, "km")
  11698. },
  11699. {
  11700. name: "Gigamacro",
  11701. height: math.unit(100, "km")
  11702. },
  11703. {
  11704. name: "Alpha Macro",
  11705. height: math.unit(7.88e7, "yottameters")
  11706. },
  11707. ]
  11708. ))
  11709. characterMakers.push(() => makeCharacter(
  11710. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11711. {
  11712. front: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(110, "lb"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/mel/front.svg",
  11718. extra: 736 / 617,
  11719. bottom: 0.017
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Pico",
  11726. height: math.unit(3, "pm")
  11727. },
  11728. {
  11729. name: "Nano",
  11730. height: math.unit(3, "nm")
  11731. },
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(0.3, "mm"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Micro+",
  11739. height: math.unit(3, "mm")
  11740. },
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(5 + 10.5 / 12, "feet")
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11749. {
  11750. kaiju: {
  11751. height: math.unit(1.75, "meters"),
  11752. weight: math.unit(55, "kg"),
  11753. name: "Kaiju",
  11754. image: {
  11755. source: "./media/characters/lykonous/kaiju.svg",
  11756. extra: 1055 / 946,
  11757. bottom: 0.135
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(2.5, "meters"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Kaiju Dragon",
  11769. height: math.unit(60, "meters")
  11770. },
  11771. {
  11772. name: "Mega Kaiju",
  11773. height: math.unit(120, "km")
  11774. },
  11775. {
  11776. name: "Giga Kaiju",
  11777. height: math.unit(200, "megameters")
  11778. },
  11779. {
  11780. name: "Terra Kaiju",
  11781. height: math.unit(400, "gigameters")
  11782. },
  11783. {
  11784. name: "Kaiju Dragon God",
  11785. height: math.unit(13000, "exaparsecs")
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Blü", species: ["dragon"], 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/blü/front.svg",
  11798. extra: 1883 / 1564,
  11799. bottom: 0.031
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(13, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Big Boi",
  11811. height: math.unit(150, "meters")
  11812. },
  11813. {
  11814. name: "Mini Stomper",
  11815. height: math.unit(300, "meters")
  11816. },
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(1000, "meters")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(11000, "meters")
  11824. },
  11825. {
  11826. name: "Gigamacro",
  11827. height: math.unit(11000, "km")
  11828. },
  11829. {
  11830. name: "Teramacro",
  11831. height: math.unit(420000, "km")
  11832. },
  11833. {
  11834. name: "Examacro",
  11835. height: math.unit(120, "parsecs")
  11836. },
  11837. {
  11838. name: "God Tho",
  11839. height: math.unit(98000000000, "parsecs")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11845. {
  11846. taurFront: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(200, "lb"),
  11849. name: "Taur (Front)",
  11850. image: {
  11851. source: "./media/characters/scales/taur-front.svg",
  11852. extra: 1,
  11853. bottom: 0.05
  11854. }
  11855. },
  11856. taurBack: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(200, "lb"),
  11859. name: "Taur (Back)",
  11860. image: {
  11861. source: "./media/characters/scales/taur-back.svg",
  11862. extra: 1,
  11863. bottom: 0.08
  11864. }
  11865. },
  11866. anthro: {
  11867. height: math.unit(6 * 7 / 12, "feet"),
  11868. weight: math.unit(100, "lb"),
  11869. name: "Anthro",
  11870. image: {
  11871. source: "./media/characters/scales/anthro.svg",
  11872. extra: 1,
  11873. bottom: 0.06
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(12, "feet"),
  11881. default: true
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(6, "feet"),
  11890. weight: math.unit(150, "lb"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/koragos/front.svg",
  11894. extra: 841 / 794,
  11895. bottom: 0.035
  11896. }
  11897. },
  11898. back: {
  11899. height: math.unit(6, "feet"),
  11900. weight: math.unit(150, "lb"),
  11901. name: "Back",
  11902. image: {
  11903. source: "./media/characters/koragos/back.svg",
  11904. extra: 841 / 810,
  11905. bottom: 0.022
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(6 + 11 / 12, "feet"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Macro",
  11917. height: math.unit(490, "feet")
  11918. },
  11919. {
  11920. name: "Megamacro",
  11921. height: math.unit(10, "miles")
  11922. },
  11923. {
  11924. name: "Gigamacro",
  11925. height: math.unit(50, "miles")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(250, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/xylrem/front.svg",
  11938. extra: 3323 / 3050,
  11939. bottom: 0.065
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(4, "feet")
  11947. },
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(16, "feet"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(2720, "feet")
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(25000, "miles")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(8, "feet"),
  11968. weight: math.unit(250, "kg"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/ikideru/front.svg",
  11972. extra: 930 / 870,
  11973. bottom: 0.087
  11974. }
  11975. },
  11976. back: {
  11977. height: math.unit(8, "feet"),
  11978. weight: math.unit(250, "kg"),
  11979. name: "Back",
  11980. image: {
  11981. source: "./media/characters/ikideru/back.svg",
  11982. extra: 919 / 852,
  11983. bottom: 0.055
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Rare",
  11990. height: math.unit(8, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Playful Loom",
  11995. height: math.unit(80, "feet")
  11996. },
  11997. {
  11998. name: "City Leaner",
  11999. height: math.unit(230, "feet")
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(2500, "feet")
  12004. },
  12005. {
  12006. name: "Gigamacro",
  12007. height: math.unit(26400, "feet")
  12008. },
  12009. {
  12010. name: "Tectonic Shifter",
  12011. height: math.unit(1.7, "megameters")
  12012. },
  12013. {
  12014. name: "Planet Carer",
  12015. height: math.unit(21, "megameters")
  12016. },
  12017. {
  12018. name: "God",
  12019. height: math.unit(11157.22, "parsecs")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(120, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/neo/front.svg"
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Micro",
  12038. height: math.unit(2, "inches"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Human Size",
  12043. height: math.unit(5 + 8 / 12, "feet")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(13 + 10 / 12, "feet"),
  12052. weight: math.unit(5320, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/chauncey-chantz/front.svg",
  12056. extra: 1587 / 1435,
  12057. bottom: 0.02
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Normal",
  12064. height: math.unit(13 + 10 / 12, "feet"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(45, "feet")
  12070. },
  12071. {
  12072. name: "Megamacro",
  12073. height: math.unit(250, "miles")
  12074. },
  12075. {
  12076. name: "Planetary",
  12077. height: math.unit(10000, "miles")
  12078. },
  12079. {
  12080. name: "Galactic",
  12081. height: math.unit(40000, "parsecs")
  12082. },
  12083. {
  12084. name: "Universal",
  12085. height: math.unit(1, "yottameter")
  12086. },
  12087. ]
  12088. ))
  12089. characterMakers.push(() => makeCharacter(
  12090. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12091. {
  12092. front: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(150, "lb"),
  12095. name: "Front",
  12096. image: {
  12097. source: "./media/characters/epifox/front.svg",
  12098. extra: 1,
  12099. bottom: 0.075
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Micro",
  12106. height: math.unit(6, "inches")
  12107. },
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(12, "feet"),
  12111. default: true
  12112. },
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(3810, "feet")
  12116. },
  12117. {
  12118. name: "Megamacro",
  12119. height: math.unit(500, "miles")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(1.8796, "m"),
  12128. weight: math.unit(230, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/colin-t/front.svg",
  12132. extra: 1272 / 1193,
  12133. bottom: 0.07
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Micro",
  12140. height: math.unit(0.571, "meters")
  12141. },
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(1.8796, "meters"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Tall",
  12149. height: math.unit(4, "meters")
  12150. },
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(67.241, "meters")
  12154. },
  12155. {
  12156. name: "Megamacro",
  12157. height: math.unit(371.856, "meters")
  12158. },
  12159. {
  12160. name: "Planetary",
  12161. height: math.unit(12631.5689, "km")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(1.85, "meters"),
  12170. weight: math.unit(80, "kg"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/matvei/front.svg",
  12174. extra: 614 / 594,
  12175. bottom: 0.01
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(1.85, "meters"),
  12183. default: true
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(5 + 9 / 12, "feet"),
  12192. weight: math.unit(70, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/quincy/front.svg",
  12196. extra: 3041 / 2751
  12197. }
  12198. },
  12199. back: {
  12200. height: math.unit(5 + 9 / 12, "feet"),
  12201. weight: math.unit(70, "lb"),
  12202. name: "Back",
  12203. image: {
  12204. source: "./media/characters/quincy/back.svg",
  12205. extra: 3041 / 2751
  12206. }
  12207. },
  12208. flying: {
  12209. height: math.unit(5 + 4 / 12, "feet"),
  12210. weight: math.unit(70, "lb"),
  12211. name: "Flying",
  12212. image: {
  12213. source: "./media/characters/quincy/flying.svg",
  12214. extra: 1044 / 930
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(3, "cm")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(5 + 9 / 12, "feet")
  12226. },
  12227. {
  12228. name: "Macro",
  12229. height: math.unit(200, "meters"),
  12230. default: true
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(1000, "meters")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(3 + 11/12, "feet"),
  12243. weight: math.unit(50, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/vanrel/front.svg",
  12247. extra: 1104/949,
  12248. bottom: 52/1156
  12249. }
  12250. },
  12251. back: {
  12252. height: math.unit(3 + 11/12, "feet"),
  12253. weight: math.unit(50, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/vanrel/back.svg",
  12257. extra: 1119/976,
  12258. bottom: 37/1156
  12259. }
  12260. },
  12261. tome: {
  12262. height: math.unit(1.35, "feet"),
  12263. weight: math.unit(10, "lb"),
  12264. name: "Vanrel's Tome",
  12265. rename: true,
  12266. image: {
  12267. source: "./media/characters/vanrel/tome.svg"
  12268. }
  12269. },
  12270. beans: {
  12271. height: math.unit(0.89, "feet"),
  12272. name: "Beans",
  12273. image: {
  12274. source: "./media/characters/vanrel/beans.svg"
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(3 + 11/12, "feet"),
  12282. default: true
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(7 + 5 / 12, "feet"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/kuiper-vanrel/front.svg",
  12294. extra: 1219/1169,
  12295. bottom: 69/1288
  12296. }
  12297. },
  12298. back: {
  12299. height: math.unit(7 + 5 / 12, "feet"),
  12300. name: "Back",
  12301. image: {
  12302. source: "./media/characters/kuiper-vanrel/back.svg",
  12303. extra: 1236/1193,
  12304. bottom: 27/1263
  12305. }
  12306. },
  12307. foot: {
  12308. height: math.unit(0.55, "meters"),
  12309. name: "Foot",
  12310. image: {
  12311. source: "./media/characters/kuiper-vanrel/foot.svg",
  12312. }
  12313. },
  12314. battle: {
  12315. height: math.unit(6.824, "feet"),
  12316. name: "Battle",
  12317. image: {
  12318. source: "./media/characters/kuiper-vanrel/battle.svg",
  12319. extra: 1466 / 1327,
  12320. bottom: 29 / 1492.5
  12321. }
  12322. },
  12323. meerkui: {
  12324. height: math.unit(18, "inches"),
  12325. name: "Meerkui",
  12326. image: {
  12327. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12328. extra: 1354/1289,
  12329. bottom: 69/1423
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(7 + 5 / 12, "feet"),
  12337. default: true
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(8 + 5 / 12, "feet"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/keset-vanrel/front.svg",
  12349. extra: 1231/1148,
  12350. bottom: 82/1313
  12351. }
  12352. },
  12353. back: {
  12354. height: math.unit(8 + 5 / 12, "feet"),
  12355. name: "Back",
  12356. image: {
  12357. source: "./media/characters/keset-vanrel/back.svg",
  12358. extra: 1240/1174,
  12359. bottom: 33/1273
  12360. }
  12361. },
  12362. hand: {
  12363. height: math.unit(0.6, "meters"),
  12364. name: "Hand",
  12365. image: {
  12366. source: "./media/characters/keset-vanrel/hand.svg"
  12367. }
  12368. },
  12369. foot: {
  12370. height: math.unit(0.94978, "meters"),
  12371. name: "Foot",
  12372. image: {
  12373. source: "./media/characters/keset-vanrel/foot.svg"
  12374. }
  12375. },
  12376. battle: {
  12377. height: math.unit(7.408, "feet"),
  12378. name: "Battle",
  12379. image: {
  12380. source: "./media/characters/keset-vanrel/battle.svg",
  12381. extra: 1890 / 1386,
  12382. bottom: 73.28 / 1970
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(8 + 5 / 12, "feet"),
  12390. default: true
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12396. {
  12397. front: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/neos/front.svg",
  12403. extra: 1696 / 992,
  12404. bottom: 0.14
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(54, "cm"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Macro",
  12416. height: math.unit(100, "m")
  12417. },
  12418. {
  12419. name: "Megamacro",
  12420. height: math.unit(10, "km")
  12421. },
  12422. {
  12423. name: "Megamacro+",
  12424. height: math.unit(100, "km")
  12425. },
  12426. {
  12427. name: "Gigamacro",
  12428. height: math.unit(100, "Mm")
  12429. },
  12430. {
  12431. name: "Teramacro",
  12432. height: math.unit(100, "Gm")
  12433. },
  12434. {
  12435. name: "Examacro",
  12436. height: math.unit(100, "Em")
  12437. },
  12438. {
  12439. name: "Godly",
  12440. height: math.unit(10000, "Ym")
  12441. },
  12442. {
  12443. name: "Beyond Godly",
  12444. height: math.unit(25, "multiverses")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12450. {
  12451. feminine: {
  12452. height: math.unit(5, "feet"),
  12453. weight: math.unit(100, "lb"),
  12454. name: "Feminine",
  12455. image: {
  12456. source: "./media/characters/sammy-mouse/feminine.svg",
  12457. extra: 2526 / 2425,
  12458. bottom: 0.123
  12459. }
  12460. },
  12461. masculine: {
  12462. height: math.unit(5, "feet"),
  12463. weight: math.unit(100, "lb"),
  12464. name: "Masculine",
  12465. image: {
  12466. source: "./media/characters/sammy-mouse/masculine.svg",
  12467. extra: 2526 / 2425,
  12468. bottom: 0.123
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Micro",
  12475. height: math.unit(5, "inches")
  12476. },
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(5, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Macro",
  12484. height: math.unit(60, "feet")
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(4, "feet"),
  12493. weight: math.unit(50, "lb"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/kole/front.svg",
  12497. extra: 1423 / 1303,
  12498. bottom: 0.025
  12499. }
  12500. },
  12501. back: {
  12502. height: math.unit(4, "feet"),
  12503. weight: math.unit(50, "lb"),
  12504. name: "Back",
  12505. image: {
  12506. source: "./media/characters/kole/back.svg",
  12507. extra: 1426 / 1280,
  12508. bottom: 0.02
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(4, "feet"),
  12516. default: true
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(2.5, "feet"),
  12525. weight: math.unit(32, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/rufran/front.svg",
  12529. extra: 1313/885,
  12530. bottom: 94/1407
  12531. }
  12532. },
  12533. side: {
  12534. height: math.unit(2.5, "feet"),
  12535. weight: math.unit(32, "lb"),
  12536. name: "Side",
  12537. image: {
  12538. source: "./media/characters/rufran/side.svg",
  12539. extra: 1109/852,
  12540. bottom: 118/1227
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(2.5, "feet"),
  12545. weight: math.unit(32, "lb"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/rufran/back.svg",
  12549. extra: 1280/878,
  12550. bottom: 131/1411
  12551. }
  12552. },
  12553. mouth: {
  12554. height: math.unit(1.13, "feet"),
  12555. name: "Mouth",
  12556. image: {
  12557. source: "./media/characters/rufran/mouth.svg"
  12558. }
  12559. },
  12560. foot: {
  12561. height: math.unit(1.33, "feet"),
  12562. name: "Foot",
  12563. image: {
  12564. source: "./media/characters/rufran/foot.svg"
  12565. }
  12566. },
  12567. koboldFront: {
  12568. height: math.unit(2 + 6 / 12, "feet"),
  12569. weight: math.unit(20, "lb"),
  12570. name: "Front (Kobold)",
  12571. image: {
  12572. source: "./media/characters/rufran/kobold-front.svg",
  12573. extra: 2041 / 1839,
  12574. bottom: 0.055
  12575. }
  12576. },
  12577. koboldBack: {
  12578. height: math.unit(2 + 6 / 12, "feet"),
  12579. weight: math.unit(20, "lb"),
  12580. name: "Back (Kobold)",
  12581. image: {
  12582. source: "./media/characters/rufran/kobold-back.svg",
  12583. extra: 2054 / 1839,
  12584. bottom: 0.01
  12585. }
  12586. },
  12587. koboldHand: {
  12588. height: math.unit(0.2166, "meters"),
  12589. name: "Hand (Kobold)",
  12590. image: {
  12591. source: "./media/characters/rufran/kobold-hand.svg"
  12592. }
  12593. },
  12594. koboldFoot: {
  12595. height: math.unit(0.185, "meters"),
  12596. name: "Foot (Kobold)",
  12597. image: {
  12598. source: "./media/characters/rufran/kobold-foot.svg"
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Micro",
  12605. height: math.unit(1, "inch")
  12606. },
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(2 + 6 / 12, "feet"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Big",
  12614. height: math.unit(60, "feet")
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(325, "feet")
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(0.3, "meters"),
  12627. weight: math.unit(3.5, "kg"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/chip/front.svg",
  12631. extra: 748 / 674
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Micro",
  12638. height: math.unit(1, "inch"),
  12639. default: true
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12645. {
  12646. side: {
  12647. height: math.unit(2.3, "meters"),
  12648. weight: math.unit(3500, "lb"),
  12649. name: "Side",
  12650. image: {
  12651. source: "./media/characters/torvid/side.svg",
  12652. extra: 1972 / 722,
  12653. bottom: 0.035
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Normal",
  12660. height: math.unit(2.3, "meters"),
  12661. default: true
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12667. {
  12668. front: {
  12669. height: math.unit(2, "meters"),
  12670. weight: math.unit(150.5, "kg"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/susan/front.svg",
  12674. extra: 693 / 635,
  12675. bottom: 0.05
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(505, "miles"),
  12683. default: true
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/raindrops/front.svg",
  12696. extra: 2655 / 2461,
  12697. bottom: 49 / 2705
  12698. }
  12699. },
  12700. back: {
  12701. height: math.unit(6, "feet"),
  12702. weight: math.unit(150, "lb"),
  12703. name: "Back",
  12704. image: {
  12705. source: "./media/characters/raindrops/back.svg",
  12706. extra: 2574 / 2400,
  12707. bottom: 65 / 2634
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Micro",
  12714. height: math.unit(6, "inches")
  12715. },
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(6 + 2 / 12, "feet")
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(131, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(15, "miles")
  12728. },
  12729. {
  12730. name: "Gigamacro",
  12731. height: math.unit(4000, "miles")
  12732. },
  12733. {
  12734. name: "Teramacro",
  12735. height: math.unit(315000, "miles")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(2.794, "meters"),
  12744. weight: math.unit(325, "kg"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/tezwa/front.svg",
  12748. extra: 2083 / 1906,
  12749. bottom: 0.031
  12750. }
  12751. },
  12752. foot: {
  12753. height: math.unit(0.687, "meters"),
  12754. name: "Foot",
  12755. image: {
  12756. source: "./media/characters/tezwa/foot.svg"
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(9 + 2 / 12, "feet"),
  12764. default: true
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(58, "feet"),
  12773. weight: math.unit(89000, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/typhus/front.svg",
  12777. extra: 816 / 800,
  12778. bottom: 0.065
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Macro",
  12785. height: math.unit(58, "feet"),
  12786. default: true
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(12, "feet"),
  12795. weight: math.unit(6, "tonnes"),
  12796. name: "Front",
  12797. image: {
  12798. source: "./media/characters/lyra-von-wulf/front.svg",
  12799. extra: 1,
  12800. bottom: 0.10
  12801. }
  12802. },
  12803. frontMecha: {
  12804. height: math.unit(12, "feet"),
  12805. weight: math.unit(12, "tonnes"),
  12806. name: "Front (Mecha)",
  12807. image: {
  12808. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12809. extra: 1,
  12810. bottom: 0.042
  12811. }
  12812. },
  12813. maw: {
  12814. height: math.unit(2.2, "feet"),
  12815. name: "Maw",
  12816. image: {
  12817. source: "./media/characters/lyra-von-wulf/maw.svg"
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Normal",
  12824. height: math.unit(12, "feet"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Classic",
  12829. height: math.unit(50, "feet")
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(500, "feet")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(1, "mile")
  12838. },
  12839. {
  12840. name: "Gigamacro",
  12841. height: math.unit(400, "miles")
  12842. },
  12843. {
  12844. name: "Teramacro",
  12845. height: math.unit(22000, "miles")
  12846. },
  12847. {
  12848. name: "Solarmacro",
  12849. height: math.unit(8600000, "miles")
  12850. },
  12851. {
  12852. name: "Galactic",
  12853. height: math.unit(1057000, "lightyears")
  12854. },
  12855. ]
  12856. ))
  12857. characterMakers.push(() => makeCharacter(
  12858. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12859. {
  12860. front: {
  12861. height: math.unit(6 + 10 / 12, "feet"),
  12862. weight: math.unit(150, "lb"),
  12863. name: "Front",
  12864. image: {
  12865. source: "./media/characters/dixon/front.svg",
  12866. extra: 3361 / 3209,
  12867. bottom: 0.01
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(6 + 10 / 12, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Big",
  12879. height: math.unit(12, "meters")
  12880. },
  12881. {
  12882. name: "Macro",
  12883. height: math.unit(500, "meters")
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(2, "km")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(185, "cm"),
  12896. weight: math.unit(68, "kg"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/kauko/front.svg",
  12900. extra: 1455 / 1421,
  12901. bottom: 0.03
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(185, "cm"),
  12906. weight: math.unit(68, "kg"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/kauko/back.svg",
  12910. extra: 1455 / 1421,
  12911. bottom: 0.004
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(185, "cm"),
  12919. default: true
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(6, "feet"),
  12928. weight: math.unit(150, "kg"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/varg/front.svg",
  12932. extra: 1108 / 1018,
  12933. bottom: 0.0375
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(5, "meters")
  12941. },
  12942. {
  12943. name: "Macro",
  12944. height: math.unit(200, "meters")
  12945. },
  12946. {
  12947. name: "Megamacro",
  12948. height: math.unit(20, "kilometers")
  12949. },
  12950. {
  12951. name: "True Size",
  12952. height: math.unit(211, "km"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Gigamacro",
  12957. height: math.unit(1000, "km")
  12958. },
  12959. {
  12960. name: "Gigamacro+",
  12961. height: math.unit(8000, "km")
  12962. },
  12963. {
  12964. name: "Teramacro",
  12965. height: math.unit(1000000, "km")
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12971. {
  12972. front: {
  12973. height: math.unit(7 + 7 / 12, "feet"),
  12974. weight: math.unit(267, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/dayza/front.svg",
  12978. extra: 1262 / 1200,
  12979. bottom: 0.035
  12980. }
  12981. },
  12982. side: {
  12983. height: math.unit(7 + 7 / 12, "feet"),
  12984. weight: math.unit(267, "lb"),
  12985. name: "Side",
  12986. image: {
  12987. source: "./media/characters/dayza/side.svg",
  12988. extra: 1295 / 1245,
  12989. bottom: 0.05
  12990. }
  12991. },
  12992. back: {
  12993. height: math.unit(7 + 7 / 12, "feet"),
  12994. weight: math.unit(267, "lb"),
  12995. name: "Back",
  12996. image: {
  12997. source: "./media/characters/dayza/back.svg",
  12998. extra: 1241 / 1170
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(7 + 7 / 12, "feet"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Macro",
  13010. height: math.unit(155, "feet")
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(6 + 5 / 12, "feet"),
  13019. weight: math.unit(160, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/xanthos/front.svg",
  13023. extra: 1,
  13024. bottom: 0.04
  13025. }
  13026. },
  13027. back: {
  13028. height: math.unit(6 + 5 / 12, "feet"),
  13029. weight: math.unit(160, "lb"),
  13030. name: "Back",
  13031. image: {
  13032. source: "./media/characters/xanthos/back.svg",
  13033. extra: 1,
  13034. bottom: 0.03
  13035. }
  13036. },
  13037. hand: {
  13038. height: math.unit(0.928, "feet"),
  13039. name: "Hand",
  13040. image: {
  13041. source: "./media/characters/xanthos/hand.svg"
  13042. }
  13043. },
  13044. foot: {
  13045. height: math.unit(1.286, "feet"),
  13046. name: "Foot",
  13047. image: {
  13048. source: "./media/characters/xanthos/foot.svg"
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(6 + 5 / 12, "feet"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Normal+",
  13060. height: math.unit(6, "meters")
  13061. },
  13062. {
  13063. name: "Macro",
  13064. height: math.unit(40, "feet")
  13065. },
  13066. {
  13067. name: "Macro+",
  13068. height: math.unit(200, "meters")
  13069. },
  13070. {
  13071. name: "Megamacro",
  13072. height: math.unit(20, "km")
  13073. },
  13074. {
  13075. name: "Megamacro+",
  13076. height: math.unit(100, "km")
  13077. },
  13078. {
  13079. name: "Gigamacro",
  13080. height: math.unit(200, "megameters")
  13081. },
  13082. {
  13083. name: "Gigamacro+",
  13084. height: math.unit(1.5, "gigameters")
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13090. {
  13091. front: {
  13092. height: math.unit(6 + 3 / 12, "feet"),
  13093. weight: math.unit(215, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/grynn/front.svg",
  13097. extra: 4627 / 4209,
  13098. bottom: 0.047
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Micro",
  13105. height: math.unit(6, "inches")
  13106. },
  13107. {
  13108. name: "Normal",
  13109. height: math.unit(6 + 3 / 12, "feet"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Big",
  13114. height: math.unit(104, "feet")
  13115. },
  13116. {
  13117. name: "Macro",
  13118. height: math.unit(944, "feet")
  13119. },
  13120. {
  13121. name: "Macro+",
  13122. height: math.unit(9480, "feet")
  13123. },
  13124. {
  13125. name: "Megamacro",
  13126. height: math.unit(78752, "feet")
  13127. },
  13128. {
  13129. name: "Megamacro+",
  13130. height: math.unit(630128, "feet")
  13131. },
  13132. {
  13133. name: "Megamacro++",
  13134. height: math.unit(3150695, "feet")
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(7 + 5 / 12, "feet"),
  13143. weight: math.unit(450, "lb"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/mocha-aura/front.svg",
  13147. extra: 1907 / 1817,
  13148. bottom: 0.04
  13149. }
  13150. },
  13151. back: {
  13152. height: math.unit(7 + 5 / 12, "feet"),
  13153. weight: math.unit(450, "lb"),
  13154. name: "Back",
  13155. image: {
  13156. source: "./media/characters/mocha-aura/back.svg",
  13157. extra: 1900 / 1825,
  13158. bottom: 0.045
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Nano",
  13165. height: math.unit(1, "nm")
  13166. },
  13167. {
  13168. name: "Megamicro",
  13169. height: math.unit(1, "mm")
  13170. },
  13171. {
  13172. name: "Micro",
  13173. height: math.unit(3, "inches")
  13174. },
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(7 + 5 / 12, "feet"),
  13178. default: true
  13179. },
  13180. {
  13181. name: "Macro",
  13182. height: math.unit(30, "feet")
  13183. },
  13184. {
  13185. name: "Megamacro",
  13186. height: math.unit(3500, "feet")
  13187. },
  13188. {
  13189. name: "Teramacro",
  13190. height: math.unit(500000, "miles")
  13191. },
  13192. {
  13193. name: "Petamacro",
  13194. height: math.unit(50000000000000000, "parsecs")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/ilisha-devya/front.svg",
  13207. extra: 1053/1049,
  13208. bottom: 270/1323
  13209. }
  13210. },
  13211. back: {
  13212. height: math.unit(6, "feet"),
  13213. weight: math.unit(150, "lb"),
  13214. name: "Back",
  13215. image: {
  13216. source: "./media/characters/ilisha-devya/back.svg",
  13217. extra: 1131/1128,
  13218. bottom: 39/1170
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Macro",
  13225. height: math.unit(500, "feet"),
  13226. default: true
  13227. },
  13228. {
  13229. name: "Megamacro",
  13230. height: math.unit(10, "miles")
  13231. },
  13232. {
  13233. name: "Gigamacro",
  13234. height: math.unit(100000, "miles")
  13235. },
  13236. {
  13237. name: "Examacro",
  13238. height: math.unit(1e9, "lightyears")
  13239. },
  13240. {
  13241. name: "Omniversal",
  13242. height: math.unit(1e33, "lightyears")
  13243. },
  13244. {
  13245. name: "Beyond Infinite",
  13246. height: math.unit(1e100, "lightyears")
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13252. {
  13253. Side: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Side",
  13257. image: {
  13258. source: "./media/characters/mira/side.svg",
  13259. extra: 900 / 799,
  13260. bottom: 0.02
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Human Size",
  13267. height: math.unit(6, "feet")
  13268. },
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(100, "feet"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Megamacro",
  13276. height: math.unit(10, "miles")
  13277. },
  13278. {
  13279. name: "Gigamacro",
  13280. height: math.unit(25000, "miles")
  13281. },
  13282. {
  13283. name: "Teramacro",
  13284. height: math.unit(300, "AU")
  13285. },
  13286. {
  13287. name: "Full Size",
  13288. height: math.unit(4.5e10, "lightyears")
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(150, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/holly/front.svg",
  13301. extra: 639 / 606
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(150, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/holly/back.svg",
  13310. extra: 623 / 598
  13311. }
  13312. },
  13313. frontWorking: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(150, "lb"),
  13316. name: "Front (Working)",
  13317. image: {
  13318. source: "./media/characters/holly/front-working.svg",
  13319. extra: 607 / 577,
  13320. bottom: 0.048
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Normal",
  13327. height: math.unit(12 + 3 / 12, "feet"),
  13328. default: true
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/porter/front.svg",
  13341. extra: 1,
  13342. bottom: 0.01
  13343. }
  13344. },
  13345. frontRobes: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Front (Robes)",
  13349. image: {
  13350. source: "./media/characters/porter/front-robes.svg",
  13351. extra: 1.01,
  13352. bottom: 0.01
  13353. }
  13354. },
  13355. },
  13356. [
  13357. {
  13358. name: "Normal",
  13359. height: math.unit(11 + 9 / 12, "feet"),
  13360. default: true
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13366. {
  13367. legendary: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Legendary",
  13371. image: {
  13372. source: "./media/characters/lucy/legendary.svg",
  13373. extra: 1355 / 1100,
  13374. bottom: 0.045
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Legendary",
  13381. height: math.unit(86882 * 2, "miles"),
  13382. default: true
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/drusilla/front.svg",
  13395. extra: 678 / 635,
  13396. bottom: 0.03
  13397. }
  13398. },
  13399. back: {
  13400. height: math.unit(6, "feet"),
  13401. weight: math.unit(150, "lb"),
  13402. name: "Back",
  13403. image: {
  13404. source: "./media/characters/drusilla/back.svg",
  13405. extra: 678 / 635,
  13406. bottom: 0.005
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Macro",
  13413. height: math.unit(100, "feet")
  13414. },
  13415. {
  13416. name: "Canon Height",
  13417. height: math.unit(2000, "feet"),
  13418. default: true
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(6, "feet"),
  13427. weight: math.unit(180, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/renard-thatch/front.svg",
  13431. extra: 2411 / 2275,
  13432. bottom: 0.01
  13433. }
  13434. },
  13435. frontPosing: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(180, "lb"),
  13438. name: "Front (Posing)",
  13439. image: {
  13440. source: "./media/characters/renard-thatch/front-posing.svg",
  13441. extra: 2381 / 2261,
  13442. bottom: 0.01
  13443. }
  13444. },
  13445. back: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(180, "lb"),
  13448. name: "Back",
  13449. image: {
  13450. source: "./media/characters/renard-thatch/back.svg",
  13451. extra: 2428 / 2288
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(3, "inches")
  13459. },
  13460. {
  13461. name: "Default",
  13462. height: math.unit(6, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(75, "feet")
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13473. {
  13474. front: {
  13475. height: math.unit(1450, "feet"),
  13476. weight: math.unit(1.21e6, "tons"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/sekvra/front.svg",
  13480. extra: 1193/1190,
  13481. bottom: 78/1271
  13482. }
  13483. },
  13484. side: {
  13485. height: math.unit(1450, "feet"),
  13486. weight: math.unit(1.21e6, "tons"),
  13487. name: "Side",
  13488. image: {
  13489. source: "./media/characters/sekvra/side.svg",
  13490. extra: 1193/1190,
  13491. bottom: 52/1245
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(1450, "feet"),
  13496. weight: math.unit(1.21e6, "tons"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/sekvra/back.svg",
  13500. extra: 1219/1216,
  13501. bottom: 21/1240
  13502. }
  13503. },
  13504. frontClothed: {
  13505. height: math.unit(1450, "feet"),
  13506. weight: math.unit(1.21e6, "tons"),
  13507. name: "Front (Clothed)",
  13508. image: {
  13509. source: "./media/characters/sekvra/front-clothed.svg",
  13510. extra: 1192/1189,
  13511. bottom: 79/1271
  13512. }
  13513. },
  13514. },
  13515. [
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(1450, "feet"),
  13519. default: true
  13520. },
  13521. {
  13522. name: "Megamacro",
  13523. height: math.unit(15000, "feet")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/carmine/front.svg",
  13536. extra: 1,
  13537. bottom: 0.035
  13538. }
  13539. },
  13540. frontArmor: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Front (Armor)",
  13544. image: {
  13545. source: "./media/characters/carmine/front-armor.svg",
  13546. extra: 1,
  13547. bottom: 0.035
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Large",
  13554. height: math.unit(1, "mile")
  13555. },
  13556. {
  13557. name: "Huge",
  13558. height: math.unit(40, "miles"),
  13559. default: true
  13560. },
  13561. {
  13562. name: "Colossal",
  13563. height: math.unit(2500, "miles")
  13564. },
  13565. ]
  13566. ))
  13567. characterMakers.push(() => makeCharacter(
  13568. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13569. {
  13570. front: {
  13571. height: math.unit(6, "feet"),
  13572. weight: math.unit(150, "lb"),
  13573. name: "Front",
  13574. image: {
  13575. source: "./media/characters/elyssia/front.svg",
  13576. extra: 2201 / 2035,
  13577. bottom: 0.05
  13578. }
  13579. },
  13580. frontClothed: {
  13581. height: math.unit(6, "feet"),
  13582. weight: math.unit(150, "lb"),
  13583. name: "Front (Clothed)",
  13584. image: {
  13585. source: "./media/characters/elyssia/front-clothed.svg",
  13586. extra: 2201 / 2035,
  13587. bottom: 0.05
  13588. }
  13589. },
  13590. back: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Back",
  13594. image: {
  13595. source: "./media/characters/elyssia/back.svg",
  13596. extra: 2201 / 2035,
  13597. bottom: 0.013
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Smaller",
  13604. height: math.unit(150, "feet")
  13605. },
  13606. {
  13607. name: "Standard",
  13608. height: math.unit(1400, "feet"),
  13609. default: true
  13610. },
  13611. {
  13612. name: "Distracted",
  13613. height: math.unit(15000, "feet")
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(7 + 4/12, "feet"),
  13622. weight: math.unit(690, "lb"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/geno-maxwell/front.svg",
  13626. extra: 984/856,
  13627. bottom: 87/1071
  13628. }
  13629. },
  13630. back: {
  13631. height: math.unit(7 + 4/12, "feet"),
  13632. weight: math.unit(690, "lb"),
  13633. name: "Back",
  13634. image: {
  13635. source: "./media/characters/geno-maxwell/back.svg",
  13636. extra: 981/854,
  13637. bottom: 57/1038
  13638. }
  13639. },
  13640. frontCostume: {
  13641. height: math.unit(7 + 4/12, "feet"),
  13642. weight: math.unit(690, "lb"),
  13643. name: "Front (Costume)",
  13644. image: {
  13645. source: "./media/characters/geno-maxwell/front-costume.svg",
  13646. extra: 984/856,
  13647. bottom: 87/1071
  13648. }
  13649. },
  13650. backcostume: {
  13651. height: math.unit(7 + 4/12, "feet"),
  13652. weight: math.unit(690, "lb"),
  13653. name: "Back (Costume)",
  13654. image: {
  13655. source: "./media/characters/geno-maxwell/back-costume.svg",
  13656. extra: 981/854,
  13657. bottom: 57/1038
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Micro",
  13664. height: math.unit(3, "inches")
  13665. },
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(7 + 4 / 12, "feet"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(220, "feet")
  13674. },
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(11, "miles")
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13683. {
  13684. front: {
  13685. height: math.unit(7 + 4/12, "feet"),
  13686. weight: math.unit(750, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/regena-maxwell/front.svg",
  13690. extra: 984/856,
  13691. bottom: 87/1071
  13692. }
  13693. },
  13694. back: {
  13695. height: math.unit(7 + 4/12, "feet"),
  13696. weight: math.unit(750, "lb"),
  13697. name: "Back",
  13698. image: {
  13699. source: "./media/characters/regena-maxwell/back.svg",
  13700. extra: 981/854,
  13701. bottom: 57/1038
  13702. }
  13703. },
  13704. frontCostume: {
  13705. height: math.unit(7 + 4/12, "feet"),
  13706. weight: math.unit(750, "lb"),
  13707. name: "Front (Costume)",
  13708. image: {
  13709. source: "./media/characters/regena-maxwell/front-costume.svg",
  13710. extra: 984/856,
  13711. bottom: 87/1071
  13712. }
  13713. },
  13714. backcostume: {
  13715. height: math.unit(7 + 4/12, "feet"),
  13716. weight: math.unit(750, "lb"),
  13717. name: "Back (Costume)",
  13718. image: {
  13719. source: "./media/characters/regena-maxwell/back-costume.svg",
  13720. extra: 981/854,
  13721. bottom: 57/1038
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Normal",
  13728. height: math.unit(7 + 4 / 12, "feet"),
  13729. default: true
  13730. },
  13731. {
  13732. name: "Macro",
  13733. height: math.unit(220, "feet")
  13734. },
  13735. {
  13736. name: "Megamacro",
  13737. height: math.unit(11, "miles")
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(6, "feet"),
  13746. weight: math.unit(150, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13750. extra: 860 / 690,
  13751. bottom: 0.03
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Normal",
  13758. height: math.unit(1.7, "meters"),
  13759. default: true
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(150, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/quilly/front.svg",
  13772. extra: 890 / 776
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Gigamacro",
  13779. height: math.unit(404090, "miles"),
  13780. default: true
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(7 + 8 / 12, "feet"),
  13789. weight: math.unit(350, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/tempest/front.svg",
  13793. extra: 1175 / 1086,
  13794. bottom: 0.02
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Normal",
  13801. height: math.unit(7 + 8 / 12, "feet"),
  13802. default: true
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13808. {
  13809. side: {
  13810. height: math.unit(4 + 5 / 12, "feet"),
  13811. weight: math.unit(80, "lb"),
  13812. name: "Side",
  13813. image: {
  13814. source: "./media/characters/rodger/side.svg",
  13815. extra: 1235 / 1118
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Micro",
  13822. height: math.unit(1, "inch")
  13823. },
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(4 + 5 / 12, "feet"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(120, "feet")
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(150, "lb"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/danyel/front.svg",
  13844. extra: 1185 / 1123,
  13845. bottom: 0.05
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Shrunken",
  13852. height: math.unit(0.5, "mm")
  13853. },
  13854. {
  13855. name: "Micro",
  13856. height: math.unit(1, "mm"),
  13857. default: true
  13858. },
  13859. {
  13860. name: "Upsized",
  13861. height: math.unit(5 + 5 / 12, "feet")
  13862. },
  13863. ]
  13864. ))
  13865. characterMakers.push(() => makeCharacter(
  13866. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13867. {
  13868. front: {
  13869. height: math.unit(5 + 6 / 12, "feet"),
  13870. weight: math.unit(200, "lb"),
  13871. name: "Front",
  13872. image: {
  13873. source: "./media/characters/vivian-bijoux/front.svg",
  13874. extra: 1217/1209,
  13875. bottom: 76/1293
  13876. }
  13877. },
  13878. back: {
  13879. height: math.unit(5 + 6 / 12, "feet"),
  13880. weight: math.unit(200, "lb"),
  13881. name: "Back",
  13882. image: {
  13883. source: "./media/characters/vivian-bijoux/back.svg",
  13884. extra: 1214/1208,
  13885. bottom: 51/1265
  13886. }
  13887. },
  13888. dressed: {
  13889. height: math.unit(5 + 6 / 12, "feet"),
  13890. weight: math.unit(200, "lb"),
  13891. name: "Dressed",
  13892. image: {
  13893. source: "./media/characters/vivian-bijoux/dressed.svg",
  13894. extra: 1217/1209,
  13895. bottom: 76/1293
  13896. }
  13897. },
  13898. },
  13899. [
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(5 + 6 / 12, "feet"),
  13903. default: true
  13904. },
  13905. {
  13906. name: "Bad Dream",
  13907. height: math.unit(500, "feet")
  13908. },
  13909. {
  13910. name: "Nightmare",
  13911. height: math.unit(500, "miles")
  13912. },
  13913. ]
  13914. ))
  13915. characterMakers.push(() => makeCharacter(
  13916. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13917. {
  13918. front: {
  13919. height: math.unit(6 + 1 / 12, "feet"),
  13920. weight: math.unit(260, "lb"),
  13921. name: "Front",
  13922. image: {
  13923. source: "./media/characters/zeta/front.svg",
  13924. extra: 1968 / 1889,
  13925. bottom: 0.06
  13926. }
  13927. },
  13928. back: {
  13929. height: math.unit(6 + 1 / 12, "feet"),
  13930. weight: math.unit(260, "lb"),
  13931. name: "Back",
  13932. image: {
  13933. source: "./media/characters/zeta/back.svg",
  13934. extra: 1944 / 1858,
  13935. bottom: 0.03
  13936. }
  13937. },
  13938. hand: {
  13939. height: math.unit(1.112, "feet"),
  13940. name: "Hand",
  13941. image: {
  13942. source: "./media/characters/zeta/hand.svg"
  13943. }
  13944. },
  13945. foot: {
  13946. height: math.unit(1.48, "feet"),
  13947. name: "Foot",
  13948. image: {
  13949. source: "./media/characters/zeta/foot.svg"
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Micro",
  13956. height: math.unit(6, "inches")
  13957. },
  13958. {
  13959. name: "Normal",
  13960. height: math.unit(6 + 1 / 12, "feet"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro",
  13965. height: math.unit(20, "feet")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(6, "feet"),
  13974. weight: math.unit(150, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/jamie-larsen/front.svg",
  13978. extra: 962 / 933,
  13979. bottom: 0.02
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(6, "feet"),
  13984. weight: math.unit(150, "lb"),
  13985. name: "Back",
  13986. image: {
  13987. source: "./media/characters/jamie-larsen/back.svg",
  13988. extra: 997 / 946
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(28 + 7 / 12, "feet"),
  13996. default: true
  13997. },
  13998. {
  13999. name: "Macro+",
  14000. height: math.unit(180, "feet")
  14001. },
  14002. {
  14003. name: "Megamacro",
  14004. height: math.unit(10, "miles")
  14005. },
  14006. {
  14007. name: "Gigamacro",
  14008. height: math.unit(200000, "miles")
  14009. },
  14010. ]
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14014. {
  14015. front: {
  14016. height: math.unit(6, "feet"),
  14017. weight: math.unit(120, "lb"),
  14018. name: "Front",
  14019. image: {
  14020. source: "./media/characters/vance/front.svg",
  14021. extra: 1980 / 1890,
  14022. bottom: 0.09
  14023. }
  14024. },
  14025. back: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(120, "lb"),
  14028. name: "Back",
  14029. image: {
  14030. source: "./media/characters/vance/back.svg",
  14031. extra: 2081 / 1994,
  14032. bottom: 0.014
  14033. }
  14034. },
  14035. hand: {
  14036. height: math.unit(0.88, "feet"),
  14037. name: "Hand",
  14038. image: {
  14039. source: "./media/characters/vance/hand.svg"
  14040. }
  14041. },
  14042. foot: {
  14043. height: math.unit(0.64, "feet"),
  14044. name: "Foot",
  14045. image: {
  14046. source: "./media/characters/vance/foot.svg"
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Small",
  14053. height: math.unit(90, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(100, "meters")
  14059. },
  14060. {
  14061. name: "Megamacro",
  14062. height: math.unit(15, "miles")
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(6, "feet"),
  14071. weight: math.unit(180, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/xochitl/front.svg",
  14075. extra: 2297 / 2261,
  14076. bottom: 0.065
  14077. }
  14078. },
  14079. back: {
  14080. height: math.unit(6, "feet"),
  14081. weight: math.unit(180, "lb"),
  14082. name: "Back",
  14083. image: {
  14084. source: "./media/characters/xochitl/back.svg",
  14085. extra: 2386 / 2354,
  14086. bottom: 0.01
  14087. }
  14088. },
  14089. foot: {
  14090. height: math.unit(6 / 5 * 1.15, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Foot",
  14093. image: {
  14094. source: "./media/characters/xochitl/foot.svg"
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(80, "feet")
  14102. },
  14103. {
  14104. name: "Macro+",
  14105. height: math.unit(400, "feet"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Gigamacro",
  14110. height: math.unit(80000, "miles")
  14111. },
  14112. {
  14113. name: "Gigamacro+",
  14114. height: math.unit(400000, "miles")
  14115. },
  14116. {
  14117. name: "Teramacro",
  14118. height: math.unit(300, "AU")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14124. {
  14125. front: {
  14126. height: math.unit(6, "feet"),
  14127. weight: math.unit(150, "lb"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/vincent/front.svg",
  14131. extra: 1130 / 1080,
  14132. bottom: 0.055
  14133. }
  14134. },
  14135. beak: {
  14136. height: math.unit(6 * 0.1, "feet"),
  14137. name: "Beak",
  14138. image: {
  14139. source: "./media/characters/vincent/beak.svg"
  14140. }
  14141. },
  14142. hand: {
  14143. height: math.unit(6 * 0.85, "feet"),
  14144. weight: math.unit(150, "lb"),
  14145. name: "Hand",
  14146. image: {
  14147. source: "./media/characters/vincent/hand.svg"
  14148. }
  14149. },
  14150. foot: {
  14151. height: math.unit(6 * 0.19, "feet"),
  14152. weight: math.unit(150, "lb"),
  14153. name: "Foot",
  14154. image: {
  14155. source: "./media/characters/vincent/foot.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Base",
  14162. height: math.unit(6 + 5 / 12, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro",
  14167. height: math.unit(300, "feet")
  14168. },
  14169. {
  14170. name: "Megamacro",
  14171. height: math.unit(2, "miles")
  14172. },
  14173. {
  14174. name: "Gigamacro",
  14175. height: math.unit(1000, "miles")
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14181. {
  14182. front: {
  14183. height: math.unit(2, "meters"),
  14184. weight: math.unit(500, "kg"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/coatl/front.svg",
  14188. extra: 3948 / 3500,
  14189. bottom: 0.082
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(4, "meters")
  14197. },
  14198. {
  14199. name: "Macro",
  14200. height: math.unit(100, "meters"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Macro+",
  14205. height: math.unit(300, "meters")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(3, "gigameters")
  14210. },
  14211. {
  14212. name: "Megamacro+",
  14213. height: math.unit(300, "terameters")
  14214. },
  14215. {
  14216. name: "Megamacro++",
  14217. height: math.unit(3, "lightyears")
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(6, "feet"),
  14226. weight: math.unit(50, "kg"),
  14227. name: "front",
  14228. image: {
  14229. source: "./media/characters/shiroryu/front.svg",
  14230. extra: 1990 / 1935
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "Mortal Mingling",
  14237. height: math.unit(3, "meters")
  14238. },
  14239. {
  14240. name: "Kaiju-ish",
  14241. height: math.unit(250, "meters")
  14242. },
  14243. {
  14244. name: "Somewhat Godly",
  14245. height: math.unit(400, "km"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Planetary",
  14250. height: math.unit(300, "megameters")
  14251. },
  14252. {
  14253. name: "Galaxy-dwarfing",
  14254. height: math.unit(450, "kiloparsecs")
  14255. },
  14256. {
  14257. name: "Universe Eater",
  14258. height: math.unit(150, "gigaparsecs")
  14259. },
  14260. {
  14261. name: "Almost Immeasurable",
  14262. height: math.unit(1.3e266, "yottaparsecs")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(150, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/umeko/front.svg",
  14275. extra: 1,
  14276. bottom: 0.019
  14277. }
  14278. },
  14279. frontArmored: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front (Armored)",
  14283. image: {
  14284. source: "./media/characters/umeko/front-armored.svg",
  14285. extra: 1,
  14286. bottom: 0.021
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(220, "feet"),
  14294. default: true
  14295. },
  14296. {
  14297. name: "Guardian Dragon",
  14298. height: math.unit(50, "miles")
  14299. },
  14300. {
  14301. name: "Cosmic",
  14302. height: math.unit(800000, "miles")
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(150, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/cassidy/front.svg",
  14315. extra: 810/808,
  14316. bottom: 41/851
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Canon Height",
  14323. height: math.unit(120, "feet"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Macro+",
  14328. height: math.unit(400, "feet")
  14329. },
  14330. {
  14331. name: "Macro++",
  14332. height: math.unit(4000, "feet")
  14333. },
  14334. {
  14335. name: "Megamacro",
  14336. height: math.unit(3, "miles")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/isaac/front.svg",
  14349. extra: 896 / 815,
  14350. bottom: 0.11
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Human Size",
  14357. height: math.unit(8, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Macro",
  14362. height: math.unit(400, "feet")
  14363. },
  14364. {
  14365. name: "Megamacro",
  14366. height: math.unit(50, "miles")
  14367. },
  14368. {
  14369. name: "Canon Height",
  14370. height: math.unit(200, "AU")
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(6, "feet"),
  14379. weight: math.unit(72, "kg"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/sleekit/front.svg",
  14383. extra: 4693 / 4487,
  14384. bottom: 0.012
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Minimum Height",
  14391. height: math.unit(10, "meters")
  14392. },
  14393. {
  14394. name: "Smaller",
  14395. height: math.unit(25, "meters")
  14396. },
  14397. {
  14398. name: "Larger",
  14399. height: math.unit(38, "meters"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Maximum height",
  14404. height: math.unit(100, "meters")
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14410. {
  14411. front: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Front",
  14415. image: {
  14416. source: "./media/characters/nillia/front.svg",
  14417. extra: 2195 / 2037,
  14418. bottom: 0.005
  14419. }
  14420. },
  14421. back: {
  14422. height: math.unit(6, "feet"),
  14423. weight: math.unit(150, "lb"),
  14424. name: "Back",
  14425. image: {
  14426. source: "./media/characters/nillia/back.svg",
  14427. extra: 2195 / 2037,
  14428. bottom: 0.005
  14429. }
  14430. },
  14431. },
  14432. [
  14433. {
  14434. name: "Canon Height",
  14435. height: math.unit(489, "feet"),
  14436. default: true
  14437. }
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(6, "feet"),
  14445. weight: math.unit(150, "lb"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/mesmyriza/front.svg",
  14449. extra: 2067 / 1784,
  14450. bottom: 0.035
  14451. }
  14452. },
  14453. foot: {
  14454. height: math.unit(6 / (250 / 35), "feet"),
  14455. name: "Foot",
  14456. image: {
  14457. source: "./media/characters/mesmyriza/foot.svg"
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Macro",
  14464. height: math.unit(457, "meters"),
  14465. default: true
  14466. },
  14467. {
  14468. name: "Megamacro",
  14469. height: math.unit(8, "megameters")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6, "feet"),
  14478. weight: math.unit(250, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/saudade/front.svg",
  14482. extra: 1172 / 1139,
  14483. bottom: 0.035
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Micro",
  14490. height: math.unit(3, "inches")
  14491. },
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6, "feet"),
  14495. default: true
  14496. },
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(50, "feet")
  14500. },
  14501. {
  14502. name: "Megamacro",
  14503. height: math.unit(2800, "feet")
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(5 + 4 / 12, "feet"),
  14512. weight: math.unit(100, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/keireer/front.svg",
  14516. extra: 716 / 666,
  14517. bottom: 0.05
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(5 + 4 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(90, "kg"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/mirja/front.svg",
  14538. extra: 1789 / 1683,
  14539. bottom: 0.05
  14540. }
  14541. },
  14542. frontDressed: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(90, "lb"),
  14545. name: "Front (Dressed)",
  14546. image: {
  14547. source: "./media/characters/mirja/front-dressed.svg",
  14548. extra: 1789 / 1683,
  14549. bottom: 0.05
  14550. }
  14551. },
  14552. back: {
  14553. height: math.unit(6, "feet"),
  14554. weight: math.unit(90, "lb"),
  14555. name: "Back",
  14556. image: {
  14557. source: "./media/characters/mirja/back.svg",
  14558. extra: 953 / 917,
  14559. bottom: 0.017
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "\"Incognito\"",
  14566. height: math.unit(3, "meters")
  14567. },
  14568. {
  14569. name: "Strolling Size",
  14570. height: math.unit(15, "km")
  14571. },
  14572. {
  14573. name: "Larger Strolling Size",
  14574. height: math.unit(400, "km")
  14575. },
  14576. {
  14577. name: "Preferred Size",
  14578. height: math.unit(5000, "km")
  14579. },
  14580. {
  14581. name: "True Size",
  14582. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(15, "feet"),
  14592. weight: math.unit(880, "kg"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/nightraver/front.svg",
  14596. extra: 2444 / 2160,
  14597. bottom: 0.027
  14598. }
  14599. },
  14600. back: {
  14601. height: math.unit(15, "feet"),
  14602. weight: math.unit(880, "kg"),
  14603. name: "Back",
  14604. image: {
  14605. source: "./media/characters/nightraver/back.svg",
  14606. extra: 2309 / 2180,
  14607. bottom: 0.005
  14608. }
  14609. },
  14610. sole: {
  14611. height: math.unit(2.878, "feet"),
  14612. name: "Sole",
  14613. image: {
  14614. source: "./media/characters/nightraver/sole.svg"
  14615. }
  14616. },
  14617. foot: {
  14618. height: math.unit(2.285, "feet"),
  14619. name: "Foot",
  14620. image: {
  14621. source: "./media/characters/nightraver/foot.svg"
  14622. }
  14623. },
  14624. maw: {
  14625. height: math.unit(2.67, "feet"),
  14626. name: "Maw",
  14627. image: {
  14628. source: "./media/characters/nightraver/maw.svg"
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Micro",
  14635. height: math.unit(1, "cm")
  14636. },
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(15, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(300, "feet")
  14645. },
  14646. {
  14647. name: "Megamacro",
  14648. height: math.unit(300, "miles")
  14649. },
  14650. {
  14651. name: "Gigamacro",
  14652. height: math.unit(10000, "miles")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14658. {
  14659. side: {
  14660. height: math.unit(2, "inches"),
  14661. weight: math.unit(5, "grams"),
  14662. name: "Side",
  14663. image: {
  14664. source: "./media/characters/arc/side.svg"
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Micro",
  14671. height: math.unit(2, "inches"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(1.1938, "meters"),
  14681. weight: math.unit(54, "kg"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/nebula-shahar/front.svg",
  14685. extra: 1642 / 1436,
  14686. bottom: 0.06
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Megamicro",
  14693. height: math.unit(0.3, "mm")
  14694. },
  14695. {
  14696. name: "Micro",
  14697. height: math.unit(3, "cm")
  14698. },
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(138, "cm"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Macro",
  14706. height: math.unit(30, "m")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(5.24, "feet"),
  14715. weight: math.unit(150, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/shayla/front.svg",
  14719. extra: 1512 / 1414,
  14720. bottom: 0.01
  14721. }
  14722. },
  14723. back: {
  14724. height: math.unit(5.24, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/shayla/back.svg",
  14729. extra: 1512 / 1414
  14730. }
  14731. },
  14732. hand: {
  14733. height: math.unit(0.7781496062992126, "feet"),
  14734. name: "Hand",
  14735. image: {
  14736. source: "./media/characters/shayla/hand.svg"
  14737. }
  14738. },
  14739. foot: {
  14740. height: math.unit(1.4206036745406823, "feet"),
  14741. name: "Foot",
  14742. image: {
  14743. source: "./media/characters/shayla/foot.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(0.32, "feet")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(5.24, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(492.12, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(186.41, "miles")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(2.2, "m"),
  14772. weight: math.unit(120, "kg"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/pia-jr/front.svg",
  14776. extra: 1000 / 970,
  14777. bottom: 0.035
  14778. }
  14779. },
  14780. hand: {
  14781. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14782. name: "Hand",
  14783. image: {
  14784. source: "./media/characters/pia-jr/hand.svg"
  14785. }
  14786. },
  14787. paw: {
  14788. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14789. name: "Paw",
  14790. image: {
  14791. source: "./media/characters/pia-jr/paw.svg"
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Micro",
  14798. height: math.unit(1.2, "cm")
  14799. },
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(2.2, "m"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(180, "m")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(420, "km")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(2, "m"),
  14820. weight: math.unit(115, "kg"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/pia-sr/front.svg",
  14824. extra: 760 / 730,
  14825. bottom: 0.015
  14826. }
  14827. },
  14828. back: {
  14829. height: math.unit(2, "m"),
  14830. weight: math.unit(115, "kg"),
  14831. name: "Back",
  14832. image: {
  14833. source: "./media/characters/pia-sr/back.svg",
  14834. extra: 760 / 730,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. hand: {
  14839. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14840. name: "Hand",
  14841. image: {
  14842. source: "./media/characters/pia-sr/hand.svg"
  14843. }
  14844. },
  14845. foot: {
  14846. height: math.unit(1.83, "feet"),
  14847. name: "Foot",
  14848. image: {
  14849. source: "./media/characters/pia-sr/foot.svg"
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Micro",
  14856. height: math.unit(88, "mm")
  14857. },
  14858. {
  14859. name: "Normal",
  14860. height: math.unit(2, "m"),
  14861. default: true
  14862. },
  14863. {
  14864. name: "Macro",
  14865. height: math.unit(200, "m")
  14866. },
  14867. {
  14868. name: "Megamacro",
  14869. height: math.unit(420, "km")
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(8 + 2 / 12, "feet"),
  14878. weight: math.unit(300, "lb"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/kibibyte/front.svg",
  14882. extra: 2221 / 2098,
  14883. bottom: 0.04
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(8 + 2 / 12, "feet"),
  14891. default: true
  14892. },
  14893. {
  14894. name: "Socialable Macro",
  14895. height: math.unit(50, "feet")
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(300, "feet")
  14900. },
  14901. {
  14902. name: "Megamacro",
  14903. height: math.unit(500, "miles")
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(150, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/felix/front.svg",
  14916. extra: 762 / 722,
  14917. bottom: 0.02
  14918. }
  14919. },
  14920. frontClothed: {
  14921. height: math.unit(6, "feet"),
  14922. weight: math.unit(150, "lb"),
  14923. name: "Front (Clothed)",
  14924. image: {
  14925. source: "./media/characters/felix/front-clothed.svg",
  14926. extra: 762 / 722,
  14927. bottom: 0.02
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(6 + 8 / 12, "feet"),
  14935. default: true
  14936. },
  14937. {
  14938. name: "Macro",
  14939. height: math.unit(2600, "feet")
  14940. },
  14941. {
  14942. name: "Megamacro",
  14943. height: math.unit(450, "miles")
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14949. {
  14950. front: {
  14951. height: math.unit(6 + 1 / 12, "feet"),
  14952. weight: math.unit(250, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/tobo/front.svg",
  14956. extra: 608 / 586,
  14957. bottom: 0.023
  14958. }
  14959. },
  14960. back: {
  14961. height: math.unit(6 + 1 / 12, "feet"),
  14962. weight: math.unit(250, "lb"),
  14963. name: "Back",
  14964. image: {
  14965. source: "./media/characters/tobo/back.svg",
  14966. extra: 608 / 586
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Nano",
  14973. height: math.unit(2, "nm")
  14974. },
  14975. {
  14976. name: "Megamicro",
  14977. height: math.unit(0.1, "mm")
  14978. },
  14979. {
  14980. name: "Micro",
  14981. height: math.unit(1, "inch"),
  14982. default: true
  14983. },
  14984. {
  14985. name: "Human-sized",
  14986. height: math.unit(6 + 1 / 12, "feet")
  14987. },
  14988. {
  14989. name: "Macro",
  14990. height: math.unit(250, "feet")
  14991. },
  14992. {
  14993. name: "Megamacro",
  14994. height: math.unit(75, "miles")
  14995. },
  14996. {
  14997. name: "Texas-sized",
  14998. height: math.unit(750, "miles")
  14999. },
  15000. {
  15001. name: "Teramacro",
  15002. height: math.unit(50000, "miles")
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(269, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/danny-kapowsky/front.svg",
  15015. extra: 766 / 736,
  15016. bottom: 0.044
  15017. }
  15018. },
  15019. back: {
  15020. height: math.unit(6, "feet"),
  15021. weight: math.unit(269, "lb"),
  15022. name: "Back",
  15023. image: {
  15024. source: "./media/characters/danny-kapowsky/back.svg",
  15025. extra: 797 / 760,
  15026. bottom: 0.025
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Macro",
  15033. height: math.unit(150, "feet"),
  15034. default: true
  15035. },
  15036. {
  15037. name: "Macro+",
  15038. height: math.unit(200, "feet")
  15039. },
  15040. {
  15041. name: "Macro++",
  15042. height: math.unit(300, "feet")
  15043. },
  15044. {
  15045. name: "Macro+++",
  15046. height: math.unit(400, "feet")
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15052. {
  15053. side: {
  15054. height: math.unit(6, "feet"),
  15055. weight: math.unit(170, "lb"),
  15056. name: "Side",
  15057. image: {
  15058. source: "./media/characters/finn/side.svg",
  15059. extra: 1953 / 1807,
  15060. bottom: 0.057
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Megamacro",
  15067. height: math.unit(14445, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(5 + 6 / 12, "feet"),
  15077. weight: math.unit(125, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/roy/front.svg",
  15081. extra: 1,
  15082. bottom: 0.11
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Micro",
  15089. height: math.unit(3, "inches"),
  15090. default: true
  15091. },
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(5 + 6 / 12, "feet")
  15095. },
  15096. {
  15097. name: "Lesser Macro",
  15098. height: math.unit(60, "feet")
  15099. },
  15100. {
  15101. name: "Greater Macro",
  15102. height: math.unit(120, "feet")
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(6, "feet"),
  15111. weight: math.unit(100, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/aevsivs/front.svg",
  15115. extra: 1,
  15116. bottom: 0.03
  15117. }
  15118. },
  15119. back: {
  15120. height: math.unit(6, "feet"),
  15121. weight: math.unit(100, "lb"),
  15122. name: "Back",
  15123. image: {
  15124. source: "./media/characters/aevsivs/back.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Micro",
  15131. height: math.unit(2, "inches"),
  15132. default: true
  15133. },
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(5, "feet")
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15142. {
  15143. front: {
  15144. height: math.unit(5 + 7 / 12, "feet"),
  15145. weight: math.unit(159, "lb"),
  15146. name: "Front",
  15147. image: {
  15148. source: "./media/characters/hildegard/front.svg",
  15149. extra: 289 / 269,
  15150. bottom: 7.63 / 297.8
  15151. }
  15152. },
  15153. back: {
  15154. height: math.unit(5 + 7 / 12, "feet"),
  15155. weight: math.unit(159, "lb"),
  15156. name: "Back",
  15157. image: {
  15158. source: "./media/characters/hildegard/back.svg",
  15159. extra: 280 / 260,
  15160. bottom: 2.3 / 282
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(5 + 7 / 12, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15174. {
  15175. bernard: {
  15176. height: math.unit(2 + 7 / 12, "feet"),
  15177. weight: math.unit(66, "lb"),
  15178. name: "Bernard",
  15179. rename: true,
  15180. image: {
  15181. source: "./media/characters/bernard-wilder/bernard.svg",
  15182. extra: 192 / 128,
  15183. bottom: 0.05
  15184. }
  15185. },
  15186. wilder: {
  15187. height: math.unit(5 + 8 / 12, "feet"),
  15188. weight: math.unit(143, "lb"),
  15189. name: "Wilder",
  15190. rename: true,
  15191. image: {
  15192. source: "./media/characters/bernard-wilder/wilder.svg",
  15193. extra: 361 / 312,
  15194. bottom: 0.02
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(2 + 7 / 12, "feet"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15208. {
  15209. anthro: {
  15210. height: math.unit(6 + 1 / 12, "feet"),
  15211. weight: math.unit(155, "lb"),
  15212. name: "Anthro",
  15213. image: {
  15214. source: "./media/characters/hearth/anthro.svg",
  15215. extra: 1178/1136,
  15216. bottom: 28/1206
  15217. }
  15218. },
  15219. feral: {
  15220. height: math.unit(3.78, "feet"),
  15221. weight: math.unit(35, "kg"),
  15222. name: "Feral",
  15223. image: {
  15224. source: "./media/characters/hearth/feral.svg",
  15225. extra: 153 / 135,
  15226. bottom: 0.03
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(6 + 1 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(6, "feet"),
  15243. weight: math.unit(182, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/ingrid/front.svg",
  15247. extra: 294 / 268,
  15248. bottom: 0.027
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(6, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15262. {
  15263. eevee: {
  15264. height: math.unit(2 + 10 / 12, "feet"),
  15265. weight: math.unit(86, "lb"),
  15266. name: "Malgam",
  15267. image: {
  15268. source: "./media/characters/malgam/eevee.svg",
  15269. extra: 952/784,
  15270. bottom: 38/990
  15271. }
  15272. },
  15273. sylveon: {
  15274. height: math.unit(4, "feet"),
  15275. weight: math.unit(101, "lb"),
  15276. name: "Future Malgam",
  15277. rename: true,
  15278. image: {
  15279. source: "./media/characters/malgam/sylveon.svg",
  15280. extra: 371 / 325,
  15281. bottom: 0.015
  15282. }
  15283. },
  15284. gigantamax: {
  15285. height: math.unit(50, "feet"),
  15286. name: "Gigantamax Malgam",
  15287. rename: true,
  15288. image: {
  15289. source: "./media/characters/malgam/gigantamax.svg"
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(2 + 10 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(5 + 11 / 12, "feet"),
  15306. weight: math.unit(188, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/fleur/front.svg",
  15310. extra: 309 / 283,
  15311. bottom: 0.007
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 11 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(5 + 4 / 12, "feet"),
  15328. weight: math.unit(122, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/jude/front.svg",
  15332. extra: 288 / 273,
  15333. bottom: 0.03
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(5 + 4 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(5 + 11 / 12, "feet"),
  15350. weight: math.unit(190, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/seara/front.svg",
  15354. extra: 1,
  15355. bottom: 0.05
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(5 + 11 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(16 + 5 / 12, "feet"),
  15372. weight: math.unit(524, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/caspian/front.svg",
  15376. extra: 1,
  15377. bottom: 0.04
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(16 + 5 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(5 + 7 / 12, "feet"),
  15394. weight: math.unit(170, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/mika/front.svg",
  15398. extra: 1,
  15399. bottom: 0.016
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(5 + 7 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6 + 2 / 12, "feet"),
  15416. weight: math.unit(268, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/sol/front.svg",
  15420. extra: 247 / 231,
  15421. bottom: 0.05
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(6 + 2 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15435. {
  15436. buizel: {
  15437. height: math.unit(2 + 5 / 12, "feet"),
  15438. weight: math.unit(87, "lb"),
  15439. name: "Buizel",
  15440. image: {
  15441. source: "./media/characters/umiko/buizel.svg",
  15442. extra: 172 / 157,
  15443. bottom: 0.01
  15444. }
  15445. },
  15446. floatzel: {
  15447. height: math.unit(5 + 9 / 12, "feet"),
  15448. weight: math.unit(250, "lb"),
  15449. name: "Floatzel",
  15450. image: {
  15451. source: "./media/characters/umiko/floatzel.svg",
  15452. extra: 1076/1006,
  15453. bottom: 15/1091
  15454. },
  15455. default: true
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(2 + 5 / 12, "feet"),
  15462. default: true
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15468. {
  15469. front: {
  15470. height: math.unit(6 + 2 / 12, "feet"),
  15471. weight: math.unit(146, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/iliac/front.svg",
  15475. extra: 389 / 365,
  15476. bottom: 0.035
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(6 + 2 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(6, "feet"),
  15493. weight: math.unit(170, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/topaz/front.svg",
  15497. extra: 317 / 303,
  15498. bottom: 0.055
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Normal",
  15505. height: math.unit(6, "feet"),
  15506. default: true
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15512. {
  15513. front: {
  15514. height: math.unit(5 + 11 / 12, "feet"),
  15515. weight: math.unit(144, "lb"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/gabriel/front.svg",
  15519. extra: 285 / 262,
  15520. bottom: 0.004
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(5 + 11 / 12, "feet"),
  15528. default: true
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15534. {
  15535. side: {
  15536. height: math.unit(6 + 5 / 12, "feet"),
  15537. weight: math.unit(300, "lb"),
  15538. name: "Side",
  15539. image: {
  15540. source: "./media/characters/tempest-suicune/side.svg",
  15541. extra: 195 / 154,
  15542. bottom: 0.04
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(6 + 5 / 12, "feet"),
  15550. default: true
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(7 + 2 / 12, "feet"),
  15559. weight: math.unit(322, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/vulcan/front.svg",
  15563. extra: 154 / 147,
  15564. bottom: 0.04
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(7 + 2 / 12, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(5 + 10 / 12, "feet"),
  15581. weight: math.unit(264, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/gault/front.svg",
  15585. extra: 161 / 140,
  15586. bottom: 0.028
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(5 + 10 / 12, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/shard/front.svg",
  15607. extra: 273 / 238,
  15608. bottom: 0.02
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(3 + 6 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15622. {
  15623. front: {
  15624. height: math.unit(5 + 11 / 12, "feet"),
  15625. weight: math.unit(146, "lb"),
  15626. name: "Front",
  15627. image: {
  15628. source: "./media/characters/ashe/front.svg",
  15629. extra: 400 / 373,
  15630. bottom: 0.01
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(5 + 11 / 12, "feet"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(5 + 5 / 12, "feet"),
  15647. weight: math.unit(135, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/beatrix/front.svg",
  15651. extra: 392 / 379,
  15652. bottom: 0.01
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(6, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(6 + 2/12, "feet"),
  15669. weight: math.unit(135, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/ignatius/front.svg",
  15673. extra: 1380/1259,
  15674. bottom: 27/1407
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(6 + 2/12, "feet"),
  15682. default: true
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15688. {
  15689. front: {
  15690. height: math.unit(6 + 2 / 12, "feet"),
  15691. weight: math.unit(138, "lb"),
  15692. name: "Front",
  15693. image: {
  15694. source: "./media/characters/mei-li/front.svg",
  15695. extra: 237 / 229,
  15696. bottom: 0.03
  15697. }
  15698. },
  15699. },
  15700. [
  15701. {
  15702. name: "Normal",
  15703. height: math.unit(6 + 2 / 12, "feet"),
  15704. default: true
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(2 + 4 / 12, "feet"),
  15713. weight: math.unit(62, "lb"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/puru/front.svg",
  15717. extra: 206 / 149,
  15718. bottom: 0.06
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(2 + 4 / 12, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15732. {
  15733. anthro: {
  15734. height: math.unit(5 + 8/12, "feet"),
  15735. weight: math.unit(200, "lb"),
  15736. energyNeed: math.unit(2000, "kcal"),
  15737. name: "Anthro",
  15738. image: {
  15739. source: "./media/characters/kee/anthro.svg",
  15740. extra: 3251/3184,
  15741. bottom: 250/3501
  15742. }
  15743. },
  15744. taur: {
  15745. height: math.unit(11, "feet"),
  15746. weight: math.unit(500, "lb"),
  15747. energyNeed: math.unit(5000, "kcal"),
  15748. name: "Taur",
  15749. image: {
  15750. source: "./media/characters/kee/taur.svg",
  15751. extra: 1362/1320,
  15752. bottom: 83/1445
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(5 + 8/12, "feet"),
  15760. default: true
  15761. },
  15762. {
  15763. name: "Macro",
  15764. height: math.unit(35, "feet")
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15770. {
  15771. anthro: {
  15772. height: math.unit(7, "feet"),
  15773. weight: math.unit(190, "lb"),
  15774. name: "Anthro",
  15775. image: {
  15776. source: "./media/characters/cobalt-dracha/anthro.svg",
  15777. extra: 231 / 225,
  15778. bottom: 0.04
  15779. }
  15780. },
  15781. feral: {
  15782. height: math.unit(9 + 7 / 12, "feet"),
  15783. weight: math.unit(294, "lb"),
  15784. name: "Feral",
  15785. image: {
  15786. source: "./media/characters/cobalt-dracha/feral.svg",
  15787. extra: 692 / 633,
  15788. bottom: 0.05
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(7, "feet"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15802. {
  15803. fallen: {
  15804. height: math.unit(11 + 8 / 12, "feet"),
  15805. weight: math.unit(485, "lb"),
  15806. name: "Java (Fallen)",
  15807. rename: true,
  15808. image: {
  15809. source: "./media/characters/java/fallen.svg",
  15810. extra: 226 / 208,
  15811. bottom: 0.005
  15812. }
  15813. },
  15814. godkin: {
  15815. height: math.unit(10 + 6 / 12, "feet"),
  15816. weight: math.unit(328, "lb"),
  15817. name: "Java (Godkin)",
  15818. rename: true,
  15819. image: {
  15820. source: "./media/characters/java/godkin.svg",
  15821. extra: 1104/1068,
  15822. bottom: 36/1140
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(11 + 8 / 12, "feet"),
  15830. default: true
  15831. },
  15832. ]
  15833. ))
  15834. characterMakers.push(() => makeCharacter(
  15835. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15836. {
  15837. front: {
  15838. height: math.unit(5 + 9 / 12, "feet"),
  15839. weight: math.unit(170, "lb"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/purna/front.svg",
  15843. extra: 239 / 229,
  15844. bottom: 0.01
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(5 + 9 / 12, "feet"),
  15852. default: true
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(5 + 9 / 12, "feet"),
  15861. weight: math.unit(142, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/kuva/front.svg",
  15865. extra: 281 / 271,
  15866. bottom: 0.006
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(5 + 9 / 12, "feet"),
  15874. default: true
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15880. {
  15881. anthro: {
  15882. height: math.unit(9 + 2 / 12, "feet"),
  15883. weight: math.unit(270, "lb"),
  15884. name: "Anthro",
  15885. image: {
  15886. source: "./media/characters/embra/anthro.svg",
  15887. extra: 200 / 187,
  15888. bottom: 0.02
  15889. }
  15890. },
  15891. feral: {
  15892. height: math.unit(18 + 8 / 12, "feet"),
  15893. weight: math.unit(576, "lb"),
  15894. name: "Feral",
  15895. image: {
  15896. source: "./media/characters/embra/feral.svg",
  15897. extra: 152 / 137,
  15898. bottom: 0.037
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Normal",
  15905. height: math.unit(9 + 2 / 12, "feet"),
  15906. default: true
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15912. {
  15913. anthro: {
  15914. height: math.unit(10 + 9 / 12, "feet"),
  15915. weight: math.unit(224, "lb"),
  15916. name: "Anthro",
  15917. image: {
  15918. source: "./media/characters/grottos/anthro.svg",
  15919. extra: 350 / 332,
  15920. bottom: 0.045
  15921. }
  15922. },
  15923. feral: {
  15924. height: math.unit(20 + 7 / 12, "feet"),
  15925. weight: math.unit(629, "lb"),
  15926. name: "Feral",
  15927. image: {
  15928. source: "./media/characters/grottos/feral.svg",
  15929. extra: 207 / 190,
  15930. bottom: 0.05
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Normal",
  15937. height: math.unit(10 + 9 / 12, "feet"),
  15938. default: true
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15944. {
  15945. anthro: {
  15946. height: math.unit(9 + 6 / 12, "feet"),
  15947. weight: math.unit(298, "lb"),
  15948. name: "Anthro",
  15949. image: {
  15950. source: "./media/characters/frifna/anthro.svg",
  15951. extra: 282 / 269,
  15952. bottom: 0.015
  15953. }
  15954. },
  15955. feral: {
  15956. height: math.unit(16 + 2 / 12, "feet"),
  15957. weight: math.unit(624, "lb"),
  15958. name: "Feral",
  15959. image: {
  15960. source: "./media/characters/frifna/feral.svg"
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Normal",
  15967. height: math.unit(9 + 6 / 12, "feet"),
  15968. default: true
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15974. {
  15975. front: {
  15976. height: math.unit(6 + 2 / 12, "feet"),
  15977. weight: math.unit(168, "lb"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/elise/front.svg",
  15981. extra: 276 / 271
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Normal",
  15988. height: math.unit(6 + 2 / 12, "feet"),
  15989. default: true
  15990. },
  15991. ]
  15992. ))
  15993. characterMakers.push(() => makeCharacter(
  15994. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15995. {
  15996. front: {
  15997. height: math.unit(5 + 10 / 12, "feet"),
  15998. weight: math.unit(210, "lb"),
  15999. name: "Front",
  16000. image: {
  16001. source: "./media/characters/glade/front.svg",
  16002. extra: 258 / 247,
  16003. bottom: 0.008
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Normal",
  16010. height: math.unit(5 + 10 / 12, "feet"),
  16011. default: true
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(5 + 10 / 12, "feet"),
  16020. weight: math.unit(129, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/rina/front.svg",
  16024. extra: 266 / 255,
  16025. bottom: 0.005
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(5 + 10 / 12, "feet"),
  16033. default: true
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(6 + 1 / 12, "feet"),
  16042. weight: math.unit(192, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/veronica/front.svg",
  16046. extra: 319 / 309,
  16047. bottom: 0.005
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(6 + 1 / 12, "feet"),
  16055. default: true
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(9 + 3 / 12, "feet"),
  16064. weight: math.unit(1100, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/braxton/front.svg",
  16068. extra: 1057 / 984,
  16069. bottom: 0.05
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(9 + 3 / 12, "feet")
  16077. },
  16078. {
  16079. name: "Giant",
  16080. height: math.unit(300, "feet"),
  16081. default: true
  16082. },
  16083. {
  16084. name: "Macro",
  16085. height: math.unit(700, "feet")
  16086. },
  16087. {
  16088. name: "Megamacro",
  16089. height: math.unit(6000, "feet")
  16090. },
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16095. {
  16096. front: {
  16097. height: math.unit(6 + 7 / 12, "feet"),
  16098. weight: math.unit(150, "lb"),
  16099. name: "Front",
  16100. image: {
  16101. source: "./media/characters/blue-feyonics/front.svg",
  16102. extra: 1403 / 1306,
  16103. bottom: 0.047
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(6 + 7 / 12, "feet"),
  16111. default: true
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16117. {
  16118. front: {
  16119. height: math.unit(1.8, "meters"),
  16120. weight: math.unit(60, "kg"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/maxwell/front.svg",
  16124. extra: 2060 / 1873
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Micro",
  16131. height: math.unit(1, "mm")
  16132. },
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(1.8, "meter"),
  16136. default: true
  16137. },
  16138. {
  16139. name: "Macro",
  16140. height: math.unit(30, "meters")
  16141. },
  16142. {
  16143. name: "Megamacro",
  16144. height: math.unit(10, "km")
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(6, "feet"),
  16153. weight: math.unit(150, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/jack/front.svg",
  16157. extra: 1754 / 1640,
  16158. bottom: 0.01
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(80000, "feet"),
  16166. default: true
  16167. },
  16168. {
  16169. name: "Max size",
  16170. height: math.unit(10, "lightyears")
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16176. {
  16177. urban: {
  16178. height: math.unit(5, "feet"),
  16179. weight: math.unit(240, "lb"),
  16180. name: "Urban",
  16181. image: {
  16182. source: "./media/characters/cafat/urban.svg",
  16183. extra: 1223/1126,
  16184. bottom: 205/1428
  16185. }
  16186. },
  16187. summer: {
  16188. height: math.unit(5, "feet"),
  16189. weight: math.unit(240, "lb"),
  16190. name: "Summer",
  16191. image: {
  16192. source: "./media/characters/cafat/summer.svg",
  16193. extra: 1223/1126,
  16194. bottom: 205/1428
  16195. }
  16196. },
  16197. winter: {
  16198. height: math.unit(5, "feet"),
  16199. weight: math.unit(240, "lb"),
  16200. name: "Winter",
  16201. image: {
  16202. source: "./media/characters/cafat/winter.svg",
  16203. extra: 1223/1126,
  16204. bottom: 205/1428
  16205. }
  16206. },
  16207. lingerie: {
  16208. height: math.unit(5, "feet"),
  16209. weight: math.unit(240, "lb"),
  16210. name: "Lingerie",
  16211. image: {
  16212. source: "./media/characters/cafat/lingerie.svg",
  16213. extra: 1223/1126,
  16214. bottom: 205/1428
  16215. }
  16216. },
  16217. upright: {
  16218. height: math.unit(6.3, "feet"),
  16219. weight: math.unit(240, "lb"),
  16220. name: "Upright",
  16221. image: {
  16222. source: "./media/characters/cafat/upright.svg",
  16223. bottom: 0.01
  16224. }
  16225. },
  16226. uprightFull: {
  16227. height: math.unit(6.3, "feet"),
  16228. weight: math.unit(240, "lb"),
  16229. name: "Upright (Full)",
  16230. image: {
  16231. source: "./media/characters/cafat/upright-full.svg",
  16232. bottom: 0.01
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Small",
  16239. height: math.unit(5, "feet"),
  16240. default: true
  16241. },
  16242. {
  16243. name: "Large",
  16244. height: math.unit(13, "feet")
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(6, "feet"),
  16253. weight: math.unit(150, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/verin-raharra/front.svg",
  16257. extra: 5019 / 4835,
  16258. bottom: 0.023
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(7 + 5 / 12, "feet"),
  16266. default: true
  16267. },
  16268. {
  16269. name: "Upsized",
  16270. height: math.unit(20, "feet")
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(7, "feet"),
  16279. weight: math.unit(230, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/nakata/front.svg",
  16283. extra: 1.005,
  16284. bottom: 0.01
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(7, "feet"),
  16292. default: true
  16293. },
  16294. {
  16295. name: "Big",
  16296. height: math.unit(14, "feet")
  16297. },
  16298. {
  16299. name: "Macro",
  16300. height: math.unit(400, "feet")
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(4.91, "feet"),
  16309. weight: math.unit(100, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/lily/front.svg",
  16313. extra: 1585 / 1415,
  16314. bottom: 0.02
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(4.91, "feet"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16328. {
  16329. laying: {
  16330. height: math.unit(4 + 4 / 12, "feet"),
  16331. weight: math.unit(600, "lb"),
  16332. name: "Laying",
  16333. image: {
  16334. source: "./media/characters/sheila/laying.svg",
  16335. extra: 1333 / 1265,
  16336. bottom: 0.16
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(4 + 4 / 12, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16350. {
  16351. front: {
  16352. height: math.unit(6, "feet"),
  16353. weight: math.unit(190, "lb"),
  16354. name: "Front",
  16355. image: {
  16356. source: "./media/characters/sax/front.svg",
  16357. extra: 1187 / 973,
  16358. bottom: 0.042
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Micro",
  16365. height: math.unit(4, "inches"),
  16366. default: true
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16372. {
  16373. front: {
  16374. height: math.unit(6, "feet"),
  16375. weight: math.unit(150, "lb"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/pandora/front.svg",
  16379. extra: 2720 / 2556,
  16380. bottom: 0.015
  16381. }
  16382. },
  16383. back: {
  16384. height: math.unit(6, "feet"),
  16385. weight: math.unit(150, "lb"),
  16386. name: "Back",
  16387. image: {
  16388. source: "./media/characters/pandora/back.svg",
  16389. extra: 2720 / 2556,
  16390. bottom: 0.01
  16391. }
  16392. },
  16393. beans: {
  16394. height: math.unit(6 / 8, "feet"),
  16395. name: "Beans",
  16396. image: {
  16397. source: "./media/characters/pandora/beans.svg"
  16398. }
  16399. },
  16400. collar: {
  16401. height: math.unit(0.31, "feet"),
  16402. name: "Collar",
  16403. image: {
  16404. source: "./media/characters/pandora/collar.svg"
  16405. }
  16406. },
  16407. skirt: {
  16408. height: math.unit(6, "feet"),
  16409. weight: math.unit(150, "lb"),
  16410. name: "Skirt",
  16411. image: {
  16412. source: "./media/characters/pandora/skirt.svg",
  16413. extra: 1622 / 1525,
  16414. bottom: 0.015
  16415. }
  16416. },
  16417. hoodie: {
  16418. height: math.unit(6, "feet"),
  16419. weight: math.unit(150, "lb"),
  16420. name: "Hoodie",
  16421. image: {
  16422. source: "./media/characters/pandora/hoodie.svg",
  16423. extra: 1622 / 1525,
  16424. bottom: 0.015
  16425. }
  16426. },
  16427. casual: {
  16428. height: math.unit(6, "feet"),
  16429. weight: math.unit(150, "lb"),
  16430. name: "Casual",
  16431. image: {
  16432. source: "./media/characters/pandora/casual.svg",
  16433. extra: 1622 / 1525,
  16434. bottom: 0.015
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(6, "feet")
  16442. },
  16443. {
  16444. name: "Big Steppy",
  16445. height: math.unit(1, "km"),
  16446. default: true
  16447. },
  16448. {
  16449. name: "Galactic Steppy",
  16450. height: math.unit(2, "gigameters")
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16456. {
  16457. side: {
  16458. height: math.unit(10, "feet"),
  16459. weight: math.unit(800, "kg"),
  16460. name: "Side",
  16461. image: {
  16462. source: "./media/characters/venio-darcony/side.svg",
  16463. extra: 1373 / 1003,
  16464. bottom: 0.037
  16465. }
  16466. },
  16467. front: {
  16468. height: math.unit(19, "feet"),
  16469. weight: math.unit(800, "kg"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/venio-darcony/front.svg"
  16473. }
  16474. },
  16475. back: {
  16476. height: math.unit(19, "feet"),
  16477. weight: math.unit(800, "kg"),
  16478. name: "Back",
  16479. image: {
  16480. source: "./media/characters/venio-darcony/back.svg"
  16481. }
  16482. },
  16483. sideNsfw: {
  16484. height: math.unit(10, "feet"),
  16485. weight: math.unit(800, "kg"),
  16486. name: "Side (NSFW)",
  16487. image: {
  16488. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16489. extra: 1373 / 1003,
  16490. bottom: 0.037
  16491. }
  16492. },
  16493. frontNsfw: {
  16494. height: math.unit(19, "feet"),
  16495. weight: math.unit(800, "kg"),
  16496. name: "Front (NSFW)",
  16497. image: {
  16498. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16499. }
  16500. },
  16501. backNsfw: {
  16502. height: math.unit(19, "feet"),
  16503. weight: math.unit(800, "kg"),
  16504. name: "Back (NSFW)",
  16505. image: {
  16506. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16507. }
  16508. },
  16509. sideArmored: {
  16510. height: math.unit(10, "feet"),
  16511. weight: math.unit(800, "kg"),
  16512. name: "Side (Armored)",
  16513. image: {
  16514. source: "./media/characters/venio-darcony/side-armored.svg",
  16515. extra: 1373 / 1003,
  16516. bottom: 0.037
  16517. }
  16518. },
  16519. frontArmored: {
  16520. height: math.unit(19, "feet"),
  16521. weight: math.unit(900, "kg"),
  16522. name: "Front (Armored)",
  16523. image: {
  16524. source: "./media/characters/venio-darcony/front-armored.svg"
  16525. }
  16526. },
  16527. backArmored: {
  16528. height: math.unit(19, "feet"),
  16529. weight: math.unit(900, "kg"),
  16530. name: "Back (Armored)",
  16531. image: {
  16532. source: "./media/characters/venio-darcony/back-armored.svg"
  16533. }
  16534. },
  16535. sword: {
  16536. height: math.unit(10, "feet"),
  16537. weight: math.unit(50, "lb"),
  16538. name: "Sword",
  16539. image: {
  16540. source: "./media/characters/venio-darcony/sword.svg"
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(10, "feet")
  16548. },
  16549. {
  16550. name: "Macro",
  16551. height: math.unit(130, "feet"),
  16552. default: true
  16553. },
  16554. {
  16555. name: "Macro+",
  16556. height: math.unit(240, "feet")
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(6, "feet"),
  16565. weight: math.unit(150, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/veski/front.svg",
  16569. extra: 1299 / 1225,
  16570. bottom: 0.04
  16571. }
  16572. },
  16573. back: {
  16574. height: math.unit(6, "feet"),
  16575. weight: math.unit(150, "lb"),
  16576. name: "Back",
  16577. image: {
  16578. source: "./media/characters/veski/back.svg",
  16579. extra: 1299 / 1225,
  16580. bottom: 0.008
  16581. }
  16582. },
  16583. maw: {
  16584. height: math.unit(1.5 * 1.21, "feet"),
  16585. name: "Maw",
  16586. image: {
  16587. source: "./media/characters/veski/maw.svg"
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Macro",
  16594. height: math.unit(2, "km"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(5 + 7 / 12, "feet"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/isabelle/front.svg",
  16607. extra: 2130 / 1976,
  16608. bottom: 0.05
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Supermicro",
  16615. height: math.unit(10, "micrometers")
  16616. },
  16617. {
  16618. name: "Micro",
  16619. height: math.unit(1, "inch")
  16620. },
  16621. {
  16622. name: "Tiny",
  16623. height: math.unit(5, "inches")
  16624. },
  16625. {
  16626. name: "Standard",
  16627. height: math.unit(5 + 7 / 12, "inches")
  16628. },
  16629. {
  16630. name: "Macro",
  16631. height: math.unit(80, "meters"),
  16632. default: true
  16633. },
  16634. {
  16635. name: "Megamacro",
  16636. height: math.unit(250, "meters")
  16637. },
  16638. {
  16639. name: "Gigamacro",
  16640. height: math.unit(5, "km")
  16641. },
  16642. {
  16643. name: "Cosmic",
  16644. height: math.unit(2.5e6, "miles")
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(6, "feet"),
  16653. weight: math.unit(150, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/hanzo/front.svg",
  16657. extra: 374 / 344,
  16658. bottom: 0.02
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(8, "feet"),
  16666. default: true
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(7, "feet"),
  16675. weight: math.unit(130, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/anna/front.svg",
  16679. extra: 169 / 145,
  16680. bottom: 0.06
  16681. }
  16682. },
  16683. full: {
  16684. height: math.unit(4.96, "feet"),
  16685. weight: math.unit(220, "lb"),
  16686. name: "Full",
  16687. image: {
  16688. source: "./media/characters/anna/full.svg",
  16689. extra: 138 / 114,
  16690. bottom: 0.15
  16691. }
  16692. },
  16693. tongue: {
  16694. height: math.unit(2.53, "feet"),
  16695. name: "Tongue",
  16696. image: {
  16697. source: "./media/characters/anna/tongue.svg"
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(7, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(7, "feet"),
  16714. weight: math.unit(150, "lb"),
  16715. name: "Front",
  16716. image: {
  16717. source: "./media/characters/ian-corvid/front.svg",
  16718. extra: 150 / 142,
  16719. bottom: 0.02
  16720. }
  16721. },
  16722. back: {
  16723. height: math.unit(7, "feet"),
  16724. weight: math.unit(150, "lb"),
  16725. name: "Back",
  16726. image: {
  16727. source: "./media/characters/ian-corvid/back.svg",
  16728. extra: 150 / 143,
  16729. bottom: 0.01
  16730. }
  16731. },
  16732. stomping: {
  16733. height: math.unit(7, "feet"),
  16734. weight: math.unit(150, "lb"),
  16735. name: "Stomping",
  16736. image: {
  16737. source: "./media/characters/ian-corvid/stomping.svg",
  16738. extra: 76 / 72
  16739. }
  16740. },
  16741. sitting: {
  16742. height: math.unit(7 / 1.8, "feet"),
  16743. weight: math.unit(150, "lb"),
  16744. name: "Sitting",
  16745. image: {
  16746. source: "./media/characters/ian-corvid/sitting.svg",
  16747. extra: 1400 / 1269,
  16748. bottom: 0.15
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Tiny Microw",
  16755. height: math.unit(1, "inch")
  16756. },
  16757. {
  16758. name: "Microw",
  16759. height: math.unit(6, "inches")
  16760. },
  16761. {
  16762. name: "Crow",
  16763. height: math.unit(7 + 1 / 12, "feet"),
  16764. default: true
  16765. },
  16766. {
  16767. name: "Macrow",
  16768. height: math.unit(176, "feet")
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(5 + 7 / 12, "feet"),
  16777. weight: math.unit(147, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/natalie-kellon/front.svg",
  16781. extra: 1214 / 1141,
  16782. bottom: 0.02
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Micro",
  16789. height: math.unit(1 / 16, "inch")
  16790. },
  16791. {
  16792. name: "Tiny",
  16793. height: math.unit(4, "inches")
  16794. },
  16795. {
  16796. name: "Normal",
  16797. height: math.unit(5 + 7 / 12, "feet"),
  16798. default: true
  16799. },
  16800. {
  16801. name: "Amazon",
  16802. height: math.unit(12, "feet")
  16803. },
  16804. {
  16805. name: "Giantess",
  16806. height: math.unit(160, "meters")
  16807. },
  16808. {
  16809. name: "Titaness",
  16810. height: math.unit(800, "meters")
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16816. {
  16817. front: {
  16818. height: math.unit(6, "feet"),
  16819. weight: math.unit(150, "lb"),
  16820. name: "Front",
  16821. image: {
  16822. source: "./media/characters/alluria/front.svg",
  16823. extra: 806 / 738,
  16824. bottom: 0.01
  16825. }
  16826. },
  16827. side: {
  16828. height: math.unit(6, "feet"),
  16829. weight: math.unit(150, "lb"),
  16830. name: "Side",
  16831. image: {
  16832. source: "./media/characters/alluria/side.svg",
  16833. extra: 800 / 750,
  16834. }
  16835. },
  16836. back: {
  16837. height: math.unit(6, "feet"),
  16838. weight: math.unit(150, "lb"),
  16839. name: "Back",
  16840. image: {
  16841. source: "./media/characters/alluria/back.svg",
  16842. extra: 806 / 738,
  16843. }
  16844. },
  16845. frontMaid: {
  16846. height: math.unit(6, "feet"),
  16847. weight: math.unit(150, "lb"),
  16848. name: "Front (Maid)",
  16849. image: {
  16850. source: "./media/characters/alluria/front-maid.svg",
  16851. extra: 806 / 738,
  16852. bottom: 0.01
  16853. }
  16854. },
  16855. sideMaid: {
  16856. height: math.unit(6, "feet"),
  16857. weight: math.unit(150, "lb"),
  16858. name: "Side (Maid)",
  16859. image: {
  16860. source: "./media/characters/alluria/side-maid.svg",
  16861. extra: 800 / 750,
  16862. bottom: 0.005
  16863. }
  16864. },
  16865. backMaid: {
  16866. height: math.unit(6, "feet"),
  16867. weight: math.unit(150, "lb"),
  16868. name: "Back (Maid)",
  16869. image: {
  16870. source: "./media/characters/alluria/back-maid.svg",
  16871. extra: 806 / 738,
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Micro",
  16878. height: math.unit(6, "inches"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(6, "feet"),
  16888. weight: math.unit(150, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/kyle/front.svg",
  16892. extra: 1069 / 962,
  16893. bottom: 77.228 / 1727.45
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Macro",
  16900. height: math.unit(150, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(6, "feet"),
  16910. weight: math.unit(300, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/duncan/front.svg",
  16914. extra: 1650 / 1482,
  16915. bottom: 0.05
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Macro",
  16922. height: math.unit(100, "feet"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(5 + 4 / 12, "feet"),
  16932. weight: math.unit(220, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/memory/front.svg",
  16936. extra: 3641 / 3545,
  16937. bottom: 0.03
  16938. }
  16939. },
  16940. back: {
  16941. height: math.unit(5 + 4 / 12, "feet"),
  16942. weight: math.unit(220, "lb"),
  16943. name: "Back",
  16944. image: {
  16945. source: "./media/characters/memory/back.svg",
  16946. extra: 3641 / 3545,
  16947. bottom: 0.025
  16948. }
  16949. },
  16950. frontSkirt: {
  16951. height: math.unit(5 + 4 / 12, "feet"),
  16952. weight: math.unit(220, "lb"),
  16953. name: "Front (Skirt)",
  16954. image: {
  16955. source: "./media/characters/memory/front-skirt.svg",
  16956. extra: 3641 / 3545,
  16957. bottom: 0.03
  16958. }
  16959. },
  16960. frontDress: {
  16961. height: math.unit(5 + 4 / 12, "feet"),
  16962. weight: math.unit(220, "lb"),
  16963. name: "Front (Dress)",
  16964. image: {
  16965. source: "./media/characters/memory/front-dress.svg",
  16966. extra: 3641 / 3545,
  16967. bottom: 0.03
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Micro",
  16974. height: math.unit(6, "inches"),
  16975. default: true
  16976. },
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(5 + 4 / 12, "feet")
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(4 + 11 / 12, "feet"),
  16988. weight: math.unit(100, "lb"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/luno/front.svg",
  16992. extra: 1535 / 1487,
  16993. bottom: 0.03
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Micro",
  17000. height: math.unit(3, "inches")
  17001. },
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(4 + 11 / 12, "feet"),
  17005. default: true
  17006. },
  17007. {
  17008. name: "Macro",
  17009. height: math.unit(300, "feet")
  17010. },
  17011. {
  17012. name: "Megamacro",
  17013. height: math.unit(700, "miles")
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(6 + 2 / 12, "feet"),
  17022. weight: math.unit(170, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/jamesy/front.svg",
  17026. extra: 440 / 382,
  17027. bottom: 0.005
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Micro",
  17034. height: math.unit(3, "inches")
  17035. },
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(6 + 2 / 12, "feet"),
  17039. default: true
  17040. },
  17041. {
  17042. name: "Macro",
  17043. height: math.unit(300, "feet")
  17044. },
  17045. {
  17046. name: "Megamacro",
  17047. height: math.unit(700, "miles")
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17053. {
  17054. front: {
  17055. height: math.unit(6, "feet"),
  17056. weight: math.unit(160, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/mark/front.svg",
  17060. extra: 3300 / 3100,
  17061. bottom: 136.42 / 3440.47
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Macro",
  17068. height: math.unit(120, "meters")
  17069. },
  17070. {
  17071. name: "Bigger Macro",
  17072. height: math.unit(350, "meters")
  17073. },
  17074. {
  17075. name: "Megamacro",
  17076. height: math.unit(8, "km"),
  17077. default: true
  17078. },
  17079. {
  17080. name: "Continental",
  17081. height: math.unit(4550, "km")
  17082. },
  17083. {
  17084. name: "Planetary",
  17085. height: math.unit(65000, "km")
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17091. {
  17092. front: {
  17093. height: math.unit(6, "feet"),
  17094. weight: math.unit(400, "lb"),
  17095. name: "Front",
  17096. image: {
  17097. source: "./media/characters/mac/front.svg",
  17098. extra: 1048 / 987.7,
  17099. bottom: 60 / 1107.6,
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Macro",
  17106. height: math.unit(500, "feet"),
  17107. default: true
  17108. },
  17109. ]
  17110. ))
  17111. characterMakers.push(() => makeCharacter(
  17112. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17113. {
  17114. front: {
  17115. height: math.unit(5 + 2 / 12, "feet"),
  17116. weight: math.unit(190, "lb"),
  17117. name: "Front",
  17118. image: {
  17119. source: "./media/characters/bari/front.svg",
  17120. extra: 3156 / 2880,
  17121. bottom: 0.03
  17122. }
  17123. },
  17124. back: {
  17125. height: math.unit(5 + 2 / 12, "feet"),
  17126. weight: math.unit(190, "lb"),
  17127. name: "Back",
  17128. image: {
  17129. source: "./media/characters/bari/back.svg",
  17130. extra: 3260 / 2834,
  17131. bottom: 0.025
  17132. }
  17133. },
  17134. frontPlush: {
  17135. height: math.unit(5 + 2 / 12, "feet"),
  17136. weight: math.unit(190, "lb"),
  17137. name: "Front (Plush)",
  17138. image: {
  17139. source: "./media/characters/bari/front-plush.svg",
  17140. extra: 1112 / 1061,
  17141. bottom: 0.002
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Micro",
  17148. height: math.unit(3, "inches")
  17149. },
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(5 + 2 / 12, "feet"),
  17153. default: true
  17154. },
  17155. {
  17156. name: "Macro",
  17157. height: math.unit(20, "feet")
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(6 + 1 / 12, "feet"),
  17166. weight: math.unit(275, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/hunter-misha-raven/front.svg"
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Mortal",
  17176. height: math.unit(6 + 1 / 12, "feet")
  17177. },
  17178. {
  17179. name: "Divine",
  17180. height: math.unit(1.12134e34, "parsecs"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(6 + 3 / 12, "feet"),
  17190. weight: math.unit(220, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/max-calore/front.svg",
  17194. extra: 1700 / 1648,
  17195. bottom: 0.01
  17196. }
  17197. },
  17198. back: {
  17199. height: math.unit(6 + 3 / 12, "feet"),
  17200. weight: math.unit(220, "lb"),
  17201. name: "Back",
  17202. image: {
  17203. source: "./media/characters/max-calore/back.svg",
  17204. extra: 1700 / 1648,
  17205. bottom: 0.01
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(6 + 3 / 12, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17219. {
  17220. side: {
  17221. height: math.unit(2 + 8 / 12, "feet"),
  17222. weight: math.unit(99, "lb"),
  17223. name: "Side",
  17224. image: {
  17225. source: "./media/characters/aspen/side.svg",
  17226. extra: 152 / 138,
  17227. bottom: 0.032
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(2 + 8 / 12, "feet"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17241. {
  17242. side: {
  17243. height: math.unit(3 + 2 / 12, "feet"),
  17244. weight: math.unit(224, "lb"),
  17245. name: "Side",
  17246. image: {
  17247. source: "./media/characters/sheila-feral-wolf/side.svg",
  17248. extra: 179 / 166,
  17249. bottom: 0.03
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(3 + 2 / 12, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17263. {
  17264. side: {
  17265. height: math.unit(1 + 9 / 12, "feet"),
  17266. weight: math.unit(38, "lb"),
  17267. name: "Side",
  17268. image: {
  17269. source: "./media/characters/michelle/side.svg",
  17270. extra: 147 / 136.7,
  17271. bottom: 0.03
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(1 + 9 / 12, "feet"),
  17279. default: true
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(1.54, "feet"),
  17288. weight: math.unit(50, "lb"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/nino/front.svg"
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(1.54, "feet"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(1.49, "feet"),
  17308. weight: math.unit(45, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/viola/front.svg"
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(1.49, "feet"),
  17319. default: true
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(6 + 5 / 12, "feet"),
  17328. weight: math.unit(580, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/atlas/front.svg",
  17332. extra: 298.5 / 290,
  17333. bottom: 0.015
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(6 + 5 / 12, "feet"),
  17341. default: true
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17347. {
  17348. side: {
  17349. height: math.unit(1 + 10 / 12, "feet"),
  17350. weight: math.unit(25, "lb"),
  17351. name: "Side",
  17352. image: {
  17353. source: "./media/characters/davy/side.svg",
  17354. extra: 200 / 170,
  17355. bottom: 0.01
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(1 + 10 / 12, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17369. {
  17370. side: {
  17371. height: math.unit(4 + 8 / 12, "feet"),
  17372. weight: math.unit(166, "lb"),
  17373. name: "Side",
  17374. image: {
  17375. source: "./media/characters/fiona/side.svg",
  17376. extra: 232 / 220,
  17377. bottom: 0.03
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(4 + 8 / 12, "feet"),
  17385. default: true
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17391. {
  17392. front: {
  17393. height: math.unit(3, "feet"),
  17394. weight: math.unit(100, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/lyla/front.svg",
  17398. bottom: 0.1
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(3, "feet"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17412. {
  17413. side: {
  17414. height: math.unit(1.8, "feet"),
  17415. weight: math.unit(44, "lb"),
  17416. name: "Side",
  17417. image: {
  17418. source: "./media/characters/perseus/side.svg",
  17419. bottom: 0.21
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(1.8, "feet"),
  17427. default: true
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17433. {
  17434. side: {
  17435. height: math.unit(4 + 2 / 12, "feet"),
  17436. weight: math.unit(20, "lb"),
  17437. name: "Side",
  17438. image: {
  17439. source: "./media/characters/remus/side.svg"
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Normal",
  17446. height: math.unit(4 + 2 / 12, "feet"),
  17447. default: true
  17448. },
  17449. ]
  17450. ))
  17451. characterMakers.push(() => makeCharacter(
  17452. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17453. {
  17454. front: {
  17455. height: math.unit(4 + 11 / 12, "feet"),
  17456. weight: math.unit(114, "lb"),
  17457. name: "Front",
  17458. image: {
  17459. source: "./media/characters/raf/front.svg",
  17460. extra: 1504/1339,
  17461. bottom: 26/1530
  17462. }
  17463. },
  17464. side: {
  17465. height: math.unit(4 + 11 / 12, "feet"),
  17466. weight: math.unit(114, "lb"),
  17467. name: "Side",
  17468. image: {
  17469. source: "./media/characters/raf/side.svg",
  17470. extra: 1466/1316,
  17471. bottom: 29/1495
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Micro",
  17478. height: math.unit(2, "inches")
  17479. },
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(4 + 11 / 12, "feet"),
  17483. default: true
  17484. },
  17485. {
  17486. name: "Macro",
  17487. height: math.unit(70, "feet")
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17493. {
  17494. front: {
  17495. height: math.unit(1.5, "meters"),
  17496. weight: math.unit(68, "kg"),
  17497. name: "Front",
  17498. image: {
  17499. source: "./media/characters/liam-einarr/front.svg",
  17500. extra: 2822 / 2666
  17501. }
  17502. },
  17503. back: {
  17504. height: math.unit(1.5, "meters"),
  17505. weight: math.unit(68, "kg"),
  17506. name: "Back",
  17507. image: {
  17508. source: "./media/characters/liam-einarr/back.svg",
  17509. extra: 2822 / 2666,
  17510. bottom: 0.015
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(1.5, "meters"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Macro",
  17522. height: math.unit(150, "meters")
  17523. },
  17524. {
  17525. name: "Megamacro",
  17526. height: math.unit(35, "km")
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(6, "feet"),
  17535. weight: math.unit(75, "kg"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/linda/front.svg",
  17539. extra: 930 / 874,
  17540. bottom: 0.004
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(6, "feet"),
  17548. default: true
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17554. {
  17555. front: {
  17556. height: math.unit(6 + 8 / 12, "feet"),
  17557. weight: math.unit(220, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/caylex/front.svg",
  17561. extra: 821 / 772,
  17562. bottom: 0.07
  17563. }
  17564. },
  17565. back: {
  17566. height: math.unit(6 + 8 / 12, "feet"),
  17567. weight: math.unit(220, "lb"),
  17568. name: "Back",
  17569. image: {
  17570. source: "./media/characters/caylex/back.svg",
  17571. extra: 821 / 772,
  17572. bottom: 0.022
  17573. }
  17574. },
  17575. hand: {
  17576. height: math.unit(1.25, "feet"),
  17577. name: "Hand",
  17578. image: {
  17579. source: "./media/characters/caylex/hand.svg"
  17580. }
  17581. },
  17582. foot: {
  17583. height: math.unit(1.6, "feet"),
  17584. name: "Foot",
  17585. image: {
  17586. source: "./media/characters/caylex/foot.svg"
  17587. }
  17588. },
  17589. armored: {
  17590. height: math.unit(6 + 8 / 12, "feet"),
  17591. weight: math.unit(250, "lb"),
  17592. name: "Armored",
  17593. image: {
  17594. source: "./media/characters/caylex/armored.svg",
  17595. extra: 1420 / 1310,
  17596. bottom: 0.045
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(6 + 8 / 12, "feet"),
  17604. default: true
  17605. },
  17606. {
  17607. name: "Normal+",
  17608. height: math.unit(12, "feet")
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17614. {
  17615. front: {
  17616. height: math.unit(7 + 6 / 12, "feet"),
  17617. weight: math.unit(288, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/alana/front.svg",
  17621. extra: 679 / 653,
  17622. bottom: 22.5 / 701
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(7 + 6 / 12, "feet")
  17630. },
  17631. {
  17632. name: "Large",
  17633. height: math.unit(50, "feet")
  17634. },
  17635. {
  17636. name: "Macro",
  17637. height: math.unit(100, "feet"),
  17638. default: true
  17639. },
  17640. {
  17641. name: "Macro+",
  17642. height: math.unit(200, "feet")
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(6 + 1 / 12, "feet"),
  17651. weight: math.unit(210, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/hasani/front.svg",
  17655. extra: 244 / 232,
  17656. bottom: 0.01
  17657. }
  17658. },
  17659. back: {
  17660. height: math.unit(6 + 1 / 12, "feet"),
  17661. weight: math.unit(210, "lb"),
  17662. name: "Back",
  17663. image: {
  17664. source: "./media/characters/hasani/back.svg",
  17665. extra: 244 / 232,
  17666. bottom: 0.01
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(6 + 1 / 12, "feet")
  17674. },
  17675. {
  17676. name: "Macro",
  17677. height: math.unit(175, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(1.82, "meters"),
  17687. weight: math.unit(140, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/nita/front.svg",
  17691. extra: 2473 / 2363,
  17692. bottom: 0.01
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(1.82, "m")
  17700. },
  17701. {
  17702. name: "Macro",
  17703. height: math.unit(300, "m")
  17704. },
  17705. {
  17706. name: "Mistake Canon",
  17707. height: math.unit(0.5, "miles"),
  17708. default: true
  17709. },
  17710. {
  17711. name: "Big Mistake",
  17712. height: math.unit(13, "miles")
  17713. },
  17714. {
  17715. name: "Playing God",
  17716. height: math.unit(2450, "miles")
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17722. {
  17723. front: {
  17724. height: math.unit(4, "feet"),
  17725. weight: math.unit(120, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/shiriko/front.svg",
  17729. extra: 970/934,
  17730. bottom: 5/975
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(4, "feet"),
  17738. default: true
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17744. {
  17745. front: {
  17746. height: math.unit(6, "feet"),
  17747. name: "front",
  17748. image: {
  17749. source: "./media/characters/deja/front.svg",
  17750. extra: 926 / 840,
  17751. bottom: 0.07
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Planck Length",
  17758. height: math.unit(1.6e-35, "meters")
  17759. },
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(30.48, "meters"),
  17763. default: true
  17764. },
  17765. {
  17766. name: "Universal",
  17767. height: math.unit(8.8e26, "meters")
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17773. {
  17774. side: {
  17775. height: math.unit(8, "feet"),
  17776. weight: math.unit(6300, "lb"),
  17777. name: "Side",
  17778. image: {
  17779. source: "./media/characters/anima/side.svg",
  17780. bottom: 0.035
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(8, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(8, "feet"),
  17797. weight: math.unit(350, "lb"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/bianca/front.svg",
  17801. extra: 234 / 225,
  17802. bottom: 0.03
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(8, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17816. {
  17817. front: {
  17818. height: math.unit(6, "feet"),
  17819. weight: math.unit(150, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/adinia/front.svg",
  17823. extra: 1845 / 1672,
  17824. bottom: 0.02
  17825. }
  17826. },
  17827. back: {
  17828. height: math.unit(6, "feet"),
  17829. weight: math.unit(150, "lb"),
  17830. name: "Back",
  17831. image: {
  17832. source: "./media/characters/adinia/back.svg",
  17833. extra: 1845 / 1672,
  17834. bottom: 0.002
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(11 + 5 / 12, "feet"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(3, "meters"),
  17851. weight: math.unit(200, "kg"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/lykasa/front.svg",
  17855. extra: 1076 / 976,
  17856. bottom: 0.06
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(3, "meters")
  17864. },
  17865. {
  17866. name: "Kaiju",
  17867. height: math.unit(120, "meters"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Mega Kaiju",
  17872. height: math.unit(240, "km")
  17873. },
  17874. {
  17875. name: "Giga Kaiju",
  17876. height: math.unit(400, "megameters")
  17877. },
  17878. {
  17879. name: "Tera Kaiju",
  17880. height: math.unit(800, "gigameters")
  17881. },
  17882. {
  17883. name: "Kaiju Dragon Goddess",
  17884. height: math.unit(26, "zettaparsecs")
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17890. {
  17891. side: {
  17892. height: math.unit(283 / 124 * 6, "feet"),
  17893. weight: math.unit(35000, "lb"),
  17894. name: "Side",
  17895. image: {
  17896. source: "./media/characters/malfaren/side.svg",
  17897. extra: 1310/529,
  17898. bottom: 24/1334
  17899. }
  17900. },
  17901. front: {
  17902. height: math.unit(22.36, "feet"),
  17903. weight: math.unit(35000, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/malfaren/front.svg",
  17907. extra: 1237/1115,
  17908. bottom: 32/1269
  17909. }
  17910. },
  17911. maw: {
  17912. height: math.unit(6.9, "feet"),
  17913. name: "Maw",
  17914. image: {
  17915. source: "./media/characters/malfaren/maw.svg"
  17916. }
  17917. },
  17918. dick: {
  17919. height: math.unit(6.19, "feet"),
  17920. name: "Dick",
  17921. image: {
  17922. source: "./media/characters/malfaren/dick.svg"
  17923. }
  17924. },
  17925. eye: {
  17926. height: math.unit(0.69, "feet"),
  17927. name: "Eye",
  17928. image: {
  17929. source: "./media/characters/malfaren/eye.svg"
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Big",
  17936. height: math.unit(283 / 162 * 6, "feet"),
  17937. },
  17938. {
  17939. name: "Bigger",
  17940. height: math.unit(283 / 124 * 6, "feet")
  17941. },
  17942. {
  17943. name: "Massive",
  17944. height: math.unit(283 / 92 * 6, "feet"),
  17945. default: true
  17946. },
  17947. {
  17948. name: "👀💦",
  17949. height: math.unit(283 / 73 * 6, "feet"),
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17955. {
  17956. front: {
  17957. height: math.unit(1.7, "m"),
  17958. weight: math.unit(70, "kg"),
  17959. name: "Front",
  17960. image: {
  17961. source: "./media/characters/kernel/front.svg",
  17962. extra: 222 / 210,
  17963. bottom: 0.007
  17964. }
  17965. },
  17966. },
  17967. [
  17968. {
  17969. name: "Nano",
  17970. height: math.unit(17, "micrometers")
  17971. },
  17972. {
  17973. name: "Micro",
  17974. height: math.unit(1.7, "mm")
  17975. },
  17976. {
  17977. name: "Small",
  17978. height: math.unit(1.7, "cm")
  17979. },
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(1.7, "m"),
  17983. default: true
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17989. {
  17990. front: {
  17991. height: math.unit(1.75, "meters"),
  17992. weight: math.unit(65, "kg"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/jayne-folest/front.svg",
  17996. extra: 2115 / 2007,
  17997. bottom: 0.02
  17998. }
  17999. },
  18000. back: {
  18001. height: math.unit(1.75, "meters"),
  18002. weight: math.unit(65, "kg"),
  18003. name: "Back",
  18004. image: {
  18005. source: "./media/characters/jayne-folest/back.svg",
  18006. extra: 2115 / 2007,
  18007. bottom: 0.005
  18008. }
  18009. },
  18010. frontClothed: {
  18011. height: math.unit(1.75, "meters"),
  18012. weight: math.unit(65, "kg"),
  18013. name: "Front (Clothed)",
  18014. image: {
  18015. source: "./media/characters/jayne-folest/front-clothed.svg",
  18016. extra: 2115 / 2007,
  18017. bottom: 0.035
  18018. }
  18019. },
  18020. hand: {
  18021. height: math.unit(1 / 1.260, "feet"),
  18022. name: "Hand",
  18023. image: {
  18024. source: "./media/characters/jayne-folest/hand.svg"
  18025. }
  18026. },
  18027. foot: {
  18028. height: math.unit(1 / 0.918, "feet"),
  18029. name: "Foot",
  18030. image: {
  18031. source: "./media/characters/jayne-folest/foot.svg"
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Micro",
  18038. height: math.unit(4, "cm")
  18039. },
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(1.75, "meters")
  18043. },
  18044. {
  18045. name: "Macro",
  18046. height: math.unit(47.5, "meters"),
  18047. default: true
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18053. {
  18054. front: {
  18055. height: math.unit(180, "cm"),
  18056. weight: math.unit(70, "kg"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/algier/front.svg",
  18060. extra: 596 / 572,
  18061. bottom: 0.04
  18062. }
  18063. },
  18064. back: {
  18065. height: math.unit(180, "cm"),
  18066. weight: math.unit(70, "kg"),
  18067. name: "Back",
  18068. image: {
  18069. source: "./media/characters/algier/back.svg",
  18070. extra: 596 / 572,
  18071. bottom: 0.025
  18072. }
  18073. },
  18074. frontdressed: {
  18075. height: math.unit(180, "cm"),
  18076. weight: math.unit(150, "kg"),
  18077. name: "Front-dressed",
  18078. image: {
  18079. source: "./media/characters/algier/front-dressed.svg",
  18080. extra: 596 / 572,
  18081. bottom: 0.038
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Micro",
  18088. height: math.unit(5, "cm")
  18089. },
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(180, "cm"),
  18093. default: true
  18094. },
  18095. {
  18096. name: "Macro",
  18097. height: math.unit(64, "m")
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18103. {
  18104. upright: {
  18105. height: math.unit(7, "feet"),
  18106. weight: math.unit(300, "lb"),
  18107. name: "Upright",
  18108. image: {
  18109. source: "./media/characters/pretzel/upright.svg",
  18110. extra: 534 / 522,
  18111. bottom: 0.065
  18112. }
  18113. },
  18114. sprawling: {
  18115. height: math.unit(3.75, "feet"),
  18116. weight: math.unit(300, "lb"),
  18117. name: "Sprawling",
  18118. image: {
  18119. source: "./media/characters/pretzel/sprawling.svg",
  18120. extra: 314 / 281,
  18121. bottom: 0.1
  18122. }
  18123. },
  18124. tongue: {
  18125. height: math.unit(2, "feet"),
  18126. name: "Tongue",
  18127. image: {
  18128. source: "./media/characters/pretzel/tongue.svg"
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(7, "feet"),
  18136. default: true
  18137. },
  18138. {
  18139. name: "Oversized",
  18140. height: math.unit(15, "feet")
  18141. },
  18142. {
  18143. name: "Huge",
  18144. height: math.unit(30, "feet")
  18145. },
  18146. {
  18147. name: "Macro",
  18148. height: math.unit(250, "feet")
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18154. {
  18155. sideFront: {
  18156. height: math.unit(5 + 2 / 12, "feet"),
  18157. weight: math.unit(120, "lb"),
  18158. name: "Front Side",
  18159. image: {
  18160. source: "./media/characters/roxi/side-front.svg",
  18161. extra: 2924 / 2717,
  18162. bottom: 0.08
  18163. }
  18164. },
  18165. sideBack: {
  18166. height: math.unit(5 + 2 / 12, "feet"),
  18167. weight: math.unit(120, "lb"),
  18168. name: "Back Side",
  18169. image: {
  18170. source: "./media/characters/roxi/side-back.svg",
  18171. extra: 2904 / 2693,
  18172. bottom: 0.06
  18173. }
  18174. },
  18175. front: {
  18176. height: math.unit(5 + 2 / 12, "feet"),
  18177. weight: math.unit(120, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/roxi/front.svg",
  18181. extra: 2028 / 1907,
  18182. bottom: 0.01
  18183. }
  18184. },
  18185. frontAlt: {
  18186. height: math.unit(5 + 2 / 12, "feet"),
  18187. weight: math.unit(120, "lb"),
  18188. name: "Front (Alt)",
  18189. image: {
  18190. source: "./media/characters/roxi/front-alt.svg",
  18191. extra: 1828 / 1798,
  18192. bottom: 0.01
  18193. }
  18194. },
  18195. sitting: {
  18196. height: math.unit(2.8, "feet"),
  18197. weight: math.unit(120, "lb"),
  18198. name: "Sitting",
  18199. image: {
  18200. source: "./media/characters/roxi/sitting.svg",
  18201. extra: 2660 / 2462,
  18202. bottom: 0.1
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(5 + 2 / 12, "feet"),
  18210. default: true
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18216. {
  18217. side: {
  18218. height: math.unit(55, "feet"),
  18219. weight: math.unit(153, "tons"),
  18220. name: "Side",
  18221. image: {
  18222. source: "./media/characters/shadow/side.svg",
  18223. extra: 701 / 628,
  18224. bottom: 0.02
  18225. }
  18226. },
  18227. flying: {
  18228. height: math.unit(145, "feet"),
  18229. weight: math.unit(153, "tons"),
  18230. name: "Flying",
  18231. image: {
  18232. source: "./media/characters/shadow/flying.svg"
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(55, "feet"),
  18240. default: true
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(6, "feet"),
  18249. weight: math.unit(200, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/marcie/front.svg",
  18253. extra: 960 / 876,
  18254. bottom: 58 / 1017.87
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Macro",
  18261. height: math.unit(1, "mile"),
  18262. default: true
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(7, "feet"),
  18271. weight: math.unit(200, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/kachina/front.svg",
  18275. extra: 1290.68 / 1119,
  18276. bottom: 36.5 / 1327.18
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(7, "feet"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18290. {
  18291. looking: {
  18292. height: math.unit(2, "meters"),
  18293. weight: math.unit(300, "kg"),
  18294. name: "Looking",
  18295. image: {
  18296. source: "./media/characters/kash/looking.svg",
  18297. extra: 474 / 344,
  18298. bottom: 0.03
  18299. }
  18300. },
  18301. side: {
  18302. height: math.unit(2, "meters"),
  18303. weight: math.unit(300, "kg"),
  18304. name: "Side",
  18305. image: {
  18306. source: "./media/characters/kash/side.svg",
  18307. extra: 302 / 251,
  18308. bottom: 0.03
  18309. }
  18310. },
  18311. front: {
  18312. height: math.unit(2, "meters"),
  18313. weight: math.unit(300, "kg"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/kash/front.svg",
  18317. extra: 495 / 360,
  18318. bottom: 0.015
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(2, "meters"),
  18326. default: true
  18327. },
  18328. {
  18329. name: "Big",
  18330. height: math.unit(3, "meters")
  18331. },
  18332. {
  18333. name: "Large",
  18334. height: math.unit(5, "meters")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18340. {
  18341. feeding: {
  18342. height: math.unit(6.7, "feet"),
  18343. weight: math.unit(350, "lb"),
  18344. name: "Feeding",
  18345. image: {
  18346. source: "./media/characters/lalim/feeding.svg",
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(6.7, "feet"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(9.5, "feet"),
  18363. weight: math.unit(600, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/de'vout/front.svg",
  18367. extra: 1443 / 1328,
  18368. bottom: 0.025
  18369. }
  18370. },
  18371. back: {
  18372. height: math.unit(9.5, "feet"),
  18373. weight: math.unit(600, "lb"),
  18374. name: "Back",
  18375. image: {
  18376. source: "./media/characters/de'vout/back.svg",
  18377. extra: 1443 / 1328
  18378. }
  18379. },
  18380. frontDressed: {
  18381. height: math.unit(9.5, "feet"),
  18382. weight: math.unit(600, "lb"),
  18383. name: "Front (Dressed",
  18384. image: {
  18385. source: "./media/characters/de'vout/front-dressed.svg",
  18386. extra: 1443 / 1328,
  18387. bottom: 0.025
  18388. }
  18389. },
  18390. backDressed: {
  18391. height: math.unit(9.5, "feet"),
  18392. weight: math.unit(600, "lb"),
  18393. name: "Back (Dressed",
  18394. image: {
  18395. source: "./media/characters/de'vout/back-dressed.svg",
  18396. extra: 1443 / 1328
  18397. }
  18398. },
  18399. },
  18400. [
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(9.5, "feet"),
  18404. default: true
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18410. {
  18411. front: {
  18412. height: math.unit(8, "feet"),
  18413. weight: math.unit(225, "lb"),
  18414. name: "Front",
  18415. image: {
  18416. source: "./media/characters/talana/front.svg",
  18417. extra: 1410 / 1300,
  18418. bottom: 0.015
  18419. }
  18420. },
  18421. frontDressed: {
  18422. height: math.unit(8, "feet"),
  18423. weight: math.unit(225, "lb"),
  18424. name: "Front (Dressed",
  18425. image: {
  18426. source: "./media/characters/talana/front-dressed.svg",
  18427. extra: 1410 / 1300,
  18428. bottom: 0.015
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(8, "feet"),
  18436. default: true
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18442. {
  18443. side: {
  18444. height: math.unit(7.2, "feet"),
  18445. weight: math.unit(150, "lb"),
  18446. name: "Side",
  18447. image: {
  18448. source: "./media/characters/xeauvok/side.svg",
  18449. extra: 1975 / 1523,
  18450. bottom: 0.07
  18451. }
  18452. },
  18453. },
  18454. [
  18455. {
  18456. name: "Normal",
  18457. height: math.unit(7.2, "feet"),
  18458. default: true
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18464. {
  18465. side: {
  18466. height: math.unit(10, "feet"),
  18467. weight: math.unit(900, "kg"),
  18468. name: "Side",
  18469. image: {
  18470. source: "./media/characters/zara/side.svg",
  18471. extra: 504 / 498
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(10, "feet"),
  18479. default: true
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18485. {
  18486. side: {
  18487. height: math.unit(6, "feet"),
  18488. weight: math.unit(150, "lb"),
  18489. name: "Side",
  18490. image: {
  18491. source: "./media/characters/richard-dragon/side.svg",
  18492. extra: 845 / 340,
  18493. bottom: 0.017
  18494. }
  18495. },
  18496. maw: {
  18497. height: math.unit(2.97, "feet"),
  18498. name: "Maw",
  18499. image: {
  18500. source: "./media/characters/richard-dragon/maw.svg"
  18501. }
  18502. },
  18503. },
  18504. [
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18509. {
  18510. front: {
  18511. height: math.unit(4, "feet"),
  18512. weight: math.unit(100, "lb"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/richard-smeargle/front.svg",
  18516. extra: 2952 / 2820,
  18517. bottom: 0.028
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(4, "feet"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "Dynamax",
  18529. height: math.unit(20, "meters")
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(6, "feet"),
  18538. weight: math.unit(110, "lb"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/klay/front.svg",
  18542. extra: 962 / 883,
  18543. bottom: 0.04
  18544. }
  18545. },
  18546. back: {
  18547. height: math.unit(6, "feet"),
  18548. weight: math.unit(110, "lb"),
  18549. name: "Back",
  18550. image: {
  18551. source: "./media/characters/klay/back.svg",
  18552. extra: 962 / 883
  18553. }
  18554. },
  18555. beans: {
  18556. height: math.unit(1.15, "feet"),
  18557. name: "Beans",
  18558. image: {
  18559. source: "./media/characters/klay/beans.svg"
  18560. }
  18561. },
  18562. },
  18563. [
  18564. {
  18565. name: "Micro",
  18566. height: math.unit(6, "inches")
  18567. },
  18568. {
  18569. name: "Mini",
  18570. height: math.unit(3, "feet")
  18571. },
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(6, "feet"),
  18575. default: true
  18576. },
  18577. {
  18578. name: "Big",
  18579. height: math.unit(25, "feet")
  18580. },
  18581. {
  18582. name: "Macro",
  18583. height: math.unit(100, "feet")
  18584. },
  18585. {
  18586. name: "Megamacro",
  18587. height: math.unit(400, "feet")
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(6, "feet"),
  18596. weight: math.unit(160, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/marcus/front.svg",
  18600. extra: 734 / 676,
  18601. bottom: 0.03
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Little",
  18608. height: math.unit(6, "feet")
  18609. },
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(110, "feet"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(250, "feet")
  18618. },
  18619. {
  18620. name: "Megamacro",
  18621. height: math.unit(1000, "feet")
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(7, "feet"),
  18630. weight: math.unit(275, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/claude-delroute/front.svg",
  18634. extra: 902/827,
  18635. bottom: 26/928
  18636. }
  18637. },
  18638. side: {
  18639. height: math.unit(7, "feet"),
  18640. weight: math.unit(275, "lb"),
  18641. name: "Side",
  18642. image: {
  18643. source: "./media/characters/claude-delroute/side.svg",
  18644. extra: 908/853,
  18645. bottom: 16/924
  18646. }
  18647. },
  18648. back: {
  18649. height: math.unit(7, "feet"),
  18650. weight: math.unit(275, "lb"),
  18651. name: "Back",
  18652. image: {
  18653. source: "./media/characters/claude-delroute/back.svg",
  18654. extra: 911/829,
  18655. bottom: 18/929
  18656. }
  18657. },
  18658. maw: {
  18659. height: math.unit(0.6407, "meters"),
  18660. name: "Maw",
  18661. image: {
  18662. source: "./media/characters/claude-delroute/maw.svg"
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(7, "feet"),
  18670. default: true
  18671. },
  18672. {
  18673. name: "Lorge",
  18674. height: math.unit(20, "feet")
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(8 + 4 / 12, "feet"),
  18683. weight: math.unit(600, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/dragonien/front.svg",
  18687. extra: 100 / 94,
  18688. bottom: 3.3 / 103.3445
  18689. }
  18690. },
  18691. back: {
  18692. height: math.unit(8 + 4 / 12, "feet"),
  18693. weight: math.unit(600, "lb"),
  18694. name: "Back",
  18695. image: {
  18696. source: "./media/characters/dragonien/back.svg",
  18697. extra: 776 / 746,
  18698. bottom: 6.4 / 782.0616
  18699. }
  18700. },
  18701. foot: {
  18702. height: math.unit(1.54, "feet"),
  18703. name: "Foot",
  18704. image: {
  18705. source: "./media/characters/dragonien/foot.svg",
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(8 + 4 / 12, "feet"),
  18713. default: true
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(200, "feet")
  18718. },
  18719. {
  18720. name: "Megamacro",
  18721. height: math.unit(1, "mile")
  18722. },
  18723. {
  18724. name: "Gigamacro",
  18725. height: math.unit(1000, "miles")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(5 + 2 / 12, "feet"),
  18734. weight: math.unit(110, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/desta/front.svg",
  18738. extra: 767 / 726,
  18739. bottom: 11.7 / 779
  18740. }
  18741. },
  18742. back: {
  18743. height: math.unit(5 + 2 / 12, "feet"),
  18744. weight: math.unit(110, "lb"),
  18745. name: "Back",
  18746. image: {
  18747. source: "./media/characters/desta/back.svg",
  18748. extra: 777 / 728,
  18749. bottom: 6 / 784
  18750. }
  18751. },
  18752. frontAlt: {
  18753. height: math.unit(5 + 2 / 12, "feet"),
  18754. weight: math.unit(110, "lb"),
  18755. name: "Front",
  18756. image: {
  18757. source: "./media/characters/desta/front-alt.svg",
  18758. extra: 1482 / 1417
  18759. }
  18760. },
  18761. side: {
  18762. height: math.unit(5 + 2 / 12, "feet"),
  18763. weight: math.unit(110, "lb"),
  18764. name: "Side",
  18765. image: {
  18766. source: "./media/characters/desta/side.svg",
  18767. extra: 2579 / 2491,
  18768. bottom: 0.053
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Micro",
  18775. height: math.unit(6, "inches")
  18776. },
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(5 + 2 / 12, "feet"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "Macro",
  18784. height: math.unit(62, "feet")
  18785. },
  18786. {
  18787. name: "Megamacro",
  18788. height: math.unit(1800, "feet")
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(10, "feet"),
  18797. weight: math.unit(700, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/storm-alystar/front.svg",
  18801. extra: 2112 / 1898,
  18802. bottom: 0.034
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Micro",
  18809. height: math.unit(3.5, "inches")
  18810. },
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(10, "feet"),
  18814. default: true
  18815. },
  18816. {
  18817. name: "Macro",
  18818. height: math.unit(400, "feet")
  18819. },
  18820. {
  18821. name: "Deific",
  18822. height: math.unit(60, "miles")
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18828. {
  18829. front: {
  18830. height: math.unit(2.35, "meters"),
  18831. weight: math.unit(119, "kg"),
  18832. name: "Front",
  18833. image: {
  18834. source: "./media/characters/ilia/front.svg",
  18835. extra: 1285 / 1255,
  18836. bottom: 0.06
  18837. }
  18838. },
  18839. },
  18840. [
  18841. {
  18842. name: "Normal",
  18843. height: math.unit(2.35, "meters")
  18844. },
  18845. {
  18846. name: "Macro",
  18847. height: math.unit(140, "meters"),
  18848. default: true
  18849. },
  18850. {
  18851. name: "Megamacro",
  18852. height: math.unit(100, "miles")
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(6 + 5 / 12, "feet"),
  18861. weight: math.unit(190, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/kingdead/front.svg",
  18865. extra: 1228 / 1177
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Micro",
  18872. height: math.unit(7, "inches")
  18873. },
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(6 + 5 / 12, "feet")
  18877. },
  18878. {
  18879. name: "Macro",
  18880. height: math.unit(150, "feet"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Megamacro",
  18885. height: math.unit(200, "miles")
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(8, "feet"),
  18894. weight: math.unit(600, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/kyrehx/front.svg",
  18898. extra: 1195 / 1095,
  18899. bottom: 0.034
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Micro",
  18906. height: math.unit(2, "inches")
  18907. },
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(8, "feet"),
  18911. default: true
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(255, "feet")
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18921. {
  18922. front: {
  18923. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18924. weight: math.unit(184, "lb"),
  18925. name: "Front",
  18926. image: {
  18927. source: "./media/characters/xang/front.svg",
  18928. extra: 845 / 755
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18936. default: true
  18937. },
  18938. {
  18939. name: "Macro",
  18940. height: math.unit(0.935 * 146, "feet")
  18941. },
  18942. {
  18943. name: "Megamacro",
  18944. height: math.unit(0.935 * 3, "miles")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18950. {
  18951. frontDressed: {
  18952. height: math.unit(5 + 7 / 12, "feet"),
  18953. weight: math.unit(140, "lb"),
  18954. name: "Front (Dressed)",
  18955. image: {
  18956. source: "./media/characters/doc-weardno/front-dressed.svg",
  18957. extra: 263 / 234
  18958. }
  18959. },
  18960. backDressed: {
  18961. height: math.unit(5 + 7 / 12, "feet"),
  18962. weight: math.unit(140, "lb"),
  18963. name: "Back (Dressed)",
  18964. image: {
  18965. source: "./media/characters/doc-weardno/back-dressed.svg",
  18966. extra: 266 / 238
  18967. }
  18968. },
  18969. front: {
  18970. height: math.unit(5 + 7 / 12, "feet"),
  18971. weight: math.unit(140, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/doc-weardno/front.svg",
  18975. extra: 254 / 233
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Micro",
  18982. height: math.unit(3, "inches")
  18983. },
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(5 + 7 / 12, "feet"),
  18987. default: true
  18988. },
  18989. {
  18990. name: "Macro",
  18991. height: math.unit(25, "feet")
  18992. },
  18993. {
  18994. name: "Megamacro",
  18995. height: math.unit(2, "miles")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(6 + 2 / 12, "feet"),
  19004. weight: math.unit(153, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/seth-whilst/front.svg",
  19008. bottom: 0.07
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Micro",
  19015. height: math.unit(5, "inches")
  19016. },
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(6 + 2 / 12, "feet"),
  19020. default: true
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(3, "inches"),
  19029. weight: math.unit(8, "grams"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/pocket-jabari/front.svg",
  19033. extra: 1024 / 974,
  19034. bottom: 0.039
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Minimicro",
  19041. height: math.unit(8, "mm")
  19042. },
  19043. {
  19044. name: "Micro",
  19045. height: math.unit(3, "inches"),
  19046. default: true
  19047. },
  19048. {
  19049. name: "Normal",
  19050. height: math.unit(3, "feet")
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(15, "feet"),
  19059. weight: math.unit(3280, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/sapphy/front.svg",
  19063. extra: 671 / 577,
  19064. bottom: 0.085
  19065. }
  19066. },
  19067. back: {
  19068. height: math.unit(15, "feet"),
  19069. weight: math.unit(3280, "lb"),
  19070. name: "Back",
  19071. image: {
  19072. source: "./media/characters/sapphy/back.svg",
  19073. extra: 631 / 607,
  19074. bottom: 0.045
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(15, "feet")
  19082. },
  19083. {
  19084. name: "Casual Macro",
  19085. height: math.unit(120, "feet")
  19086. },
  19087. {
  19088. name: "Macro",
  19089. height: math.unit(2150, "feet"),
  19090. default: true
  19091. },
  19092. {
  19093. name: "Megamacro",
  19094. height: math.unit(8, "miles")
  19095. },
  19096. {
  19097. name: "Galaxy Mom",
  19098. height: math.unit(6, "megalightyears")
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19104. {
  19105. front: {
  19106. height: math.unit(6, "feet"),
  19107. weight: math.unit(170, "lb"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/kiro/front.svg",
  19111. extra: 1064 / 1012,
  19112. bottom: 0.052
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Micro",
  19119. height: math.unit(6, "inches")
  19120. },
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(6, "feet"),
  19124. default: true
  19125. },
  19126. {
  19127. name: "Macro",
  19128. height: math.unit(72, "feet")
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(5 + 9 / 12, "feet"),
  19137. weight: math.unit(175, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/irishfox/front.svg",
  19141. extra: 1912 / 1680,
  19142. bottom: 0.02
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Nano",
  19149. height: math.unit(1, "mm")
  19150. },
  19151. {
  19152. name: "Micro",
  19153. height: math.unit(2, "inches")
  19154. },
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(5 + 9 / 12, "feet"),
  19158. default: true
  19159. },
  19160. {
  19161. name: "Macro",
  19162. height: math.unit(45, "feet")
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(6 + 1 / 12, "feet"),
  19171. weight: math.unit(75, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/aronai-sieyes/front.svg",
  19175. extra: 1532/1450,
  19176. bottom: 42/1574
  19177. }
  19178. },
  19179. side: {
  19180. height: math.unit(6 + 1 / 12, "feet"),
  19181. weight: math.unit(75, "lb"),
  19182. name: "Side",
  19183. image: {
  19184. source: "./media/characters/aronai-sieyes/side.svg",
  19185. extra: 1422/1365,
  19186. bottom: 148/1570
  19187. }
  19188. },
  19189. back: {
  19190. height: math.unit(6 + 1 / 12, "feet"),
  19191. weight: math.unit(75, "lb"),
  19192. name: "Back",
  19193. image: {
  19194. source: "./media/characters/aronai-sieyes/back.svg",
  19195. extra: 1526/1464,
  19196. bottom: 51/1577
  19197. }
  19198. },
  19199. dressed: {
  19200. height: math.unit(6 + 1 / 12, "feet"),
  19201. weight: math.unit(75, "lb"),
  19202. name: "Dressed",
  19203. image: {
  19204. source: "./media/characters/aronai-sieyes/dressed.svg",
  19205. extra: 1559/1483,
  19206. bottom: 39/1598
  19207. }
  19208. },
  19209. slit: {
  19210. height: math.unit(1.3, "feet"),
  19211. name: "Slit",
  19212. image: {
  19213. source: "./media/characters/aronai-sieyes/slit.svg"
  19214. }
  19215. },
  19216. slitSpread: {
  19217. height: math.unit(0.9, "feet"),
  19218. name: "Slit (Spread)",
  19219. image: {
  19220. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19221. }
  19222. },
  19223. rump: {
  19224. height: math.unit(1.3, "feet"),
  19225. name: "Rump",
  19226. image: {
  19227. source: "./media/characters/aronai-sieyes/rump.svg"
  19228. }
  19229. },
  19230. maw: {
  19231. height: math.unit(1.25, "feet"),
  19232. name: "Maw",
  19233. image: {
  19234. source: "./media/characters/aronai-sieyes/maw.svg"
  19235. }
  19236. },
  19237. feral: {
  19238. height: math.unit(18, "feet"),
  19239. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19240. name: "Feral",
  19241. image: {
  19242. source: "./media/characters/aronai-sieyes/feral.svg",
  19243. extra: 1530 / 1240,
  19244. bottom: 0.035
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Micro",
  19251. height: math.unit(2, "inches")
  19252. },
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(6 + 1 / 12, "feet"),
  19256. default: true
  19257. }
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(12, "feet"),
  19265. weight: math.unit(410, "kg"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/xuna/front.svg",
  19269. extra: 2184 / 1980
  19270. }
  19271. },
  19272. side: {
  19273. height: math.unit(12, "feet"),
  19274. weight: math.unit(410, "kg"),
  19275. name: "Side",
  19276. image: {
  19277. source: "./media/characters/xuna/side.svg",
  19278. extra: 2184 / 1980
  19279. }
  19280. },
  19281. back: {
  19282. height: math.unit(12, "feet"),
  19283. weight: math.unit(410, "kg"),
  19284. name: "Back",
  19285. image: {
  19286. source: "./media/characters/xuna/back.svg",
  19287. extra: 2184 / 1980
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Nano glow",
  19294. height: math.unit(10, "nm")
  19295. },
  19296. {
  19297. name: "Micro floof",
  19298. height: math.unit(0.3, "m")
  19299. },
  19300. {
  19301. name: "Huggable softy boi",
  19302. height: math.unit(3.6576, "m"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "Admirable floof",
  19307. height: math.unit(80, "meters")
  19308. },
  19309. {
  19310. name: "Gentle macro",
  19311. height: math.unit(300, "meters")
  19312. },
  19313. {
  19314. name: "Very careful floof",
  19315. height: math.unit(3200, "meters")
  19316. },
  19317. {
  19318. name: "The mega floof",
  19319. height: math.unit(36000, "meters")
  19320. },
  19321. {
  19322. name: "Giga-fur-Wicker",
  19323. height: math.unit(4800000, "meters")
  19324. },
  19325. {
  19326. name: "Licky world",
  19327. height: math.unit(20000000, "meters")
  19328. },
  19329. {
  19330. name: "Floofy cyan sun",
  19331. height: math.unit(1500000000, "meters")
  19332. },
  19333. {
  19334. name: "Milky Wicker",
  19335. height: math.unit(1000000000000000000000, "meters")
  19336. },
  19337. {
  19338. name: "The observing Wicker",
  19339. height: math.unit(999999999999999999999999999, "meters")
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19345. {
  19346. front: {
  19347. height: math.unit(5 + 9 / 12, "feet"),
  19348. weight: math.unit(150, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/arokha-sieyes/front.svg",
  19352. extra: 1425 / 1284,
  19353. bottom: 0.05
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(5 + 9 / 12, "feet")
  19361. },
  19362. {
  19363. name: "Macro",
  19364. height: math.unit(30, "meters"),
  19365. default: true
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(6, "feet"),
  19374. weight: math.unit(180, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/arokh-sieyes/front.svg",
  19378. extra: 1830 / 1769,
  19379. bottom: 0.01
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(6, "feet")
  19387. },
  19388. {
  19389. name: "Macro",
  19390. height: math.unit(30, "meters"),
  19391. default: true
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19397. {
  19398. side: {
  19399. height: math.unit(13 + 1 / 12, "feet"),
  19400. weight: math.unit(8.5, "tonnes"),
  19401. name: "Side",
  19402. image: {
  19403. source: "./media/characters/goldeneye/side.svg",
  19404. extra: 1182 / 778,
  19405. bottom: 0.067
  19406. }
  19407. },
  19408. paw: {
  19409. height: math.unit(3.4, "feet"),
  19410. name: "Paw",
  19411. image: {
  19412. source: "./media/characters/goldeneye/paw.svg"
  19413. }
  19414. },
  19415. },
  19416. [
  19417. {
  19418. name: "Normal",
  19419. height: math.unit(13 + 1 / 12, "feet"),
  19420. default: true
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19426. {
  19427. front: {
  19428. height: math.unit(6 + 1 / 12, "feet"),
  19429. weight: math.unit(210, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/leonardo-lycheborne/front.svg",
  19433. extra: 776/723,
  19434. bottom: 34/810
  19435. }
  19436. },
  19437. side: {
  19438. height: math.unit(6 + 1 / 12, "feet"),
  19439. weight: math.unit(210, "lb"),
  19440. name: "Side",
  19441. image: {
  19442. source: "./media/characters/leonardo-lycheborne/side.svg",
  19443. extra: 780/728,
  19444. bottom: 12/792
  19445. }
  19446. },
  19447. back: {
  19448. height: math.unit(6 + 1 / 12, "feet"),
  19449. weight: math.unit(210, "lb"),
  19450. name: "Back",
  19451. image: {
  19452. source: "./media/characters/leonardo-lycheborne/back.svg",
  19453. extra: 775/721,
  19454. bottom: 17/792
  19455. }
  19456. },
  19457. hand: {
  19458. height: math.unit(1.08, "feet"),
  19459. name: "Hand",
  19460. image: {
  19461. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19462. }
  19463. },
  19464. foot: {
  19465. height: math.unit(1.32, "feet"),
  19466. name: "Foot",
  19467. image: {
  19468. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19469. }
  19470. },
  19471. maw: {
  19472. height: math.unit(1, "feet"),
  19473. name: "Maw",
  19474. image: {
  19475. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19476. }
  19477. },
  19478. were: {
  19479. height: math.unit(20, "feet"),
  19480. weight: math.unit(7800, "lb"),
  19481. name: "Were",
  19482. image: {
  19483. source: "./media/characters/leonardo-lycheborne/were.svg",
  19484. extra: 1224/1165,
  19485. bottom: 72/1296
  19486. }
  19487. },
  19488. feral: {
  19489. height: math.unit(7.5, "feet"),
  19490. weight: math.unit(600, "lb"),
  19491. name: "Feral",
  19492. image: {
  19493. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19494. extra: 797/702,
  19495. bottom: 139/936
  19496. }
  19497. },
  19498. taur: {
  19499. height: math.unit(11, "feet"),
  19500. weight: math.unit(3300, "lb"),
  19501. name: "Taur",
  19502. image: {
  19503. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19504. extra: 1271/1197,
  19505. bottom: 47/1318
  19506. }
  19507. },
  19508. barghest: {
  19509. height: math.unit(11, "feet"),
  19510. weight: math.unit(1300, "lb"),
  19511. name: "Barghest",
  19512. image: {
  19513. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19514. extra: 1291/1204,
  19515. bottom: 37/1328
  19516. }
  19517. },
  19518. dick: {
  19519. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19520. name: "Dick",
  19521. image: {
  19522. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19523. }
  19524. },
  19525. dickWere: {
  19526. height: math.unit((20) / 3.8, "feet"),
  19527. name: "Dick (Were)",
  19528. image: {
  19529. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(6 + 1 / 12, "feet"),
  19537. default: true
  19538. },
  19539. ]
  19540. ))
  19541. characterMakers.push(() => makeCharacter(
  19542. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19543. {
  19544. front: {
  19545. height: math.unit(10, "feet"),
  19546. weight: math.unit(350, "lb"),
  19547. name: "Front",
  19548. image: {
  19549. source: "./media/characters/jet/front.svg",
  19550. extra: 2050 / 1980,
  19551. bottom: 0.013
  19552. }
  19553. },
  19554. back: {
  19555. height: math.unit(10, "feet"),
  19556. weight: math.unit(350, "lb"),
  19557. name: "Back",
  19558. image: {
  19559. source: "./media/characters/jet/back.svg",
  19560. extra: 2050 / 1980,
  19561. bottom: 0.013
  19562. }
  19563. },
  19564. },
  19565. [
  19566. {
  19567. name: "Micro",
  19568. height: math.unit(6, "inches")
  19569. },
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(10, "feet"),
  19573. default: true
  19574. },
  19575. {
  19576. name: "Macro",
  19577. height: math.unit(100, "feet")
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19583. {
  19584. front: {
  19585. height: math.unit(15, "feet"),
  19586. weight: math.unit(2800, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/tanarath/front.svg",
  19590. extra: 2392 / 2220,
  19591. bottom: 0.03
  19592. }
  19593. },
  19594. back: {
  19595. height: math.unit(15, "feet"),
  19596. weight: math.unit(2800, "lb"),
  19597. name: "Back",
  19598. image: {
  19599. source: "./media/characters/tanarath/back.svg",
  19600. extra: 2392 / 2220,
  19601. bottom: 0.03
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(15, "feet"),
  19609. default: true
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19615. {
  19616. front: {
  19617. height: math.unit(7 + 1 / 12, "feet"),
  19618. weight: math.unit(175, "lb"),
  19619. name: "Front",
  19620. image: {
  19621. source: "./media/characters/patty-cattybatty/front.svg",
  19622. extra: 908 / 874,
  19623. bottom: 0.025
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Micro",
  19630. height: math.unit(1, "inch")
  19631. },
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(7 + 1 / 12, "feet")
  19635. },
  19636. {
  19637. name: "Mini Macro",
  19638. height: math.unit(155, "feet")
  19639. },
  19640. {
  19641. name: "Macro",
  19642. height: math.unit(1077, "feet")
  19643. },
  19644. {
  19645. name: "Mega Macro",
  19646. height: math.unit(47650, "feet"),
  19647. default: true
  19648. },
  19649. {
  19650. name: "Giga Macro",
  19651. height: math.unit(440, "miles")
  19652. },
  19653. {
  19654. name: "Tera Macro",
  19655. height: math.unit(8700, "miles")
  19656. },
  19657. {
  19658. name: "Planetary Macro",
  19659. height: math.unit(32700, "miles")
  19660. },
  19661. {
  19662. name: "Solar Macro",
  19663. height: math.unit(550000, "miles")
  19664. },
  19665. {
  19666. name: "Celestial Macro",
  19667. height: math.unit(2.5, "AU")
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(4 + 5 / 12, "feet"),
  19676. weight: math.unit(90, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/cappu/front.svg",
  19680. extra: 1247 / 1152,
  19681. bottom: 0.012
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(4 + 5 / 12, "feet"),
  19689. default: true
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19695. {
  19696. frontDressed: {
  19697. height: math.unit(70, "cm"),
  19698. weight: math.unit(6, "kg"),
  19699. name: "Front (Dressed)",
  19700. image: {
  19701. source: "./media/characters/sebi/front-dressed.svg",
  19702. extra: 713.5 / 686.5,
  19703. bottom: 0.003
  19704. }
  19705. },
  19706. front: {
  19707. height: math.unit(70, "cm"),
  19708. weight: math.unit(5, "kg"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/sebi/front.svg",
  19712. extra: 713.5 / 686.5,
  19713. bottom: 0.003
  19714. }
  19715. }
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(70, "cm"),
  19721. default: true
  19722. },
  19723. {
  19724. name: "Macro",
  19725. height: math.unit(8, "meters")
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(6, "feet"),
  19734. weight: math.unit(150, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/typhek/front.svg",
  19738. extra: 1948 / 1929,
  19739. bottom: 0.025
  19740. }
  19741. },
  19742. side: {
  19743. height: math.unit(6, "feet"),
  19744. weight: math.unit(150, "lb"),
  19745. name: "Side",
  19746. image: {
  19747. source: "./media/characters/typhek/side.svg",
  19748. extra: 2034 / 2010,
  19749. bottom: 0.003
  19750. }
  19751. },
  19752. back: {
  19753. height: math.unit(6, "feet"),
  19754. weight: math.unit(150, "lb"),
  19755. name: "Back",
  19756. image: {
  19757. source: "./media/characters/typhek/back.svg",
  19758. extra: 2005 / 1978,
  19759. bottom: 0.004
  19760. }
  19761. },
  19762. palm: {
  19763. height: math.unit(1.2, "feet"),
  19764. name: "Palm",
  19765. image: {
  19766. source: "./media/characters/typhek/palm.svg"
  19767. }
  19768. },
  19769. fist: {
  19770. height: math.unit(1.1, "feet"),
  19771. name: "Fist",
  19772. image: {
  19773. source: "./media/characters/typhek/fist.svg"
  19774. }
  19775. },
  19776. foot: {
  19777. height: math.unit(1.57, "feet"),
  19778. name: "Foot",
  19779. image: {
  19780. source: "./media/characters/typhek/foot.svg"
  19781. }
  19782. },
  19783. sole: {
  19784. height: math.unit(2.05, "feet"),
  19785. name: "Sole",
  19786. image: {
  19787. source: "./media/characters/typhek/sole.svg"
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Macro",
  19794. height: math.unit(40, "stories"),
  19795. default: true
  19796. },
  19797. {
  19798. name: "Megamacro",
  19799. height: math.unit(1, "mile")
  19800. },
  19801. {
  19802. name: "Gigamacro",
  19803. height: math.unit(4000, "solarradii")
  19804. },
  19805. {
  19806. name: "Universal",
  19807. height: math.unit(1.1, "universes")
  19808. }
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19813. {
  19814. side: {
  19815. height: math.unit(5 + 7 / 12, "feet"),
  19816. weight: math.unit(150, "lb"),
  19817. name: "Side",
  19818. image: {
  19819. source: "./media/characters/kassy/side.svg",
  19820. extra: 1280 / 1225,
  19821. bottom: 0.002
  19822. }
  19823. },
  19824. front: {
  19825. height: math.unit(5 + 7 / 12, "feet"),
  19826. weight: math.unit(150, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/kassy/front.svg",
  19830. extra: 1280 / 1225,
  19831. bottom: 0.025
  19832. }
  19833. },
  19834. back: {
  19835. height: math.unit(5 + 7 / 12, "feet"),
  19836. weight: math.unit(150, "lb"),
  19837. name: "Back",
  19838. image: {
  19839. source: "./media/characters/kassy/back.svg",
  19840. extra: 1280 / 1225,
  19841. bottom: 0.002
  19842. }
  19843. },
  19844. foot: {
  19845. height: math.unit(1.266, "feet"),
  19846. name: "Foot",
  19847. image: {
  19848. source: "./media/characters/kassy/foot.svg"
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(5 + 7 / 12, "feet")
  19856. },
  19857. {
  19858. name: "Macro",
  19859. height: math.unit(137, "feet"),
  19860. default: true
  19861. },
  19862. {
  19863. name: "Megamacro",
  19864. height: math.unit(1, "mile")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(6 + 1 / 12, "feet"),
  19873. weight: math.unit(200, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/neil/front.svg",
  19877. extra: 1326 / 1250,
  19878. bottom: 0.023
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(6 + 1 / 12, "feet"),
  19886. default: true
  19887. },
  19888. {
  19889. name: "Macro",
  19890. height: math.unit(200, "feet")
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19896. {
  19897. front: {
  19898. height: math.unit(5 + 9 / 12, "feet"),
  19899. weight: math.unit(190, "lb"),
  19900. name: "Front",
  19901. image: {
  19902. source: "./media/characters/atticus/front.svg",
  19903. extra: 2934 / 2785,
  19904. bottom: 0.025
  19905. }
  19906. },
  19907. },
  19908. [
  19909. {
  19910. name: "Normal",
  19911. height: math.unit(5 + 9 / 12, "feet"),
  19912. default: true
  19913. },
  19914. {
  19915. name: "Macro",
  19916. height: math.unit(180, "feet")
  19917. },
  19918. ]
  19919. ))
  19920. characterMakers.push(() => makeCharacter(
  19921. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19922. {
  19923. side: {
  19924. height: math.unit(9, "feet"),
  19925. weight: math.unit(650, "lb"),
  19926. name: "Side",
  19927. image: {
  19928. source: "./media/characters/milo/side.svg",
  19929. extra: 2644 / 2310,
  19930. bottom: 0.032
  19931. }
  19932. },
  19933. },
  19934. [
  19935. {
  19936. name: "Normal",
  19937. height: math.unit(9, "feet"),
  19938. default: true
  19939. },
  19940. {
  19941. name: "Macro",
  19942. height: math.unit(300, "feet")
  19943. },
  19944. ]
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19948. {
  19949. side: {
  19950. height: math.unit(8, "meters"),
  19951. weight: math.unit(90000, "kg"),
  19952. name: "Side",
  19953. image: {
  19954. source: "./media/characters/ijzer/side.svg",
  19955. extra: 2756 / 1600,
  19956. bottom: 0.01
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Small",
  19963. height: math.unit(3, "meters")
  19964. },
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(8, "meters"),
  19968. default: true
  19969. },
  19970. {
  19971. name: "Normal+",
  19972. height: math.unit(10, "meters")
  19973. },
  19974. {
  19975. name: "Bigger",
  19976. height: math.unit(24, "meters")
  19977. },
  19978. {
  19979. name: "Huge",
  19980. height: math.unit(80, "meters")
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(6 + 2 / 12, "feet"),
  19989. weight: math.unit(153, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/luca-cervicum/front.svg",
  19993. extra: 370 / 327,
  19994. bottom: 0.015
  19995. }
  19996. },
  19997. back: {
  19998. height: math.unit(6 + 2 / 12, "feet"),
  19999. weight: math.unit(153, "lb"),
  20000. name: "Back",
  20001. image: {
  20002. source: "./media/characters/luca-cervicum/back.svg",
  20003. extra: 367 / 333,
  20004. bottom: 0.005
  20005. }
  20006. },
  20007. frontGear: {
  20008. height: math.unit(6 + 2 / 12, "feet"),
  20009. weight: math.unit(173, "lb"),
  20010. name: "Front (Gear)",
  20011. image: {
  20012. source: "./media/characters/luca-cervicum/front-gear.svg",
  20013. extra: 377 / 333,
  20014. bottom: 0.006
  20015. }
  20016. },
  20017. },
  20018. [
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(6 + 2 / 12, "feet"),
  20022. default: true
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20028. {
  20029. front: {
  20030. height: math.unit(6 + 1 / 12, "feet"),
  20031. weight: math.unit(304, "lb"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/oliver/front.svg",
  20035. extra: 157 / 143,
  20036. bottom: 0.08
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(6 + 1 / 12, "feet"),
  20044. default: true
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(5 + 7 / 12, "feet"),
  20053. weight: math.unit(140, "lb"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/shane/front.svg",
  20057. extra: 304 / 289,
  20058. bottom: 0.005
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(5 + 7 / 12, "feet"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20072. {
  20073. front: {
  20074. height: math.unit(5 + 9 / 12, "feet"),
  20075. weight: math.unit(178, "lb"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/shin/front.svg",
  20079. extra: 159 / 151,
  20080. bottom: 0.015
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(5 + 9 / 12, "feet"),
  20088. default: true
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(5 + 10 / 12, "feet"),
  20097. weight: math.unit(168, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/xerxes/front.svg",
  20101. extra: 282 / 260,
  20102. bottom: 0.045
  20103. }
  20104. },
  20105. },
  20106. [
  20107. {
  20108. name: "Normal",
  20109. height: math.unit(5 + 10 / 12, "feet"),
  20110. default: true
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(6 + 7 / 12, "feet"),
  20119. weight: math.unit(208, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/chaska/front.svg",
  20123. extra: 332 / 319,
  20124. bottom: 0.015
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(6 + 7 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(5 + 8 / 12, "feet"),
  20141. weight: math.unit(208, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/enuk/front.svg",
  20145. extra: 437 / 406,
  20146. bottom: 0.02
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(5 + 8 / 12, "feet"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20160. {
  20161. front: {
  20162. height: math.unit(5 + 10 / 12, "feet"),
  20163. weight: math.unit(252, "lb"),
  20164. name: "Front",
  20165. image: {
  20166. source: "./media/characters/bruun/front.svg",
  20167. extra: 197 / 187,
  20168. bottom: 0.012
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(5 + 10 / 12, "feet"),
  20176. default: true
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20182. {
  20183. front: {
  20184. height: math.unit(6 + 10 / 12, "feet"),
  20185. weight: math.unit(255, "lb"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/alexeev/front.svg",
  20189. extra: 213 / 200,
  20190. bottom: 0.05
  20191. }
  20192. },
  20193. },
  20194. [
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(6 + 10 / 12, "feet"),
  20198. default: true
  20199. },
  20200. ]
  20201. ))
  20202. characterMakers.push(() => makeCharacter(
  20203. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20204. {
  20205. front: {
  20206. height: math.unit(2 + 8 / 12, "feet"),
  20207. weight: math.unit(22, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/evelyn/front.svg",
  20211. extra: 208 / 180
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(2 + 8 / 12, "feet"),
  20219. default: true
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(5 + 9 / 12, "feet"),
  20228. weight: math.unit(139, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/inca/front.svg",
  20232. extra: 294 / 291,
  20233. bottom: 0.03
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(5 + 9 / 12, "feet"),
  20241. default: true
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20247. {
  20248. front: {
  20249. height: math.unit(6 + 3 / 12, "feet"),
  20250. weight: math.unit(185, "lb"),
  20251. name: "Front",
  20252. image: {
  20253. source: "./media/characters/mera/front.svg",
  20254. extra: 291 / 277,
  20255. bottom: 0.03
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(6 + 3 / 12, "feet"),
  20263. default: true
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20269. {
  20270. front: {
  20271. height: math.unit(6 + 7 / 12, "feet"),
  20272. weight: math.unit(160, "lb"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/ceres/front.svg",
  20276. extra: 1023 / 950,
  20277. bottom: 0.027
  20278. }
  20279. },
  20280. back: {
  20281. height: math.unit(6 + 7 / 12, "feet"),
  20282. weight: math.unit(160, "lb"),
  20283. name: "Back",
  20284. image: {
  20285. source: "./media/characters/ceres/back.svg",
  20286. extra: 1023 / 950
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(6 + 7 / 12, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(5 + 10 / 12, "feet"),
  20303. weight: math.unit(150, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/kris/front.svg",
  20307. extra: 885 / 803,
  20308. bottom: 0.03
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(5 + 10 / 12, "feet"),
  20316. default: true
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20322. {
  20323. front: {
  20324. height: math.unit(7, "feet"),
  20325. weight: math.unit(120, "kg"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/taluthus/front.svg",
  20329. extra: 903 / 833,
  20330. bottom: 0.015
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(7, "feet"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Macro",
  20342. height: math.unit(300, "feet")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(5 + 9 / 12, "feet"),
  20351. weight: math.unit(145, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/dawn/front.svg",
  20355. extra: 2094 / 2016,
  20356. bottom: 0.025
  20357. }
  20358. },
  20359. back: {
  20360. height: math.unit(5 + 9 / 12, "feet"),
  20361. weight: math.unit(160, "lb"),
  20362. name: "Back",
  20363. image: {
  20364. source: "./media/characters/dawn/back.svg",
  20365. extra: 2112 / 2080,
  20366. bottom: 0.005
  20367. }
  20368. },
  20369. },
  20370. [
  20371. {
  20372. name: "Normal",
  20373. height: math.unit(6 + 7 / 12, "feet"),
  20374. default: true
  20375. },
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20380. {
  20381. anthro: {
  20382. height: math.unit(8 + 3 / 12, "feet"),
  20383. weight: math.unit(450, "lb"),
  20384. name: "Anthro",
  20385. image: {
  20386. source: "./media/characters/arador/anthro.svg",
  20387. extra: 1835 / 1718,
  20388. bottom: 0.025
  20389. }
  20390. },
  20391. feral: {
  20392. height: math.unit(4, "feet"),
  20393. weight: math.unit(200, "lb"),
  20394. name: "Feral",
  20395. image: {
  20396. source: "./media/characters/arador/feral.svg",
  20397. extra: 1683 / 1514,
  20398. bottom: 0.07
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(8 + 3 / 12, "feet")
  20406. },
  20407. {
  20408. name: "Macro",
  20409. height: math.unit(82.5, "feet"),
  20410. default: true
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(5 + 10 / 12, "feet"),
  20419. weight: math.unit(125, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/dharsi/front.svg",
  20423. extra: 716 / 630,
  20424. bottom: 0.035
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Nano",
  20431. height: math.unit(100, "nm")
  20432. },
  20433. {
  20434. name: "Micro",
  20435. height: math.unit(2, "inches")
  20436. },
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(5 + 10 / 12, "feet"),
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(1000, "feet")
  20445. },
  20446. {
  20447. name: "Megamacro",
  20448. height: math.unit(10, "miles")
  20449. },
  20450. {
  20451. name: "Gigamacro",
  20452. height: math.unit(3000, "miles")
  20453. },
  20454. {
  20455. name: "Teramacro",
  20456. height: math.unit(500000, "miles")
  20457. },
  20458. {
  20459. name: "Teramacro+",
  20460. height: math.unit(30, "galaxies")
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(6, "feet"),
  20469. weight: math.unit(150, "lb"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/deathy/front.svg",
  20473. extra: 1552 / 1463,
  20474. bottom: 0.025
  20475. }
  20476. },
  20477. side: {
  20478. height: math.unit(6, "feet"),
  20479. weight: math.unit(150, "lb"),
  20480. name: "Side",
  20481. image: {
  20482. source: "./media/characters/deathy/side.svg",
  20483. extra: 1604 / 1455,
  20484. bottom: 0.025
  20485. }
  20486. },
  20487. back: {
  20488. height: math.unit(6, "feet"),
  20489. weight: math.unit(150, "lb"),
  20490. name: "Back",
  20491. image: {
  20492. source: "./media/characters/deathy/back.svg",
  20493. extra: 1580 / 1463,
  20494. bottom: 0.005
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Micro",
  20501. height: math.unit(5, "millimeters")
  20502. },
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(6 + 5 / 12, "feet"),
  20506. default: true
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20512. {
  20513. front: {
  20514. height: math.unit(16, "feet"),
  20515. weight: math.unit(4000, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/juniper/front.svg",
  20519. bottom: 0.04
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(16, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(6, "feet"),
  20536. weight: math.unit(150, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/hipster/front.svg",
  20540. extra: 1312 / 1209,
  20541. bottom: 0.025
  20542. }
  20543. },
  20544. back: {
  20545. height: math.unit(6, "feet"),
  20546. weight: math.unit(150, "lb"),
  20547. name: "Back",
  20548. image: {
  20549. source: "./media/characters/hipster/back.svg",
  20550. extra: 1281 / 1196,
  20551. bottom: 0.01
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Micro",
  20558. height: math.unit(1, "mm")
  20559. },
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(4, "inches"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Macro",
  20567. height: math.unit(500, "feet")
  20568. },
  20569. {
  20570. name: "Megamacro",
  20571. height: math.unit(1000, "miles")
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(6, "feet"),
  20580. weight: math.unit(150, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/tendirmuldr/front.svg",
  20584. extra: 1878 / 1772,
  20585. bottom: 0.015
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Megamacro",
  20592. height: math.unit(1500, "miles"),
  20593. default: true
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20599. {
  20600. front: {
  20601. height: math.unit(14, "feet"),
  20602. weight: math.unit(12000, "lb"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/mort/front.svg",
  20606. extra: 365 / 318,
  20607. bottom: 0.01
  20608. }
  20609. },
  20610. side: {
  20611. height: math.unit(14, "feet"),
  20612. weight: math.unit(12000, "lb"),
  20613. name: "Side",
  20614. image: {
  20615. source: "./media/characters/mort/side.svg",
  20616. extra: 365 / 318,
  20617. bottom: 0.052
  20618. },
  20619. default: true
  20620. },
  20621. back: {
  20622. height: math.unit(14, "feet"),
  20623. weight: math.unit(12000, "lb"),
  20624. name: "Back",
  20625. image: {
  20626. source: "./media/characters/mort/back.svg",
  20627. extra: 371 / 332,
  20628. bottom: 0.18
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Normal",
  20635. height: math.unit(14, "feet"),
  20636. default: true
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20642. {
  20643. front: {
  20644. height: math.unit(8, "feet"),
  20645. weight: math.unit(1, "ton"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/lycoa/front.svg",
  20649. extra: 1875 / 1789,
  20650. bottom: 0.022
  20651. }
  20652. },
  20653. back: {
  20654. height: math.unit(8, "feet"),
  20655. weight: math.unit(1, "ton"),
  20656. name: "Back",
  20657. image: {
  20658. source: "./media/characters/lycoa/back.svg",
  20659. extra: 1835 / 1781,
  20660. bottom: 0.03
  20661. }
  20662. },
  20663. head: {
  20664. height: math.unit(2.1, "feet"),
  20665. name: "Head",
  20666. image: {
  20667. source: "./media/characters/lycoa/head.svg"
  20668. }
  20669. },
  20670. tailmaw: {
  20671. height: math.unit(1.9, "feet"),
  20672. name: "Tailmaw",
  20673. image: {
  20674. source: "./media/characters/lycoa/tailmaw.svg"
  20675. }
  20676. },
  20677. tentacles: {
  20678. height: math.unit(2.1, "feet"),
  20679. name: "Tentacles",
  20680. image: {
  20681. source: "./media/characters/lycoa/tentacles.svg"
  20682. }
  20683. },
  20684. dick: {
  20685. height: math.unit(1.73, "feet"),
  20686. name: "Dick",
  20687. image: {
  20688. source: "./media/characters/lycoa/dick.svg"
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(8, "feet"),
  20696. default: true
  20697. },
  20698. {
  20699. name: "Macro",
  20700. height: math.unit(30, "feet")
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20706. {
  20707. front: {
  20708. height: math.unit(4 + 2 / 12, "feet"),
  20709. weight: math.unit(70, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/naldara/front.svg",
  20713. extra: 841 / 720,
  20714. bottom: 0.04
  20715. }
  20716. },
  20717. naga: {
  20718. height: math.unit(23, "feet"),
  20719. weight: math.unit(15000, "kg"),
  20720. name: "Naga",
  20721. image: {
  20722. source: "./media/characters/naldara/naga.svg",
  20723. extra: 3290 / 2959,
  20724. bottom: 124 / 3432
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(4 + 2 / 12, "feet"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20738. {
  20739. front: {
  20740. height: math.unit(13 + 7 / 12, "feet"),
  20741. weight: math.unit(1500, "lb"),
  20742. name: "Front",
  20743. image: {
  20744. source: "./media/characters/briar/front.svg",
  20745. extra: 626 / 596,
  20746. bottom: 0.08
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(13 + 7 / 12, "feet"),
  20754. default: true
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20760. {
  20761. side: {
  20762. height: math.unit(10, "feet"),
  20763. weight: math.unit(500, "lb"),
  20764. name: "Side",
  20765. image: {
  20766. source: "./media/characters/vanguard/side.svg",
  20767. extra: 502 / 425,
  20768. bottom: 0.087
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(10, "feet"),
  20776. default: true
  20777. },
  20778. ]
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(7.5, "feet"),
  20785. weight: math.unit(2, "lb"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/artemis/front.svg",
  20789. extra: 1192 / 1075,
  20790. bottom: 0.07
  20791. }
  20792. },
  20793. frontNsfw: {
  20794. height: math.unit(7.5, "feet"),
  20795. weight: math.unit(2, "lb"),
  20796. name: "Front (NSFW)",
  20797. image: {
  20798. source: "./media/characters/artemis/front-nsfw.svg",
  20799. extra: 1192 / 1075,
  20800. bottom: 0.07
  20801. }
  20802. },
  20803. frontNsfwer: {
  20804. height: math.unit(7.5, "feet"),
  20805. weight: math.unit(2, "lb"),
  20806. name: "Front (NSFW-er)",
  20807. image: {
  20808. source: "./media/characters/artemis/front-nsfwer.svg",
  20809. extra: 1192 / 1075,
  20810. bottom: 0.07
  20811. }
  20812. },
  20813. side: {
  20814. height: math.unit(7.5, "feet"),
  20815. weight: math.unit(2, "lb"),
  20816. name: "Side",
  20817. image: {
  20818. source: "./media/characters/artemis/side.svg",
  20819. extra: 1192 / 1075,
  20820. bottom: 0.07
  20821. }
  20822. },
  20823. sideNsfw: {
  20824. height: math.unit(7.5, "feet"),
  20825. weight: math.unit(2, "lb"),
  20826. name: "Side (NSFW)",
  20827. image: {
  20828. source: "./media/characters/artemis/side-nsfw.svg",
  20829. extra: 1192 / 1075,
  20830. bottom: 0.07
  20831. }
  20832. },
  20833. sideNsfwer: {
  20834. height: math.unit(7.5, "feet"),
  20835. weight: math.unit(2, "lb"),
  20836. name: "Side (NSFW-er)",
  20837. image: {
  20838. source: "./media/characters/artemis/side-nsfwer.svg",
  20839. extra: 1192 / 1075,
  20840. bottom: 0.07
  20841. }
  20842. },
  20843. maw: {
  20844. height: math.unit(1.1, "feet"),
  20845. name: "Maw",
  20846. image: {
  20847. source: "./media/characters/artemis/maw.svg"
  20848. }
  20849. },
  20850. stomach: {
  20851. height: math.unit(0.95, "feet"),
  20852. name: "Stomach",
  20853. image: {
  20854. source: "./media/characters/artemis/stomach.svg"
  20855. }
  20856. },
  20857. dickCanine: {
  20858. height: math.unit(1, "feet"),
  20859. name: "Dick (Canine)",
  20860. image: {
  20861. source: "./media/characters/artemis/dick-canine.svg"
  20862. }
  20863. },
  20864. dickEquine: {
  20865. height: math.unit(0.85, "feet"),
  20866. name: "Dick (Equine)",
  20867. image: {
  20868. source: "./media/characters/artemis/dick-equine.svg"
  20869. }
  20870. },
  20871. dickExotic: {
  20872. height: math.unit(0.85, "feet"),
  20873. name: "Dick (Exotic)",
  20874. image: {
  20875. source: "./media/characters/artemis/dick-exotic.svg"
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Normal",
  20882. height: math.unit(7.5, "feet"),
  20883. default: true
  20884. },
  20885. {
  20886. name: "Enlarged",
  20887. height: math.unit(12, "feet")
  20888. },
  20889. ]
  20890. ))
  20891. characterMakers.push(() => makeCharacter(
  20892. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20893. {
  20894. front: {
  20895. height: math.unit(5 + 3 / 12, "feet"),
  20896. weight: math.unit(160, "lb"),
  20897. name: "Front",
  20898. image: {
  20899. source: "./media/characters/kira/front.svg",
  20900. extra: 906 / 786,
  20901. bottom: 0.01
  20902. }
  20903. },
  20904. back: {
  20905. height: math.unit(5 + 3 / 12, "feet"),
  20906. weight: math.unit(160, "lb"),
  20907. name: "Back",
  20908. image: {
  20909. source: "./media/characters/kira/back.svg",
  20910. extra: 882 / 757,
  20911. bottom: 0.005
  20912. }
  20913. },
  20914. frontDressed: {
  20915. height: math.unit(5 + 3 / 12, "feet"),
  20916. weight: math.unit(160, "lb"),
  20917. name: "Front (Dressed)",
  20918. image: {
  20919. source: "./media/characters/kira/front-dressed.svg",
  20920. extra: 906 / 786,
  20921. bottom: 0.01
  20922. }
  20923. },
  20924. beans: {
  20925. height: math.unit(0.92, "feet"),
  20926. name: "Beans",
  20927. image: {
  20928. source: "./media/characters/kira/beans.svg"
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(5 + 3 / 12, "feet"),
  20936. default: true
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(5 + 4 / 12, "feet"),
  20945. weight: math.unit(145, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/scramble/front.svg",
  20949. extra: 763 / 727,
  20950. bottom: 0.05
  20951. }
  20952. },
  20953. back: {
  20954. height: math.unit(5 + 4 / 12, "feet"),
  20955. weight: math.unit(145, "lb"),
  20956. name: "Back",
  20957. image: {
  20958. source: "./media/characters/scramble/back.svg",
  20959. extra: 826 / 737,
  20960. bottom: 0.002
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(5 + 4 / 12, "feet"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20974. {
  20975. side: {
  20976. height: math.unit(6 + 2 / 12, "feet"),
  20977. weight: math.unit(190, "lb"),
  20978. name: "Side",
  20979. image: {
  20980. source: "./media/characters/biscuit/side.svg",
  20981. extra: 858 / 791,
  20982. bottom: 0.044
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(6 + 2 / 12, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(5 + 2 / 12, "feet"),
  20999. weight: math.unit(120, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/poffin/front.svg",
  21003. extra: 786 / 680,
  21004. bottom: 0.005
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(5 + 2 / 12, "feet"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(6 + 3 / 12, "feet"),
  21021. weight: math.unit(519, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/dhari/front.svg",
  21025. extra: 1048 / 946,
  21026. bottom: 0.015
  21027. }
  21028. },
  21029. back: {
  21030. height: math.unit(6 + 3 / 12, "feet"),
  21031. weight: math.unit(519, "lb"),
  21032. name: "Back",
  21033. image: {
  21034. source: "./media/characters/dhari/back.svg",
  21035. extra: 1048 / 931,
  21036. bottom: 0.005
  21037. }
  21038. },
  21039. frontDressed: {
  21040. height: math.unit(6 + 3 / 12, "feet"),
  21041. weight: math.unit(519, "lb"),
  21042. name: "Front (Dressed)",
  21043. image: {
  21044. source: "./media/characters/dhari/front-dressed.svg",
  21045. extra: 1713 / 1546,
  21046. bottom: 0.02
  21047. }
  21048. },
  21049. backDressed: {
  21050. height: math.unit(6 + 3 / 12, "feet"),
  21051. weight: math.unit(519, "lb"),
  21052. name: "Back (Dressed)",
  21053. image: {
  21054. source: "./media/characters/dhari/back-dressed.svg",
  21055. extra: 1699 / 1537,
  21056. bottom: 0.01
  21057. }
  21058. },
  21059. maw: {
  21060. height: math.unit(0.95, "feet"),
  21061. name: "Maw",
  21062. image: {
  21063. source: "./media/characters/dhari/maw.svg"
  21064. }
  21065. },
  21066. wereFront: {
  21067. height: math.unit(12 + 8 / 12, "feet"),
  21068. weight: math.unit(4000, "lb"),
  21069. name: "Front (Were)",
  21070. image: {
  21071. source: "./media/characters/dhari/were-front.svg",
  21072. extra: 1065 / 969,
  21073. bottom: 0.015
  21074. }
  21075. },
  21076. wereBack: {
  21077. height: math.unit(12 + 8 / 12, "feet"),
  21078. weight: math.unit(4000, "lb"),
  21079. name: "Back (Were)",
  21080. image: {
  21081. source: "./media/characters/dhari/were-back.svg",
  21082. extra: 1065 / 969,
  21083. bottom: 0.012
  21084. }
  21085. },
  21086. wereMaw: {
  21087. height: math.unit(0.625, "meters"),
  21088. name: "Maw (Were)",
  21089. image: {
  21090. source: "./media/characters/dhari/were-maw.svg"
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(6 + 3 / 12, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21104. {
  21105. anthro: {
  21106. height: math.unit(5 + 7 / 12, "feet"),
  21107. weight: math.unit(175, "lb"),
  21108. name: "Anthro",
  21109. image: {
  21110. source: "./media/characters/rena-dyne/anthro.svg",
  21111. extra: 1849 / 1785,
  21112. bottom: 0.005
  21113. }
  21114. },
  21115. taur: {
  21116. height: math.unit(15 + 6 / 12, "feet"),
  21117. weight: math.unit(8000, "lb"),
  21118. name: "Taur",
  21119. image: {
  21120. source: "./media/characters/rena-dyne/taur.svg",
  21121. extra: 2315 / 2234,
  21122. bottom: 0.033
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Normal",
  21129. height: math.unit(5 + 7 / 12, "feet"),
  21130. default: true
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(8, "feet"),
  21139. weight: math.unit(600, "lb"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/weremeep/front.svg",
  21143. extra: 967 / 862,
  21144. bottom: 0.01
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(8, "feet"),
  21152. default: true
  21153. },
  21154. {
  21155. name: "Lorg",
  21156. height: math.unit(12, "feet")
  21157. },
  21158. {
  21159. name: "Oh Lawd She Comin'",
  21160. height: math.unit(20, "feet")
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21166. {
  21167. front: {
  21168. height: math.unit(4, "feet"),
  21169. weight: math.unit(90, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/reza/front.svg",
  21173. extra: 1183 / 1111,
  21174. bottom: 0.017
  21175. }
  21176. },
  21177. back: {
  21178. height: math.unit(4, "feet"),
  21179. weight: math.unit(90, "lb"),
  21180. name: "Back",
  21181. image: {
  21182. source: "./media/characters/reza/back.svg",
  21183. extra: 1183 / 1111,
  21184. bottom: 0.01
  21185. }
  21186. },
  21187. drake: {
  21188. height: math.unit(30, "feet"),
  21189. weight: math.unit(246960, "lb"),
  21190. name: "Drake",
  21191. image: {
  21192. source: "./media/characters/reza/drake.svg",
  21193. extra: 2350 / 2024,
  21194. bottom: 60.7 / 2403
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(4, "feet"),
  21202. default: true
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21208. {
  21209. side: {
  21210. height: math.unit(15, "feet"),
  21211. weight: math.unit(14, "tons"),
  21212. name: "Side",
  21213. image: {
  21214. source: "./media/characters/athea/side.svg",
  21215. extra: 960 / 540,
  21216. bottom: 0.003
  21217. }
  21218. },
  21219. sitting: {
  21220. height: math.unit(6 * 2.85, "feet"),
  21221. weight: math.unit(14, "tons"),
  21222. name: "Sitting",
  21223. image: {
  21224. source: "./media/characters/athea/sitting.svg",
  21225. extra: 621 / 581,
  21226. bottom: 0.075
  21227. }
  21228. },
  21229. maw: {
  21230. height: math.unit(7.59498031496063, "feet"),
  21231. name: "Maw",
  21232. image: {
  21233. source: "./media/characters/athea/maw.svg"
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Lap Cat",
  21240. height: math.unit(2.5, "feet")
  21241. },
  21242. {
  21243. name: "Minimacro",
  21244. height: math.unit(15, "feet"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(120, "feet")
  21250. },
  21251. {
  21252. name: "Macro+",
  21253. height: math.unit(640, "feet")
  21254. },
  21255. {
  21256. name: "Colossus",
  21257. height: math.unit(2.2, "miles")
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21263. {
  21264. front: {
  21265. height: math.unit(8 + 8 / 12, "feet"),
  21266. weight: math.unit(130, "kg"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/seroko/front.svg",
  21270. extra: 1385 / 1280,
  21271. bottom: 0.025
  21272. }
  21273. },
  21274. back: {
  21275. height: math.unit(8 + 8 / 12, "feet"),
  21276. weight: math.unit(130, "kg"),
  21277. name: "Back",
  21278. image: {
  21279. source: "./media/characters/seroko/back.svg",
  21280. extra: 1369 / 1238,
  21281. bottom: 0.018
  21282. }
  21283. },
  21284. frontDressed: {
  21285. height: math.unit(8 + 8 / 12, "feet"),
  21286. weight: math.unit(130, "kg"),
  21287. name: "Front (Dressed)",
  21288. image: {
  21289. source: "./media/characters/seroko/front-dressed.svg",
  21290. extra: 1366 / 1275,
  21291. bottom: 0.03
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(8 + 8 / 12, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21305. {
  21306. front: {
  21307. height: math.unit(5.5, "feet"),
  21308. weight: math.unit(160, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/quatzi/front.svg",
  21312. extra: 2346 / 2242,
  21313. bottom: 0.015
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(5.5, "feet"),
  21321. default: true
  21322. },
  21323. {
  21324. name: "Big",
  21325. height: math.unit(7.7, "feet")
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(5 + 11 / 12, "feet"),
  21334. weight: math.unit(180, "lb"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/sen/front.svg",
  21338. extra: 1321 / 1254,
  21339. bottom: 0.015
  21340. }
  21341. },
  21342. side: {
  21343. height: math.unit(5 + 11 / 12, "feet"),
  21344. weight: math.unit(180, "lb"),
  21345. name: "Side",
  21346. image: {
  21347. source: "./media/characters/sen/side.svg",
  21348. extra: 1321 / 1254,
  21349. bottom: 0.007
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(5 + 11 / 12, "feet"),
  21354. weight: math.unit(180, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/sen/back.svg",
  21358. extra: 1321 / 1254
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(5 + 11 / 12, "feet"),
  21366. default: true
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21372. {
  21373. front: {
  21374. height: math.unit(166.6, "cm"),
  21375. weight: math.unit(66.6, "kg"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/fruity/front.svg",
  21379. extra: 1510 / 1386,
  21380. bottom: 0.04
  21381. }
  21382. },
  21383. back: {
  21384. height: math.unit(166.6, "cm"),
  21385. weight: math.unit(66.6, "lb"),
  21386. name: "Back",
  21387. image: {
  21388. source: "./media/characters/fruity/back.svg",
  21389. extra: 1563 / 1435,
  21390. bottom: 0.005
  21391. }
  21392. },
  21393. },
  21394. [
  21395. {
  21396. name: "Normal",
  21397. height: math.unit(166.6, "cm"),
  21398. default: true
  21399. },
  21400. {
  21401. name: "Demonic",
  21402. height: math.unit(166.6, "feet")
  21403. },
  21404. ]
  21405. ))
  21406. characterMakers.push(() => makeCharacter(
  21407. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21408. {
  21409. side: {
  21410. height: math.unit(10, "feet"),
  21411. weight: math.unit(500, "lb"),
  21412. name: "Side",
  21413. image: {
  21414. source: "./media/characters/zost/side.svg",
  21415. extra: 966 / 880,
  21416. bottom: 0.075
  21417. }
  21418. },
  21419. mawFront: {
  21420. height: math.unit(1.08, "meters"),
  21421. name: "Maw (Front)",
  21422. image: {
  21423. source: "./media/characters/zost/maw-front.svg"
  21424. }
  21425. },
  21426. mawSide: {
  21427. height: math.unit(2.66, "feet"),
  21428. name: "Maw (Side)",
  21429. image: {
  21430. source: "./media/characters/zost/maw-side.svg"
  21431. }
  21432. },
  21433. },
  21434. [
  21435. {
  21436. name: "Normal",
  21437. height: math.unit(10, "feet"),
  21438. default: true
  21439. },
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21444. {
  21445. front: {
  21446. height: math.unit(5 + 4 / 12, "feet"),
  21447. weight: math.unit(120, "lb"),
  21448. name: "Front",
  21449. image: {
  21450. source: "./media/characters/luci/front.svg",
  21451. extra: 1985 / 1884,
  21452. bottom: 0.04
  21453. }
  21454. },
  21455. back: {
  21456. height: math.unit(5 + 4 / 12, "feet"),
  21457. weight: math.unit(120, "lb"),
  21458. name: "Back",
  21459. image: {
  21460. source: "./media/characters/luci/back.svg",
  21461. extra: 1892 / 1791,
  21462. bottom: 0.002
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(5 + 4 / 12, "feet"),
  21470. default: true
  21471. },
  21472. ]
  21473. ))
  21474. characterMakers.push(() => makeCharacter(
  21475. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21476. {
  21477. front: {
  21478. height: math.unit(1500, "feet"),
  21479. weight: math.unit(3.8e6, "tons"),
  21480. name: "Front",
  21481. image: {
  21482. source: "./media/characters/2th/front.svg",
  21483. extra: 3489 / 3350,
  21484. bottom: 0.1
  21485. }
  21486. },
  21487. foot: {
  21488. height: math.unit(461, "feet"),
  21489. name: "Foot",
  21490. image: {
  21491. source: "./media/characters/2th/foot.svg"
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "\"Micro\"",
  21498. height: math.unit(15 + 7 / 12, "feet")
  21499. },
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(1500, "feet"),
  21503. default: true
  21504. },
  21505. {
  21506. name: "Macro",
  21507. height: math.unit(5000, "feet")
  21508. },
  21509. {
  21510. name: "Megamacro",
  21511. height: math.unit(15, "miles")
  21512. },
  21513. {
  21514. name: "Gigamacro",
  21515. height: math.unit(4000, "miles")
  21516. },
  21517. {
  21518. name: "Galactic",
  21519. height: math.unit(50, "AU")
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(5 + 6 / 12, "feet"),
  21528. weight: math.unit(220, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/amethyst/front.svg",
  21532. extra: 2078 / 2040,
  21533. bottom: 0.045
  21534. }
  21535. },
  21536. back: {
  21537. height: math.unit(5 + 6 / 12, "feet"),
  21538. weight: math.unit(220, "lb"),
  21539. name: "Back",
  21540. image: {
  21541. source: "./media/characters/amethyst/back.svg",
  21542. extra: 2021 / 1989,
  21543. bottom: 0.02
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(5 + 6 / 12, "feet"),
  21551. default: true
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21557. {
  21558. front: {
  21559. height: math.unit(4 + 11 / 12, "feet"),
  21560. weight: math.unit(120, "lb"),
  21561. name: "Front",
  21562. image: {
  21563. source: "./media/characters/yumi-akiyama/front.svg",
  21564. extra: 1327 / 1235,
  21565. bottom: 0.02
  21566. }
  21567. },
  21568. back: {
  21569. height: math.unit(4 + 11 / 12, "feet"),
  21570. weight: math.unit(120, "lb"),
  21571. name: "Back",
  21572. image: {
  21573. source: "./media/characters/yumi-akiyama/back.svg",
  21574. extra: 1287 / 1245,
  21575. bottom: 0.002
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Galactic",
  21582. height: math.unit(50, "galaxies"),
  21583. default: true
  21584. },
  21585. {
  21586. name: "Universal",
  21587. height: math.unit(100, "universes")
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21593. {
  21594. front: {
  21595. height: math.unit(8, "feet"),
  21596. weight: math.unit(500, "lb"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/rifter-yrmori/front.svg",
  21600. extra: 1180 / 1125,
  21601. bottom: 0.02
  21602. }
  21603. },
  21604. back: {
  21605. height: math.unit(8, "feet"),
  21606. weight: math.unit(500, "lb"),
  21607. name: "Back",
  21608. image: {
  21609. source: "./media/characters/rifter-yrmori/back.svg",
  21610. extra: 1190 / 1145,
  21611. bottom: 0.001
  21612. }
  21613. },
  21614. wings: {
  21615. height: math.unit(7.75, "feet"),
  21616. weight: math.unit(500, "lb"),
  21617. name: "Wings",
  21618. image: {
  21619. source: "./media/characters/rifter-yrmori/wings.svg",
  21620. extra: 1357 / 1285
  21621. }
  21622. },
  21623. maw: {
  21624. height: math.unit(0.8, "feet"),
  21625. name: "Maw",
  21626. image: {
  21627. source: "./media/characters/rifter-yrmori/maw.svg"
  21628. }
  21629. },
  21630. mawfront: {
  21631. height: math.unit(1.45, "feet"),
  21632. name: "Maw (Front)",
  21633. image: {
  21634. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(8, "feet"),
  21642. default: true
  21643. },
  21644. {
  21645. name: "Macro",
  21646. height: math.unit(42, "meters")
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21652. {
  21653. were: {
  21654. height: math.unit(25 + 6 / 12, "feet"),
  21655. weight: math.unit(10000, "lb"),
  21656. name: "Were",
  21657. image: {
  21658. source: "./media/characters/tahajin/were.svg",
  21659. extra: 801 / 770,
  21660. bottom: 0.042
  21661. }
  21662. },
  21663. aquatic: {
  21664. height: math.unit(6 + 4 / 12, "feet"),
  21665. weight: math.unit(160, "lb"),
  21666. name: "Aquatic",
  21667. image: {
  21668. source: "./media/characters/tahajin/aquatic.svg",
  21669. extra: 572 / 542,
  21670. bottom: 0.04
  21671. }
  21672. },
  21673. chow: {
  21674. height: math.unit(8 + 11 / 12, "feet"),
  21675. weight: math.unit(450, "lb"),
  21676. name: "Chow",
  21677. image: {
  21678. source: "./media/characters/tahajin/chow.svg",
  21679. extra: 660 / 640,
  21680. bottom: 0.015
  21681. }
  21682. },
  21683. demiNaga: {
  21684. height: math.unit(6 + 8 / 12, "feet"),
  21685. weight: math.unit(300, "lb"),
  21686. name: "Demi Naga",
  21687. image: {
  21688. source: "./media/characters/tahajin/demi-naga.svg",
  21689. extra: 643 / 615,
  21690. bottom: 0.1
  21691. }
  21692. },
  21693. data: {
  21694. height: math.unit(5, "inches"),
  21695. weight: math.unit(0.1, "lb"),
  21696. name: "Data",
  21697. image: {
  21698. source: "./media/characters/tahajin/data.svg"
  21699. }
  21700. },
  21701. fluu: {
  21702. height: math.unit(5 + 7 / 12, "feet"),
  21703. weight: math.unit(140, "lb"),
  21704. name: "Fluu",
  21705. image: {
  21706. source: "./media/characters/tahajin/fluu.svg",
  21707. extra: 628 / 592,
  21708. bottom: 0.02
  21709. }
  21710. },
  21711. starWarrior: {
  21712. height: math.unit(4 + 5 / 12, "feet"),
  21713. weight: math.unit(50, "lb"),
  21714. name: "Star Warrior",
  21715. image: {
  21716. source: "./media/characters/tahajin/star-warrior.svg"
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "Normal",
  21723. height: math.unit(25 + 6 / 12, "feet"),
  21724. default: true
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21730. {
  21731. front: {
  21732. height: math.unit(8, "feet"),
  21733. weight: math.unit(350, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/gabira/front.svg",
  21737. extra: 608 / 580,
  21738. bottom: 0.03
  21739. }
  21740. },
  21741. back: {
  21742. height: math.unit(8, "feet"),
  21743. weight: math.unit(350, "lb"),
  21744. name: "Back",
  21745. image: {
  21746. source: "./media/characters/gabira/back.svg",
  21747. extra: 608 / 580,
  21748. bottom: 0.03
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(8, "feet"),
  21756. default: true
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(5 + 3 / 12, "feet"),
  21765. weight: math.unit(137, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/sasha-katraine/front.svg",
  21769. bottom: 0.045
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Micro",
  21776. height: math.unit(5, "inches")
  21777. },
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(5 + 3 / 12, "feet"),
  21781. default: true
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21787. {
  21788. side: {
  21789. height: math.unit(4, "inches"),
  21790. weight: math.unit(200, "grams"),
  21791. name: "Side",
  21792. image: {
  21793. source: "./media/characters/der/side.svg",
  21794. extra: 719 / 400,
  21795. bottom: 30.6 / 749.9187
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Micro",
  21802. height: math.unit(4, "inches"),
  21803. default: true
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21809. {
  21810. side: {
  21811. height: math.unit(30, "meters"),
  21812. weight: math.unit(700, "tonnes"),
  21813. name: "Side",
  21814. image: {
  21815. source: "./media/characters/fixerdragon/side.svg",
  21816. extra: (1293.0514 - 116.03) / 1106.86,
  21817. bottom: 116.03 / 1293.0514
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Planck",
  21824. height: math.unit(1.6e-35, "meters")
  21825. },
  21826. {
  21827. name: "Micro",
  21828. height: math.unit(0.4, "meters")
  21829. },
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(30, "meters"),
  21833. default: true
  21834. },
  21835. {
  21836. name: "Megamacro",
  21837. height: math.unit(1.2, "megameters")
  21838. },
  21839. {
  21840. name: "Teramacro",
  21841. height: math.unit(130, "terameters")
  21842. },
  21843. {
  21844. name: "Yottamacro",
  21845. height: math.unit(6200, "yottameters")
  21846. },
  21847. ]
  21848. ));
  21849. characterMakers.push(() => makeCharacter(
  21850. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21851. {
  21852. front: {
  21853. height: math.unit(8, "feet"),
  21854. weight: math.unit(250, "lb"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/kite/front.svg",
  21858. extra: 2796 / 2659,
  21859. bottom: 0.002
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(8, "feet"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(360, "feet")
  21872. },
  21873. {
  21874. name: "Megamacro",
  21875. height: math.unit(1500, "feet")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(5 + 11/12, "feet"),
  21884. weight: math.unit(170, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/poojawa-vynar/front.svg",
  21888. extra: 1735/1585,
  21889. bottom: 96/1831
  21890. }
  21891. },
  21892. back: {
  21893. height: math.unit(5 + 11/12, "feet"),
  21894. weight: math.unit(170, "lb"),
  21895. name: "Back",
  21896. image: {
  21897. source: "./media/characters/poojawa-vynar/back.svg",
  21898. extra: 1749/1607,
  21899. bottom: 28/1777
  21900. }
  21901. },
  21902. male: {
  21903. height: math.unit(5 + 11/12, "feet"),
  21904. weight: math.unit(170, "lb"),
  21905. name: "Male",
  21906. image: {
  21907. source: "./media/characters/poojawa-vynar/male.svg",
  21908. extra: 1855/1713,
  21909. bottom: 63/1918
  21910. }
  21911. },
  21912. taur: {
  21913. height: math.unit(5 + 11/12, "feet"),
  21914. weight: math.unit(170, "lb"),
  21915. name: "Taur",
  21916. image: {
  21917. source: "./media/characters/poojawa-vynar/taur.svg",
  21918. extra: 1151/1059,
  21919. bottom: 356/1507
  21920. }
  21921. },
  21922. frontDressed: {
  21923. height: math.unit(5 + 11/12, "feet"),
  21924. weight: math.unit(170, "lb"),
  21925. name: "Front (Dressed)",
  21926. image: {
  21927. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21928. extra: 1735/1585,
  21929. bottom: 96/1831
  21930. }
  21931. },
  21932. backDressed: {
  21933. height: math.unit(5 + 11/12, "feet"),
  21934. weight: math.unit(170, "lb"),
  21935. name: "Back (Dressed)",
  21936. image: {
  21937. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21938. extra: 1749/1607,
  21939. bottom: 28/1777
  21940. }
  21941. },
  21942. maleDressed: {
  21943. height: math.unit(5 + 11/12, "feet"),
  21944. weight: math.unit(170, "lb"),
  21945. name: "Male (Dressed)",
  21946. image: {
  21947. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21948. extra: 1855/1713,
  21949. bottom: 63/1918
  21950. }
  21951. },
  21952. taurDressed: {
  21953. height: math.unit(5 + 11/12, "feet"),
  21954. weight: math.unit(170, "lb"),
  21955. name: "Taur (Dressed)",
  21956. image: {
  21957. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21958. extra: 1151/1059,
  21959. bottom: 356/1507
  21960. }
  21961. },
  21962. maw: {
  21963. height: math.unit(1.46, "feet"),
  21964. name: "Maw",
  21965. image: {
  21966. source: "./media/characters/poojawa-vynar/maw.svg"
  21967. }
  21968. },
  21969. head: {
  21970. height: math.unit(2.34, "feet"),
  21971. name: "Head",
  21972. image: {
  21973. source: "./media/characters/poojawa-vynar/head.svg"
  21974. }
  21975. },
  21976. paw: {
  21977. height: math.unit(1.61, "feet"),
  21978. name: "Paw",
  21979. image: {
  21980. source: "./media/characters/poojawa-vynar/paw.svg"
  21981. }
  21982. },
  21983. pawToering: {
  21984. height: math.unit(1.72, "feet"),
  21985. name: "Paw (Toering)",
  21986. image: {
  21987. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21988. }
  21989. },
  21990. toering: {
  21991. height: math.unit(2.9, "inches"),
  21992. name: "Toering",
  21993. image: {
  21994. source: "./media/characters/poojawa-vynar/toering.svg"
  21995. }
  21996. },
  21997. shaft: {
  21998. height: math.unit(0.625, "feet"),
  21999. name: "Shaft",
  22000. image: {
  22001. source: "./media/characters/poojawa-vynar/shaft.svg"
  22002. }
  22003. },
  22004. spade: {
  22005. height: math.unit(0.42, "feet"),
  22006. name: "Spade",
  22007. image: {
  22008. source: "./media/characters/poojawa-vynar/spade.svg"
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Shortstack",
  22015. height: math.unit(4, "feet")
  22016. },
  22017. {
  22018. name: "Normal",
  22019. height: math.unit(5 + 11 / 12, "feet"),
  22020. default: true
  22021. },
  22022. {
  22023. name: "Tauric",
  22024. height: math.unit(4, "meters")
  22025. },
  22026. ]
  22027. ))
  22028. characterMakers.push(() => makeCharacter(
  22029. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22030. {
  22031. front: {
  22032. height: math.unit(293, "meters"),
  22033. weight: math.unit(70400, "tons"),
  22034. name: "Front",
  22035. image: {
  22036. source: "./media/characters/violette/front.svg",
  22037. extra: 1227 / 1180,
  22038. bottom: 0.005
  22039. }
  22040. },
  22041. back: {
  22042. height: math.unit(293, "meters"),
  22043. weight: math.unit(70400, "tons"),
  22044. name: "Back",
  22045. image: {
  22046. source: "./media/characters/violette/back.svg",
  22047. extra: 1227 / 1180,
  22048. bottom: 0.005
  22049. }
  22050. },
  22051. },
  22052. [
  22053. {
  22054. name: "Macro",
  22055. height: math.unit(293, "meters"),
  22056. default: true
  22057. },
  22058. ]
  22059. ))
  22060. characterMakers.push(() => makeCharacter(
  22061. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22062. {
  22063. front: {
  22064. height: math.unit(1050, "feet"),
  22065. weight: math.unit(200000, "tons"),
  22066. name: "Front",
  22067. image: {
  22068. source: "./media/characters/alessandra/front.svg",
  22069. extra: 960 / 912,
  22070. bottom: 0.06
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Macro",
  22077. height: math.unit(1050, "feet")
  22078. },
  22079. {
  22080. name: "Macro+",
  22081. height: math.unit(900, "meters"),
  22082. default: true
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(5, "feet"),
  22091. weight: math.unit(187, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/person/front.svg",
  22095. extra: 3087 / 2945,
  22096. bottom: 91 / 3181
  22097. }
  22098. },
  22099. },
  22100. [
  22101. {
  22102. name: "Micro",
  22103. height: math.unit(3, "inches")
  22104. },
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(5, "feet"),
  22108. default: true
  22109. },
  22110. {
  22111. name: "Macro",
  22112. height: math.unit(90, "feet")
  22113. },
  22114. {
  22115. name: "Max Size",
  22116. height: math.unit(280, "feet")
  22117. },
  22118. ]
  22119. ))
  22120. characterMakers.push(() => makeCharacter(
  22121. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22122. {
  22123. front: {
  22124. height: math.unit(4.5, "meters"),
  22125. weight: math.unit(3200, "lb"),
  22126. name: "Front",
  22127. image: {
  22128. source: "./media/characters/ty/front.svg",
  22129. extra: 1038 / 960,
  22130. bottom: 31.156 / 1068
  22131. }
  22132. },
  22133. back: {
  22134. height: math.unit(4.5, "meters"),
  22135. weight: math.unit(3200, "lb"),
  22136. name: "Back",
  22137. image: {
  22138. source: "./media/characters/ty/back.svg",
  22139. extra: 1044 / 966,
  22140. bottom: 7.48 / 1049
  22141. }
  22142. },
  22143. },
  22144. [
  22145. {
  22146. name: "Normal",
  22147. height: math.unit(4.5, "meters"),
  22148. default: true
  22149. },
  22150. ]
  22151. ))
  22152. characterMakers.push(() => makeCharacter(
  22153. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22154. {
  22155. front: {
  22156. height: math.unit(5 + 4 / 12, "feet"),
  22157. weight: math.unit(115, "lb"),
  22158. name: "Front",
  22159. image: {
  22160. source: "./media/characters/rocky/front.svg",
  22161. extra: 1012 / 975,
  22162. bottom: 54 / 1066
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(5 + 4 / 12, "feet"),
  22170. default: true
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22176. {
  22177. upright: {
  22178. height: math.unit(6, "meters"),
  22179. weight: math.unit(4000, "kg"),
  22180. name: "Upright",
  22181. image: {
  22182. source: "./media/characters/ruin/upright.svg",
  22183. extra: 668 / 661,
  22184. bottom: 42 / 799.8396
  22185. }
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Normal",
  22191. height: math.unit(6, "meters"),
  22192. default: true
  22193. },
  22194. ]
  22195. ))
  22196. characterMakers.push(() => makeCharacter(
  22197. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22198. {
  22199. front: {
  22200. height: math.unit(5, "feet"),
  22201. weight: math.unit(106, "lb"),
  22202. name: "Front",
  22203. image: {
  22204. source: "./media/characters/robin/front.svg",
  22205. extra: 862 / 799,
  22206. bottom: 42.4 / 914.8856
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Normal",
  22213. height: math.unit(5, "feet"),
  22214. default: true
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22220. {
  22221. side: {
  22222. height: math.unit(3, "feet"),
  22223. weight: math.unit(225, "lb"),
  22224. name: "Side",
  22225. image: {
  22226. source: "./media/characters/saian/side.svg",
  22227. extra: 566 / 356,
  22228. bottom: 79.7 / 643
  22229. }
  22230. },
  22231. maw: {
  22232. height: math.unit(2.85, "feet"),
  22233. name: "Maw",
  22234. image: {
  22235. source: "./media/characters/saian/maw.svg"
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Normal",
  22242. height: math.unit(3, "feet"),
  22243. default: true
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22249. {
  22250. side: {
  22251. height: math.unit(8, "feet"),
  22252. weight: math.unit(300, "lb"),
  22253. name: "Side",
  22254. image: {
  22255. source: "./media/characters/equus-silvermane/side.svg",
  22256. extra: 2176 / 2050,
  22257. bottom: 65.7 / 2245
  22258. }
  22259. },
  22260. front: {
  22261. height: math.unit(8, "feet"),
  22262. weight: math.unit(300, "lb"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/equus-silvermane/front.svg",
  22266. extra: 4633 / 4400,
  22267. bottom: 71.3 / 4706.915
  22268. }
  22269. },
  22270. sideStepping: {
  22271. height: math.unit(8, "feet"),
  22272. weight: math.unit(300, "lb"),
  22273. name: "Side (Stepping)",
  22274. image: {
  22275. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22276. extra: 1968 / 1860,
  22277. bottom: 16.4 / 1989
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(8, "feet")
  22285. },
  22286. {
  22287. name: "Minimacro",
  22288. height: math.unit(75, "feet"),
  22289. default: true
  22290. },
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(150, "feet")
  22294. },
  22295. {
  22296. name: "Macro+",
  22297. height: math.unit(1000, "feet")
  22298. },
  22299. {
  22300. name: "Megamacro",
  22301. height: math.unit(1, "mile")
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22307. {
  22308. side: {
  22309. height: math.unit(20, "feet"),
  22310. weight: math.unit(30000, "kg"),
  22311. name: "Side",
  22312. image: {
  22313. source: "./media/characters/windar/side.svg",
  22314. extra: 1491 / 1248,
  22315. bottom: 82.56 / 1568
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(20, "feet"),
  22323. default: true
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22329. {
  22330. side: {
  22331. height: math.unit(15.66, "feet"),
  22332. weight: math.unit(150, "lb"),
  22333. name: "Side",
  22334. image: {
  22335. source: "./media/characters/melody/side.svg",
  22336. extra: 1097 / 944,
  22337. bottom: 11.8 / 1109
  22338. }
  22339. },
  22340. sideOutfit: {
  22341. height: math.unit(15.66, "feet"),
  22342. weight: math.unit(150, "lb"),
  22343. name: "Side (Outfit)",
  22344. image: {
  22345. source: "./media/characters/melody/side-outfit.svg",
  22346. extra: 1097 / 944,
  22347. bottom: 11.8 / 1109
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(15.66, "feet"),
  22355. default: true
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22361. {
  22362. front: {
  22363. height: math.unit(8, "feet"),
  22364. weight: math.unit(325, "lb"),
  22365. name: "Front",
  22366. image: {
  22367. source: "./media/characters/windera/front.svg",
  22368. extra: 3180 / 2845,
  22369. bottom: 178 / 3365
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(8, "feet"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22383. {
  22384. front: {
  22385. height: math.unit(28.75, "feet"),
  22386. weight: math.unit(2000, "kg"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/sonear/front.svg",
  22390. extra: 1041.1 / 964.9,
  22391. bottom: 53.7 / 1096.6
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(28.75, "feet"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22405. {
  22406. side: {
  22407. height: math.unit(25.5, "feet"),
  22408. weight: math.unit(23000, "kg"),
  22409. name: "Side",
  22410. image: {
  22411. source: "./media/characters/kanara/side.svg"
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Normal",
  22418. height: math.unit(25.5, "feet"),
  22419. default: true
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22425. {
  22426. side: {
  22427. height: math.unit(10, "feet"),
  22428. weight: math.unit(1000, "kg"),
  22429. name: "Side",
  22430. image: {
  22431. source: "./media/characters/ereus/side.svg",
  22432. extra: 1157 / 959,
  22433. bottom: 153 / 1312.5
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(10, "feet"),
  22441. default: true
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22447. {
  22448. side: {
  22449. height: math.unit(4.5, "feet"),
  22450. weight: math.unit(500, "lb"),
  22451. name: "Side",
  22452. image: {
  22453. source: "./media/characters/e-ter/side.svg",
  22454. extra: 1550 / 1248,
  22455. bottom: 146 / 1694
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Normal",
  22462. height: math.unit(4.5, "feet"),
  22463. default: true
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22469. {
  22470. side: {
  22471. height: math.unit(9.7, "feet"),
  22472. weight: math.unit(4000, "kg"),
  22473. name: "Side",
  22474. image: {
  22475. source: "./media/characters/yamie/side.svg"
  22476. }
  22477. },
  22478. },
  22479. [
  22480. {
  22481. name: "Normal",
  22482. height: math.unit(9.7, "feet"),
  22483. default: true
  22484. },
  22485. ]
  22486. ))
  22487. characterMakers.push(() => makeCharacter(
  22488. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22489. {
  22490. front: {
  22491. height: math.unit(50, "feet"),
  22492. weight: math.unit(50000, "kg"),
  22493. name: "Front",
  22494. image: {
  22495. source: "./media/characters/anders/front.svg",
  22496. extra: 570 / 539,
  22497. bottom: 14.7 / 586.7
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Large",
  22504. height: math.unit(50, "feet")
  22505. },
  22506. {
  22507. name: "Macro",
  22508. height: math.unit(2000, "feet"),
  22509. default: true
  22510. },
  22511. {
  22512. name: "Megamacro",
  22513. height: math.unit(12, "miles")
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(7 + 2 / 12, "feet"),
  22522. weight: math.unit(300, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/reban/front.svg",
  22526. extra: 1287/1212,
  22527. bottom: 148/1435
  22528. }
  22529. },
  22530. head: {
  22531. height: math.unit(1.95, "feet"),
  22532. name: "Head",
  22533. image: {
  22534. source: "./media/characters/reban/head.svg"
  22535. }
  22536. },
  22537. maw: {
  22538. height: math.unit(0.95, "feet"),
  22539. name: "Maw",
  22540. image: {
  22541. source: "./media/characters/reban/maw.svg"
  22542. }
  22543. },
  22544. foot: {
  22545. height: math.unit(1.65, "feet"),
  22546. name: "Foot",
  22547. image: {
  22548. source: "./media/characters/reban/foot.svg"
  22549. }
  22550. },
  22551. dick: {
  22552. height: math.unit(7 / 5, "feet"),
  22553. name: "Dick",
  22554. image: {
  22555. source: "./media/characters/reban/dick.svg"
  22556. }
  22557. },
  22558. },
  22559. [
  22560. {
  22561. name: "Natural Height",
  22562. height: math.unit(7 + 2 / 12, "feet")
  22563. },
  22564. {
  22565. name: "Macro",
  22566. height: math.unit(500, "feet"),
  22567. default: true
  22568. },
  22569. {
  22570. name: "Canon Height",
  22571. height: math.unit(50, "AU")
  22572. },
  22573. ]
  22574. ))
  22575. characterMakers.push(() => makeCharacter(
  22576. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22577. {
  22578. front: {
  22579. height: math.unit(6, "feet"),
  22580. weight: math.unit(150, "lb"),
  22581. name: "Front",
  22582. image: {
  22583. source: "./media/characters/terrance-keayes/front.svg",
  22584. extra: 1.005,
  22585. bottom: 151 / 1615
  22586. }
  22587. },
  22588. side: {
  22589. height: math.unit(6, "feet"),
  22590. weight: math.unit(150, "lb"),
  22591. name: "Side",
  22592. image: {
  22593. source: "./media/characters/terrance-keayes/side.svg",
  22594. extra: 1.005,
  22595. bottom: 129.4 / 1544
  22596. }
  22597. },
  22598. back: {
  22599. height: math.unit(6, "feet"),
  22600. weight: math.unit(150, "lb"),
  22601. name: "Back",
  22602. image: {
  22603. source: "./media/characters/terrance-keayes/back.svg",
  22604. extra: 1.005,
  22605. bottom: 58.4 / 1557.3
  22606. }
  22607. },
  22608. dick: {
  22609. height: math.unit(6 * 0.208, "feet"),
  22610. name: "Dick",
  22611. image: {
  22612. source: "./media/characters/terrance-keayes/dick.svg"
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Canon Height",
  22619. height: math.unit(35, "miles"),
  22620. default: true
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(6, "feet"),
  22629. weight: math.unit(150, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/ofelia/front.svg",
  22633. extra: 1130/1117,
  22634. bottom: 91/1221
  22635. }
  22636. },
  22637. back: {
  22638. height: math.unit(6, "feet"),
  22639. weight: math.unit(150, "lb"),
  22640. name: "Back",
  22641. image: {
  22642. source: "./media/characters/ofelia/back.svg",
  22643. extra: 1172/1159,
  22644. bottom: 28/1200
  22645. }
  22646. },
  22647. maw: {
  22648. height: math.unit(1, "feet"),
  22649. name: "Maw",
  22650. image: {
  22651. source: "./media/characters/ofelia/maw.svg"
  22652. }
  22653. },
  22654. foot: {
  22655. height: math.unit(1.949, "feet"),
  22656. name: "Foot",
  22657. image: {
  22658. source: "./media/characters/ofelia/foot.svg"
  22659. }
  22660. },
  22661. },
  22662. [
  22663. {
  22664. name: "Canon Height",
  22665. height: math.unit(2000, "miles"),
  22666. default: true
  22667. },
  22668. ]
  22669. ))
  22670. characterMakers.push(() => makeCharacter(
  22671. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22672. {
  22673. front: {
  22674. height: math.unit(6, "feet"),
  22675. weight: math.unit(150, "lb"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/samuel/front.svg",
  22679. extra: 265 / 258,
  22680. bottom: 2 / 266.1566
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Macro",
  22687. height: math.unit(100, "feet"),
  22688. default: true
  22689. },
  22690. {
  22691. name: "Full Size",
  22692. height: math.unit(1000, "miles")
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22698. {
  22699. front: {
  22700. height: math.unit(6, "feet"),
  22701. weight: math.unit(300, "lb"),
  22702. name: "Front",
  22703. image: {
  22704. source: "./media/characters/beishir-kiel/front.svg",
  22705. extra: 569 / 547,
  22706. bottom: 41.9 / 609
  22707. }
  22708. },
  22709. maw: {
  22710. height: math.unit(6 * 0.202, "feet"),
  22711. name: "Maw",
  22712. image: {
  22713. source: "./media/characters/beishir-kiel/maw.svg"
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Macro",
  22720. height: math.unit(300, "feet"),
  22721. default: true
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(5 + 7/12, "feet"),
  22730. weight: math.unit(120, "lb"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/logan-grey/front.svg",
  22734. extra: 1836/1738,
  22735. bottom: 108/1944
  22736. }
  22737. },
  22738. back: {
  22739. height: math.unit(5 + 7/12, "feet"),
  22740. weight: math.unit(120, "lb"),
  22741. name: "Back",
  22742. image: {
  22743. source: "./media/characters/logan-grey/back.svg",
  22744. extra: 1880/1794,
  22745. bottom: 24/1904
  22746. }
  22747. },
  22748. frontSfw: {
  22749. height: math.unit(5 + 7/12, "feet"),
  22750. weight: math.unit(120, "lb"),
  22751. name: "Front (SFW)",
  22752. image: {
  22753. source: "./media/characters/logan-grey/front-sfw.svg",
  22754. extra: 1836/1738,
  22755. bottom: 108/1944
  22756. }
  22757. },
  22758. backSfw: {
  22759. height: math.unit(5 + 7/12, "feet"),
  22760. weight: math.unit(120, "lb"),
  22761. name: "Back (SFW)",
  22762. image: {
  22763. source: "./media/characters/logan-grey/back-sfw.svg",
  22764. extra: 1880/1794,
  22765. bottom: 24/1904
  22766. }
  22767. },
  22768. hands: {
  22769. height: math.unit(0.84, "feet"),
  22770. name: "Hands",
  22771. image: {
  22772. source: "./media/characters/logan-grey/hands.svg"
  22773. }
  22774. },
  22775. paws: {
  22776. height: math.unit(0.72, "feet"),
  22777. name: "Paws",
  22778. image: {
  22779. source: "./media/characters/logan-grey/paws.svg"
  22780. }
  22781. },
  22782. cock: {
  22783. height: math.unit(1.45, "feet"),
  22784. name: "Cock",
  22785. image: {
  22786. source: "./media/characters/logan-grey/cock.svg"
  22787. }
  22788. },
  22789. cockAlt: {
  22790. height: math.unit(1.437, "feet"),
  22791. name: "Cock (alt)",
  22792. image: {
  22793. source: "./media/characters/logan-grey/cock-alt.svg"
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(5 + 8 / 12, "feet")
  22801. },
  22802. {
  22803. name: "The 500 Foot Femboy",
  22804. height: math.unit(500, "feet"),
  22805. default: true
  22806. },
  22807. {
  22808. name: "Megmacro",
  22809. height: math.unit(20, "miles")
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(8 + 2 / 12, "feet"),
  22818. weight: math.unit(275, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/draganta/front.svg",
  22822. extra: 1177 / 1135,
  22823. bottom: 33.46 / 1212.1
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(8 + 6 / 12, "feet"),
  22831. default: true
  22832. },
  22833. {
  22834. name: "Macro",
  22835. height: math.unit(150, "feet")
  22836. },
  22837. {
  22838. name: "Megamacro",
  22839. height: math.unit(1000, "miles")
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(1.72, "m"),
  22848. weight: math.unit(80, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/voski/front.svg",
  22852. extra: 2076.22 / 2022.4,
  22853. bottom: 102.7 / 2177.3866
  22854. }
  22855. },
  22856. frontNsfw: {
  22857. height: math.unit(1.72, "m"),
  22858. weight: math.unit(80, "lb"),
  22859. name: "Front (NSFW)",
  22860. image: {
  22861. source: "./media/characters/voski/front-nsfw.svg",
  22862. extra: 2076.22 / 2022.4,
  22863. bottom: 102.7 / 2177.3866
  22864. }
  22865. },
  22866. back: {
  22867. height: math.unit(1.72, "m"),
  22868. weight: math.unit(80, "lb"),
  22869. name: "Back",
  22870. image: {
  22871. source: "./media/characters/voski/back.svg",
  22872. extra: 2104 / 2051,
  22873. bottom: 10.45 / 2113.63
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(1.72, "m")
  22881. },
  22882. {
  22883. name: "Macro",
  22884. height: math.unit(55, "m"),
  22885. default: true
  22886. },
  22887. {
  22888. name: "Macro+",
  22889. height: math.unit(300, "m")
  22890. },
  22891. {
  22892. name: "Macro++",
  22893. height: math.unit(700, "m")
  22894. },
  22895. {
  22896. name: "Macro+++",
  22897. height: math.unit(4500, "m")
  22898. },
  22899. {
  22900. name: "Macro++++",
  22901. height: math.unit(45, "km")
  22902. },
  22903. {
  22904. name: "Macro+++++",
  22905. height: math.unit(1220, "km")
  22906. },
  22907. ]
  22908. ))
  22909. characterMakers.push(() => makeCharacter(
  22910. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22911. {
  22912. front: {
  22913. height: math.unit(2.3, "m"),
  22914. weight: math.unit(304, "kg"),
  22915. name: "Front",
  22916. image: {
  22917. source: "./media/characters/icowom-lee/front.svg",
  22918. extra: 985 / 955,
  22919. bottom: 25.4 / 1012
  22920. }
  22921. },
  22922. fronttentacles: {
  22923. height: math.unit(2.3, "m"),
  22924. weight: math.unit(304, "kg"),
  22925. name: "Front-tentacles",
  22926. image: {
  22927. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22928. extra: 985 / 955,
  22929. bottom: 25.4 / 1012
  22930. }
  22931. },
  22932. back: {
  22933. height: math.unit(2.3, "m"),
  22934. weight: math.unit(304, "kg"),
  22935. name: "Back",
  22936. image: {
  22937. source: "./media/characters/icowom-lee/back.svg",
  22938. extra: 975 / 954,
  22939. bottom: 9.5 / 985
  22940. }
  22941. },
  22942. backtentacles: {
  22943. height: math.unit(2.3, "m"),
  22944. weight: math.unit(304, "kg"),
  22945. name: "Back-tentacles",
  22946. image: {
  22947. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22948. extra: 975 / 954,
  22949. bottom: 9.5 / 985
  22950. }
  22951. },
  22952. frontDressed: {
  22953. height: math.unit(2.3, "m"),
  22954. weight: math.unit(304, "kg"),
  22955. name: "Front (Dressed)",
  22956. image: {
  22957. source: "./media/characters/icowom-lee/front-dressed.svg",
  22958. extra: 3076 / 2933,
  22959. bottom: 51.4 / 3125.1889
  22960. }
  22961. },
  22962. rump: {
  22963. height: math.unit(0.776, "meters"),
  22964. name: "Rump",
  22965. image: {
  22966. source: "./media/characters/icowom-lee/rump.svg"
  22967. }
  22968. },
  22969. genitals: {
  22970. height: math.unit(0.78, "meters"),
  22971. name: "Genitals",
  22972. image: {
  22973. source: "./media/characters/icowom-lee/genitals.svg"
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(2.3, "meters"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Macro",
  22985. height: math.unit(94, "meters"),
  22986. default: true
  22987. },
  22988. ]
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22992. {
  22993. front: {
  22994. height: math.unit(22, "meters"),
  22995. weight: math.unit(21000, "kg"),
  22996. name: "Front",
  22997. image: {
  22998. source: "./media/characters/shock-diamond/front.svg",
  22999. extra: 2204 / 2053,
  23000. bottom: 65 / 2239.47
  23001. }
  23002. },
  23003. frontNude: {
  23004. height: math.unit(22, "meters"),
  23005. weight: math.unit(21000, "kg"),
  23006. name: "Front (Nude)",
  23007. image: {
  23008. source: "./media/characters/shock-diamond/front-nude.svg",
  23009. extra: 2514 / 2285,
  23010. bottom: 13 / 2527.56
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(3, "meters")
  23018. },
  23019. {
  23020. name: "Macro",
  23021. height: math.unit(22, "meters"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23028. {
  23029. front: {
  23030. height: math.unit(5 + 4 / 12, "feet"),
  23031. weight: math.unit(120, "lb"),
  23032. name: "Front",
  23033. image: {
  23034. source: "./media/characters/rory/front.svg",
  23035. extra: 1318/1241,
  23036. bottom: 42/1360
  23037. }
  23038. },
  23039. back: {
  23040. height: math.unit(5 + 4 / 12, "feet"),
  23041. weight: math.unit(120, "lb"),
  23042. name: "Back",
  23043. image: {
  23044. source: "./media/characters/rory/back.svg",
  23045. extra: 1318/1241,
  23046. bottom: 42/1360
  23047. }
  23048. },
  23049. butt: {
  23050. height: math.unit(1.74, "feet"),
  23051. name: "Butt",
  23052. image: {
  23053. source: "./media/characters/rory/butt.svg"
  23054. }
  23055. },
  23056. dick: {
  23057. height: math.unit(1.02, "feet"),
  23058. name: "Dick",
  23059. image: {
  23060. source: "./media/characters/rory/dick.svg"
  23061. }
  23062. },
  23063. paws: {
  23064. height: math.unit(1, "feet"),
  23065. name: "Paws",
  23066. image: {
  23067. source: "./media/characters/rory/paws.svg"
  23068. }
  23069. },
  23070. frontAlt: {
  23071. height: math.unit(5 + 4 / 12, "feet"),
  23072. weight: math.unit(120, "lb"),
  23073. name: "Front (Alt)",
  23074. image: {
  23075. source: "./media/characters/rory/front-alt.svg",
  23076. extra: 589 / 556,
  23077. bottom: 45.7 / 635.76
  23078. }
  23079. },
  23080. frontAltNude: {
  23081. height: math.unit(5 + 4 / 12, "feet"),
  23082. weight: math.unit(120, "lb"),
  23083. name: "Front (Alt, Nude)",
  23084. image: {
  23085. source: "./media/characters/rory/front-alt-nude.svg",
  23086. extra: 589 / 556,
  23087. bottom: 45.7 / 635.76
  23088. }
  23089. },
  23090. side: {
  23091. height: math.unit(5 + 4 / 12, "feet"),
  23092. weight: math.unit(120, "lb"),
  23093. name: "Side",
  23094. image: {
  23095. source: "./media/characters/rory/side.svg",
  23096. extra: 597 / 564,
  23097. bottom: 55 / 653
  23098. }
  23099. },
  23100. backAlt: {
  23101. height: math.unit(5 + 4 / 12, "feet"),
  23102. weight: math.unit(120, "lb"),
  23103. name: "Back (Alt)",
  23104. image: {
  23105. source: "./media/characters/rory/back-alt.svg",
  23106. extra: 620 / 585,
  23107. bottom: 8.86 / 630.43
  23108. }
  23109. },
  23110. dickAlt: {
  23111. height: math.unit(0.86, "feet"),
  23112. name: "Dick (Alt)",
  23113. image: {
  23114. source: "./media/characters/rory/dick-alt.svg"
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Normal",
  23121. height: math.unit(5 + 4 / 12, "feet"),
  23122. default: true
  23123. },
  23124. {
  23125. name: "Macro",
  23126. height: math.unit(100, "feet")
  23127. },
  23128. {
  23129. name: "Macro+",
  23130. height: math.unit(140, "feet")
  23131. },
  23132. {
  23133. name: "Macro++",
  23134. height: math.unit(300, "feet")
  23135. },
  23136. ]
  23137. ))
  23138. characterMakers.push(() => makeCharacter(
  23139. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23140. {
  23141. front: {
  23142. height: math.unit(5 + 9 / 12, "feet"),
  23143. weight: math.unit(190, "lb"),
  23144. name: "Front",
  23145. image: {
  23146. source: "./media/characters/sprisk/front.svg",
  23147. extra: 1225 / 1180,
  23148. bottom: 42.7 / 1266.4
  23149. }
  23150. },
  23151. frontNsfw: {
  23152. height: math.unit(5 + 9 / 12, "feet"),
  23153. weight: math.unit(190, "lb"),
  23154. name: "Front (NSFW)",
  23155. image: {
  23156. source: "./media/characters/sprisk/front-nsfw.svg",
  23157. extra: 1225 / 1180,
  23158. bottom: 42.7 / 1266.4
  23159. }
  23160. },
  23161. back: {
  23162. height: math.unit(5 + 9 / 12, "feet"),
  23163. weight: math.unit(190, "lb"),
  23164. name: "Back",
  23165. image: {
  23166. source: "./media/characters/sprisk/back.svg",
  23167. extra: 1247 / 1200,
  23168. bottom: 5.6 / 1253.04
  23169. }
  23170. },
  23171. },
  23172. [
  23173. {
  23174. name: "Tiny",
  23175. height: math.unit(2, "inches")
  23176. },
  23177. {
  23178. name: "Normal",
  23179. height: math.unit(5 + 9 / 12, "feet"),
  23180. default: true
  23181. },
  23182. {
  23183. name: "Mini Macro",
  23184. height: math.unit(18, "feet")
  23185. },
  23186. {
  23187. name: "Macro",
  23188. height: math.unit(100, "feet")
  23189. },
  23190. {
  23191. name: "MACRO",
  23192. height: math.unit(50, "miles")
  23193. },
  23194. {
  23195. name: "M A C R O",
  23196. height: math.unit(300, "miles")
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23202. {
  23203. side: {
  23204. height: math.unit(15.6, "meters"),
  23205. weight: math.unit(700000, "kg"),
  23206. name: "Side",
  23207. image: {
  23208. source: "./media/characters/bunsen/side.svg",
  23209. extra: 1644 / 358
  23210. }
  23211. },
  23212. foot: {
  23213. height: math.unit(1.611 * 1644 / 358, "meter"),
  23214. name: "Foot",
  23215. image: {
  23216. source: "./media/characters/bunsen/foot.svg"
  23217. }
  23218. },
  23219. },
  23220. [
  23221. {
  23222. name: "Small",
  23223. height: math.unit(10, "feet")
  23224. },
  23225. {
  23226. name: "Normal",
  23227. height: math.unit(15.6, "meters"),
  23228. default: true
  23229. },
  23230. ]
  23231. ))
  23232. characterMakers.push(() => makeCharacter(
  23233. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23234. {
  23235. front: {
  23236. height: math.unit(4 + 11 / 12, "feet"),
  23237. weight: math.unit(140, "lb"),
  23238. name: "Front",
  23239. image: {
  23240. source: "./media/characters/sesh/front.svg",
  23241. extra: 3420 / 3231,
  23242. bottom: 72 / 3949.5
  23243. }
  23244. },
  23245. },
  23246. [
  23247. {
  23248. name: "Normal",
  23249. height: math.unit(4 + 11 / 12, "feet")
  23250. },
  23251. {
  23252. name: "Grown",
  23253. height: math.unit(15, "feet"),
  23254. default: true
  23255. },
  23256. {
  23257. name: "Macro",
  23258. height: math.unit(1500, "feet")
  23259. },
  23260. {
  23261. name: "Megamacro",
  23262. height: math.unit(30, "miles")
  23263. },
  23264. {
  23265. name: "Continental",
  23266. height: math.unit(3000, "miles")
  23267. },
  23268. {
  23269. name: "Gravity Mass",
  23270. height: math.unit(300000, "miles")
  23271. },
  23272. {
  23273. name: "Planet Buster",
  23274. height: math.unit(30000000, "miles")
  23275. },
  23276. {
  23277. name: "Big",
  23278. height: math.unit(3000000000, "miles")
  23279. },
  23280. ]
  23281. ))
  23282. characterMakers.push(() => makeCharacter(
  23283. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23284. {
  23285. front: {
  23286. height: math.unit(9, "feet"),
  23287. weight: math.unit(350, "lb"),
  23288. name: "Front",
  23289. image: {
  23290. source: "./media/characters/pepper/front.svg",
  23291. extra: 1448 / 1312,
  23292. bottom: 9.4 / 1457.88
  23293. }
  23294. },
  23295. back: {
  23296. height: math.unit(9, "feet"),
  23297. weight: math.unit(350, "lb"),
  23298. name: "Back",
  23299. image: {
  23300. source: "./media/characters/pepper/back.svg",
  23301. extra: 1423 / 1300,
  23302. bottom: 4.6 / 1429
  23303. }
  23304. },
  23305. maw: {
  23306. height: math.unit(0.932, "feet"),
  23307. name: "Maw",
  23308. image: {
  23309. source: "./media/characters/pepper/maw.svg"
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Normal",
  23316. height: math.unit(9, "feet"),
  23317. default: true
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23323. {
  23324. front: {
  23325. height: math.unit(6, "feet"),
  23326. weight: math.unit(150, "lb"),
  23327. name: "Front",
  23328. image: {
  23329. source: "./media/characters/maelstrom/front.svg",
  23330. extra: 2100 / 1883,
  23331. bottom: 94 / 2196.7
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Less Kaiju",
  23338. height: math.unit(200, "feet")
  23339. },
  23340. {
  23341. name: "Kaiju",
  23342. height: math.unit(400, "feet"),
  23343. default: true
  23344. },
  23345. {
  23346. name: "Kaiju-er",
  23347. height: math.unit(600, "feet")
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(6 + 5 / 12, "feet"),
  23356. weight: math.unit(180, "lb"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/lexir/front.svg",
  23360. extra: 180 / 172,
  23361. bottom: 12 / 192
  23362. }
  23363. },
  23364. back: {
  23365. height: math.unit(6 + 5 / 12, "feet"),
  23366. weight: math.unit(180, "lb"),
  23367. name: "Back",
  23368. image: {
  23369. source: "./media/characters/lexir/back.svg",
  23370. extra: 183.84 / 175.5,
  23371. bottom: 3.1 / 187
  23372. }
  23373. },
  23374. },
  23375. [
  23376. {
  23377. name: "Very Smal",
  23378. height: math.unit(1, "nm")
  23379. },
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(6 + 5 / 12, "feet"),
  23383. default: true
  23384. },
  23385. {
  23386. name: "Macro",
  23387. height: math.unit(1, "mile")
  23388. },
  23389. {
  23390. name: "Megamacro",
  23391. height: math.unit(50, "miles")
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(1.5, "meters"),
  23400. weight: math.unit(100, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/maksio/front.svg",
  23404. extra: 1549 / 1531,
  23405. bottom: 123.7 / 1674.5429
  23406. }
  23407. },
  23408. back: {
  23409. height: math.unit(1.5, "meters"),
  23410. weight: math.unit(100, "lb"),
  23411. name: "Back",
  23412. image: {
  23413. source: "./media/characters/maksio/back.svg",
  23414. extra: 1541 / 1509,
  23415. bottom: 97 / 1639
  23416. }
  23417. },
  23418. hand: {
  23419. height: math.unit(0.621, "feet"),
  23420. name: "Hand",
  23421. image: {
  23422. source: "./media/characters/maksio/hand.svg"
  23423. }
  23424. },
  23425. foot: {
  23426. height: math.unit(1.611, "feet"),
  23427. name: "Foot",
  23428. image: {
  23429. source: "./media/characters/maksio/foot.svg"
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Shrunken",
  23436. height: math.unit(10, "cm")
  23437. },
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(150, "cm"),
  23441. default: true
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(100, "feet"),
  23450. name: "Front",
  23451. image: {
  23452. source: "./media/characters/erza-bear/front.svg",
  23453. extra: 2449 / 2390,
  23454. bottom: 46 / 2494
  23455. }
  23456. },
  23457. back: {
  23458. height: math.unit(100, "feet"),
  23459. name: "Back",
  23460. image: {
  23461. source: "./media/characters/erza-bear/back.svg",
  23462. extra: 2489 / 2430,
  23463. bottom: 85.4 / 2480
  23464. }
  23465. },
  23466. tail: {
  23467. height: math.unit(42, "feet"),
  23468. name: "Tail",
  23469. image: {
  23470. source: "./media/characters/erza-bear/tail.svg"
  23471. }
  23472. },
  23473. tongue: {
  23474. height: math.unit(8, "feet"),
  23475. name: "Tongue",
  23476. image: {
  23477. source: "./media/characters/erza-bear/tongue.svg"
  23478. }
  23479. },
  23480. dick: {
  23481. height: math.unit(10.5, "feet"),
  23482. name: "Dick",
  23483. image: {
  23484. source: "./media/characters/erza-bear/dick.svg"
  23485. }
  23486. },
  23487. dickVertical: {
  23488. height: math.unit(16.9, "feet"),
  23489. name: "Dick (Vertical)",
  23490. image: {
  23491. source: "./media/characters/erza-bear/dick-vertical.svg"
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Macro",
  23498. height: math.unit(100, "feet"),
  23499. default: true
  23500. },
  23501. ]
  23502. ))
  23503. characterMakers.push(() => makeCharacter(
  23504. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23505. {
  23506. front: {
  23507. height: math.unit(172, "cm"),
  23508. weight: math.unit(73, "kg"),
  23509. name: "Front",
  23510. image: {
  23511. source: "./media/characters/violet-flor/front.svg",
  23512. extra: 1530 / 1442,
  23513. bottom: 61.9 / 1588.8
  23514. }
  23515. },
  23516. back: {
  23517. height: math.unit(180, "cm"),
  23518. weight: math.unit(73, "kg"),
  23519. name: "Back",
  23520. image: {
  23521. source: "./media/characters/violet-flor/back.svg",
  23522. extra: 1692 / 1630,
  23523. bottom: 20 / 1712
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(172, "cm"),
  23531. default: true
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23537. {
  23538. front: {
  23539. height: math.unit(6, "feet"),
  23540. weight: math.unit(220, "lb"),
  23541. name: "Front",
  23542. image: {
  23543. source: "./media/characters/lynn-rhea/front.svg",
  23544. extra: 310 / 273
  23545. }
  23546. },
  23547. back: {
  23548. height: math.unit(6, "feet"),
  23549. weight: math.unit(220, "lb"),
  23550. name: "Back",
  23551. image: {
  23552. source: "./media/characters/lynn-rhea/back.svg",
  23553. extra: 310 / 273
  23554. }
  23555. },
  23556. dicks: {
  23557. height: math.unit(0.9, "feet"),
  23558. name: "Dicks",
  23559. image: {
  23560. source: "./media/characters/lynn-rhea/dicks.svg"
  23561. }
  23562. },
  23563. slit: {
  23564. height: math.unit(0.4, "feet"),
  23565. name: "Slit",
  23566. image: {
  23567. source: "./media/characters/lynn-rhea/slit.svg"
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Micro",
  23574. height: math.unit(1, "inch")
  23575. },
  23576. {
  23577. name: "Macro",
  23578. height: math.unit(60, "feet"),
  23579. default: true
  23580. },
  23581. {
  23582. name: "Megamacro",
  23583. height: math.unit(2, "miles")
  23584. },
  23585. {
  23586. name: "Gigamacro",
  23587. height: math.unit(3, "earths")
  23588. },
  23589. {
  23590. name: "Galactic",
  23591. height: math.unit(0.8, "galaxies")
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23597. {
  23598. front: {
  23599. height: math.unit(1600, "feet"),
  23600. weight: math.unit(85758785169, "kg"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/valathos/front.svg",
  23604. extra: 1451 / 1339
  23605. }
  23606. },
  23607. },
  23608. [
  23609. {
  23610. name: "Macro",
  23611. height: math.unit(1600, "feet"),
  23612. default: true
  23613. },
  23614. ]
  23615. ))
  23616. characterMakers.push(() => makeCharacter(
  23617. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23618. {
  23619. front: {
  23620. height: math.unit(7 + 5 / 12, "feet"),
  23621. weight: math.unit(300, "lb"),
  23622. name: "Front",
  23623. image: {
  23624. source: "./media/characters/azula/front.svg",
  23625. extra: 3208 / 2880,
  23626. bottom: 80.2 / 3277
  23627. }
  23628. },
  23629. back: {
  23630. height: math.unit(7 + 5 / 12, "feet"),
  23631. weight: math.unit(300, "lb"),
  23632. name: "Back",
  23633. image: {
  23634. source: "./media/characters/azula/back.svg",
  23635. extra: 3169 / 2822,
  23636. bottom: 150.6 / 3321
  23637. }
  23638. },
  23639. },
  23640. [
  23641. {
  23642. name: "Normal",
  23643. height: math.unit(7 + 5 / 12, "feet"),
  23644. default: true
  23645. },
  23646. {
  23647. name: "Big",
  23648. height: math.unit(20, "feet")
  23649. },
  23650. ]
  23651. ))
  23652. characterMakers.push(() => makeCharacter(
  23653. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23654. {
  23655. front: {
  23656. height: math.unit(5 + 1 / 12, "feet"),
  23657. weight: math.unit(110, "lb"),
  23658. name: "Front",
  23659. image: {
  23660. source: "./media/characters/rupert/front.svg",
  23661. extra: 1549 / 1495,
  23662. bottom: 54.2 / 1604.4
  23663. }
  23664. },
  23665. },
  23666. [
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(5 + 1 / 12, "feet"),
  23670. default: true
  23671. },
  23672. ]
  23673. ))
  23674. characterMakers.push(() => makeCharacter(
  23675. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23676. {
  23677. front: {
  23678. height: math.unit(8 + 4 / 12, "feet"),
  23679. weight: math.unit(350, "lb"),
  23680. name: "Front",
  23681. image: {
  23682. source: "./media/characters/sheera-castellar/front.svg",
  23683. extra: 1957 / 1894,
  23684. bottom: 26.97 / 1975.017
  23685. }
  23686. },
  23687. side: {
  23688. height: math.unit(8 + 4 / 12, "feet"),
  23689. weight: math.unit(350, "lb"),
  23690. name: "Side",
  23691. image: {
  23692. source: "./media/characters/sheera-castellar/side.svg",
  23693. extra: 1957 / 1894
  23694. }
  23695. },
  23696. back: {
  23697. height: math.unit(8 + 4 / 12, "feet"),
  23698. weight: math.unit(350, "lb"),
  23699. name: "Back",
  23700. image: {
  23701. source: "./media/characters/sheera-castellar/back.svg",
  23702. extra: 1957 / 1894
  23703. }
  23704. },
  23705. angled: {
  23706. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23707. weight: math.unit(350, "lb"),
  23708. name: "Angled",
  23709. image: {
  23710. source: "./media/characters/sheera-castellar/angled.svg",
  23711. extra: 1807 / 1707,
  23712. bottom: 68 / 1875
  23713. }
  23714. },
  23715. genitals: {
  23716. height: math.unit(2.2, "feet"),
  23717. name: "Genitals",
  23718. image: {
  23719. source: "./media/characters/sheera-castellar/genitals.svg"
  23720. }
  23721. },
  23722. taur: {
  23723. height: math.unit(10 + 6/12, "feet"),
  23724. name: "Taur",
  23725. image: {
  23726. source: "./media/characters/sheera-castellar/taur.svg",
  23727. extra: 2017/1909,
  23728. bottom: 185/2202
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(8 + 4 / 12, "feet")
  23736. },
  23737. {
  23738. name: "Macro",
  23739. height: math.unit(150, "feet"),
  23740. default: true
  23741. },
  23742. {
  23743. name: "Macro+",
  23744. height: math.unit(800, "feet")
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23750. {
  23751. front: {
  23752. height: math.unit(6, "feet"),
  23753. weight: math.unit(150, "lb"),
  23754. name: "Front",
  23755. image: {
  23756. source: "./media/characters/jaipur/front.svg",
  23757. extra: 3860 / 3731,
  23758. bottom: 287 / 4140
  23759. }
  23760. },
  23761. back: {
  23762. height: math.unit(6, "feet"),
  23763. weight: math.unit(150, "lb"),
  23764. name: "Back",
  23765. image: {
  23766. source: "./media/characters/jaipur/back.svg",
  23767. extra: 4060 / 3930,
  23768. bottom: 151 / 4200
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(1.85, "meters"),
  23776. default: true
  23777. },
  23778. {
  23779. name: "Macro",
  23780. height: math.unit(150, "meters")
  23781. },
  23782. {
  23783. name: "Macro+",
  23784. height: math.unit(0.5, "miles")
  23785. },
  23786. {
  23787. name: "Macro++",
  23788. height: math.unit(2.5, "miles")
  23789. },
  23790. {
  23791. name: "Macro+++",
  23792. height: math.unit(12, "miles")
  23793. },
  23794. {
  23795. name: "Macro++++",
  23796. height: math.unit(120, "miles")
  23797. },
  23798. {
  23799. name: "Macro+++++",
  23800. height: math.unit(1200, "miles")
  23801. },
  23802. ]
  23803. ))
  23804. characterMakers.push(() => makeCharacter(
  23805. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23806. {
  23807. front: {
  23808. height: math.unit(6, "feet"),
  23809. weight: math.unit(150, "lb"),
  23810. name: "Front",
  23811. image: {
  23812. source: "./media/characters/sheila-wolf/front.svg",
  23813. extra: 1931 / 1808,
  23814. bottom: 29.5 / 1960
  23815. }
  23816. },
  23817. dick: {
  23818. height: math.unit(1.464, "feet"),
  23819. name: "Dick",
  23820. image: {
  23821. source: "./media/characters/sheila-wolf/dick.svg"
  23822. }
  23823. },
  23824. muzzle: {
  23825. height: math.unit(0.513, "feet"),
  23826. name: "Muzzle",
  23827. image: {
  23828. source: "./media/characters/sheila-wolf/muzzle.svg"
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(70, "feet"),
  23836. default: true
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(32, "meters"),
  23845. weight: math.unit(300000, "kg"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/almor/front.svg",
  23849. extra: 1408 / 1322,
  23850. bottom: 94.6 / 1506.5
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Macro",
  23857. height: math.unit(32, "meters"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23864. {
  23865. front: {
  23866. height: math.unit(7, "feet"),
  23867. weight: math.unit(200, "lb"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/silver/front.svg",
  23871. extra: 472.1 / 450.5,
  23872. bottom: 26.5 / 499.424
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Normal",
  23879. height: math.unit(7, "feet"),
  23880. default: true
  23881. },
  23882. {
  23883. name: "Macro",
  23884. height: math.unit(800, "feet")
  23885. },
  23886. {
  23887. name: "Megamacro",
  23888. height: math.unit(250, "miles")
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23894. {
  23895. front: {
  23896. height: math.unit(6, "feet"),
  23897. weight: math.unit(150, "lb"),
  23898. name: "Front",
  23899. image: {
  23900. source: "./media/characters/pliskin/front.svg",
  23901. extra: 1469 / 1359,
  23902. bottom: 70 / 1540
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Micro",
  23909. height: math.unit(3, "inches")
  23910. },
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(5 + 11 / 12, "feet"),
  23914. default: true
  23915. },
  23916. {
  23917. name: "Macro",
  23918. height: math.unit(120, "feet")
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23924. {
  23925. front: {
  23926. height: math.unit(6, "feet"),
  23927. weight: math.unit(150, "lb"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/sammy/front.svg",
  23931. extra: 1193 / 1089,
  23932. bottom: 30.5 / 1226
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Macro",
  23939. height: math.unit(1700, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Examacro",
  23944. height: math.unit(2.5e9, "lightyears")
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(21, "meters"),
  23953. weight: math.unit(12, "tonnes"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/kuru/front.svg",
  23957. extra: 4301 / 3785,
  23958. bottom: 371.3 / 4691
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Macro",
  23965. height: math.unit(21, "meters"),
  23966. default: true
  23967. },
  23968. ]
  23969. ))
  23970. characterMakers.push(() => makeCharacter(
  23971. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23972. {
  23973. front: {
  23974. height: math.unit(23, "meters"),
  23975. weight: math.unit(12.2, "tonnes"),
  23976. name: "Front",
  23977. image: {
  23978. source: "./media/characters/rakka/front.svg",
  23979. extra: 4670 / 4169,
  23980. bottom: 301 / 4968.7
  23981. }
  23982. },
  23983. },
  23984. [
  23985. {
  23986. name: "Macro",
  23987. height: math.unit(23, "meters"),
  23988. default: true
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(6, "feet"),
  23997. weight: math.unit(150, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/rhys-feline/front.svg",
  24001. extra: 2488 / 2308,
  24002. bottom: 35.67 / 2519.19
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Really Small",
  24009. height: math.unit(1, "nm")
  24010. },
  24011. {
  24012. name: "Micro",
  24013. height: math.unit(4, "inches")
  24014. },
  24015. {
  24016. name: "Normal",
  24017. height: math.unit(4 + 10 / 12, "feet"),
  24018. default: true
  24019. },
  24020. {
  24021. name: "Macro",
  24022. height: math.unit(100, "feet")
  24023. },
  24024. {
  24025. name: "Megamacto",
  24026. height: math.unit(50, "miles")
  24027. },
  24028. ]
  24029. ))
  24030. characterMakers.push(() => makeCharacter(
  24031. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24032. {
  24033. side: {
  24034. height: math.unit(30, "feet"),
  24035. weight: math.unit(35000, "kg"),
  24036. name: "Side",
  24037. image: {
  24038. source: "./media/characters/alydar/side.svg",
  24039. extra: 234 / 222,
  24040. bottom: 6.5 / 241
  24041. }
  24042. },
  24043. front: {
  24044. height: math.unit(30, "feet"),
  24045. weight: math.unit(35000, "kg"),
  24046. name: "Front",
  24047. image: {
  24048. source: "./media/characters/alydar/front.svg",
  24049. extra: 223.37 / 210.2,
  24050. bottom: 22.3 / 246.76
  24051. }
  24052. },
  24053. top: {
  24054. height: math.unit(64.54, "feet"),
  24055. weight: math.unit(35000, "kg"),
  24056. name: "Top",
  24057. image: {
  24058. source: "./media/characters/alydar/top.svg"
  24059. }
  24060. },
  24061. anthro: {
  24062. height: math.unit(30, "feet"),
  24063. weight: math.unit(9000, "kg"),
  24064. name: "Anthro",
  24065. image: {
  24066. source: "./media/characters/alydar/anthro.svg",
  24067. extra: 432 / 421,
  24068. bottom: 7.18 / 440
  24069. }
  24070. },
  24071. maw: {
  24072. height: math.unit(11.693, "feet"),
  24073. name: "Maw",
  24074. image: {
  24075. source: "./media/characters/alydar/maw.svg"
  24076. }
  24077. },
  24078. head: {
  24079. height: math.unit(11.693, "feet"),
  24080. name: "Head",
  24081. image: {
  24082. source: "./media/characters/alydar/head.svg"
  24083. }
  24084. },
  24085. headAlt: {
  24086. height: math.unit(12.861, "feet"),
  24087. name: "Head (Alt)",
  24088. image: {
  24089. source: "./media/characters/alydar/head-alt.svg"
  24090. }
  24091. },
  24092. wing: {
  24093. height: math.unit(20.712, "feet"),
  24094. name: "Wing",
  24095. image: {
  24096. source: "./media/characters/alydar/wing.svg"
  24097. }
  24098. },
  24099. wingFeather: {
  24100. height: math.unit(9.662, "feet"),
  24101. name: "Wing Feather",
  24102. image: {
  24103. source: "./media/characters/alydar/wing-feather.svg"
  24104. }
  24105. },
  24106. countourFeather: {
  24107. height: math.unit(4.154, "feet"),
  24108. name: "Contour Feather",
  24109. image: {
  24110. source: "./media/characters/alydar/contour-feather.svg"
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Diplomatic",
  24117. height: math.unit(13, "feet"),
  24118. default: true
  24119. },
  24120. {
  24121. name: "Small",
  24122. height: math.unit(30, "feet")
  24123. },
  24124. {
  24125. name: "Normal",
  24126. height: math.unit(95, "feet"),
  24127. default: true
  24128. },
  24129. {
  24130. name: "Large",
  24131. height: math.unit(285, "feet")
  24132. },
  24133. {
  24134. name: "Incomprehensible",
  24135. height: math.unit(450, "megameters")
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24141. {
  24142. side: {
  24143. height: math.unit(11, "feet"),
  24144. weight: math.unit(1750, "kg"),
  24145. name: "Side",
  24146. image: {
  24147. source: "./media/characters/selicia/side.svg",
  24148. extra: 440 / 396,
  24149. bottom: 24.8 / 465.979
  24150. }
  24151. },
  24152. maw: {
  24153. height: math.unit(4.665, "feet"),
  24154. name: "Maw",
  24155. image: {
  24156. source: "./media/characters/selicia/maw.svg"
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Normal",
  24163. height: math.unit(11, "feet"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24170. {
  24171. side: {
  24172. height: math.unit(2 + 6 / 12, "feet"),
  24173. weight: math.unit(30, "lb"),
  24174. name: "Side",
  24175. image: {
  24176. source: "./media/characters/layla/side.svg",
  24177. extra: 244 / 188,
  24178. bottom: 18.2 / 262.1
  24179. }
  24180. },
  24181. back: {
  24182. height: math.unit(2 + 6 / 12, "feet"),
  24183. weight: math.unit(30, "lb"),
  24184. name: "Back",
  24185. image: {
  24186. source: "./media/characters/layla/back.svg",
  24187. extra: 308 / 241.5,
  24188. bottom: 8.9 / 316.8
  24189. }
  24190. },
  24191. cumming: {
  24192. height: math.unit(2 + 6 / 12, "feet"),
  24193. weight: math.unit(30, "lb"),
  24194. name: "Cumming",
  24195. image: {
  24196. source: "./media/characters/layla/cumming.svg",
  24197. extra: 342 / 279,
  24198. bottom: 595 / 938
  24199. }
  24200. },
  24201. dickFlaccid: {
  24202. height: math.unit(2.595, "feet"),
  24203. name: "Flaccid Genitals",
  24204. image: {
  24205. source: "./media/characters/layla/dick-flaccid.svg"
  24206. }
  24207. },
  24208. dickErect: {
  24209. height: math.unit(2.359, "feet"),
  24210. name: "Erect Genitals",
  24211. image: {
  24212. source: "./media/characters/layla/dick-erect.svg"
  24213. }
  24214. },
  24215. dragon: {
  24216. height: math.unit(40, "feet"),
  24217. name: "Dragon",
  24218. image: {
  24219. source: "./media/characters/layla/dragon.svg",
  24220. extra: 610/535,
  24221. bottom: 367/977
  24222. }
  24223. },
  24224. taur: {
  24225. height: math.unit(30, "feet"),
  24226. name: "Taur",
  24227. image: {
  24228. source: "./media/characters/layla/taur.svg",
  24229. extra: 1268/1199,
  24230. bottom: 112/1380
  24231. }
  24232. },
  24233. },
  24234. [
  24235. {
  24236. name: "Micro",
  24237. height: math.unit(1, "inch")
  24238. },
  24239. {
  24240. name: "Small",
  24241. height: math.unit(1, "foot")
  24242. },
  24243. {
  24244. name: "Normal",
  24245. height: math.unit(2 + 6 / 12, "feet"),
  24246. default: true
  24247. },
  24248. {
  24249. name: "Macro",
  24250. height: math.unit(200, "feet")
  24251. },
  24252. {
  24253. name: "Megamacro",
  24254. height: math.unit(1000, "miles")
  24255. },
  24256. {
  24257. name: "Planetary",
  24258. height: math.unit(8000, "miles")
  24259. },
  24260. {
  24261. name: "True Layla",
  24262. height: math.unit(200000 * 7, "multiverses")
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24268. {
  24269. back: {
  24270. height: math.unit(10.5, "feet"),
  24271. weight: math.unit(800, "lb"),
  24272. name: "Back",
  24273. image: {
  24274. source: "./media/characters/knox/back.svg",
  24275. extra: 1486 / 1089,
  24276. bottom: 107 / 1601.4
  24277. }
  24278. },
  24279. side: {
  24280. height: math.unit(10.5, "feet"),
  24281. weight: math.unit(800, "lb"),
  24282. name: "Side",
  24283. image: {
  24284. source: "./media/characters/knox/side.svg",
  24285. extra: 244 / 218,
  24286. bottom: 14 / 260
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Compact",
  24293. height: math.unit(10.5, "feet"),
  24294. default: true
  24295. },
  24296. {
  24297. name: "Dynamax",
  24298. height: math.unit(210, "feet")
  24299. },
  24300. {
  24301. name: "Full Macro",
  24302. height: math.unit(850, "feet")
  24303. },
  24304. ]
  24305. ))
  24306. characterMakers.push(() => makeCharacter(
  24307. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24308. {
  24309. front: {
  24310. height: math.unit(28, "feet"),
  24311. weight: math.unit(10500, "lb"),
  24312. name: "Front",
  24313. image: {
  24314. source: "./media/characters/kayda/front.svg",
  24315. extra: 1536 / 1428,
  24316. bottom: 68.7 / 1603
  24317. }
  24318. },
  24319. back: {
  24320. height: math.unit(28, "feet"),
  24321. weight: math.unit(10500, "lb"),
  24322. name: "Back",
  24323. image: {
  24324. source: "./media/characters/kayda/back.svg",
  24325. extra: 1557 / 1464,
  24326. bottom: 39.5 / 1597.49
  24327. }
  24328. },
  24329. dick: {
  24330. height: math.unit(3.858, "feet"),
  24331. name: "Dick",
  24332. image: {
  24333. source: "./media/characters/kayda/dick.svg"
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Macro",
  24340. height: math.unit(28, "feet"),
  24341. default: true
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(10 + 11 / 12, "feet"),
  24350. weight: math.unit(1400, "lb"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/brian/front.svg",
  24354. extra: 737 / 692,
  24355. bottom: 55.4 / 785
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(10 + 11 / 12, "feet"),
  24363. default: true
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24369. {
  24370. front: {
  24371. height: math.unit(5 + 8 / 12, "feet"),
  24372. weight: math.unit(140, "lb"),
  24373. name: "Front",
  24374. image: {
  24375. source: "./media/characters/khemri/front.svg",
  24376. extra: 4780 / 4059,
  24377. bottom: 80.1 / 4859.25
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Micro",
  24384. height: math.unit(6, "inches")
  24385. },
  24386. {
  24387. name: "Normal",
  24388. height: math.unit(5 + 8 / 12, "feet"),
  24389. default: true
  24390. },
  24391. ]
  24392. ))
  24393. characterMakers.push(() => makeCharacter(
  24394. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24395. {
  24396. front: {
  24397. height: math.unit(13, "feet"),
  24398. weight: math.unit(1700, "lb"),
  24399. name: "Front",
  24400. image: {
  24401. source: "./media/characters/felix-braveheart/front.svg",
  24402. extra: 1222 / 1157,
  24403. bottom: 53.2 / 1280
  24404. }
  24405. },
  24406. back: {
  24407. height: math.unit(13, "feet"),
  24408. weight: math.unit(1700, "lb"),
  24409. name: "Back",
  24410. image: {
  24411. source: "./media/characters/felix-braveheart/back.svg",
  24412. extra: 1277 / 1203,
  24413. bottom: 50.2 / 1327
  24414. }
  24415. },
  24416. feral: {
  24417. height: math.unit(6, "feet"),
  24418. weight: math.unit(400, "lb"),
  24419. name: "Feral",
  24420. image: {
  24421. source: "./media/characters/felix-braveheart/feral.svg",
  24422. extra: 682 / 625,
  24423. bottom: 6.9 / 688
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(13, "feet"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24437. {
  24438. side: {
  24439. height: math.unit(5 + 11 / 12, "feet"),
  24440. weight: math.unit(1400, "lb"),
  24441. name: "Side",
  24442. image: {
  24443. source: "./media/characters/shadow-blade/side.svg",
  24444. extra: 1726 / 1267,
  24445. bottom: 58.4 / 1785
  24446. }
  24447. },
  24448. },
  24449. [
  24450. {
  24451. name: "Normal",
  24452. height: math.unit(5 + 11 / 12, "feet"),
  24453. default: true
  24454. },
  24455. ]
  24456. ))
  24457. characterMakers.push(() => makeCharacter(
  24458. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24459. {
  24460. front: {
  24461. height: math.unit(1 + 6 / 12, "feet"),
  24462. weight: math.unit(25, "lb"),
  24463. name: "Front",
  24464. image: {
  24465. source: "./media/characters/karla-halldor/front.svg",
  24466. extra: 1459 / 1383,
  24467. bottom: 12 / 1472
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(1 + 6 / 12, "feet"),
  24475. default: true
  24476. },
  24477. ]
  24478. ))
  24479. characterMakers.push(() => makeCharacter(
  24480. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24481. {
  24482. front: {
  24483. height: math.unit(6 + 2 / 12, "feet"),
  24484. weight: math.unit(160, "lb"),
  24485. name: "Front",
  24486. image: {
  24487. source: "./media/characters/ariam/front.svg",
  24488. extra: 1073/976,
  24489. bottom: 52/1125
  24490. }
  24491. },
  24492. back: {
  24493. height: math.unit(6 + 2/12, "feet"),
  24494. weight: math.unit(160, "lb"),
  24495. name: "Back",
  24496. image: {
  24497. source: "./media/characters/ariam/back.svg",
  24498. extra: 1103/1023,
  24499. bottom: 9/1112
  24500. }
  24501. },
  24502. dressed: {
  24503. height: math.unit(6 + 2/12, "feet"),
  24504. weight: math.unit(160, "lb"),
  24505. name: "Dressed",
  24506. image: {
  24507. source: "./media/characters/ariam/dressed.svg",
  24508. extra: 1099/1009,
  24509. bottom: 25/1124
  24510. }
  24511. },
  24512. squatting: {
  24513. height: math.unit(4.1, "feet"),
  24514. weight: math.unit(160, "lb"),
  24515. name: "Squatting",
  24516. image: {
  24517. source: "./media/characters/ariam/squatting.svg",
  24518. extra: 2617 / 2112,
  24519. bottom: 61.2 / 2681,
  24520. }
  24521. },
  24522. },
  24523. [
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(6 + 2 / 12, "feet"),
  24527. default: true
  24528. },
  24529. {
  24530. name: "Normal+",
  24531. height: math.unit(4, "meters")
  24532. },
  24533. {
  24534. name: "Macro",
  24535. height: math.unit(50, "meters")
  24536. },
  24537. {
  24538. name: "Macro+",
  24539. height: math.unit(100, "meters")
  24540. },
  24541. {
  24542. name: "Megamacro",
  24543. height: math.unit(20, "km")
  24544. },
  24545. {
  24546. name: "Caretaker",
  24547. height: math.unit(444, "megameters")
  24548. },
  24549. ]
  24550. ))
  24551. characterMakers.push(() => makeCharacter(
  24552. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24553. {
  24554. front: {
  24555. height: math.unit(1.67, "meters"),
  24556. weight: math.unit(140, "lb"),
  24557. name: "Front",
  24558. image: {
  24559. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24560. extra: 438 / 410,
  24561. bottom: 0.75 / 439
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Shrunken",
  24568. height: math.unit(7.6, "cm")
  24569. },
  24570. {
  24571. name: "Human Scale",
  24572. height: math.unit(1.67, "meters")
  24573. },
  24574. {
  24575. name: "Wolxi Scale",
  24576. height: math.unit(36.7, "meters"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24583. {
  24584. front: {
  24585. height: math.unit(1.73, "meters"),
  24586. weight: math.unit(240, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/izue-two-mothers/front.svg",
  24590. extra: 469 / 437,
  24591. bottom: 1.24 / 470.6
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Shrunken",
  24598. height: math.unit(7.86, "cm")
  24599. },
  24600. {
  24601. name: "Human Scale",
  24602. height: math.unit(1.73, "meters")
  24603. },
  24604. {
  24605. name: "Wolxi Scale",
  24606. height: math.unit(38, "meters"),
  24607. default: true
  24608. },
  24609. ]
  24610. ))
  24611. characterMakers.push(() => makeCharacter(
  24612. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24613. {
  24614. front: {
  24615. height: math.unit(1.55, "meters"),
  24616. weight: math.unit(120, "lb"),
  24617. name: "Front",
  24618. image: {
  24619. source: "./media/characters/teeku-love-shack/front.svg",
  24620. extra: 387 / 362,
  24621. bottom: 1.51 / 388
  24622. }
  24623. },
  24624. },
  24625. [
  24626. {
  24627. name: "Shrunken",
  24628. height: math.unit(7, "cm")
  24629. },
  24630. {
  24631. name: "Human Scale",
  24632. height: math.unit(1.55, "meters")
  24633. },
  24634. {
  24635. name: "Wolxi Scale",
  24636. height: math.unit(34.1, "meters"),
  24637. default: true
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24643. {
  24644. front: {
  24645. height: math.unit(1.83, "meters"),
  24646. weight: math.unit(135, "lb"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/dejma-the-red/front.svg",
  24650. extra: 480 / 458,
  24651. bottom: 1.8 / 482
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Shrunken",
  24658. height: math.unit(8.3, "cm")
  24659. },
  24660. {
  24661. name: "Human Scale",
  24662. height: math.unit(1.83, "meters")
  24663. },
  24664. {
  24665. name: "Wolxi Scale",
  24666. height: math.unit(40, "meters"),
  24667. default: true
  24668. },
  24669. ]
  24670. ))
  24671. characterMakers.push(() => makeCharacter(
  24672. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24673. {
  24674. front: {
  24675. height: math.unit(1.78, "meters"),
  24676. weight: math.unit(65, "kg"),
  24677. name: "Front",
  24678. image: {
  24679. source: "./media/characters/aki/front.svg",
  24680. extra: 452 / 415
  24681. }
  24682. },
  24683. frontNsfw: {
  24684. height: math.unit(1.78, "meters"),
  24685. weight: math.unit(65, "kg"),
  24686. name: "Front (NSFW)",
  24687. image: {
  24688. source: "./media/characters/aki/front-nsfw.svg",
  24689. extra: 452 / 415
  24690. }
  24691. },
  24692. back: {
  24693. height: math.unit(1.78, "meters"),
  24694. weight: math.unit(65, "kg"),
  24695. name: "Back",
  24696. image: {
  24697. source: "./media/characters/aki/back.svg",
  24698. extra: 452 / 415
  24699. }
  24700. },
  24701. rump: {
  24702. height: math.unit(2.05, "feet"),
  24703. name: "Rump",
  24704. image: {
  24705. source: "./media/characters/aki/rump.svg"
  24706. }
  24707. },
  24708. dick: {
  24709. height: math.unit(0.95, "feet"),
  24710. name: "Dick",
  24711. image: {
  24712. source: "./media/characters/aki/dick.svg"
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Micro",
  24719. height: math.unit(15, "cm")
  24720. },
  24721. {
  24722. name: "Normal",
  24723. height: math.unit(178, "cm"),
  24724. default: true
  24725. },
  24726. {
  24727. name: "Macro",
  24728. height: math.unit(214, "m")
  24729. },
  24730. {
  24731. name: "Macro+",
  24732. height: math.unit(534, "m")
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24738. {
  24739. front: {
  24740. height: math.unit(5 + 5 / 12, "feet"),
  24741. weight: math.unit(120, "lb"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/ari/front.svg",
  24745. extra: 714.5 / 682,
  24746. bottom: 8 / 722.5
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(5 + 5 / 12, "feet")
  24754. },
  24755. {
  24756. name: "Macro",
  24757. height: math.unit(100, "feet"),
  24758. default: true
  24759. },
  24760. {
  24761. name: "Megamacro",
  24762. height: math.unit(100, "miles")
  24763. },
  24764. {
  24765. name: "Gigamacro",
  24766. height: math.unit(80000, "miles")
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24772. {
  24773. side: {
  24774. height: math.unit(9, "feet"),
  24775. weight: math.unit(400, "kg"),
  24776. name: "Side",
  24777. image: {
  24778. source: "./media/characters/bolt/side.svg",
  24779. extra: 1126 / 896,
  24780. bottom: 60 / 1187.3,
  24781. }
  24782. },
  24783. },
  24784. [
  24785. {
  24786. name: "Micro",
  24787. height: math.unit(5, "inches")
  24788. },
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(9, "feet"),
  24792. default: true
  24793. },
  24794. {
  24795. name: "Macro",
  24796. height: math.unit(700, "feet")
  24797. },
  24798. {
  24799. name: "Max Size",
  24800. height: math.unit(1.52e22, "yottameters")
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(4.53, "meters"),
  24809. weight: math.unit(3, "tons"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/draekon-sylviar/front.svg",
  24813. extra: 1228 / 1068,
  24814. bottom: 41 / 1270
  24815. }
  24816. },
  24817. tail: {
  24818. height: math.unit(1.772, "meter"),
  24819. name: "Tail",
  24820. image: {
  24821. source: "./media/characters/draekon-sylviar/tail.svg"
  24822. }
  24823. },
  24824. head: {
  24825. height: math.unit(1.331, "meter"),
  24826. name: "Head",
  24827. image: {
  24828. source: "./media/characters/draekon-sylviar/head.svg"
  24829. }
  24830. },
  24831. hand: {
  24832. height: math.unit(0.564, "meter"),
  24833. name: "Hand",
  24834. image: {
  24835. source: "./media/characters/draekon-sylviar/hand.svg"
  24836. }
  24837. },
  24838. foot: {
  24839. height: math.unit(0.621, "meter"),
  24840. name: "Foot",
  24841. image: {
  24842. source: "./media/characters/draekon-sylviar/foot.svg",
  24843. bottom: 32 / 324
  24844. }
  24845. },
  24846. dick: {
  24847. height: math.unit(61, "cm"),
  24848. name: "Dick",
  24849. image: {
  24850. source: "./media/characters/draekon-sylviar/dick.svg"
  24851. }
  24852. },
  24853. dickseparated: {
  24854. height: math.unit(61, "cm"),
  24855. name: "Dick-separated",
  24856. image: {
  24857. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Small",
  24864. height: math.unit(4.53 / 2, "meters"),
  24865. default: true
  24866. },
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(4.53, "meters"),
  24870. default: true
  24871. },
  24872. {
  24873. name: "Large",
  24874. height: math.unit(4.53 * 2, "meters"),
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(6 + 2 / 12, "feet"),
  24883. weight: math.unit(180, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/brawler/front.svg",
  24887. extra: 3301 / 3027,
  24888. bottom: 138 / 3439
  24889. }
  24890. },
  24891. },
  24892. [
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(6 + 2 / 12, "feet"),
  24896. default: true
  24897. },
  24898. ]
  24899. ))
  24900. characterMakers.push(() => makeCharacter(
  24901. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24902. {
  24903. front: {
  24904. height: math.unit(11, "feet"),
  24905. weight: math.unit(1000, "lb"),
  24906. name: "Front",
  24907. image: {
  24908. source: "./media/characters/alex/front.svg",
  24909. bottom: 44.5 / 620
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Micro",
  24916. height: math.unit(5, "inches")
  24917. },
  24918. {
  24919. name: "Normal",
  24920. height: math.unit(11, "feet"),
  24921. default: true
  24922. },
  24923. {
  24924. name: "Macro",
  24925. height: math.unit(9.5e9, "feet")
  24926. },
  24927. {
  24928. name: "Max Size",
  24929. height: math.unit(1.4e283, "yottameters")
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24935. {
  24936. female: {
  24937. height: math.unit(29.9, "m"),
  24938. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24939. name: "Female",
  24940. image: {
  24941. source: "./media/characters/zenari/female.svg",
  24942. extra: 3281.6 / 3217,
  24943. bottom: 72.2 / 3353
  24944. }
  24945. },
  24946. male: {
  24947. height: math.unit(27.7, "m"),
  24948. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24949. name: "Male",
  24950. image: {
  24951. source: "./media/characters/zenari/male.svg",
  24952. extra: 3008 / 2991,
  24953. bottom: 54.6 / 3069
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Macro",
  24960. height: math.unit(29.7, "meters"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24967. {
  24968. female: {
  24969. height: math.unit(23.8, "m"),
  24970. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24971. name: "Female",
  24972. image: {
  24973. source: "./media/characters/mactarian/female.svg",
  24974. extra: 2662 / 2569,
  24975. bottom: 73 / 2736
  24976. }
  24977. },
  24978. male: {
  24979. height: math.unit(23.8, "m"),
  24980. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24981. name: "Male",
  24982. image: {
  24983. source: "./media/characters/mactarian/male.svg",
  24984. extra: 2673 / 2600,
  24985. bottom: 76 / 2750
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Macro",
  24992. height: math.unit(23.8, "meters"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24999. {
  25000. female: {
  25001. height: math.unit(19.3, "m"),
  25002. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25003. name: "Female",
  25004. image: {
  25005. source: "./media/characters/umok/female.svg",
  25006. extra: 2186 / 2078,
  25007. bottom: 87 / 2277
  25008. }
  25009. },
  25010. male: {
  25011. height: math.unit(19.5, "m"),
  25012. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25013. name: "Male",
  25014. image: {
  25015. source: "./media/characters/umok/male.svg",
  25016. extra: 2233 / 2140,
  25017. bottom: 24.4 / 2258
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Macro",
  25024. height: math.unit(19.3, "meters"),
  25025. default: true
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25031. {
  25032. female: {
  25033. height: math.unit(26.15, "m"),
  25034. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25035. name: "Female",
  25036. image: {
  25037. source: "./media/characters/joraxian/female.svg",
  25038. extra: 2912 / 2824,
  25039. bottom: 36 / 2956
  25040. }
  25041. },
  25042. male: {
  25043. height: math.unit(25.4, "m"),
  25044. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25045. name: "Male",
  25046. image: {
  25047. source: "./media/characters/joraxian/male.svg",
  25048. extra: 2877 / 2721,
  25049. bottom: 82 / 2967
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Macro",
  25056. height: math.unit(26.15, "meters"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25063. {
  25064. female: {
  25065. height: math.unit(21.6, "m"),
  25066. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25067. name: "Female",
  25068. image: {
  25069. source: "./media/characters/sthara/female.svg",
  25070. extra: 2516 / 2347,
  25071. bottom: 21.5 / 2537
  25072. }
  25073. },
  25074. male: {
  25075. height: math.unit(24, "m"),
  25076. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25077. name: "Male",
  25078. image: {
  25079. source: "./media/characters/sthara/male.svg",
  25080. extra: 2732 / 2607,
  25081. bottom: 23 / 2732
  25082. }
  25083. },
  25084. },
  25085. [
  25086. {
  25087. name: "Macro",
  25088. height: math.unit(21.6, "meters"),
  25089. default: true
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(6 + 4 / 12, "feet"),
  25098. weight: math.unit(175, "lb"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/luka-bryzant/front.svg",
  25102. extra: 311 / 289,
  25103. bottom: 4 / 315
  25104. }
  25105. },
  25106. back: {
  25107. height: math.unit(6 + 4 / 12, "feet"),
  25108. weight: math.unit(175, "lb"),
  25109. name: "Back",
  25110. image: {
  25111. source: "./media/characters/luka-bryzant/back.svg",
  25112. extra: 311 / 289,
  25113. bottom: 3.8 / 313.7
  25114. }
  25115. },
  25116. },
  25117. [
  25118. {
  25119. name: "Micro",
  25120. height: math.unit(10, "inches")
  25121. },
  25122. {
  25123. name: "Normal",
  25124. height: math.unit(6 + 4 / 12, "feet"),
  25125. default: true
  25126. },
  25127. {
  25128. name: "Large",
  25129. height: math.unit(12, "feet")
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(5 + 7 / 12, "feet"),
  25138. weight: math.unit(185, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/aman-aquila/front.svg",
  25142. extra: 1013 / 976,
  25143. bottom: 45.6 / 1057
  25144. }
  25145. },
  25146. side: {
  25147. height: math.unit(5 + 7 / 12, "feet"),
  25148. weight: math.unit(185, "lb"),
  25149. name: "Side",
  25150. image: {
  25151. source: "./media/characters/aman-aquila/side.svg",
  25152. extra: 1054 / 1011,
  25153. bottom: 15 / 1070
  25154. }
  25155. },
  25156. back: {
  25157. height: math.unit(5 + 7 / 12, "feet"),
  25158. weight: math.unit(185, "lb"),
  25159. name: "Back",
  25160. image: {
  25161. source: "./media/characters/aman-aquila/back.svg",
  25162. extra: 1026 / 970,
  25163. bottom: 12 / 1039
  25164. }
  25165. },
  25166. head: {
  25167. height: math.unit(1.211, "feet"),
  25168. name: "Head",
  25169. image: {
  25170. source: "./media/characters/aman-aquila/head.svg",
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Minimicro",
  25177. height: math.unit(0.057, "inches")
  25178. },
  25179. {
  25180. name: "Micro",
  25181. height: math.unit(7, "inches")
  25182. },
  25183. {
  25184. name: "Mini",
  25185. height: math.unit(3 + 7 / 12, "feet")
  25186. },
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(5 + 7 / 12, "feet"),
  25190. default: true
  25191. },
  25192. {
  25193. name: "Macro",
  25194. height: math.unit(157 + 7 / 12, "feet")
  25195. },
  25196. {
  25197. name: "Megamacro",
  25198. height: math.unit(1557 + 7 / 12, "feet")
  25199. },
  25200. {
  25201. name: "Gigamacro",
  25202. height: math.unit(15557 + 7 / 12, "feet")
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25208. {
  25209. front: {
  25210. height: math.unit(3 + 2 / 12, "inches"),
  25211. weight: math.unit(0.3, "ounces"),
  25212. name: "Front",
  25213. image: {
  25214. source: "./media/characters/hiphae/front.svg",
  25215. extra: 1931 / 1683,
  25216. bottom: 24 / 1955
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(3 + 1 / 2, "inches"),
  25224. default: true
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(5 + 10 / 12, "feet"),
  25233. weight: math.unit(165, "lb"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/nicky/front.svg",
  25237. extra: 3144 / 2886,
  25238. bottom: 45.6 / 3192
  25239. }
  25240. },
  25241. back: {
  25242. height: math.unit(5 + 10 / 12, "feet"),
  25243. weight: math.unit(165, "lb"),
  25244. name: "Back",
  25245. image: {
  25246. source: "./media/characters/nicky/back.svg",
  25247. extra: 3055 / 2804,
  25248. bottom: 28.4 / 3087
  25249. }
  25250. },
  25251. frontclothed: {
  25252. height: math.unit(5 + 10 / 12, "feet"),
  25253. weight: math.unit(165, "lb"),
  25254. name: "Front-clothed",
  25255. image: {
  25256. source: "./media/characters/nicky/front-clothed.svg",
  25257. extra: 3184.9 / 2926.9,
  25258. bottom: 86.5 / 3239.9
  25259. }
  25260. },
  25261. foot: {
  25262. height: math.unit(1.16, "feet"),
  25263. name: "Foot",
  25264. image: {
  25265. source: "./media/characters/nicky/foot.svg"
  25266. }
  25267. },
  25268. feet: {
  25269. height: math.unit(1.34, "feet"),
  25270. name: "Feet",
  25271. image: {
  25272. source: "./media/characters/nicky/feet.svg"
  25273. }
  25274. },
  25275. maw: {
  25276. height: math.unit(0.9, "feet"),
  25277. name: "Maw",
  25278. image: {
  25279. source: "./media/characters/nicky/maw.svg"
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Normal",
  25286. height: math.unit(5 + 10 / 12, "feet"),
  25287. default: true
  25288. },
  25289. {
  25290. name: "Macro",
  25291. height: math.unit(60, "feet")
  25292. },
  25293. {
  25294. name: "Megamacro",
  25295. height: math.unit(1, "mile")
  25296. },
  25297. ]
  25298. ))
  25299. characterMakers.push(() => makeCharacter(
  25300. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25301. {
  25302. side: {
  25303. height: math.unit(10, "feet"),
  25304. weight: math.unit(600, "lb"),
  25305. name: "Side",
  25306. image: {
  25307. source: "./media/characters/blair/side.svg",
  25308. bottom: 16.6 / 475,
  25309. extra: 458 / 431
  25310. }
  25311. },
  25312. },
  25313. [
  25314. {
  25315. name: "Micro",
  25316. height: math.unit(8, "inches")
  25317. },
  25318. {
  25319. name: "Normal",
  25320. height: math.unit(10, "feet"),
  25321. default: true
  25322. },
  25323. {
  25324. name: "Macro",
  25325. height: math.unit(180, "feet")
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(5 + 4 / 12, "feet"),
  25334. weight: math.unit(125, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/fisher/front.svg",
  25338. extra: 444 / 390,
  25339. bottom: 2 / 444.8
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Micro",
  25346. height: math.unit(4, "inches")
  25347. },
  25348. {
  25349. name: "Normal",
  25350. height: math.unit(5 + 4 / 12, "feet"),
  25351. default: true
  25352. },
  25353. {
  25354. name: "Macro",
  25355. height: math.unit(100, "feet")
  25356. },
  25357. ]
  25358. ))
  25359. characterMakers.push(() => makeCharacter(
  25360. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25361. {
  25362. front: {
  25363. height: math.unit(6.71, "feet"),
  25364. weight: math.unit(200, "lb"),
  25365. capacity: math.unit(1000000, "people"),
  25366. name: "Front",
  25367. image: {
  25368. source: "./media/characters/gliss/front.svg",
  25369. extra: 2347 / 2231,
  25370. bottom: 113 / 2462
  25371. }
  25372. },
  25373. hammerspaceSize: {
  25374. height: math.unit(6.71 * 717, "feet"),
  25375. weight: math.unit(200, "lb"),
  25376. capacity: math.unit(1000000, "people"),
  25377. name: "Hammerspace Size",
  25378. image: {
  25379. source: "./media/characters/gliss/front.svg",
  25380. extra: 2347 / 2231,
  25381. bottom: 113 / 2462
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(6.71, "feet"),
  25389. default: true
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25395. {
  25396. side: {
  25397. height: math.unit(1.44, "m"),
  25398. weight: math.unit(80, "kg"),
  25399. name: "Side",
  25400. image: {
  25401. source: "./media/characters/dune-anderson/side.svg",
  25402. bottom: 49 / 1426
  25403. }
  25404. },
  25405. },
  25406. [
  25407. {
  25408. name: "Wolf-sized",
  25409. height: math.unit(1.44, "meters")
  25410. },
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(5.05, "meters"),
  25414. default: true
  25415. },
  25416. {
  25417. name: "Big",
  25418. height: math.unit(14.4, "meters")
  25419. },
  25420. {
  25421. name: "Huge",
  25422. height: math.unit(144, "meters")
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25428. {
  25429. front: {
  25430. height: math.unit(7, "feet"),
  25431. weight: math.unit(425, "lb"),
  25432. name: "Front",
  25433. image: {
  25434. source: "./media/characters/hind/front.svg",
  25435. extra: 2091 / 1860,
  25436. bottom: 129 / 2220
  25437. }
  25438. },
  25439. back: {
  25440. height: math.unit(7, "feet"),
  25441. weight: math.unit(425, "lb"),
  25442. name: "Back",
  25443. image: {
  25444. source: "./media/characters/hind/back.svg",
  25445. extra: 2091 / 1860,
  25446. bottom: 24.6 / 2309
  25447. }
  25448. },
  25449. tail: {
  25450. height: math.unit(2.8, "feet"),
  25451. name: "Tail",
  25452. image: {
  25453. source: "./media/characters/hind/tail.svg"
  25454. }
  25455. },
  25456. head: {
  25457. height: math.unit(2.55, "feet"),
  25458. name: "Head",
  25459. image: {
  25460. source: "./media/characters/hind/head.svg"
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "XS",
  25467. height: math.unit(0.7, "feet")
  25468. },
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(7, "feet"),
  25472. default: true
  25473. },
  25474. {
  25475. name: "XL",
  25476. height: math.unit(70, "feet")
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(2.1, "meters"),
  25485. weight: math.unit(150, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/tharquench-sizestealer/front.svg",
  25489. extra: 1605/1470,
  25490. bottom: 36/1641
  25491. }
  25492. },
  25493. frontAlt: {
  25494. height: math.unit(2.1, "meters"),
  25495. weight: math.unit(150, "lb"),
  25496. name: "Front (Alt)",
  25497. image: {
  25498. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25499. extra: 2318 / 2063,
  25500. bottom: 93.4 / 2410
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Nano",
  25507. height: math.unit(1, "mm")
  25508. },
  25509. {
  25510. name: "Micro",
  25511. height: math.unit(1, "cm")
  25512. },
  25513. {
  25514. name: "Normal",
  25515. height: math.unit(2.1, "meters"),
  25516. default: true
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25522. {
  25523. front: {
  25524. height: math.unit(7 + 5 / 12, "feet"),
  25525. weight: math.unit(357, "lb"),
  25526. name: "Front",
  25527. image: {
  25528. source: "./media/characters/solex-draconov/front.svg",
  25529. extra: 1993 / 1865,
  25530. bottom: 117 / 2111
  25531. }
  25532. },
  25533. },
  25534. [
  25535. {
  25536. name: "Natural Height",
  25537. height: math.unit(7 + 5 / 12, "feet"),
  25538. default: true
  25539. },
  25540. {
  25541. name: "Macro",
  25542. height: math.unit(350, "feet")
  25543. },
  25544. {
  25545. name: "Macro+",
  25546. height: math.unit(1000, "feet")
  25547. },
  25548. {
  25549. name: "Megamacro",
  25550. height: math.unit(20, "km")
  25551. },
  25552. {
  25553. name: "Megamacro+",
  25554. height: math.unit(1000, "km")
  25555. },
  25556. {
  25557. name: "Gigamacro",
  25558. height: math.unit(2.5, "Gm")
  25559. },
  25560. {
  25561. name: "Teramacro",
  25562. height: math.unit(15, "Tm")
  25563. },
  25564. {
  25565. name: "Galactic",
  25566. height: math.unit(30, "Zm")
  25567. },
  25568. {
  25569. name: "Universal",
  25570. height: math.unit(21000, "Ym")
  25571. },
  25572. {
  25573. name: "Omniversal",
  25574. height: math.unit(9.861e50, "Ym")
  25575. },
  25576. {
  25577. name: "Existential",
  25578. height: math.unit(1e300, "meters")
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25584. {
  25585. side: {
  25586. height: math.unit(25, "feet"),
  25587. weight: math.unit(90000, "lb"),
  25588. name: "Side",
  25589. image: {
  25590. source: "./media/characters/mandarax/side.svg",
  25591. extra: 614 / 332,
  25592. bottom: 55 / 630
  25593. }
  25594. },
  25595. head: {
  25596. height: math.unit(11.4, "feet"),
  25597. name: "Head",
  25598. image: {
  25599. source: "./media/characters/mandarax/head.svg"
  25600. }
  25601. },
  25602. belly: {
  25603. height: math.unit(33, "feet"),
  25604. name: "Belly",
  25605. capacity: math.unit(500, "people"),
  25606. image: {
  25607. source: "./media/characters/mandarax/belly.svg"
  25608. }
  25609. },
  25610. dick: {
  25611. height: math.unit(8.46, "feet"),
  25612. name: "Dick",
  25613. image: {
  25614. source: "./media/characters/mandarax/dick.svg"
  25615. }
  25616. },
  25617. top: {
  25618. height: math.unit(28, "meters"),
  25619. name: "Top",
  25620. image: {
  25621. source: "./media/characters/mandarax/top.svg"
  25622. }
  25623. },
  25624. },
  25625. [
  25626. {
  25627. name: "Normal",
  25628. height: math.unit(25, "feet"),
  25629. default: true
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25635. {
  25636. front: {
  25637. height: math.unit(5, "feet"),
  25638. weight: math.unit(90, "lb"),
  25639. name: "Front",
  25640. image: {
  25641. source: "./media/characters/pixil/front.svg",
  25642. extra: 2000 / 1618,
  25643. bottom: 12.3 / 2011
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "Normal",
  25650. height: math.unit(5, "feet"),
  25651. default: true
  25652. },
  25653. {
  25654. name: "Megamacro",
  25655. height: math.unit(10, "miles"),
  25656. },
  25657. ]
  25658. ))
  25659. characterMakers.push(() => makeCharacter(
  25660. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25661. {
  25662. front: {
  25663. height: math.unit(7 + 2 / 12, "feet"),
  25664. weight: math.unit(200, "lb"),
  25665. name: "Front",
  25666. image: {
  25667. source: "./media/characters/angel/front.svg",
  25668. extra: 1830 / 1737,
  25669. bottom: 22.6 / 1854,
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Normal",
  25676. height: math.unit(7 + 2 / 12, "feet"),
  25677. default: true
  25678. },
  25679. {
  25680. name: "Macro",
  25681. height: math.unit(1000, "feet")
  25682. },
  25683. {
  25684. name: "Megamacro",
  25685. height: math.unit(2, "miles")
  25686. },
  25687. {
  25688. name: "Gigamacro",
  25689. height: math.unit(20, "earths")
  25690. },
  25691. ]
  25692. ))
  25693. characterMakers.push(() => makeCharacter(
  25694. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25695. {
  25696. front: {
  25697. height: math.unit(5, "feet"),
  25698. weight: math.unit(180, "lb"),
  25699. name: "Front",
  25700. image: {
  25701. source: "./media/characters/mekana/front.svg",
  25702. extra: 1671 / 1605,
  25703. bottom: 3.5 / 1691
  25704. }
  25705. },
  25706. side: {
  25707. height: math.unit(5, "feet"),
  25708. weight: math.unit(180, "lb"),
  25709. name: "Side",
  25710. image: {
  25711. source: "./media/characters/mekana/side.svg",
  25712. extra: 1671 / 1605,
  25713. bottom: 3.5 / 1691
  25714. }
  25715. },
  25716. back: {
  25717. height: math.unit(5, "feet"),
  25718. weight: math.unit(180, "lb"),
  25719. name: "Back",
  25720. image: {
  25721. source: "./media/characters/mekana/back.svg",
  25722. extra: 1671 / 1605,
  25723. bottom: 3.5 / 1691
  25724. }
  25725. },
  25726. },
  25727. [
  25728. {
  25729. name: "Normal",
  25730. height: math.unit(5, "feet"),
  25731. default: true
  25732. },
  25733. ]
  25734. ))
  25735. characterMakers.push(() => makeCharacter(
  25736. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25737. {
  25738. front: {
  25739. height: math.unit(4 + 6 / 12, "feet"),
  25740. weight: math.unit(80, "lb"),
  25741. name: "Front",
  25742. image: {
  25743. source: "./media/characters/pixie/front.svg",
  25744. extra: 1924 / 1825,
  25745. bottom: 22.4 / 1946
  25746. }
  25747. },
  25748. },
  25749. [
  25750. {
  25751. name: "Normal",
  25752. height: math.unit(4 + 6 / 12, "feet"),
  25753. default: true
  25754. },
  25755. {
  25756. name: "Macro",
  25757. height: math.unit(40, "feet")
  25758. },
  25759. ]
  25760. ))
  25761. characterMakers.push(() => makeCharacter(
  25762. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25763. {
  25764. front: {
  25765. height: math.unit(2.1, "meters"),
  25766. weight: math.unit(200, "lb"),
  25767. name: "Front",
  25768. image: {
  25769. source: "./media/characters/the-lascivious/front.svg",
  25770. extra: 1 / 0.893,
  25771. bottom: 3.5 / 573.7
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Human Scale",
  25778. height: math.unit(2.1, "meters")
  25779. },
  25780. {
  25781. name: "Wolxi Scale",
  25782. height: math.unit(46.2, "m"),
  25783. default: true
  25784. },
  25785. {
  25786. name: "Boinker of Buildings",
  25787. height: math.unit(10, "km")
  25788. },
  25789. {
  25790. name: "Shagger of Skyscrapers",
  25791. height: math.unit(40, "km")
  25792. },
  25793. {
  25794. name: "Banger of Boroughs",
  25795. height: math.unit(4000, "km")
  25796. },
  25797. {
  25798. name: "Screwer of States",
  25799. height: math.unit(100000, "km")
  25800. },
  25801. {
  25802. name: "Pounder of Planets",
  25803. height: math.unit(2000000, "km")
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25809. {
  25810. front: {
  25811. height: math.unit(6, "feet"),
  25812. weight: math.unit(150, "lb"),
  25813. name: "Front",
  25814. image: {
  25815. source: "./media/characters/aj/front.svg",
  25816. extra: 2039 / 1562,
  25817. bottom: 40 / 2079
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(11 + 6 / 12, "feet"),
  25825. default: true
  25826. },
  25827. {
  25828. name: "Megamacro",
  25829. height: math.unit(60, "megameters")
  25830. },
  25831. ]
  25832. ))
  25833. characterMakers.push(() => makeCharacter(
  25834. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25835. {
  25836. side: {
  25837. height: math.unit(31 + 8 / 12, "feet"),
  25838. weight: math.unit(75000, "kg"),
  25839. name: "Side",
  25840. image: {
  25841. source: "./media/characters/koros/side.svg",
  25842. extra: 1442 / 1297,
  25843. bottom: 122.7 / 1562
  25844. }
  25845. },
  25846. dicksKingsCrown: {
  25847. height: math.unit(6, "feet"),
  25848. name: "Dicks (King's Crown)",
  25849. image: {
  25850. source: "./media/characters/koros/dicks-kings-crown.svg"
  25851. }
  25852. },
  25853. dicksTailSet: {
  25854. height: math.unit(3, "feet"),
  25855. name: "Dicks (Tail Set)",
  25856. image: {
  25857. source: "./media/characters/koros/dicks-tail-set.svg"
  25858. }
  25859. },
  25860. dickCumming: {
  25861. height: math.unit(7.98, "feet"),
  25862. name: "Dick (Cumming)",
  25863. image: {
  25864. source: "./media/characters/koros/dick-cumming.svg"
  25865. }
  25866. },
  25867. dicksBack: {
  25868. height: math.unit(5.9, "feet"),
  25869. name: "Dicks (Back)",
  25870. image: {
  25871. source: "./media/characters/koros/dicks-back.svg"
  25872. }
  25873. },
  25874. dicksFront: {
  25875. height: math.unit(3.72, "feet"),
  25876. name: "Dicks (Front)",
  25877. image: {
  25878. source: "./media/characters/koros/dicks-front.svg"
  25879. }
  25880. },
  25881. dicksPeeking: {
  25882. height: math.unit(3.0, "feet"),
  25883. name: "Dicks (Peeking)",
  25884. image: {
  25885. source: "./media/characters/koros/dicks-peeking.svg"
  25886. }
  25887. },
  25888. eye: {
  25889. height: math.unit(1.7, "feet"),
  25890. name: "Eye",
  25891. image: {
  25892. source: "./media/characters/koros/eye.svg"
  25893. }
  25894. },
  25895. headFront: {
  25896. height: math.unit(11.69, "feet"),
  25897. name: "Head (Front)",
  25898. image: {
  25899. source: "./media/characters/koros/head-front.svg"
  25900. }
  25901. },
  25902. headSide: {
  25903. height: math.unit(14, "feet"),
  25904. name: "Head (Side)",
  25905. image: {
  25906. source: "./media/characters/koros/head-side.svg"
  25907. }
  25908. },
  25909. leg: {
  25910. height: math.unit(17, "feet"),
  25911. name: "Leg",
  25912. image: {
  25913. source: "./media/characters/koros/leg.svg"
  25914. }
  25915. },
  25916. mawSide: {
  25917. height: math.unit(12.8, "feet"),
  25918. name: "Maw (Side)",
  25919. image: {
  25920. source: "./media/characters/koros/maw-side.svg"
  25921. }
  25922. },
  25923. mawSpitting: {
  25924. height: math.unit(17, "feet"),
  25925. name: "Maw (Spitting)",
  25926. image: {
  25927. source: "./media/characters/koros/maw-spitting.svg"
  25928. }
  25929. },
  25930. slit: {
  25931. height: math.unit(2.8, "feet"),
  25932. name: "Slit",
  25933. image: {
  25934. source: "./media/characters/koros/slit.svg"
  25935. }
  25936. },
  25937. stomach: {
  25938. height: math.unit(6.8, "feet"),
  25939. capacity: math.unit(20, "people"),
  25940. name: "Stomach",
  25941. image: {
  25942. source: "./media/characters/koros/stomach.svg"
  25943. }
  25944. },
  25945. wingspanBottom: {
  25946. height: math.unit(114, "feet"),
  25947. name: "Wingspan (Bottom)",
  25948. image: {
  25949. source: "./media/characters/koros/wingspan-bottom.svg"
  25950. }
  25951. },
  25952. wingspanTop: {
  25953. height: math.unit(104, "feet"),
  25954. name: "Wingspan (Top)",
  25955. image: {
  25956. source: "./media/characters/koros/wingspan-top.svg"
  25957. }
  25958. },
  25959. },
  25960. [
  25961. {
  25962. name: "Normal",
  25963. height: math.unit(31 + 8 / 12, "feet"),
  25964. default: true
  25965. },
  25966. ]
  25967. ))
  25968. characterMakers.push(() => makeCharacter(
  25969. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25970. {
  25971. front: {
  25972. height: math.unit(18 + 5 / 12, "feet"),
  25973. weight: math.unit(3750, "kg"),
  25974. name: "Front",
  25975. image: {
  25976. source: "./media/characters/vexx/front.svg",
  25977. extra: 426 / 396,
  25978. bottom: 31.5 / 458
  25979. }
  25980. },
  25981. maw: {
  25982. height: math.unit(6, "feet"),
  25983. name: "Maw",
  25984. image: {
  25985. source: "./media/characters/vexx/maw.svg"
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(18 + 5 / 12, "feet"),
  25993. default: true
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25999. {
  26000. front: {
  26001. height: math.unit(17 + 6 / 12, "feet"),
  26002. weight: math.unit(150, "lb"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/baadra/front.svg",
  26006. extra: 3137 / 2890,
  26007. bottom: 168.4 / 3305
  26008. }
  26009. },
  26010. back: {
  26011. height: math.unit(17 + 6 / 12, "feet"),
  26012. weight: math.unit(150, "lb"),
  26013. name: "Back",
  26014. image: {
  26015. source: "./media/characters/baadra/back.svg",
  26016. extra: 3142 / 2890,
  26017. bottom: 220 / 3371
  26018. }
  26019. },
  26020. head: {
  26021. height: math.unit(5.45, "feet"),
  26022. name: "Head",
  26023. image: {
  26024. source: "./media/characters/baadra/head.svg"
  26025. }
  26026. },
  26027. headAngry: {
  26028. height: math.unit(4.95, "feet"),
  26029. name: "Head (Angry)",
  26030. image: {
  26031. source: "./media/characters/baadra/head-angry.svg"
  26032. }
  26033. },
  26034. headOpen: {
  26035. height: math.unit(6, "feet"),
  26036. name: "Head (Open)",
  26037. image: {
  26038. source: "./media/characters/baadra/head-open.svg"
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(17 + 6 / 12, "feet"),
  26046. default: true
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26052. {
  26053. front: {
  26054. height: math.unit(7 + 3 / 12, "feet"),
  26055. weight: math.unit(180, "lb"),
  26056. name: "Front",
  26057. image: {
  26058. source: "./media/characters/juri/front.svg",
  26059. extra: 1401 / 1237,
  26060. bottom: 18.5 / 1418
  26061. }
  26062. },
  26063. side: {
  26064. height: math.unit(7 + 3 / 12, "feet"),
  26065. weight: math.unit(180, "lb"),
  26066. name: "Side",
  26067. image: {
  26068. source: "./media/characters/juri/side.svg",
  26069. extra: 1424 / 1242,
  26070. bottom: 18.5 / 1447
  26071. }
  26072. },
  26073. sitting: {
  26074. height: math.unit(6, "feet"),
  26075. weight: math.unit(180, "lb"),
  26076. name: "Sitting",
  26077. image: {
  26078. source: "./media/characters/juri/sitting.svg",
  26079. extra: 1270 / 1143,
  26080. bottom: 100 / 1343
  26081. }
  26082. },
  26083. back: {
  26084. height: math.unit(7 + 3 / 12, "feet"),
  26085. weight: math.unit(180, "lb"),
  26086. name: "Back",
  26087. image: {
  26088. source: "./media/characters/juri/back.svg",
  26089. extra: 1377 / 1240,
  26090. bottom: 23.7 / 1405
  26091. }
  26092. },
  26093. maw: {
  26094. height: math.unit(2.8, "feet"),
  26095. name: "Maw",
  26096. image: {
  26097. source: "./media/characters/juri/maw.svg"
  26098. }
  26099. },
  26100. stomach: {
  26101. height: math.unit(0.89, "feet"),
  26102. capacity: math.unit(4, "liters"),
  26103. name: "Stomach",
  26104. image: {
  26105. source: "./media/characters/juri/stomach.svg"
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(7 + 3 / 12, "feet"),
  26113. default: true
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26119. {
  26120. fox: {
  26121. height: math.unit(5 + 6 / 12, "feet"),
  26122. weight: math.unit(140, "lb"),
  26123. name: "Fox",
  26124. image: {
  26125. source: "./media/characters/maxene-sita/fox.svg",
  26126. extra: 146 / 138,
  26127. bottom: 2.1 / 148.19
  26128. }
  26129. },
  26130. foxLaying: {
  26131. height: math.unit(1.70, "feet"),
  26132. weight: math.unit(140, "lb"),
  26133. name: "Fox (Laying)",
  26134. image: {
  26135. source: "./media/characters/maxene-sita/fox-laying.svg",
  26136. extra: 910 / 572,
  26137. bottom: 71 / 981
  26138. }
  26139. },
  26140. kitsune: {
  26141. height: math.unit(10, "feet"),
  26142. weight: math.unit(800, "lb"),
  26143. name: "Kitsune",
  26144. image: {
  26145. source: "./media/characters/maxene-sita/kitsune.svg",
  26146. extra: 185 / 176,
  26147. bottom: 4.7 / 189.9
  26148. }
  26149. },
  26150. hellhound: {
  26151. height: math.unit(10, "feet"),
  26152. weight: math.unit(700, "lb"),
  26153. name: "Hellhound",
  26154. image: {
  26155. source: "./media/characters/maxene-sita/hellhound.svg",
  26156. extra: 1600 / 1545,
  26157. bottom: 81 / 1681
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(5 + 6 / 12, "feet"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26171. {
  26172. front: {
  26173. height: math.unit(3 + 4 / 12, "feet"),
  26174. weight: math.unit(70, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/maia/front.svg",
  26178. extra: 227 / 219.5,
  26179. bottom: 40 / 267
  26180. }
  26181. },
  26182. back: {
  26183. height: math.unit(3 + 4 / 12, "feet"),
  26184. weight: math.unit(70, "lb"),
  26185. name: "Back",
  26186. image: {
  26187. source: "./media/characters/maia/back.svg",
  26188. extra: 237 / 225
  26189. }
  26190. },
  26191. },
  26192. [
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(3 + 4 / 12, "feet"),
  26196. default: true
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26202. {
  26203. front: {
  26204. height: math.unit(5 + 10 / 12, "feet"),
  26205. weight: math.unit(197, "lb"),
  26206. name: "Front",
  26207. image: {
  26208. source: "./media/characters/jabaro/front.svg",
  26209. extra: 225 / 216,
  26210. bottom: 5.06 / 230
  26211. }
  26212. },
  26213. back: {
  26214. height: math.unit(5 + 10 / 12, "feet"),
  26215. weight: math.unit(197, "lb"),
  26216. name: "Back",
  26217. image: {
  26218. source: "./media/characters/jabaro/back.svg",
  26219. extra: 225 / 219,
  26220. bottom: 1.9 / 227
  26221. }
  26222. },
  26223. },
  26224. [
  26225. {
  26226. name: "Normal",
  26227. height: math.unit(5 + 10 / 12, "feet"),
  26228. default: true
  26229. },
  26230. ]
  26231. ))
  26232. characterMakers.push(() => makeCharacter(
  26233. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26234. {
  26235. front: {
  26236. height: math.unit(5 + 8 / 12, "feet"),
  26237. weight: math.unit(139, "lb"),
  26238. name: "Front",
  26239. image: {
  26240. source: "./media/characters/risa/front.svg",
  26241. extra: 270 / 260,
  26242. bottom: 11.2 / 282
  26243. }
  26244. },
  26245. back: {
  26246. height: math.unit(5 + 8 / 12, "feet"),
  26247. weight: math.unit(139, "lb"),
  26248. name: "Back",
  26249. image: {
  26250. source: "./media/characters/risa/back.svg",
  26251. extra: 264 / 255,
  26252. bottom: 4 / 268
  26253. }
  26254. },
  26255. },
  26256. [
  26257. {
  26258. name: "Normal",
  26259. height: math.unit(5 + 8 / 12, "feet"),
  26260. default: true
  26261. },
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26266. {
  26267. front: {
  26268. height: math.unit(2 + 11 / 12, "feet"),
  26269. weight: math.unit(30, "lb"),
  26270. name: "Front",
  26271. image: {
  26272. source: "./media/characters/weatley/front.svg",
  26273. bottom: 10.7 / 414,
  26274. extra: 403.5 / 362
  26275. }
  26276. },
  26277. back: {
  26278. height: math.unit(2 + 11 / 12, "feet"),
  26279. weight: math.unit(30, "lb"),
  26280. name: "Back",
  26281. image: {
  26282. source: "./media/characters/weatley/back.svg",
  26283. bottom: 10.7 / 414,
  26284. extra: 403.5 / 362
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Normal",
  26291. height: math.unit(2 + 11 / 12, "feet"),
  26292. default: true
  26293. },
  26294. ]
  26295. ))
  26296. characterMakers.push(() => makeCharacter(
  26297. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26298. {
  26299. front: {
  26300. height: math.unit(5 + 2 / 12, "feet"),
  26301. weight: math.unit(50, "kg"),
  26302. name: "Front",
  26303. image: {
  26304. source: "./media/characters/mercury-crescent/front.svg",
  26305. extra: 1088 / 1033,
  26306. bottom: 18.9 / 1109
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(5 + 2 / 12, "feet"),
  26314. default: true
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(2, "feet"),
  26323. weight: math.unit(15, "kg"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/diamond-jones/front.svg",
  26327. extra: 727/723,
  26328. bottom: 46/773
  26329. }
  26330. },
  26331. },
  26332. [
  26333. {
  26334. name: "Normal",
  26335. height: math.unit(2, "feet"),
  26336. default: true
  26337. },
  26338. ]
  26339. ))
  26340. characterMakers.push(() => makeCharacter(
  26341. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26342. {
  26343. front: {
  26344. height: math.unit(3, "feet"),
  26345. weight: math.unit(30, "kg"),
  26346. name: "Front",
  26347. image: {
  26348. source: "./media/characters/sweet-bit/front.svg",
  26349. extra: 675 / 567,
  26350. bottom: 27.7 / 703
  26351. }
  26352. },
  26353. },
  26354. [
  26355. {
  26356. name: "Normal",
  26357. height: math.unit(3, "feet"),
  26358. default: true
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26364. {
  26365. side: {
  26366. height: math.unit(9.178, "feet"),
  26367. weight: math.unit(500, "lb"),
  26368. name: "Side",
  26369. image: {
  26370. source: "./media/characters/umbrazen/side.svg",
  26371. extra: 1730 / 1473,
  26372. bottom: 34.6 / 1765
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "Normal",
  26379. height: math.unit(9.178, "feet"),
  26380. default: true
  26381. },
  26382. ]
  26383. ))
  26384. characterMakers.push(() => makeCharacter(
  26385. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26386. {
  26387. front: {
  26388. height: math.unit(10, "feet"),
  26389. weight: math.unit(750, "lb"),
  26390. name: "Front",
  26391. image: {
  26392. source: "./media/characters/arlist/front.svg",
  26393. extra: 961 / 778,
  26394. bottom: 6.2 / 986
  26395. }
  26396. },
  26397. },
  26398. [
  26399. {
  26400. name: "Normal",
  26401. height: math.unit(10, "feet"),
  26402. default: true
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(5 + 1 / 12, "feet"),
  26411. weight: math.unit(110, "lb"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/aradel/front.svg",
  26415. extra: 324 / 303,
  26416. bottom: 3.6 / 329.4
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(5 + 1 / 12, "feet"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(3 + 8 / 12, "feet"),
  26433. weight: math.unit(50, "lb"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/serryn/front.svg",
  26437. extra: 1792 / 1656,
  26438. bottom: 43.5 / 1840
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Normal",
  26445. height: math.unit(3 + 8 / 12, "feet"),
  26446. default: true
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(7 + 10 / 12, "feet"),
  26455. weight: math.unit(255, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/xavier-thyme/front.svg",
  26459. extra: 3733 / 3642,
  26460. bottom: 131 / 3869
  26461. }
  26462. },
  26463. frontRaven: {
  26464. height: math.unit(7 + 10 / 12, "feet"),
  26465. weight: math.unit(255, "lb"),
  26466. name: "Front (Raven)",
  26467. image: {
  26468. source: "./media/characters/xavier-thyme/front-raven.svg",
  26469. extra: 4385 / 3642,
  26470. bottom: 131 / 4517
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(7 + 10 / 12, "feet"),
  26478. default: true
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26484. {
  26485. front: {
  26486. height: math.unit(1.6, "m"),
  26487. weight: math.unit(50, "kg"),
  26488. name: "Front",
  26489. image: {
  26490. source: "./media/characters/kiki/front.svg",
  26491. extra: 4682 / 3610,
  26492. bottom: 115 / 4777
  26493. }
  26494. },
  26495. },
  26496. [
  26497. {
  26498. name: "Normal",
  26499. height: math.unit(1.6, "meters"),
  26500. default: true
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26506. {
  26507. front: {
  26508. height: math.unit(50, "m"),
  26509. weight: math.unit(500, "tonnes"),
  26510. name: "Front",
  26511. image: {
  26512. source: "./media/characters/ryoko/front.svg",
  26513. extra: 4632 / 3926,
  26514. bottom: 193 / 4823
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(50, "meters"),
  26522. default: true
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(30, "m"),
  26531. weight: math.unit(22, "tonnes"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/elio/front.svg",
  26535. extra: 4582 / 3720,
  26536. bottom: 236 / 4828
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Normal",
  26543. height: math.unit(30, "meters"),
  26544. default: true
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26550. {
  26551. front: {
  26552. height: math.unit(6 + 3 / 12, "feet"),
  26553. weight: math.unit(120, "lb"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/azura/front.svg",
  26557. extra: 1149 / 1135,
  26558. bottom: 45 / 1194
  26559. }
  26560. },
  26561. frontClothed: {
  26562. height: math.unit(6 + 3 / 12, "feet"),
  26563. weight: math.unit(120, "lb"),
  26564. name: "Front (Clothed)",
  26565. image: {
  26566. source: "./media/characters/azura/front-clothed.svg",
  26567. extra: 1149 / 1135,
  26568. bottom: 45 / 1194
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Normal",
  26575. height: math.unit(6 + 3 / 12, "feet"),
  26576. default: true
  26577. },
  26578. {
  26579. name: "Macro",
  26580. height: math.unit(20 + 6 / 12, "feet")
  26581. },
  26582. {
  26583. name: "Megamacro",
  26584. height: math.unit(12, "miles")
  26585. },
  26586. {
  26587. name: "Gigamacro",
  26588. height: math.unit(10000, "miles")
  26589. },
  26590. {
  26591. name: "Teramacro",
  26592. height: math.unit(900000, "miles")
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26598. {
  26599. front: {
  26600. height: math.unit(12, "feet"),
  26601. weight: math.unit(1, "ton"),
  26602. capacity: math.unit(660000, "gallons"),
  26603. name: "Front",
  26604. image: {
  26605. source: "./media/characters/zeus/front.svg",
  26606. extra: 5005 / 4717,
  26607. bottom: 363 / 5388
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(12, "feet")
  26615. },
  26616. {
  26617. name: "Preferred Size",
  26618. height: math.unit(0.5, "miles"),
  26619. default: true
  26620. },
  26621. {
  26622. name: "Giga Horse",
  26623. height: math.unit(300, "miles")
  26624. },
  26625. {
  26626. name: "Riding Planets",
  26627. height: math.unit(30, "megameters")
  26628. },
  26629. {
  26630. name: "Cosmic Giant",
  26631. height: math.unit(3, "zettameters")
  26632. },
  26633. {
  26634. name: "Breeding God",
  26635. height: math.unit(9.92e22, "yottameters")
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26641. {
  26642. side: {
  26643. height: math.unit(9, "feet"),
  26644. weight: math.unit(1500, "kg"),
  26645. name: "Side",
  26646. image: {
  26647. source: "./media/characters/fang/side.svg",
  26648. extra: 924 / 866,
  26649. bottom: 47.5 / 972.3
  26650. }
  26651. },
  26652. },
  26653. [
  26654. {
  26655. name: "Normal",
  26656. height: math.unit(9, "feet"),
  26657. default: true
  26658. },
  26659. {
  26660. name: "Macro",
  26661. height: math.unit(75 + 6 / 12, "feet")
  26662. },
  26663. {
  26664. name: "Teramacro",
  26665. height: math.unit(50000, "miles")
  26666. },
  26667. ]
  26668. ))
  26669. characterMakers.push(() => makeCharacter(
  26670. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26671. {
  26672. front: {
  26673. height: math.unit(10, "feet"),
  26674. weight: math.unit(2, "tons"),
  26675. name: "Front",
  26676. image: {
  26677. source: "./media/characters/rekhit/front.svg",
  26678. extra: 2796 / 2590,
  26679. bottom: 225 / 3022
  26680. }
  26681. },
  26682. },
  26683. [
  26684. {
  26685. name: "Normal",
  26686. height: math.unit(10, "feet"),
  26687. default: true
  26688. },
  26689. {
  26690. name: "Macro",
  26691. height: math.unit(500, "feet")
  26692. },
  26693. ]
  26694. ))
  26695. characterMakers.push(() => makeCharacter(
  26696. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26697. {
  26698. front: {
  26699. height: math.unit(7 + 6.451 / 12, "feet"),
  26700. weight: math.unit(310, "lb"),
  26701. name: "Front",
  26702. image: {
  26703. source: "./media/characters/dahlia-verrick/front.svg",
  26704. extra: 1488 / 1365,
  26705. bottom: 6.2 / 1495
  26706. }
  26707. },
  26708. back: {
  26709. height: math.unit(7 + 6.451 / 12, "feet"),
  26710. weight: math.unit(310, "lb"),
  26711. name: "Back",
  26712. image: {
  26713. source: "./media/characters/dahlia-verrick/back.svg",
  26714. extra: 1472 / 1351,
  26715. bottom: 5.28 / 1477
  26716. }
  26717. },
  26718. frontBusiness: {
  26719. height: math.unit(7 + 6.451 / 12, "feet"),
  26720. weight: math.unit(200, "lb"),
  26721. name: "Front (Business)",
  26722. image: {
  26723. source: "./media/characters/dahlia-verrick/front-business.svg",
  26724. extra: 1478 / 1381,
  26725. bottom: 5.5 / 1484
  26726. }
  26727. },
  26728. frontCasual: {
  26729. height: math.unit(7 + 6.451 / 12, "feet"),
  26730. weight: math.unit(200, "lb"),
  26731. name: "Front (Casual)",
  26732. image: {
  26733. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26734. extra: 1478 / 1381,
  26735. bottom: 5.5 / 1484
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Travel-Sized",
  26742. height: math.unit(7.45, "inches")
  26743. },
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(7 + 6.451 / 12, "feet"),
  26747. default: true
  26748. },
  26749. {
  26750. name: "Hitting the Town",
  26751. height: math.unit(37 + 8 / 12, "feet")
  26752. },
  26753. {
  26754. name: "Stomp in the Suburbs",
  26755. height: math.unit(964 + 9.728 / 12, "feet")
  26756. },
  26757. {
  26758. name: "Sit on the City",
  26759. height: math.unit(61747 + 10.592 / 12, "feet")
  26760. },
  26761. {
  26762. name: "Glomp the Globe",
  26763. height: math.unit(252919327 + 4.832 / 12, "feet")
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26769. {
  26770. front: {
  26771. height: math.unit(6 + 4 / 12, "feet"),
  26772. weight: math.unit(320, "lb"),
  26773. name: "Front",
  26774. image: {
  26775. source: "./media/characters/balina-mahigan/front.svg",
  26776. extra: 447 / 428,
  26777. bottom: 18 / 466
  26778. }
  26779. },
  26780. back: {
  26781. height: math.unit(6 + 4 / 12, "feet"),
  26782. weight: math.unit(320, "lb"),
  26783. name: "Back",
  26784. image: {
  26785. source: "./media/characters/balina-mahigan/back.svg",
  26786. extra: 445 / 428,
  26787. bottom: 4.07 / 448
  26788. }
  26789. },
  26790. arm: {
  26791. height: math.unit(1.88, "feet"),
  26792. name: "Arm",
  26793. image: {
  26794. source: "./media/characters/balina-mahigan/arm.svg"
  26795. }
  26796. },
  26797. backPort: {
  26798. height: math.unit(0.685, "feet"),
  26799. name: "Back Port",
  26800. image: {
  26801. source: "./media/characters/balina-mahigan/back-port.svg"
  26802. }
  26803. },
  26804. hoofpaw: {
  26805. height: math.unit(1.41, "feet"),
  26806. name: "Hoofpaw",
  26807. image: {
  26808. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26809. }
  26810. },
  26811. leftHandBack: {
  26812. height: math.unit(0.938, "feet"),
  26813. name: "Left Hand (Back)",
  26814. image: {
  26815. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26816. }
  26817. },
  26818. leftHandFront: {
  26819. height: math.unit(0.938, "feet"),
  26820. name: "Left Hand (Front)",
  26821. image: {
  26822. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26823. }
  26824. },
  26825. rightHandBack: {
  26826. height: math.unit(0.95, "feet"),
  26827. name: "Right Hand (Back)",
  26828. image: {
  26829. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26830. }
  26831. },
  26832. rightHandFront: {
  26833. height: math.unit(0.95, "feet"),
  26834. name: "Right Hand (Front)",
  26835. image: {
  26836. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(6 + 4 / 12, "feet"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(6, "feet"),
  26853. weight: math.unit(320, "lb"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/balina-mejeri/front.svg",
  26857. extra: 517 / 488,
  26858. bottom: 44.2 / 561
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(6 + 4 / 12, "feet")
  26866. },
  26867. {
  26868. name: "Business",
  26869. height: math.unit(155, "feet"),
  26870. default: true
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26876. {
  26877. kneeling: {
  26878. height: math.unit(6 + 4 / 12, "feet"),
  26879. weight: math.unit(300 * 20, "lb"),
  26880. name: "Kneeling",
  26881. image: {
  26882. source: "./media/characters/balbarian/kneeling.svg",
  26883. extra: 922 / 862,
  26884. bottom: 42.4 / 965
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(6 + 4 / 12, "feet")
  26892. },
  26893. {
  26894. name: "Treasured",
  26895. height: math.unit(18 + 9 / 12, "feet"),
  26896. default: true
  26897. },
  26898. {
  26899. name: "Macro",
  26900. height: math.unit(900, "feet")
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(6 + 4 / 12, "feet"),
  26909. weight: math.unit(325, "lb"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/balina-amarini/front.svg",
  26913. extra: 415 / 403,
  26914. bottom: 19 / 433.4
  26915. }
  26916. },
  26917. back: {
  26918. height: math.unit(6 + 4 / 12, "feet"),
  26919. weight: math.unit(325, "lb"),
  26920. name: "Back",
  26921. image: {
  26922. source: "./media/characters/balina-amarini/back.svg",
  26923. extra: 415 / 403,
  26924. bottom: 13.5 / 432
  26925. }
  26926. },
  26927. overdrive: {
  26928. height: math.unit(6 + 4 / 12, "feet"),
  26929. weight: math.unit(400, "lb"),
  26930. name: "Overdrive",
  26931. image: {
  26932. source: "./media/characters/balina-amarini/overdrive.svg",
  26933. extra: 269 / 259,
  26934. bottom: 12 / 282
  26935. }
  26936. },
  26937. },
  26938. [
  26939. {
  26940. name: "Boom",
  26941. height: math.unit(9 + 10 / 12, "feet"),
  26942. default: true
  26943. },
  26944. {
  26945. name: "Macro",
  26946. height: math.unit(280, "feet")
  26947. },
  26948. ]
  26949. ))
  26950. characterMakers.push(() => makeCharacter(
  26951. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26952. {
  26953. goddess: {
  26954. height: math.unit(600, "feet"),
  26955. weight: math.unit(2000000, "tons"),
  26956. name: "Goddess",
  26957. image: {
  26958. source: "./media/characters/lady-kubwa/goddess.svg",
  26959. extra: 1240.5 / 1223,
  26960. bottom: 22 / 1263
  26961. }
  26962. },
  26963. goddesser: {
  26964. height: math.unit(900, "feet"),
  26965. weight: math.unit(20000000, "lb"),
  26966. name: "Goddess-er",
  26967. image: {
  26968. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26969. extra: 899 / 888,
  26970. bottom: 12.6 / 912
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Macro",
  26977. height: math.unit(600, "feet"),
  26978. default: true
  26979. },
  26980. {
  26981. name: "Megamacro",
  26982. height: math.unit(250, "miles")
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(7 + 7 / 12, "feet"),
  26991. weight: math.unit(250, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/tala-grovehorn/front.svg",
  26995. extra: 2636 / 2525,
  26996. bottom: 147 / 2781
  26997. }
  26998. },
  26999. back: {
  27000. height: math.unit(7 + 7 / 12, "feet"),
  27001. weight: math.unit(250, "lb"),
  27002. name: "Back",
  27003. image: {
  27004. source: "./media/characters/tala-grovehorn/back.svg",
  27005. extra: 2635 / 2539,
  27006. bottom: 100 / 2732.8
  27007. }
  27008. },
  27009. mouth: {
  27010. height: math.unit(1.15, "feet"),
  27011. name: "Mouth",
  27012. image: {
  27013. source: "./media/characters/tala-grovehorn/mouth.svg"
  27014. }
  27015. },
  27016. dick: {
  27017. height: math.unit(2.36, "feet"),
  27018. name: "Dick",
  27019. image: {
  27020. source: "./media/characters/tala-grovehorn/dick.svg"
  27021. }
  27022. },
  27023. slit: {
  27024. height: math.unit(0.61, "feet"),
  27025. name: "Slit",
  27026. image: {
  27027. source: "./media/characters/tala-grovehorn/slit.svg"
  27028. }
  27029. },
  27030. },
  27031. [
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27036. {
  27037. front: {
  27038. height: math.unit(7 + 7 / 12, "feet"),
  27039. weight: math.unit(225, "lb"),
  27040. name: "Front",
  27041. image: {
  27042. source: "./media/characters/epona/front.svg",
  27043. extra: 2445 / 2290,
  27044. bottom: 251 / 2696
  27045. }
  27046. },
  27047. back: {
  27048. height: math.unit(7 + 7 / 12, "feet"),
  27049. weight: math.unit(225, "lb"),
  27050. name: "Back",
  27051. image: {
  27052. source: "./media/characters/epona/back.svg",
  27053. extra: 2546 / 2408,
  27054. bottom: 44 / 2589
  27055. }
  27056. },
  27057. genitals: {
  27058. height: math.unit(1.5, "feet"),
  27059. name: "Genitals",
  27060. image: {
  27061. source: "./media/characters/epona/genitals.svg"
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Normal",
  27068. height: math.unit(7 + 7 / 12, "feet"),
  27069. default: true
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(7, "feet"),
  27078. weight: math.unit(518, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/avia-bloodbourn/front.svg",
  27082. extra: 1466 / 1350,
  27083. bottom: 65 / 1527
  27084. }
  27085. },
  27086. },
  27087. [
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(9.35, "feet"),
  27095. weight: math.unit(600, "lb"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/amera/front.svg",
  27099. extra: 891 / 818,
  27100. bottom: 30 / 922.7
  27101. }
  27102. },
  27103. back: {
  27104. height: math.unit(9.35, "feet"),
  27105. weight: math.unit(600, "lb"),
  27106. name: "Back",
  27107. image: {
  27108. source: "./media/characters/amera/back.svg",
  27109. extra: 876 / 824,
  27110. bottom: 6.8 / 884
  27111. }
  27112. },
  27113. dick: {
  27114. height: math.unit(2.14, "feet"),
  27115. name: "Dick",
  27116. image: {
  27117. source: "./media/characters/amera/dick.svg"
  27118. }
  27119. },
  27120. },
  27121. [
  27122. {
  27123. name: "Normal",
  27124. height: math.unit(9.35, "feet"),
  27125. default: true
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27131. {
  27132. kneeling: {
  27133. height: math.unit(3 + 4 / 12, "feet"),
  27134. weight: math.unit(90, "lb"),
  27135. name: "Kneeling",
  27136. image: {
  27137. source: "./media/characters/rosewen/kneeling.svg",
  27138. extra: 1835 / 1571,
  27139. bottom: 27.7 / 1862
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(3 + 4 / 12, "feet"),
  27147. default: true
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27153. {
  27154. front: {
  27155. height: math.unit(5 + 10 / 12, "feet"),
  27156. weight: math.unit(200, "lb"),
  27157. name: "Front",
  27158. image: {
  27159. source: "./media/characters/sabah/front.svg",
  27160. extra: 849 / 763,
  27161. bottom: 33.9 / 881
  27162. }
  27163. },
  27164. },
  27165. [
  27166. {
  27167. name: "Normal",
  27168. height: math.unit(5 + 10 / 12, "feet"),
  27169. default: true
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27175. {
  27176. front: {
  27177. height: math.unit(3 + 5 / 12, "feet"),
  27178. weight: math.unit(40, "kg"),
  27179. name: "Front",
  27180. image: {
  27181. source: "./media/characters/purple-flame/front.svg",
  27182. extra: 1577 / 1412,
  27183. bottom: 97 / 1694
  27184. }
  27185. },
  27186. frontDressed: {
  27187. height: math.unit(3 + 5 / 12, "feet"),
  27188. weight: math.unit(40, "kg"),
  27189. name: "Front (Dressed)",
  27190. image: {
  27191. source: "./media/characters/purple-flame/front-dressed.svg",
  27192. extra: 1577 / 1412,
  27193. bottom: 97 / 1694
  27194. }
  27195. },
  27196. headphones: {
  27197. height: math.unit(0.85, "feet"),
  27198. name: "Headphones",
  27199. image: {
  27200. source: "./media/characters/purple-flame/headphones.svg"
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Really Small",
  27207. height: math.unit(5, "cm")
  27208. },
  27209. {
  27210. name: "Micro",
  27211. height: math.unit(1 + 5 / 12, "feet")
  27212. },
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(3 + 5 / 12, "feet"),
  27216. default: true
  27217. },
  27218. {
  27219. name: "Minimacro",
  27220. height: math.unit(125, "feet")
  27221. },
  27222. {
  27223. name: "Macro",
  27224. height: math.unit(0.5, "miles")
  27225. },
  27226. {
  27227. name: "Megamacro",
  27228. height: math.unit(50, "miles")
  27229. },
  27230. {
  27231. name: "Gigantic",
  27232. height: math.unit(750, "miles")
  27233. },
  27234. {
  27235. name: "Planetary",
  27236. height: math.unit(15000, "miles")
  27237. },
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27242. {
  27243. front: {
  27244. height: math.unit(14, "feet"),
  27245. weight: math.unit(959, "lb"),
  27246. name: "Front",
  27247. image: {
  27248. source: "./media/characters/arsenal/front.svg",
  27249. extra: 2357 / 2157,
  27250. bottom: 93 / 2458
  27251. }
  27252. },
  27253. },
  27254. [
  27255. {
  27256. name: "Normal",
  27257. height: math.unit(14, "feet"),
  27258. default: true
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27264. {
  27265. front: {
  27266. height: math.unit(6, "feet"),
  27267. weight: math.unit(150, "lb"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/adira/front.svg",
  27271. extra: 1078 / 1029,
  27272. bottom: 87 / 1166
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Micro",
  27279. height: math.unit(4, "inches"),
  27280. default: true
  27281. },
  27282. {
  27283. name: "Macro",
  27284. height: math.unit(50, "feet")
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27290. {
  27291. front: {
  27292. height: math.unit(16, "feet"),
  27293. weight: math.unit(1000, "lb"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/grim/front.svg",
  27297. extra: 622 / 614,
  27298. bottom: 18.1 / 642
  27299. }
  27300. },
  27301. back: {
  27302. height: math.unit(16, "feet"),
  27303. weight: math.unit(1000, "lb"),
  27304. name: "Back",
  27305. image: {
  27306. source: "./media/characters/grim/back.svg",
  27307. extra: 610.6 / 602,
  27308. bottom: 40.8 / 652
  27309. }
  27310. },
  27311. hunched: {
  27312. height: math.unit(9.75, "feet"),
  27313. weight: math.unit(1000, "lb"),
  27314. name: "Hunched",
  27315. image: {
  27316. source: "./media/characters/grim/hunched.svg",
  27317. extra: 304 / 297,
  27318. bottom: 35.4 / 394
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(16, "feet"),
  27326. default: true
  27327. },
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27332. {
  27333. front: {
  27334. height: math.unit(2.3, "meters"),
  27335. weight: math.unit(300, "lb"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/sinja/front-sfw.svg",
  27339. extra: 1393 / 1294,
  27340. bottom: 70 / 1463
  27341. }
  27342. },
  27343. frontNsfw: {
  27344. height: math.unit(2.3, "meters"),
  27345. weight: math.unit(300, "lb"),
  27346. name: "Front (NSFW)",
  27347. image: {
  27348. source: "./media/characters/sinja/front-nsfw.svg",
  27349. extra: 1393 / 1294,
  27350. bottom: 70 / 1463
  27351. }
  27352. },
  27353. back: {
  27354. height: math.unit(2.3, "meters"),
  27355. weight: math.unit(300, "lb"),
  27356. name: "Back",
  27357. image: {
  27358. source: "./media/characters/sinja/back.svg",
  27359. extra: 1393 / 1294,
  27360. bottom: 70 / 1463
  27361. }
  27362. },
  27363. head: {
  27364. height: math.unit(1.771, "feet"),
  27365. name: "Head",
  27366. image: {
  27367. source: "./media/characters/sinja/head.svg"
  27368. }
  27369. },
  27370. slit: {
  27371. height: math.unit(0.8, "feet"),
  27372. name: "Slit",
  27373. image: {
  27374. source: "./media/characters/sinja/slit.svg"
  27375. }
  27376. },
  27377. },
  27378. [
  27379. {
  27380. name: "Normal",
  27381. height: math.unit(2.3, "meters")
  27382. },
  27383. {
  27384. name: "Macro",
  27385. height: math.unit(91, "meters"),
  27386. default: true
  27387. },
  27388. {
  27389. name: "Megamacro",
  27390. height: math.unit(91440, "meters")
  27391. },
  27392. {
  27393. name: "Gigamacro",
  27394. height: math.unit(60960000, "meters")
  27395. },
  27396. {
  27397. name: "Teramacro",
  27398. height: math.unit(9144000000, "meters")
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(1.7, "meters"),
  27407. weight: math.unit(130, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/kyu/front.svg",
  27411. extra: 415 / 395,
  27412. bottom: 5 / 420
  27413. }
  27414. },
  27415. head: {
  27416. height: math.unit(1.75, "feet"),
  27417. name: "Head",
  27418. image: {
  27419. source: "./media/characters/kyu/head.svg"
  27420. }
  27421. },
  27422. foot: {
  27423. height: math.unit(0.81, "feet"),
  27424. name: "Foot",
  27425. image: {
  27426. source: "./media/characters/kyu/foot.svg"
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(1.7, "meters")
  27434. },
  27435. {
  27436. name: "Macro",
  27437. height: math.unit(131, "feet"),
  27438. default: true
  27439. },
  27440. {
  27441. name: "Megamacro",
  27442. height: math.unit(91440, "meters")
  27443. },
  27444. {
  27445. name: "Gigamacro",
  27446. height: math.unit(60960000, "meters")
  27447. },
  27448. {
  27449. name: "Teramacro",
  27450. height: math.unit(9144000000, "meters")
  27451. },
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27456. {
  27457. front: {
  27458. height: math.unit(7 + 1 / 12, "feet"),
  27459. weight: math.unit(250, "lb"),
  27460. name: "Front",
  27461. image: {
  27462. source: "./media/characters/joey/front.svg",
  27463. extra: 1791 / 1537,
  27464. bottom: 28 / 1816
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Micro",
  27471. height: math.unit(3, "inches")
  27472. },
  27473. {
  27474. name: "Normal",
  27475. height: math.unit(7 + 1 / 12, "feet"),
  27476. default: true
  27477. },
  27478. ]
  27479. ))
  27480. characterMakers.push(() => makeCharacter(
  27481. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27482. {
  27483. front: {
  27484. height: math.unit(165, "cm"),
  27485. weight: math.unit(140, "lb"),
  27486. name: "Front",
  27487. image: {
  27488. source: "./media/characters/sam-evans/front.svg",
  27489. extra: 3417 / 3230,
  27490. bottom: 41.3 / 3417
  27491. }
  27492. },
  27493. frontSixTails: {
  27494. height: math.unit(165, "cm"),
  27495. weight: math.unit(140, "lb"),
  27496. name: "Front-six-tails",
  27497. image: {
  27498. source: "./media/characters/sam-evans/front-six-tails.svg",
  27499. extra: 3417 / 3230,
  27500. bottom: 41.3 / 3417
  27501. }
  27502. },
  27503. back: {
  27504. height: math.unit(165, "cm"),
  27505. weight: math.unit(140, "lb"),
  27506. name: "Back",
  27507. image: {
  27508. source: "./media/characters/sam-evans/back.svg",
  27509. extra: 3227 / 3032,
  27510. bottom: 6.8 / 3234
  27511. }
  27512. },
  27513. face: {
  27514. height: math.unit(0.68, "feet"),
  27515. name: "Face",
  27516. image: {
  27517. source: "./media/characters/sam-evans/face.svg"
  27518. }
  27519. },
  27520. },
  27521. [
  27522. {
  27523. name: "Normal",
  27524. height: math.unit(165, "cm"),
  27525. default: true
  27526. },
  27527. {
  27528. name: "Macro",
  27529. height: math.unit(100, "meters")
  27530. },
  27531. {
  27532. name: "Macro+",
  27533. height: math.unit(800, "meters")
  27534. },
  27535. {
  27536. name: "Macro++",
  27537. height: math.unit(3, "km")
  27538. },
  27539. {
  27540. name: "Macro+++",
  27541. height: math.unit(30, "km")
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(10, "feet"),
  27550. weight: math.unit(750, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/juliet-a/front.svg",
  27554. extra: 1766 / 1720,
  27555. bottom: 43 / 1809
  27556. }
  27557. },
  27558. back: {
  27559. height: math.unit(10, "feet"),
  27560. weight: math.unit(750, "lb"),
  27561. name: "Back",
  27562. image: {
  27563. source: "./media/characters/juliet-a/back.svg",
  27564. extra: 1781 / 1734,
  27565. bottom: 35 / 1810,
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(10, "feet"),
  27573. default: true
  27574. },
  27575. {
  27576. name: "Dragon Form",
  27577. height: math.unit(250, "feet")
  27578. },
  27579. {
  27580. name: "Macro",
  27581. height: math.unit(1000, "feet")
  27582. },
  27583. {
  27584. name: "Megamacro",
  27585. height: math.unit(10000, "feet")
  27586. }
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27591. {
  27592. regular: {
  27593. height: math.unit(7 + 3 / 12, "feet"),
  27594. weight: math.unit(260, "lb"),
  27595. name: "Regular",
  27596. image: {
  27597. source: "./media/characters/wild/regular.svg",
  27598. extra: 97.45 / 92,
  27599. bottom: 6.8 / 104.3
  27600. }
  27601. },
  27602. biggums: {
  27603. height: math.unit(8 + 6 / 12, "feet"),
  27604. weight: math.unit(425, "lb"),
  27605. name: "Biggums",
  27606. image: {
  27607. source: "./media/characters/wild/biggums.svg",
  27608. extra: 97.45 / 92,
  27609. bottom: 7.5 / 132.34
  27610. }
  27611. },
  27612. mawRegular: {
  27613. height: math.unit(1.24, "feet"),
  27614. name: "Maw (Regular)",
  27615. image: {
  27616. source: "./media/characters/wild/maw.svg"
  27617. }
  27618. },
  27619. mawBiggums: {
  27620. height: math.unit(1.47, "feet"),
  27621. name: "Maw (Biggums)",
  27622. image: {
  27623. source: "./media/characters/wild/maw.svg"
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(7 + 3 / 12, "feet"),
  27631. default: true
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27637. {
  27638. front: {
  27639. height: math.unit(2.5, "meters"),
  27640. weight: math.unit(200, "kg"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/vidar/front.svg",
  27644. extra: 2994 / 2795,
  27645. bottom: 56 / 3061
  27646. }
  27647. },
  27648. back: {
  27649. height: math.unit(2.5, "meters"),
  27650. weight: math.unit(200, "kg"),
  27651. name: "Back",
  27652. image: {
  27653. source: "./media/characters/vidar/back.svg",
  27654. extra: 3131 / 2928,
  27655. bottom: 13.5 / 3141.5
  27656. }
  27657. },
  27658. feral: {
  27659. height: math.unit(2.5, "meters"),
  27660. weight: math.unit(2000, "kg"),
  27661. name: "Feral",
  27662. image: {
  27663. source: "./media/characters/vidar/feral.svg",
  27664. extra: 2790 / 1765,
  27665. bottom: 6 / 2796
  27666. }
  27667. },
  27668. },
  27669. [
  27670. {
  27671. name: "Normal",
  27672. height: math.unit(2.5, "meters"),
  27673. default: true
  27674. },
  27675. {
  27676. name: "Macro",
  27677. height: math.unit(100, "meters")
  27678. },
  27679. ]
  27680. ))
  27681. characterMakers.push(() => makeCharacter(
  27682. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27683. {
  27684. front: {
  27685. height: math.unit(5 + 9 / 12, "feet"),
  27686. weight: math.unit(120, "lb"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/ash/front.svg",
  27690. extra: 2189 / 1961,
  27691. bottom: 5.2 / 2194
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(5 + 9 / 12, "feet"),
  27699. default: true
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27705. {
  27706. front: {
  27707. height: math.unit(9, "feet"),
  27708. weight: math.unit(10000, "lb"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/gygabite/front.svg",
  27712. bottom: 31.7 / 537.8,
  27713. extra: 505 / 370
  27714. }
  27715. },
  27716. },
  27717. [
  27718. {
  27719. name: "Normal",
  27720. height: math.unit(9, "feet"),
  27721. default: true
  27722. },
  27723. ]
  27724. ))
  27725. characterMakers.push(() => makeCharacter(
  27726. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27727. {
  27728. front: {
  27729. height: math.unit(12, "feet"),
  27730. weight: math.unit(35000, "lb"),
  27731. name: "Front",
  27732. image: {
  27733. source: "./media/characters/p0tat0/front.svg",
  27734. extra: 1065 / 921,
  27735. bottom: 55.7 / 1121.25
  27736. }
  27737. },
  27738. },
  27739. [
  27740. {
  27741. name: "Normal",
  27742. height: math.unit(12, "feet"),
  27743. default: true
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27749. {
  27750. side: {
  27751. height: math.unit(6.5, "feet"),
  27752. weight: math.unit(800, "lb"),
  27753. name: "Side",
  27754. image: {
  27755. source: "./media/characters/dusk/side.svg",
  27756. extra: 615 / 373,
  27757. bottom: 53 / 664
  27758. }
  27759. },
  27760. sitting: {
  27761. height: math.unit(7, "feet"),
  27762. weight: math.unit(800, "lb"),
  27763. name: "Sitting",
  27764. image: {
  27765. source: "./media/characters/dusk/sitting.svg",
  27766. extra: 753 / 425,
  27767. bottom: 33 / 774
  27768. }
  27769. },
  27770. head: {
  27771. height: math.unit(6.1, "feet"),
  27772. name: "Head",
  27773. image: {
  27774. source: "./media/characters/dusk/head.svg"
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(7, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(15, "feet"),
  27791. weight: math.unit(7000, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/jay-direwolf/front.svg",
  27795. extra: 1810 / 1732,
  27796. bottom: 66 / 1892
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(15, "feet"),
  27804. default: true
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(4 + 9 / 12, "feet"),
  27813. weight: math.unit(130, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/anchovie/front.svg",
  27817. extra: 382 / 350,
  27818. bottom: 25 / 409
  27819. }
  27820. },
  27821. back: {
  27822. height: math.unit(4 + 9 / 12, "feet"),
  27823. weight: math.unit(130, "lb"),
  27824. name: "Back",
  27825. image: {
  27826. source: "./media/characters/anchovie/back.svg",
  27827. extra: 385 / 352,
  27828. bottom: 16.6 / 402
  27829. }
  27830. },
  27831. frontDressed: {
  27832. height: math.unit(4 + 9 / 12, "feet"),
  27833. weight: math.unit(130, "lb"),
  27834. name: "Front (Dressed)",
  27835. image: {
  27836. source: "./media/characters/anchovie/front-dressed.svg",
  27837. extra: 382 / 350,
  27838. bottom: 25 / 409
  27839. }
  27840. },
  27841. backDressed: {
  27842. height: math.unit(4 + 9 / 12, "feet"),
  27843. weight: math.unit(130, "lb"),
  27844. name: "Back (Dressed)",
  27845. image: {
  27846. source: "./media/characters/anchovie/back-dressed.svg",
  27847. extra: 385 / 352,
  27848. bottom: 16.6 / 402
  27849. }
  27850. },
  27851. },
  27852. [
  27853. {
  27854. name: "Micro",
  27855. height: math.unit(6.4, "inches")
  27856. },
  27857. {
  27858. name: "Normal",
  27859. height: math.unit(4 + 9 / 12, "feet"),
  27860. default: true
  27861. },
  27862. ]
  27863. ))
  27864. characterMakers.push(() => makeCharacter(
  27865. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27866. {
  27867. front: {
  27868. height: math.unit(2, "meters"),
  27869. weight: math.unit(180, "lb"),
  27870. name: "Front",
  27871. image: {
  27872. source: "./media/characters/acidrenamon/front.svg",
  27873. extra: 987 / 890,
  27874. bottom: 22.8 / 1009
  27875. }
  27876. },
  27877. back: {
  27878. height: math.unit(2, "meters"),
  27879. weight: math.unit(180, "lb"),
  27880. name: "Back",
  27881. image: {
  27882. source: "./media/characters/acidrenamon/back.svg",
  27883. extra: 983 / 891,
  27884. bottom: 8.4 / 992
  27885. }
  27886. },
  27887. head: {
  27888. height: math.unit(1.92, "feet"),
  27889. name: "Head",
  27890. image: {
  27891. source: "./media/characters/acidrenamon/head.svg"
  27892. }
  27893. },
  27894. rump: {
  27895. height: math.unit(1.72, "feet"),
  27896. name: "Rump",
  27897. image: {
  27898. source: "./media/characters/acidrenamon/rump.svg"
  27899. }
  27900. },
  27901. tail: {
  27902. height: math.unit(4.2, "feet"),
  27903. name: "Tail",
  27904. image: {
  27905. source: "./media/characters/acidrenamon/tail.svg"
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Normal",
  27912. height: math.unit(2, "meters"),
  27913. default: true
  27914. },
  27915. {
  27916. name: "Minimacro",
  27917. height: math.unit(7, "meters")
  27918. },
  27919. {
  27920. name: "Macro",
  27921. height: math.unit(200, "meters")
  27922. },
  27923. {
  27924. name: "Gigamacro",
  27925. height: math.unit(0.2, "earths")
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(152, "feet"),
  27934. name: "Front",
  27935. image: {
  27936. source: "./media/characters/kenzie-lee/front.svg",
  27937. extra: 1869/1774,
  27938. bottom: 128/1997
  27939. }
  27940. },
  27941. side: {
  27942. height: math.unit(86, "feet"),
  27943. name: "Side",
  27944. image: {
  27945. source: "./media/characters/kenzie-lee/side.svg",
  27946. extra: 930/815,
  27947. bottom: 177/1107
  27948. }
  27949. },
  27950. paw: {
  27951. height: math.unit(15, "feet"),
  27952. name: "Paw",
  27953. image: {
  27954. source: "./media/characters/kenzie-lee/paw.svg"
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Micro",
  27961. height: math.unit(1.5, "inches")
  27962. },
  27963. {
  27964. name: "Normal",
  27965. height: math.unit(152, "feet"),
  27966. default: true
  27967. },
  27968. {
  27969. name: "Megamacro",
  27970. height: math.unit(7, "miles")
  27971. },
  27972. {
  27973. name: "Gigamacro",
  27974. height: math.unit(8000, "miles")
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27980. {
  27981. side: {
  27982. height: math.unit(6, "feet"),
  27983. weight: math.unit(150, "lb"),
  27984. name: "Side",
  27985. image: {
  27986. source: "./media/characters/withers/side.svg",
  27987. extra: 1830 / 1728,
  27988. bottom: 96 / 1927
  27989. }
  27990. },
  27991. front: {
  27992. height: math.unit(6, "feet"),
  27993. weight: math.unit(150, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/withers/front.svg",
  27997. extra: 1514 / 1438,
  27998. bottom: 118 / 1632
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Macro",
  28005. height: math.unit(168, "feet"),
  28006. default: true
  28007. },
  28008. {
  28009. name: "Megamacro",
  28010. height: math.unit(15, "miles")
  28011. }
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(6 + 7 / 12, "feet"),
  28019. weight: math.unit(250, "lb"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/nemoskii/front.svg",
  28023. extra: 2270 / 1734,
  28024. bottom: 86 / 2354
  28025. }
  28026. },
  28027. back: {
  28028. height: math.unit(6 + 7 / 12, "feet"),
  28029. weight: math.unit(250, "lb"),
  28030. name: "Back",
  28031. image: {
  28032. source: "./media/characters/nemoskii/back.svg",
  28033. extra: 1845 / 1788,
  28034. bottom: 10.5 / 1852
  28035. }
  28036. },
  28037. head: {
  28038. height: math.unit(1.31, "feet"),
  28039. name: "Head",
  28040. image: {
  28041. source: "./media/characters/nemoskii/head.svg"
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Micro",
  28048. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28049. },
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(6 + 7 / 12, "feet"),
  28053. default: true
  28054. },
  28055. {
  28056. name: "Macro",
  28057. height: math.unit((6 + 7 / 12) * 150, "feet")
  28058. },
  28059. {
  28060. name: "Macro+",
  28061. height: math.unit((6 + 7 / 12) * 500, "feet")
  28062. },
  28063. {
  28064. name: "Megamacro",
  28065. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28071. {
  28072. front: {
  28073. height: math.unit(1, "mile"),
  28074. weight: math.unit(265261.9, "lb"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/shui/front.svg",
  28078. extra: 1633 / 1564,
  28079. bottom: 91.5 / 1726
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Macro",
  28086. height: math.unit(1, "mile"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28093. {
  28094. front: {
  28095. height: math.unit(12 + 6 / 12, "feet"),
  28096. weight: math.unit(1342, "lb"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/arokh-takakura/front.svg",
  28100. extra: 1089 / 1043,
  28101. bottom: 77.4 / 1176.7
  28102. }
  28103. },
  28104. back: {
  28105. height: math.unit(12 + 6 / 12, "feet"),
  28106. weight: math.unit(1342, "lb"),
  28107. name: "Back",
  28108. image: {
  28109. source: "./media/characters/arokh-takakura/back.svg",
  28110. extra: 1046 / 1019,
  28111. bottom: 102 / 1150
  28112. }
  28113. },
  28114. },
  28115. [
  28116. {
  28117. name: "Big",
  28118. height: math.unit(12 + 6 / 12, "feet"),
  28119. default: true
  28120. },
  28121. ]
  28122. ))
  28123. characterMakers.push(() => makeCharacter(
  28124. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28125. {
  28126. front: {
  28127. height: math.unit(5 + 6 / 12, "feet"),
  28128. weight: math.unit(150, "lb"),
  28129. name: "Front",
  28130. image: {
  28131. source: "./media/characters/theo/front.svg",
  28132. extra: 1184 / 1131,
  28133. bottom: 7.4 / 1191
  28134. }
  28135. },
  28136. },
  28137. [
  28138. {
  28139. name: "Micro",
  28140. height: math.unit(5, "inches")
  28141. },
  28142. {
  28143. name: "Normal",
  28144. height: math.unit(5 + 6 / 12, "feet"),
  28145. default: true
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(5 + 9 / 12, "feet"),
  28154. weight: math.unit(130, "lb"),
  28155. name: "Front",
  28156. image: {
  28157. source: "./media/characters/cecelia-swift/front.svg",
  28158. extra: 502 / 484,
  28159. bottom: 23 / 523
  28160. }
  28161. },
  28162. back: {
  28163. height: math.unit(5 + 9 / 12, "feet"),
  28164. weight: math.unit(130, "lb"),
  28165. name: "Back",
  28166. image: {
  28167. source: "./media/characters/cecelia-swift/back.svg",
  28168. extra: 499 / 485,
  28169. bottom: 12 / 511
  28170. }
  28171. },
  28172. head: {
  28173. height: math.unit(0.90, "feet"),
  28174. name: "Head",
  28175. image: {
  28176. source: "./media/characters/cecelia-swift/head.svg"
  28177. }
  28178. },
  28179. rump: {
  28180. height: math.unit(1.75, "feet"),
  28181. name: "Rump",
  28182. image: {
  28183. source: "./media/characters/cecelia-swift/rump.svg"
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(5 + 9 / 12, "feet"),
  28191. default: true
  28192. },
  28193. {
  28194. name: "Big",
  28195. height: math.unit(50, "feet")
  28196. },
  28197. {
  28198. name: "Macro",
  28199. height: math.unit(100, "feet")
  28200. },
  28201. {
  28202. name: "Macro+",
  28203. height: math.unit(500, "feet")
  28204. },
  28205. {
  28206. name: "Macro++",
  28207. height: math.unit(1000, "feet")
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(6, "feet"),
  28216. weight: math.unit(150, "lb"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/kaunan/front.svg",
  28220. extra: 2890 / 2523,
  28221. bottom: 49 / 2939
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Macro",
  28228. height: math.unit(150, "feet"),
  28229. default: true
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28235. {
  28236. front: {
  28237. height: math.unit(175, "cm"),
  28238. weight: math.unit(60, "kg"),
  28239. name: "Front",
  28240. image: {
  28241. source: "./media/characters/fei/front.svg",
  28242. extra: 1873/1723,
  28243. bottom: 53/1926
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Mortal",
  28250. height: math.unit(175, "cm")
  28251. },
  28252. {
  28253. name: "Normal",
  28254. height: math.unit(3500, "m"),
  28255. default: true
  28256. },
  28257. {
  28258. name: "Stroll",
  28259. height: math.unit(17.5, "km")
  28260. },
  28261. {
  28262. name: "Showoff",
  28263. height: math.unit(175, "km")
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28269. {
  28270. front: {
  28271. height: math.unit(7, "feet"),
  28272. weight: math.unit(1000, "kg"),
  28273. name: "Front",
  28274. image: {
  28275. source: "./media/characters/edrax/front.svg",
  28276. extra: 2838 / 2550,
  28277. bottom: 130 / 2968
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Small",
  28284. height: math.unit(7, "feet")
  28285. },
  28286. {
  28287. name: "Normal",
  28288. height: math.unit(1500, "meters")
  28289. },
  28290. {
  28291. name: "Mega",
  28292. height: math.unit(12000000, "km"),
  28293. default: true
  28294. },
  28295. {
  28296. name: "Megamacro",
  28297. height: math.unit(10600000, "lightyears")
  28298. },
  28299. {
  28300. name: "Hypermacro",
  28301. height: math.unit(256, "yottameters")
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28307. {
  28308. front: {
  28309. height: math.unit(10, "feet"),
  28310. weight: math.unit(750, "lb"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/clove/front.svg",
  28314. extra: 1918/1751,
  28315. bottom: 52/1970
  28316. }
  28317. },
  28318. back: {
  28319. height: math.unit(10, "feet"),
  28320. weight: math.unit(750, "lb"),
  28321. name: "Back",
  28322. image: {
  28323. source: "./media/characters/clove/back.svg",
  28324. extra: 1912/1747,
  28325. bottom: 50/1962
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(10, "feet"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(4, "feet"),
  28342. weight: math.unit(50, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/alex-rabbit/front.svg",
  28346. extra: 507 / 458,
  28347. bottom: 18.5 / 527
  28348. }
  28349. },
  28350. back: {
  28351. height: math.unit(4, "feet"),
  28352. weight: math.unit(50, "lb"),
  28353. name: "Back",
  28354. image: {
  28355. source: "./media/characters/alex-rabbit/back.svg",
  28356. extra: 502 / 460,
  28357. bottom: 18.9 / 521
  28358. }
  28359. },
  28360. },
  28361. [
  28362. {
  28363. name: "Normal",
  28364. height: math.unit(4, "feet"),
  28365. default: true
  28366. },
  28367. ]
  28368. ))
  28369. characterMakers.push(() => makeCharacter(
  28370. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28371. {
  28372. front: {
  28373. height: math.unit(1 + 3 / 12, "feet"),
  28374. weight: math.unit(80, "lb"),
  28375. name: "Front",
  28376. image: {
  28377. source: "./media/characters/zander-rose/front.svg",
  28378. extra: 916 / 797,
  28379. bottom: 17 / 933
  28380. }
  28381. },
  28382. back: {
  28383. height: math.unit(1 + 3 / 12, "feet"),
  28384. weight: math.unit(80, "lb"),
  28385. name: "Back",
  28386. image: {
  28387. source: "./media/characters/zander-rose/back.svg",
  28388. extra: 903 / 779,
  28389. bottom: 31 / 934
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(1 + 3 / 12, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28403. {
  28404. anthro: {
  28405. height: math.unit(6, "feet"),
  28406. weight: math.unit(150, "lb"),
  28407. name: "Anthro",
  28408. image: {
  28409. source: "./media/characters/razz/anthro.svg",
  28410. extra: 1437 / 1343,
  28411. bottom: 48 / 1485
  28412. }
  28413. },
  28414. feral: {
  28415. height: math.unit(6, "feet"),
  28416. weight: math.unit(150, "lb"),
  28417. name: "Feral",
  28418. image: {
  28419. source: "./media/characters/razz/feral.svg",
  28420. extra: 2569 / 1385,
  28421. bottom: 95 / 2664
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(6, "feet"),
  28429. default: true
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28435. {
  28436. front: {
  28437. height: math.unit(9 + 4 / 12, "feet"),
  28438. weight: math.unit(500, "lb"),
  28439. name: "Front",
  28440. image: {
  28441. source: "./media/characters/morrigan/front.svg",
  28442. extra: 2707 / 2579,
  28443. bottom: 156 / 2863
  28444. }
  28445. },
  28446. },
  28447. [
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(9 + 4 / 12, "feet"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(5, "stories"),
  28460. weight: math.unit(4000, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/jenene/front.svg",
  28464. extra: 1780 / 1710,
  28465. bottom: 57 / 1837
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Normal",
  28472. height: math.unit(5, "stories"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28479. {
  28480. taurSfw: {
  28481. height: math.unit(10, "meters"),
  28482. weight: math.unit(17500, "kg"),
  28483. name: "Taur",
  28484. image: {
  28485. source: "./media/characters/faey/taur-sfw.svg",
  28486. extra: 1200 / 968,
  28487. bottom: 41 / 1241
  28488. }
  28489. },
  28490. chestmaw: {
  28491. height: math.unit(2.01, "meters"),
  28492. name: "Chestmaw",
  28493. image: {
  28494. source: "./media/characters/faey/chestmaw.svg"
  28495. }
  28496. },
  28497. foot: {
  28498. height: math.unit(2.43, "meters"),
  28499. name: "Foot",
  28500. image: {
  28501. source: "./media/characters/faey/foot.svg"
  28502. }
  28503. },
  28504. jaws: {
  28505. height: math.unit(1.66, "meters"),
  28506. name: "Jaws",
  28507. image: {
  28508. source: "./media/characters/faey/jaws.svg"
  28509. }
  28510. },
  28511. tongues: {
  28512. height: math.unit(2.01, "meters"),
  28513. name: "Tongues",
  28514. image: {
  28515. source: "./media/characters/faey/tongues.svg"
  28516. }
  28517. },
  28518. },
  28519. [
  28520. {
  28521. name: "Small",
  28522. height: math.unit(10, "meters"),
  28523. default: true
  28524. },
  28525. {
  28526. name: "Big",
  28527. height: math.unit(500000, "km")
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(7, "feet"),
  28536. weight: math.unit(275, "lb"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/roku/front.svg",
  28540. extra: 903 / 878,
  28541. bottom: 37 / 940
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(7, "feet"),
  28549. default: true
  28550. },
  28551. {
  28552. name: "Macro",
  28553. height: math.unit(500, "feet")
  28554. },
  28555. {
  28556. name: "Megamacro",
  28557. height: math.unit(200, "miles")
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(6 + 2 / 12, "feet"),
  28566. weight: math.unit(150, "lb"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/lira/front.svg",
  28570. extra: 1727 / 1605,
  28571. bottom: 26 / 1753
  28572. }
  28573. },
  28574. back: {
  28575. height: math.unit(6 + 2 / 12, "feet"),
  28576. weight: math.unit(150, "lb"),
  28577. name: "Back",
  28578. image: {
  28579. source: "./media/characters/lira/back.svg",
  28580. extra: 1713/1621,
  28581. bottom: 20/1733
  28582. }
  28583. },
  28584. hand: {
  28585. height: math.unit(0.75, "feet"),
  28586. name: "Hand",
  28587. image: {
  28588. source: "./media/characters/lira/hand.svg"
  28589. }
  28590. },
  28591. maw: {
  28592. height: math.unit(0.65, "feet"),
  28593. name: "Maw",
  28594. image: {
  28595. source: "./media/characters/lira/maw.svg"
  28596. }
  28597. },
  28598. pawDigi: {
  28599. height: math.unit(1.6, "feet"),
  28600. name: "Paw Digi",
  28601. image: {
  28602. source: "./media/characters/lira/paw-digi.svg"
  28603. }
  28604. },
  28605. pawPlanti: {
  28606. height: math.unit(1.4, "feet"),
  28607. name: "Paw Planti",
  28608. image: {
  28609. source: "./media/characters/lira/paw-planti.svg"
  28610. }
  28611. },
  28612. },
  28613. [
  28614. {
  28615. name: "Normal",
  28616. height: math.unit(6 + 2 / 12, "feet"),
  28617. default: true
  28618. },
  28619. {
  28620. name: "Macro",
  28621. height: math.unit(100, "feet")
  28622. },
  28623. {
  28624. name: "Macro²",
  28625. height: math.unit(1600, "feet")
  28626. },
  28627. {
  28628. name: "Planetary",
  28629. height: math.unit(20, "earths")
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(6, "feet"),
  28638. weight: math.unit(150, "lb"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/hadjet/front.svg",
  28642. extra: 1480 / 1346,
  28643. bottom: 26 / 1506
  28644. }
  28645. },
  28646. frontNsfw: {
  28647. height: math.unit(6, "feet"),
  28648. weight: math.unit(150, "lb"),
  28649. name: "Front (NSFW)",
  28650. image: {
  28651. source: "./media/characters/hadjet/front-nsfw.svg",
  28652. extra: 1440 / 1358,
  28653. bottom: 52 / 1492
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Macro",
  28660. height: math.unit(10, "stories"),
  28661. default: true
  28662. },
  28663. {
  28664. name: "Megamacro",
  28665. height: math.unit(1.5, "miles")
  28666. },
  28667. {
  28668. name: "Megamacro+",
  28669. height: math.unit(5, "miles")
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28675. {
  28676. side: {
  28677. height: math.unit(106, "feet"),
  28678. weight: math.unit(500, "tonnes"),
  28679. name: "Side",
  28680. image: {
  28681. source: "./media/characters/kodran/side.svg",
  28682. extra: 553 / 480,
  28683. bottom: 33 / 586
  28684. }
  28685. },
  28686. front: {
  28687. height: math.unit(132, "feet"),
  28688. weight: math.unit(500, "tonnes"),
  28689. name: "Front",
  28690. image: {
  28691. source: "./media/characters/kodran/front.svg",
  28692. extra: 667 / 643,
  28693. bottom: 42 / 709
  28694. }
  28695. },
  28696. flying: {
  28697. height: math.unit(350, "feet"),
  28698. weight: math.unit(500, "tonnes"),
  28699. name: "Flying",
  28700. image: {
  28701. source: "./media/characters/kodran/flying.svg"
  28702. }
  28703. },
  28704. foot: {
  28705. height: math.unit(33, "feet"),
  28706. name: "Foot",
  28707. image: {
  28708. source: "./media/characters/kodran/foot.svg"
  28709. }
  28710. },
  28711. footFront: {
  28712. height: math.unit(19, "feet"),
  28713. name: "Foot (Front)",
  28714. image: {
  28715. source: "./media/characters/kodran/foot-front.svg",
  28716. extra: 261 / 261,
  28717. bottom: 91 / 352
  28718. }
  28719. },
  28720. headFront: {
  28721. height: math.unit(53, "feet"),
  28722. name: "Head (Front)",
  28723. image: {
  28724. source: "./media/characters/kodran/head-front.svg"
  28725. }
  28726. },
  28727. headSide: {
  28728. height: math.unit(65, "feet"),
  28729. name: "Head (Side)",
  28730. image: {
  28731. source: "./media/characters/kodran/head-side.svg"
  28732. }
  28733. },
  28734. throat: {
  28735. height: math.unit(79, "feet"),
  28736. name: "Throat",
  28737. image: {
  28738. source: "./media/characters/kodran/throat.svg"
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Large",
  28745. height: math.unit(106, "feet"),
  28746. default: true
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28752. {
  28753. side: {
  28754. height: math.unit(11, "feet"),
  28755. weight: math.unit(150, "lb"),
  28756. name: "Side",
  28757. image: {
  28758. source: "./media/characters/pyxaron/side.svg",
  28759. extra: 305 / 195,
  28760. bottom: 17 / 322
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(11, "feet"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(6, "feet"),
  28777. weight: math.unit(150, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/meep/front.svg",
  28781. extra: 88 / 80,
  28782. bottom: 6 / 94
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Fun Sized",
  28789. height: math.unit(2, "inches"),
  28790. default: true
  28791. },
  28792. {
  28793. name: "Friend Sized",
  28794. height: math.unit(8, "inches")
  28795. },
  28796. ]
  28797. ))
  28798. characterMakers.push(() => makeCharacter(
  28799. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28800. {
  28801. front: {
  28802. height: math.unit(15, "feet"),
  28803. weight: math.unit(2500, "lb"),
  28804. name: "Front",
  28805. image: {
  28806. source: "./media/characters/holly-rabbit/front.svg",
  28807. extra: 1433 / 1233,
  28808. bottom: 125 / 1558
  28809. }
  28810. },
  28811. dick: {
  28812. height: math.unit(4.6, "feet"),
  28813. name: "Dick",
  28814. image: {
  28815. source: "./media/characters/holly-rabbit/dick.svg"
  28816. }
  28817. },
  28818. },
  28819. [
  28820. {
  28821. name: "Normal",
  28822. height: math.unit(15, "feet"),
  28823. default: true
  28824. },
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(250, "feet")
  28828. },
  28829. {
  28830. name: "Macro+",
  28831. height: math.unit(2500, "feet")
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28837. {
  28838. front: {
  28839. height: math.unit(3.02, "meters"),
  28840. weight: math.unit(500, "kg"),
  28841. name: "Front",
  28842. image: {
  28843. source: "./media/characters/drena/front.svg",
  28844. extra: 282 / 243,
  28845. bottom: 8 / 290
  28846. }
  28847. },
  28848. side: {
  28849. height: math.unit(3.02, "meters"),
  28850. weight: math.unit(500, "kg"),
  28851. name: "Side",
  28852. image: {
  28853. source: "./media/characters/drena/side.svg",
  28854. extra: 280 / 245,
  28855. bottom: 10 / 290
  28856. }
  28857. },
  28858. back: {
  28859. height: math.unit(3.02, "meters"),
  28860. weight: math.unit(500, "kg"),
  28861. name: "Back",
  28862. image: {
  28863. source: "./media/characters/drena/back.svg",
  28864. extra: 278 / 243,
  28865. bottom: 2 / 280
  28866. }
  28867. },
  28868. foot: {
  28869. height: math.unit(0.75, "meters"),
  28870. name: "Foot",
  28871. image: {
  28872. source: "./media/characters/drena/foot.svg"
  28873. }
  28874. },
  28875. maw: {
  28876. height: math.unit(0.82, "meters"),
  28877. name: "Maw",
  28878. image: {
  28879. source: "./media/characters/drena/maw.svg"
  28880. }
  28881. },
  28882. rump: {
  28883. height: math.unit(0.93, "meters"),
  28884. name: "Rump",
  28885. image: {
  28886. source: "./media/characters/drena/rump.svg"
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(3.02, "meters"),
  28894. default: true
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(6 + 4 / 12, "feet"),
  28903. weight: math.unit(250, "lb"),
  28904. name: "Front",
  28905. image: {
  28906. source: "./media/characters/remmyzilla/front.svg",
  28907. extra: 4033 / 3588,
  28908. bottom: 123 / 4156
  28909. }
  28910. },
  28911. back: {
  28912. height: math.unit(6 + 4 / 12, "feet"),
  28913. weight: math.unit(250, "lb"),
  28914. name: "Back",
  28915. image: {
  28916. source: "./media/characters/remmyzilla/back.svg",
  28917. extra: 2687 / 2555,
  28918. bottom: 48 / 2735
  28919. }
  28920. },
  28921. paw: {
  28922. height: math.unit(1.73, "feet"),
  28923. name: "Paw",
  28924. image: {
  28925. source: "./media/characters/remmyzilla/paw.svg"
  28926. }
  28927. },
  28928. maw: {
  28929. height: math.unit(1.73, "feet"),
  28930. name: "Maw",
  28931. image: {
  28932. source: "./media/characters/remmyzilla/maw.svg"
  28933. }
  28934. },
  28935. },
  28936. [
  28937. {
  28938. name: "Normal",
  28939. height: math.unit(6 + 4 / 12, "feet")
  28940. },
  28941. {
  28942. name: "Minimacro",
  28943. height: math.unit(12 + 8 / 12, "feet")
  28944. },
  28945. {
  28946. name: "Normal",
  28947. height: math.unit(640, "feet"),
  28948. default: true
  28949. },
  28950. {
  28951. name: "Megamacro",
  28952. height: math.unit(6400, "feet")
  28953. },
  28954. {
  28955. name: "Gigamacro",
  28956. height: math.unit(64000, "miles")
  28957. },
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28962. {
  28963. front: {
  28964. height: math.unit(2.5, "meters"),
  28965. weight: math.unit(300, "lb"),
  28966. name: "Front",
  28967. image: {
  28968. source: "./media/characters/lawrence/front.svg",
  28969. extra: 357 / 335,
  28970. bottom: 30 / 387
  28971. }
  28972. },
  28973. back: {
  28974. height: math.unit(2.5, "meters"),
  28975. weight: math.unit(300, "lb"),
  28976. name: "Back",
  28977. image: {
  28978. source: "./media/characters/lawrence/back.svg",
  28979. extra: 357 / 338,
  28980. bottom: 16 / 373
  28981. }
  28982. },
  28983. head: {
  28984. height: math.unit(0.9, "meter"),
  28985. name: "Head",
  28986. image: {
  28987. source: "./media/characters/lawrence/head.svg"
  28988. }
  28989. },
  28990. maw: {
  28991. height: math.unit(0.7, "meter"),
  28992. name: "Maw",
  28993. image: {
  28994. source: "./media/characters/lawrence/maw.svg"
  28995. }
  28996. },
  28997. footBottom: {
  28998. height: math.unit(0.5, "meter"),
  28999. name: "Foot (Bottom)",
  29000. image: {
  29001. source: "./media/characters/lawrence/foot-bottom.svg"
  29002. }
  29003. },
  29004. footTop: {
  29005. height: math.unit(0.5, "meter"),
  29006. name: "Foot (Top)",
  29007. image: {
  29008. source: "./media/characters/lawrence/foot-top.svg"
  29009. }
  29010. },
  29011. },
  29012. [
  29013. {
  29014. name: "Normal",
  29015. height: math.unit(2.5, "meters"),
  29016. default: true
  29017. },
  29018. {
  29019. name: "Macro",
  29020. height: math.unit(95, "meters")
  29021. },
  29022. {
  29023. name: "Megamacro",
  29024. height: math.unit(150, "km")
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29030. {
  29031. front: {
  29032. height: math.unit(4.2, "meters"),
  29033. name: "Front",
  29034. image: {
  29035. source: "./media/characters/sydney/front.svg",
  29036. extra: 1323 / 1277,
  29037. bottom: 111 / 1434
  29038. }
  29039. },
  29040. },
  29041. [
  29042. {
  29043. name: "Normal",
  29044. height: math.unit(4.2, "meters"),
  29045. default: true
  29046. },
  29047. ]
  29048. ))
  29049. characterMakers.push(() => makeCharacter(
  29050. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29051. {
  29052. back: {
  29053. height: math.unit(201, "feet"),
  29054. name: "Back",
  29055. image: {
  29056. source: "./media/characters/jessica/back.svg",
  29057. extra: 273 / 259,
  29058. bottom: 7 / 280
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Normal",
  29065. height: math.unit(201, "feet"),
  29066. default: true
  29067. },
  29068. {
  29069. name: "Megamacro",
  29070. height: math.unit(8, "miles")
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29076. {
  29077. side: {
  29078. height: math.unit(5.6, "m"),
  29079. weight: math.unit(8000, "kg"),
  29080. name: "Side",
  29081. image: {
  29082. source: "./media/characters/victoria/side.svg",
  29083. extra: 1542/1229,
  29084. bottom: 124/1666
  29085. }
  29086. },
  29087. maw: {
  29088. height: math.unit(7.14, "feet"),
  29089. name: "Maw",
  29090. image: {
  29091. source: "./media/characters/victoria/maw.svg"
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Normal",
  29098. height: math.unit(5.6, "m"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29105. {
  29106. front: {
  29107. height: math.unit(5 + 6 / 12, "feet"),
  29108. name: "Front",
  29109. image: {
  29110. source: "./media/characters/cat/front.svg",
  29111. extra: 1449/1295,
  29112. bottom: 34/1483
  29113. },
  29114. form: "cat",
  29115. default: true
  29116. },
  29117. back: {
  29118. height: math.unit(5 + 6 / 12, "feet"),
  29119. name: "Back",
  29120. image: {
  29121. source: "./media/characters/cat/back.svg",
  29122. extra: 1466/1301,
  29123. bottom: 19/1485
  29124. },
  29125. form: "cat"
  29126. },
  29127. taur: {
  29128. height: math.unit(7, "feet"),
  29129. name: "Taur",
  29130. image: {
  29131. source: "./media/characters/cat/taur.svg",
  29132. extra: 1389/1233,
  29133. bottom: 83/1472
  29134. },
  29135. form: "taur",
  29136. default: true
  29137. },
  29138. lucarioFront: {
  29139. height: math.unit(4, "feet"),
  29140. name: "Lucario (Front)",
  29141. image: {
  29142. source: "./media/characters/cat/lucario-front.svg",
  29143. extra: 1149/1019,
  29144. bottom: 84/1233
  29145. },
  29146. form: "lucario",
  29147. default: true
  29148. },
  29149. lucarioBack: {
  29150. height: math.unit(4, "feet"),
  29151. name: "Lucario (Back)",
  29152. image: {
  29153. source: "./media/characters/cat/lucario-back.svg",
  29154. extra: 1190/1059,
  29155. bottom: 33/1223
  29156. },
  29157. form: "lucario"
  29158. },
  29159. megaLucario: {
  29160. height: math.unit(4, "feet"),
  29161. name: "Mega Lucario",
  29162. image: {
  29163. source: "./media/characters/cat/mega-lucario.svg",
  29164. extra: 1515 / 1319,
  29165. bottom: 63 / 1578
  29166. },
  29167. form: "lucario"
  29168. },
  29169. nickit: {
  29170. height: math.unit(2, "feet"),
  29171. name: "Nickit",
  29172. image: {
  29173. source: "./media/characters/cat/nickit.svg",
  29174. extra: 1980 / 1585,
  29175. bottom: 102 / 2082
  29176. },
  29177. form: "nickit",
  29178. default: true
  29179. },
  29180. lopunnyFront: {
  29181. height: math.unit(5, "feet"),
  29182. name: "Lopunny (Front)",
  29183. image: {
  29184. source: "./media/characters/cat/lopunny-front.svg",
  29185. extra: 1782 / 1469,
  29186. bottom: 38 / 1820
  29187. },
  29188. form: "lopunny",
  29189. default: true
  29190. },
  29191. lopunnyBack: {
  29192. height: math.unit(5, "feet"),
  29193. name: "Lopunny (Back)",
  29194. image: {
  29195. source: "./media/characters/cat/lopunny-back.svg",
  29196. extra: 1660 / 1490,
  29197. bottom: 25 / 1685
  29198. },
  29199. form: "lopunny"
  29200. },
  29201. },
  29202. [
  29203. {
  29204. name: "Really small",
  29205. height: math.unit(1, "nm")
  29206. },
  29207. {
  29208. name: "Micro",
  29209. height: math.unit(5, "inches")
  29210. },
  29211. {
  29212. name: "Normal",
  29213. height: math.unit(5 + 6 / 12, "feet"),
  29214. default: true
  29215. },
  29216. {
  29217. name: "Macro",
  29218. height: math.unit(50, "feet")
  29219. },
  29220. {
  29221. name: "Macro+",
  29222. height: math.unit(150, "feet")
  29223. },
  29224. {
  29225. name: "Megamacro",
  29226. height: math.unit(100, "miles")
  29227. },
  29228. ]
  29229. ))
  29230. characterMakers.push(() => makeCharacter(
  29231. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29232. {
  29233. front: {
  29234. height: math.unit(63.4, "meters"),
  29235. weight: math.unit(3.28349e+6, "kilograms"),
  29236. name: "Front",
  29237. image: {
  29238. source: "./media/characters/kirina-violet/front.svg",
  29239. extra: 2812 / 2725,
  29240. bottom: 0 / 2812
  29241. }
  29242. },
  29243. back: {
  29244. height: math.unit(63.4, "meters"),
  29245. weight: math.unit(3.28349e+6, "kilograms"),
  29246. name: "Back",
  29247. image: {
  29248. source: "./media/characters/kirina-violet/back.svg",
  29249. extra: 2812 / 2725,
  29250. bottom: 0 / 2812
  29251. }
  29252. },
  29253. mouth: {
  29254. height: math.unit(4.35, "meters"),
  29255. name: "Mouth",
  29256. image: {
  29257. source: "./media/characters/kirina-violet/mouth.svg"
  29258. }
  29259. },
  29260. paw: {
  29261. height: math.unit(5.6, "meters"),
  29262. name: "Paw",
  29263. image: {
  29264. source: "./media/characters/kirina-violet/paw.svg"
  29265. }
  29266. },
  29267. tail: {
  29268. height: math.unit(18, "meters"),
  29269. name: "Tail",
  29270. image: {
  29271. source: "./media/characters/kirina-violet/tail.svg"
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Macro",
  29278. height: math.unit(63.4, "meters"),
  29279. default: true
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29285. {
  29286. front: {
  29287. height: math.unit(75, "feet"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/cat-gigachu/front.svg",
  29291. extra: 1239/1027,
  29292. bottom: 32/1271
  29293. }
  29294. },
  29295. back: {
  29296. height: math.unit(75, "feet"),
  29297. name: "Back",
  29298. image: {
  29299. source: "./media/characters/cat-gigachu/back.svg",
  29300. extra: 1229/1030,
  29301. bottom: 9/1238
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Dynamax",
  29308. height: math.unit(75, "feet"),
  29309. default: true
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(6, "feet"),
  29318. weight: math.unit(150, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/sfaiyan/front.svg",
  29322. extra: 999 / 978,
  29323. bottom: 5 / 1004
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Normal",
  29330. height: math.unit(1.82, "meters")
  29331. },
  29332. {
  29333. name: "Giant",
  29334. height: math.unit(2.27, "km"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(179, "cm"),
  29344. weight: math.unit(100, "kg"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/raunehkeli/front.svg",
  29348. extra: 1934 / 1926,
  29349. bottom: 0 / 1934
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(179, "cm")
  29357. },
  29358. {
  29359. name: "Maximum",
  29360. height: math.unit(575, "meters"),
  29361. default: true
  29362. },
  29363. ]
  29364. ))
  29365. characterMakers.push(() => makeCharacter(
  29366. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29367. {
  29368. front: {
  29369. height: math.unit(6, "feet"),
  29370. weight: math.unit(150, "lb"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29374. extra: 2625 / 2518,
  29375. bottom: 60 / 2685
  29376. }
  29377. },
  29378. },
  29379. [
  29380. {
  29381. name: "Normal",
  29382. height: math.unit(6 + 2 / 12, "feet")
  29383. },
  29384. {
  29385. name: "Macro",
  29386. height: math.unit(1180, "feet"),
  29387. default: true
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(5 + 6 / 12, "feet"),
  29396. weight: math.unit(108, "lb"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/lilith-zott/front.svg",
  29400. extra: 2510 / 2238,
  29401. bottom: 100 / 2610
  29402. }
  29403. },
  29404. frontDressed: {
  29405. height: math.unit(5 + 6 / 12, "feet"),
  29406. weight: math.unit(108, "lb"),
  29407. name: "Front (Dressed)",
  29408. image: {
  29409. source: "./media/characters/lilith-zott/front-dressed.svg",
  29410. extra: 2510 / 2238,
  29411. bottom: 100 / 2610
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(5 + 6 / 12, "feet")
  29419. },
  29420. {
  29421. name: "Macro",
  29422. height: math.unit(1030, "feet"),
  29423. default: true
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(6, "feet"),
  29432. weight: math.unit(150, "lb"),
  29433. name: "Front",
  29434. image: {
  29435. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29436. extra: 2567 / 2435,
  29437. bottom: 39 / 2606
  29438. }
  29439. },
  29440. frontSuper: {
  29441. height: math.unit(6, "feet"),
  29442. name: "Front (Super)",
  29443. image: {
  29444. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29445. extra: 2567 / 2435,
  29446. bottom: 39 / 2606
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(5 + 10 / 12, "feet")
  29454. },
  29455. {
  29456. name: "Macro",
  29457. height: math.unit(1100, "feet"),
  29458. default: true
  29459. },
  29460. ]
  29461. ))
  29462. characterMakers.push(() => makeCharacter(
  29463. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29464. {
  29465. front: {
  29466. height: math.unit(100, "miles"),
  29467. name: "Front",
  29468. image: {
  29469. source: "./media/characters/sona/front.svg",
  29470. extra: 2433 / 2201,
  29471. bottom: 53 / 2486
  29472. }
  29473. },
  29474. foot: {
  29475. height: math.unit(16.1, "miles"),
  29476. name: "Foot",
  29477. image: {
  29478. source: "./media/characters/sona/foot.svg"
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Macro",
  29485. height: math.unit(100, "miles"),
  29486. default: true
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29492. {
  29493. front: {
  29494. height: math.unit(6, "feet"),
  29495. weight: math.unit(150, "lb"),
  29496. name: "Front",
  29497. image: {
  29498. source: "./media/characters/bailey/front.svg",
  29499. extra: 1778 / 1724,
  29500. bottom: 30 / 1808
  29501. }
  29502. },
  29503. },
  29504. [
  29505. {
  29506. name: "Micro",
  29507. height: math.unit(4, "inches")
  29508. },
  29509. {
  29510. name: "Normal",
  29511. height: math.unit(5 + 5 / 12, "feet"),
  29512. default: true
  29513. },
  29514. {
  29515. name: "Macro",
  29516. height: math.unit(250, "feet")
  29517. },
  29518. {
  29519. name: "Megamacro",
  29520. height: math.unit(100, "miles")
  29521. },
  29522. ]
  29523. ))
  29524. characterMakers.push(() => makeCharacter(
  29525. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29526. {
  29527. front: {
  29528. height: math.unit(5 + 2 / 12, "feet"),
  29529. weight: math.unit(120, "lb"),
  29530. name: "Front",
  29531. image: {
  29532. source: "./media/characters/snaps/front.svg",
  29533. extra: 2370 / 2177,
  29534. bottom: 48 / 2418
  29535. }
  29536. },
  29537. back: {
  29538. height: math.unit(5 + 2 / 12, "feet"),
  29539. weight: math.unit(120, "lb"),
  29540. name: "Back",
  29541. image: {
  29542. source: "./media/characters/snaps/back.svg",
  29543. extra: 2408 / 2258,
  29544. bottom: 15 / 2423
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Micro",
  29551. height: math.unit(9, "inches")
  29552. },
  29553. {
  29554. name: "Normal",
  29555. height: math.unit(5 + 2 / 12, "feet"),
  29556. default: true
  29557. },
  29558. {
  29559. name: "Mini Macro",
  29560. height: math.unit(10, "feet")
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29566. {
  29567. front: {
  29568. height: math.unit(1.8, "meters"),
  29569. weight: math.unit(85, "kg"),
  29570. name: "Front",
  29571. image: {
  29572. source: "./media/characters/azteck/front.svg",
  29573. extra: 2815 / 2625,
  29574. bottom: 89 / 2904
  29575. }
  29576. },
  29577. back: {
  29578. height: math.unit(1.8, "meters"),
  29579. weight: math.unit(85, "kg"),
  29580. name: "Back",
  29581. image: {
  29582. source: "./media/characters/azteck/back.svg",
  29583. extra: 2856 / 2648,
  29584. bottom: 85 / 2941
  29585. }
  29586. },
  29587. frontDressed: {
  29588. height: math.unit(1.8, "meters"),
  29589. weight: math.unit(85, "kg"),
  29590. name: "Front (Dressed)",
  29591. image: {
  29592. source: "./media/characters/azteck/front-dressed.svg",
  29593. extra: 2147 / 2003,
  29594. bottom: 68 / 2215
  29595. }
  29596. },
  29597. head: {
  29598. height: math.unit(0.47, "meters"),
  29599. weight: math.unit(85, "kg"),
  29600. name: "Head",
  29601. image: {
  29602. source: "./media/characters/azteck/head.svg"
  29603. }
  29604. },
  29605. },
  29606. [
  29607. {
  29608. name: "Bite sized",
  29609. height: math.unit(16, "cm")
  29610. },
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(1.8, "meters"),
  29614. default: true
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29620. {
  29621. front: {
  29622. height: math.unit(6, "feet"),
  29623. weight: math.unit(150, "lb"),
  29624. name: "Front",
  29625. image: {
  29626. source: "./media/characters/pidge/front.svg",
  29627. extra: 620 / 588,
  29628. bottom: 9 / 629
  29629. }
  29630. },
  29631. back: {
  29632. height: math.unit(6, "feet"),
  29633. weight: math.unit(150, "lb"),
  29634. name: "Back",
  29635. image: {
  29636. source: "./media/characters/pidge/back.svg",
  29637. extra: 620 / 588,
  29638. bottom: 9 / 629
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Macro",
  29645. height: math.unit(1, "mile"),
  29646. default: true
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(6, "feet"),
  29655. weight: math.unit(150, "lb"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/en/front.svg",
  29659. extra: 1697 / 1563,
  29660. bottom: 103 / 1800
  29661. }
  29662. },
  29663. back: {
  29664. height: math.unit(6, "feet"),
  29665. weight: math.unit(150, "lb"),
  29666. name: "Back",
  29667. image: {
  29668. source: "./media/characters/en/back.svg",
  29669. extra: 1700 / 1570,
  29670. bottom: 51 / 1751
  29671. }
  29672. },
  29673. frontDressed: {
  29674. height: math.unit(6, "feet"),
  29675. weight: math.unit(150, "lb"),
  29676. name: "Front (Dressed)",
  29677. image: {
  29678. source: "./media/characters/en/front-dressed.svg",
  29679. extra: 1697 / 1563,
  29680. bottom: 103 / 1800
  29681. }
  29682. },
  29683. backDressed: {
  29684. height: math.unit(6, "feet"),
  29685. weight: math.unit(150, "lb"),
  29686. name: "Back (Dressed)",
  29687. image: {
  29688. source: "./media/characters/en/back-dressed.svg",
  29689. extra: 1700 / 1570,
  29690. bottom: 51 / 1751
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Macro",
  29697. height: math.unit(210, "feet"),
  29698. default: true
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(6, "feet"),
  29707. weight: math.unit(150, "lb"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/haze-orris/front.svg",
  29711. extra: 3975 / 3525,
  29712. bottom: 137 / 4112
  29713. }
  29714. },
  29715. },
  29716. [
  29717. {
  29718. name: "Micro",
  29719. height: math.unit(150, "mm"),
  29720. default: true
  29721. },
  29722. ]
  29723. ))
  29724. characterMakers.push(() => makeCharacter(
  29725. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29726. {
  29727. front: {
  29728. height: math.unit(6, "feet"),
  29729. weight: math.unit(150, "lb"),
  29730. name: "Front",
  29731. image: {
  29732. source: "./media/characters/casselene-yaro/front.svg",
  29733. extra: 4721 / 4541,
  29734. bottom: 82 / 4803
  29735. }
  29736. },
  29737. back: {
  29738. height: math.unit(6, "feet"),
  29739. weight: math.unit(150, "lb"),
  29740. name: "Back",
  29741. image: {
  29742. source: "./media/characters/casselene-yaro/back.svg",
  29743. extra: 4569 / 4377,
  29744. bottom: 69 / 4638
  29745. }
  29746. },
  29747. frontDressed: {
  29748. height: math.unit(6, "feet"),
  29749. weight: math.unit(150, "lb"),
  29750. name: "Front-dressed",
  29751. image: {
  29752. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29753. extra: 4721 / 4541,
  29754. bottom: 82 / 4803
  29755. }
  29756. },
  29757. },
  29758. [
  29759. {
  29760. name: "Macro",
  29761. height: math.unit(190, "feet"),
  29762. default: true
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29768. {
  29769. front: {
  29770. height: math.unit(6, "feet"),
  29771. weight: math.unit(150, "lb"),
  29772. name: "Front",
  29773. image: {
  29774. source: "./media/characters/myra-rue-delore/front.svg",
  29775. extra: 1340 / 1308,
  29776. bottom: 67 / 1407
  29777. }
  29778. },
  29779. back: {
  29780. height: math.unit(6, "feet"),
  29781. weight: math.unit(150, "lb"),
  29782. name: "Back",
  29783. image: {
  29784. source: "./media/characters/myra-rue-delore/back.svg",
  29785. extra: 1341 / 1310,
  29786. bottom: 40 / 1381
  29787. }
  29788. },
  29789. frontDressed: {
  29790. height: math.unit(6, "feet"),
  29791. weight: math.unit(150, "lb"),
  29792. name: "Front (Dressed)",
  29793. image: {
  29794. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29795. extra: 1340 / 1308,
  29796. bottom: 67 / 1407
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Macro",
  29803. height: math.unit(150, "feet"),
  29804. default: true
  29805. },
  29806. ]
  29807. ))
  29808. characterMakers.push(() => makeCharacter(
  29809. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29810. {
  29811. front: {
  29812. height: math.unit(10, "feet"),
  29813. weight: math.unit(15015, "lb"),
  29814. name: "Front",
  29815. image: {
  29816. source: "./media/characters/fem!plat/front.svg",
  29817. extra: 2799 / 2604,
  29818. bottom: 149 / 2948
  29819. }
  29820. },
  29821. },
  29822. [
  29823. {
  29824. name: "Normal",
  29825. height: math.unit(10, "feet"),
  29826. default: true
  29827. },
  29828. {
  29829. name: "Macro",
  29830. height: math.unit(100, "feet")
  29831. },
  29832. {
  29833. name: "Megamacro",
  29834. height: math.unit(1000, "feet")
  29835. },
  29836. ]
  29837. ))
  29838. characterMakers.push(() => makeCharacter(
  29839. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29840. {
  29841. front: {
  29842. height: math.unit(15 + 5 / 12, "feet"),
  29843. weight: math.unit(4600, "lb"),
  29844. name: "Front",
  29845. image: {
  29846. source: "./media/characters/neapolitan-ananassa/front.svg",
  29847. extra: 2903 / 2736,
  29848. bottom: 0 / 2903
  29849. }
  29850. },
  29851. side: {
  29852. height: math.unit(15 + 5 / 12, "feet"),
  29853. weight: math.unit(4600, "lb"),
  29854. name: "Side",
  29855. image: {
  29856. source: "./media/characters/neapolitan-ananassa/side.svg",
  29857. extra: 2925 / 2719,
  29858. bottom: 0 / 2925
  29859. }
  29860. },
  29861. back: {
  29862. height: math.unit(15 + 5 / 12, "feet"),
  29863. weight: math.unit(4600, "lb"),
  29864. name: "Back",
  29865. image: {
  29866. source: "./media/characters/neapolitan-ananassa/back.svg",
  29867. extra: 2903 / 2736,
  29868. bottom: 0 / 2903
  29869. }
  29870. },
  29871. },
  29872. [
  29873. {
  29874. name: "Normal",
  29875. height: math.unit(15 + 5 / 12, "feet"),
  29876. default: true
  29877. },
  29878. {
  29879. name: "Post-Millenium",
  29880. height: math.unit(35 + 5 / 12, "feet")
  29881. },
  29882. {
  29883. name: "Post-Era",
  29884. height: math.unit(450 + 5 / 12, "feet")
  29885. },
  29886. ]
  29887. ))
  29888. characterMakers.push(() => makeCharacter(
  29889. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29890. {
  29891. front: {
  29892. height: math.unit(300, "meters"),
  29893. weight: math.unit(125000, "tonnes"),
  29894. name: "Front",
  29895. image: {
  29896. source: "./media/characters/pazuzu/front.svg",
  29897. extra: 877 / 794,
  29898. bottom: 47 / 924
  29899. }
  29900. },
  29901. },
  29902. [
  29903. {
  29904. name: "Macro",
  29905. height: math.unit(300, "meters"),
  29906. default: true
  29907. },
  29908. ]
  29909. ))
  29910. characterMakers.push(() => makeCharacter(
  29911. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29912. {
  29913. side: {
  29914. height: math.unit(10 + 7 / 12, "feet"),
  29915. weight: math.unit(2.5, "tons"),
  29916. name: "Side",
  29917. image: {
  29918. source: "./media/characters/aasha/side.svg",
  29919. extra: 1345 / 1245,
  29920. bottom: 111 / 1456
  29921. }
  29922. },
  29923. back: {
  29924. height: math.unit(10 + 7 / 12, "feet"),
  29925. weight: math.unit(2.5, "tons"),
  29926. name: "Back",
  29927. image: {
  29928. source: "./media/characters/aasha/back.svg",
  29929. extra: 1133 / 1057,
  29930. bottom: 257 / 1390
  29931. }
  29932. },
  29933. },
  29934. [
  29935. {
  29936. name: "Normal",
  29937. height: math.unit(10 + 7 / 12, "feet"),
  29938. default: true
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(6 + 3 / 12, "feet"),
  29947. name: "Front",
  29948. image: {
  29949. source: "./media/characters/nevan/front.svg",
  29950. extra: 704 / 704,
  29951. bottom: 28 / 732
  29952. }
  29953. },
  29954. back: {
  29955. height: math.unit(6 + 3 / 12, "feet"),
  29956. name: "Back",
  29957. image: {
  29958. source: "./media/characters/nevan/back.svg",
  29959. extra: 714 / 714,
  29960. bottom: 21 / 735
  29961. }
  29962. },
  29963. frontFlaccid: {
  29964. height: math.unit(6 + 3 / 12, "feet"),
  29965. name: "Front (Flaccid)",
  29966. image: {
  29967. source: "./media/characters/nevan/front-flaccid.svg",
  29968. extra: 704 / 704,
  29969. bottom: 28 / 732
  29970. }
  29971. },
  29972. frontErect: {
  29973. height: math.unit(6 + 3 / 12, "feet"),
  29974. name: "Front (Erect)",
  29975. image: {
  29976. source: "./media/characters/nevan/front-erect.svg",
  29977. extra: 704 / 704,
  29978. bottom: 28 / 732
  29979. }
  29980. },
  29981. backFlaccid: {
  29982. height: math.unit(6 + 3 / 12, "feet"),
  29983. name: "Back (Flaccid)",
  29984. image: {
  29985. source: "./media/characters/nevan/back-flaccid.svg",
  29986. extra: 714 / 714,
  29987. bottom: 21 / 735
  29988. }
  29989. },
  29990. },
  29991. [
  29992. {
  29993. name: "Normal",
  29994. height: math.unit(6 + 3 / 12, "feet"),
  29995. default: true
  29996. },
  29997. ]
  29998. ))
  29999. characterMakers.push(() => makeCharacter(
  30000. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30001. {
  30002. front: {
  30003. height: math.unit(4, "feet"),
  30004. name: "Front",
  30005. image: {
  30006. source: "./media/characters/arhan/front.svg",
  30007. extra: 3368 / 3133,
  30008. bottom: 0 / 3368
  30009. }
  30010. },
  30011. side: {
  30012. height: math.unit(4, "feet"),
  30013. name: "Side",
  30014. image: {
  30015. source: "./media/characters/arhan/side.svg",
  30016. extra: 3347 / 3105,
  30017. bottom: 0 / 3347
  30018. }
  30019. },
  30020. tongue: {
  30021. height: math.unit(1.42, "feet"),
  30022. name: "Tongue",
  30023. image: {
  30024. source: "./media/characters/arhan/tongue.svg"
  30025. }
  30026. },
  30027. head: {
  30028. height: math.unit(0.85, "feet"),
  30029. name: "Head",
  30030. image: {
  30031. source: "./media/characters/arhan/head.svg"
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(4, "feet"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(5 + 7.5 / 12, "feet"),
  30048. weight: math.unit(120, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/digi-duncan/front.svg",
  30052. extra: 330 / 326,
  30053. bottom: 16 / 346
  30054. }
  30055. },
  30056. side: {
  30057. height: math.unit(5 + 7.5 / 12, "feet"),
  30058. weight: math.unit(120, "lb"),
  30059. name: "Side",
  30060. image: {
  30061. source: "./media/characters/digi-duncan/side.svg",
  30062. extra: 341 / 337,
  30063. bottom: 1 / 342
  30064. }
  30065. },
  30066. back: {
  30067. height: math.unit(5 + 7.5 / 12, "feet"),
  30068. weight: math.unit(120, "lb"),
  30069. name: "Back",
  30070. image: {
  30071. source: "./media/characters/digi-duncan/back.svg",
  30072. extra: 330 / 326,
  30073. bottom: 12 / 342
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Speck",
  30080. height: math.unit(0.25, "mm")
  30081. },
  30082. {
  30083. name: "Micro",
  30084. height: math.unit(5, "mm")
  30085. },
  30086. {
  30087. name: "Tiny",
  30088. height: math.unit(0.5, "inches"),
  30089. default: true
  30090. },
  30091. {
  30092. name: "Human",
  30093. height: math.unit(5 + 7.5 / 12, "feet")
  30094. },
  30095. {
  30096. name: "Minigiant",
  30097. height: math.unit(8 + 5.25, "feet")
  30098. },
  30099. {
  30100. name: "Giant",
  30101. height: math.unit(2000, "feet")
  30102. },
  30103. {
  30104. name: "Mega",
  30105. height: math.unit(371.1, "miles")
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30111. {
  30112. front: {
  30113. height: math.unit(2, "meters"),
  30114. weight: math.unit(350, "kg"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30118. extra: 898 / 838,
  30119. bottom: 9 / 907
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Micro",
  30126. height: math.unit(8, "meters")
  30127. },
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(50, "meters"),
  30131. default: true
  30132. },
  30133. {
  30134. name: "Macro",
  30135. height: math.unit(500, "meters")
  30136. },
  30137. ]
  30138. ))
  30139. characterMakers.push(() => makeCharacter(
  30140. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30141. {
  30142. front: {
  30143. height: math.unit(6 + 6 / 12, "feet"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/khardesh/front.svg",
  30147. extra: 1788/1596,
  30148. bottom: 66/1854
  30149. }
  30150. },
  30151. back: {
  30152. height: math.unit(6 + 6 / 12, "feet"),
  30153. name: "Back",
  30154. image: {
  30155. source: "./media/characters/khardesh/back.svg",
  30156. extra: 1781/1584,
  30157. bottom: 68/1849
  30158. }
  30159. },
  30160. },
  30161. [
  30162. {
  30163. name: "Normal",
  30164. height: math.unit(6 + 6 / 12, "feet"),
  30165. default: true
  30166. },
  30167. {
  30168. name: "Normal+",
  30169. height: math.unit(4, "meters")
  30170. },
  30171. {
  30172. name: "Macro",
  30173. height: math.unit(50, "meters")
  30174. },
  30175. {
  30176. name: "Macro+",
  30177. height: math.unit(100, "meters")
  30178. },
  30179. {
  30180. name: "Megamacro",
  30181. height: math.unit(20, "km")
  30182. },
  30183. ]
  30184. ))
  30185. characterMakers.push(() => makeCharacter(
  30186. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30187. {
  30188. front: {
  30189. height: math.unit(6, "feet"),
  30190. weight: math.unit(150, "lb"),
  30191. name: "Front",
  30192. image: {
  30193. source: "./media/characters/kosho/front.svg",
  30194. extra: 1847 / 1847,
  30195. bottom: 86 / 1933
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Second-stage micro",
  30202. height: math.unit(0.5, "inches")
  30203. },
  30204. {
  30205. name: "First-stage micro",
  30206. height: math.unit(6, "inches")
  30207. },
  30208. {
  30209. name: "Normal",
  30210. height: math.unit(6, "feet"),
  30211. default: true
  30212. },
  30213. {
  30214. name: "First-stage macro",
  30215. height: math.unit(72, "feet")
  30216. },
  30217. {
  30218. name: "Second-stage macro",
  30219. height: math.unit(864, "feet")
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30225. {
  30226. normal: {
  30227. height: math.unit(4 + 6 / 12, "feet"),
  30228. name: "Normal",
  30229. image: {
  30230. source: "./media/characters/hydra/normal.svg",
  30231. extra: 2833 / 2634,
  30232. bottom: 68 / 2901
  30233. }
  30234. },
  30235. smol: {
  30236. height: math.unit(0.705, "inches"),
  30237. name: "Smol",
  30238. image: {
  30239. source: "./media/characters/hydra/smol.svg",
  30240. extra: 2715 / 2540,
  30241. bottom: 0 / 2715
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Normal",
  30248. height: math.unit(4 + 6 / 12, "feet"),
  30249. default: true
  30250. }
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30255. {
  30256. front: {
  30257. height: math.unit(0.6, "cm"),
  30258. name: "Front",
  30259. image: {
  30260. source: "./media/characters/daz/front.svg",
  30261. extra: 1682 / 1164,
  30262. bottom: 42 / 1724
  30263. }
  30264. },
  30265. },
  30266. [
  30267. {
  30268. name: "Normal",
  30269. height: math.unit(0.6, "cm"),
  30270. default: true
  30271. },
  30272. ]
  30273. ))
  30274. characterMakers.push(() => makeCharacter(
  30275. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30276. {
  30277. front: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(235, "lb"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/theo-pangolin/front.svg",
  30283. extra: 1996 / 1969,
  30284. bottom: 115 / 2111
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(6, "feet"),
  30289. weight: math.unit(235, "lb"),
  30290. name: "Back",
  30291. image: {
  30292. source: "./media/characters/theo-pangolin/back.svg",
  30293. extra: 1979 / 1979,
  30294. bottom: 40 / 2019
  30295. }
  30296. },
  30297. feral: {
  30298. height: math.unit(2, "feet"),
  30299. weight: math.unit(30, "lb"),
  30300. name: "Feral",
  30301. image: {
  30302. source: "./media/characters/theo-pangolin/feral.svg",
  30303. extra: 803 / 791,
  30304. bottom: 181 / 984
  30305. }
  30306. },
  30307. footFive: {
  30308. height: math.unit(1.43, "feet"),
  30309. name: "Foot (Five Toes)",
  30310. image: {
  30311. source: "./media/characters/theo-pangolin/foot-five.svg"
  30312. }
  30313. },
  30314. footFour: {
  30315. height: math.unit(1.43, "feet"),
  30316. name: "Foot (Four Toes)",
  30317. image: {
  30318. source: "./media/characters/theo-pangolin/foot-four.svg"
  30319. }
  30320. },
  30321. handFour: {
  30322. height: math.unit(0.81, "feet"),
  30323. name: "Hand (Four Fingers)",
  30324. image: {
  30325. source: "./media/characters/theo-pangolin/hand-four.svg"
  30326. }
  30327. },
  30328. handThree: {
  30329. height: math.unit(0.81, "feet"),
  30330. name: "Hand (Three Fingers)",
  30331. image: {
  30332. source: "./media/characters/theo-pangolin/hand-three.svg"
  30333. }
  30334. },
  30335. headFront: {
  30336. height: math.unit(1.37, "feet"),
  30337. name: "Head (Front)",
  30338. image: {
  30339. source: "./media/characters/theo-pangolin/head-front.svg"
  30340. }
  30341. },
  30342. headSide: {
  30343. height: math.unit(1.43, "feet"),
  30344. name: "Head (Side)",
  30345. image: {
  30346. source: "./media/characters/theo-pangolin/head-side.svg"
  30347. }
  30348. },
  30349. tongue: {
  30350. height: math.unit(2.29, "feet"),
  30351. name: "Tongue",
  30352. image: {
  30353. source: "./media/characters/theo-pangolin/tongue.svg"
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(6, "feet")
  30361. },
  30362. {
  30363. name: "Macro",
  30364. height: math.unit(400, "feet"),
  30365. default: true
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30371. {
  30372. front: {
  30373. height: math.unit(6, "inches"),
  30374. weight: math.unit(0.036, "kg"),
  30375. name: "Front",
  30376. image: {
  30377. source: "./media/characters/renée/front.svg",
  30378. extra: 900 / 886,
  30379. bottom: 8 / 908
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Nano",
  30386. height: math.unit(1, "nm")
  30387. },
  30388. {
  30389. name: "Micro",
  30390. height: math.unit(1, "mm")
  30391. },
  30392. {
  30393. name: "Normal",
  30394. height: math.unit(6, "inches")
  30395. },
  30396. {
  30397. name: "Macro",
  30398. height: math.unit(2000, "feet"),
  30399. default: true
  30400. },
  30401. {
  30402. name: "Megamacro",
  30403. height: math.unit(2, "km")
  30404. },
  30405. {
  30406. name: "Gigamacro",
  30407. height: math.unit(2000, "km")
  30408. },
  30409. {
  30410. name: "Teramacro",
  30411. height: math.unit(250000, "km")
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30417. {
  30418. front: {
  30419. height: math.unit(4, "meters"),
  30420. weight: math.unit(150, "kg"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/caledvwlch/front.svg",
  30424. extra: 1760 / 1551,
  30425. bottom: 28 / 1788
  30426. }
  30427. },
  30428. side: {
  30429. height: math.unit(4, "meters"),
  30430. weight: math.unit(150, "kg"),
  30431. name: "Side",
  30432. image: {
  30433. source: "./media/characters/caledvwlch/side.svg",
  30434. extra: 1605 / 1536,
  30435. bottom: 31 / 1636
  30436. }
  30437. },
  30438. back: {
  30439. height: math.unit(4, "meters"),
  30440. weight: math.unit(150, "kg"),
  30441. name: "Back",
  30442. image: {
  30443. source: "./media/characters/caledvwlch/back.svg",
  30444. extra: 1635 / 1565,
  30445. bottom: 27 / 1662
  30446. }
  30447. },
  30448. },
  30449. [
  30450. {
  30451. name: "\"Incognito\"",
  30452. height: math.unit(4, "meters")
  30453. },
  30454. {
  30455. name: "Small rampage",
  30456. height: math.unit(600, "meters")
  30457. },
  30458. {
  30459. name: "Mega",
  30460. height: math.unit(30, "km")
  30461. },
  30462. {
  30463. name: "Home-size",
  30464. height: math.unit(50, "km"),
  30465. default: true
  30466. },
  30467. {
  30468. name: "Giga",
  30469. height: math.unit(300, "km")
  30470. },
  30471. {
  30472. name: "Lounging",
  30473. height: math.unit(11000, "km")
  30474. },
  30475. {
  30476. name: "Planet snacking",
  30477. height: math.unit(2000000, "km")
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30483. {
  30484. front: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(215, "lb"),
  30487. name: "Front",
  30488. image: {
  30489. source: "./media/characters/sapphire-svell/front.svg",
  30490. extra: 495 / 455,
  30491. bottom: 20 / 515
  30492. }
  30493. },
  30494. back: {
  30495. height: math.unit(6, "feet"),
  30496. weight: math.unit(216, "lb"),
  30497. name: "Back",
  30498. image: {
  30499. source: "./media/characters/sapphire-svell/back.svg",
  30500. extra: 497 / 477,
  30501. bottom: 7 / 504
  30502. }
  30503. },
  30504. maw: {
  30505. height: math.unit(1.57, "feet"),
  30506. name: "Maw",
  30507. image: {
  30508. source: "./media/characters/sapphire-svell/maw.svg"
  30509. }
  30510. },
  30511. foot: {
  30512. height: math.unit(1.07, "feet"),
  30513. name: "Foot",
  30514. image: {
  30515. source: "./media/characters/sapphire-svell/foot.svg"
  30516. }
  30517. },
  30518. toering: {
  30519. height: math.unit(1.7, "inch"),
  30520. name: "Toering",
  30521. image: {
  30522. source: "./media/characters/sapphire-svell/toering.svg"
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(300, "feet"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Augmented",
  30534. height: math.unit(1250, "feet")
  30535. },
  30536. {
  30537. name: "Unleashed",
  30538. height: math.unit(3000, "feet")
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30544. {
  30545. side: {
  30546. height: math.unit(2 + 3 / 12, "feet"),
  30547. weight: math.unit(110, "lb"),
  30548. name: "Side",
  30549. image: {
  30550. source: "./media/characters/glitch-flux/side.svg",
  30551. extra: 997 / 805,
  30552. bottom: 20 / 1017
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(2 + 3 / 12, "feet"),
  30560. default: true
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(4, "meters"),
  30569. name: "Front",
  30570. image: {
  30571. source: "./media/characters/mid/front.svg",
  30572. extra: 507 / 476,
  30573. bottom: 17 / 524
  30574. }
  30575. },
  30576. back: {
  30577. height: math.unit(4, "meters"),
  30578. name: "Back",
  30579. image: {
  30580. source: "./media/characters/mid/back.svg",
  30581. extra: 519 / 487,
  30582. bottom: 7 / 526
  30583. }
  30584. },
  30585. stuck: {
  30586. height: math.unit(2.2, "meters"),
  30587. name: "Stuck",
  30588. image: {
  30589. source: "./media/characters/mid/stuck.svg",
  30590. extra: 1951 / 1869,
  30591. bottom: 88 / 2039
  30592. }
  30593. }
  30594. },
  30595. [
  30596. {
  30597. name: "Normal",
  30598. height: math.unit(4, "meters"),
  30599. default: true
  30600. },
  30601. {
  30602. name: "Big",
  30603. height: math.unit(10, "meters")
  30604. },
  30605. {
  30606. name: "Macro",
  30607. height: math.unit(800, "meters")
  30608. },
  30609. {
  30610. name: "Megamacro",
  30611. height: math.unit(100, "km")
  30612. },
  30613. {
  30614. name: "Overgrown",
  30615. height: math.unit(1, "parsec")
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30621. {
  30622. front: {
  30623. height: math.unit(2.5, "meters"),
  30624. weight: math.unit(225, "kg"),
  30625. name: "Front",
  30626. image: {
  30627. source: "./media/characters/iris/front.svg",
  30628. extra: 3348 / 3251,
  30629. bottom: 205 / 3553
  30630. }
  30631. },
  30632. maw: {
  30633. height: math.unit(0.56, "meter"),
  30634. name: "Maw",
  30635. image: {
  30636. source: "./media/characters/iris/maw.svg"
  30637. }
  30638. },
  30639. },
  30640. [
  30641. {
  30642. name: "Mewter cat",
  30643. height: math.unit(1.2, "meters")
  30644. },
  30645. {
  30646. name: "Minimacro",
  30647. height: math.unit(2.5, "meters"),
  30648. default: true
  30649. },
  30650. {
  30651. name: "Macro",
  30652. height: math.unit(180, "meters")
  30653. },
  30654. {
  30655. name: "Megamacro",
  30656. height: math.unit(2746, "meters")
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30662. {
  30663. front: {
  30664. height: math.unit(6, "feet"),
  30665. weight: math.unit(135, "lb"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/axel/front.svg",
  30669. extra: 908 / 908,
  30670. bottom: 58 / 966
  30671. }
  30672. },
  30673. side: {
  30674. height: math.unit(6, "feet"),
  30675. weight: math.unit(135, "lb"),
  30676. name: "Side",
  30677. image: {
  30678. source: "./media/characters/axel/side.svg",
  30679. extra: 958 / 958,
  30680. bottom: 11 / 969
  30681. }
  30682. },
  30683. back: {
  30684. height: math.unit(6, "feet"),
  30685. weight: math.unit(135, "lb"),
  30686. name: "Back",
  30687. image: {
  30688. source: "./media/characters/axel/back.svg",
  30689. extra: 887 / 887,
  30690. bottom: 34 / 921
  30691. }
  30692. },
  30693. head: {
  30694. height: math.unit(1.07, "feet"),
  30695. name: "Head",
  30696. image: {
  30697. source: "./media/characters/axel/head.svg"
  30698. }
  30699. },
  30700. beak: {
  30701. height: math.unit(1.4, "feet"),
  30702. name: "Beak",
  30703. image: {
  30704. source: "./media/characters/axel/beak.svg"
  30705. }
  30706. },
  30707. beakSide: {
  30708. height: math.unit(1.4, "feet"),
  30709. name: "Beak Side",
  30710. image: {
  30711. source: "./media/characters/axel/beak-side.svg"
  30712. }
  30713. },
  30714. sheath: {
  30715. height: math.unit(0.5, "feet"),
  30716. name: "Sheath",
  30717. image: {
  30718. source: "./media/characters/axel/sheath.svg"
  30719. }
  30720. },
  30721. dick: {
  30722. height: math.unit(0.98, "feet"),
  30723. name: "Dick",
  30724. image: {
  30725. source: "./media/characters/axel/dick.svg"
  30726. }
  30727. },
  30728. },
  30729. [
  30730. {
  30731. name: "Macro",
  30732. height: math.unit(68, "meters"),
  30733. default: true
  30734. },
  30735. ]
  30736. ))
  30737. characterMakers.push(() => makeCharacter(
  30738. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30739. {
  30740. front: {
  30741. height: math.unit(3.5, "meters"),
  30742. weight: math.unit(1200, "kg"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/joanna/front.svg",
  30746. extra: 1596 / 1488,
  30747. bottom: 29 / 1625
  30748. }
  30749. },
  30750. back: {
  30751. height: math.unit(3.5, "meters"),
  30752. weight: math.unit(1200, "kg"),
  30753. name: "Back",
  30754. image: {
  30755. source: "./media/characters/joanna/back.svg",
  30756. extra: 1594 / 1495,
  30757. bottom: 26 / 1620
  30758. }
  30759. },
  30760. frontShorts: {
  30761. height: math.unit(3.5, "meters"),
  30762. weight: math.unit(1200, "kg"),
  30763. name: "Front (Shorts)",
  30764. image: {
  30765. source: "./media/characters/joanna/front-shorts.svg",
  30766. extra: 1596 / 1488,
  30767. bottom: 29 / 1625
  30768. }
  30769. },
  30770. frontBiker: {
  30771. height: math.unit(3.5, "meters"),
  30772. weight: math.unit(1200, "kg"),
  30773. name: "Front (Biker)",
  30774. image: {
  30775. source: "./media/characters/joanna/front-biker.svg",
  30776. extra: 1596 / 1488,
  30777. bottom: 29 / 1625
  30778. }
  30779. },
  30780. backBiker: {
  30781. height: math.unit(3.5, "meters"),
  30782. weight: math.unit(1200, "kg"),
  30783. name: "Back (Biker)",
  30784. image: {
  30785. source: "./media/characters/joanna/back-biker.svg",
  30786. extra: 1594 / 1495,
  30787. bottom: 88 / 1682
  30788. }
  30789. },
  30790. bikeLeft: {
  30791. height: math.unit(2.4, "meters"),
  30792. weight: math.unit(1600, "kg"),
  30793. name: "Bike (Left)",
  30794. image: {
  30795. source: "./media/characters/joanna/bike-left.svg",
  30796. extra: 720 / 720,
  30797. bottom: 8 / 728
  30798. }
  30799. },
  30800. bikeRight: {
  30801. height: math.unit(2.4, "meters"),
  30802. weight: math.unit(1600, "kg"),
  30803. name: "Bike (Right)",
  30804. image: {
  30805. source: "./media/characters/joanna/bike-right.svg",
  30806. extra: 720 / 720,
  30807. bottom: 8 / 728
  30808. }
  30809. },
  30810. },
  30811. [
  30812. {
  30813. name: "Incognito",
  30814. height: math.unit(3.5, "meters")
  30815. },
  30816. {
  30817. name: "Casual Big",
  30818. height: math.unit(200, "meters")
  30819. },
  30820. {
  30821. name: "Macro",
  30822. height: math.unit(600, "meters")
  30823. },
  30824. {
  30825. name: "Original",
  30826. height: math.unit(20, "km"),
  30827. default: true
  30828. },
  30829. {
  30830. name: "Giga",
  30831. height: math.unit(400, "km")
  30832. },
  30833. {
  30834. name: "Lounging",
  30835. height: math.unit(1500, "km")
  30836. },
  30837. {
  30838. name: "Planetary",
  30839. height: math.unit(200000, "km")
  30840. },
  30841. ]
  30842. ))
  30843. characterMakers.push(() => makeCharacter(
  30844. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30845. {
  30846. front: {
  30847. height: math.unit(6, "feet"),
  30848. weight: math.unit(150, "lb"),
  30849. name: "Front",
  30850. image: {
  30851. source: "./media/characters/hugo-sigil/front.svg",
  30852. extra: 522 / 500,
  30853. bottom: 2 / 524
  30854. }
  30855. },
  30856. back: {
  30857. height: math.unit(6, "feet"),
  30858. weight: math.unit(150, "lb"),
  30859. name: "Back",
  30860. image: {
  30861. source: "./media/characters/hugo-sigil/back.svg",
  30862. extra: 519 / 495,
  30863. bottom: 5 / 524
  30864. }
  30865. },
  30866. maw: {
  30867. height: math.unit(1.4, "feet"),
  30868. weight: math.unit(150, "lb"),
  30869. name: "Maw",
  30870. image: {
  30871. source: "./media/characters/hugo-sigil/maw.svg"
  30872. }
  30873. },
  30874. feet: {
  30875. height: math.unit(1.56, "feet"),
  30876. weight: math.unit(150, "lb"),
  30877. name: "Feet",
  30878. image: {
  30879. source: "./media/characters/hugo-sigil/feet.svg",
  30880. extra: 177 / 177,
  30881. bottom: 12 / 189
  30882. }
  30883. },
  30884. },
  30885. [
  30886. {
  30887. name: "Normal",
  30888. height: math.unit(6, "feet")
  30889. },
  30890. {
  30891. name: "Macro",
  30892. height: math.unit(200, "feet"),
  30893. default: true
  30894. },
  30895. ]
  30896. ))
  30897. characterMakers.push(() => makeCharacter(
  30898. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30899. {
  30900. front: {
  30901. height: math.unit(6, "feet"),
  30902. weight: math.unit(150, "lb"),
  30903. name: "Front",
  30904. image: {
  30905. source: "./media/characters/peri/front.svg",
  30906. extra: 2354 / 2233,
  30907. bottom: 49 / 2403
  30908. }
  30909. },
  30910. },
  30911. [
  30912. {
  30913. name: "Really Small",
  30914. height: math.unit(1, "nm")
  30915. },
  30916. {
  30917. name: "Micro",
  30918. height: math.unit(4, "inches")
  30919. },
  30920. {
  30921. name: "Normal",
  30922. height: math.unit(7, "inches"),
  30923. default: true
  30924. },
  30925. {
  30926. name: "Macro",
  30927. height: math.unit(400, "feet")
  30928. },
  30929. {
  30930. name: "Megamacro",
  30931. height: math.unit(100, "miles")
  30932. },
  30933. ]
  30934. ))
  30935. characterMakers.push(() => makeCharacter(
  30936. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30937. {
  30938. frontSlim: {
  30939. height: math.unit(7, "feet"),
  30940. name: "Front (Slim)",
  30941. image: {
  30942. source: "./media/characters/issilora/front-slim.svg",
  30943. extra: 529 / 449,
  30944. bottom: 53 / 582
  30945. }
  30946. },
  30947. sideSlim: {
  30948. height: math.unit(7, "feet"),
  30949. name: "Side (Slim)",
  30950. image: {
  30951. source: "./media/characters/issilora/side-slim.svg",
  30952. extra: 570 / 480,
  30953. bottom: 30 / 600
  30954. }
  30955. },
  30956. backSlim: {
  30957. height: math.unit(7, "feet"),
  30958. name: "Back (Slim)",
  30959. image: {
  30960. source: "./media/characters/issilora/back-slim.svg",
  30961. extra: 537 / 455,
  30962. bottom: 46 / 583
  30963. }
  30964. },
  30965. frontBuff: {
  30966. height: math.unit(7, "feet"),
  30967. name: "Front (Buff)",
  30968. image: {
  30969. source: "./media/characters/issilora/front-buff.svg",
  30970. extra: 2310 / 2035,
  30971. bottom: 335 / 2645
  30972. }
  30973. },
  30974. head: {
  30975. height: math.unit(1.94, "feet"),
  30976. name: "Head",
  30977. image: {
  30978. source: "./media/characters/issilora/head.svg"
  30979. }
  30980. },
  30981. },
  30982. [
  30983. {
  30984. name: "Minimum",
  30985. height: math.unit(7, "feet")
  30986. },
  30987. {
  30988. name: "Comfortable",
  30989. height: math.unit(17, "feet")
  30990. },
  30991. {
  30992. name: "Fun Size",
  30993. height: math.unit(47, "feet")
  30994. },
  30995. {
  30996. name: "Natural Macro",
  30997. height: math.unit(137, "feet"),
  30998. default: true
  30999. },
  31000. {
  31001. name: "Maximum Kaiju",
  31002. height: math.unit(397, "feet")
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31008. {
  31009. front: {
  31010. height: math.unit(50 + 9/12, "feet"),
  31011. weight: math.unit(32.8, "tons"),
  31012. name: "Front",
  31013. image: {
  31014. source: "./media/characters/irb'iiritaahn/front.svg",
  31015. extra: 1878/1826,
  31016. bottom: 326/2204
  31017. }
  31018. },
  31019. back: {
  31020. height: math.unit(50 + 9/12, "feet"),
  31021. weight: math.unit(32.8, "tons"),
  31022. name: "Back",
  31023. image: {
  31024. source: "./media/characters/irb'iiritaahn/back.svg",
  31025. extra: 2052/2018,
  31026. bottom: 152/2204
  31027. }
  31028. },
  31029. head: {
  31030. height: math.unit(12.86, "feet"),
  31031. name: "Head",
  31032. image: {
  31033. source: "./media/characters/irb'iiritaahn/head.svg"
  31034. }
  31035. },
  31036. maw: {
  31037. height: math.unit(9.66, "feet"),
  31038. name: "Maw",
  31039. image: {
  31040. source: "./media/characters/irb'iiritaahn/maw.svg"
  31041. }
  31042. },
  31043. frontDick: {
  31044. height: math.unit(8.78461, "feet"),
  31045. name: "Front Dick",
  31046. image: {
  31047. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31048. }
  31049. },
  31050. rearDick: {
  31051. height: math.unit(8.78461, "feet"),
  31052. name: "Rear Dick",
  31053. image: {
  31054. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31055. }
  31056. },
  31057. rearDickUnfolded: {
  31058. height: math.unit(8.78, "feet"),
  31059. name: "Rear Dick (Unfolded)",
  31060. image: {
  31061. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31062. }
  31063. },
  31064. wings: {
  31065. height: math.unit(43, "feet"),
  31066. name: "Wings",
  31067. image: {
  31068. source: "./media/characters/irb'iiritaahn/wings.svg"
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Macro",
  31075. height: math.unit(50 + 9/12, "feet"),
  31076. default: true
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31082. {
  31083. front: {
  31084. height: math.unit(205, "cm"),
  31085. weight: math.unit(102, "kg"),
  31086. name: "Front",
  31087. image: {
  31088. source: "./media/characters/irbisgreif/front.svg",
  31089. extra: 785/706,
  31090. bottom: 13/798
  31091. }
  31092. },
  31093. back: {
  31094. height: math.unit(205, "cm"),
  31095. weight: math.unit(102, "kg"),
  31096. name: "Back",
  31097. image: {
  31098. source: "./media/characters/irbisgreif/back.svg",
  31099. extra: 713/701,
  31100. bottom: 26/739
  31101. }
  31102. },
  31103. frontDressed: {
  31104. height: math.unit(216, "cm"),
  31105. weight: math.unit(102, "kg"),
  31106. name: "Front-dressed",
  31107. image: {
  31108. source: "./media/characters/irbisgreif/front-dressed.svg",
  31109. extra: 902/776,
  31110. bottom: 14/916
  31111. }
  31112. },
  31113. sideDressed: {
  31114. height: math.unit(195, "cm"),
  31115. weight: math.unit(102, "kg"),
  31116. name: "Side-dressed",
  31117. image: {
  31118. source: "./media/characters/irbisgreif/side-dressed.svg",
  31119. extra: 788/688,
  31120. bottom: 21/809
  31121. }
  31122. },
  31123. backDressed: {
  31124. height: math.unit(216, "cm"),
  31125. weight: math.unit(102, "kg"),
  31126. name: "Back-dressed",
  31127. image: {
  31128. source: "./media/characters/irbisgreif/back-dressed.svg",
  31129. extra: 901/783,
  31130. bottom: 10/911
  31131. }
  31132. },
  31133. dick: {
  31134. height: math.unit(0.49, "feet"),
  31135. name: "Dick",
  31136. image: {
  31137. source: "./media/characters/irbisgreif/dick.svg"
  31138. }
  31139. },
  31140. wingTop: {
  31141. height: math.unit(1.93 , "feet"),
  31142. name: "Wing-top",
  31143. image: {
  31144. source: "./media/characters/irbisgreif/wing-top.svg"
  31145. }
  31146. },
  31147. wingBottom: {
  31148. height: math.unit(1.93 , "feet"),
  31149. name: "Wing-bottom",
  31150. image: {
  31151. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Normal",
  31158. height: math.unit(216, "cm"),
  31159. default: true
  31160. },
  31161. ]
  31162. ))
  31163. characterMakers.push(() => makeCharacter(
  31164. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31165. {
  31166. front: {
  31167. height: math.unit(6, "feet"),
  31168. weight: math.unit(150, "lb"),
  31169. name: "Front",
  31170. image: {
  31171. source: "./media/characters/pride/front.svg",
  31172. extra: 1299/1230,
  31173. bottom: 18/1317
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Normal",
  31180. height: math.unit(7, "feet")
  31181. },
  31182. {
  31183. name: "Mini-macro",
  31184. height: math.unit(11, "feet")
  31185. },
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(15, "meters"),
  31189. default: true
  31190. },
  31191. {
  31192. name: "Macro+",
  31193. height: math.unit(40, "meters")
  31194. },
  31195. ]
  31196. ))
  31197. characterMakers.push(() => makeCharacter(
  31198. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31199. {
  31200. front: {
  31201. height: math.unit(4 + 2 / 12, "feet"),
  31202. weight: math.unit(95, "lb"),
  31203. name: "Front",
  31204. image: {
  31205. source: "./media/characters/vaelophis-nyx/front.svg",
  31206. extra: 2532/2330,
  31207. bottom: 0/2532
  31208. }
  31209. },
  31210. back: {
  31211. height: math.unit(4 + 2 / 12, "feet"),
  31212. weight: math.unit(95, "lb"),
  31213. name: "Back",
  31214. image: {
  31215. source: "./media/characters/vaelophis-nyx/back.svg",
  31216. extra: 2484/2361,
  31217. bottom: 0/2484
  31218. }
  31219. },
  31220. feralSide: {
  31221. height: math.unit(2 + 1/12, "feet"),
  31222. weight: math.unit(20, "lb"),
  31223. name: "Feral (Side)",
  31224. image: {
  31225. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31226. extra: 1721/1581,
  31227. bottom: 70/1791
  31228. }
  31229. },
  31230. feralLazing: {
  31231. height: math.unit(1.08, "feet"),
  31232. weight: math.unit(20, "lb"),
  31233. name: "Feral (Lazing)",
  31234. image: {
  31235. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31236. extra: 822/822,
  31237. bottom: 248/1070
  31238. }
  31239. },
  31240. ear: {
  31241. height: math.unit(0.416, "feet"),
  31242. name: "Ear",
  31243. image: {
  31244. source: "./media/characters/vaelophis-nyx/ear.svg"
  31245. }
  31246. },
  31247. eye: {
  31248. height: math.unit(0.0748, "feet"),
  31249. name: "Eye",
  31250. image: {
  31251. source: "./media/characters/vaelophis-nyx/eye.svg"
  31252. }
  31253. },
  31254. mouth: {
  31255. height: math.unit(0.378, "feet"),
  31256. name: "Mouth",
  31257. image: {
  31258. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31259. }
  31260. },
  31261. spade: {
  31262. height: math.unit(0.55, "feet"),
  31263. name: "Spade",
  31264. image: {
  31265. source: "./media/characters/vaelophis-nyx/spade.svg"
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(4 + 2/12, "feet"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31279. {
  31280. front: {
  31281. height: math.unit(7, "feet"),
  31282. weight: math.unit(231, "lb"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/flux/front.svg",
  31286. extra: 919/871,
  31287. bottom: 0/919
  31288. }
  31289. },
  31290. back: {
  31291. height: math.unit(7, "feet"),
  31292. weight: math.unit(231, "lb"),
  31293. name: "Back",
  31294. image: {
  31295. source: "./media/characters/flux/back.svg",
  31296. extra: 1040/992,
  31297. bottom: 0/1040
  31298. }
  31299. },
  31300. frontDressed: {
  31301. height: math.unit(7, "feet"),
  31302. weight: math.unit(231, "lb"),
  31303. name: "Front (Dressed)",
  31304. image: {
  31305. source: "./media/characters/flux/front-dressed.svg",
  31306. extra: 919/871,
  31307. bottom: 0/919
  31308. }
  31309. },
  31310. feralSide: {
  31311. height: math.unit(5, "feet"),
  31312. weight: math.unit(150, "lb"),
  31313. name: "Feral (Side)",
  31314. image: {
  31315. source: "./media/characters/flux/feral-side.svg",
  31316. extra: 598/528,
  31317. bottom: 28/626
  31318. }
  31319. },
  31320. head: {
  31321. height: math.unit(1.585, "feet"),
  31322. name: "Head",
  31323. image: {
  31324. source: "./media/characters/flux/head.svg"
  31325. }
  31326. },
  31327. headSide: {
  31328. height: math.unit(1.74, "feet"),
  31329. name: "Head (Side)",
  31330. image: {
  31331. source: "./media/characters/flux/head-side.svg"
  31332. }
  31333. },
  31334. headSideFire: {
  31335. height: math.unit(1.76, "feet"),
  31336. name: "Head (Side, Fire)",
  31337. image: {
  31338. source: "./media/characters/flux/head-side-fire.svg"
  31339. }
  31340. },
  31341. },
  31342. [
  31343. {
  31344. name: "Normal",
  31345. height: math.unit(7, "feet"),
  31346. default: true
  31347. },
  31348. ]
  31349. ))
  31350. characterMakers.push(() => makeCharacter(
  31351. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31352. {
  31353. front: {
  31354. height: math.unit(9, "feet"),
  31355. weight: math.unit(1012, "lb"),
  31356. name: "Front",
  31357. image: {
  31358. source: "./media/characters/ulfra-lupae/front.svg",
  31359. extra: 1083/1011,
  31360. bottom: 67/1150
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Micro",
  31367. height: math.unit(6, "inches")
  31368. },
  31369. {
  31370. name: "Socializing",
  31371. height: math.unit(6 + 5/12, "feet")
  31372. },
  31373. {
  31374. name: "Normal",
  31375. height: math.unit(9, "feet"),
  31376. default: true
  31377. },
  31378. {
  31379. name: "Macro",
  31380. height: math.unit(150, "feet")
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(5 + 2/12, "feet"),
  31389. weight: math.unit(120, "lb"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/timber/front.svg",
  31393. extra: 2814/2705,
  31394. bottom: 181/2995
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Normal",
  31401. height: math.unit(5 + 2/12, "feet"),
  31402. default: true
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31408. {
  31409. front: {
  31410. height: math.unit(5 + 7/12, "feet"),
  31411. weight: math.unit(220, "lb"),
  31412. name: "Front",
  31413. image: {
  31414. source: "./media/characters/nicki/front.svg",
  31415. extra: 453/419,
  31416. bottom: 7/460
  31417. }
  31418. },
  31419. frontAlt: {
  31420. height: math.unit(5 + 7/12, "feet"),
  31421. weight: math.unit(220, "lb"),
  31422. name: "Front-alt",
  31423. image: {
  31424. source: "./media/characters/nicki/front-alt.svg",
  31425. extra: 435/411,
  31426. bottom: 12/447
  31427. }
  31428. },
  31429. back: {
  31430. height: math.unit(5 + 7/12, "feet"),
  31431. weight: math.unit(220, "lb"),
  31432. name: "Back",
  31433. image: {
  31434. source: "./media/characters/nicki/back.svg",
  31435. extra: 440/413,
  31436. bottom: 19/459
  31437. }
  31438. },
  31439. taur: {
  31440. height: math.unit(7 + 6/12, "feet"),
  31441. weight: math.unit(700, "lb"),
  31442. name: "Taur",
  31443. image: {
  31444. source: "./media/characters/nicki/taur.svg",
  31445. extra: 975/773,
  31446. bottom: 0/975
  31447. }
  31448. },
  31449. frontNsfw: {
  31450. height: math.unit(5 + 7/12, "feet"),
  31451. weight: math.unit(220, "lb"),
  31452. name: "Front (NSFW)",
  31453. image: {
  31454. source: "./media/characters/nicki/front-nsfw.svg",
  31455. extra: 453/419,
  31456. bottom: 7/460
  31457. }
  31458. },
  31459. frontNsfwAlt: {
  31460. height: math.unit(5 + 7/12, "feet"),
  31461. weight: math.unit(220, "lb"),
  31462. name: "Front (Alt, NSFW)",
  31463. image: {
  31464. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31465. extra: 435/411,
  31466. bottom: 12/447
  31467. }
  31468. },
  31469. backNsfw: {
  31470. height: math.unit(5 + 7/12, "feet"),
  31471. weight: math.unit(220, "lb"),
  31472. name: "Back (NSFW)",
  31473. image: {
  31474. source: "./media/characters/nicki/back-nsfw.svg",
  31475. extra: 440/413,
  31476. bottom: 19/459
  31477. }
  31478. },
  31479. head: {
  31480. height: math.unit(2.1, "feet"),
  31481. name: "Head",
  31482. image: {
  31483. source: "./media/characters/nicki/head.svg"
  31484. }
  31485. },
  31486. paw: {
  31487. height: math.unit(1.88, "feet"),
  31488. name: "Paw",
  31489. image: {
  31490. source: "./media/characters/nicki/paw.svg"
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Normal",
  31497. height: math.unit(5 + 7/12, "feet"),
  31498. default: true
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(7 + 10/12, "feet"),
  31507. weight: math.unit(3.5, "tons"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/lee/front.svg",
  31511. extra: 1773/1615,
  31512. bottom: 86/1859
  31513. }
  31514. },
  31515. hand: {
  31516. height: math.unit(1.78, "feet"),
  31517. name: "Hand",
  31518. image: {
  31519. source: "./media/characters/lee/hand.svg"
  31520. }
  31521. },
  31522. maw: {
  31523. height: math.unit(1.18, "feet"),
  31524. name: "Maw",
  31525. image: {
  31526. source: "./media/characters/lee/maw.svg"
  31527. }
  31528. },
  31529. },
  31530. [
  31531. {
  31532. name: "Normal",
  31533. height: math.unit(7 + 10/12, "feet"),
  31534. default: true
  31535. },
  31536. ]
  31537. ))
  31538. characterMakers.push(() => makeCharacter(
  31539. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31540. {
  31541. front: {
  31542. height: math.unit(9, "feet"),
  31543. name: "Front",
  31544. image: {
  31545. source: "./media/characters/guti/front.svg",
  31546. extra: 4551/4355,
  31547. bottom: 123/4674
  31548. }
  31549. },
  31550. tongue: {
  31551. height: math.unit(1, "feet"),
  31552. name: "Tongue",
  31553. image: {
  31554. source: "./media/characters/guti/tongue.svg"
  31555. }
  31556. },
  31557. paw: {
  31558. height: math.unit(1.18, "feet"),
  31559. name: "Paw",
  31560. image: {
  31561. source: "./media/characters/guti/paw.svg"
  31562. }
  31563. },
  31564. },
  31565. [
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(9, "feet"),
  31569. default: true
  31570. },
  31571. ]
  31572. ))
  31573. characterMakers.push(() => makeCharacter(
  31574. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31575. {
  31576. side: {
  31577. height: math.unit(5, "meters"),
  31578. name: "Side",
  31579. image: {
  31580. source: "./media/characters/vesper/side.svg",
  31581. extra: 1605/1518,
  31582. bottom: 0/1605
  31583. }
  31584. },
  31585. },
  31586. [
  31587. {
  31588. name: "Small",
  31589. height: math.unit(5, "meters")
  31590. },
  31591. {
  31592. name: "Sage",
  31593. height: math.unit(100, "meters"),
  31594. default: true
  31595. },
  31596. {
  31597. name: "Fun Size",
  31598. height: math.unit(600, "meters")
  31599. },
  31600. {
  31601. name: "Goddess",
  31602. height: math.unit(20000, "km")
  31603. },
  31604. {
  31605. name: "Maximum",
  31606. height: math.unit(5, "galaxies")
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31612. {
  31613. front: {
  31614. height: math.unit(6 + 3/12, "feet"),
  31615. weight: math.unit(190, "lb"),
  31616. name: "Front",
  31617. image: {
  31618. source: "./media/characters/gawain/front.svg",
  31619. extra: 2222/2139,
  31620. bottom: 90/2312
  31621. }
  31622. },
  31623. back: {
  31624. height: math.unit(6 + 3/12, "feet"),
  31625. weight: math.unit(190, "lb"),
  31626. name: "Back",
  31627. image: {
  31628. source: "./media/characters/gawain/back.svg",
  31629. extra: 2199/2111,
  31630. bottom: 73/2272
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Normal",
  31637. height: math.unit(6 + 3/12, "feet"),
  31638. default: true
  31639. },
  31640. ]
  31641. ))
  31642. characterMakers.push(() => makeCharacter(
  31643. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31644. {
  31645. side: {
  31646. height: math.unit(3.5, "meters"),
  31647. weight: math.unit(16000, "lb"),
  31648. name: "Side",
  31649. image: {
  31650. source: "./media/characters/dascalti/side.svg",
  31651. extra: 392/273,
  31652. bottom: 47/439
  31653. }
  31654. },
  31655. breath: {
  31656. height: math.unit(7.4, "feet"),
  31657. name: "Breath",
  31658. image: {
  31659. source: "./media/characters/dascalti/breath.svg"
  31660. }
  31661. },
  31662. fed: {
  31663. height: math.unit(3.6, "meters"),
  31664. weight: math.unit(16000, "lb"),
  31665. name: "Fed",
  31666. image: {
  31667. source: "./media/characters/dascalti/fed.svg",
  31668. extra: 1419/820,
  31669. bottom: 95/1514
  31670. }
  31671. },
  31672. },
  31673. [
  31674. {
  31675. name: "Normal",
  31676. height: math.unit(3.5, "meters"),
  31677. default: true
  31678. },
  31679. ]
  31680. ))
  31681. characterMakers.push(() => makeCharacter(
  31682. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31683. {
  31684. front: {
  31685. height: math.unit(3 + 5/12, "feet"),
  31686. name: "Front",
  31687. image: {
  31688. source: "./media/characters/mauve/front.svg",
  31689. extra: 1126/1033,
  31690. bottom: 65/1191
  31691. }
  31692. },
  31693. side: {
  31694. height: math.unit(3 + 5/12, "feet"),
  31695. name: "Side",
  31696. image: {
  31697. source: "./media/characters/mauve/side.svg",
  31698. extra: 1089/1001,
  31699. bottom: 29/1118
  31700. }
  31701. },
  31702. back: {
  31703. height: math.unit(3 + 5/12, "feet"),
  31704. name: "Back",
  31705. image: {
  31706. source: "./media/characters/mauve/back.svg",
  31707. extra: 1173/1053,
  31708. bottom: 109/1282
  31709. }
  31710. },
  31711. },
  31712. [
  31713. {
  31714. name: "Normal",
  31715. height: math.unit(3 + 5/12, "feet"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31722. {
  31723. front: {
  31724. height: math.unit(6 + 3/12, "feet"),
  31725. weight: math.unit(430, "lb"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/carlos/front.svg",
  31729. extra: 1964/1913,
  31730. bottom: 70/2034
  31731. }
  31732. },
  31733. },
  31734. [
  31735. {
  31736. name: "Normal",
  31737. height: math.unit(6 + 3/12, "feet"),
  31738. default: true
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31744. {
  31745. back: {
  31746. height: math.unit(5 + 10/12, "feet"),
  31747. weight: math.unit(200, "lb"),
  31748. name: "Back",
  31749. image: {
  31750. source: "./media/characters/jax/back.svg",
  31751. extra: 764/739,
  31752. bottom: 25/789
  31753. }
  31754. },
  31755. },
  31756. [
  31757. {
  31758. name: "Normal",
  31759. height: math.unit(5 + 10/12, "feet"),
  31760. default: true
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31766. {
  31767. front: {
  31768. height: math.unit(8, "feet"),
  31769. weight: math.unit(250, "lb"),
  31770. name: "Front",
  31771. image: {
  31772. source: "./media/characters/eikthynir/front.svg",
  31773. extra: 1332/1166,
  31774. bottom: 82/1414
  31775. }
  31776. },
  31777. back: {
  31778. height: math.unit(8, "feet"),
  31779. weight: math.unit(250, "lb"),
  31780. name: "Back",
  31781. image: {
  31782. source: "./media/characters/eikthynir/back.svg",
  31783. extra: 1342/1190,
  31784. bottom: 19/1361
  31785. }
  31786. },
  31787. dick: {
  31788. height: math.unit(2.35, "feet"),
  31789. name: "Dick",
  31790. image: {
  31791. source: "./media/characters/eikthynir/dick.svg"
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Normal",
  31798. height: math.unit(8, "feet"),
  31799. default: true
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31805. {
  31806. front: {
  31807. height: math.unit(99, "meters"),
  31808. weight: math.unit(13000, "tons"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/zlmos/front.svg",
  31812. extra: 2202/1992,
  31813. bottom: 315/2517
  31814. }
  31815. },
  31816. },
  31817. [
  31818. {
  31819. name: "Macro",
  31820. height: math.unit(99, "meters"),
  31821. default: true
  31822. },
  31823. ]
  31824. ))
  31825. characterMakers.push(() => makeCharacter(
  31826. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31827. {
  31828. front: {
  31829. height: math.unit(6 + 5/12, "feet"),
  31830. name: "Front",
  31831. image: {
  31832. source: "./media/characters/purri/front.svg",
  31833. extra: 1698/1610,
  31834. bottom: 32/1730
  31835. }
  31836. },
  31837. frontAlt: {
  31838. height: math.unit(6 + 5/12, "feet"),
  31839. name: "Front (Alt)",
  31840. image: {
  31841. source: "./media/characters/purri/front-alt.svg",
  31842. extra: 450/420,
  31843. bottom: 26/476
  31844. }
  31845. },
  31846. boots: {
  31847. height: math.unit(5.5, "feet"),
  31848. name: "Boots",
  31849. image: {
  31850. source: "./media/characters/purri/boots.svg",
  31851. extra: 905/853,
  31852. bottom: 18/923
  31853. }
  31854. },
  31855. lying: {
  31856. height: math.unit(2, "feet"),
  31857. name: "Lying",
  31858. image: {
  31859. source: "./media/characters/purri/lying.svg",
  31860. extra: 940/843,
  31861. bottom: 146/1086
  31862. }
  31863. },
  31864. devious: {
  31865. height: math.unit(1.77, "feet"),
  31866. name: "Devious",
  31867. image: {
  31868. source: "./media/characters/purri/devious.svg",
  31869. extra: 1440/1155,
  31870. bottom: 147/1587
  31871. }
  31872. },
  31873. bean: {
  31874. height: math.unit(1.94, "feet"),
  31875. name: "Bean",
  31876. image: {
  31877. source: "./media/characters/purri/bean.svg"
  31878. }
  31879. },
  31880. },
  31881. [
  31882. {
  31883. name: "Micro",
  31884. height: math.unit(1, "mm")
  31885. },
  31886. {
  31887. name: "Normal",
  31888. height: math.unit(6 + 5/12, "feet"),
  31889. default: true
  31890. },
  31891. {
  31892. name: "Macro :3c",
  31893. height: math.unit(2, "miles")
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31899. {
  31900. front: {
  31901. height: math.unit(6 + 2/12, "feet"),
  31902. weight: math.unit(250, "lb"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/moonlight/front.svg",
  31906. extra: 1044/908,
  31907. bottom: 56/1100
  31908. }
  31909. },
  31910. feral: {
  31911. height: math.unit(3 + 1/12, "feet"),
  31912. weight: math.unit(50, "kg"),
  31913. name: "Feral",
  31914. image: {
  31915. source: "./media/characters/moonlight/feral.svg",
  31916. extra: 3705/2791,
  31917. bottom: 145/3850
  31918. }
  31919. },
  31920. paw: {
  31921. height: math.unit(1, "feet"),
  31922. name: "Paw",
  31923. image: {
  31924. source: "./media/characters/moonlight/paw.svg"
  31925. }
  31926. },
  31927. paws: {
  31928. height: math.unit(0.98, "feet"),
  31929. name: "Paws",
  31930. image: {
  31931. source: "./media/characters/moonlight/paws.svg",
  31932. extra: 939/939,
  31933. bottom: 50/989
  31934. }
  31935. },
  31936. mouth: {
  31937. height: math.unit(0.48, "feet"),
  31938. name: "Mouth",
  31939. image: {
  31940. source: "./media/characters/moonlight/mouth.svg"
  31941. }
  31942. },
  31943. dick: {
  31944. height: math.unit(1.46, "feet"),
  31945. name: "Dick",
  31946. image: {
  31947. source: "./media/characters/moonlight/dick.svg"
  31948. }
  31949. },
  31950. },
  31951. [
  31952. {
  31953. name: "Normal",
  31954. height: math.unit(6 + 2/12, "feet"),
  31955. default: true
  31956. },
  31957. {
  31958. name: "Macro",
  31959. height: math.unit(300, "feet")
  31960. },
  31961. {
  31962. name: "Macro+",
  31963. height: math.unit(1, "mile")
  31964. },
  31965. {
  31966. name: "Mt. Moon",
  31967. height: math.unit(5, "miles")
  31968. },
  31969. {
  31970. name: "Megamacro",
  31971. height: math.unit(15, "miles")
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31977. {
  31978. back: {
  31979. height: math.unit(6, "feet"),
  31980. weight: math.unit(150, "lb"),
  31981. name: "Back",
  31982. image: {
  31983. source: "./media/characters/sylen/back.svg",
  31984. extra: 1335/1273,
  31985. bottom: 107/1442
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Normal",
  31992. height: math.unit(5 + 5/12, "feet")
  31993. },
  31994. {
  31995. name: "Megamacro",
  31996. height: math.unit(3, "miles"),
  31997. default: true
  31998. },
  31999. ]
  32000. ))
  32001. characterMakers.push(() => makeCharacter(
  32002. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32003. {
  32004. front: {
  32005. height: math.unit(6, "feet"),
  32006. weight: math.unit(190, "lb"),
  32007. name: "Front",
  32008. image: {
  32009. source: "./media/characters/huttser/front.svg",
  32010. extra: 1152/1058,
  32011. bottom: 23/1175
  32012. }
  32013. },
  32014. side: {
  32015. height: math.unit(6, "feet"),
  32016. weight: math.unit(190, "lb"),
  32017. name: "Side",
  32018. image: {
  32019. source: "./media/characters/huttser/side.svg",
  32020. extra: 1174/1065,
  32021. bottom: 18/1192
  32022. }
  32023. },
  32024. back: {
  32025. height: math.unit(6, "feet"),
  32026. weight: math.unit(190, "lb"),
  32027. name: "Back",
  32028. image: {
  32029. source: "./media/characters/huttser/back.svg",
  32030. extra: 1158/1056,
  32031. bottom: 12/1170
  32032. }
  32033. },
  32034. },
  32035. [
  32036. ]
  32037. ))
  32038. characterMakers.push(() => makeCharacter(
  32039. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32040. {
  32041. side: {
  32042. height: math.unit(12 + 9/12, "feet"),
  32043. weight: math.unit(15000, "lb"),
  32044. name: "Side",
  32045. image: {
  32046. source: "./media/characters/faan/side.svg",
  32047. extra: 2747/2697,
  32048. bottom: 0/2747
  32049. }
  32050. },
  32051. front: {
  32052. height: math.unit(12 + 9/12, "feet"),
  32053. weight: math.unit(15000, "lb"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/faan/front.svg",
  32057. extra: 607/571,
  32058. bottom: 24/631
  32059. }
  32060. },
  32061. head: {
  32062. height: math.unit(2.85, "feet"),
  32063. name: "Head",
  32064. image: {
  32065. source: "./media/characters/faan/head.svg"
  32066. }
  32067. },
  32068. headAlt: {
  32069. height: math.unit(3.13, "feet"),
  32070. name: "Head-alt",
  32071. image: {
  32072. source: "./media/characters/faan/head-alt.svg"
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(12 + 9/12, "feet"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32086. {
  32087. front: {
  32088. height: math.unit(6, "feet"),
  32089. weight: math.unit(300, "lb"),
  32090. name: "Front",
  32091. image: {
  32092. source: "./media/characters/tanio/front.svg",
  32093. extra: 711/673,
  32094. bottom: 25/736
  32095. }
  32096. },
  32097. },
  32098. [
  32099. {
  32100. name: "Normal",
  32101. height: math.unit(6, "feet"),
  32102. default: true
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32108. {
  32109. front: {
  32110. height: math.unit(3, "inches"),
  32111. name: "Front",
  32112. image: {
  32113. source: "./media/characters/noboru/front.svg",
  32114. extra: 1039/932,
  32115. bottom: 18/1057
  32116. }
  32117. },
  32118. },
  32119. [
  32120. {
  32121. name: "Micro",
  32122. height: math.unit(3, "inches"),
  32123. default: true
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(1.85, "meters"),
  32132. weight: math.unit(80, "kg"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/daniel-barrett/front.svg",
  32136. extra: 355/337,
  32137. bottom: 9/364
  32138. }
  32139. },
  32140. },
  32141. [
  32142. {
  32143. name: "Pico",
  32144. height: math.unit(0.0433, "mm")
  32145. },
  32146. {
  32147. name: "Nano",
  32148. height: math.unit(1.5, "mm")
  32149. },
  32150. {
  32151. name: "Micro",
  32152. height: math.unit(5.3, "cm"),
  32153. default: true
  32154. },
  32155. {
  32156. name: "Normal",
  32157. height: math.unit(1.85, "meters")
  32158. },
  32159. {
  32160. name: "Macro",
  32161. height: math.unit(64.7, "meters")
  32162. },
  32163. {
  32164. name: "Megamacro",
  32165. height: math.unit(2.26, "km")
  32166. },
  32167. {
  32168. name: "Gigamacro",
  32169. height: math.unit(79, "km")
  32170. },
  32171. {
  32172. name: "Teramacro",
  32173. height: math.unit(2765, "km")
  32174. },
  32175. {
  32176. name: "Petamacro",
  32177. height: math.unit(96678, "km")
  32178. },
  32179. ]
  32180. ))
  32181. characterMakers.push(() => makeCharacter(
  32182. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32183. {
  32184. front: {
  32185. height: math.unit(30, "meters"),
  32186. weight: math.unit(400, "tons"),
  32187. name: "Front",
  32188. image: {
  32189. source: "./media/characters/zeel/front.svg",
  32190. extra: 2599/2599,
  32191. bottom: 226/2825
  32192. }
  32193. },
  32194. },
  32195. [
  32196. {
  32197. name: "Macro",
  32198. height: math.unit(30, "meters"),
  32199. default: true
  32200. },
  32201. ]
  32202. ))
  32203. characterMakers.push(() => makeCharacter(
  32204. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32205. {
  32206. front: {
  32207. height: math.unit(6 + 7/12, "feet"),
  32208. weight: math.unit(210, "lb"),
  32209. name: "Front",
  32210. image: {
  32211. source: "./media/characters/tarn/front.svg",
  32212. extra: 3517/3220,
  32213. bottom: 91/3608
  32214. }
  32215. },
  32216. back: {
  32217. height: math.unit(6 + 7/12, "feet"),
  32218. weight: math.unit(210, "lb"),
  32219. name: "Back",
  32220. image: {
  32221. source: "./media/characters/tarn/back.svg",
  32222. extra: 3566/3241,
  32223. bottom: 34/3600
  32224. }
  32225. },
  32226. dick: {
  32227. height: math.unit(1.65, "feet"),
  32228. name: "Dick",
  32229. image: {
  32230. source: "./media/characters/tarn/dick.svg"
  32231. }
  32232. },
  32233. paw: {
  32234. height: math.unit(1.80, "feet"),
  32235. name: "Paw",
  32236. image: {
  32237. source: "./media/characters/tarn/paw.svg"
  32238. }
  32239. },
  32240. tongue: {
  32241. height: math.unit(0.97, "feet"),
  32242. name: "Tongue",
  32243. image: {
  32244. source: "./media/characters/tarn/tongue.svg"
  32245. }
  32246. },
  32247. },
  32248. [
  32249. {
  32250. name: "Micro",
  32251. height: math.unit(4, "inches")
  32252. },
  32253. {
  32254. name: "Normal",
  32255. height: math.unit(6 + 7/12, "feet"),
  32256. default: true
  32257. },
  32258. {
  32259. name: "Macro",
  32260. height: math.unit(300, "feet")
  32261. },
  32262. ]
  32263. ))
  32264. characterMakers.push(() => makeCharacter(
  32265. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32266. {
  32267. front: {
  32268. height: math.unit(5 + 7/12, "feet"),
  32269. weight: math.unit(80, "kg"),
  32270. name: "Front",
  32271. image: {
  32272. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32273. extra: 3023/2865,
  32274. bottom: 33/3056
  32275. }
  32276. },
  32277. back: {
  32278. height: math.unit(5 + 7/12, "feet"),
  32279. weight: math.unit(80, "kg"),
  32280. name: "Back",
  32281. image: {
  32282. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32283. extra: 3020/2886,
  32284. bottom: 30/3050
  32285. }
  32286. },
  32287. dick: {
  32288. height: math.unit(0.98, "feet"),
  32289. name: "Dick",
  32290. image: {
  32291. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32292. }
  32293. },
  32294. anatomy: {
  32295. height: math.unit(2.86, "feet"),
  32296. name: "Anatomy",
  32297. image: {
  32298. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Really Small",
  32305. height: math.unit(2, "inches")
  32306. },
  32307. {
  32308. name: "Micro",
  32309. height: math.unit(5.583, "inches")
  32310. },
  32311. {
  32312. name: "Normal",
  32313. height: math.unit(5 + 7/12, "feet"),
  32314. default: true
  32315. },
  32316. {
  32317. name: "Macro",
  32318. height: math.unit(67, "feet")
  32319. },
  32320. {
  32321. name: "Megamacro",
  32322. height: math.unit(134, "feet")
  32323. },
  32324. ]
  32325. ))
  32326. characterMakers.push(() => makeCharacter(
  32327. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32328. {
  32329. front: {
  32330. height: math.unit(9, "feet"),
  32331. weight: math.unit(120, "lb"),
  32332. name: "Front",
  32333. image: {
  32334. source: "./media/characters/sally/front.svg",
  32335. extra: 1506/1349,
  32336. bottom: 66/1572
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "Normal",
  32343. height: math.unit(9, "feet"),
  32344. default: true
  32345. },
  32346. ]
  32347. ))
  32348. characterMakers.push(() => makeCharacter(
  32349. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32350. {
  32351. front: {
  32352. height: math.unit(8, "feet"),
  32353. weight: math.unit(900, "lb"),
  32354. name: "Front",
  32355. image: {
  32356. source: "./media/characters/owen/front.svg",
  32357. extra: 1761/1657,
  32358. bottom: 74/1835
  32359. }
  32360. },
  32361. side: {
  32362. height: math.unit(8, "feet"),
  32363. weight: math.unit(900, "lb"),
  32364. name: "Side",
  32365. image: {
  32366. source: "./media/characters/owen/side.svg",
  32367. extra: 1797/1734,
  32368. bottom: 30/1827
  32369. }
  32370. },
  32371. back: {
  32372. height: math.unit(8, "feet"),
  32373. weight: math.unit(900, "lb"),
  32374. name: "Back",
  32375. image: {
  32376. source: "./media/characters/owen/back.svg",
  32377. extra: 1796/1706,
  32378. bottom: 59/1855
  32379. }
  32380. },
  32381. maw: {
  32382. height: math.unit(1.76, "feet"),
  32383. name: "Maw",
  32384. image: {
  32385. source: "./media/characters/owen/maw.svg"
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(8, "feet"),
  32393. default: true
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32399. {
  32400. front: {
  32401. height: math.unit(4, "feet"),
  32402. weight: math.unit(400, "lb"),
  32403. name: "Front",
  32404. image: {
  32405. source: "./media/characters/ryth/front.svg",
  32406. extra: 1920/1748,
  32407. bottom: 42/1962
  32408. }
  32409. },
  32410. back: {
  32411. height: math.unit(4, "feet"),
  32412. weight: math.unit(400, "lb"),
  32413. name: "Back",
  32414. image: {
  32415. source: "./media/characters/ryth/back.svg",
  32416. extra: 1897/1690,
  32417. bottom: 89/1986
  32418. }
  32419. },
  32420. mouth: {
  32421. height: math.unit(1.39, "feet"),
  32422. name: "Mouth",
  32423. image: {
  32424. source: "./media/characters/ryth/mouth.svg"
  32425. }
  32426. },
  32427. tailmaw: {
  32428. height: math.unit(1.23, "feet"),
  32429. name: "Tailmaw",
  32430. image: {
  32431. source: "./media/characters/ryth/tailmaw.svg"
  32432. }
  32433. },
  32434. goia: {
  32435. height: math.unit(4, "meters"),
  32436. weight: math.unit(10800, "lb"),
  32437. name: "Goia",
  32438. image: {
  32439. source: "./media/characters/ryth/goia.svg",
  32440. extra: 745/640,
  32441. bottom: 107/852
  32442. }
  32443. },
  32444. goiaFront: {
  32445. height: math.unit(4, "meters"),
  32446. weight: math.unit(10800, "lb"),
  32447. name: "Goia (Front)",
  32448. image: {
  32449. source: "./media/characters/ryth/goia-front.svg",
  32450. extra: 750/586,
  32451. bottom: 114/864
  32452. }
  32453. },
  32454. goiaMaw: {
  32455. height: math.unit(5.55, "feet"),
  32456. name: "Goia Maw",
  32457. image: {
  32458. source: "./media/characters/ryth/goia-maw.svg"
  32459. }
  32460. },
  32461. goiaForepaw: {
  32462. height: math.unit(3.5, "feet"),
  32463. name: "Goia Forepaw",
  32464. image: {
  32465. source: "./media/characters/ryth/goia-forepaw.svg"
  32466. }
  32467. },
  32468. goiaHindpaw: {
  32469. height: math.unit(5.55, "feet"),
  32470. name: "Goia Hindpaw",
  32471. image: {
  32472. source: "./media/characters/ryth/goia-hindpaw.svg"
  32473. }
  32474. },
  32475. },
  32476. [
  32477. {
  32478. name: "Normal",
  32479. height: math.unit(4, "feet"),
  32480. default: true
  32481. },
  32482. ]
  32483. ))
  32484. characterMakers.push(() => makeCharacter(
  32485. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32486. {
  32487. front: {
  32488. height: math.unit(7, "feet"),
  32489. weight: math.unit(180, "lb"),
  32490. name: "Front",
  32491. image: {
  32492. source: "./media/characters/necrolance/front.svg",
  32493. extra: 1062/947,
  32494. bottom: 41/1103
  32495. }
  32496. },
  32497. back: {
  32498. height: math.unit(7, "feet"),
  32499. weight: math.unit(180, "lb"),
  32500. name: "Back",
  32501. image: {
  32502. source: "./media/characters/necrolance/back.svg",
  32503. extra: 1045/984,
  32504. bottom: 14/1059
  32505. }
  32506. },
  32507. wing: {
  32508. height: math.unit(2.67, "feet"),
  32509. name: "Wing",
  32510. image: {
  32511. source: "./media/characters/necrolance/wing.svg"
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(7, "feet"),
  32519. default: true
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32525. {
  32526. front: {
  32527. height: math.unit(76, "meters"),
  32528. weight: math.unit(30000, "tons"),
  32529. name: "Front",
  32530. image: {
  32531. source: "./media/characters/tyler/front.svg",
  32532. extra: 1640/1640,
  32533. bottom: 114/1754
  32534. }
  32535. },
  32536. },
  32537. [
  32538. {
  32539. name: "Macro",
  32540. height: math.unit(76, "meters"),
  32541. default: true
  32542. },
  32543. ]
  32544. ))
  32545. characterMakers.push(() => makeCharacter(
  32546. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32547. {
  32548. front: {
  32549. height: math.unit(4 + 11/12, "feet"),
  32550. weight: math.unit(132, "lb"),
  32551. name: "Front",
  32552. image: {
  32553. source: "./media/characters/icey/front.svg",
  32554. extra: 2750/2550,
  32555. bottom: 33/2783
  32556. }
  32557. },
  32558. back: {
  32559. height: math.unit(4 + 11/12, "feet"),
  32560. weight: math.unit(132, "lb"),
  32561. name: "Back",
  32562. image: {
  32563. source: "./media/characters/icey/back.svg",
  32564. extra: 2624/2481,
  32565. bottom: 35/2659
  32566. }
  32567. },
  32568. },
  32569. [
  32570. {
  32571. name: "Normal",
  32572. height: math.unit(4 + 11/12, "feet"),
  32573. default: true
  32574. },
  32575. ]
  32576. ))
  32577. characterMakers.push(() => makeCharacter(
  32578. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32579. {
  32580. front: {
  32581. height: math.unit(100, "feet"),
  32582. weight: math.unit(0, "lb"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/smile/front.svg",
  32586. extra: 2983/2912,
  32587. bottom: 162/3145
  32588. }
  32589. },
  32590. back: {
  32591. height: math.unit(100, "feet"),
  32592. weight: math.unit(0, "lb"),
  32593. name: "Back",
  32594. image: {
  32595. source: "./media/characters/smile/back.svg",
  32596. extra: 3143/3031,
  32597. bottom: 91/3234
  32598. }
  32599. },
  32600. head: {
  32601. height: math.unit(26.3, "feet"),
  32602. weight: math.unit(0, "lb"),
  32603. name: "Head",
  32604. image: {
  32605. source: "./media/characters/smile/head.svg"
  32606. }
  32607. },
  32608. collar: {
  32609. height: math.unit(5.3, "feet"),
  32610. weight: math.unit(0, "lb"),
  32611. name: "Collar",
  32612. image: {
  32613. source: "./media/characters/smile/collar.svg"
  32614. }
  32615. },
  32616. },
  32617. [
  32618. {
  32619. name: "Macro",
  32620. height: math.unit(100, "feet"),
  32621. default: true
  32622. },
  32623. ]
  32624. ))
  32625. characterMakers.push(() => makeCharacter(
  32626. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32627. {
  32628. dragon: {
  32629. height: math.unit(26, "feet"),
  32630. weight: math.unit(36, "tons"),
  32631. name: "Dragon",
  32632. image: {
  32633. source: "./media/characters/arimphae/dragon.svg",
  32634. extra: 1574/983,
  32635. bottom: 357/1931
  32636. }
  32637. },
  32638. drake: {
  32639. height: math.unit(9, "feet"),
  32640. weight: math.unit(1.5, "tons"),
  32641. name: "Drake",
  32642. image: {
  32643. source: "./media/characters/arimphae/drake.svg",
  32644. extra: 1120/925,
  32645. bottom: 435/1555
  32646. }
  32647. },
  32648. },
  32649. [
  32650. {
  32651. name: "Small",
  32652. height: math.unit(26*5/9, "feet")
  32653. },
  32654. {
  32655. name: "Normal",
  32656. height: math.unit(26, "feet"),
  32657. default: true
  32658. },
  32659. ]
  32660. ))
  32661. characterMakers.push(() => makeCharacter(
  32662. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32663. {
  32664. front: {
  32665. height: math.unit(8 + 9/12, "feet"),
  32666. name: "Front",
  32667. image: {
  32668. source: "./media/characters/xander/front.svg",
  32669. extra: 1237/974,
  32670. bottom: 94/1331
  32671. }
  32672. },
  32673. },
  32674. [
  32675. {
  32676. name: "Normal",
  32677. height: math.unit(8 + 9/12, "feet"),
  32678. default: true
  32679. },
  32680. {
  32681. name: "Gaze Grabber",
  32682. height: math.unit(13 + 8/12, "feet")
  32683. },
  32684. {
  32685. name: "Jaw Dropper",
  32686. height: math.unit(27, "feet")
  32687. },
  32688. {
  32689. name: "Show Stopper",
  32690. height: math.unit(136, "feet")
  32691. },
  32692. {
  32693. name: "Superstar",
  32694. height: math.unit(1.9e6, "miles")
  32695. },
  32696. ]
  32697. ))
  32698. characterMakers.push(() => makeCharacter(
  32699. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32700. {
  32701. side: {
  32702. height: math.unit(2100, "feet"),
  32703. name: "Side",
  32704. image: {
  32705. source: "./media/characters/osiris/side.svg",
  32706. extra: 1105/939,
  32707. bottom: 167/1272
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Macro",
  32714. height: math.unit(2100, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(6 + 8/12, "feet"),
  32724. weight: math.unit(225, "lb"),
  32725. name: "Front",
  32726. image: {
  32727. source: "./media/characters/rhys-londe/front.svg",
  32728. extra: 2258/2141,
  32729. bottom: 188/2446
  32730. }
  32731. },
  32732. back: {
  32733. height: math.unit(6 + 8/12, "feet"),
  32734. weight: math.unit(225, "lb"),
  32735. name: "Back",
  32736. image: {
  32737. source: "./media/characters/rhys-londe/back.svg",
  32738. extra: 2237/2137,
  32739. bottom: 63/2300
  32740. }
  32741. },
  32742. frontNsfw: {
  32743. height: math.unit(6 + 8/12, "feet"),
  32744. weight: math.unit(225, "lb"),
  32745. name: "Front (NSFW)",
  32746. image: {
  32747. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32748. extra: 2258/2141,
  32749. bottom: 188/2446
  32750. }
  32751. },
  32752. backNsfw: {
  32753. height: math.unit(6 + 8/12, "feet"),
  32754. weight: math.unit(225, "lb"),
  32755. name: "Back (NSFW)",
  32756. image: {
  32757. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32758. extra: 2237/2137,
  32759. bottom: 63/2300
  32760. }
  32761. },
  32762. dick: {
  32763. height: math.unit(30, "inches"),
  32764. name: "Dick",
  32765. image: {
  32766. source: "./media/characters/rhys-londe/dick.svg"
  32767. }
  32768. },
  32769. maw: {
  32770. height: math.unit(1.6, "feet"),
  32771. name: "Maw",
  32772. image: {
  32773. source: "./media/characters/rhys-londe/maw.svg"
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Normal",
  32780. height: math.unit(6 + 8/12, "feet"),
  32781. default: true
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32787. {
  32788. front: {
  32789. height: math.unit(3 + 10/12, "feet"),
  32790. weight: math.unit(90, "lb"),
  32791. name: "Front",
  32792. image: {
  32793. source: "./media/characters/taivas-ensim/front.svg",
  32794. extra: 1327/1216,
  32795. bottom: 96/1423
  32796. }
  32797. },
  32798. back: {
  32799. height: math.unit(3 + 10/12, "feet"),
  32800. weight: math.unit(90, "lb"),
  32801. name: "Back",
  32802. image: {
  32803. source: "./media/characters/taivas-ensim/back.svg",
  32804. extra: 1355/1247,
  32805. bottom: 11/1366
  32806. }
  32807. },
  32808. frontNsfw: {
  32809. height: math.unit(3 + 10/12, "feet"),
  32810. weight: math.unit(90, "lb"),
  32811. name: "Front (NSFW)",
  32812. image: {
  32813. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32814. extra: 1327/1216,
  32815. bottom: 96/1423
  32816. }
  32817. },
  32818. backNsfw: {
  32819. height: math.unit(3 + 10/12, "feet"),
  32820. weight: math.unit(90, "lb"),
  32821. name: "Back (NSFW)",
  32822. image: {
  32823. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32824. extra: 1355/1247,
  32825. bottom: 11/1366
  32826. }
  32827. },
  32828. },
  32829. [
  32830. {
  32831. name: "Normal",
  32832. height: math.unit(3 + 10/12, "feet"),
  32833. default: true
  32834. },
  32835. ]
  32836. ))
  32837. characterMakers.push(() => makeCharacter(
  32838. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32839. {
  32840. front: {
  32841. height: math.unit(9 + 6/12, "feet"),
  32842. weight: math.unit(940, "lb"),
  32843. name: "Front",
  32844. image: {
  32845. source: "./media/characters/byliss/front.svg",
  32846. extra: 1327/1290,
  32847. bottom: 82/1409
  32848. }
  32849. },
  32850. back: {
  32851. height: math.unit(9 + 6/12, "feet"),
  32852. weight: math.unit(940, "lb"),
  32853. name: "Back",
  32854. image: {
  32855. source: "./media/characters/byliss/back.svg",
  32856. extra: 1376/1349,
  32857. bottom: 9/1385
  32858. }
  32859. },
  32860. frontNsfw: {
  32861. height: math.unit(9 + 6/12, "feet"),
  32862. weight: math.unit(940, "lb"),
  32863. name: "Front (NSFW)",
  32864. image: {
  32865. source: "./media/characters/byliss/front-nsfw.svg",
  32866. extra: 1327/1290,
  32867. bottom: 82/1409
  32868. }
  32869. },
  32870. backNsfw: {
  32871. height: math.unit(9 + 6/12, "feet"),
  32872. weight: math.unit(940, "lb"),
  32873. name: "Back (NSFW)",
  32874. image: {
  32875. source: "./media/characters/byliss/back-nsfw.svg",
  32876. extra: 1376/1349,
  32877. bottom: 9/1385
  32878. }
  32879. },
  32880. },
  32881. [
  32882. {
  32883. name: "Normal",
  32884. height: math.unit(9 + 6/12, "feet"),
  32885. default: true
  32886. },
  32887. ]
  32888. ))
  32889. characterMakers.push(() => makeCharacter(
  32890. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32891. {
  32892. front: {
  32893. height: math.unit(5 + 2/12, "feet"),
  32894. weight: math.unit(200, "lb"),
  32895. name: "Front",
  32896. image: {
  32897. source: "./media/characters/noraly/front.svg",
  32898. extra: 4985/4773,
  32899. bottom: 150/5135
  32900. }
  32901. },
  32902. full: {
  32903. height: math.unit(5 + 2/12, "feet"),
  32904. weight: math.unit(164, "lb"),
  32905. name: "Full",
  32906. image: {
  32907. source: "./media/characters/noraly/full.svg",
  32908. extra: 1114/1059,
  32909. bottom: 35/1149
  32910. }
  32911. },
  32912. fuller: {
  32913. height: math.unit(5 + 2/12, "feet"),
  32914. weight: math.unit(230, "lb"),
  32915. name: "Fuller",
  32916. image: {
  32917. source: "./media/characters/noraly/fuller.svg",
  32918. extra: 1114/1059,
  32919. bottom: 35/1149
  32920. }
  32921. },
  32922. fullest: {
  32923. height: math.unit(5 + 2/12, "feet"),
  32924. weight: math.unit(300, "lb"),
  32925. name: "Fullest",
  32926. image: {
  32927. source: "./media/characters/noraly/fullest.svg",
  32928. extra: 1114/1059,
  32929. bottom: 35/1149
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Normal",
  32936. height: math.unit(5 + 2/12, "feet"),
  32937. default: true
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32943. {
  32944. front: {
  32945. height: math.unit(5 + 2/12, "feet"),
  32946. weight: math.unit(210, "lb"),
  32947. name: "Front",
  32948. image: {
  32949. source: "./media/characters/pera/front.svg",
  32950. extra: 1560/1531,
  32951. bottom: 165/1725
  32952. }
  32953. },
  32954. back: {
  32955. height: math.unit(5 + 2/12, "feet"),
  32956. weight: math.unit(210, "lb"),
  32957. name: "Back",
  32958. image: {
  32959. source: "./media/characters/pera/back.svg",
  32960. extra: 1523/1493,
  32961. bottom: 152/1675
  32962. }
  32963. },
  32964. dick: {
  32965. height: math.unit(2.4, "feet"),
  32966. name: "Dick",
  32967. image: {
  32968. source: "./media/characters/pera/dick.svg"
  32969. }
  32970. },
  32971. },
  32972. [
  32973. {
  32974. name: "Normal",
  32975. height: math.unit(5 + 2/12, "feet"),
  32976. default: true
  32977. },
  32978. ]
  32979. ))
  32980. characterMakers.push(() => makeCharacter(
  32981. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32982. {
  32983. front: {
  32984. height: math.unit(12, "feet"),
  32985. weight: math.unit(3200, "lb"),
  32986. name: "Front",
  32987. image: {
  32988. source: "./media/characters/julian/front.svg",
  32989. extra: 2962/2701,
  32990. bottom: 184/3146
  32991. }
  32992. },
  32993. maw: {
  32994. height: math.unit(5.35, "feet"),
  32995. name: "Maw",
  32996. image: {
  32997. source: "./media/characters/julian/maw.svg"
  32998. }
  32999. },
  33000. paw: {
  33001. height: math.unit(3.07, "feet"),
  33002. name: "Paw",
  33003. image: {
  33004. source: "./media/characters/julian/paw.svg"
  33005. }
  33006. },
  33007. },
  33008. [
  33009. {
  33010. name: "Default",
  33011. height: math.unit(12, "feet"),
  33012. default: true
  33013. },
  33014. {
  33015. name: "Big",
  33016. height: math.unit(50, "feet")
  33017. },
  33018. {
  33019. name: "Really Big",
  33020. height: math.unit(1, "mile")
  33021. },
  33022. {
  33023. name: "Extremely Big",
  33024. height: math.unit(100, "miles")
  33025. },
  33026. {
  33027. name: "Planet Hugger",
  33028. height: math.unit(200, "megameters")
  33029. },
  33030. {
  33031. name: "Unreasonably Big",
  33032. height: math.unit(1e300, "meters")
  33033. },
  33034. ]
  33035. ))
  33036. characterMakers.push(() => makeCharacter(
  33037. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33038. {
  33039. solgooleo: {
  33040. height: math.unit(4, "meters"),
  33041. weight: math.unit(6000*1.5, "kg"),
  33042. volume: math.unit(6000, "liters"),
  33043. name: "Solgooleo",
  33044. image: {
  33045. source: "./media/characters/pi/solgooleo.svg",
  33046. extra: 388/331,
  33047. bottom: 29/417
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(4, "meters"),
  33055. default: true
  33056. },
  33057. ]
  33058. ))
  33059. characterMakers.push(() => makeCharacter(
  33060. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33061. {
  33062. front: {
  33063. height: math.unit(8, "feet"),
  33064. weight: math.unit(4, "tons"),
  33065. name: "Front",
  33066. image: {
  33067. source: "./media/characters/shaun/front.svg",
  33068. extra: 503/495,
  33069. bottom: 20/523
  33070. }
  33071. },
  33072. back: {
  33073. height: math.unit(8, "feet"),
  33074. weight: math.unit(4, "tons"),
  33075. name: "Back",
  33076. image: {
  33077. source: "./media/characters/shaun/back.svg",
  33078. extra: 487/480,
  33079. bottom: 20/507
  33080. }
  33081. },
  33082. },
  33083. [
  33084. {
  33085. name: "Lorg",
  33086. height: math.unit(8, "feet"),
  33087. default: true
  33088. },
  33089. ]
  33090. ))
  33091. characterMakers.push(() => makeCharacter(
  33092. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33093. {
  33094. frontAnthro: {
  33095. height: math.unit(7, "feet"),
  33096. name: "Front",
  33097. image: {
  33098. source: "./media/characters/sini/front-anthro.svg",
  33099. extra: 726/678,
  33100. bottom: 35/761
  33101. },
  33102. form: "anthro",
  33103. default: true
  33104. },
  33105. backAnthro: {
  33106. height: math.unit(7, "feet"),
  33107. name: "Back",
  33108. image: {
  33109. source: "./media/characters/sini/back-anthro.svg",
  33110. extra: 743/701,
  33111. bottom: 12/755
  33112. },
  33113. form: "anthro",
  33114. },
  33115. frontAnthroNsfw: {
  33116. height: math.unit(7, "feet"),
  33117. name: "Front (NSFW)",
  33118. image: {
  33119. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33120. extra: 726/678,
  33121. bottom: 35/761
  33122. },
  33123. form: "anthro"
  33124. },
  33125. backAnthroNsfw: {
  33126. height: math.unit(7, "feet"),
  33127. name: "Back (NSFW)",
  33128. image: {
  33129. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33130. extra: 743/701,
  33131. bottom: 12/755
  33132. },
  33133. form: "anthro",
  33134. },
  33135. mawAnthro: {
  33136. height: math.unit(2.14, "feet"),
  33137. name: "Maw",
  33138. image: {
  33139. source: "./media/characters/sini/maw-anthro.svg"
  33140. },
  33141. form: "anthro"
  33142. },
  33143. dick: {
  33144. height: math.unit(1.45, "feet"),
  33145. name: "Dick",
  33146. image: {
  33147. source: "./media/characters/sini/dick-anthro.svg"
  33148. },
  33149. form: "anthro"
  33150. },
  33151. feral: {
  33152. height: math.unit(16, "feet"),
  33153. name: "Feral",
  33154. image: {
  33155. source: "./media/characters/sini/feral.svg",
  33156. extra: 814/605,
  33157. bottom: 11/825
  33158. },
  33159. form: "feral",
  33160. default: true
  33161. },
  33162. feralNsfw: {
  33163. height: math.unit(16, "feet"),
  33164. name: "Feral (NSFW)",
  33165. image: {
  33166. source: "./media/characters/sini/feral-nsfw.svg",
  33167. extra: 814/605,
  33168. bottom: 11/825
  33169. },
  33170. form: "feral"
  33171. },
  33172. mawFeral: {
  33173. height: math.unit(5.66, "feet"),
  33174. name: "Maw",
  33175. image: {
  33176. source: "./media/characters/sini/maw-feral.svg"
  33177. },
  33178. form: "feral",
  33179. },
  33180. pawFeral: {
  33181. height: math.unit(5.17, "feet"),
  33182. name: "Paw",
  33183. image: {
  33184. source: "./media/characters/sini/paw-feral.svg"
  33185. },
  33186. form: "feral",
  33187. },
  33188. rumpFeral: {
  33189. height: math.unit(13.11, "feet"),
  33190. name: "Rump",
  33191. image: {
  33192. source: "./media/characters/sini/rump-feral.svg"
  33193. },
  33194. form: "feral",
  33195. },
  33196. dickFeral: {
  33197. height: math.unit(1, "feet"),
  33198. name: "Dick",
  33199. image: {
  33200. source: "./media/characters/sini/dick-feral.svg"
  33201. },
  33202. form: "feral",
  33203. },
  33204. eyeFeral: {
  33205. height: math.unit(1.23, "feet"),
  33206. name: "Eye",
  33207. image: {
  33208. source: "./media/characters/sini/eye-feral.svg"
  33209. },
  33210. form: "feral",
  33211. },
  33212. },
  33213. [
  33214. {
  33215. name: "Normal",
  33216. height: math.unit(7, "feet"),
  33217. default: true,
  33218. form: "anthro"
  33219. },
  33220. {
  33221. name: "Normal",
  33222. height: math.unit(16, "feet"),
  33223. default: true,
  33224. form: "feral"
  33225. },
  33226. ],
  33227. {
  33228. "anthro": {
  33229. name: "Anthro",
  33230. default: true
  33231. },
  33232. "feral": {
  33233. name: "Feral",
  33234. }
  33235. }
  33236. ))
  33237. characterMakers.push(() => makeCharacter(
  33238. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33239. {
  33240. side: {
  33241. height: math.unit(13, "meters"),
  33242. weight: math.unit(9072, "kg"),
  33243. name: "Side",
  33244. image: {
  33245. source: "./media/characters/raylldo/side.svg",
  33246. extra: 403/344,
  33247. bottom: 42/445
  33248. }
  33249. },
  33250. leaping: {
  33251. height: math.unit(12.3, "meters"),
  33252. weight: math.unit(9072, "kg"),
  33253. name: "Leaping",
  33254. image: {
  33255. source: "./media/characters/raylldo/leaping.svg",
  33256. extra: 470/249,
  33257. bottom: 13/483
  33258. }
  33259. },
  33260. flying: {
  33261. height: math.unit(18, "meters"),
  33262. weight: math.unit(9072, "kg"),
  33263. name: "Flying",
  33264. image: {
  33265. source: "./media/characters/raylldo/flying.svg"
  33266. }
  33267. },
  33268. head: {
  33269. height: math.unit(5.85, "meters"),
  33270. name: "Head",
  33271. image: {
  33272. source: "./media/characters/raylldo/head.svg"
  33273. }
  33274. },
  33275. maw: {
  33276. height: math.unit(5.32, "meters"),
  33277. name: "Maw",
  33278. image: {
  33279. source: "./media/characters/raylldo/maw.svg"
  33280. }
  33281. },
  33282. eye: {
  33283. height: math.unit(0.54, "meters"),
  33284. name: "Eye",
  33285. image: {
  33286. source: "./media/characters/raylldo/eye.svg"
  33287. }
  33288. },
  33289. },
  33290. [
  33291. {
  33292. name: "Normal",
  33293. height: math.unit(13, "meters"),
  33294. default: true
  33295. },
  33296. ]
  33297. ))
  33298. characterMakers.push(() => makeCharacter(
  33299. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33300. {
  33301. anthroFront: {
  33302. height: math.unit(9, "feet"),
  33303. weight: math.unit(600, "lb"),
  33304. name: "Anthro (Front)",
  33305. image: {
  33306. source: "./media/characters/glint/anthro-front.svg",
  33307. extra: 1097/1018,
  33308. bottom: 28/1125
  33309. }
  33310. },
  33311. anthroBack: {
  33312. height: math.unit(9, "feet"),
  33313. weight: math.unit(600, "lb"),
  33314. name: "Anthro (Back)",
  33315. image: {
  33316. source: "./media/characters/glint/anthro-back.svg",
  33317. extra: 1154/997,
  33318. bottom: 36/1190
  33319. }
  33320. },
  33321. feral: {
  33322. height: math.unit(11, "feet"),
  33323. weight: math.unit(50000, "lb"),
  33324. name: "Feral",
  33325. image: {
  33326. source: "./media/characters/glint/feral.svg",
  33327. extra: 3035/1585,
  33328. bottom: 1169/4204
  33329. }
  33330. },
  33331. dickAnthro: {
  33332. height: math.unit(0.7, "meters"),
  33333. name: "Dick (Anthro)",
  33334. image: {
  33335. source: "./media/characters/glint/dick-anthro.svg"
  33336. }
  33337. },
  33338. dickFeral: {
  33339. height: math.unit(2.65, "meters"),
  33340. name: "Dick (Feral)",
  33341. image: {
  33342. source: "./media/characters/glint/dick-feral.svg"
  33343. }
  33344. },
  33345. slitHidden: {
  33346. height: math.unit(5.85, "meters"),
  33347. name: "Slit (Hidden)",
  33348. image: {
  33349. source: "./media/characters/glint/slit-hidden.svg"
  33350. }
  33351. },
  33352. slitErect: {
  33353. height: math.unit(5.85, "meters"),
  33354. name: "Slit (Erect)",
  33355. image: {
  33356. source: "./media/characters/glint/slit-erect.svg"
  33357. }
  33358. },
  33359. mawAnthro: {
  33360. height: math.unit(0.63, "meters"),
  33361. name: "Maw (Anthro)",
  33362. image: {
  33363. source: "./media/characters/glint/maw.svg"
  33364. }
  33365. },
  33366. mawFeral: {
  33367. height: math.unit(2.89, "meters"),
  33368. name: "Maw (Feral)",
  33369. image: {
  33370. source: "./media/characters/glint/maw.svg"
  33371. }
  33372. },
  33373. },
  33374. [
  33375. {
  33376. name: "Normal",
  33377. height: math.unit(9, "feet"),
  33378. default: true
  33379. },
  33380. ]
  33381. ))
  33382. characterMakers.push(() => makeCharacter(
  33383. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33384. {
  33385. side: {
  33386. height: math.unit(15, "feet"),
  33387. weight: math.unit(5000, "kg"),
  33388. name: "Side",
  33389. image: {
  33390. source: "./media/characters/kairne/side.svg",
  33391. extra: 979/811,
  33392. bottom: 13/992
  33393. }
  33394. },
  33395. front: {
  33396. height: math.unit(15, "feet"),
  33397. weight: math.unit(5000, "kg"),
  33398. name: "Front",
  33399. image: {
  33400. source: "./media/characters/kairne/front.svg",
  33401. extra: 908/814,
  33402. bottom: 26/934
  33403. }
  33404. },
  33405. sideNsfw: {
  33406. height: math.unit(15, "feet"),
  33407. weight: math.unit(5000, "kg"),
  33408. name: "Side (NSFW)",
  33409. image: {
  33410. source: "./media/characters/kairne/side-nsfw.svg",
  33411. extra: 979/811,
  33412. bottom: 13/992
  33413. }
  33414. },
  33415. frontNsfw: {
  33416. height: math.unit(15, "feet"),
  33417. weight: math.unit(5000, "kg"),
  33418. name: "Front (NSFW)",
  33419. image: {
  33420. source: "./media/characters/kairne/front-nsfw.svg",
  33421. extra: 908/814,
  33422. bottom: 26/934
  33423. }
  33424. },
  33425. dickCaged: {
  33426. height: math.unit(0.65, "meters"),
  33427. name: "Dick-caged",
  33428. image: {
  33429. source: "./media/characters/kairne/dick-caged.svg"
  33430. }
  33431. },
  33432. dick: {
  33433. height: math.unit(0.79, "meters"),
  33434. name: "Dick",
  33435. image: {
  33436. source: "./media/characters/kairne/dick.svg"
  33437. }
  33438. },
  33439. genitals: {
  33440. height: math.unit(1.29, "meters"),
  33441. name: "Genitals",
  33442. image: {
  33443. source: "./media/characters/kairne/genitals.svg"
  33444. }
  33445. },
  33446. maw: {
  33447. height: math.unit(1.73, "meters"),
  33448. name: "Maw",
  33449. image: {
  33450. source: "./media/characters/kairne/maw.svg"
  33451. }
  33452. },
  33453. },
  33454. [
  33455. {
  33456. name: "Normal",
  33457. height: math.unit(15, "feet"),
  33458. default: true
  33459. },
  33460. ]
  33461. ))
  33462. characterMakers.push(() => makeCharacter(
  33463. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33464. {
  33465. front: {
  33466. height: math.unit(5 + 8/12, "feet"),
  33467. weight: math.unit(139, "lb"),
  33468. name: "Front",
  33469. image: {
  33470. source: "./media/characters/biscuit-jackal/front.svg",
  33471. extra: 2106/1961,
  33472. bottom: 58/2164
  33473. }
  33474. },
  33475. back: {
  33476. height: math.unit(5 + 8/12, "feet"),
  33477. weight: math.unit(139, "lb"),
  33478. name: "Back",
  33479. image: {
  33480. source: "./media/characters/biscuit-jackal/back.svg",
  33481. extra: 2132/1976,
  33482. bottom: 57/2189
  33483. }
  33484. },
  33485. werejackal: {
  33486. height: math.unit(6 + 3/12, "feet"),
  33487. weight: math.unit(188, "lb"),
  33488. name: "Werejackal",
  33489. image: {
  33490. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33491. extra: 2373/2178,
  33492. bottom: 53/2426
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Normal",
  33499. height: math.unit(5 + 8/12, "feet"),
  33500. default: true
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(140, "cm"),
  33509. weight: math.unit(45, "kg"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/tayra-white/front.svg",
  33513. extra: 2229/2192,
  33514. bottom: 75/2304
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Normal",
  33521. height: math.unit(140, "cm"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(4 + 5/12, "feet"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/scoop/front.svg",
  33534. extra: 1257/1136,
  33535. bottom: 69/1326
  33536. }
  33537. },
  33538. back: {
  33539. height: math.unit(4 + 5/12, "feet"),
  33540. name: "Back",
  33541. image: {
  33542. source: "./media/characters/scoop/back.svg",
  33543. extra: 1321/1152,
  33544. bottom: 32/1353
  33545. }
  33546. },
  33547. maw: {
  33548. height: math.unit(0.68, "feet"),
  33549. name: "Maw",
  33550. image: {
  33551. source: "./media/characters/scoop/maw.svg"
  33552. }
  33553. },
  33554. },
  33555. [
  33556. {
  33557. name: "Really Small",
  33558. height: math.unit(1, "mm")
  33559. },
  33560. {
  33561. name: "Micro",
  33562. height: math.unit(1, "inch")
  33563. },
  33564. {
  33565. name: "Normal",
  33566. height: math.unit(4 + 5/12, "feet"),
  33567. default: true
  33568. },
  33569. {
  33570. name: "Macro",
  33571. height: math.unit(200, "feet")
  33572. },
  33573. {
  33574. name: "Megamacro",
  33575. height: math.unit(3240, "feet")
  33576. },
  33577. {
  33578. name: "Teramacro",
  33579. height: math.unit(2500, "miles")
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33585. {
  33586. front: {
  33587. height: math.unit(15 + 7/12, "feet"),
  33588. name: "Front",
  33589. image: {
  33590. source: "./media/characters/saphinara/front.svg",
  33591. extra: 604/546,
  33592. bottom: 19/623
  33593. }
  33594. },
  33595. side: {
  33596. height: math.unit(15 + 7/12, "feet"),
  33597. name: "Side",
  33598. image: {
  33599. source: "./media/characters/saphinara/side.svg",
  33600. extra: 605/547,
  33601. bottom: 6/611
  33602. }
  33603. },
  33604. back: {
  33605. height: math.unit(15 + 7/12, "feet"),
  33606. name: "Back",
  33607. image: {
  33608. source: "./media/characters/saphinara/back.svg",
  33609. extra: 591/531,
  33610. bottom: 13/604
  33611. }
  33612. },
  33613. frontTail: {
  33614. height: math.unit(15 + 7/12, "feet"),
  33615. name: "Front (Full Tail)",
  33616. image: {
  33617. source: "./media/characters/saphinara/front-tail.svg",
  33618. extra: 748/547,
  33619. bottom: 66/814
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Normal",
  33626. height: math.unit(15 + 7/12, "feet"),
  33627. default: true
  33628. },
  33629. {
  33630. name: "Angry",
  33631. height: math.unit(30 + 6/12, "feet")
  33632. },
  33633. {
  33634. name: "Enraged",
  33635. height: math.unit(102 + 1/12, "feet")
  33636. },
  33637. ]
  33638. ))
  33639. characterMakers.push(() => makeCharacter(
  33640. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33641. {
  33642. front: {
  33643. height: math.unit(6 + 8/12, "feet"),
  33644. weight: math.unit(300, "lb"),
  33645. name: "Front",
  33646. image: {
  33647. source: "./media/characters/jrain/front.svg",
  33648. extra: 3039/2865,
  33649. bottom: 399/3438
  33650. }
  33651. },
  33652. back: {
  33653. height: math.unit(6 + 8/12, "feet"),
  33654. weight: math.unit(300, "lb"),
  33655. name: "Back",
  33656. image: {
  33657. source: "./media/characters/jrain/back.svg",
  33658. extra: 3089/2938,
  33659. bottom: 172/3261
  33660. }
  33661. },
  33662. head: {
  33663. height: math.unit(2.14, "feet"),
  33664. name: "Head",
  33665. image: {
  33666. source: "./media/characters/jrain/head.svg"
  33667. }
  33668. },
  33669. maw: {
  33670. height: math.unit(1.77, "feet"),
  33671. name: "Maw",
  33672. image: {
  33673. source: "./media/characters/jrain/maw.svg"
  33674. }
  33675. },
  33676. leftHand: {
  33677. height: math.unit(1.1, "feet"),
  33678. name: "Left Hand",
  33679. image: {
  33680. source: "./media/characters/jrain/left-hand.svg"
  33681. }
  33682. },
  33683. rightHand: {
  33684. height: math.unit(1.1, "feet"),
  33685. name: "Right Hand",
  33686. image: {
  33687. source: "./media/characters/jrain/right-hand.svg"
  33688. }
  33689. },
  33690. eye: {
  33691. height: math.unit(0.35, "feet"),
  33692. name: "Eye",
  33693. image: {
  33694. source: "./media/characters/jrain/eye.svg"
  33695. }
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Normal",
  33701. height: math.unit(6 + 8/12, "feet"),
  33702. default: true
  33703. },
  33704. {
  33705. name: "Casually Large",
  33706. height: math.unit(25, "feet")
  33707. },
  33708. {
  33709. name: "Giant",
  33710. height: math.unit(100, "feet")
  33711. },
  33712. {
  33713. name: "Kaiju",
  33714. height: math.unit(300, "feet")
  33715. },
  33716. ]
  33717. ))
  33718. characterMakers.push(() => makeCharacter(
  33719. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33720. {
  33721. dragon: {
  33722. height: math.unit(5, "meters"),
  33723. name: "Dragon",
  33724. image: {
  33725. source: "./media/characters/sabrina/dragon.svg",
  33726. extra: 3670 / 2365,
  33727. bottom: 333 / 4003
  33728. }
  33729. },
  33730. gryphon: {
  33731. height: math.unit(3, "meters"),
  33732. name: "Gryphon",
  33733. image: {
  33734. source: "./media/characters/sabrina/gryphon.svg",
  33735. extra: 1576 / 945,
  33736. bottom: 71 / 1647
  33737. }
  33738. },
  33739. snake: {
  33740. height: math.unit(12, "meters"),
  33741. name: "Snake",
  33742. image: {
  33743. source: "./media/characters/sabrina/snake.svg",
  33744. extra: 1758 / 1320,
  33745. bottom: 186 / 1944
  33746. }
  33747. },
  33748. collar: {
  33749. height: math.unit(1.86, "meters"),
  33750. name: "Collar",
  33751. image: {
  33752. source: "./media/characters/sabrina/collar.svg"
  33753. }
  33754. },
  33755. eye: {
  33756. height: math.unit(0.53, "meters"),
  33757. name: "Eye",
  33758. image: {
  33759. source: "./media/characters/sabrina/eye.svg"
  33760. }
  33761. },
  33762. foot: {
  33763. height: math.unit(1.86, "meters"),
  33764. name: "Foot",
  33765. image: {
  33766. source: "./media/characters/sabrina/foot.svg"
  33767. }
  33768. },
  33769. hand: {
  33770. height: math.unit(1.32, "meters"),
  33771. name: "Hand",
  33772. image: {
  33773. source: "./media/characters/sabrina/hand.svg"
  33774. }
  33775. },
  33776. head: {
  33777. height: math.unit(2.44, "meters"),
  33778. name: "Head",
  33779. image: {
  33780. source: "./media/characters/sabrina/head.svg"
  33781. }
  33782. },
  33783. headAngry: {
  33784. height: math.unit(2.44, "meters"),
  33785. name: "Head (Angry))",
  33786. image: {
  33787. source: "./media/characters/sabrina/head-angry.svg"
  33788. }
  33789. },
  33790. maw: {
  33791. height: math.unit(1.65, "meters"),
  33792. name: "Maw",
  33793. image: {
  33794. source: "./media/characters/sabrina/maw.svg"
  33795. }
  33796. },
  33797. spikes: {
  33798. height: math.unit(1.69, "meters"),
  33799. name: "Spikes",
  33800. image: {
  33801. source: "./media/characters/sabrina/spikes.svg"
  33802. }
  33803. },
  33804. stomach: {
  33805. height: math.unit(1.15, "meters"),
  33806. name: "Stomach",
  33807. image: {
  33808. source: "./media/characters/sabrina/stomach.svg"
  33809. }
  33810. },
  33811. tongue: {
  33812. height: math.unit(1.27, "meters"),
  33813. name: "Tongue",
  33814. image: {
  33815. source: "./media/characters/sabrina/tongue.svg"
  33816. }
  33817. },
  33818. wingDorsal: {
  33819. height: math.unit(4.85, "meters"),
  33820. name: "Wing (Dorsal)",
  33821. image: {
  33822. source: "./media/characters/sabrina/wing-dorsal.svg"
  33823. }
  33824. },
  33825. wingVentral: {
  33826. height: math.unit(4.85, "meters"),
  33827. name: "Wing (Ventral)",
  33828. image: {
  33829. source: "./media/characters/sabrina/wing-ventral.svg"
  33830. }
  33831. },
  33832. },
  33833. [
  33834. {
  33835. name: "Normal",
  33836. height: math.unit(5, "meters"),
  33837. default: true
  33838. },
  33839. ]
  33840. ))
  33841. characterMakers.push(() => makeCharacter(
  33842. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33843. {
  33844. frontMaid: {
  33845. height: math.unit(5 + 5/12, "feet"),
  33846. weight: math.unit(130, "lb"),
  33847. name: "Front (Maid)",
  33848. image: {
  33849. source: "./media/characters/midnight-tales/front-maid.svg",
  33850. extra: 489/454,
  33851. bottom: 61/550
  33852. }
  33853. },
  33854. frontFormal: {
  33855. height: math.unit(5 + 5/12, "feet"),
  33856. weight: math.unit(130, "lb"),
  33857. name: "Front (Formal)",
  33858. image: {
  33859. source: "./media/characters/midnight-tales/front-formal.svg",
  33860. extra: 489/454,
  33861. bottom: 61/550
  33862. }
  33863. },
  33864. back: {
  33865. height: math.unit(5 + 5/12, "feet"),
  33866. weight: math.unit(130, "lb"),
  33867. name: "Back",
  33868. image: {
  33869. source: "./media/characters/midnight-tales/back.svg",
  33870. extra: 498/456,
  33871. bottom: 33/531
  33872. }
  33873. },
  33874. frontBeast: {
  33875. height: math.unit(40, "feet"),
  33876. weight: math.unit(64000, "lb"),
  33877. name: "Front (Beast)",
  33878. image: {
  33879. source: "./media/characters/midnight-tales/front-beast.svg",
  33880. extra: 927/860,
  33881. bottom: 53/980
  33882. }
  33883. },
  33884. backBeast: {
  33885. height: math.unit(40, "feet"),
  33886. weight: math.unit(64000, "lb"),
  33887. name: "Back (Beast)",
  33888. image: {
  33889. source: "./media/characters/midnight-tales/back-beast.svg",
  33890. extra: 929/855,
  33891. bottom: 16/945
  33892. }
  33893. },
  33894. footBeast: {
  33895. height: math.unit(6.7, "feet"),
  33896. name: "Foot (Beast)",
  33897. image: {
  33898. source: "./media/characters/midnight-tales/foot-beast.svg"
  33899. }
  33900. },
  33901. headBeast: {
  33902. height: math.unit(8, "feet"),
  33903. name: "Head (Beast)",
  33904. image: {
  33905. source: "./media/characters/midnight-tales/head-beast.svg"
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Normal",
  33912. height: math.unit(5 + 5 / 12, "feet"),
  33913. default: true
  33914. },
  33915. {
  33916. name: "Macro",
  33917. height: math.unit(25, "feet")
  33918. },
  33919. ]
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33923. {
  33924. front: {
  33925. height: math.unit(5 + 10/12, "feet"),
  33926. name: "Front",
  33927. image: {
  33928. source: "./media/characters/argon/front.svg",
  33929. extra: 2009/1935,
  33930. bottom: 118/2127
  33931. }
  33932. },
  33933. back: {
  33934. height: math.unit(5 + 10/12, "feet"),
  33935. name: "Back",
  33936. image: {
  33937. source: "./media/characters/argon/back.svg",
  33938. extra: 2047/1992,
  33939. bottom: 20/2067
  33940. }
  33941. },
  33942. frontDressed: {
  33943. height: math.unit(5 + 10/12, "feet"),
  33944. name: "Front (Dressed)",
  33945. image: {
  33946. source: "./media/characters/argon/front-dressed.svg",
  33947. extra: 2009/1935,
  33948. bottom: 118/2127
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(5 + 10/12, "feet"),
  33956. default: true
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33962. {
  33963. front: {
  33964. height: math.unit(8 + 6/12, "feet"),
  33965. weight: math.unit(1150, "lb"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/kichi/front.svg",
  33969. extra: 1267/1164,
  33970. bottom: 61/1328
  33971. }
  33972. },
  33973. back: {
  33974. height: math.unit(8 + 6/12, "feet"),
  33975. weight: math.unit(1150, "lb"),
  33976. name: "Back",
  33977. image: {
  33978. source: "./media/characters/kichi/back.svg",
  33979. extra: 1273/1166,
  33980. bottom: 33/1306
  33981. }
  33982. },
  33983. },
  33984. [
  33985. {
  33986. name: "Normal",
  33987. height: math.unit(8 + 6/12, "feet"),
  33988. default: true
  33989. },
  33990. ]
  33991. ))
  33992. characterMakers.push(() => makeCharacter(
  33993. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33994. {
  33995. front: {
  33996. height: math.unit(6, "feet"),
  33997. weight: math.unit(210, "lb"),
  33998. name: "Front",
  33999. image: {
  34000. source: "./media/characters/manetel-greyscale/front.svg",
  34001. extra: 350/312,
  34002. bottom: 8/358
  34003. }
  34004. },
  34005. },
  34006. [
  34007. {
  34008. name: "Micro",
  34009. height: math.unit(2, "inches")
  34010. },
  34011. {
  34012. name: "Normal",
  34013. height: math.unit(6, "feet"),
  34014. default: true
  34015. },
  34016. {
  34017. name: "Minimacro",
  34018. height: math.unit(17, "feet")
  34019. },
  34020. {
  34021. name: "Macro",
  34022. height: math.unit(117, "feet")
  34023. },
  34024. ]
  34025. ))
  34026. characterMakers.push(() => makeCharacter(
  34027. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34028. {
  34029. side: {
  34030. height: math.unit(5 + 1/12, "feet"),
  34031. weight: math.unit(418, "lb"),
  34032. name: "Side",
  34033. image: {
  34034. source: "./media/characters/softpurr/side.svg",
  34035. extra: 1993/1945,
  34036. bottom: 134/2127
  34037. }
  34038. },
  34039. front: {
  34040. height: math.unit(5 + 1/12, "feet"),
  34041. weight: math.unit(418, "lb"),
  34042. name: "Front",
  34043. image: {
  34044. source: "./media/characters/softpurr/front.svg",
  34045. extra: 1950/1856,
  34046. bottom: 174/2124
  34047. }
  34048. },
  34049. paw: {
  34050. height: math.unit(1, "feet"),
  34051. name: "Paw",
  34052. image: {
  34053. source: "./media/characters/softpurr/paw.svg"
  34054. }
  34055. },
  34056. },
  34057. [
  34058. {
  34059. name: "Normal",
  34060. height: math.unit(5 + 1/12, "feet"),
  34061. default: true
  34062. },
  34063. ]
  34064. ))
  34065. characterMakers.push(() => makeCharacter(
  34066. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34067. {
  34068. front: {
  34069. height: math.unit(260, "meters"),
  34070. name: "Front",
  34071. image: {
  34072. source: "./media/characters/anahita/front.svg",
  34073. extra: 665/635,
  34074. bottom: 89/754
  34075. }
  34076. },
  34077. },
  34078. [
  34079. {
  34080. name: "Macro",
  34081. height: math.unit(260, "meters"),
  34082. default: true
  34083. },
  34084. ]
  34085. ))
  34086. characterMakers.push(() => makeCharacter(
  34087. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34088. {
  34089. front: {
  34090. height: math.unit(4 + 10/12, "feet"),
  34091. weight: math.unit(160, "lb"),
  34092. name: "Front",
  34093. image: {
  34094. source: "./media/characters/chip-mouse/front.svg",
  34095. extra: 3528/3408,
  34096. bottom: 0/3528
  34097. }
  34098. },
  34099. frontNsfw: {
  34100. height: math.unit(4 + 10/12, "feet"),
  34101. weight: math.unit(160, "lb"),
  34102. name: "Front (NSFW)",
  34103. image: {
  34104. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34105. extra: 3528/3408,
  34106. bottom: 0/3528
  34107. }
  34108. },
  34109. },
  34110. [
  34111. {
  34112. name: "Normal",
  34113. height: math.unit(4 + 10/12, "feet"),
  34114. default: true
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34120. {
  34121. side: {
  34122. height: math.unit(10, "feet"),
  34123. weight: math.unit(14000, "lb"),
  34124. name: "Side",
  34125. image: {
  34126. source: "./media/characters/kremm/side.svg",
  34127. extra: 1390/1053,
  34128. bottom: 90/1480
  34129. }
  34130. },
  34131. gut: {
  34132. height: math.unit(5.8, "feet"),
  34133. name: "Gut",
  34134. image: {
  34135. source: "./media/characters/kremm/gut.svg"
  34136. }
  34137. },
  34138. ass: {
  34139. height: math.unit(6.1, "feet"),
  34140. name: "Ass",
  34141. image: {
  34142. source: "./media/characters/kremm/ass.svg"
  34143. }
  34144. },
  34145. jaws: {
  34146. height: math.unit(2.2, "feet"),
  34147. name: "Jaws",
  34148. image: {
  34149. source: "./media/characters/kremm/jaws.svg"
  34150. }
  34151. },
  34152. dick: {
  34153. height: math.unit(4.26, "feet"),
  34154. name: "Dick",
  34155. image: {
  34156. source: "./media/characters/kremm/dick.svg"
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Normal",
  34163. height: math.unit(10, "feet"),
  34164. default: true
  34165. },
  34166. ]
  34167. ))
  34168. characterMakers.push(() => makeCharacter(
  34169. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34170. {
  34171. front: {
  34172. height: math.unit(30, "stories"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/kai/front.svg",
  34176. extra: 1892/1718,
  34177. bottom: 162/2054
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Macro",
  34184. height: math.unit(30, "stories"),
  34185. default: true
  34186. },
  34187. ]
  34188. ))
  34189. characterMakers.push(() => makeCharacter(
  34190. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34191. {
  34192. front: {
  34193. height: math.unit(6 + 4/12, "feet"),
  34194. weight: math.unit(145, "lb"),
  34195. name: "Front",
  34196. image: {
  34197. source: "./media/characters/sykes/front.svg",
  34198. extra: 1321 / 1187,
  34199. bottom: 66 / 1387
  34200. }
  34201. },
  34202. back: {
  34203. height: math.unit(6 + 4/12, "feet"),
  34204. weight: math.unit(145, "lb"),
  34205. name: "Back",
  34206. image: {
  34207. source: "./media/characters/sykes/back.svg",
  34208. extra: 1326/1181,
  34209. bottom: 31/1357
  34210. }
  34211. },
  34212. handBack: {
  34213. height: math.unit(0.9, "feet"),
  34214. name: "Hand (Back)",
  34215. image: {
  34216. source: "./media/characters/sykes/hand-back.svg"
  34217. }
  34218. },
  34219. handFront: {
  34220. height: math.unit(0.839, "feet"),
  34221. name: "Hand (Front)",
  34222. image: {
  34223. source: "./media/characters/sykes/hand-front.svg"
  34224. }
  34225. },
  34226. leftFoot: {
  34227. height: math.unit(1.2, "feet"),
  34228. name: "Foot (Left)",
  34229. image: {
  34230. source: "./media/characters/sykes/foot-left.svg"
  34231. }
  34232. },
  34233. rightFoot: {
  34234. height: math.unit(1.2, "feet"),
  34235. name: "Foot (Right)",
  34236. image: {
  34237. source: "./media/characters/sykes/foot-right.svg"
  34238. }
  34239. },
  34240. maw: {
  34241. height: math.unit(1.93, "feet"),
  34242. name: "Maw",
  34243. image: {
  34244. source: "./media/characters/sykes/maw.svg"
  34245. }
  34246. },
  34247. teeth: {
  34248. height: math.unit(0.51, "feet"),
  34249. name: "Teeth",
  34250. image: {
  34251. source: "./media/characters/sykes/teeth.svg"
  34252. }
  34253. },
  34254. tongue: {
  34255. height: math.unit(2.13, "feet"),
  34256. name: "Tongue",
  34257. image: {
  34258. source: "./media/characters/sykes/tongue.svg"
  34259. }
  34260. },
  34261. uvula: {
  34262. height: math.unit(0.16, "feet"),
  34263. name: "Uvula",
  34264. image: {
  34265. source: "./media/characters/sykes/uvula.svg"
  34266. }
  34267. },
  34268. collar: {
  34269. height: math.unit(0.287, "feet"),
  34270. name: "Collar",
  34271. image: {
  34272. source: "./media/characters/sykes/collar.svg"
  34273. }
  34274. },
  34275. },
  34276. [
  34277. {
  34278. name: "Shrunken",
  34279. height: math.unit(5, "inches")
  34280. },
  34281. {
  34282. name: "Normal",
  34283. height: math.unit(6 + 4 / 12, "feet"),
  34284. default: true
  34285. },
  34286. {
  34287. name: "Big",
  34288. height: math.unit(15, "feet")
  34289. },
  34290. ]
  34291. ))
  34292. characterMakers.push(() => makeCharacter(
  34293. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34294. {
  34295. front: {
  34296. height: math.unit(5 + 8/12, "feet"),
  34297. weight: math.unit(190, "lb"),
  34298. name: "Front",
  34299. image: {
  34300. source: "./media/characters/oven-otter/front.svg",
  34301. extra: 1809/1740,
  34302. bottom: 181/1990
  34303. }
  34304. },
  34305. back: {
  34306. height: math.unit(5 + 8/12, "feet"),
  34307. weight: math.unit(190, "lb"),
  34308. name: "Back",
  34309. image: {
  34310. source: "./media/characters/oven-otter/back.svg",
  34311. extra: 1709/1635,
  34312. bottom: 118/1827
  34313. }
  34314. },
  34315. hand: {
  34316. height: math.unit(1.07, "feet"),
  34317. name: "Hand",
  34318. image: {
  34319. source: "./media/characters/oven-otter/hand.svg"
  34320. }
  34321. },
  34322. beans: {
  34323. height: math.unit(1.74, "feet"),
  34324. name: "Beans",
  34325. image: {
  34326. source: "./media/characters/oven-otter/beans.svg"
  34327. }
  34328. },
  34329. },
  34330. [
  34331. {
  34332. name: "Micro",
  34333. height: math.unit(0.5, "inches")
  34334. },
  34335. {
  34336. name: "Normal",
  34337. height: math.unit(5 + 8/12, "feet"),
  34338. default: true
  34339. },
  34340. {
  34341. name: "Macro",
  34342. height: math.unit(250, "feet")
  34343. },
  34344. {
  34345. name: "Really High",
  34346. height: math.unit(420, "feet")
  34347. },
  34348. ]
  34349. ))
  34350. characterMakers.push(() => makeCharacter(
  34351. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34352. {
  34353. front: {
  34354. height: math.unit(5, "meters"),
  34355. weight: math.unit(292000000000000, "kg"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/devourer/front.svg",
  34359. extra: 1800/1733,
  34360. bottom: 211/2011
  34361. }
  34362. },
  34363. maw: {
  34364. height: math.unit(1.1, "meter"),
  34365. name: "Maw",
  34366. image: {
  34367. source: "./media/characters/devourer/maw.svg"
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Small",
  34374. height: math.unit(3, "meters")
  34375. },
  34376. {
  34377. name: "Large",
  34378. height: math.unit(5, "meters"),
  34379. default: true
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34385. {
  34386. front: {
  34387. height: math.unit(6, "feet"),
  34388. weight: math.unit(400, "lb"),
  34389. name: "Front",
  34390. image: {
  34391. source: "./media/characters/ellarby/front.svg",
  34392. extra: 1909/1763,
  34393. bottom: 80/1989
  34394. }
  34395. },
  34396. back: {
  34397. height: math.unit(6, "feet"),
  34398. weight: math.unit(400, "lb"),
  34399. name: "Back",
  34400. image: {
  34401. source: "./media/characters/ellarby/back.svg",
  34402. extra: 1914/1784,
  34403. bottom: 172/2086
  34404. }
  34405. },
  34406. },
  34407. [
  34408. {
  34409. name: "Mischief",
  34410. height: math.unit(18, "inches")
  34411. },
  34412. {
  34413. name: "Trouble",
  34414. height: math.unit(12, "feet")
  34415. },
  34416. {
  34417. name: "Havoc",
  34418. height: math.unit(200, "feet"),
  34419. default: true
  34420. },
  34421. {
  34422. name: "Pandemonium",
  34423. height: math.unit(1, "mile")
  34424. },
  34425. {
  34426. name: "Catastrophe",
  34427. height: math.unit(100, "miles")
  34428. },
  34429. ]
  34430. ))
  34431. characterMakers.push(() => makeCharacter(
  34432. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34433. {
  34434. front: {
  34435. height: math.unit(4.7, "meters"),
  34436. weight: math.unit(6500, "kg"),
  34437. name: "Front",
  34438. image: {
  34439. source: "./media/characters/vex/front.svg",
  34440. extra: 1288/1140,
  34441. bottom: 100/1388
  34442. }
  34443. },
  34444. },
  34445. [
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(4.7, "meters"),
  34449. default: true
  34450. },
  34451. ]
  34452. ))
  34453. characterMakers.push(() => makeCharacter(
  34454. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34455. {
  34456. normal: {
  34457. height: math.unit(6, "feet"),
  34458. weight: math.unit(350, "lb"),
  34459. name: "Normal",
  34460. image: {
  34461. source: "./media/characters/teshy/normal.svg",
  34462. extra: 1795/1735,
  34463. bottom: 16/1811
  34464. }
  34465. },
  34466. monsterFront: {
  34467. height: math.unit(12, "feet"),
  34468. weight: math.unit(4700, "lb"),
  34469. name: "Monster (Front)",
  34470. image: {
  34471. source: "./media/characters/teshy/monster-front.svg",
  34472. extra: 2042/2034,
  34473. bottom: 128/2170
  34474. }
  34475. },
  34476. monsterSide: {
  34477. height: math.unit(12, "feet"),
  34478. weight: math.unit(4700, "lb"),
  34479. name: "Monster (Side)",
  34480. image: {
  34481. source: "./media/characters/teshy/monster-side.svg",
  34482. extra: 2067/2056,
  34483. bottom: 70/2137
  34484. }
  34485. },
  34486. monsterBack: {
  34487. height: math.unit(12, "feet"),
  34488. weight: math.unit(4700, "lb"),
  34489. name: "Monster (Back)",
  34490. image: {
  34491. source: "./media/characters/teshy/monster-back.svg",
  34492. extra: 1921/1914,
  34493. bottom: 171/2092
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(6, "feet"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(6, "feet"),
  34510. name: "Front",
  34511. image: {
  34512. source: "./media/characters/ramey/front.svg",
  34513. extra: 790/787,
  34514. bottom: 27/817
  34515. }
  34516. },
  34517. },
  34518. [
  34519. {
  34520. name: "Normal",
  34521. height: math.unit(6, "feet"),
  34522. default: true
  34523. },
  34524. ]
  34525. ))
  34526. characterMakers.push(() => makeCharacter(
  34527. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34528. {
  34529. front: {
  34530. height: math.unit(5 + 5/12, "feet"),
  34531. weight: math.unit(120, "lb"),
  34532. name: "Front",
  34533. image: {
  34534. source: "./media/characters/phirae/front.svg",
  34535. extra: 2491/2436,
  34536. bottom: 38/2529
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(5 + 5/12, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34550. {
  34551. front: {
  34552. height: math.unit(5 + 3/12, "feet"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/stagglas/front.svg",
  34556. extra: 962/882,
  34557. bottom: 53/1015
  34558. }
  34559. },
  34560. feral: {
  34561. height: math.unit(335, "cm"),
  34562. name: "Feral",
  34563. image: {
  34564. source: "./media/characters/stagglas/feral.svg",
  34565. extra: 1732/1090,
  34566. bottom: 48/1780
  34567. }
  34568. },
  34569. },
  34570. [
  34571. {
  34572. name: "Normal",
  34573. height: math.unit(5 + 3/12, "feet"),
  34574. default: true
  34575. },
  34576. ]
  34577. ))
  34578. characterMakers.push(() => makeCharacter(
  34579. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34580. {
  34581. front: {
  34582. height: math.unit(5 + 4/12, "feet"),
  34583. weight: math.unit(145, "lb"),
  34584. name: "Front",
  34585. image: {
  34586. source: "./media/characters/starra/front.svg",
  34587. extra: 1790/1691,
  34588. bottom: 91/1881
  34589. }
  34590. },
  34591. },
  34592. [
  34593. {
  34594. name: "Normal",
  34595. height: math.unit(5 + 4/12, "feet"),
  34596. default: true
  34597. },
  34598. ]
  34599. ))
  34600. characterMakers.push(() => makeCharacter(
  34601. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34602. {
  34603. front: {
  34604. height: math.unit(2.2, "meters"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34608. extra: 1194/1005,
  34609. bottom: 25/1219
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(2.2, "meters"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34623. {
  34624. side: {
  34625. height: math.unit(8 + 2/12, "feet"),
  34626. weight: math.unit(1240, "lb"),
  34627. name: "Side",
  34628. image: {
  34629. source: "./media/characters/mika-valentine/side.svg",
  34630. extra: 2670/2501,
  34631. bottom: 250/2920
  34632. }
  34633. },
  34634. },
  34635. [
  34636. {
  34637. name: "Normal",
  34638. height: math.unit(8 + 2/12, "feet"),
  34639. default: true
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34645. {
  34646. front: {
  34647. height: math.unit(7 + 2/12, "feet"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/xoltol/front.svg",
  34651. extra: 2212/2124,
  34652. bottom: 84/2296
  34653. }
  34654. },
  34655. side: {
  34656. height: math.unit(7 + 2/12, "feet"),
  34657. name: "Side",
  34658. image: {
  34659. source: "./media/characters/xoltol/side.svg",
  34660. extra: 2273/2197,
  34661. bottom: 26/2299
  34662. }
  34663. },
  34664. hand: {
  34665. height: math.unit(2.5, "feet"),
  34666. name: "Hand",
  34667. image: {
  34668. source: "./media/characters/xoltol/hand.svg"
  34669. }
  34670. },
  34671. },
  34672. [
  34673. {
  34674. name: "Small-ish",
  34675. height: math.unit(5 + 11/12, "feet")
  34676. },
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(7 + 2/12, "feet")
  34680. },
  34681. {
  34682. name: "\"Macro\"",
  34683. height: math.unit(14 + 9/12, "feet"),
  34684. default: true
  34685. },
  34686. {
  34687. name: "Alternate Height",
  34688. height: math.unit(20, "feet")
  34689. },
  34690. {
  34691. name: "Actually Macro",
  34692. height: math.unit(100, "feet")
  34693. },
  34694. ]
  34695. ))
  34696. characterMakers.push(() => makeCharacter(
  34697. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34698. {
  34699. front: {
  34700. height: math.unit(5 + 2/12, "feet"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/kotetsu-redwood/front.svg",
  34704. extra: 1053/942,
  34705. bottom: 60/1113
  34706. }
  34707. },
  34708. },
  34709. [
  34710. {
  34711. name: "Normal",
  34712. height: math.unit(5 + 2/12, "feet"),
  34713. default: true
  34714. },
  34715. ]
  34716. ))
  34717. characterMakers.push(() => makeCharacter(
  34718. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34719. {
  34720. front: {
  34721. height: math.unit(2.4, "meters"),
  34722. weight: math.unit(125, "kg"),
  34723. name: "Front",
  34724. image: {
  34725. source: "./media/characters/lilith/front.svg",
  34726. extra: 1590/1513,
  34727. bottom: 203/1793
  34728. }
  34729. },
  34730. },
  34731. [
  34732. {
  34733. name: "Humanoid",
  34734. height: math.unit(2.4, "meters")
  34735. },
  34736. {
  34737. name: "Normal",
  34738. height: math.unit(6, "meters"),
  34739. default: true
  34740. },
  34741. {
  34742. name: "Largest",
  34743. height: math.unit(55, "meters")
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34749. {
  34750. front: {
  34751. height: math.unit(8 + 4/12, "feet"),
  34752. weight: math.unit(535, "lb"),
  34753. name: "Front",
  34754. image: {
  34755. source: "./media/characters/beh'kah-bolger/front.svg",
  34756. extra: 1660/1603,
  34757. bottom: 37/1697
  34758. }
  34759. },
  34760. },
  34761. [
  34762. {
  34763. name: "Normal",
  34764. height: math.unit(8 + 4/12, "feet"),
  34765. default: true
  34766. },
  34767. {
  34768. name: "Kaiju",
  34769. height: math.unit(250, "feet")
  34770. },
  34771. {
  34772. name: "Still Growing",
  34773. height: math.unit(10, "miles")
  34774. },
  34775. {
  34776. name: "Continental",
  34777. height: math.unit(5000, "miles")
  34778. },
  34779. {
  34780. name: "Final Form",
  34781. height: math.unit(2500000, "miles")
  34782. },
  34783. ]
  34784. ))
  34785. characterMakers.push(() => makeCharacter(
  34786. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34787. {
  34788. front: {
  34789. height: math.unit(7 + 2/12, "feet"),
  34790. weight: math.unit(230, "kg"),
  34791. name: "Front",
  34792. image: {
  34793. source: "./media/characters/tatyana-milewska/front.svg",
  34794. extra: 1199/1150,
  34795. bottom: 86/1285
  34796. }
  34797. },
  34798. },
  34799. [
  34800. {
  34801. name: "Normal",
  34802. height: math.unit(7 + 2/12, "feet"),
  34803. default: true
  34804. },
  34805. {
  34806. name: "Big",
  34807. height: math.unit(12, "feet")
  34808. },
  34809. {
  34810. name: "Minimacro",
  34811. height: math.unit(20, "feet")
  34812. },
  34813. {
  34814. name: "Macro",
  34815. height: math.unit(120, "feet")
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34821. {
  34822. front: {
  34823. height: math.unit(7 + 8/12, "feet"),
  34824. weight: math.unit(152, "kg"),
  34825. name: "Front",
  34826. image: {
  34827. source: "./media/characters/helen-arri/front.svg",
  34828. extra: 440/423,
  34829. bottom: 14/454
  34830. }
  34831. },
  34832. back: {
  34833. height: math.unit(7 + 8/12, "feet"),
  34834. weight: math.unit(152, "kg"),
  34835. name: "Back",
  34836. image: {
  34837. source: "./media/characters/helen-arri/back.svg",
  34838. extra: 443/426,
  34839. bottom: 8/451
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(7 + 8/12, "feet"),
  34847. default: true
  34848. },
  34849. {
  34850. name: "Big",
  34851. height: math.unit(14, "feet")
  34852. },
  34853. {
  34854. name: "Minimacro",
  34855. height: math.unit(24, "feet")
  34856. },
  34857. {
  34858. name: "Macro",
  34859. height: math.unit(140, "feet")
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34865. {
  34866. front: {
  34867. height: math.unit(6, "meters"),
  34868. name: "Front",
  34869. image: {
  34870. source: "./media/characters/ehanu-rehu/front.svg",
  34871. extra: 1800/1800,
  34872. bottom: 59/1859
  34873. }
  34874. },
  34875. },
  34876. [
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(6, "meters"),
  34880. default: true
  34881. },
  34882. ]
  34883. ))
  34884. characterMakers.push(() => makeCharacter(
  34885. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34886. {
  34887. front: {
  34888. height: math.unit(7 + 3/12, "feet"),
  34889. name: "Front",
  34890. image: {
  34891. source: "./media/characters/renholder/front.svg",
  34892. extra: 3096/2960,
  34893. bottom: 250/3346
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Normal Bat",
  34900. height: math.unit(7 + 3/12, "feet"),
  34901. default: true
  34902. },
  34903. {
  34904. name: "Slightly Tall Bat",
  34905. height: math.unit(100, "feet")
  34906. },
  34907. {
  34908. name: "Big Bat",
  34909. height: math.unit(1000, "feet")
  34910. },
  34911. {
  34912. name: "City-Sized Bat",
  34913. height: math.unit(200000, "feet")
  34914. },
  34915. {
  34916. name: "Bigger Bat",
  34917. height: math.unit(10000, "miles")
  34918. },
  34919. {
  34920. name: "Solar Sized Bat",
  34921. height: math.unit(100, "AU")
  34922. },
  34923. {
  34924. name: "Galactic Bat",
  34925. height: math.unit(200000, "lightyears")
  34926. },
  34927. {
  34928. name: "Universally Known Bat",
  34929. height: math.unit(1, "universe")
  34930. },
  34931. ]
  34932. ))
  34933. characterMakers.push(() => makeCharacter(
  34934. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34935. {
  34936. front: {
  34937. height: math.unit(6 + 11/12, "feet"),
  34938. weight: math.unit(250, "lb"),
  34939. name: "Front",
  34940. image: {
  34941. source: "./media/characters/cookiecat/front.svg",
  34942. extra: 893/827,
  34943. bottom: 14/907
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Micro",
  34950. height: math.unit(3, "inches")
  34951. },
  34952. {
  34953. name: "Normal",
  34954. height: math.unit(6 + 11/12, "feet"),
  34955. default: true
  34956. },
  34957. {
  34958. name: "Macro",
  34959. height: math.unit(100, "feet")
  34960. },
  34961. {
  34962. name: "Macro+",
  34963. height: math.unit(404, "feet")
  34964. },
  34965. {
  34966. name: "Megamacro",
  34967. height: math.unit(165, "miles")
  34968. },
  34969. {
  34970. name: "Planetary",
  34971. height: math.unit(4600, "miles")
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(10 + 3/12, "feet"),
  34980. weight: math.unit(1500, "lb"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/tux-kusanagi/front.svg",
  34984. extra: 944/840,
  34985. bottom: 39/983
  34986. }
  34987. },
  34988. back: {
  34989. height: math.unit(10 + 3/12, "feet"),
  34990. weight: math.unit(1500, "lb"),
  34991. name: "Back",
  34992. image: {
  34993. source: "./media/characters/tux-kusanagi/back.svg",
  34994. extra: 941/842,
  34995. bottom: 28/969
  34996. }
  34997. },
  34998. rump: {
  34999. height: math.unit(5.25, "feet"),
  35000. name: "Rump",
  35001. image: {
  35002. source: "./media/characters/tux-kusanagi/rump.svg"
  35003. }
  35004. },
  35005. beak: {
  35006. height: math.unit(1.54, "feet"),
  35007. name: "Beak",
  35008. image: {
  35009. source: "./media/characters/tux-kusanagi/beak.svg"
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(10 + 3/12, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(58, "feet"),
  35026. weight: math.unit(200, "tons"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/uzarmazari/front.svg",
  35030. extra: 1575/1455,
  35031. bottom: 152/1727
  35032. }
  35033. },
  35034. back: {
  35035. height: math.unit(58, "feet"),
  35036. weight: math.unit(200, "tons"),
  35037. name: "Back",
  35038. image: {
  35039. source: "./media/characters/uzarmazari/back.svg",
  35040. extra: 1585/1510,
  35041. bottom: 157/1742
  35042. }
  35043. },
  35044. head: {
  35045. height: math.unit(26, "feet"),
  35046. name: "Head",
  35047. image: {
  35048. source: "./media/characters/uzarmazari/head.svg"
  35049. }
  35050. },
  35051. },
  35052. [
  35053. {
  35054. name: "Normal",
  35055. height: math.unit(58, "feet"),
  35056. default: true
  35057. },
  35058. ]
  35059. ))
  35060. characterMakers.push(() => makeCharacter(
  35061. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35062. {
  35063. side: {
  35064. height: math.unit(15, "feet"),
  35065. name: "Side",
  35066. image: {
  35067. source: "./media/characters/akitu/side.svg",
  35068. extra: 1421/1321,
  35069. bottom: 157/1578
  35070. }
  35071. },
  35072. front: {
  35073. height: math.unit(15, "feet"),
  35074. name: "Front",
  35075. image: {
  35076. source: "./media/characters/akitu/front.svg",
  35077. extra: 1435/1326,
  35078. bottom: 232/1667
  35079. }
  35080. },
  35081. },
  35082. [
  35083. {
  35084. name: "Normal",
  35085. height: math.unit(15, "feet"),
  35086. default: true
  35087. },
  35088. ]
  35089. ))
  35090. characterMakers.push(() => makeCharacter(
  35091. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35092. {
  35093. front: {
  35094. height: math.unit(10 + 8/12, "feet"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/azalie-croixland/front.svg",
  35098. extra: 1972/1856,
  35099. bottom: 31/2003
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Original Height",
  35106. height: math.unit(5 + 4/12, "feet")
  35107. },
  35108. {
  35109. name: "Normal Height",
  35110. height: math.unit(10 + 8/12, "feet"),
  35111. default: true
  35112. },
  35113. ]
  35114. ))
  35115. characterMakers.push(() => makeCharacter(
  35116. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35117. {
  35118. side: {
  35119. height: math.unit(7 + 1/12, "feet"),
  35120. weight: math.unit(245, "lb"),
  35121. name: "Side",
  35122. image: {
  35123. source: "./media/characters/kavus-kazian/side.svg",
  35124. extra: 349/342,
  35125. bottom: 15/364
  35126. }
  35127. },
  35128. },
  35129. [
  35130. {
  35131. name: "Normal",
  35132. height: math.unit(7 + 1/12, "feet"),
  35133. default: true
  35134. },
  35135. ]
  35136. ))
  35137. characterMakers.push(() => makeCharacter(
  35138. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35139. {
  35140. normalFront: {
  35141. height: math.unit(5 + 11/12, "feet"),
  35142. name: "Front",
  35143. image: {
  35144. source: "./media/characters/moonlight-rose/normal-front.svg",
  35145. extra: 1980/1825,
  35146. bottom: 18/1998
  35147. },
  35148. form: "normal",
  35149. default: true
  35150. },
  35151. normalBack: {
  35152. height: math.unit(5 + 11/12, "feet"),
  35153. name: "Back",
  35154. image: {
  35155. source: "./media/characters/moonlight-rose/normal-back.svg",
  35156. extra: 2010/1839,
  35157. bottom: 10/2020
  35158. },
  35159. form: "normal"
  35160. },
  35161. demonFront: {
  35162. height: math.unit(1.5, "earths"),
  35163. name: "Front",
  35164. image: {
  35165. source: "./media/characters/moonlight-rose/demon.svg",
  35166. extra: 1400/1294,
  35167. bottom: 45/1445
  35168. },
  35169. form: "demon",
  35170. default: true
  35171. },
  35172. terraFront: {
  35173. height: math.unit(1.5, "earths"),
  35174. name: "Front",
  35175. image: {
  35176. source: "./media/characters/moonlight-rose/terra.svg"
  35177. },
  35178. form: "terra",
  35179. default: true
  35180. },
  35181. jupiterFront: {
  35182. height: math.unit(69911*2, "km"),
  35183. name: "Front",
  35184. image: {
  35185. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35186. extra: 1367/1286,
  35187. bottom: 55/1422
  35188. },
  35189. form: "jupiter",
  35190. default: true
  35191. },
  35192. neptuneFront: {
  35193. height: math.unit(24622*2, "feet"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35197. extra: 1851/1712,
  35198. bottom: 0/1851
  35199. },
  35200. form: "neptune",
  35201. default: true
  35202. },
  35203. },
  35204. [
  35205. {
  35206. name: "\"Natural\" Height",
  35207. height: math.unit(5 + 11/12, "feet"),
  35208. form: "normal"
  35209. },
  35210. {
  35211. name: "Smallest comfortable size",
  35212. height: math.unit(40, "meters"),
  35213. form: "normal"
  35214. },
  35215. {
  35216. name: "Common size",
  35217. height: math.unit(50, "km"),
  35218. form: "normal",
  35219. default: true
  35220. },
  35221. {
  35222. name: "Normal",
  35223. height: math.unit(1.5, "earths"),
  35224. form: "demon",
  35225. default: true
  35226. },
  35227. {
  35228. name: "Universal",
  35229. height: math.unit(15, "universes"),
  35230. form: "demon"
  35231. },
  35232. {
  35233. name: "Earth",
  35234. height: math.unit(1.5, "earths"),
  35235. form: "terra",
  35236. default: true
  35237. },
  35238. {
  35239. name: "Super Earth",
  35240. height: math.unit(67.5, "earths"),
  35241. form: "terra"
  35242. },
  35243. {
  35244. name: "Doesn't fit in a solar system...",
  35245. height: math.unit(1, "galaxy"),
  35246. form: "terra"
  35247. },
  35248. {
  35249. name: "Saturn",
  35250. height: math.unit(58232*2, "km"),
  35251. form: "jupiter"
  35252. },
  35253. {
  35254. name: "Jupiter",
  35255. height: math.unit(69911*2, "km"),
  35256. form: "jupiter",
  35257. default: true
  35258. },
  35259. {
  35260. name: "HD 100546 b",
  35261. height: math.unit(482938, "km"),
  35262. form: "jupiter"
  35263. },
  35264. {
  35265. name: "Enceladus",
  35266. height: math.unit(513*2, "km"),
  35267. form: "neptune"
  35268. },
  35269. {
  35270. name: "Europe",
  35271. height: math.unit(1560*2, "km"),
  35272. form: "neptune"
  35273. },
  35274. {
  35275. name: "Neptune",
  35276. height: math.unit(24622*2, "km"),
  35277. form: "neptune",
  35278. default: true
  35279. },
  35280. {
  35281. name: "CoRoT-9b",
  35282. height: math.unit(75067*2, "km"),
  35283. form: "neptune"
  35284. },
  35285. ],
  35286. {
  35287. "normal": {
  35288. name: "Normal",
  35289. default: true
  35290. },
  35291. "demon": {
  35292. name: "Demon"
  35293. },
  35294. "terra": {
  35295. name: "Terra"
  35296. },
  35297. "jupiter": {
  35298. name: "Jupiter"
  35299. },
  35300. "neptune": {
  35301. name: "Neptune"
  35302. }
  35303. }
  35304. ))
  35305. characterMakers.push(() => makeCharacter(
  35306. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35307. {
  35308. front: {
  35309. height: math.unit(16, "feet"),
  35310. weight: math.unit(610, "kg"),
  35311. name: "Front",
  35312. image: {
  35313. source: "./media/characters/huckle/front.svg",
  35314. extra: 1731/1625,
  35315. bottom: 33/1764
  35316. }
  35317. },
  35318. back: {
  35319. height: math.unit(16, "feet"),
  35320. weight: math.unit(610, "kg"),
  35321. name: "Back",
  35322. image: {
  35323. source: "./media/characters/huckle/back.svg",
  35324. extra: 1738/1651,
  35325. bottom: 37/1775
  35326. }
  35327. },
  35328. laughing: {
  35329. height: math.unit(3.75, "feet"),
  35330. name: "Laughing",
  35331. image: {
  35332. source: "./media/characters/huckle/laughing.svg"
  35333. }
  35334. },
  35335. angry: {
  35336. height: math.unit(4.15, "feet"),
  35337. name: "Angry",
  35338. image: {
  35339. source: "./media/characters/huckle/angry.svg"
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(16, "feet"),
  35347. default: true
  35348. },
  35349. {
  35350. name: "Mini Macro",
  35351. height: math.unit(463, "feet")
  35352. },
  35353. {
  35354. name: "Macro",
  35355. height: math.unit(1680, "meters")
  35356. },
  35357. {
  35358. name: "Mega Macro",
  35359. height: math.unit(175, "km")
  35360. },
  35361. {
  35362. name: "Terra Macro",
  35363. height: math.unit(32, "gigameters")
  35364. },
  35365. {
  35366. name: "Multiverse+",
  35367. height: math.unit(2.56e23, "yottameters")
  35368. },
  35369. ]
  35370. ))
  35371. characterMakers.push(() => makeCharacter(
  35372. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35373. {
  35374. front: {
  35375. height: math.unit(6 + 9/12, "feet"),
  35376. weight: math.unit(280, "lb"),
  35377. name: "Front",
  35378. image: {
  35379. source: "./media/characters/candy/front.svg",
  35380. extra: 234/217,
  35381. bottom: 11/245
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Really Small",
  35388. height: math.unit(0.1, "nm")
  35389. },
  35390. {
  35391. name: "Micro",
  35392. height: math.unit(2, "inches")
  35393. },
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(6 + 9/12, "feet"),
  35397. default: true
  35398. },
  35399. {
  35400. name: "Small Macro",
  35401. height: math.unit(69, "feet")
  35402. },
  35403. {
  35404. name: "Macro",
  35405. height: math.unit(160, "feet")
  35406. },
  35407. {
  35408. name: "Megamacro",
  35409. height: math.unit(22000, "miles")
  35410. },
  35411. {
  35412. name: "Gigamacro",
  35413. height: math.unit(50000, "miles")
  35414. },
  35415. ]
  35416. ))
  35417. characterMakers.push(() => makeCharacter(
  35418. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35419. {
  35420. front: {
  35421. height: math.unit(4, "feet"),
  35422. weight: math.unit(90, "lb"),
  35423. name: "Front",
  35424. image: {
  35425. source: "./media/characters/joey-mcdonald/front.svg",
  35426. extra: 1059/852,
  35427. bottom: 33/1092
  35428. }
  35429. },
  35430. back: {
  35431. height: math.unit(4, "feet"),
  35432. weight: math.unit(90, "lb"),
  35433. name: "Back",
  35434. image: {
  35435. source: "./media/characters/joey-mcdonald/back.svg",
  35436. extra: 1077/879,
  35437. bottom: 5/1082
  35438. }
  35439. },
  35440. frontKobold: {
  35441. height: math.unit(4, "feet"),
  35442. weight: math.unit(100, "lb"),
  35443. name: "Front-kobold",
  35444. image: {
  35445. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35446. extra: 1480/1367,
  35447. bottom: 0/1480
  35448. }
  35449. },
  35450. backKobold: {
  35451. height: math.unit(4, "feet"),
  35452. weight: math.unit(100, "lb"),
  35453. name: "Back-kobold",
  35454. image: {
  35455. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35456. extra: 1449/1361,
  35457. bottom: 0/1449
  35458. }
  35459. },
  35460. },
  35461. [
  35462. {
  35463. name: "Normal",
  35464. height: math.unit(4, "feet"),
  35465. default: true
  35466. },
  35467. ]
  35468. ))
  35469. characterMakers.push(() => makeCharacter(
  35470. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35471. {
  35472. front: {
  35473. height: math.unit(12 + 6/12, "feet"),
  35474. name: "Front",
  35475. image: {
  35476. source: "./media/characters/kass-lockheed/front.svg",
  35477. extra: 354/343,
  35478. bottom: 9/363
  35479. }
  35480. },
  35481. back: {
  35482. height: math.unit(12 + 6/12, "feet"),
  35483. name: "Back",
  35484. image: {
  35485. source: "./media/characters/kass-lockheed/back.svg",
  35486. extra: 364/352,
  35487. bottom: 3/367
  35488. }
  35489. },
  35490. dick: {
  35491. height: math.unit(3.12, "feet"),
  35492. name: "Dick",
  35493. image: {
  35494. source: "./media/characters/kass-lockheed/dick.svg"
  35495. }
  35496. },
  35497. head: {
  35498. height: math.unit(2.6, "feet"),
  35499. name: "Head",
  35500. image: {
  35501. source: "./media/characters/kass-lockheed/head.svg"
  35502. }
  35503. },
  35504. bleh: {
  35505. height: math.unit(2.85, "feet"),
  35506. name: "Bleh",
  35507. image: {
  35508. source: "./media/characters/kass-lockheed/bleh.svg"
  35509. }
  35510. },
  35511. smug: {
  35512. height: math.unit(2.85, "feet"),
  35513. name: "Smug",
  35514. image: {
  35515. source: "./media/characters/kass-lockheed/smug.svg"
  35516. }
  35517. },
  35518. },
  35519. [
  35520. {
  35521. name: "Normal",
  35522. height: math.unit(12 + 6/12, "feet"),
  35523. default: true
  35524. },
  35525. ]
  35526. ))
  35527. characterMakers.push(() => makeCharacter(
  35528. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35529. {
  35530. front: {
  35531. height: math.unit(6 + 2/12, "feet"),
  35532. name: "Front",
  35533. image: {
  35534. source: "./media/characters/taylor/front.svg",
  35535. extra: 639/495,
  35536. bottom: 12/651
  35537. }
  35538. },
  35539. },
  35540. [
  35541. {
  35542. name: "Normal",
  35543. height: math.unit(6 + 2/12, "feet"),
  35544. default: true
  35545. },
  35546. {
  35547. name: "Big",
  35548. height: math.unit(15, "feet")
  35549. },
  35550. {
  35551. name: "Lorg",
  35552. height: math.unit(80, "feet")
  35553. },
  35554. {
  35555. name: "Too Lorg",
  35556. height: math.unit(120, "feet")
  35557. },
  35558. ]
  35559. ))
  35560. characterMakers.push(() => makeCharacter(
  35561. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35562. {
  35563. front: {
  35564. height: math.unit(15, "feet"),
  35565. name: "Front",
  35566. image: {
  35567. source: "./media/characters/kaizer/front.svg",
  35568. extra: 1612/1436,
  35569. bottom: 43/1655
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(15, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(2, "feet"),
  35586. weight: math.unit(30, "lb"),
  35587. name: "Front",
  35588. image: {
  35589. source: "./media/characters/sandy/front.svg",
  35590. extra: 1439/1307,
  35591. bottom: 194/1633
  35592. }
  35593. },
  35594. },
  35595. [
  35596. {
  35597. name: "Normal",
  35598. height: math.unit(2, "feet"),
  35599. default: true
  35600. },
  35601. ]
  35602. ))
  35603. characterMakers.push(() => makeCharacter(
  35604. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35605. {
  35606. front: {
  35607. height: math.unit(3, "feet"),
  35608. name: "Front",
  35609. image: {
  35610. source: "./media/characters/mellvi/front.svg",
  35611. extra: 1831/1630,
  35612. bottom: 58/1889
  35613. }
  35614. },
  35615. },
  35616. [
  35617. {
  35618. name: "Normal",
  35619. height: math.unit(3, "feet"),
  35620. default: true
  35621. },
  35622. ]
  35623. ))
  35624. characterMakers.push(() => makeCharacter(
  35625. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35626. {
  35627. front: {
  35628. height: math.unit(5 + 11/12, "feet"),
  35629. weight: math.unit(200, "lb"),
  35630. name: "Front",
  35631. image: {
  35632. source: "./media/characters/shirou/front.svg",
  35633. extra: 2491/2383,
  35634. bottom: 189/2680
  35635. }
  35636. },
  35637. back: {
  35638. height: math.unit(5 + 11/12, "feet"),
  35639. weight: math.unit(200, "lb"),
  35640. name: "Back",
  35641. image: {
  35642. source: "./media/characters/shirou/back.svg",
  35643. extra: 2554/2450,
  35644. bottom: 76/2630
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(5 + 11/12, "feet"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(6 + 3/12, "feet"),
  35661. weight: math.unit(177, "lb"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/noryu/front.svg",
  35665. extra: 973/885,
  35666. bottom: 10/983
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(6 + 3/12, "feet"),
  35674. default: true
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35680. {
  35681. front: {
  35682. height: math.unit(5 + 6/12, "feet"),
  35683. weight: math.unit(170, "lb"),
  35684. name: "Front",
  35685. image: {
  35686. source: "./media/characters/mevolas-rubenido/front.svg",
  35687. extra: 2109/1901,
  35688. bottom: 96/2205
  35689. }
  35690. },
  35691. },
  35692. [
  35693. {
  35694. name: "Normal",
  35695. height: math.unit(5 + 6/12, "feet"),
  35696. default: true
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35702. {
  35703. front: {
  35704. height: math.unit(100, "feet"),
  35705. name: "Front",
  35706. image: {
  35707. source: "./media/characters/dee/front.svg",
  35708. extra: 2153/2036,
  35709. bottom: 59/2212
  35710. }
  35711. },
  35712. back: {
  35713. height: math.unit(100, "feet"),
  35714. name: "Back",
  35715. image: {
  35716. source: "./media/characters/dee/back.svg",
  35717. extra: 2183/2058,
  35718. bottom: 75/2258
  35719. }
  35720. },
  35721. foot: {
  35722. height: math.unit(19.43, "feet"),
  35723. name: "Foot",
  35724. image: {
  35725. source: "./media/characters/dee/foot.svg"
  35726. }
  35727. },
  35728. hoof: {
  35729. height: math.unit(20.6, "feet"),
  35730. name: "Hoof",
  35731. image: {
  35732. source: "./media/characters/dee/hoof.svg"
  35733. }
  35734. },
  35735. },
  35736. [
  35737. {
  35738. name: "Macro",
  35739. height: math.unit(100, "feet"),
  35740. default: true
  35741. },
  35742. ]
  35743. ))
  35744. characterMakers.push(() => makeCharacter(
  35745. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35746. {
  35747. front: {
  35748. height: math.unit(5 + 6/12, "feet"),
  35749. name: "Front",
  35750. image: {
  35751. source: "./media/characters/teh/front.svg",
  35752. extra: 1002/847,
  35753. bottom: 62/1064
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Normal",
  35760. height: math.unit(5 + 6/12, "feet"),
  35761. default: true
  35762. },
  35763. ]
  35764. ))
  35765. characterMakers.push(() => makeCharacter(
  35766. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35767. {
  35768. side: {
  35769. height: math.unit(6 + 1/12, "feet"),
  35770. weight: math.unit(204, "lb"),
  35771. name: "Side",
  35772. image: {
  35773. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35774. extra: 974/775,
  35775. bottom: 169/1143
  35776. }
  35777. },
  35778. sitting: {
  35779. height: math.unit(6 + 2/12, "feet"),
  35780. weight: math.unit(204, "lb"),
  35781. name: "Sitting",
  35782. image: {
  35783. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35784. extra: 1175/964,
  35785. bottom: 378/1553
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(6 + 1/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35799. {
  35800. front: {
  35801. height: math.unit(6, "inches"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/tululi/front.svg",
  35805. extra: 1997/1876,
  35806. bottom: 20/2017
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(6, "inches"),
  35814. default: true
  35815. },
  35816. ]
  35817. ))
  35818. characterMakers.push(() => makeCharacter(
  35819. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35820. {
  35821. front: {
  35822. height: math.unit(4 + 1/12, "feet"),
  35823. name: "Front",
  35824. image: {
  35825. source: "./media/characters/star/front.svg",
  35826. extra: 1493/1189,
  35827. bottom: 48/1541
  35828. }
  35829. },
  35830. },
  35831. [
  35832. {
  35833. name: "Normal",
  35834. height: math.unit(4 + 1/12, "feet"),
  35835. default: true
  35836. },
  35837. ]
  35838. ))
  35839. characterMakers.push(() => makeCharacter(
  35840. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35841. {
  35842. front: {
  35843. height: math.unit(6 + 3/12, "feet"),
  35844. name: "Front",
  35845. image: {
  35846. source: "./media/characters/comet/front.svg",
  35847. extra: 1681/1462,
  35848. bottom: 26/1707
  35849. }
  35850. },
  35851. },
  35852. [
  35853. {
  35854. name: "Normal",
  35855. height: math.unit(6 + 3/12, "feet"),
  35856. default: true
  35857. },
  35858. ]
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35862. {
  35863. front: {
  35864. height: math.unit(950, "feet"),
  35865. name: "Front",
  35866. image: {
  35867. source: "./media/characters/vortex/front.svg",
  35868. extra: 1497/1434,
  35869. bottom: 56/1553
  35870. }
  35871. },
  35872. maw: {
  35873. height: math.unit(285, "feet"),
  35874. name: "Maw",
  35875. image: {
  35876. source: "./media/characters/vortex/maw.svg"
  35877. }
  35878. },
  35879. },
  35880. [
  35881. {
  35882. name: "Macro",
  35883. height: math.unit(950, "feet"),
  35884. default: true
  35885. },
  35886. ]
  35887. ))
  35888. characterMakers.push(() => makeCharacter(
  35889. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35890. {
  35891. front: {
  35892. height: math.unit(600, "feet"),
  35893. weight: math.unit(0.02, "grams"),
  35894. name: "Front",
  35895. image: {
  35896. source: "./media/characters/doodle/front.svg",
  35897. extra: 1578/1413,
  35898. bottom: 37/1615
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Macro",
  35905. height: math.unit(600, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(6 + 6/12, "feet"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/jai/front.svg",
  35918. extra: 1645/1534,
  35919. bottom: 115/1760
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Normal",
  35926. height: math.unit(6 + 6/12, "feet"),
  35927. default: true
  35928. },
  35929. ]
  35930. ))
  35931. characterMakers.push(() => makeCharacter(
  35932. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35933. {
  35934. front: {
  35935. height: math.unit(6 + 8/12, "feet"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/pixel/front.svg",
  35939. extra: 1900/1735,
  35940. bottom: 63/1963
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Normal",
  35947. height: math.unit(6 + 8/12, "feet"),
  35948. default: true
  35949. },
  35950. ]
  35951. ))
  35952. characterMakers.push(() => makeCharacter(
  35953. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35954. {
  35955. back: {
  35956. height: math.unit(4 + 1/12, "feet"),
  35957. weight: math.unit(75, "lb"),
  35958. name: "Back",
  35959. image: {
  35960. source: "./media/characters/rhett/back.svg",
  35961. extra: 930/878,
  35962. bottom: 25/955
  35963. }
  35964. },
  35965. front: {
  35966. height: math.unit(4 + 1/12, "feet"),
  35967. weight: math.unit(75, "lb"),
  35968. name: "Front",
  35969. image: {
  35970. source: "./media/characters/rhett/front.svg",
  35971. extra: 1682/1586,
  35972. bottom: 92/1774
  35973. }
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "Micro",
  35979. height: math.unit(8, "inches")
  35980. },
  35981. {
  35982. name: "Tiny",
  35983. height: math.unit(2, "feet")
  35984. },
  35985. {
  35986. name: "Normal",
  35987. height: math.unit(4 + 1/12, "feet"),
  35988. default: true
  35989. },
  35990. ]
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35994. {
  35995. front: {
  35996. height: math.unit(3 + 3/12, "feet"),
  35997. name: "Front",
  35998. image: {
  35999. source: "./media/characters/penny/front.svg",
  36000. extra: 1406/1311,
  36001. bottom: 26/1432
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(3 + 3/12, "feet"),
  36009. default: true
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(4 + 11/12, "feet"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/monty/front.svg",
  36021. extra: 1479/1209,
  36022. bottom: 0/1479
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Normal",
  36029. height: math.unit(4 + 11/12, "feet"),
  36030. default: true
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36036. {
  36037. front: {
  36038. height: math.unit(8 + 4/12, "feet"),
  36039. name: "Front",
  36040. image: {
  36041. source: "./media/characters/sterling/front.svg",
  36042. extra: 1420/1236,
  36043. bottom: 27/1447
  36044. }
  36045. },
  36046. },
  36047. [
  36048. {
  36049. name: "Normal",
  36050. height: math.unit(8 + 4/12, "feet"),
  36051. default: true
  36052. },
  36053. ]
  36054. ))
  36055. characterMakers.push(() => makeCharacter(
  36056. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36057. {
  36058. front: {
  36059. height: math.unit(15, "feet"),
  36060. name: "Front",
  36061. image: {
  36062. source: "./media/characters/marble/front.svg",
  36063. extra: 973/937,
  36064. bottom: 32/1005
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(15, "feet"),
  36072. default: true
  36073. },
  36074. ]
  36075. ))
  36076. characterMakers.push(() => makeCharacter(
  36077. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36078. {
  36079. front: {
  36080. height: math.unit(3, "inches"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/powder/front.svg",
  36084. extra: 1504/1334,
  36085. bottom: 518/2022
  36086. }
  36087. },
  36088. },
  36089. [
  36090. {
  36091. name: "Normal",
  36092. height: math.unit(3, "inches"),
  36093. default: true
  36094. },
  36095. ]
  36096. ))
  36097. characterMakers.push(() => makeCharacter(
  36098. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36099. {
  36100. front: {
  36101. height: math.unit(4 + 5/12, "feet"),
  36102. name: "Front",
  36103. image: {
  36104. source: "./media/characters/joey-raccoon/front.svg",
  36105. extra: 1273/1197,
  36106. bottom: 0/1273
  36107. }
  36108. },
  36109. },
  36110. [
  36111. {
  36112. name: "Normal",
  36113. height: math.unit(4 + 5/12, "feet"),
  36114. default: true
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36120. {
  36121. front: {
  36122. height: math.unit(8 + 4/12, "feet"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/vick/front.svg",
  36126. extra: 2187/2118,
  36127. bottom: 47/2234
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(8 + 4/12, "feet"),
  36135. default: true
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36141. {
  36142. front: {
  36143. height: math.unit(5 + 5/12, "feet"),
  36144. name: "Front",
  36145. image: {
  36146. source: "./media/characters/mitsy/front.svg",
  36147. extra: 1842/1695,
  36148. bottom: 0/1842
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(5 + 5/12, "feet"),
  36156. default: true
  36157. },
  36158. ]
  36159. ))
  36160. characterMakers.push(() => makeCharacter(
  36161. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36162. {
  36163. front: {
  36164. height: math.unit(6 + 3/12, "feet"),
  36165. name: "Front",
  36166. image: {
  36167. source: "./media/characters/silvy/front.svg",
  36168. extra: 1995/1836,
  36169. bottom: 225/2220
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(6 + 3/12, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(3 + 8/12, "feet"),
  36186. name: "Front",
  36187. image: {
  36188. source: "./media/characters/rodney/front.svg",
  36189. extra: 1956/1747,
  36190. bottom: 31/1987
  36191. }
  36192. },
  36193. frontDressed: {
  36194. height: math.unit(2.9, "feet"),
  36195. name: "Front (Dressed)",
  36196. image: {
  36197. source: "./media/characters/rodney/front-dressed.svg",
  36198. extra: 1382/1241,
  36199. bottom: 385/1767
  36200. }
  36201. },
  36202. },
  36203. [
  36204. {
  36205. name: "Normal",
  36206. height: math.unit(3 + 8/12, "feet"),
  36207. default: true
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36213. {
  36214. front: {
  36215. height: math.unit(5 + 9/12, "feet"),
  36216. weight: math.unit(194, "lbs"),
  36217. name: "Front",
  36218. image: {
  36219. source: "./media/characters/zakail-sudekai/front.svg",
  36220. extra: 2696/2533,
  36221. bottom: 248/2944
  36222. }
  36223. },
  36224. maw: {
  36225. height: math.unit(1.35, "feet"),
  36226. name: "Maw",
  36227. image: {
  36228. source: "./media/characters/zakail-sudekai/maw.svg"
  36229. }
  36230. },
  36231. },
  36232. [
  36233. {
  36234. name: "Normal",
  36235. height: math.unit(5 + 9/12, "feet"),
  36236. default: true
  36237. },
  36238. ]
  36239. ))
  36240. characterMakers.push(() => makeCharacter(
  36241. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36242. {
  36243. front: {
  36244. height: math.unit(8 + 4/12, "feet"),
  36245. weight: math.unit(1200, "lb"),
  36246. name: "Front",
  36247. image: {
  36248. source: "./media/characters/eleanor/front.svg",
  36249. extra: 1226/1192,
  36250. bottom: 52/1278
  36251. }
  36252. },
  36253. back: {
  36254. height: math.unit(8 + 4/12, "feet"),
  36255. weight: math.unit(1200, "lb"),
  36256. name: "Back",
  36257. image: {
  36258. source: "./media/characters/eleanor/back.svg",
  36259. extra: 1242/1184,
  36260. bottom: 60/1302
  36261. }
  36262. },
  36263. head: {
  36264. height: math.unit(2.62, "feet"),
  36265. name: "Head",
  36266. image: {
  36267. source: "./media/characters/eleanor/head.svg"
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(8 + 4/12, "feet"),
  36275. default: true
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36281. {
  36282. front: {
  36283. height: math.unit(8 + 4/12, "feet"),
  36284. weight: math.unit(750, "lb"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/tanya/front.svg",
  36288. extra: 1749/1615,
  36289. bottom: 33/1782
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Normal",
  36296. height: math.unit(8 + 4/12, "feet"),
  36297. default: true
  36298. },
  36299. ]
  36300. ))
  36301. characterMakers.push(() => makeCharacter(
  36302. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36303. {
  36304. front: {
  36305. height: math.unit(5, "feet"),
  36306. weight: math.unit(225, "lb"),
  36307. name: "Front",
  36308. image: {
  36309. source: "./media/characters/cindy/front.svg",
  36310. extra: 1320/1250,
  36311. bottom: 42/1362
  36312. }
  36313. },
  36314. frontDressed: {
  36315. height: math.unit(5, "feet"),
  36316. weight: math.unit(225, "lb"),
  36317. name: "Front (Dressed)",
  36318. image: {
  36319. source: "./media/characters/cindy/front-dressed.svg",
  36320. extra: 1320/1250,
  36321. bottom: 42/1362
  36322. }
  36323. },
  36324. back: {
  36325. height: math.unit(5, "feet"),
  36326. weight: math.unit(225, "lb"),
  36327. name: "Back",
  36328. image: {
  36329. source: "./media/characters/cindy/back.svg",
  36330. extra: 1384/1346,
  36331. bottom: 14/1398
  36332. }
  36333. },
  36334. },
  36335. [
  36336. {
  36337. name: "Normal",
  36338. height: math.unit(5, "feet"),
  36339. default: true
  36340. },
  36341. ]
  36342. ))
  36343. characterMakers.push(() => makeCharacter(
  36344. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36345. {
  36346. front: {
  36347. height: math.unit(6 + 9/12, "feet"),
  36348. weight: math.unit(440, "lb"),
  36349. name: "Front",
  36350. image: {
  36351. source: "./media/characters/wilbur-owen/front.svg",
  36352. extra: 1575/1448,
  36353. bottom: 72/1647
  36354. }
  36355. },
  36356. back: {
  36357. height: math.unit(6 + 9/12, "feet"),
  36358. weight: math.unit(440, "lb"),
  36359. name: "Back",
  36360. image: {
  36361. source: "./media/characters/wilbur-owen/back.svg",
  36362. extra: 1578/1445,
  36363. bottom: 36/1614
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal",
  36370. height: math.unit(6 + 9/12, "feet"),
  36371. default: true
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36377. {
  36378. front: {
  36379. height: math.unit(6 + 5/12, "feet"),
  36380. weight: math.unit(650, "lb"),
  36381. name: "Front",
  36382. image: {
  36383. source: "./media/characters/keegan/front.svg",
  36384. extra: 2387/2198,
  36385. bottom: 33/2420
  36386. }
  36387. },
  36388. side: {
  36389. height: math.unit(6 + 5/12, "feet"),
  36390. weight: math.unit(650, "lb"),
  36391. name: "Side",
  36392. image: {
  36393. source: "./media/characters/keegan/side.svg",
  36394. extra: 2390/2202,
  36395. bottom: 47/2437
  36396. }
  36397. },
  36398. back: {
  36399. height: math.unit(6 + 5/12, "feet"),
  36400. weight: math.unit(650, "lb"),
  36401. name: "Back",
  36402. image: {
  36403. source: "./media/characters/keegan/back.svg",
  36404. extra: 2418/2268,
  36405. bottom: 15/2433
  36406. }
  36407. },
  36408. frontSfw: {
  36409. height: math.unit(6 + 5/12, "feet"),
  36410. weight: math.unit(650, "lb"),
  36411. name: "Front (SFW)",
  36412. image: {
  36413. source: "./media/characters/keegan/front-sfw.svg",
  36414. extra: 2387/2198,
  36415. bottom: 33/2420
  36416. }
  36417. },
  36418. beans: {
  36419. height: math.unit(1.85, "feet"),
  36420. name: "Beans",
  36421. image: {
  36422. source: "./media/characters/keegan/beans.svg"
  36423. }
  36424. },
  36425. },
  36426. [
  36427. {
  36428. name: "Normal",
  36429. height: math.unit(6 + 5/12, "feet"),
  36430. default: true
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(9, "feet"),
  36439. name: "Front",
  36440. image: {
  36441. source: "./media/characters/colton/front.svg",
  36442. extra: 1589/1326,
  36443. bottom: 139/1728
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(9, "feet"),
  36451. default: true
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36457. {
  36458. front: {
  36459. height: math.unit(2 + 9/12, "feet"),
  36460. name: "Front",
  36461. image: {
  36462. source: "./media/characters/bora/front.svg",
  36463. extra: 1265/1250,
  36464. bottom: 24/1289
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(2 + 9/12, "feet"),
  36472. default: true
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(8, "feet"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/myu-myu/front.svg",
  36484. extra: 1949/1857,
  36485. bottom: 90/2039
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Normal",
  36492. height: math.unit(8, "feet"),
  36493. default: true
  36494. },
  36495. {
  36496. name: "Big",
  36497. height: math.unit(15, "feet")
  36498. },
  36499. {
  36500. name: "BIG",
  36501. height: math.unit(25, "feet")
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36507. {
  36508. side: {
  36509. height: math.unit(7 + 5/12, "feet"),
  36510. weight: math.unit(2800, "lb"),
  36511. name: "Side",
  36512. image: {
  36513. source: "./media/characters/haloren/side.svg",
  36514. extra: 1793/409,
  36515. bottom: 59/1852
  36516. }
  36517. },
  36518. frontPaw: {
  36519. height: math.unit(2.36, "feet"),
  36520. name: "Front paw",
  36521. image: {
  36522. source: "./media/characters/haloren/front-paw.svg"
  36523. }
  36524. },
  36525. hindPaw: {
  36526. height: math.unit(3.18, "feet"),
  36527. name: "Hind paw",
  36528. image: {
  36529. source: "./media/characters/haloren/hind-paw.svg"
  36530. }
  36531. },
  36532. maw: {
  36533. height: math.unit(5.05, "feet"),
  36534. name: "Maw",
  36535. image: {
  36536. source: "./media/characters/haloren/maw.svg"
  36537. }
  36538. },
  36539. dick: {
  36540. height: math.unit(2.90, "feet"),
  36541. name: "Dick",
  36542. image: {
  36543. source: "./media/characters/haloren/dick.svg"
  36544. }
  36545. },
  36546. },
  36547. [
  36548. {
  36549. name: "Normal",
  36550. height: math.unit(7 + 5/12, "feet"),
  36551. default: true
  36552. },
  36553. {
  36554. name: "Enhanced",
  36555. height: math.unit(14 + 3/12, "feet")
  36556. },
  36557. ]
  36558. ))
  36559. characterMakers.push(() => makeCharacter(
  36560. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36561. {
  36562. front: {
  36563. height: math.unit(171, "cm"),
  36564. name: "Front",
  36565. image: {
  36566. source: "./media/characters/kimmy/front.svg",
  36567. extra: 1491/1435,
  36568. bottom: 53/1544
  36569. }
  36570. },
  36571. },
  36572. [
  36573. {
  36574. name: "Small",
  36575. height: math.unit(9, "cm")
  36576. },
  36577. {
  36578. name: "Normal",
  36579. height: math.unit(171, "cm"),
  36580. default: true
  36581. },
  36582. ]
  36583. ))
  36584. characterMakers.push(() => makeCharacter(
  36585. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36586. {
  36587. front: {
  36588. height: math.unit(8, "feet"),
  36589. weight: math.unit(300, "lb"),
  36590. name: "Front",
  36591. image: {
  36592. source: "./media/characters/galeboomer/front.svg",
  36593. extra: 4651/4415,
  36594. bottom: 162/4813
  36595. }
  36596. },
  36597. back: {
  36598. height: math.unit(8, "feet"),
  36599. weight: math.unit(300, "lb"),
  36600. name: "Back",
  36601. image: {
  36602. source: "./media/characters/galeboomer/back.svg",
  36603. extra: 4544/4314,
  36604. bottom: 16/4560
  36605. }
  36606. },
  36607. frontAlt: {
  36608. height: math.unit(8, "feet"),
  36609. weight: math.unit(300, "lb"),
  36610. name: "Front (Alt)",
  36611. image: {
  36612. source: "./media/characters/galeboomer/front-alt.svg",
  36613. extra: 4458/4228,
  36614. bottom: 68/4526
  36615. }
  36616. },
  36617. maw: {
  36618. height: math.unit(1.2, "feet"),
  36619. name: "Maw",
  36620. image: {
  36621. source: "./media/characters/galeboomer/maw.svg"
  36622. }
  36623. },
  36624. },
  36625. [
  36626. {
  36627. name: "Normal",
  36628. height: math.unit(8, "feet"),
  36629. default: true
  36630. },
  36631. ]
  36632. ))
  36633. characterMakers.push(() => makeCharacter(
  36634. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36635. {
  36636. front: {
  36637. height: math.unit(5 + 9/12, "feet"),
  36638. weight: math.unit(120, "lb"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/chyr/front.svg",
  36642. extra: 1323/1254,
  36643. bottom: 63/1386
  36644. }
  36645. },
  36646. back: {
  36647. height: math.unit(5 + 9/12, "feet"),
  36648. weight: math.unit(120, "lb"),
  36649. name: "Back",
  36650. image: {
  36651. source: "./media/characters/chyr/back.svg",
  36652. extra: 1323/1252,
  36653. bottom: 48/1371
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(5 + 9/12, "feet"),
  36661. default: true
  36662. },
  36663. ]
  36664. ))
  36665. characterMakers.push(() => makeCharacter(
  36666. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36667. {
  36668. front: {
  36669. height: math.unit(7, "feet"),
  36670. weight: math.unit(310, "lb"),
  36671. name: "Front",
  36672. image: {
  36673. source: "./media/characters/solarus/front.svg",
  36674. extra: 2415/2021,
  36675. bottom: 103/2518
  36676. }
  36677. },
  36678. back: {
  36679. height: math.unit(7, "feet"),
  36680. weight: math.unit(310, "lb"),
  36681. name: "Back",
  36682. image: {
  36683. source: "./media/characters/solarus/back.svg",
  36684. extra: 2463/2089,
  36685. bottom: 79/2542
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(7, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36699. {
  36700. front: {
  36701. height: math.unit(16, "feet"),
  36702. name: "Front",
  36703. image: {
  36704. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36705. extra: 1844/1780,
  36706. bottom: 58/1902
  36707. }
  36708. },
  36709. winterCoat: {
  36710. height: math.unit(16, "feet"),
  36711. name: "Winter Coat",
  36712. image: {
  36713. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36714. extra: 1807/1775,
  36715. bottom: 69/1876
  36716. }
  36717. },
  36718. },
  36719. [
  36720. {
  36721. name: "Normal",
  36722. height: math.unit(16, "feet"),
  36723. default: true
  36724. },
  36725. {
  36726. name: "Chicago Size",
  36727. height: math.unit(560, "feet")
  36728. },
  36729. ]
  36730. ))
  36731. characterMakers.push(() => makeCharacter(
  36732. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36733. {
  36734. front: {
  36735. height: math.unit(11 + 6/12, "feet"),
  36736. weight: math.unit(1366, "lb"),
  36737. name: "Front",
  36738. image: {
  36739. source: "./media/characters/lexor/front.svg",
  36740. extra: 1560/1481,
  36741. bottom: 211/1771
  36742. }
  36743. },
  36744. back: {
  36745. height: math.unit(11 + 6/12, "feet"),
  36746. weight: math.unit(1366, "lb"),
  36747. name: "Back",
  36748. image: {
  36749. source: "./media/characters/lexor/back.svg",
  36750. extra: 1614/1533,
  36751. bottom: 76/1690
  36752. }
  36753. },
  36754. maw: {
  36755. height: math.unit(3, "feet"),
  36756. name: "Maw",
  36757. image: {
  36758. source: "./media/characters/lexor/maw.svg"
  36759. }
  36760. },
  36761. dick: {
  36762. height: math.unit(2.59, "feet"),
  36763. name: "Dick",
  36764. image: {
  36765. source: "./media/characters/lexor/dick.svg"
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(11 + 6/12, "feet"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(5 + 8/12, "feet"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/magnum/front.svg",
  36785. extra: 942/855,
  36786. bottom: 26/968
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(5 + 8/12, "feet"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36800. {
  36801. front: {
  36802. height: math.unit(18 + 4/12, "feet"),
  36803. weight: math.unit(1500, "kg"),
  36804. name: "Front",
  36805. image: {
  36806. source: "./media/characters/solas-sharpsman/front.svg",
  36807. extra: 1698/1589,
  36808. bottom: 0/1698
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Normal",
  36815. height: math.unit(18 + 4/12, "feet"),
  36816. default: true
  36817. },
  36818. ]
  36819. ))
  36820. characterMakers.push(() => makeCharacter(
  36821. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36822. {
  36823. front: {
  36824. height: math.unit(5 + 5/12, "feet"),
  36825. weight: math.unit(180, "lb"),
  36826. name: "Front",
  36827. image: {
  36828. source: "./media/characters/october/front.svg",
  36829. extra: 1800/1650,
  36830. bottom: 0/1800
  36831. }
  36832. },
  36833. frontNsfw: {
  36834. height: math.unit(5 + 5/12, "feet"),
  36835. weight: math.unit(180, "lb"),
  36836. name: "Front (NSFW)",
  36837. image: {
  36838. source: "./media/characters/october/front-nsfw.svg",
  36839. extra: 1392/1307,
  36840. bottom: 42/1434
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(5 + 5/12, "feet"),
  36848. default: true
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(8 + 6/12, "feet"),
  36857. name: "Front",
  36858. image: {
  36859. source: "./media/characters/essynkardi/front.svg",
  36860. extra: 1914/1846,
  36861. bottom: 22/1936
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Normal",
  36868. height: math.unit(8 + 6/12, "feet"),
  36869. default: true
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(6 + 6/12, "feet"),
  36878. weight: math.unit(7, "lb"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/icky/front.svg",
  36882. extra: 813/782,
  36883. bottom: 66/879
  36884. }
  36885. },
  36886. back: {
  36887. height: math.unit(6 + 6/12, "feet"),
  36888. weight: math.unit(7, "lb"),
  36889. name: "Back",
  36890. image: {
  36891. source: "./media/characters/icky/back.svg",
  36892. extra: 754/735,
  36893. bottom: 56/810
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(6 + 6/12, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(15, "feet"),
  36910. name: "Front",
  36911. image: {
  36912. source: "./media/characters/rojas/front.svg",
  36913. extra: 1462/1408,
  36914. bottom: 95/1557
  36915. }
  36916. },
  36917. back: {
  36918. height: math.unit(15, "feet"),
  36919. name: "Back",
  36920. image: {
  36921. source: "./media/characters/rojas/back.svg",
  36922. extra: 1023/954,
  36923. bottom: 28/1051
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(15, "feet"),
  36931. default: true
  36932. },
  36933. ]
  36934. ))
  36935. characterMakers.push(() => makeCharacter(
  36936. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36937. {
  36938. frontHuman: {
  36939. height: math.unit(5 + 7/12, "feet"),
  36940. name: "Front (Human)",
  36941. image: {
  36942. source: "./media/characters/alek-dryagan/front-human.svg",
  36943. extra: 1687/1667,
  36944. bottom: 69/1756
  36945. }
  36946. },
  36947. backHuman: {
  36948. height: math.unit(5 + 7/12, "feet"),
  36949. name: "Back (Human)",
  36950. image: {
  36951. source: "./media/characters/alek-dryagan/back-human.svg",
  36952. extra: 1670/1649,
  36953. bottom: 65/1735
  36954. }
  36955. },
  36956. frontDemi: {
  36957. height: math.unit(65, "feet"),
  36958. name: "Front (Demi)",
  36959. image: {
  36960. source: "./media/characters/alek-dryagan/front-demi.svg",
  36961. extra: 1669/1642,
  36962. bottom: 49/1718
  36963. }
  36964. },
  36965. backDemi: {
  36966. height: math.unit(65, "feet"),
  36967. name: "Back (Demi)",
  36968. image: {
  36969. source: "./media/characters/alek-dryagan/back-demi.svg",
  36970. extra: 1658/1637,
  36971. bottom: 40/1698
  36972. }
  36973. },
  36974. mawHuman: {
  36975. height: math.unit(0.3, "feet"),
  36976. name: "Maw (Human)",
  36977. image: {
  36978. source: "./media/characters/alek-dryagan/maw-human.svg"
  36979. }
  36980. },
  36981. mawDemi: {
  36982. height: math.unit(3.8, "feet"),
  36983. name: "Maw (Demi)",
  36984. image: {
  36985. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36986. }
  36987. },
  36988. },
  36989. [
  36990. {
  36991. name: "Normal",
  36992. height: math.unit(5 + 7/12, "feet"),
  36993. default: true
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36999. {
  37000. frontHuman: {
  37001. height: math.unit(5 + 2/12, "feet"),
  37002. name: "Front (Human)",
  37003. image: {
  37004. source: "./media/characters/gen/front-human.svg",
  37005. extra: 1627/1538,
  37006. bottom: 71/1698
  37007. }
  37008. },
  37009. backHuman: {
  37010. height: math.unit(5 + 2/12, "feet"),
  37011. name: "Back (Human)",
  37012. image: {
  37013. source: "./media/characters/gen/back-human.svg",
  37014. extra: 1638/1548,
  37015. bottom: 69/1707
  37016. }
  37017. },
  37018. frontDemi: {
  37019. height: math.unit(5 + 2/12, "feet"),
  37020. name: "Front (Demi)",
  37021. image: {
  37022. source: "./media/characters/gen/front-demi.svg",
  37023. extra: 1627/1538,
  37024. bottom: 71/1698
  37025. }
  37026. },
  37027. backDemi: {
  37028. height: math.unit(5 + 2/12, "feet"),
  37029. name: "Back (Demi)",
  37030. image: {
  37031. source: "./media/characters/gen/back-demi.svg",
  37032. extra: 1638/1548,
  37033. bottom: 69/1707
  37034. }
  37035. },
  37036. },
  37037. [
  37038. {
  37039. name: "Normal",
  37040. height: math.unit(5 + 2/12, "feet"),
  37041. default: true
  37042. },
  37043. ]
  37044. ))
  37045. characterMakers.push(() => makeCharacter(
  37046. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37047. {
  37048. frontImp: {
  37049. height: math.unit(1 + 11/12, "feet"),
  37050. name: "Front (Imp)",
  37051. image: {
  37052. source: "./media/characters/max-kobold/front-imp.svg",
  37053. extra: 1238/1134,
  37054. bottom: 81/1319
  37055. }
  37056. },
  37057. backImp: {
  37058. height: math.unit(1 + 11/12, "feet"),
  37059. name: "Back (Imp)",
  37060. image: {
  37061. source: "./media/characters/max-kobold/back-imp.svg",
  37062. extra: 1334/1175,
  37063. bottom: 34/1368
  37064. }
  37065. },
  37066. frontDemi: {
  37067. height: math.unit(5 + 9/12, "feet"),
  37068. name: "Front (Demi)",
  37069. image: {
  37070. source: "./media/characters/max-kobold/front-demi.svg",
  37071. extra: 1715/1685,
  37072. bottom: 54/1769
  37073. }
  37074. },
  37075. backDemi: {
  37076. height: math.unit(5 + 9/12, "feet"),
  37077. name: "Back (Demi)",
  37078. image: {
  37079. source: "./media/characters/max-kobold/back-demi.svg",
  37080. extra: 1752/1729,
  37081. bottom: 41/1793
  37082. }
  37083. },
  37084. handImp: {
  37085. height: math.unit(0.45, "feet"),
  37086. name: "Hand (Imp)",
  37087. image: {
  37088. source: "./media/characters/max-kobold/hand.svg"
  37089. }
  37090. },
  37091. pawImp: {
  37092. height: math.unit(0.46, "feet"),
  37093. name: "Paw (Imp)",
  37094. image: {
  37095. source: "./media/characters/max-kobold/paw.svg"
  37096. }
  37097. },
  37098. handDemi: {
  37099. height: math.unit(0.80, "feet"),
  37100. name: "Hand (Demi)",
  37101. image: {
  37102. source: "./media/characters/max-kobold/hand.svg"
  37103. }
  37104. },
  37105. pawDemi: {
  37106. height: math.unit(1.1, "feet"),
  37107. name: "Paw (Demi)",
  37108. image: {
  37109. source: "./media/characters/max-kobold/paw.svg"
  37110. }
  37111. },
  37112. headImp: {
  37113. height: math.unit(1.33, "feet"),
  37114. name: "Head (Imp)",
  37115. image: {
  37116. source: "./media/characters/max-kobold/head-imp.svg"
  37117. }
  37118. },
  37119. mawImp: {
  37120. height: math.unit(0.75, "feet"),
  37121. name: "Maw (Imp)",
  37122. image: {
  37123. source: "./media/characters/max-kobold/maw-imp.svg"
  37124. }
  37125. },
  37126. mawDemi: {
  37127. height: math.unit(0.42, "feet"),
  37128. name: "Maw (Demi)",
  37129. image: {
  37130. source: "./media/characters/max-kobold/maw-demi.svg"
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Normal",
  37137. height: math.unit(1 + 11/12, "feet"),
  37138. default: true
  37139. },
  37140. ]
  37141. ))
  37142. characterMakers.push(() => makeCharacter(
  37143. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37144. {
  37145. front: {
  37146. height: math.unit(7 + 5/12, "feet"),
  37147. name: "Front",
  37148. image: {
  37149. source: "./media/characters/carbon/front.svg",
  37150. extra: 1754/1689,
  37151. bottom: 65/1819
  37152. }
  37153. },
  37154. back: {
  37155. height: math.unit(7 + 5/12, "feet"),
  37156. name: "Back",
  37157. image: {
  37158. source: "./media/characters/carbon/back.svg",
  37159. extra: 1762/1695,
  37160. bottom: 24/1786
  37161. }
  37162. },
  37163. frontGigantamax: {
  37164. height: math.unit(150, "feet"),
  37165. name: "Front (Gigantamax)",
  37166. image: {
  37167. source: "./media/characters/carbon/front-gigantamax.svg",
  37168. extra: 1826/1669,
  37169. bottom: 59/1885
  37170. }
  37171. },
  37172. backGigantamax: {
  37173. height: math.unit(150, "feet"),
  37174. name: "Back (Gigantamax)",
  37175. image: {
  37176. source: "./media/characters/carbon/back-gigantamax.svg",
  37177. extra: 1796/1653,
  37178. bottom: 53/1849
  37179. }
  37180. },
  37181. maw: {
  37182. height: math.unit(0.48, "feet"),
  37183. name: "Maw",
  37184. image: {
  37185. source: "./media/characters/carbon/maw.svg"
  37186. }
  37187. },
  37188. mawGigantamax: {
  37189. height: math.unit(7.5, "feet"),
  37190. name: "Maw (Gigantamax)",
  37191. image: {
  37192. source: "./media/characters/carbon/maw-gigantamax.svg"
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Normal",
  37199. height: math.unit(7 + 5/12, "feet"),
  37200. default: true
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37206. {
  37207. front: {
  37208. height: math.unit(6, "feet"),
  37209. name: "Front",
  37210. image: {
  37211. source: "./media/characters/maverick/front.svg",
  37212. extra: 1672/1661,
  37213. bottom: 85/1757
  37214. }
  37215. },
  37216. back: {
  37217. height: math.unit(6, "feet"),
  37218. name: "Back",
  37219. image: {
  37220. source: "./media/characters/maverick/back.svg",
  37221. extra: 1642/1631,
  37222. bottom: 38/1680
  37223. }
  37224. },
  37225. },
  37226. [
  37227. {
  37228. name: "Normal",
  37229. height: math.unit(6, "feet"),
  37230. default: true
  37231. },
  37232. ]
  37233. ))
  37234. characterMakers.push(() => makeCharacter(
  37235. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37236. {
  37237. front: {
  37238. height: math.unit(15, "feet"),
  37239. weight: math.unit(615, "lb"),
  37240. name: "Front",
  37241. image: {
  37242. source: "./media/characters/grockle/front.svg",
  37243. extra: 1535/1427,
  37244. bottom: 56/1591
  37245. }
  37246. },
  37247. },
  37248. [
  37249. {
  37250. name: "Normal",
  37251. height: math.unit(15, "feet"),
  37252. default: true
  37253. },
  37254. {
  37255. name: "Large",
  37256. height: math.unit(150, "feet")
  37257. },
  37258. {
  37259. name: "Macro",
  37260. height: math.unit(1876, "feet")
  37261. },
  37262. {
  37263. name: "Mega Macro",
  37264. height: math.unit(121940, "feet")
  37265. },
  37266. {
  37267. name: "Giga Macro",
  37268. height: math.unit(750, "km")
  37269. },
  37270. {
  37271. name: "Tera Macro",
  37272. height: math.unit(750000, "km")
  37273. },
  37274. {
  37275. name: "Galactic",
  37276. height: math.unit(1.4e5, "km")
  37277. },
  37278. {
  37279. name: "Godlike",
  37280. height: math.unit(9.8e280, "galaxies")
  37281. },
  37282. ]
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37286. {
  37287. front: {
  37288. height: math.unit(11, "meters"),
  37289. weight: math.unit(20, "tonnes"),
  37290. name: "Front",
  37291. image: {
  37292. source: "./media/characters/alistair/front.svg",
  37293. extra: 1265/1009,
  37294. bottom: 93/1358
  37295. }
  37296. },
  37297. },
  37298. [
  37299. {
  37300. name: "Normal",
  37301. height: math.unit(11, "meters"),
  37302. default: true
  37303. },
  37304. ]
  37305. ))
  37306. characterMakers.push(() => makeCharacter(
  37307. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37308. {
  37309. front: {
  37310. height: math.unit(5 + 8/12, "feet"),
  37311. name: "Front",
  37312. image: {
  37313. source: "./media/characters/haruka/front.svg",
  37314. extra: 2012/1952,
  37315. bottom: 0/2012
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(5 + 8/12, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37329. {
  37330. back: {
  37331. height: math.unit(9, "feet"),
  37332. name: "Back",
  37333. image: {
  37334. source: "./media/characters/vivian-sylveon/back.svg",
  37335. extra: 1853/1714,
  37336. bottom: 0/1853
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(9, "feet"),
  37344. default: true
  37345. },
  37346. {
  37347. name: "Macro",
  37348. height: math.unit(500, "feet")
  37349. },
  37350. {
  37351. name: "Megamacro",
  37352. height: math.unit(600, "miles")
  37353. },
  37354. {
  37355. name: "Gigamacro",
  37356. height: math.unit(30000, "miles")
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37362. {
  37363. anthro: {
  37364. height: math.unit(5 + 10/12, "feet"),
  37365. weight: math.unit(100, "lb"),
  37366. name: "Anthro",
  37367. image: {
  37368. source: "./media/characters/daiki/anthro.svg",
  37369. extra: 1115/1027,
  37370. bottom: 69/1184
  37371. }
  37372. },
  37373. feral: {
  37374. height: math.unit(200, "feet"),
  37375. name: "Feral",
  37376. image: {
  37377. source: "./media/characters/daiki/feral.svg",
  37378. extra: 1256/313,
  37379. bottom: 39/1295
  37380. }
  37381. },
  37382. feralHead: {
  37383. height: math.unit(171, "feet"),
  37384. name: "Feral Head",
  37385. image: {
  37386. source: "./media/characters/daiki/feral-head.svg"
  37387. }
  37388. },
  37389. manaDragon: {
  37390. height: math.unit(170, "meters"),
  37391. name: "Mana-dragon",
  37392. image: {
  37393. source: "./media/characters/daiki/mana-dragon.svg",
  37394. extra: 763/420,
  37395. bottom: 97/860
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(5 + 10/12, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37409. {
  37410. fullyEquippedFront: {
  37411. height: math.unit(3 + 1/12, "feet"),
  37412. weight: math.unit(24, "lb"),
  37413. name: "Fully Equipped (Front)",
  37414. image: {
  37415. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37416. extra: 687/605,
  37417. bottom: 18/705
  37418. }
  37419. },
  37420. fullyEquippedBack: {
  37421. height: math.unit(3 + 1/12, "feet"),
  37422. weight: math.unit(24, "lb"),
  37423. name: "Fully Equipped (Back)",
  37424. image: {
  37425. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37426. extra: 689/590,
  37427. bottom: 18/707
  37428. }
  37429. },
  37430. dailyWear: {
  37431. height: math.unit(3 + 1/12, "feet"),
  37432. weight: math.unit(24, "lb"),
  37433. name: "Daily Wear",
  37434. image: {
  37435. source: "./media/characters/tea-spot/daily-wear.svg",
  37436. extra: 701/620,
  37437. bottom: 21/722
  37438. }
  37439. },
  37440. maidWork: {
  37441. height: math.unit(3 + 1/12, "feet"),
  37442. weight: math.unit(24, "lb"),
  37443. name: "Maid Work",
  37444. image: {
  37445. source: "./media/characters/tea-spot/maid-work.svg",
  37446. extra: 693/609,
  37447. bottom: 15/708
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(3 + 1/12, "feet"),
  37455. default: true
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(175, "cm"),
  37464. weight: math.unit(75, "kg"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/chee/front.svg",
  37468. extra: 1796/1740,
  37469. bottom: 40/1836
  37470. }
  37471. },
  37472. },
  37473. [
  37474. {
  37475. name: "Micro-Micro",
  37476. height: math.unit(1, "nm")
  37477. },
  37478. {
  37479. name: "Micro-erst",
  37480. height: math.unit(1, "micrometer")
  37481. },
  37482. {
  37483. name: "Micro-er",
  37484. height: math.unit(1, "cm")
  37485. },
  37486. {
  37487. name: "Normal",
  37488. height: math.unit(175, "cm"),
  37489. default: true
  37490. },
  37491. {
  37492. name: "Macro",
  37493. height: math.unit(100, "m")
  37494. },
  37495. {
  37496. name: "Macro-er",
  37497. height: math.unit(1, "km")
  37498. },
  37499. {
  37500. name: "Macro-erst",
  37501. height: math.unit(10, "km")
  37502. },
  37503. {
  37504. name: "Macro-Macro",
  37505. height: math.unit(100, "km")
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37511. {
  37512. front: {
  37513. height: math.unit(11 + 9/12, "feet"),
  37514. weight: math.unit(935, "lb"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/kingsley/front.svg",
  37518. extra: 1803/1674,
  37519. bottom: 127/1930
  37520. }
  37521. },
  37522. frontNude: {
  37523. height: math.unit(11 + 9/12, "feet"),
  37524. weight: math.unit(935, "lb"),
  37525. name: "Front (Nude)",
  37526. image: {
  37527. source: "./media/characters/kingsley/front-nude.svg",
  37528. extra: 1803/1674,
  37529. bottom: 127/1930
  37530. }
  37531. },
  37532. },
  37533. [
  37534. {
  37535. name: "Normal",
  37536. height: math.unit(11 + 9/12, "feet"),
  37537. default: true
  37538. },
  37539. ]
  37540. ))
  37541. characterMakers.push(() => makeCharacter(
  37542. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37543. {
  37544. side: {
  37545. height: math.unit(9, "feet"),
  37546. name: "Side",
  37547. image: {
  37548. source: "./media/characters/rymel/side.svg",
  37549. extra: 792/469,
  37550. bottom: 121/913
  37551. }
  37552. },
  37553. maw: {
  37554. height: math.unit(2.4, "meters"),
  37555. name: "Maw",
  37556. image: {
  37557. source: "./media/characters/rymel/maw.svg"
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "House Drake",
  37564. height: math.unit(2, "feet")
  37565. },
  37566. {
  37567. name: "Reduced",
  37568. height: math.unit(4.5, "feet")
  37569. },
  37570. {
  37571. name: "Normal",
  37572. height: math.unit(9, "feet"),
  37573. default: true
  37574. },
  37575. ]
  37576. ))
  37577. characterMakers.push(() => makeCharacter(
  37578. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37579. {
  37580. front: {
  37581. height: math.unit(1.74, "meters"),
  37582. weight: math.unit(55, "kg"),
  37583. name: "Front",
  37584. image: {
  37585. source: "./media/characters/rubus/front.svg",
  37586. extra: 1894/1742,
  37587. bottom: 44/1938
  37588. }
  37589. },
  37590. },
  37591. [
  37592. {
  37593. name: "Normal",
  37594. height: math.unit(1.74, "meters"),
  37595. default: true
  37596. },
  37597. ]
  37598. ))
  37599. characterMakers.push(() => makeCharacter(
  37600. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37601. {
  37602. front: {
  37603. height: math.unit(5 + 2/12, "feet"),
  37604. weight: math.unit(112, "lb"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/cassie-kingston/front.svg",
  37608. extra: 1438/1390,
  37609. bottom: 47/1485
  37610. }
  37611. },
  37612. },
  37613. [
  37614. {
  37615. name: "Normal",
  37616. height: math.unit(5 + 2/12, "feet"),
  37617. default: true
  37618. },
  37619. {
  37620. name: "Macro",
  37621. height: math.unit(128, "feet")
  37622. },
  37623. {
  37624. name: "Megamacro",
  37625. height: math.unit(2.56, "miles")
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(7, "feet"),
  37634. name: "Front",
  37635. image: {
  37636. source: "./media/characters/fox/front.svg",
  37637. extra: 1798/1703,
  37638. bottom: 55/1853
  37639. }
  37640. },
  37641. back: {
  37642. height: math.unit(7, "feet"),
  37643. name: "Back",
  37644. image: {
  37645. source: "./media/characters/fox/back.svg",
  37646. extra: 1748/1649,
  37647. bottom: 32/1780
  37648. }
  37649. },
  37650. head: {
  37651. height: math.unit(1.95, "feet"),
  37652. name: "Head",
  37653. image: {
  37654. source: "./media/characters/fox/head.svg"
  37655. }
  37656. },
  37657. dick: {
  37658. height: math.unit(1.33, "feet"),
  37659. name: "Dick",
  37660. image: {
  37661. source: "./media/characters/fox/dick.svg"
  37662. }
  37663. },
  37664. foot: {
  37665. height: math.unit(1, "feet"),
  37666. name: "Foot",
  37667. image: {
  37668. source: "./media/characters/fox/foot.svg"
  37669. }
  37670. },
  37671. paw: {
  37672. height: math.unit(0.92, "feet"),
  37673. name: "Paw",
  37674. image: {
  37675. source: "./media/characters/fox/paw.svg"
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Small",
  37682. height: math.unit(3, "inches")
  37683. },
  37684. {
  37685. name: "\"Realistic\"",
  37686. height: math.unit(7, "feet")
  37687. },
  37688. {
  37689. name: "Normal",
  37690. height: math.unit(150, "feet"),
  37691. default: true
  37692. },
  37693. {
  37694. name: "BIG",
  37695. height: math.unit(1200, "feet")
  37696. },
  37697. {
  37698. name: "👀",
  37699. height: math.unit(5, "miles")
  37700. },
  37701. {
  37702. name: "👀👀👀",
  37703. height: math.unit(64, "miles")
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37709. {
  37710. front: {
  37711. height: math.unit(625, "feet"),
  37712. name: "Front",
  37713. image: {
  37714. source: "./media/characters/asonja-rossa/front.svg",
  37715. extra: 1833/1686,
  37716. bottom: 24/1857
  37717. }
  37718. },
  37719. back: {
  37720. height: math.unit(625, "feet"),
  37721. name: "Back",
  37722. image: {
  37723. source: "./media/characters/asonja-rossa/back.svg",
  37724. extra: 1852/1753,
  37725. bottom: 26/1878
  37726. }
  37727. },
  37728. },
  37729. [
  37730. {
  37731. name: "Macro",
  37732. height: math.unit(625, "feet"),
  37733. default: true
  37734. },
  37735. ]
  37736. ))
  37737. characterMakers.push(() => makeCharacter(
  37738. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37739. {
  37740. side: {
  37741. height: math.unit(8, "feet"),
  37742. name: "Side",
  37743. image: {
  37744. source: "./media/characters/rezukii/side.svg",
  37745. extra: 979/542,
  37746. bottom: 87/1066
  37747. }
  37748. },
  37749. sitting: {
  37750. height: math.unit(14.6, "feet"),
  37751. name: "Sitting",
  37752. image: {
  37753. source: "./media/characters/rezukii/sitting.svg",
  37754. extra: 1023/813,
  37755. bottom: 45/1068
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Tiny",
  37762. height: math.unit(2, "feet")
  37763. },
  37764. {
  37765. name: "Smol",
  37766. height: math.unit(4, "feet")
  37767. },
  37768. {
  37769. name: "Normal",
  37770. height: math.unit(8, "feet"),
  37771. default: true
  37772. },
  37773. {
  37774. name: "Big",
  37775. height: math.unit(12, "feet")
  37776. },
  37777. {
  37778. name: "Macro",
  37779. height: math.unit(30, "feet")
  37780. },
  37781. ]
  37782. ))
  37783. characterMakers.push(() => makeCharacter(
  37784. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37785. {
  37786. front: {
  37787. height: math.unit(14, "feet"),
  37788. weight: math.unit(9.5, "tonnes"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/dawnheart/front.svg",
  37792. extra: 2792/2675,
  37793. bottom: 64/2856
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(14, "feet"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37807. {
  37808. front: {
  37809. height: math.unit(1.7, "m"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/gladi/front.svg",
  37813. extra: 1460/1362,
  37814. bottom: 19/1479
  37815. }
  37816. },
  37817. back: {
  37818. height: math.unit(1.7, "m"),
  37819. name: "Back",
  37820. image: {
  37821. source: "./media/characters/gladi/back.svg",
  37822. extra: 1459/1357,
  37823. bottom: 12/1471
  37824. }
  37825. },
  37826. feral: {
  37827. height: math.unit(2.05, "m"),
  37828. name: "Feral",
  37829. image: {
  37830. source: "./media/characters/gladi/feral.svg",
  37831. extra: 821/557,
  37832. bottom: 91/912
  37833. }
  37834. },
  37835. },
  37836. [
  37837. {
  37838. name: "Shortest",
  37839. height: math.unit(70, "cm")
  37840. },
  37841. {
  37842. name: "Normal",
  37843. height: math.unit(1.7, "m")
  37844. },
  37845. {
  37846. name: "Macro",
  37847. height: math.unit(10, "m"),
  37848. default: true
  37849. },
  37850. {
  37851. name: "Tallest",
  37852. height: math.unit(200, "m")
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37858. {
  37859. front: {
  37860. height: math.unit(5 + 7/12, "feet"),
  37861. weight: math.unit(2, "tons"),
  37862. name: "Front",
  37863. image: {
  37864. source: "./media/characters/erdno/front.svg",
  37865. extra: 1234/1129,
  37866. bottom: 35/1269
  37867. }
  37868. },
  37869. angled: {
  37870. height: math.unit(5 + 7/12, "feet"),
  37871. weight: math.unit(2, "tons"),
  37872. name: "Angled",
  37873. image: {
  37874. source: "./media/characters/erdno/angled.svg",
  37875. extra: 1185/1139,
  37876. bottom: 36/1221
  37877. }
  37878. },
  37879. side: {
  37880. height: math.unit(5 + 7/12, "feet"),
  37881. weight: math.unit(2, "tons"),
  37882. name: "Side",
  37883. image: {
  37884. source: "./media/characters/erdno/side.svg",
  37885. extra: 1191/1144,
  37886. bottom: 40/1231
  37887. }
  37888. },
  37889. back: {
  37890. height: math.unit(5 + 7/12, "feet"),
  37891. weight: math.unit(2, "tons"),
  37892. name: "Back",
  37893. image: {
  37894. source: "./media/characters/erdno/back.svg",
  37895. extra: 1202/1146,
  37896. bottom: 17/1219
  37897. }
  37898. },
  37899. frontNsfw: {
  37900. height: math.unit(5 + 7/12, "feet"),
  37901. weight: math.unit(2, "tons"),
  37902. name: "Front (NSFW)",
  37903. image: {
  37904. source: "./media/characters/erdno/front-nsfw.svg",
  37905. extra: 1234/1129,
  37906. bottom: 35/1269
  37907. }
  37908. },
  37909. angledNsfw: {
  37910. height: math.unit(5 + 7/12, "feet"),
  37911. weight: math.unit(2, "tons"),
  37912. name: "Angled (NSFW)",
  37913. image: {
  37914. source: "./media/characters/erdno/angled-nsfw.svg",
  37915. extra: 1185/1139,
  37916. bottom: 36/1221
  37917. }
  37918. },
  37919. sideNsfw: {
  37920. height: math.unit(5 + 7/12, "feet"),
  37921. weight: math.unit(2, "tons"),
  37922. name: "Side (NSFW)",
  37923. image: {
  37924. source: "./media/characters/erdno/side-nsfw.svg",
  37925. extra: 1191/1144,
  37926. bottom: 40/1231
  37927. }
  37928. },
  37929. backNsfw: {
  37930. height: math.unit(5 + 7/12, "feet"),
  37931. weight: math.unit(2, "tons"),
  37932. name: "Back (NSFW)",
  37933. image: {
  37934. source: "./media/characters/erdno/back-nsfw.svg",
  37935. extra: 1202/1146,
  37936. bottom: 17/1219
  37937. }
  37938. },
  37939. frontHyper: {
  37940. height: math.unit(5 + 7/12, "feet"),
  37941. weight: math.unit(2, "tons"),
  37942. name: "Front (Hyper)",
  37943. image: {
  37944. source: "./media/characters/erdno/front-hyper.svg",
  37945. extra: 1298/1136,
  37946. bottom: 35/1333
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(5 + 7/12, "feet"),
  37954. default: true
  37955. },
  37956. {
  37957. name: "Big",
  37958. height: math.unit(5.7, "meters")
  37959. },
  37960. {
  37961. name: "Macro",
  37962. height: math.unit(5.7, "kilometers")
  37963. },
  37964. {
  37965. name: "Megamacro",
  37966. height: math.unit(5.7, "earths")
  37967. },
  37968. ]
  37969. ))
  37970. characterMakers.push(() => makeCharacter(
  37971. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37972. {
  37973. front: {
  37974. height: math.unit(5 + 10/12, "feet"),
  37975. weight: math.unit(150, "lb"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/jamie/front.svg",
  37979. extra: 1908/1768,
  37980. bottom: 19/1927
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Minimum",
  37987. height: math.unit(2, "cm")
  37988. },
  37989. {
  37990. name: "Micro",
  37991. height: math.unit(3, "inches")
  37992. },
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(5 + 10/12, "feet"),
  37996. default: true
  37997. },
  37998. {
  37999. name: "Macro",
  38000. height: math.unit(150, "feet")
  38001. },
  38002. {
  38003. name: "Megamacro",
  38004. height: math.unit(10000, "m")
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38010. {
  38011. front: {
  38012. height: math.unit(2, "meters"),
  38013. weight: math.unit(100, "kg"),
  38014. name: "Front",
  38015. image: {
  38016. source: "./media/characters/shiron/front.svg",
  38017. extra: 2103/1985,
  38018. bottom: 98/2201
  38019. }
  38020. },
  38021. back: {
  38022. height: math.unit(2, "meters"),
  38023. weight: math.unit(100, "kg"),
  38024. name: "Back",
  38025. image: {
  38026. source: "./media/characters/shiron/back.svg",
  38027. extra: 2110/2015,
  38028. bottom: 89/2199
  38029. }
  38030. },
  38031. hand: {
  38032. height: math.unit(0.96, "feet"),
  38033. name: "Hand",
  38034. image: {
  38035. source: "./media/characters/shiron/hand.svg"
  38036. }
  38037. },
  38038. foot: {
  38039. height: math.unit(1.464, "feet"),
  38040. name: "Foot",
  38041. image: {
  38042. source: "./media/characters/shiron/foot.svg"
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(2, "meters")
  38050. },
  38051. {
  38052. name: "Macro",
  38053. height: math.unit(500, "meters"),
  38054. default: true
  38055. },
  38056. {
  38057. name: "Megamacro",
  38058. height: math.unit(20, "km")
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(6, "feet"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/sam/front.svg",
  38070. extra: 849/826,
  38071. bottom: 19/868
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(6, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(8 + 4/12, "feet"),
  38088. weight: math.unit(122, "kg"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/namori-kurogawa/front.svg",
  38092. extra: 1894/1576,
  38093. bottom: 34/1928
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(8 + 4/12, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(9, "feet"),
  38110. weight: math.unit(621, "lb"),
  38111. name: "Front",
  38112. image: {
  38113. source: "./media/characters/unmru/front.svg",
  38114. extra: 1853/1747,
  38115. bottom: 73/1926
  38116. }
  38117. },
  38118. side: {
  38119. height: math.unit(9, "feet"),
  38120. weight: math.unit(621, "lb"),
  38121. name: "Side",
  38122. image: {
  38123. source: "./media/characters/unmru/side.svg",
  38124. extra: 1781/1671,
  38125. bottom: 127/1908
  38126. }
  38127. },
  38128. back: {
  38129. height: math.unit(9, "feet"),
  38130. weight: math.unit(621, "lb"),
  38131. name: "Back",
  38132. image: {
  38133. source: "./media/characters/unmru/back.svg",
  38134. extra: 1894/1765,
  38135. bottom: 75/1969
  38136. }
  38137. },
  38138. dick: {
  38139. height: math.unit(3, "feet"),
  38140. weight: math.unit(35, "lb"),
  38141. name: "Dick",
  38142. image: {
  38143. source: "./media/characters/unmru/dick.svg"
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Normal",
  38150. height: math.unit(9, "feet")
  38151. },
  38152. {
  38153. name: "Natural",
  38154. height: math.unit(27, "feet"),
  38155. default: true
  38156. },
  38157. {
  38158. name: "Giant",
  38159. height: math.unit(90, "feet")
  38160. },
  38161. {
  38162. name: "Kaiju",
  38163. height: math.unit(270, "feet")
  38164. },
  38165. {
  38166. name: "Macro",
  38167. height: math.unit(900, "feet")
  38168. },
  38169. {
  38170. name: "Macro+",
  38171. height: math.unit(2700, "feet")
  38172. },
  38173. {
  38174. name: "Megamacro",
  38175. height: math.unit(9000, "feet")
  38176. },
  38177. {
  38178. name: "City-Crushing",
  38179. height: math.unit(27000, "feet")
  38180. },
  38181. {
  38182. name: "Mountain-Mashing",
  38183. height: math.unit(90000, "feet")
  38184. },
  38185. {
  38186. name: "Earth-Eclipsing",
  38187. height: math.unit(2.7e8, "feet")
  38188. },
  38189. {
  38190. name: "Sol-Swallowing",
  38191. height: math.unit(9e10, "feet")
  38192. },
  38193. {
  38194. name: "Majoris-Munching",
  38195. height: math.unit(2.7e13, "feet")
  38196. },
  38197. ]
  38198. ))
  38199. characterMakers.push(() => makeCharacter(
  38200. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38201. {
  38202. front: {
  38203. height: math.unit(1, "inch"),
  38204. name: "Front",
  38205. image: {
  38206. source: "./media/characters/squeaks-mouse/front.svg",
  38207. extra: 352/308,
  38208. bottom: 25/377
  38209. }
  38210. },
  38211. },
  38212. [
  38213. {
  38214. name: "Micro",
  38215. height: math.unit(1, "inch"),
  38216. default: true
  38217. },
  38218. ]
  38219. ))
  38220. characterMakers.push(() => makeCharacter(
  38221. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38222. {
  38223. side: {
  38224. height: math.unit(35, "feet"),
  38225. name: "Side",
  38226. image: {
  38227. source: "./media/characters/sayko/side.svg",
  38228. extra: 1697/1021,
  38229. bottom: 82/1779
  38230. }
  38231. },
  38232. head: {
  38233. height: math.unit(16, "feet"),
  38234. name: "Head",
  38235. image: {
  38236. source: "./media/characters/sayko/head.svg"
  38237. }
  38238. },
  38239. forepaw: {
  38240. height: math.unit(7.85, "feet"),
  38241. name: "Forepaw",
  38242. image: {
  38243. source: "./media/characters/sayko/forepaw.svg"
  38244. }
  38245. },
  38246. hindpaw: {
  38247. height: math.unit(8.8, "feet"),
  38248. name: "Hindpaw",
  38249. image: {
  38250. source: "./media/characters/sayko/hindpaw.svg"
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(35, "feet"),
  38258. default: true
  38259. },
  38260. {
  38261. name: "Colossus",
  38262. height: math.unit(100, "meters")
  38263. },
  38264. {
  38265. name: "\"Small\" Deity",
  38266. height: math.unit(1, "km")
  38267. },
  38268. {
  38269. name: "\"Large\" Deity",
  38270. height: math.unit(15, "km")
  38271. },
  38272. ]
  38273. ))
  38274. characterMakers.push(() => makeCharacter(
  38275. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38276. {
  38277. front: {
  38278. height: math.unit(6, "feet"),
  38279. weight: math.unit(250, "lb"),
  38280. name: "Front",
  38281. image: {
  38282. source: "./media/characters/mukiro/front.svg",
  38283. extra: 1368/1310,
  38284. bottom: 34/1402
  38285. }
  38286. },
  38287. },
  38288. [
  38289. {
  38290. name: "Normal",
  38291. height: math.unit(6, "feet"),
  38292. default: true
  38293. },
  38294. ]
  38295. ))
  38296. characterMakers.push(() => makeCharacter(
  38297. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38298. {
  38299. front: {
  38300. height: math.unit(12 + 4/12, "feet"),
  38301. name: "Front",
  38302. image: {
  38303. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38304. extra: 1346/1311,
  38305. bottom: 65/1411
  38306. }
  38307. },
  38308. },
  38309. [
  38310. {
  38311. name: "Base",
  38312. height: math.unit(12 + 4/12, "feet"),
  38313. default: true
  38314. },
  38315. {
  38316. name: "Macro",
  38317. height: math.unit(150, "feet")
  38318. },
  38319. {
  38320. name: "Mega",
  38321. height: math.unit(2, "miles")
  38322. },
  38323. {
  38324. name: "Demi God",
  38325. height: math.unit(4, "AU")
  38326. },
  38327. {
  38328. name: "God Size",
  38329. height: math.unit(1, "universe")
  38330. },
  38331. ]
  38332. ))
  38333. characterMakers.push(() => makeCharacter(
  38334. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38335. {
  38336. front: {
  38337. height: math.unit(3 + 3/12, "feet"),
  38338. weight: math.unit(88, "lb"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/trey/front.svg",
  38342. extra: 1815/1509,
  38343. bottom: 60/1875
  38344. }
  38345. },
  38346. },
  38347. [
  38348. {
  38349. name: "Normal",
  38350. height: math.unit(3 + 3/12, "feet"),
  38351. default: true
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38357. {
  38358. front: {
  38359. height: math.unit(4, "meters"),
  38360. name: "Front",
  38361. image: {
  38362. source: "./media/characters/adelonda/front.svg",
  38363. extra: 1077/982,
  38364. bottom: 39/1116
  38365. }
  38366. },
  38367. back: {
  38368. height: math.unit(4, "meters"),
  38369. name: "Back",
  38370. image: {
  38371. source: "./media/characters/adelonda/back.svg",
  38372. extra: 1105/1003,
  38373. bottom: 25/1130
  38374. }
  38375. },
  38376. feral: {
  38377. height: math.unit(40/1.5, "meters"),
  38378. name: "Feral",
  38379. image: {
  38380. source: "./media/characters/adelonda/feral.svg",
  38381. extra: 597/271,
  38382. bottom: 387/984
  38383. }
  38384. },
  38385. },
  38386. [
  38387. {
  38388. name: "Normal",
  38389. height: math.unit(4, "meters"),
  38390. default: true
  38391. },
  38392. ]
  38393. ))
  38394. characterMakers.push(() => makeCharacter(
  38395. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38396. {
  38397. front: {
  38398. height: math.unit(8 + 4/12, "feet"),
  38399. weight: math.unit(670, "lb"),
  38400. name: "Front",
  38401. image: {
  38402. source: "./media/characters/acadiel/front.svg",
  38403. extra: 1901/1595,
  38404. bottom: 142/2043
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Normal",
  38411. height: math.unit(8 + 4/12, "feet"),
  38412. default: true
  38413. },
  38414. {
  38415. name: "Macro",
  38416. height: math.unit(200, "feet")
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(6 + 2/12, "feet"),
  38425. weight: math.unit(185, "lb"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/kayne-ein/front.svg",
  38429. extra: 1780/1560,
  38430. bottom: 81/1861
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(6 + 2/12, "feet"),
  38438. default: true
  38439. },
  38440. {
  38441. name: "Transformation Stage",
  38442. height: math.unit(15, "feet")
  38443. },
  38444. {
  38445. name: "Macro",
  38446. height: math.unit(150, "feet")
  38447. },
  38448. {
  38449. name: "Earth's Shadow",
  38450. height: math.unit(6200, "miles")
  38451. },
  38452. {
  38453. name: "Universal Demon",
  38454. height: math.unit(28e9, "parsecs")
  38455. },
  38456. {
  38457. name: "Multiverse God",
  38458. height: math.unit(3, "multiverses")
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38464. {
  38465. front: {
  38466. height: math.unit(5 + 5/12, "feet"),
  38467. name: "Front",
  38468. image: {
  38469. source: "./media/characters/fawn/front.svg",
  38470. extra: 1873/1731,
  38471. bottom: 95/1968
  38472. }
  38473. },
  38474. back: {
  38475. height: math.unit(5 + 5/12, "feet"),
  38476. name: "Back",
  38477. image: {
  38478. source: "./media/characters/fawn/back.svg",
  38479. extra: 1813/1700,
  38480. bottom: 14/1827
  38481. }
  38482. },
  38483. hoof: {
  38484. height: math.unit(1.45, "feet"),
  38485. name: "Hoof",
  38486. image: {
  38487. source: "./media/characters/fawn/hoof.svg"
  38488. }
  38489. },
  38490. },
  38491. [
  38492. {
  38493. name: "Normal",
  38494. height: math.unit(5 + 5/12, "feet"),
  38495. default: true
  38496. },
  38497. ]
  38498. ))
  38499. characterMakers.push(() => makeCharacter(
  38500. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38501. {
  38502. front: {
  38503. height: math.unit(2 + 5/12, "feet"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/orion/front.svg",
  38507. extra: 1366/1304,
  38508. bottom: 43/1409
  38509. }
  38510. },
  38511. paw: {
  38512. height: math.unit(0.52, "feet"),
  38513. name: "Paw",
  38514. image: {
  38515. source: "./media/characters/orion/paw.svg"
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Normal",
  38522. height: math.unit(2 + 5/12, "feet"),
  38523. default: true
  38524. },
  38525. ]
  38526. ))
  38527. characterMakers.push(() => makeCharacter(
  38528. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38529. {
  38530. front: {
  38531. height: math.unit(5 + 10/12, "feet"),
  38532. name: "Front",
  38533. image: {
  38534. source: "./media/characters/vera/front.svg",
  38535. extra: 1680/1575,
  38536. bottom: 49/1729
  38537. }
  38538. },
  38539. back: {
  38540. height: math.unit(5 + 10/12, "feet"),
  38541. name: "Back",
  38542. image: {
  38543. source: "./media/characters/vera/back.svg",
  38544. extra: 1700/1588,
  38545. bottom: 18/1718
  38546. }
  38547. },
  38548. arcanine: {
  38549. height: math.unit(6 + 8/12, "feet"),
  38550. name: "Arcanine",
  38551. image: {
  38552. source: "./media/characters/vera/arcanine.svg",
  38553. extra: 1590/1511,
  38554. bottom: 71/1661
  38555. }
  38556. },
  38557. maw: {
  38558. height: math.unit(0.82, "feet"),
  38559. name: "Maw",
  38560. image: {
  38561. source: "./media/characters/vera/maw.svg"
  38562. }
  38563. },
  38564. mawArcanine: {
  38565. height: math.unit(0.97, "feet"),
  38566. name: "Maw (Arcanine)",
  38567. image: {
  38568. source: "./media/characters/vera/maw-arcanine.svg"
  38569. }
  38570. },
  38571. paw: {
  38572. height: math.unit(0.75, "feet"),
  38573. name: "Paw",
  38574. image: {
  38575. source: "./media/characters/vera/paw.svg"
  38576. }
  38577. },
  38578. pawprint: {
  38579. height: math.unit(0.52, "feet"),
  38580. name: "Pawprint",
  38581. image: {
  38582. source: "./media/characters/vera/pawprint.svg"
  38583. }
  38584. },
  38585. },
  38586. [
  38587. {
  38588. name: "Normal",
  38589. height: math.unit(5 + 10/12, "feet"),
  38590. default: true
  38591. },
  38592. {
  38593. name: "Macro",
  38594. height: math.unit(75, "feet")
  38595. },
  38596. ]
  38597. ))
  38598. characterMakers.push(() => makeCharacter(
  38599. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38600. {
  38601. front: {
  38602. height: math.unit(4, "feet"),
  38603. weight: math.unit(40, "lb"),
  38604. name: "Front",
  38605. image: {
  38606. source: "./media/characters/orvan-rabbit/front.svg",
  38607. extra: 1896/1642,
  38608. bottom: 29/1925
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(4, "feet"),
  38616. default: true
  38617. },
  38618. ]
  38619. ))
  38620. characterMakers.push(() => makeCharacter(
  38621. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38622. {
  38623. front: {
  38624. height: math.unit(6, "feet"),
  38625. weight: math.unit(168, "lb"),
  38626. name: "Front",
  38627. image: {
  38628. source: "./media/characters/lisa/front.svg",
  38629. extra: 2065/1867,
  38630. bottom: 46/2111
  38631. }
  38632. },
  38633. back: {
  38634. height: math.unit(6, "feet"),
  38635. weight: math.unit(168, "lb"),
  38636. name: "Back",
  38637. image: {
  38638. source: "./media/characters/lisa/back.svg",
  38639. extra: 1982/1838,
  38640. bottom: 29/2011
  38641. }
  38642. },
  38643. maw: {
  38644. height: math.unit(0.81, "feet"),
  38645. name: "Maw",
  38646. image: {
  38647. source: "./media/characters/lisa/maw.svg"
  38648. }
  38649. },
  38650. paw: {
  38651. height: math.unit(0.9, "feet"),
  38652. name: "Paw",
  38653. image: {
  38654. source: "./media/characters/lisa/paw.svg"
  38655. }
  38656. },
  38657. caribousune: {
  38658. height: math.unit(7 + 2/12, "feet"),
  38659. weight: math.unit(268, "lb"),
  38660. name: "Caribousune",
  38661. image: {
  38662. source: "./media/characters/lisa/caribousune.svg",
  38663. extra: 1843/1633,
  38664. bottom: 29/1872
  38665. }
  38666. },
  38667. frontCaribousune: {
  38668. height: math.unit(7 + 2/12, "feet"),
  38669. weight: math.unit(268, "lb"),
  38670. name: "Front (Caribousune)",
  38671. image: {
  38672. source: "./media/characters/lisa/front-caribousune.svg",
  38673. extra: 1818/1638,
  38674. bottom: 52/1870
  38675. }
  38676. },
  38677. sideCaribousune: {
  38678. height: math.unit(7 + 2/12, "feet"),
  38679. weight: math.unit(268, "lb"),
  38680. name: "Side (Caribousune)",
  38681. image: {
  38682. source: "./media/characters/lisa/side-caribousune.svg",
  38683. extra: 1851/1635,
  38684. bottom: 16/1867
  38685. }
  38686. },
  38687. backCaribousune: {
  38688. height: math.unit(7 + 2/12, "feet"),
  38689. weight: math.unit(268, "lb"),
  38690. name: "Back (Caribousune)",
  38691. image: {
  38692. source: "./media/characters/lisa/back-caribousune.svg",
  38693. extra: 1801/1604,
  38694. bottom: 44/1845
  38695. }
  38696. },
  38697. caribou: {
  38698. height: math.unit(7 + 2/12, "feet"),
  38699. weight: math.unit(268, "lb"),
  38700. name: "Caribou",
  38701. image: {
  38702. source: "./media/characters/lisa/caribou.svg",
  38703. extra: 1843/1633,
  38704. bottom: 29/1872
  38705. }
  38706. },
  38707. frontCaribou: {
  38708. height: math.unit(7 + 2/12, "feet"),
  38709. weight: math.unit(268, "lb"),
  38710. name: "Front (Caribou)",
  38711. image: {
  38712. source: "./media/characters/lisa/front-caribou.svg",
  38713. extra: 1818/1638,
  38714. bottom: 52/1870
  38715. }
  38716. },
  38717. sideCaribou: {
  38718. height: math.unit(7 + 2/12, "feet"),
  38719. weight: math.unit(268, "lb"),
  38720. name: "Side (Caribou)",
  38721. image: {
  38722. source: "./media/characters/lisa/side-caribou.svg",
  38723. extra: 1851/1635,
  38724. bottom: 16/1867
  38725. }
  38726. },
  38727. backCaribou: {
  38728. height: math.unit(7 + 2/12, "feet"),
  38729. weight: math.unit(268, "lb"),
  38730. name: "Back (Caribou)",
  38731. image: {
  38732. source: "./media/characters/lisa/back-caribou.svg",
  38733. extra: 1801/1604,
  38734. bottom: 44/1845
  38735. }
  38736. },
  38737. mawCaribou: {
  38738. height: math.unit(1.45, "feet"),
  38739. name: "Maw (Caribou)",
  38740. image: {
  38741. source: "./media/characters/lisa/maw-caribou.svg"
  38742. }
  38743. },
  38744. mawCaribousune: {
  38745. height: math.unit(1.45, "feet"),
  38746. name: "Maw (Caribousune)",
  38747. image: {
  38748. source: "./media/characters/lisa/maw-caribousune.svg"
  38749. }
  38750. },
  38751. pawCaribousune: {
  38752. height: math.unit(1.61, "feet"),
  38753. name: "Paw (Caribou)",
  38754. image: {
  38755. source: "./media/characters/lisa/paw-caribousune.svg"
  38756. }
  38757. },
  38758. },
  38759. [
  38760. {
  38761. name: "Normal",
  38762. height: math.unit(6, "feet")
  38763. },
  38764. {
  38765. name: "God Size",
  38766. height: math.unit(72, "feet"),
  38767. default: true
  38768. },
  38769. {
  38770. name: "Towering",
  38771. height: math.unit(288, "feet")
  38772. },
  38773. {
  38774. name: "City Size",
  38775. height: math.unit(48384, "feet")
  38776. },
  38777. {
  38778. name: "Continental",
  38779. height: math.unit(4200, "miles")
  38780. },
  38781. {
  38782. name: "Planet Eater",
  38783. height: math.unit(42, "earths")
  38784. },
  38785. {
  38786. name: "Star Swallower",
  38787. height: math.unit(42, "solarradii")
  38788. },
  38789. {
  38790. name: "System Swallower",
  38791. height: math.unit(84000, "AU")
  38792. },
  38793. {
  38794. name: "Galaxy Gobbler",
  38795. height: math.unit(42, "galaxies")
  38796. },
  38797. {
  38798. name: "Universe Devourer",
  38799. height: math.unit(42, "universes")
  38800. },
  38801. {
  38802. name: "Multiverse Muncher",
  38803. height: math.unit(42, "multiverses")
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38809. {
  38810. front: {
  38811. height: math.unit(36, "feet"),
  38812. name: "Front",
  38813. image: {
  38814. source: "./media/characters/shadow-rat/front.svg",
  38815. extra: 1845/1758,
  38816. bottom: 83/1928
  38817. }
  38818. },
  38819. },
  38820. [
  38821. {
  38822. name: "Macro",
  38823. height: math.unit(36, "feet"),
  38824. default: true
  38825. },
  38826. ]
  38827. ))
  38828. characterMakers.push(() => makeCharacter(
  38829. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38830. {
  38831. side: {
  38832. height: math.unit(8, "feet"),
  38833. weight: math.unit(2630, "lb"),
  38834. name: "Side",
  38835. image: {
  38836. source: "./media/characters/torallia/side.svg",
  38837. extra: 2164/2021,
  38838. bottom: 371/2535
  38839. }
  38840. },
  38841. },
  38842. [
  38843. {
  38844. name: "Mortal Interaction",
  38845. height: math.unit(8, "feet")
  38846. },
  38847. {
  38848. name: "Natural",
  38849. height: math.unit(24, "feet"),
  38850. default: true
  38851. },
  38852. {
  38853. name: "Giant",
  38854. height: math.unit(80, "feet")
  38855. },
  38856. {
  38857. name: "Kaiju",
  38858. height: math.unit(240, "feet")
  38859. },
  38860. {
  38861. name: "Macro",
  38862. height: math.unit(800, "feet")
  38863. },
  38864. {
  38865. name: "Macro+",
  38866. height: math.unit(2400, "feet")
  38867. },
  38868. {
  38869. name: "Macro++",
  38870. height: math.unit(8000, "feet")
  38871. },
  38872. {
  38873. name: "City-Crushing",
  38874. height: math.unit(24000, "feet")
  38875. },
  38876. {
  38877. name: "Mountain-Mashing",
  38878. height: math.unit(80000, "feet")
  38879. },
  38880. {
  38881. name: "District Demolisher",
  38882. height: math.unit(240000, "feet")
  38883. },
  38884. {
  38885. name: "Tri-County Terror",
  38886. height: math.unit(800000, "feet")
  38887. },
  38888. {
  38889. name: "State Smasher",
  38890. height: math.unit(2.4e6, "feet")
  38891. },
  38892. {
  38893. name: "Nation Nemesis",
  38894. height: math.unit(8e6, "feet")
  38895. },
  38896. {
  38897. name: "Continent Cracker",
  38898. height: math.unit(2.4e7, "feet")
  38899. },
  38900. {
  38901. name: "Planet-Pillaging",
  38902. height: math.unit(8e7, "feet")
  38903. },
  38904. {
  38905. name: "Earth-Eclipsing",
  38906. height: math.unit(2.4e8, "feet")
  38907. },
  38908. {
  38909. name: "Jovian-Jostling",
  38910. height: math.unit(8e8, "feet")
  38911. },
  38912. {
  38913. name: "Gas Giant Gulper",
  38914. height: math.unit(2.4e9, "feet")
  38915. },
  38916. {
  38917. name: "Astral Annihilator",
  38918. height: math.unit(8e9, "feet")
  38919. },
  38920. {
  38921. name: "Celestial Conqueror",
  38922. height: math.unit(2.4e10, "feet")
  38923. },
  38924. {
  38925. name: "Sol-Swallowing",
  38926. height: math.unit(8e10, "feet")
  38927. },
  38928. {
  38929. name: "Hunter of the Heavens",
  38930. height: math.unit(2.4e13, "feet")
  38931. },
  38932. ]
  38933. ))
  38934. characterMakers.push(() => makeCharacter(
  38935. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38936. {
  38937. front: {
  38938. height: math.unit(6 + 8/12, "feet"),
  38939. name: "Front",
  38940. image: {
  38941. source: "./media/characters/rebecca-pawlson/front.svg",
  38942. extra: 1737/1596,
  38943. bottom: 107/1844
  38944. }
  38945. },
  38946. back: {
  38947. height: math.unit(6 + 8/12, "feet"),
  38948. name: "Back",
  38949. image: {
  38950. source: "./media/characters/rebecca-pawlson/back.svg",
  38951. extra: 1702/1523,
  38952. bottom: 86/1788
  38953. }
  38954. },
  38955. },
  38956. [
  38957. {
  38958. name: "Normal",
  38959. height: math.unit(6 + 8/12, "feet")
  38960. },
  38961. {
  38962. name: "Mini Macro",
  38963. height: math.unit(10, "feet"),
  38964. default: true
  38965. },
  38966. {
  38967. name: "Macro",
  38968. height: math.unit(100, "feet")
  38969. },
  38970. {
  38971. name: "Mega Macro",
  38972. height: math.unit(2500, "feet")
  38973. },
  38974. {
  38975. name: "Giga Macro",
  38976. height: math.unit(50, "miles")
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38982. {
  38983. front: {
  38984. height: math.unit(7 + 6/12, "feet"),
  38985. weight: math.unit(600, "lb"),
  38986. name: "Front",
  38987. image: {
  38988. source: "./media/characters/moxie-nova/front.svg",
  38989. extra: 1734/1652,
  38990. bottom: 41/1775
  38991. }
  38992. },
  38993. },
  38994. [
  38995. {
  38996. name: "Normal",
  38997. height: math.unit(7 + 6/12, "feet"),
  38998. default: true
  38999. },
  39000. ]
  39001. ))
  39002. characterMakers.push(() => makeCharacter(
  39003. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39004. {
  39005. goat: {
  39006. height: math.unit(4, "feet"),
  39007. weight: math.unit(180, "lb"),
  39008. name: "Goat",
  39009. image: {
  39010. source: "./media/characters/tiffany/goat.svg",
  39011. extra: 1845/1595,
  39012. bottom: 106/1951
  39013. }
  39014. },
  39015. front: {
  39016. height: math.unit(5, "feet"),
  39017. weight: math.unit(150, "lb"),
  39018. name: "Foxcoon",
  39019. image: {
  39020. source: "./media/characters/tiffany/foxcoon.svg",
  39021. extra: 1941/1845,
  39022. bottom: 58/1999
  39023. }
  39024. },
  39025. },
  39026. [
  39027. {
  39028. name: "Normal",
  39029. height: math.unit(5, "feet"),
  39030. default: true
  39031. },
  39032. ]
  39033. ))
  39034. characterMakers.push(() => makeCharacter(
  39035. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39036. {
  39037. front: {
  39038. height: math.unit(8, "feet"),
  39039. weight: math.unit(300, "lb"),
  39040. name: "Front",
  39041. image: {
  39042. source: "./media/characters/raxinath/front.svg",
  39043. extra: 1407/1309,
  39044. bottom: 39/1446
  39045. }
  39046. },
  39047. back: {
  39048. height: math.unit(8, "feet"),
  39049. weight: math.unit(300, "lb"),
  39050. name: "Back",
  39051. image: {
  39052. source: "./media/characters/raxinath/back.svg",
  39053. extra: 1405/1315,
  39054. bottom: 9/1414
  39055. }
  39056. },
  39057. },
  39058. [
  39059. {
  39060. name: "Speck",
  39061. height: math.unit(0.5, "nm")
  39062. },
  39063. {
  39064. name: "Micro",
  39065. height: math.unit(3, "inches")
  39066. },
  39067. {
  39068. name: "Kobold",
  39069. height: math.unit(3, "feet")
  39070. },
  39071. {
  39072. name: "Normal",
  39073. height: math.unit(8, "feet"),
  39074. default: true
  39075. },
  39076. {
  39077. name: "Giant",
  39078. height: math.unit(50, "feet")
  39079. },
  39080. {
  39081. name: "Macro",
  39082. height: math.unit(1000, "feet")
  39083. },
  39084. {
  39085. name: "Megamacro",
  39086. height: math.unit(1, "mile")
  39087. },
  39088. ]
  39089. ))
  39090. characterMakers.push(() => makeCharacter(
  39091. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39092. {
  39093. front: {
  39094. height: math.unit(10, "feet"),
  39095. weight: math.unit(1442, "lb"),
  39096. name: "Front",
  39097. image: {
  39098. source: "./media/characters/mal-dragon/front.svg",
  39099. extra: 1515/1444,
  39100. bottom: 113/1628
  39101. }
  39102. },
  39103. back: {
  39104. height: math.unit(10, "feet"),
  39105. weight: math.unit(1442, "lb"),
  39106. name: "Back",
  39107. image: {
  39108. source: "./media/characters/mal-dragon/back.svg",
  39109. extra: 1527/1434,
  39110. bottom: 25/1552
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Mortal Interaction",
  39117. height: math.unit(10, "feet"),
  39118. default: true
  39119. },
  39120. {
  39121. name: "Large",
  39122. height: math.unit(30, "feet")
  39123. },
  39124. {
  39125. name: "Kaiju",
  39126. height: math.unit(300, "feet")
  39127. },
  39128. {
  39129. name: "Megamacro",
  39130. height: math.unit(10000, "feet")
  39131. },
  39132. {
  39133. name: "Continent Cracker",
  39134. height: math.unit(30000000, "feet")
  39135. },
  39136. {
  39137. name: "Sol-Swallowing",
  39138. height: math.unit(1e11, "feet")
  39139. },
  39140. {
  39141. name: "Light Universal",
  39142. height: math.unit(5, "universes")
  39143. },
  39144. {
  39145. name: "Universe Atoms",
  39146. height: math.unit(1.829e9, "universes")
  39147. },
  39148. {
  39149. name: "Light Multiversal",
  39150. height: math.unit(5, "multiverses")
  39151. },
  39152. {
  39153. name: "Multiverse Atoms",
  39154. height: math.unit(1.829e9, "multiverses")
  39155. },
  39156. {
  39157. name: "Fabric of Time",
  39158. height: math.unit(1e262, "multiverses")
  39159. },
  39160. ]
  39161. ))
  39162. characterMakers.push(() => makeCharacter(
  39163. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39164. {
  39165. front: {
  39166. height: math.unit(9, "feet"),
  39167. weight: math.unit(1050, "lb"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/tabitha/front.svg",
  39171. extra: 2083/1994,
  39172. bottom: 68/2151
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Baseline",
  39179. height: math.unit(9, "feet"),
  39180. default: true
  39181. },
  39182. {
  39183. name: "Giant",
  39184. height: math.unit(90, "feet")
  39185. },
  39186. {
  39187. name: "Macro",
  39188. height: math.unit(900, "feet")
  39189. },
  39190. {
  39191. name: "Megamacro",
  39192. height: math.unit(9000, "feet")
  39193. },
  39194. {
  39195. name: "City-Crushing",
  39196. height: math.unit(27000, "feet")
  39197. },
  39198. {
  39199. name: "Mountain-Mashing",
  39200. height: math.unit(90000, "feet")
  39201. },
  39202. {
  39203. name: "Nation Nemesis",
  39204. height: math.unit(9e6, "feet")
  39205. },
  39206. {
  39207. name: "Continent Cracker",
  39208. height: math.unit(27e6, "feet")
  39209. },
  39210. {
  39211. name: "Earth-Eclipsing",
  39212. height: math.unit(2.7e8, "feet")
  39213. },
  39214. {
  39215. name: "Gas Giant Gulper",
  39216. height: math.unit(2.7e9, "feet")
  39217. },
  39218. {
  39219. name: "Sol-Swallowing",
  39220. height: math.unit(9e10, "feet")
  39221. },
  39222. {
  39223. name: "Galaxy Gulper",
  39224. height: math.unit(9, "galaxies")
  39225. },
  39226. {
  39227. name: "Cosmos Churner",
  39228. height: math.unit(9, "universes")
  39229. },
  39230. ]
  39231. ))
  39232. characterMakers.push(() => makeCharacter(
  39233. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39234. {
  39235. front: {
  39236. height: math.unit(160, "cm"),
  39237. weight: math.unit(55, "kg"),
  39238. name: "Front",
  39239. image: {
  39240. source: "./media/characters/tow/front.svg",
  39241. extra: 1751/1722,
  39242. bottom: 74/1825
  39243. }
  39244. },
  39245. },
  39246. [
  39247. {
  39248. name: "Norm",
  39249. height: math.unit(160, "cm")
  39250. },
  39251. {
  39252. name: "Casual",
  39253. height: math.unit(3200, "m"),
  39254. default: true
  39255. },
  39256. {
  39257. name: "Show-Off",
  39258. height: math.unit(160, "km")
  39259. },
  39260. ]
  39261. ))
  39262. characterMakers.push(() => makeCharacter(
  39263. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39264. {
  39265. front: {
  39266. height: math.unit(7 + 11/12, "feet"),
  39267. weight: math.unit(342.8, "lb"),
  39268. name: "Front",
  39269. image: {
  39270. source: "./media/characters/vivian-orca-dragon/front.svg",
  39271. extra: 1890/1865,
  39272. bottom: 28/1918
  39273. }
  39274. },
  39275. },
  39276. [
  39277. {
  39278. name: "Micro",
  39279. height: math.unit(5, "inches")
  39280. },
  39281. {
  39282. name: "Normal",
  39283. height: math.unit(7 + 11/12, "feet"),
  39284. default: true
  39285. },
  39286. {
  39287. name: "Macro",
  39288. height: math.unit(395 + 7/12, "feet")
  39289. },
  39290. ]
  39291. ))
  39292. characterMakers.push(() => makeCharacter(
  39293. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39294. {
  39295. side: {
  39296. height: math.unit(10, "feet"),
  39297. weight: math.unit(1442, "lb"),
  39298. name: "Side",
  39299. image: {
  39300. source: "./media/characters/lotherakon/side.svg",
  39301. extra: 1604/1497,
  39302. bottom: 89/1693
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Mortal Interaction",
  39309. height: math.unit(10, "feet")
  39310. },
  39311. {
  39312. name: "Large",
  39313. height: math.unit(30, "feet"),
  39314. default: true
  39315. },
  39316. {
  39317. name: "Giant",
  39318. height: math.unit(100, "feet")
  39319. },
  39320. {
  39321. name: "Kaiju",
  39322. height: math.unit(300, "feet")
  39323. },
  39324. {
  39325. name: "Macro",
  39326. height: math.unit(1000, "feet")
  39327. },
  39328. {
  39329. name: "Macro+",
  39330. height: math.unit(3000, "feet")
  39331. },
  39332. {
  39333. name: "Megamacro",
  39334. height: math.unit(10000, "feet")
  39335. },
  39336. {
  39337. name: "City-Crushing",
  39338. height: math.unit(30000, "feet")
  39339. },
  39340. {
  39341. name: "Continent Cracker",
  39342. height: math.unit(30e6, "feet")
  39343. },
  39344. {
  39345. name: "Earth Eclipsing",
  39346. height: math.unit(3e8, "feet")
  39347. },
  39348. {
  39349. name: "Gas Giant Gulper",
  39350. height: math.unit(3e9, "feet")
  39351. },
  39352. {
  39353. name: "Sol-Swallowing",
  39354. height: math.unit(1e11, "feet")
  39355. },
  39356. {
  39357. name: "System Swallower",
  39358. height: math.unit(3e14, "feet")
  39359. },
  39360. {
  39361. name: "Galaxy Gulper",
  39362. height: math.unit(10, "galaxies")
  39363. },
  39364. {
  39365. name: "Light Universal",
  39366. height: math.unit(5, "universes")
  39367. },
  39368. {
  39369. name: "Universe Palm",
  39370. height: math.unit(20, "universes")
  39371. },
  39372. {
  39373. name: "Light Multiversal",
  39374. height: math.unit(5, "multiverses")
  39375. },
  39376. {
  39377. name: "Multiverse Palm",
  39378. height: math.unit(20, "multiverses")
  39379. },
  39380. {
  39381. name: "Inferno Incarnate",
  39382. height: math.unit(1e7, "multiverses")
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(8, "feet"),
  39391. weight: math.unit(1200, "lb"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/malithee/front.svg",
  39395. extra: 1675/1640,
  39396. bottom: 162/1837
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Mortal Interaction",
  39403. height: math.unit(8, "feet"),
  39404. default: true
  39405. },
  39406. {
  39407. name: "Large",
  39408. height: math.unit(24, "feet")
  39409. },
  39410. {
  39411. name: "Kaiju",
  39412. height: math.unit(240, "feet")
  39413. },
  39414. {
  39415. name: "Megamacro",
  39416. height: math.unit(8000, "feet")
  39417. },
  39418. {
  39419. name: "Continent Cracker",
  39420. height: math.unit(24e6, "feet")
  39421. },
  39422. {
  39423. name: "Earth-Eclipsing",
  39424. height: math.unit(2.4e8, "feet")
  39425. },
  39426. {
  39427. name: "Sol-Swallowing",
  39428. height: math.unit(8e10, "feet")
  39429. },
  39430. {
  39431. name: "Galaxy Gulper",
  39432. height: math.unit(8, "galaxies")
  39433. },
  39434. {
  39435. name: "Light Universal",
  39436. height: math.unit(4, "universes")
  39437. },
  39438. {
  39439. name: "Universe Atoms",
  39440. height: math.unit(1.829e9, "universes")
  39441. },
  39442. {
  39443. name: "Light Multiversal",
  39444. height: math.unit(4, "multiverses")
  39445. },
  39446. {
  39447. name: "Multiverse Atoms",
  39448. height: math.unit(1.829e9, "multiverses")
  39449. },
  39450. {
  39451. name: "Nigh-Omnipresence",
  39452. height: math.unit(8e261, "multiverses")
  39453. },
  39454. ]
  39455. ))
  39456. characterMakers.push(() => makeCharacter(
  39457. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39458. {
  39459. front: {
  39460. height: math.unit(10, "feet"),
  39461. weight: math.unit(1500, "lb"),
  39462. name: "Front",
  39463. image: {
  39464. source: "./media/characters/miles-thestia/front.svg",
  39465. extra: 1812/1727,
  39466. bottom: 86/1898
  39467. }
  39468. },
  39469. back: {
  39470. height: math.unit(10, "feet"),
  39471. weight: math.unit(1500, "lb"),
  39472. name: "Back",
  39473. image: {
  39474. source: "./media/characters/miles-thestia/back.svg",
  39475. extra: 1799/1690,
  39476. bottom: 47/1846
  39477. }
  39478. },
  39479. frontNsfw: {
  39480. height: math.unit(10, "feet"),
  39481. weight: math.unit(1500, "lb"),
  39482. name: "Front (NSFW)",
  39483. image: {
  39484. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39485. extra: 1812/1727,
  39486. bottom: 86/1898
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Mini-Macro",
  39493. height: math.unit(10, "feet"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(25, "feet"),
  39503. name: "Front",
  39504. image: {
  39505. source: "./media/characters/titan-s-wulf/front.svg",
  39506. extra: 1560/1484,
  39507. bottom: 76/1636
  39508. }
  39509. },
  39510. },
  39511. [
  39512. {
  39513. name: "Smallest",
  39514. height: math.unit(25, "feet"),
  39515. default: true
  39516. },
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(200, "feet")
  39520. },
  39521. {
  39522. name: "Macro",
  39523. height: math.unit(200000, "feet")
  39524. },
  39525. {
  39526. name: "Multiversal Original",
  39527. height: math.unit(10000, "multiverses")
  39528. },
  39529. ]
  39530. ))
  39531. characterMakers.push(() => makeCharacter(
  39532. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39533. {
  39534. front: {
  39535. height: math.unit(8, "feet"),
  39536. weight: math.unit(553, "lb"),
  39537. name: "Front",
  39538. image: {
  39539. source: "./media/characters/tawendeh/front.svg",
  39540. extra: 2365/2268,
  39541. bottom: 83/2448
  39542. }
  39543. },
  39544. frontClothed: {
  39545. height: math.unit(8, "feet"),
  39546. weight: math.unit(553, "lb"),
  39547. name: "Front (Clothed)",
  39548. image: {
  39549. source: "./media/characters/tawendeh/front-clothed.svg",
  39550. extra: 2365/2268,
  39551. bottom: 83/2448
  39552. }
  39553. },
  39554. back: {
  39555. height: math.unit(8, "feet"),
  39556. weight: math.unit(553, "lb"),
  39557. name: "Back",
  39558. image: {
  39559. source: "./media/characters/tawendeh/back.svg",
  39560. extra: 2397/2294,
  39561. bottom: 42/2439
  39562. }
  39563. },
  39564. },
  39565. [
  39566. {
  39567. name: "Mortal Interaction",
  39568. height: math.unit(8, "feet"),
  39569. default: true
  39570. },
  39571. {
  39572. name: "Giant",
  39573. height: math.unit(80, "feet")
  39574. },
  39575. {
  39576. name: "Macro",
  39577. height: math.unit(800, "feet")
  39578. },
  39579. {
  39580. name: "Megamacro",
  39581. height: math.unit(8000, "feet")
  39582. },
  39583. {
  39584. name: "City-Crushing",
  39585. height: math.unit(24000, "feet")
  39586. },
  39587. {
  39588. name: "Mountain-Mashing",
  39589. height: math.unit(80000, "feet")
  39590. },
  39591. {
  39592. name: "Nation Nemesis",
  39593. height: math.unit(8e6, "feet")
  39594. },
  39595. {
  39596. name: "Continent Cracker",
  39597. height: math.unit(24e6, "feet")
  39598. },
  39599. {
  39600. name: "Earth-Eclipsing",
  39601. height: math.unit(2.4e8, "feet")
  39602. },
  39603. {
  39604. name: "Gas Giant Gulper",
  39605. height: math.unit(2.4e9, "feet")
  39606. },
  39607. {
  39608. name: "Sol-Swallowing",
  39609. height: math.unit(8e10, "feet")
  39610. },
  39611. {
  39612. name: "Galaxy Gulper",
  39613. height: math.unit(8, "galaxies")
  39614. },
  39615. {
  39616. name: "Cosmos Churner",
  39617. height: math.unit(8, "universes")
  39618. },
  39619. {
  39620. name: "Omnipotent Otter",
  39621. height: math.unit(80, "universes")
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39627. {
  39628. front: {
  39629. height: math.unit(2.6, "meters"),
  39630. weight: math.unit(900, "kg"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/neesha/front.svg",
  39634. extra: 1803/1653,
  39635. bottom: 128/1931
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Normal",
  39642. height: math.unit(2.6, "meters"),
  39643. default: true
  39644. },
  39645. {
  39646. name: "Macro",
  39647. height: math.unit(50, "meters")
  39648. },
  39649. ]
  39650. ))
  39651. characterMakers.push(() => makeCharacter(
  39652. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39653. {
  39654. front: {
  39655. height: math.unit(5, "feet"),
  39656. weight: math.unit(185, "lb"),
  39657. name: "Front",
  39658. image: {
  39659. source: "./media/characters/kyera/front.svg",
  39660. extra: 1875/1790,
  39661. bottom: 96/1971
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Normal",
  39668. height: math.unit(5, "feet"),
  39669. default: true
  39670. },
  39671. ]
  39672. ))
  39673. characterMakers.push(() => makeCharacter(
  39674. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39675. {
  39676. front: {
  39677. height: math.unit(7 + 6/12, "feet"),
  39678. weight: math.unit(540, "lb"),
  39679. name: "Front",
  39680. image: {
  39681. source: "./media/characters/yuko/front.svg",
  39682. extra: 1282/1222,
  39683. bottom: 101/1383
  39684. }
  39685. },
  39686. frontClothed: {
  39687. height: math.unit(7 + 6/12, "feet"),
  39688. weight: math.unit(540, "lb"),
  39689. name: "Front (Clothed)",
  39690. image: {
  39691. source: "./media/characters/yuko/front-clothed.svg",
  39692. extra: 1282/1222,
  39693. bottom: 101/1383
  39694. }
  39695. },
  39696. },
  39697. [
  39698. {
  39699. name: "Normal",
  39700. height: math.unit(7 + 6/12, "feet"),
  39701. default: true
  39702. },
  39703. {
  39704. name: "Macro",
  39705. height: math.unit(26 + 9/12, "feet")
  39706. },
  39707. {
  39708. name: "Megamacro",
  39709. height: math.unit(300, "feet")
  39710. },
  39711. {
  39712. name: "Gigamacro",
  39713. height: math.unit(5000, "feet")
  39714. },
  39715. {
  39716. name: "Planetary",
  39717. height: math.unit(10000, "miles")
  39718. },
  39719. ]
  39720. ))
  39721. characterMakers.push(() => makeCharacter(
  39722. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39723. {
  39724. front: {
  39725. height: math.unit(8 + 2/12, "feet"),
  39726. weight: math.unit(600, "lb"),
  39727. name: "Front",
  39728. image: {
  39729. source: "./media/characters/deam-nitrel/front.svg",
  39730. extra: 1308/1234,
  39731. bottom: 125/1433
  39732. }
  39733. },
  39734. },
  39735. [
  39736. {
  39737. name: "Normal",
  39738. height: math.unit(8 + 2/12, "feet"),
  39739. default: true
  39740. },
  39741. ]
  39742. ))
  39743. characterMakers.push(() => makeCharacter(
  39744. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39745. {
  39746. front: {
  39747. height: math.unit(6.1, "feet"),
  39748. weight: math.unit(180, "lb"),
  39749. name: "Front",
  39750. image: {
  39751. source: "./media/characters/skyress/front.svg",
  39752. extra: 1045/915,
  39753. bottom: 28/1073
  39754. }
  39755. },
  39756. maw: {
  39757. height: math.unit(1, "feet"),
  39758. name: "Maw",
  39759. image: {
  39760. source: "./media/characters/skyress/maw.svg"
  39761. }
  39762. },
  39763. },
  39764. [
  39765. {
  39766. name: "Normal",
  39767. height: math.unit(6.1, "feet"),
  39768. default: true
  39769. },
  39770. {
  39771. name: "Macro",
  39772. height: math.unit(200, "feet")
  39773. },
  39774. ]
  39775. ))
  39776. characterMakers.push(() => makeCharacter(
  39777. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39778. {
  39779. front: {
  39780. height: math.unit(4 + 2/12, "feet"),
  39781. weight: math.unit(40, "kg"),
  39782. name: "Front",
  39783. image: {
  39784. source: "./media/characters/amethyst-jones/front.svg",
  39785. extra: 1220/1150,
  39786. bottom: 101/1321
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Normal",
  39793. height: math.unit(4 + 2/12, "feet"),
  39794. default: true
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(1.7, "m"),
  39803. weight: math.unit(135, "lb"),
  39804. name: "Front",
  39805. image: {
  39806. source: "./media/characters/jade/front.svg",
  39807. extra: 1818/1767,
  39808. bottom: 32/1850
  39809. }
  39810. },
  39811. back: {
  39812. height: math.unit(1.7, "m"),
  39813. weight: math.unit(135, "lb"),
  39814. name: "Back",
  39815. image: {
  39816. source: "./media/characters/jade/back.svg",
  39817. extra: 1869/1809,
  39818. bottom: 35/1904
  39819. }
  39820. },
  39821. hand: {
  39822. height: math.unit(0.24, "m"),
  39823. name: "Hand",
  39824. image: {
  39825. source: "./media/characters/jade/hand.svg"
  39826. }
  39827. },
  39828. foot: {
  39829. height: math.unit(0.263, "m"),
  39830. name: "Foot",
  39831. image: {
  39832. source: "./media/characters/jade/foot.svg"
  39833. }
  39834. },
  39835. dick: {
  39836. height: math.unit(0.47, "m"),
  39837. name: "Dick",
  39838. image: {
  39839. source: "./media/characters/jade/dick.svg"
  39840. }
  39841. },
  39842. },
  39843. [
  39844. {
  39845. name: "Micro",
  39846. height: math.unit(22, "cm")
  39847. },
  39848. {
  39849. name: "Normal",
  39850. height: math.unit(1.7, "m"),
  39851. default: true
  39852. },
  39853. {
  39854. name: "Macro",
  39855. height: math.unit(152, "m")
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(100, "miles"),
  39864. weight: math.unit(20000, "tons"),
  39865. name: "Front",
  39866. image: {
  39867. source: "./media/characters/cookie/front.svg",
  39868. extra: 1125/1070,
  39869. bottom: 30/1155
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Big",
  39876. height: math.unit(50, "feet")
  39877. },
  39878. {
  39879. name: "Macro",
  39880. height: math.unit(100, "miles"),
  39881. default: true
  39882. },
  39883. {
  39884. name: "Megamacro",
  39885. height: math.unit(90000, "miles")
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39891. {
  39892. front: {
  39893. height: math.unit(6, "feet"),
  39894. weight: math.unit(145, "lb"),
  39895. name: "Front",
  39896. image: {
  39897. source: "./media/characters/farzian/front.svg",
  39898. extra: 1902/1693,
  39899. bottom: 108/2010
  39900. }
  39901. },
  39902. },
  39903. [
  39904. {
  39905. name: "Macro",
  39906. height: math.unit(500, "feet"),
  39907. default: true
  39908. },
  39909. ]
  39910. ))
  39911. characterMakers.push(() => makeCharacter(
  39912. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39913. {
  39914. front: {
  39915. height: math.unit(3 + 6/12, "feet"),
  39916. weight: math.unit(50, "lb"),
  39917. name: "Front",
  39918. image: {
  39919. source: "./media/characters/kimberly-tilson/front.svg",
  39920. extra: 1400/1322,
  39921. bottom: 36/1436
  39922. }
  39923. },
  39924. back: {
  39925. height: math.unit(3 + 6/12, "feet"),
  39926. weight: math.unit(50, "lb"),
  39927. name: "Back",
  39928. image: {
  39929. source: "./media/characters/kimberly-tilson/back.svg",
  39930. extra: 1370/1307,
  39931. bottom: 20/1390
  39932. }
  39933. },
  39934. },
  39935. [
  39936. {
  39937. name: "Normal",
  39938. height: math.unit(3 + 6/12, "feet"),
  39939. default: true
  39940. },
  39941. ]
  39942. ))
  39943. characterMakers.push(() => makeCharacter(
  39944. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39945. {
  39946. front: {
  39947. height: math.unit(1148, "feet"),
  39948. weight: math.unit(34057, "lb"),
  39949. name: "Front",
  39950. image: {
  39951. source: "./media/characters/harthos/front.svg",
  39952. extra: 1391/1339,
  39953. bottom: 13/1404
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Macro",
  39960. height: math.unit(1148, "feet"),
  39961. default: true
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39967. {
  39968. front: {
  39969. height: math.unit(15, "feet"),
  39970. name: "Front",
  39971. image: {
  39972. source: "./media/characters/hypatia/front.svg",
  39973. extra: 1653/1591,
  39974. bottom: 79/1732
  39975. }
  39976. },
  39977. },
  39978. [
  39979. {
  39980. name: "Normal",
  39981. height: math.unit(15, "feet")
  39982. },
  39983. {
  39984. name: "Small",
  39985. height: math.unit(300, "feet")
  39986. },
  39987. {
  39988. name: "Macro",
  39989. height: math.unit(2500, "feet"),
  39990. default: true
  39991. },
  39992. {
  39993. name: "Mega Macro",
  39994. height: math.unit(1500, "miles")
  39995. },
  39996. {
  39997. name: "Giga Macro",
  39998. height: math.unit(1.5e6, "miles")
  39999. },
  40000. ]
  40001. ))
  40002. characterMakers.push(() => makeCharacter(
  40003. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40004. {
  40005. front: {
  40006. height: math.unit(6, "feet"),
  40007. weight: math.unit(200, "lb"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/wulver/front.svg",
  40011. extra: 1724/1632,
  40012. bottom: 130/1854
  40013. }
  40014. },
  40015. frontNsfw: {
  40016. height: math.unit(6, "feet"),
  40017. weight: math.unit(200, "lb"),
  40018. name: "Front (NSFW)",
  40019. image: {
  40020. source: "./media/characters/wulver/front-nsfw.svg",
  40021. extra: 1724/1632,
  40022. bottom: 130/1854
  40023. }
  40024. },
  40025. },
  40026. [
  40027. {
  40028. name: "Human-Sized",
  40029. height: math.unit(6, "feet")
  40030. },
  40031. {
  40032. name: "Normal",
  40033. height: math.unit(4, "meters"),
  40034. default: true
  40035. },
  40036. {
  40037. name: "Large",
  40038. height: math.unit(6, "m")
  40039. },
  40040. ]
  40041. ))
  40042. characterMakers.push(() => makeCharacter(
  40043. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40044. {
  40045. front: {
  40046. height: math.unit(7, "feet"),
  40047. name: "Front",
  40048. image: {
  40049. source: "./media/characters/maru/front.svg",
  40050. extra: 1595/1570,
  40051. bottom: 0/1595
  40052. }
  40053. },
  40054. },
  40055. [
  40056. {
  40057. name: "Normal",
  40058. height: math.unit(7, "feet"),
  40059. default: true
  40060. },
  40061. {
  40062. name: "Macro",
  40063. height: math.unit(700, "feet")
  40064. },
  40065. {
  40066. name: "Mega Macro",
  40067. height: math.unit(25, "miles")
  40068. },
  40069. ]
  40070. ))
  40071. characterMakers.push(() => makeCharacter(
  40072. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40073. {
  40074. front: {
  40075. height: math.unit(6, "feet"),
  40076. weight: math.unit(170, "lb"),
  40077. name: "Front",
  40078. image: {
  40079. source: "./media/characters/xenon/front.svg",
  40080. extra: 1376/1305,
  40081. bottom: 56/1432
  40082. }
  40083. },
  40084. back: {
  40085. height: math.unit(6, "feet"),
  40086. weight: math.unit(170, "lb"),
  40087. name: "Back",
  40088. image: {
  40089. source: "./media/characters/xenon/back.svg",
  40090. extra: 1328/1259,
  40091. bottom: 95/1423
  40092. }
  40093. },
  40094. maw: {
  40095. height: math.unit(0.52, "feet"),
  40096. name: "Maw",
  40097. image: {
  40098. source: "./media/characters/xenon/maw.svg"
  40099. }
  40100. },
  40101. hand: {
  40102. height: math.unit(0.82, "feet"),
  40103. name: "Hand",
  40104. image: {
  40105. source: "./media/characters/xenon/hand.svg"
  40106. }
  40107. },
  40108. foot: {
  40109. height: math.unit(1.13, "feet"),
  40110. name: "Foot",
  40111. image: {
  40112. source: "./media/characters/xenon/foot.svg"
  40113. }
  40114. },
  40115. },
  40116. [
  40117. {
  40118. name: "Micro",
  40119. height: math.unit(0.8, "inches")
  40120. },
  40121. {
  40122. name: "Normal",
  40123. height: math.unit(6, "feet")
  40124. },
  40125. {
  40126. name: "Macro",
  40127. height: math.unit(50, "feet"),
  40128. default: true
  40129. },
  40130. {
  40131. name: "Macro+",
  40132. height: math.unit(250, "feet")
  40133. },
  40134. {
  40135. name: "Megamacro",
  40136. height: math.unit(1500, "feet")
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(7 + 5/12, "feet"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/zane/front.svg",
  40148. extra: 1260/1203,
  40149. bottom: 94/1354
  40150. }
  40151. },
  40152. back: {
  40153. height: math.unit(5.05, "feet"),
  40154. name: "Back",
  40155. image: {
  40156. source: "./media/characters/zane/back.svg",
  40157. extra: 893/829,
  40158. bottom: 30/923
  40159. }
  40160. },
  40161. werewolf: {
  40162. height: math.unit(11, "feet"),
  40163. name: "Werewolf",
  40164. image: {
  40165. source: "./media/characters/zane/werewolf.svg",
  40166. extra: 1383/1323,
  40167. bottom: 89/1472
  40168. }
  40169. },
  40170. foot: {
  40171. height: math.unit(1.46, "feet"),
  40172. name: "Foot",
  40173. image: {
  40174. source: "./media/characters/zane/foot.svg"
  40175. }
  40176. },
  40177. footFront: {
  40178. height: math.unit(0.784, "feet"),
  40179. name: "Foot (Front)",
  40180. image: {
  40181. source: "./media/characters/zane/foot-front.svg"
  40182. }
  40183. },
  40184. dick: {
  40185. height: math.unit(1.95, "feet"),
  40186. name: "Dick",
  40187. image: {
  40188. source: "./media/characters/zane/dick.svg"
  40189. }
  40190. },
  40191. dickWerewolf: {
  40192. height: math.unit(3.77, "feet"),
  40193. name: "Dick (Werewolf)",
  40194. image: {
  40195. source: "./media/characters/zane/dick.svg"
  40196. }
  40197. },
  40198. },
  40199. [
  40200. {
  40201. name: "Normal",
  40202. height: math.unit(7 + 5/12, "feet"),
  40203. default: true
  40204. },
  40205. ]
  40206. ))
  40207. characterMakers.push(() => makeCharacter(
  40208. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40209. {
  40210. front: {
  40211. height: math.unit(6 + 2/12, "feet"),
  40212. weight: math.unit(284, "lb"),
  40213. name: "Front",
  40214. image: {
  40215. source: "./media/characters/benni-desparque/front.svg",
  40216. extra: 1353/1126,
  40217. bottom: 69/1422
  40218. }
  40219. },
  40220. },
  40221. [
  40222. {
  40223. name: "Civilian",
  40224. height: math.unit(6 + 2/12, "feet")
  40225. },
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(98, "feet"),
  40229. default: true
  40230. },
  40231. {
  40232. name: "Kaiju Fighter",
  40233. height: math.unit(268, "feet")
  40234. },
  40235. ]
  40236. ))
  40237. characterMakers.push(() => makeCharacter(
  40238. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40239. {
  40240. front: {
  40241. height: math.unit(5, "feet"),
  40242. weight: math.unit(105, "lb"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/maxine/front.svg",
  40246. extra: 1386/1250,
  40247. bottom: 71/1457
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Normal",
  40254. height: math.unit(5, "feet"),
  40255. default: true
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(11 + 7/12, "feet"),
  40264. weight: math.unit(9576, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/scaly/front.svg",
  40268. extra: 888/867,
  40269. bottom: 36/924
  40270. }
  40271. },
  40272. },
  40273. [
  40274. {
  40275. name: "Normal",
  40276. height: math.unit(11 + 7/12, "feet"),
  40277. default: true
  40278. },
  40279. ]
  40280. ))
  40281. characterMakers.push(() => makeCharacter(
  40282. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40283. {
  40284. front: {
  40285. height: math.unit(6 + 3/12, "feet"),
  40286. name: "Front",
  40287. image: {
  40288. source: "./media/characters/saelria/front.svg",
  40289. extra: 1243/1138,
  40290. bottom: 46/1289
  40291. }
  40292. },
  40293. },
  40294. [
  40295. {
  40296. name: "Micro",
  40297. height: math.unit(6, "inches"),
  40298. },
  40299. {
  40300. name: "Normal",
  40301. height: math.unit(6 + 3/12, "feet"),
  40302. default: true
  40303. },
  40304. {
  40305. name: "Macro",
  40306. height: math.unit(25, "feet")
  40307. },
  40308. ]
  40309. ))
  40310. characterMakers.push(() => makeCharacter(
  40311. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40312. {
  40313. front: {
  40314. height: math.unit(80, "meters"),
  40315. weight: math.unit(7000, "tonnes"),
  40316. name: "Front",
  40317. image: {
  40318. source: "./media/characters/tef/front.svg",
  40319. extra: 2036/1991,
  40320. bottom: 54/2090
  40321. }
  40322. },
  40323. back: {
  40324. height: math.unit(80, "meters"),
  40325. weight: math.unit(7000, "tonnes"),
  40326. name: "Back",
  40327. image: {
  40328. source: "./media/characters/tef/back.svg",
  40329. extra: 2036/1991,
  40330. bottom: 54/2090
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Macro",
  40337. height: math.unit(80, "meters"),
  40338. default: true
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40344. {
  40345. front: {
  40346. height: math.unit(13, "feet"),
  40347. weight: math.unit(6, "tons"),
  40348. name: "Front",
  40349. image: {
  40350. source: "./media/characters/rover/front.svg",
  40351. extra: 1233/1156,
  40352. bottom: 50/1283
  40353. }
  40354. },
  40355. back: {
  40356. height: math.unit(13, "feet"),
  40357. weight: math.unit(6, "tons"),
  40358. name: "Back",
  40359. image: {
  40360. source: "./media/characters/rover/back.svg",
  40361. extra: 1327/1258,
  40362. bottom: 39/1366
  40363. }
  40364. },
  40365. },
  40366. [
  40367. {
  40368. name: "Normal",
  40369. height: math.unit(13, "feet"),
  40370. default: true
  40371. },
  40372. {
  40373. name: "Macro",
  40374. height: math.unit(1300, "feet")
  40375. },
  40376. {
  40377. name: "Megamacro",
  40378. height: math.unit(1300, "miles")
  40379. },
  40380. {
  40381. name: "Gigamacro",
  40382. height: math.unit(1300000, "miles")
  40383. },
  40384. ]
  40385. ))
  40386. characterMakers.push(() => makeCharacter(
  40387. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40388. {
  40389. front: {
  40390. height: math.unit(6, "feet"),
  40391. weight: math.unit(150, "lb"),
  40392. name: "Front",
  40393. image: {
  40394. source: "./media/characters/ariz/front.svg",
  40395. extra: 1401/1346,
  40396. bottom: 5/1406
  40397. }
  40398. },
  40399. },
  40400. [
  40401. {
  40402. name: "Normal",
  40403. height: math.unit(10, "feet"),
  40404. default: true
  40405. },
  40406. ]
  40407. ))
  40408. characterMakers.push(() => makeCharacter(
  40409. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40410. {
  40411. front: {
  40412. height: math.unit(6, "feet"),
  40413. weight: math.unit(140, "lb"),
  40414. name: "Front",
  40415. image: {
  40416. source: "./media/characters/sigrun/front.svg",
  40417. extra: 1418/1359,
  40418. bottom: 27/1445
  40419. }
  40420. },
  40421. },
  40422. [
  40423. {
  40424. name: "Macro",
  40425. height: math.unit(35, "feet"),
  40426. default: true
  40427. },
  40428. ]
  40429. ))
  40430. characterMakers.push(() => makeCharacter(
  40431. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40432. {
  40433. front: {
  40434. height: math.unit(6, "feet"),
  40435. weight: math.unit(150, "lb"),
  40436. name: "Front",
  40437. image: {
  40438. source: "./media/characters/numin/front.svg",
  40439. extra: 1433/1388,
  40440. bottom: 12/1445
  40441. }
  40442. },
  40443. },
  40444. [
  40445. {
  40446. name: "Macro",
  40447. height: math.unit(21.5, "km"),
  40448. default: true
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40454. {
  40455. front: {
  40456. height: math.unit(6, "feet"),
  40457. weight: math.unit(463, "lb"),
  40458. name: "Front",
  40459. image: {
  40460. source: "./media/characters/melwa/front.svg",
  40461. extra: 1307/1248,
  40462. bottom: 93/1400
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Macro",
  40469. height: math.unit(50, "meters"),
  40470. default: true
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(325, "feet"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/zorkaiju/front.svg",
  40482. extra: 1955/1814,
  40483. bottom: 40/1995
  40484. }
  40485. },
  40486. frontExtended: {
  40487. height: math.unit(325, "feet"),
  40488. name: "Front (Extended)",
  40489. image: {
  40490. source: "./media/characters/zorkaiju/front-extended.svg",
  40491. extra: 1955/1814,
  40492. bottom: 40/1995
  40493. }
  40494. },
  40495. side: {
  40496. height: math.unit(325, "feet"),
  40497. name: "Side",
  40498. image: {
  40499. source: "./media/characters/zorkaiju/side.svg",
  40500. extra: 1495/1396,
  40501. bottom: 17/1512
  40502. }
  40503. },
  40504. sideExtended: {
  40505. height: math.unit(325, "feet"),
  40506. name: "Side (Extended)",
  40507. image: {
  40508. source: "./media/characters/zorkaiju/side-extended.svg",
  40509. extra: 1495/1396,
  40510. bottom: 17/1512
  40511. }
  40512. },
  40513. back: {
  40514. height: math.unit(325, "feet"),
  40515. name: "Back",
  40516. image: {
  40517. source: "./media/characters/zorkaiju/back.svg",
  40518. extra: 1959/1821,
  40519. bottom: 31/1990
  40520. }
  40521. },
  40522. backExtended: {
  40523. height: math.unit(325, "feet"),
  40524. name: "Back (Extended)",
  40525. image: {
  40526. source: "./media/characters/zorkaiju/back-extended.svg",
  40527. extra: 1959/1821,
  40528. bottom: 31/1990
  40529. }
  40530. },
  40531. hand: {
  40532. height: math.unit(58.4, "feet"),
  40533. name: "Hand",
  40534. image: {
  40535. source: "./media/characters/zorkaiju/hand.svg"
  40536. }
  40537. },
  40538. handExtended: {
  40539. height: math.unit(61.4, "feet"),
  40540. name: "Hand (Extended)",
  40541. image: {
  40542. source: "./media/characters/zorkaiju/hand-extended.svg"
  40543. }
  40544. },
  40545. foot: {
  40546. height: math.unit(95, "feet"),
  40547. name: "Foot",
  40548. image: {
  40549. source: "./media/characters/zorkaiju/foot.svg"
  40550. }
  40551. },
  40552. leftArm: {
  40553. height: math.unit(59, "feet"),
  40554. name: "Left Arm",
  40555. image: {
  40556. source: "./media/characters/zorkaiju/left-arm.svg"
  40557. }
  40558. },
  40559. rightArm: {
  40560. height: math.unit(59, "feet"),
  40561. name: "Right Arm",
  40562. image: {
  40563. source: "./media/characters/zorkaiju/right-arm.svg"
  40564. }
  40565. },
  40566. tail: {
  40567. height: math.unit(104, "feet"),
  40568. name: "Tail",
  40569. image: {
  40570. source: "./media/characters/zorkaiju/tail.svg"
  40571. }
  40572. },
  40573. tailExtended: {
  40574. height: math.unit(104, "feet"),
  40575. name: "Tail (Extended)",
  40576. image: {
  40577. source: "./media/characters/zorkaiju/tail-extended.svg"
  40578. }
  40579. },
  40580. tailBottom: {
  40581. height: math.unit(104, "feet"),
  40582. name: "Tail Bottom",
  40583. image: {
  40584. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40585. }
  40586. },
  40587. crystal: {
  40588. height: math.unit(27.54, "feet"),
  40589. name: "Crystal",
  40590. image: {
  40591. source: "./media/characters/zorkaiju/crystal.svg"
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Kaiju",
  40598. height: math.unit(325, "feet"),
  40599. default: true
  40600. },
  40601. ]
  40602. ))
  40603. characterMakers.push(() => makeCharacter(
  40604. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40605. {
  40606. front: {
  40607. height: math.unit(6 + 1/12, "feet"),
  40608. weight: math.unit(115, "lb"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/bailey-belfry/front.svg",
  40612. extra: 1240/1121,
  40613. bottom: 101/1341
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "Normal",
  40620. height: math.unit(6 + 1/12, "feet"),
  40621. default: true
  40622. },
  40623. ]
  40624. ))
  40625. characterMakers.push(() => makeCharacter(
  40626. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40627. {
  40628. side: {
  40629. height: math.unit(4, "meters"),
  40630. weight: math.unit(250, "kg"),
  40631. name: "Side",
  40632. image: {
  40633. source: "./media/characters/blacky/side.svg",
  40634. extra: 1027/919,
  40635. bottom: 43/1070
  40636. }
  40637. },
  40638. maw: {
  40639. height: math.unit(1, "meters"),
  40640. name: "Maw",
  40641. image: {
  40642. source: "./media/characters/blacky/maw.svg"
  40643. }
  40644. },
  40645. paw: {
  40646. height: math.unit(1, "meters"),
  40647. name: "Paw",
  40648. image: {
  40649. source: "./media/characters/blacky/paw.svg"
  40650. }
  40651. },
  40652. },
  40653. [
  40654. {
  40655. name: "Normal",
  40656. height: math.unit(4, "meters"),
  40657. default: true
  40658. },
  40659. ]
  40660. ))
  40661. characterMakers.push(() => makeCharacter(
  40662. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40663. {
  40664. front: {
  40665. height: math.unit(170, "cm"),
  40666. weight: math.unit(66, "kg"),
  40667. name: "Front",
  40668. image: {
  40669. source: "./media/characters/thux-ei/front.svg",
  40670. extra: 1109/1011,
  40671. bottom: 8/1117
  40672. }
  40673. },
  40674. },
  40675. [
  40676. {
  40677. name: "Normal",
  40678. height: math.unit(170, "cm"),
  40679. default: true
  40680. },
  40681. ]
  40682. ))
  40683. characterMakers.push(() => makeCharacter(
  40684. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40685. {
  40686. front: {
  40687. height: math.unit(5, "feet"),
  40688. weight: math.unit(120, "lb"),
  40689. name: "Front",
  40690. image: {
  40691. source: "./media/characters/roxanne-voltaire/front.svg",
  40692. extra: 1901/1779,
  40693. bottom: 53/1954
  40694. }
  40695. },
  40696. },
  40697. [
  40698. {
  40699. name: "Normal",
  40700. height: math.unit(5, "feet"),
  40701. default: true
  40702. },
  40703. {
  40704. name: "Giant",
  40705. height: math.unit(50, "feet")
  40706. },
  40707. {
  40708. name: "Titan",
  40709. height: math.unit(500, "feet")
  40710. },
  40711. {
  40712. name: "Macro",
  40713. height: math.unit(5000, "feet")
  40714. },
  40715. {
  40716. name: "Megamacro",
  40717. height: math.unit(50000, "feet")
  40718. },
  40719. {
  40720. name: "Gigamacro",
  40721. height: math.unit(500000, "feet")
  40722. },
  40723. {
  40724. name: "Teramacro",
  40725. height: math.unit(5e6, "feet")
  40726. },
  40727. ]
  40728. ))
  40729. characterMakers.push(() => makeCharacter(
  40730. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40731. {
  40732. front: {
  40733. height: math.unit(6 + 2/12, "feet"),
  40734. name: "Front",
  40735. image: {
  40736. source: "./media/characters/squeaks/front.svg",
  40737. extra: 1823/1768,
  40738. bottom: 138/1961
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Micro",
  40745. height: math.unit(0.5, "inches")
  40746. },
  40747. {
  40748. name: "Normal",
  40749. height: math.unit(6 + 2/12, "feet"),
  40750. default: true
  40751. },
  40752. {
  40753. name: "Macro",
  40754. height: math.unit(600, "feet")
  40755. },
  40756. ]
  40757. ))
  40758. characterMakers.push(() => makeCharacter(
  40759. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40760. {
  40761. front: {
  40762. height: math.unit(1.72, "meters"),
  40763. name: "Front",
  40764. image: {
  40765. source: "./media/characters/archinger/front.svg",
  40766. extra: 1861/1675,
  40767. bottom: 125/1986
  40768. }
  40769. },
  40770. back: {
  40771. height: math.unit(1.72, "meters"),
  40772. name: "Back",
  40773. image: {
  40774. source: "./media/characters/archinger/back.svg",
  40775. extra: 1844/1701,
  40776. bottom: 104/1948
  40777. }
  40778. },
  40779. cock: {
  40780. height: math.unit(0.59, "feet"),
  40781. name: "Cock",
  40782. image: {
  40783. source: "./media/characters/archinger/cock.svg"
  40784. }
  40785. },
  40786. },
  40787. [
  40788. {
  40789. name: "Normal",
  40790. height: math.unit(1.72, "meters"),
  40791. default: true
  40792. },
  40793. {
  40794. name: "Macro",
  40795. height: math.unit(84, "meters")
  40796. },
  40797. {
  40798. name: "Macro+",
  40799. height: math.unit(112, "meters")
  40800. },
  40801. {
  40802. name: "Macro++",
  40803. height: math.unit(960, "meters")
  40804. },
  40805. {
  40806. name: "Macro+++",
  40807. height: math.unit(4, "km")
  40808. },
  40809. {
  40810. name: "Macro++++",
  40811. height: math.unit(48, "km")
  40812. },
  40813. {
  40814. name: "Macro+++++",
  40815. height: math.unit(4500, "km")
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(5 + 5/12, "feet"),
  40824. name: "Front",
  40825. image: {
  40826. source: "./media/characters/alsnapz/front.svg",
  40827. extra: 1157/1065,
  40828. bottom: 42/1199
  40829. }
  40830. },
  40831. },
  40832. [
  40833. {
  40834. name: "Normal",
  40835. height: math.unit(5 + 5/12, "feet"),
  40836. default: true
  40837. },
  40838. ]
  40839. ))
  40840. characterMakers.push(() => makeCharacter(
  40841. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40842. {
  40843. side: {
  40844. height: math.unit(3.2, "earths"),
  40845. name: "Side",
  40846. image: {
  40847. source: "./media/characters/mag/side.svg",
  40848. extra: 1331/1008,
  40849. bottom: 52/1383
  40850. }
  40851. },
  40852. wing: {
  40853. height: math.unit(1.94, "earths"),
  40854. name: "Wing",
  40855. image: {
  40856. source: "./media/characters/mag/wing.svg"
  40857. }
  40858. },
  40859. dick: {
  40860. height: math.unit(1.8, "earths"),
  40861. name: "Dick",
  40862. image: {
  40863. source: "./media/characters/mag/dick.svg"
  40864. }
  40865. },
  40866. ass: {
  40867. height: math.unit(1.33, "earths"),
  40868. name: "Ass",
  40869. image: {
  40870. source: "./media/characters/mag/ass.svg"
  40871. }
  40872. },
  40873. head: {
  40874. height: math.unit(1.1, "earths"),
  40875. name: "Head",
  40876. image: {
  40877. source: "./media/characters/mag/head.svg"
  40878. }
  40879. },
  40880. maw: {
  40881. height: math.unit(1.62, "earths"),
  40882. name: "Maw",
  40883. image: {
  40884. source: "./media/characters/mag/maw.svg"
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Small",
  40891. height: math.unit(162, "feet")
  40892. },
  40893. {
  40894. name: "Normal",
  40895. height: math.unit(3.2, "earths"),
  40896. default: true
  40897. },
  40898. ]
  40899. ))
  40900. characterMakers.push(() => makeCharacter(
  40901. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40902. {
  40903. front: {
  40904. height: math.unit(512, "feet"),
  40905. weight: math.unit(63509, "tonnes"),
  40906. name: "Front",
  40907. image: {
  40908. source: "./media/characters/vorrel-harroc/front.svg",
  40909. extra: 1075/1063,
  40910. bottom: 62/1137
  40911. }
  40912. },
  40913. },
  40914. [
  40915. {
  40916. name: "Normal",
  40917. height: math.unit(10, "feet")
  40918. },
  40919. {
  40920. name: "Macro",
  40921. height: math.unit(512, "feet"),
  40922. default: true
  40923. },
  40924. {
  40925. name: "Megamacro",
  40926. height: math.unit(256, "miles")
  40927. },
  40928. {
  40929. name: "Gigamacro",
  40930. height: math.unit(4096, "miles")
  40931. },
  40932. ]
  40933. ))
  40934. characterMakers.push(() => makeCharacter(
  40935. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40936. {
  40937. side: {
  40938. height: math.unit(50, "feet"),
  40939. name: "Side",
  40940. image: {
  40941. source: "./media/characters/froimar/side.svg",
  40942. extra: 855/638,
  40943. bottom: 99/954
  40944. }
  40945. },
  40946. },
  40947. [
  40948. {
  40949. name: "Macro",
  40950. height: math.unit(50, "feet"),
  40951. default: true
  40952. },
  40953. ]
  40954. ))
  40955. characterMakers.push(() => makeCharacter(
  40956. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40957. {
  40958. front: {
  40959. height: math.unit(210, "miles"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/timothy/front.svg",
  40963. extra: 1007/943,
  40964. bottom: 62/1069
  40965. }
  40966. },
  40967. frontSkirt: {
  40968. height: math.unit(210, "miles"),
  40969. name: "Front (Skirt)",
  40970. image: {
  40971. source: "./media/characters/timothy/front-skirt.svg",
  40972. extra: 1007/943,
  40973. bottom: 62/1069
  40974. }
  40975. },
  40976. frontCoat: {
  40977. height: math.unit(210, "miles"),
  40978. name: "Front (Coat)",
  40979. image: {
  40980. source: "./media/characters/timothy/front-coat.svg",
  40981. extra: 1007/943,
  40982. bottom: 62/1069
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Macro",
  40989. height: math.unit(210, "miles"),
  40990. default: true
  40991. },
  40992. {
  40993. name: "Megamacro",
  40994. height: math.unit(210000, "miles")
  40995. },
  40996. ]
  40997. ))
  40998. characterMakers.push(() => makeCharacter(
  40999. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41000. {
  41001. front: {
  41002. height: math.unit(188, "feet"),
  41003. name: "Front",
  41004. image: {
  41005. source: "./media/characters/pyotr/front.svg",
  41006. extra: 1912/1826,
  41007. bottom: 18/1930
  41008. }
  41009. },
  41010. },
  41011. [
  41012. {
  41013. name: "Macro",
  41014. height: math.unit(188, "feet"),
  41015. default: true
  41016. },
  41017. {
  41018. name: "Megamacro",
  41019. height: math.unit(8, "miles")
  41020. },
  41021. ]
  41022. ))
  41023. characterMakers.push(() => makeCharacter(
  41024. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41025. {
  41026. side: {
  41027. height: math.unit(10, "feet"),
  41028. weight: math.unit(4500, "lb"),
  41029. name: "Side",
  41030. image: {
  41031. source: "./media/characters/ackart/side.svg",
  41032. extra: 1776/1668,
  41033. bottom: 116/1892
  41034. }
  41035. },
  41036. },
  41037. [
  41038. {
  41039. name: "Normal",
  41040. height: math.unit(10, "feet"),
  41041. default: true
  41042. },
  41043. ]
  41044. ))
  41045. characterMakers.push(() => makeCharacter(
  41046. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41047. {
  41048. side: {
  41049. height: math.unit(21, "feet"),
  41050. name: "Side",
  41051. image: {
  41052. source: "./media/characters/nolow/side.svg",
  41053. extra: 1484/1434,
  41054. bottom: 85/1569
  41055. }
  41056. },
  41057. sideErect: {
  41058. height: math.unit(21, "feet"),
  41059. name: "Side-erect",
  41060. image: {
  41061. source: "./media/characters/nolow/side-erect.svg",
  41062. extra: 1484/1434,
  41063. bottom: 85/1569
  41064. }
  41065. },
  41066. },
  41067. [
  41068. {
  41069. name: "Regular",
  41070. height: math.unit(12, "feet")
  41071. },
  41072. {
  41073. name: "Big Chee",
  41074. height: math.unit(21, "feet"),
  41075. default: true
  41076. },
  41077. ]
  41078. ))
  41079. characterMakers.push(() => makeCharacter(
  41080. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41081. {
  41082. front: {
  41083. height: math.unit(7, "feet"),
  41084. weight: math.unit(250, "lb"),
  41085. name: "Front",
  41086. image: {
  41087. source: "./media/characters/nines/front.svg",
  41088. extra: 1741/1607,
  41089. bottom: 41/1782
  41090. }
  41091. },
  41092. side: {
  41093. height: math.unit(7, "feet"),
  41094. weight: math.unit(250, "lb"),
  41095. name: "Side",
  41096. image: {
  41097. source: "./media/characters/nines/side.svg",
  41098. extra: 1854/1735,
  41099. bottom: 93/1947
  41100. }
  41101. },
  41102. back: {
  41103. height: math.unit(7, "feet"),
  41104. weight: math.unit(250, "lb"),
  41105. name: "Back",
  41106. image: {
  41107. source: "./media/characters/nines/back.svg",
  41108. extra: 1748/1615,
  41109. bottom: 20/1768
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Megamacro",
  41116. height: math.unit(99, "km"),
  41117. default: true
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41123. {
  41124. front: {
  41125. height: math.unit(5 + 10/12, "feet"),
  41126. weight: math.unit(210, "lb"),
  41127. name: "Front",
  41128. image: {
  41129. source: "./media/characters/zenith/front.svg",
  41130. extra: 1531/1452,
  41131. bottom: 198/1729
  41132. }
  41133. },
  41134. back: {
  41135. height: math.unit(5 + 10/12, "feet"),
  41136. weight: math.unit(210, "lb"),
  41137. name: "Back",
  41138. image: {
  41139. source: "./media/characters/zenith/back.svg",
  41140. extra: 1571/1487,
  41141. bottom: 75/1646
  41142. }
  41143. },
  41144. },
  41145. [
  41146. {
  41147. name: "Normal",
  41148. height: math.unit(5 + 10/12, "feet"),
  41149. default: true
  41150. }
  41151. ]
  41152. ))
  41153. characterMakers.push(() => makeCharacter(
  41154. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41155. {
  41156. front: {
  41157. height: math.unit(4, "feet"),
  41158. weight: math.unit(60, "lb"),
  41159. name: "Front",
  41160. image: {
  41161. source: "./media/characters/jasper/front.svg",
  41162. extra: 1450/1379,
  41163. bottom: 19/1469
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Normal",
  41170. height: math.unit(4, "feet"),
  41171. default: true
  41172. },
  41173. ]
  41174. ))
  41175. characterMakers.push(() => makeCharacter(
  41176. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41177. {
  41178. front: {
  41179. height: math.unit(6 + 5/12, "feet"),
  41180. weight: math.unit(290, "lb"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/tiberius-thyben/front.svg",
  41184. extra: 757/739,
  41185. bottom: 39/796
  41186. }
  41187. },
  41188. },
  41189. [
  41190. {
  41191. name: "Micro",
  41192. height: math.unit(1.5, "inches")
  41193. },
  41194. {
  41195. name: "Normal",
  41196. height: math.unit(6 + 5/12, "feet"),
  41197. default: true
  41198. },
  41199. {
  41200. name: "Macro",
  41201. height: math.unit(300, "feet")
  41202. },
  41203. ]
  41204. ))
  41205. characterMakers.push(() => makeCharacter(
  41206. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41207. {
  41208. front: {
  41209. height: math.unit(5 + 6/12, "feet"),
  41210. weight: math.unit(60, "kg"),
  41211. name: "Front",
  41212. image: {
  41213. source: "./media/characters/sabre/front.svg",
  41214. extra: 738/671,
  41215. bottom: 27/765
  41216. }
  41217. },
  41218. },
  41219. [
  41220. {
  41221. name: "Teeny",
  41222. height: math.unit(2, "inches")
  41223. },
  41224. {
  41225. name: "Smol",
  41226. height: math.unit(8, "inches")
  41227. },
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(5 + 6/12, "feet"),
  41231. default: true
  41232. },
  41233. {
  41234. name: "Mini-Macro",
  41235. height: math.unit(15, "feet")
  41236. },
  41237. {
  41238. name: "Macro",
  41239. height: math.unit(50, "feet")
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41245. {
  41246. front: {
  41247. height: math.unit(6 + 4/12, "feet"),
  41248. weight: math.unit(170, "lb"),
  41249. name: "Front",
  41250. image: {
  41251. source: "./media/characters/charlie/front.svg",
  41252. extra: 1348/1228,
  41253. bottom: 15/1363
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Macro",
  41260. height: math.unit(1700, "meters"),
  41261. default: true
  41262. },
  41263. {
  41264. name: "MegaMacro",
  41265. height: math.unit(20400, "meters")
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(6 + 3/12, "feet"),
  41274. weight: math.unit(185, "lb"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/susan-grant/front.svg",
  41278. extra: 1351/1327,
  41279. bottom: 26/1377
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(6 + 3/12, "feet"),
  41287. default: true
  41288. },
  41289. {
  41290. name: "Macro",
  41291. height: math.unit(225, "feet")
  41292. },
  41293. {
  41294. name: "Macro+",
  41295. height: math.unit(900, "feet")
  41296. },
  41297. {
  41298. name: "MegaMacro",
  41299. height: math.unit(14400, "feet")
  41300. },
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41305. {
  41306. front: {
  41307. height: math.unit(5 + 4/12, "feet"),
  41308. weight: math.unit(110, "lb"),
  41309. name: "Front",
  41310. image: {
  41311. source: "./media/characters/axel-isanov/front.svg",
  41312. extra: 1096/1065,
  41313. bottom: 13/1109
  41314. }
  41315. },
  41316. },
  41317. [
  41318. {
  41319. name: "Normal",
  41320. height: math.unit(5 + 4/12, "feet"),
  41321. default: true
  41322. },
  41323. ]
  41324. ))
  41325. characterMakers.push(() => makeCharacter(
  41326. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41327. {
  41328. front: {
  41329. height: math.unit(9, "feet"),
  41330. weight: math.unit(467, "lb"),
  41331. name: "Front",
  41332. image: {
  41333. source: "./media/characters/necahual/front.svg",
  41334. extra: 920/873,
  41335. bottom: 26/946
  41336. }
  41337. },
  41338. back: {
  41339. height: math.unit(9, "feet"),
  41340. weight: math.unit(467, "lb"),
  41341. name: "Back",
  41342. image: {
  41343. source: "./media/characters/necahual/back.svg",
  41344. extra: 930/884,
  41345. bottom: 16/946
  41346. }
  41347. },
  41348. frontUnderwear: {
  41349. height: math.unit(9, "feet"),
  41350. weight: math.unit(467, "lb"),
  41351. name: "Front (Underwear)",
  41352. image: {
  41353. source: "./media/characters/necahual/front-underwear.svg",
  41354. extra: 920/873,
  41355. bottom: 26/946
  41356. }
  41357. },
  41358. frontDressed: {
  41359. height: math.unit(9, "feet"),
  41360. weight: math.unit(467, "lb"),
  41361. name: "Front (Dressed)",
  41362. image: {
  41363. source: "./media/characters/necahual/front-dressed.svg",
  41364. extra: 920/873,
  41365. bottom: 26/946
  41366. }
  41367. },
  41368. },
  41369. [
  41370. {
  41371. name: "Comprsesed",
  41372. height: math.unit(9, "feet")
  41373. },
  41374. {
  41375. name: "Natural",
  41376. height: math.unit(15, "feet"),
  41377. default: true
  41378. },
  41379. {
  41380. name: "Boosted",
  41381. height: math.unit(50, "feet")
  41382. },
  41383. {
  41384. name: "Boosted+",
  41385. height: math.unit(150, "feet")
  41386. },
  41387. {
  41388. name: "Max",
  41389. height: math.unit(500, "feet")
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41395. {
  41396. front: {
  41397. height: math.unit(22 + 1/12, "feet"),
  41398. weight: math.unit(3200, "lb"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/theo-acacia/front.svg",
  41402. extra: 1796/1741,
  41403. bottom: 83/1879
  41404. }
  41405. },
  41406. frontUnderwear: {
  41407. height: math.unit(22 + 1/12, "feet"),
  41408. weight: math.unit(3200, "lb"),
  41409. name: "Front (Underwear)",
  41410. image: {
  41411. source: "./media/characters/theo-acacia/front-underwear.svg",
  41412. extra: 1796/1741,
  41413. bottom: 83/1879
  41414. }
  41415. },
  41416. frontNude: {
  41417. height: math.unit(22 + 1/12, "feet"),
  41418. weight: math.unit(3200, "lb"),
  41419. name: "Front (Nude)",
  41420. image: {
  41421. source: "./media/characters/theo-acacia/front-nude.svg",
  41422. extra: 1796/1741,
  41423. bottom: 83/1879
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Normal",
  41430. height: math.unit(22 + 1/12, "feet"),
  41431. default: true
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(20, "feet"),
  41440. name: "Front",
  41441. image: {
  41442. source: "./media/characters/astra/front.svg",
  41443. extra: 1850/1714,
  41444. bottom: 106/1956
  41445. }
  41446. },
  41447. frontUndressed: {
  41448. height: math.unit(20, "feet"),
  41449. name: "Front (Undressed)",
  41450. image: {
  41451. source: "./media/characters/astra/front-undressed.svg",
  41452. extra: 1926/1749,
  41453. bottom: 0/1926
  41454. }
  41455. },
  41456. hand: {
  41457. height: math.unit(1.53, "feet"),
  41458. name: "Hand",
  41459. image: {
  41460. source: "./media/characters/astra/hand.svg"
  41461. }
  41462. },
  41463. paw: {
  41464. height: math.unit(1.53, "feet"),
  41465. name: "Paw",
  41466. image: {
  41467. source: "./media/characters/astra/paw.svg"
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Smallest",
  41474. height: math.unit(20, "feet")
  41475. },
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(1e9, "miles"),
  41479. default: true
  41480. },
  41481. {
  41482. name: "Larger",
  41483. height: math.unit(5, "multiverses")
  41484. },
  41485. {
  41486. name: "Largest",
  41487. height: math.unit(1e9, "multiverses")
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(8, "feet"),
  41496. name: "Front",
  41497. image: {
  41498. source: "./media/characters/breanna/front.svg",
  41499. extra: 1912/1632,
  41500. bottom: 33/1945
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Smallest",
  41507. height: math.unit(8, "feet")
  41508. },
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(1, "mile"),
  41512. default: true
  41513. },
  41514. {
  41515. name: "Maximum",
  41516. height: math.unit(1500000000000, "lightyears")
  41517. },
  41518. ]
  41519. ))
  41520. characterMakers.push(() => makeCharacter(
  41521. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41522. {
  41523. front: {
  41524. height: math.unit(5 + 11/12, "feet"),
  41525. weight: math.unit(155, "lb"),
  41526. name: "Front",
  41527. image: {
  41528. source: "./media/characters/cai/front.svg",
  41529. extra: 1823/1702,
  41530. bottom: 32/1855
  41531. }
  41532. },
  41533. back: {
  41534. height: math.unit(5 + 11/12, "feet"),
  41535. weight: math.unit(155, "lb"),
  41536. name: "Back",
  41537. image: {
  41538. source: "./media/characters/cai/back.svg",
  41539. extra: 1809/1708,
  41540. bottom: 31/1840
  41541. }
  41542. },
  41543. },
  41544. [
  41545. {
  41546. name: "Normal",
  41547. height: math.unit(5 + 11/12, "feet"),
  41548. default: true
  41549. },
  41550. {
  41551. name: "Big",
  41552. height: math.unit(15, "feet")
  41553. },
  41554. {
  41555. name: "Macro",
  41556. height: math.unit(200, "feet")
  41557. },
  41558. ]
  41559. ))
  41560. characterMakers.push(() => makeCharacter(
  41561. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41562. {
  41563. front: {
  41564. height: math.unit(5 + 6/12, "feet"),
  41565. weight: math.unit(160, "lb"),
  41566. name: "Front",
  41567. image: {
  41568. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41569. extra: 1227/1174,
  41570. bottom: 37/1264
  41571. }
  41572. },
  41573. },
  41574. [
  41575. {
  41576. name: "Macro",
  41577. height: math.unit(444, "meters"),
  41578. default: true
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(18 + 7/12, "feet"),
  41587. name: "Front",
  41588. image: {
  41589. source: "./media/characters/rex/front.svg",
  41590. extra: 1941/1807,
  41591. bottom: 66/2007
  41592. }
  41593. },
  41594. back: {
  41595. height: math.unit(18 + 7/12, "feet"),
  41596. name: "Back",
  41597. image: {
  41598. source: "./media/characters/rex/back.svg",
  41599. extra: 1937/1822,
  41600. bottom: 42/1979
  41601. }
  41602. },
  41603. boot: {
  41604. height: math.unit(3.45, "feet"),
  41605. name: "Boot",
  41606. image: {
  41607. source: "./media/characters/rex/boot.svg"
  41608. }
  41609. },
  41610. paw: {
  41611. height: math.unit(4.17, "feet"),
  41612. name: "Paw",
  41613. image: {
  41614. source: "./media/characters/rex/paw.svg"
  41615. }
  41616. },
  41617. head: {
  41618. height: math.unit(6.728, "feet"),
  41619. name: "Head",
  41620. image: {
  41621. source: "./media/characters/rex/head.svg"
  41622. }
  41623. },
  41624. },
  41625. [
  41626. {
  41627. name: "Nano",
  41628. height: math.unit(18 + 7/12, "feet")
  41629. },
  41630. {
  41631. name: "Micro",
  41632. height: math.unit(1.5, "megameters")
  41633. },
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(440, "megameters"),
  41637. default: true
  41638. },
  41639. {
  41640. name: "Macro",
  41641. height: math.unit(2.5, "gigameters")
  41642. },
  41643. {
  41644. name: "Gigamacro",
  41645. height: math.unit(2, "galaxies")
  41646. },
  41647. ]
  41648. ))
  41649. characterMakers.push(() => makeCharacter(
  41650. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41651. {
  41652. side: {
  41653. height: math.unit(32, "feet"),
  41654. weight: math.unit(250000, "lb"),
  41655. name: "Side",
  41656. image: {
  41657. source: "./media/characters/silverwing/side.svg",
  41658. extra: 1100/1019,
  41659. bottom: 204/1304
  41660. }
  41661. },
  41662. },
  41663. [
  41664. {
  41665. name: "Normal",
  41666. height: math.unit(32, "feet"),
  41667. default: true
  41668. },
  41669. ]
  41670. ))
  41671. characterMakers.push(() => makeCharacter(
  41672. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41673. {
  41674. front: {
  41675. height: math.unit(6 + 6/12, "feet"),
  41676. weight: math.unit(350, "lb"),
  41677. name: "Front",
  41678. image: {
  41679. source: "./media/characters/tristan-hawthorne/front.svg",
  41680. extra: 1159/1124,
  41681. bottom: 37/1196
  41682. }
  41683. },
  41684. },
  41685. [
  41686. {
  41687. name: "Normal",
  41688. height: math.unit(6 + 6/12, "feet"),
  41689. default: true
  41690. },
  41691. ]
  41692. ))
  41693. characterMakers.push(() => makeCharacter(
  41694. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41695. {
  41696. front: {
  41697. height: math.unit(5 + 11/12, "feet"),
  41698. weight: math.unit(190, "lb"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/mizu/front.svg",
  41702. extra: 1988/1788,
  41703. bottom: 14/2002
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(5 + 11/12, "feet"),
  41711. default: true
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41717. {
  41718. front: {
  41719. height: math.unit(1.7, "feet"),
  41720. weight: math.unit(50, "lb"),
  41721. name: "Front",
  41722. image: {
  41723. source: "./media/characters/dechroma/front.svg",
  41724. extra: 1095/859,
  41725. bottom: 64/1159
  41726. }
  41727. },
  41728. },
  41729. [
  41730. {
  41731. name: "Normal",
  41732. height: math.unit(1.7, "feet"),
  41733. default: true
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41739. {
  41740. side: {
  41741. height: math.unit(30, "feet"),
  41742. name: "Side",
  41743. image: {
  41744. source: "./media/characters/veluren-thanazel/side.svg",
  41745. extra: 1611/633,
  41746. bottom: 118/1729
  41747. }
  41748. },
  41749. front: {
  41750. height: math.unit(30, "feet"),
  41751. name: "Front",
  41752. image: {
  41753. source: "./media/characters/veluren-thanazel/front.svg",
  41754. extra: 1486/636,
  41755. bottom: 238/1724
  41756. }
  41757. },
  41758. head: {
  41759. height: math.unit(21.4, "feet"),
  41760. name: "Head",
  41761. image: {
  41762. source: "./media/characters/veluren-thanazel/head.svg"
  41763. }
  41764. },
  41765. genitals: {
  41766. height: math.unit(19.4, "feet"),
  41767. name: "Genitals",
  41768. image: {
  41769. source: "./media/characters/veluren-thanazel/genitals.svg"
  41770. }
  41771. },
  41772. },
  41773. [
  41774. {
  41775. name: "Social",
  41776. height: math.unit(6, "feet")
  41777. },
  41778. {
  41779. name: "Play",
  41780. height: math.unit(12, "feet")
  41781. },
  41782. {
  41783. name: "True",
  41784. height: math.unit(30, "feet"),
  41785. default: true
  41786. },
  41787. ]
  41788. ))
  41789. characterMakers.push(() => makeCharacter(
  41790. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41791. {
  41792. front: {
  41793. height: math.unit(7 + 6/12, "feet"),
  41794. weight: math.unit(500, "kg"),
  41795. name: "Front",
  41796. image: {
  41797. source: "./media/characters/arcturas/front.svg",
  41798. extra: 1700/1500,
  41799. bottom: 145/1845
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(7 + 6/12, "feet"),
  41807. default: true
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41813. {
  41814. side: {
  41815. height: math.unit(6, "feet"),
  41816. weight: math.unit(2, "tons"),
  41817. name: "Side",
  41818. image: {
  41819. source: "./media/characters/vitaen/side.svg",
  41820. extra: 1157/617,
  41821. bottom: 122/1279
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Normal",
  41828. height: math.unit(6, "feet"),
  41829. default: true
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(19, "feet"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/fia-dreamweaver/front.svg",
  41841. extra: 1630/1504,
  41842. bottom: 25/1655
  41843. }
  41844. },
  41845. },
  41846. [
  41847. {
  41848. name: "Normal",
  41849. height: math.unit(19, "feet"),
  41850. default: true
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(5 + 4/12, "feet"),
  41859. name: "Front",
  41860. image: {
  41861. source: "./media/characters/artan/front.svg",
  41862. extra: 1618/1535,
  41863. bottom: 46/1664
  41864. }
  41865. },
  41866. back: {
  41867. height: math.unit(5 + 4/12, "feet"),
  41868. name: "Back",
  41869. image: {
  41870. source: "./media/characters/artan/back.svg",
  41871. extra: 1618/1543,
  41872. bottom: 31/1649
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Normal",
  41879. height: math.unit(5 + 4/12, "feet"),
  41880. default: true
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41886. {
  41887. side: {
  41888. height: math.unit(182, "cm"),
  41889. weight: math.unit(1000, "lb"),
  41890. name: "Side",
  41891. image: {
  41892. source: "./media/characters/silver-dragon/side.svg",
  41893. extra: 710/287,
  41894. bottom: 88/798
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(182, "cm"),
  41902. default: true
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41908. {
  41909. side: {
  41910. height: math.unit(6 + 6/12, "feet"),
  41911. weight: math.unit(1.5, "tons"),
  41912. name: "Side",
  41913. image: {
  41914. source: "./media/characters/zephyr/side.svg",
  41915. extra: 1433/586,
  41916. bottom: 109/1542
  41917. }
  41918. },
  41919. },
  41920. [
  41921. {
  41922. name: "Normal",
  41923. height: math.unit(6 + 6/12, "feet"),
  41924. default: true
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41930. {
  41931. side: {
  41932. height: math.unit(1, "feet"),
  41933. name: "Side",
  41934. image: {
  41935. source: "./media/characters/vixye/side.svg",
  41936. extra: 632/541,
  41937. bottom: 0/632
  41938. }
  41939. },
  41940. },
  41941. [
  41942. {
  41943. name: "Normal",
  41944. height: math.unit(1, "feet"),
  41945. default: true
  41946. },
  41947. {
  41948. name: "True",
  41949. height: math.unit(1e15, "multiverses")
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41955. {
  41956. front: {
  41957. height: math.unit(8 + 2/12, "feet"),
  41958. weight: math.unit(650, "lb"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41962. extra: 1174/1137,
  41963. bottom: 82/1256
  41964. }
  41965. },
  41966. back: {
  41967. height: math.unit(8 + 2/12, "feet"),
  41968. weight: math.unit(650, "lb"),
  41969. name: "Back",
  41970. image: {
  41971. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41972. extra: 1204/1157,
  41973. bottom: 46/1250
  41974. }
  41975. },
  41976. },
  41977. [
  41978. {
  41979. name: "Wildform",
  41980. height: math.unit(8 + 2/12, "feet"),
  41981. default: true
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41987. {
  41988. front: {
  41989. height: math.unit(18, "feet"),
  41990. name: "Front",
  41991. image: {
  41992. source: "./media/characters/cyphin/front.svg",
  41993. extra: 970/886,
  41994. bottom: 42/1012
  41995. }
  41996. },
  41997. back: {
  41998. height: math.unit(18, "feet"),
  41999. name: "Back",
  42000. image: {
  42001. source: "./media/characters/cyphin/back.svg",
  42002. extra: 1009/894,
  42003. bottom: 24/1033
  42004. }
  42005. },
  42006. head: {
  42007. height: math.unit(5.05, "feet"),
  42008. name: "Head",
  42009. image: {
  42010. source: "./media/characters/cyphin/head.svg"
  42011. }
  42012. },
  42013. tailbud: {
  42014. height: math.unit(5, "feet"),
  42015. name: "Tailbud",
  42016. image: {
  42017. source: "./media/characters/cyphin/tailbud.svg"
  42018. }
  42019. },
  42020. },
  42021. [
  42022. ]
  42023. ))
  42024. characterMakers.push(() => makeCharacter(
  42025. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42026. {
  42027. side: {
  42028. height: math.unit(10, "feet"),
  42029. weight: math.unit(6, "tons"),
  42030. name: "Side",
  42031. image: {
  42032. source: "./media/characters/raijin/side.svg",
  42033. extra: 1529/613,
  42034. bottom: 337/1866
  42035. }
  42036. },
  42037. },
  42038. [
  42039. {
  42040. name: "Normal",
  42041. height: math.unit(10, "feet"),
  42042. default: true
  42043. },
  42044. ]
  42045. ))
  42046. characterMakers.push(() => makeCharacter(
  42047. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42048. {
  42049. side: {
  42050. height: math.unit(9, "feet"),
  42051. name: "Side",
  42052. image: {
  42053. source: "./media/characters/nilghais/side.svg",
  42054. extra: 1047/744,
  42055. bottom: 91/1138
  42056. }
  42057. },
  42058. head: {
  42059. height: math.unit(3.14, "feet"),
  42060. name: "Head",
  42061. image: {
  42062. source: "./media/characters/nilghais/head.svg"
  42063. }
  42064. },
  42065. mouth: {
  42066. height: math.unit(4.6, "feet"),
  42067. name: "Mouth",
  42068. image: {
  42069. source: "./media/characters/nilghais/mouth.svg"
  42070. }
  42071. },
  42072. wings: {
  42073. height: math.unit(24, "feet"),
  42074. name: "Wings",
  42075. image: {
  42076. source: "./media/characters/nilghais/wings.svg"
  42077. }
  42078. },
  42079. ass: {
  42080. height: math.unit(6.12, "feet"),
  42081. name: "Ass",
  42082. image: {
  42083. source: "./media/characters/nilghais/ass.svg"
  42084. }
  42085. },
  42086. },
  42087. [
  42088. {
  42089. name: "Normal",
  42090. height: math.unit(9, "feet"),
  42091. default: true
  42092. },
  42093. ]
  42094. ))
  42095. characterMakers.push(() => makeCharacter(
  42096. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42097. {
  42098. regular: {
  42099. height: math.unit(16 + 2/12, "feet"),
  42100. weight: math.unit(2300, "lb"),
  42101. name: "Regular",
  42102. image: {
  42103. source: "./media/characters/zolgar/regular.svg",
  42104. extra: 1246/1004,
  42105. bottom: 124/1370
  42106. }
  42107. },
  42108. boxers: {
  42109. height: math.unit(16 + 2/12, "feet"),
  42110. weight: math.unit(2300, "lb"),
  42111. name: "Boxers",
  42112. image: {
  42113. source: "./media/characters/zolgar/boxers.svg",
  42114. extra: 1246/1004,
  42115. bottom: 124/1370
  42116. }
  42117. },
  42118. armored: {
  42119. height: math.unit(16 + 2/12, "feet"),
  42120. weight: math.unit(2300, "lb"),
  42121. name: "Armored",
  42122. image: {
  42123. source: "./media/characters/zolgar/armored.svg",
  42124. extra: 1246/1004,
  42125. bottom: 124/1370
  42126. }
  42127. },
  42128. goth: {
  42129. height: math.unit(16 + 2/12, "feet"),
  42130. weight: math.unit(2300, "lb"),
  42131. name: "Goth",
  42132. image: {
  42133. source: "./media/characters/zolgar/goth.svg",
  42134. extra: 1246/1004,
  42135. bottom: 124/1370
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Shrunken Down",
  42142. height: math.unit(9 + 2/12, "feet")
  42143. },
  42144. {
  42145. name: "Normal",
  42146. height: math.unit(16 + 2/12, "feet"),
  42147. default: true
  42148. },
  42149. ]
  42150. ))
  42151. characterMakers.push(() => makeCharacter(
  42152. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42153. {
  42154. front: {
  42155. height: math.unit(6, "feet"),
  42156. weight: math.unit(168, "lb"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/luca/front.svg",
  42160. extra: 841/667,
  42161. bottom: 102/943
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Normal",
  42168. height: math.unit(6, "feet"),
  42169. default: true
  42170. },
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42175. {
  42176. side: {
  42177. height: math.unit(7 + 3/12, "feet"),
  42178. weight: math.unit(312, "lb"),
  42179. name: "Side",
  42180. image: {
  42181. source: "./media/characters/zezo/side.svg",
  42182. extra: 1192/1067,
  42183. bottom: 63/1255
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Normal",
  42190. height: math.unit(7 + 3/12, "feet"),
  42191. default: true
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42197. {
  42198. front: {
  42199. height: math.unit(5 + 5/12, "feet"),
  42200. weight: math.unit(170, "lb"),
  42201. name: "Front",
  42202. image: {
  42203. source: "./media/characters/mayso/front.svg",
  42204. extra: 1215/1108,
  42205. bottom: 16/1231
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Normal",
  42212. height: math.unit(5 + 5/12, "feet"),
  42213. default: true
  42214. },
  42215. ]
  42216. ))
  42217. characterMakers.push(() => makeCharacter(
  42218. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42219. {
  42220. front: {
  42221. height: math.unit(4 + 3/12, "feet"),
  42222. weight: math.unit(80, "lb"),
  42223. name: "Front",
  42224. image: {
  42225. source: "./media/characters/hess/front.svg",
  42226. extra: 1200/1123,
  42227. bottom: 16/1216
  42228. }
  42229. },
  42230. },
  42231. [
  42232. {
  42233. name: "Normal",
  42234. height: math.unit(4 + 3/12, "feet"),
  42235. default: true
  42236. },
  42237. ]
  42238. ))
  42239. characterMakers.push(() => makeCharacter(
  42240. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42241. {
  42242. front: {
  42243. height: math.unit(1.9, "meters"),
  42244. name: "Front",
  42245. image: {
  42246. source: "./media/characters/ashgar/front.svg",
  42247. extra: 1177/1146,
  42248. bottom: 99/1276
  42249. }
  42250. },
  42251. back: {
  42252. height: math.unit(1.9, "meters"),
  42253. name: "Back",
  42254. image: {
  42255. source: "./media/characters/ashgar/back.svg",
  42256. extra: 1201/1183,
  42257. bottom: 53/1254
  42258. }
  42259. },
  42260. feral: {
  42261. height: math.unit(1.4, "meters"),
  42262. name: "Feral",
  42263. image: {
  42264. source: "./media/characters/ashgar/feral.svg",
  42265. extra: 370/345,
  42266. bottom: 45/415
  42267. }
  42268. },
  42269. },
  42270. [
  42271. {
  42272. name: "Normal",
  42273. height: math.unit(1.9, "meters"),
  42274. default: true
  42275. },
  42276. ]
  42277. ))
  42278. characterMakers.push(() => makeCharacter(
  42279. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42280. {
  42281. regular: {
  42282. height: math.unit(6, "feet"),
  42283. weight: math.unit(220, "lb"),
  42284. name: "Regular",
  42285. image: {
  42286. source: "./media/characters/phillip/regular.svg",
  42287. extra: 1373/1277,
  42288. bottom: 75/1448
  42289. }
  42290. },
  42291. dressed: {
  42292. height: math.unit(6, "feet"),
  42293. weight: math.unit(220, "lb"),
  42294. name: "Dressed",
  42295. image: {
  42296. source: "./media/characters/phillip/dressed.svg",
  42297. extra: 1373/1277,
  42298. bottom: 75/1448
  42299. }
  42300. },
  42301. paw: {
  42302. height: math.unit(1.44, "feet"),
  42303. name: "Paw",
  42304. image: {
  42305. source: "./media/characters/phillip/paw.svg"
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Normal",
  42312. height: math.unit(6, "feet"),
  42313. default: true
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42319. {
  42320. side: {
  42321. height: math.unit(42, "feet"),
  42322. name: "Side",
  42323. image: {
  42324. source: "./media/characters/uvula/side.svg",
  42325. extra: 683/586,
  42326. bottom: 60/743
  42327. }
  42328. },
  42329. front: {
  42330. height: math.unit(42, "feet"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/uvula/front.svg",
  42334. extra: 705/613,
  42335. bottom: 54/759
  42336. }
  42337. },
  42338. maw: {
  42339. height: math.unit(23.5, "feet"),
  42340. name: "Maw",
  42341. image: {
  42342. source: "./media/characters/uvula/maw.svg"
  42343. }
  42344. },
  42345. },
  42346. [
  42347. {
  42348. name: "Original Size",
  42349. height: math.unit(14, "inches")
  42350. },
  42351. {
  42352. name: "Human Size",
  42353. height: math.unit(6, "feet")
  42354. },
  42355. {
  42356. name: "Big",
  42357. height: math.unit(42, "feet"),
  42358. default: true
  42359. },
  42360. {
  42361. name: "Bigger",
  42362. height: math.unit(100, "feet")
  42363. },
  42364. ]
  42365. ))
  42366. characterMakers.push(() => makeCharacter(
  42367. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42368. {
  42369. front: {
  42370. height: math.unit(5 + 11/12, "feet"),
  42371. name: "Front",
  42372. image: {
  42373. source: "./media/characters/lannah/front.svg",
  42374. extra: 1208/1113,
  42375. bottom: 97/1305
  42376. }
  42377. },
  42378. },
  42379. [
  42380. {
  42381. name: "Normal",
  42382. height: math.unit(5 + 11/12, "feet"),
  42383. default: true
  42384. },
  42385. ]
  42386. ))
  42387. characterMakers.push(() => makeCharacter(
  42388. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42389. {
  42390. front: {
  42391. height: math.unit(6 + 3/12, "feet"),
  42392. weight: math.unit(3.5, "tons"),
  42393. name: "Front",
  42394. image: {
  42395. source: "./media/characters/emberflame/front.svg",
  42396. extra: 1198/672,
  42397. bottom: 82/1280
  42398. }
  42399. },
  42400. side: {
  42401. height: math.unit(6 + 3/12, "feet"),
  42402. weight: math.unit(3.5, "tons"),
  42403. name: "Side",
  42404. image: {
  42405. source: "./media/characters/emberflame/side.svg",
  42406. extra: 938/527,
  42407. bottom: 56/994
  42408. }
  42409. },
  42410. },
  42411. [
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(6 + 3/12, "feet"),
  42415. default: true
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42421. {
  42422. side: {
  42423. height: math.unit(17.5, "feet"),
  42424. weight: math.unit(35, "tons"),
  42425. name: "Side",
  42426. image: {
  42427. source: "./media/characters/sophie-ambrose/side.svg",
  42428. extra: 1573/1242,
  42429. bottom: 71/1644
  42430. }
  42431. },
  42432. maw: {
  42433. height: math.unit(7.4, "feet"),
  42434. name: "Maw",
  42435. image: {
  42436. source: "./media/characters/sophie-ambrose/maw.svg"
  42437. }
  42438. },
  42439. },
  42440. [
  42441. {
  42442. name: "Normal",
  42443. height: math.unit(17.5, "feet"),
  42444. default: true
  42445. },
  42446. ]
  42447. ))
  42448. characterMakers.push(() => makeCharacter(
  42449. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42450. {
  42451. front: {
  42452. height: math.unit(280, "feet"),
  42453. weight: math.unit(550, "tons"),
  42454. name: "Front",
  42455. image: {
  42456. source: "./media/characters/king-mugi/front.svg",
  42457. extra: 1102/947,
  42458. bottom: 104/1206
  42459. }
  42460. },
  42461. },
  42462. [
  42463. {
  42464. name: "King Mugi",
  42465. height: math.unit(280, "feet"),
  42466. default: true
  42467. },
  42468. ]
  42469. ))
  42470. characterMakers.push(() => makeCharacter(
  42471. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42472. {
  42473. front: {
  42474. height: math.unit(64, "meters"),
  42475. name: "Front",
  42476. image: {
  42477. source: "./media/characters/nova-fox/front.svg",
  42478. extra: 1310/1246,
  42479. bottom: 65/1375
  42480. }
  42481. },
  42482. },
  42483. [
  42484. {
  42485. name: "Macro",
  42486. height: math.unit(64, "meters"),
  42487. default: true
  42488. },
  42489. ]
  42490. ))
  42491. characterMakers.push(() => makeCharacter(
  42492. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42493. {
  42494. front: {
  42495. height: math.unit(6 + 3/12, "feet"),
  42496. weight: math.unit(170, "lb"),
  42497. name: "Front",
  42498. image: {
  42499. source: "./media/characters/sam-bat/front.svg",
  42500. extra: 1601/1411,
  42501. bottom: 125/1726
  42502. }
  42503. },
  42504. back: {
  42505. height: math.unit(6 + 3/12, "feet"),
  42506. weight: math.unit(170, "lb"),
  42507. name: "Back",
  42508. image: {
  42509. source: "./media/characters/sam-bat/back.svg",
  42510. extra: 1577/1405,
  42511. bottom: 58/1635
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Normal",
  42518. height: math.unit(6 + 3/12, "feet"),
  42519. default: true
  42520. },
  42521. ]
  42522. ))
  42523. characterMakers.push(() => makeCharacter(
  42524. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42525. {
  42526. front: {
  42527. height: math.unit(59, "feet"),
  42528. weight: math.unit(40000, "lb"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/inari/front.svg",
  42532. extra: 1884/1350,
  42533. bottom: 95/1979
  42534. }
  42535. },
  42536. },
  42537. [
  42538. {
  42539. name: "Gigantamax",
  42540. height: math.unit(59, "feet"),
  42541. default: true
  42542. },
  42543. ]
  42544. ))
  42545. characterMakers.push(() => makeCharacter(
  42546. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42547. {
  42548. front: {
  42549. height: math.unit(5 + 8/12, "feet"),
  42550. name: "Front",
  42551. image: {
  42552. source: "./media/characters/elizabeth/front.svg",
  42553. extra: 1395/1298,
  42554. bottom: 54/1449
  42555. }
  42556. },
  42557. mouth: {
  42558. height: math.unit(1.97, "feet"),
  42559. name: "Mouth",
  42560. image: {
  42561. source: "./media/characters/elizabeth/mouth.svg"
  42562. }
  42563. },
  42564. foot: {
  42565. height: math.unit(1.17, "feet"),
  42566. name: "Foot",
  42567. image: {
  42568. source: "./media/characters/elizabeth/foot.svg"
  42569. }
  42570. },
  42571. },
  42572. [
  42573. {
  42574. name: "Normal",
  42575. height: math.unit(5 + 8/12, "feet"),
  42576. default: true
  42577. },
  42578. {
  42579. name: "Minimacro",
  42580. height: math.unit(18, "feet")
  42581. },
  42582. {
  42583. name: "Macro",
  42584. height: math.unit(180, "feet")
  42585. },
  42586. ]
  42587. ))
  42588. characterMakers.push(() => makeCharacter(
  42589. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42590. {
  42591. front: {
  42592. height: math.unit(5 + 2/12, "feet"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/october-gossamer/front.svg",
  42596. extra: 505/454,
  42597. bottom: 7/512
  42598. }
  42599. },
  42600. back: {
  42601. height: math.unit(5 + 2/12, "feet"),
  42602. name: "Back",
  42603. image: {
  42604. source: "./media/characters/october-gossamer/back.svg",
  42605. extra: 501/454,
  42606. bottom: 11/512
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(5 + 2/12, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(5, "feet"),
  42623. name: "Front",
  42624. image: {
  42625. source: "./media/characters/epiglottis/front.svg",
  42626. extra: 923/849,
  42627. bottom: 17/940
  42628. }
  42629. },
  42630. },
  42631. [
  42632. {
  42633. name: "Original Size",
  42634. height: math.unit(10, "inches")
  42635. },
  42636. {
  42637. name: "Human Size",
  42638. height: math.unit(5, "feet"),
  42639. default: true
  42640. },
  42641. {
  42642. name: "Big",
  42643. height: math.unit(25, "feet")
  42644. },
  42645. {
  42646. name: "Bigger",
  42647. height: math.unit(50, "feet")
  42648. },
  42649. {
  42650. name: "oh lawd",
  42651. height: math.unit(75, "feet")
  42652. },
  42653. ]
  42654. ))
  42655. characterMakers.push(() => makeCharacter(
  42656. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42657. {
  42658. front: {
  42659. height: math.unit(2 + 4/12, "feet"),
  42660. weight: math.unit(60, "lb"),
  42661. name: "Front",
  42662. image: {
  42663. source: "./media/characters/lerm/front.svg",
  42664. extra: 796/790,
  42665. bottom: 79/875
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Normal",
  42672. height: math.unit(2 + 4/12, "feet"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(5.5, "feet"),
  42682. weight: math.unit(130, "lb"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/xena-nebadon/front.svg",
  42686. extra: 1828/1730,
  42687. bottom: 79/1907
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Tiny Puppy",
  42694. height: math.unit(3, "inches")
  42695. },
  42696. {
  42697. name: "Normal",
  42698. height: math.unit(5.5, "feet"),
  42699. default: true
  42700. },
  42701. {
  42702. name: "Lotta Lady",
  42703. height: math.unit(12, "feet")
  42704. },
  42705. {
  42706. name: "Pretty Big",
  42707. height: math.unit(100, "feet")
  42708. },
  42709. {
  42710. name: "Big",
  42711. height: math.unit(500, "feet")
  42712. },
  42713. {
  42714. name: "Skyscraper Toys",
  42715. height: math.unit(2500, "feet")
  42716. },
  42717. {
  42718. name: "Plane Catcher",
  42719. height: math.unit(8, "miles")
  42720. },
  42721. {
  42722. name: "Planet Toys",
  42723. height: math.unit(15, "earths")
  42724. },
  42725. {
  42726. name: "Stardust",
  42727. height: math.unit(0.25, "galaxies")
  42728. },
  42729. {
  42730. name: "Snacks",
  42731. height: math.unit(70, "universes")
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42737. {
  42738. front: {
  42739. height: math.unit(1.6, "meters"),
  42740. weight: math.unit(60, "kg"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/bounty/front.svg",
  42744. extra: 1426/1308,
  42745. bottom: 15/1441
  42746. }
  42747. },
  42748. back: {
  42749. height: math.unit(1.6, "meters"),
  42750. weight: math.unit(60, "kg"),
  42751. name: "Back",
  42752. image: {
  42753. source: "./media/characters/bounty/back.svg",
  42754. extra: 1417/1307,
  42755. bottom: 8/1425
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(1.6, "meters"),
  42763. default: true
  42764. },
  42765. {
  42766. name: "Macro",
  42767. height: math.unit(300, "meters")
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42773. {
  42774. front: {
  42775. height: math.unit(2 + 8/12, "feet"),
  42776. weight: math.unit(15, "lb"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/mochi/front.svg",
  42780. extra: 1022/852,
  42781. bottom: 435/1457
  42782. }
  42783. },
  42784. back: {
  42785. height: math.unit(2 + 8/12, "feet"),
  42786. weight: math.unit(15, "lb"),
  42787. name: "Back",
  42788. image: {
  42789. source: "./media/characters/mochi/back.svg",
  42790. extra: 1335/1119,
  42791. bottom: 39/1374
  42792. }
  42793. },
  42794. bird: {
  42795. height: math.unit(2 + 8/12, "feet"),
  42796. weight: math.unit(15, "lb"),
  42797. name: "Bird",
  42798. image: {
  42799. source: "./media/characters/mochi/bird.svg",
  42800. extra: 1251/1113,
  42801. bottom: 178/1429
  42802. }
  42803. },
  42804. kaiju: {
  42805. height: math.unit(154, "feet"),
  42806. weight: math.unit(1e7, "lb"),
  42807. name: "Kaiju",
  42808. image: {
  42809. source: "./media/characters/mochi/kaiju.svg",
  42810. extra: 460/324,
  42811. bottom: 40/500
  42812. }
  42813. },
  42814. head: {
  42815. height: math.unit(1.21, "feet"),
  42816. name: "Head",
  42817. image: {
  42818. source: "./media/characters/mochi/head.svg"
  42819. }
  42820. },
  42821. alternateTail: {
  42822. height: math.unit(2 + 8/12, "feet"),
  42823. weight: math.unit(45, "lb"),
  42824. name: "Alternate Tail",
  42825. image: {
  42826. source: "./media/characters/mochi/alternate-tail.svg",
  42827. extra: 139/76,
  42828. bottom: 45/184
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Micro",
  42835. height: math.unit(2, "inches")
  42836. },
  42837. {
  42838. name: "Normal",
  42839. height: math.unit(2 + 8/12, "feet"),
  42840. default: true
  42841. },
  42842. {
  42843. name: "Macro",
  42844. height: math.unit(106, "feet")
  42845. },
  42846. ]
  42847. ))
  42848. characterMakers.push(() => makeCharacter(
  42849. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42850. {
  42851. front: {
  42852. height: math.unit(5.67, "feet"),
  42853. weight: math.unit(135, "lb"),
  42854. name: "Front",
  42855. image: {
  42856. source: "./media/characters/sarel/front.svg",
  42857. extra: 865/788,
  42858. bottom: 97/962
  42859. }
  42860. },
  42861. back: {
  42862. height: math.unit(5.67, "feet"),
  42863. weight: math.unit(135, "lb"),
  42864. name: "Back",
  42865. image: {
  42866. source: "./media/characters/sarel/back.svg",
  42867. extra: 857/777,
  42868. bottom: 32/889
  42869. }
  42870. },
  42871. chozoan: {
  42872. height: math.unit(5.67, "feet"),
  42873. weight: math.unit(135, "lb"),
  42874. name: "Chozoan",
  42875. image: {
  42876. source: "./media/characters/sarel/chozoan.svg",
  42877. extra: 865/788,
  42878. bottom: 97/962
  42879. }
  42880. },
  42881. current: {
  42882. height: math.unit(5.67, "feet"),
  42883. weight: math.unit(135, "lb"),
  42884. name: "Current",
  42885. image: {
  42886. source: "./media/characters/sarel/current.svg",
  42887. extra: 865/788,
  42888. bottom: 97/962
  42889. }
  42890. },
  42891. head: {
  42892. height: math.unit(1.77, "feet"),
  42893. name: "Head",
  42894. image: {
  42895. source: "./media/characters/sarel/head.svg"
  42896. }
  42897. },
  42898. claws: {
  42899. height: math.unit(1.8, "feet"),
  42900. name: "Claws",
  42901. image: {
  42902. source: "./media/characters/sarel/claws.svg"
  42903. }
  42904. },
  42905. clawsAlt: {
  42906. height: math.unit(1.8, "feet"),
  42907. name: "Claws-alt",
  42908. image: {
  42909. source: "./media/characters/sarel/claws-alt.svg"
  42910. }
  42911. },
  42912. },
  42913. [
  42914. {
  42915. name: "Normal",
  42916. height: math.unit(5.67, "feet"),
  42917. default: true
  42918. },
  42919. ]
  42920. ))
  42921. characterMakers.push(() => makeCharacter(
  42922. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42923. {
  42924. front: {
  42925. height: math.unit(5500, "feet"),
  42926. name: "Front",
  42927. image: {
  42928. source: "./media/characters/alyonia/front.svg",
  42929. extra: 1200/1135,
  42930. bottom: 29/1229
  42931. }
  42932. },
  42933. back: {
  42934. height: math.unit(5500, "feet"),
  42935. name: "Back",
  42936. image: {
  42937. source: "./media/characters/alyonia/back.svg",
  42938. extra: 1205/1138,
  42939. bottom: 10/1215
  42940. }
  42941. },
  42942. },
  42943. [
  42944. {
  42945. name: "Small",
  42946. height: math.unit(10, "feet")
  42947. },
  42948. {
  42949. name: "Macro",
  42950. height: math.unit(500, "feet")
  42951. },
  42952. {
  42953. name: "Mega Macro",
  42954. height: math.unit(5500, "feet"),
  42955. default: true
  42956. },
  42957. {
  42958. name: "Mega Macro+",
  42959. height: math.unit(500000, "feet")
  42960. },
  42961. {
  42962. name: "Giga Macro",
  42963. height: math.unit(3000, "miles")
  42964. },
  42965. {
  42966. name: "Tera Macro",
  42967. height: math.unit(2.8e6, "miles")
  42968. },
  42969. {
  42970. name: "Galactic",
  42971. height: math.unit(120000, "lightyears")
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42977. {
  42978. werewolf: {
  42979. height: math.unit(8, "feet"),
  42980. weight: math.unit(425, "lb"),
  42981. name: "Werewolf",
  42982. image: {
  42983. source: "./media/characters/autumn/werewolf.svg",
  42984. extra: 2154/2031,
  42985. bottom: 160/2314
  42986. }
  42987. },
  42988. human: {
  42989. height: math.unit(5 + 8/12, "feet"),
  42990. weight: math.unit(150, "lb"),
  42991. name: "Human",
  42992. image: {
  42993. source: "./media/characters/autumn/human.svg",
  42994. extra: 1200/1149,
  42995. bottom: 30/1230
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Normal",
  43002. height: math.unit(8, "feet"),
  43003. default: true
  43004. },
  43005. ]
  43006. ))
  43007. characterMakers.push(() => makeCharacter(
  43008. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43009. {
  43010. front: {
  43011. height: math.unit(8 + 5/12, "feet"),
  43012. weight: math.unit(825, "lb"),
  43013. name: "Front",
  43014. image: {
  43015. source: "./media/characters/cobalt-charizard/front.svg",
  43016. extra: 1268/1155,
  43017. bottom: 122/1390
  43018. }
  43019. },
  43020. side: {
  43021. height: math.unit(8 + 5/12, "feet"),
  43022. weight: math.unit(825, "lb"),
  43023. name: "Side",
  43024. image: {
  43025. source: "./media/characters/cobalt-charizard/side.svg",
  43026. extra: 1348/1257,
  43027. bottom: 58/1406
  43028. }
  43029. },
  43030. gMax: {
  43031. height: math.unit(134 + 11/12, "feet"),
  43032. name: "G-Max",
  43033. image: {
  43034. source: "./media/characters/cobalt-charizard/g-max.svg",
  43035. extra: 1835/1541,
  43036. bottom: 151/1986
  43037. }
  43038. },
  43039. },
  43040. [
  43041. {
  43042. name: "Normal",
  43043. height: math.unit(8 + 5/12, "feet"),
  43044. default: true
  43045. },
  43046. ]
  43047. ))
  43048. characterMakers.push(() => makeCharacter(
  43049. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43050. {
  43051. front: {
  43052. height: math.unit(6 + 3/12, "feet"),
  43053. weight: math.unit(210, "lb"),
  43054. name: "Front",
  43055. image: {
  43056. source: "./media/characters/stella/front.svg",
  43057. extra: 3549/3335,
  43058. bottom: 51/3600
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Normal",
  43065. height: math.unit(6 + 3/12, "feet"),
  43066. default: true
  43067. },
  43068. ]
  43069. ))
  43070. characterMakers.push(() => makeCharacter(
  43071. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43072. {
  43073. front: {
  43074. height: math.unit(5, "feet"),
  43075. weight: math.unit(90, "lb"),
  43076. name: "Front",
  43077. image: {
  43078. source: "./media/characters/riley-bishop/front.svg",
  43079. extra: 1450/1428,
  43080. bottom: 152/1602
  43081. }
  43082. },
  43083. },
  43084. [
  43085. {
  43086. name: "Normal",
  43087. height: math.unit(5, "feet"),
  43088. default: true
  43089. },
  43090. ]
  43091. ))
  43092. characterMakers.push(() => makeCharacter(
  43093. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43094. {
  43095. side: {
  43096. height: math.unit(8 + 2/12, "feet"),
  43097. weight: math.unit(500, "kg"),
  43098. name: "Side",
  43099. image: {
  43100. source: "./media/characters/theo-arcanine/side.svg",
  43101. extra: 1342/1074,
  43102. bottom: 111/1453
  43103. }
  43104. },
  43105. },
  43106. [
  43107. {
  43108. name: "Normal",
  43109. height: math.unit(8 + 2/12, "feet"),
  43110. default: true
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(4, "feet"),
  43119. name: "Front",
  43120. image: {
  43121. source: "./media/characters/kali/front.svg",
  43122. extra: 1921/1357,
  43123. bottom: 70/1991
  43124. }
  43125. },
  43126. },
  43127. [
  43128. {
  43129. name: "Normal",
  43130. height: math.unit(4, "feet"),
  43131. default: true
  43132. },
  43133. {
  43134. name: "Macro",
  43135. height: math.unit(32, "meters")
  43136. },
  43137. {
  43138. name: "Macro+",
  43139. height: math.unit(150, "meters")
  43140. },
  43141. {
  43142. name: "Megamacro",
  43143. height: math.unit(7500, "meters")
  43144. },
  43145. {
  43146. name: "Megamacro+",
  43147. height: math.unit(80, "kilometers")
  43148. },
  43149. ]
  43150. ))
  43151. characterMakers.push(() => makeCharacter(
  43152. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43153. {
  43154. side: {
  43155. height: math.unit(5 + 11/12, "feet"),
  43156. weight: math.unit(236, "lb"),
  43157. name: "Side",
  43158. image: {
  43159. source: "./media/characters/gapp/side.svg",
  43160. extra: 775/340,
  43161. bottom: 58/833
  43162. }
  43163. },
  43164. mouth: {
  43165. height: math.unit(2.98, "feet"),
  43166. name: "Mouth",
  43167. image: {
  43168. source: "./media/characters/gapp/mouth.svg"
  43169. }
  43170. },
  43171. },
  43172. [
  43173. {
  43174. name: "Normal",
  43175. height: math.unit(5 + 1/12, "feet"),
  43176. default: true
  43177. },
  43178. ]
  43179. ))
  43180. characterMakers.push(() => makeCharacter(
  43181. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43182. {
  43183. front: {
  43184. height: math.unit(6, "feet"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/persephone/front.svg",
  43188. extra: 1895/1717,
  43189. bottom: 96/1991
  43190. }
  43191. },
  43192. back: {
  43193. height: math.unit(6, "feet"),
  43194. name: "Back",
  43195. image: {
  43196. source: "./media/characters/persephone/back.svg",
  43197. extra: 1868/1679,
  43198. bottom: 26/1894
  43199. }
  43200. },
  43201. casual: {
  43202. height: math.unit(6, "feet"),
  43203. name: "Casual",
  43204. image: {
  43205. source: "./media/characters/persephone/casual.svg",
  43206. extra: 1713/1541,
  43207. bottom: 76/1789
  43208. }
  43209. },
  43210. },
  43211. [
  43212. {
  43213. name: "Human Size",
  43214. height: math.unit(6, "feet")
  43215. },
  43216. {
  43217. name: "Big Steppy",
  43218. height: math.unit(600, "meters"),
  43219. default: true
  43220. },
  43221. {
  43222. name: "Galaxy Brain",
  43223. height: math.unit(1, "zettameter")
  43224. },
  43225. ]
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43229. {
  43230. front: {
  43231. height: math.unit(1.85, "meters"),
  43232. name: "Front",
  43233. image: {
  43234. source: "./media/characters/riley-foxthing/front.svg",
  43235. extra: 1495/1354,
  43236. bottom: 122/1617
  43237. }
  43238. },
  43239. frontAlt: {
  43240. height: math.unit(1.85, "meters"),
  43241. name: "Front (Alt)",
  43242. image: {
  43243. source: "./media/characters/riley-foxthing/front-alt.svg",
  43244. extra: 1572/1389,
  43245. bottom: 116/1688
  43246. }
  43247. },
  43248. },
  43249. [
  43250. {
  43251. name: "Normal Sized",
  43252. height: math.unit(1.85, "meters"),
  43253. default: true
  43254. },
  43255. {
  43256. name: "Quite Sizable",
  43257. height: math.unit(5, "meters")
  43258. },
  43259. {
  43260. name: "Rather Large",
  43261. height: math.unit(20, "meters")
  43262. },
  43263. {
  43264. name: "Macro",
  43265. height: math.unit(450, "meters")
  43266. },
  43267. {
  43268. name: "Giga",
  43269. height: math.unit(5, "km")
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43275. {
  43276. front: {
  43277. height: math.unit(6, "feet"),
  43278. weight: math.unit(200, "lb"),
  43279. name: "Front",
  43280. image: {
  43281. source: "./media/characters/blizzard/front.svg",
  43282. extra: 1136/990,
  43283. bottom: 136/1272
  43284. }
  43285. },
  43286. back: {
  43287. height: math.unit(6, "feet"),
  43288. weight: math.unit(200, "lb"),
  43289. name: "Back",
  43290. image: {
  43291. source: "./media/characters/blizzard/back.svg",
  43292. extra: 1175/1034,
  43293. bottom: 97/1272
  43294. }
  43295. },
  43296. sitting: {
  43297. height: math.unit(3.725, "feet"),
  43298. weight: math.unit(200, "lb"),
  43299. name: "Sitting",
  43300. image: {
  43301. source: "./media/characters/blizzard/sitting.svg",
  43302. extra: 581/485,
  43303. bottom: 90/671
  43304. }
  43305. },
  43306. frontWizard: {
  43307. height: math.unit(7.9, "feet"),
  43308. weight: math.unit(200, "lb"),
  43309. name: "Front (Wizard)",
  43310. image: {
  43311. source: "./media/characters/blizzard/front-wizard.svg"
  43312. }
  43313. },
  43314. backWizard: {
  43315. height: math.unit(7.9, "feet"),
  43316. weight: math.unit(200, "lb"),
  43317. name: "Back (Wizard)",
  43318. image: {
  43319. source: "./media/characters/blizzard/back-wizard.svg"
  43320. }
  43321. },
  43322. frontNsfw: {
  43323. height: math.unit(6, "feet"),
  43324. weight: math.unit(200, "lb"),
  43325. name: "Front (NSFW)",
  43326. image: {
  43327. source: "./media/characters/blizzard/front-nsfw.svg",
  43328. extra: 1136/990,
  43329. bottom: 136/1272
  43330. }
  43331. },
  43332. backNsfw: {
  43333. height: math.unit(6, "feet"),
  43334. weight: math.unit(200, "lb"),
  43335. name: "Back (NSFW)",
  43336. image: {
  43337. source: "./media/characters/blizzard/back-nsfw.svg",
  43338. extra: 1175/1034,
  43339. bottom: 97/1272
  43340. }
  43341. },
  43342. sittingNsfw: {
  43343. height: math.unit(3.725, "feet"),
  43344. weight: math.unit(200, "lb"),
  43345. name: "Sitting (NSFW)",
  43346. image: {
  43347. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43348. extra: 581/485,
  43349. bottom: 90/671
  43350. }
  43351. },
  43352. wizardFrontNsfw: {
  43353. height: math.unit(7.9, "feet"),
  43354. weight: math.unit(200, "lb"),
  43355. name: "Wizard (Front, NSFW)",
  43356. image: {
  43357. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43358. }
  43359. },
  43360. },
  43361. [
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(6, "feet"),
  43365. default: true
  43366. },
  43367. ]
  43368. ))
  43369. characterMakers.push(() => makeCharacter(
  43370. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43371. {
  43372. front: {
  43373. height: math.unit(5 + 2/12, "feet"),
  43374. name: "Front",
  43375. image: {
  43376. source: "./media/characters/lumi/front.svg",
  43377. extra: 1328/1268,
  43378. bottom: 103/1431
  43379. }
  43380. },
  43381. back: {
  43382. height: math.unit(5 + 2/12, "feet"),
  43383. name: "Back",
  43384. image: {
  43385. source: "./media/characters/lumi/back.svg",
  43386. extra: 1381/1327,
  43387. bottom: 43/1424
  43388. }
  43389. },
  43390. },
  43391. [
  43392. {
  43393. name: "Normal",
  43394. height: math.unit(5 + 2/12, "feet"),
  43395. default: true
  43396. },
  43397. ]
  43398. ))
  43399. characterMakers.push(() => makeCharacter(
  43400. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43401. {
  43402. front: {
  43403. height: math.unit(5 + 9/12, "feet"),
  43404. name: "Front",
  43405. image: {
  43406. source: "./media/characters/aliya-cotton/front.svg",
  43407. extra: 577/564,
  43408. bottom: 29/606
  43409. }
  43410. },
  43411. },
  43412. [
  43413. {
  43414. name: "Normal",
  43415. height: math.unit(5 + 9/12, "feet"),
  43416. default: true
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43422. {
  43423. front: {
  43424. height: math.unit(2.7, "meters"),
  43425. weight: math.unit(25000, "lb"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/noah-luxray/front.svg",
  43429. extra: 1644/825,
  43430. bottom: 339/1983
  43431. }
  43432. },
  43433. side: {
  43434. height: math.unit(2.97, "meters"),
  43435. weight: math.unit(25000, "lb"),
  43436. name: "Side",
  43437. image: {
  43438. source: "./media/characters/noah-luxray/side.svg",
  43439. extra: 1319/650,
  43440. bottom: 163/1482
  43441. }
  43442. },
  43443. dick: {
  43444. height: math.unit(7.4, "feet"),
  43445. weight: math.unit(2500, "lb"),
  43446. name: "Dick",
  43447. image: {
  43448. source: "./media/characters/noah-luxray/dick.svg"
  43449. }
  43450. },
  43451. dickAlt: {
  43452. height: math.unit(10.83, "feet"),
  43453. weight: math.unit(2500, "lb"),
  43454. name: "Dick-alt",
  43455. image: {
  43456. source: "./media/characters/noah-luxray/dick-alt.svg"
  43457. }
  43458. },
  43459. },
  43460. [
  43461. {
  43462. name: "BIG",
  43463. height: math.unit(2.7, "meters"),
  43464. default: true
  43465. },
  43466. ]
  43467. ))
  43468. characterMakers.push(() => makeCharacter(
  43469. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43470. {
  43471. standing: {
  43472. height: math.unit(183, "cm"),
  43473. weight: math.unit(68, "kg"),
  43474. name: "Standing",
  43475. image: {
  43476. source: "./media/characters/arion/standing.svg",
  43477. extra: 1869/1807,
  43478. bottom: 93/1962
  43479. }
  43480. },
  43481. reclining: {
  43482. height: math.unit(70.5, "cm"),
  43483. weight: math.unit(68, "lb"),
  43484. name: "Reclining",
  43485. image: {
  43486. source: "./media/characters/arion/reclining.svg",
  43487. extra: 937/870,
  43488. bottom: 63/1000
  43489. }
  43490. },
  43491. },
  43492. [
  43493. {
  43494. name: "Colossus Size, Low",
  43495. height: math.unit(33, "meters"),
  43496. default: true
  43497. },
  43498. {
  43499. name: "Colossus Size, Mid",
  43500. height: math.unit(52, "meters")
  43501. },
  43502. {
  43503. name: "Colossus Size, High",
  43504. height: math.unit(60, "meters")
  43505. },
  43506. {
  43507. name: "Titan Size, Low",
  43508. height: math.unit(91, "meters"),
  43509. },
  43510. {
  43511. name: "Titan Size, Mid",
  43512. height: math.unit(122, "meters")
  43513. },
  43514. {
  43515. name: "Titan Size, High",
  43516. height: math.unit(162, "meters")
  43517. },
  43518. ]
  43519. ))
  43520. characterMakers.push(() => makeCharacter(
  43521. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43522. {
  43523. front: {
  43524. height: math.unit(53, "meters"),
  43525. name: "Front",
  43526. image: {
  43527. source: "./media/characters/stellar-marbey/front.svg",
  43528. extra: 1913/1805,
  43529. bottom: 92/2005
  43530. }
  43531. },
  43532. back: {
  43533. height: math.unit(53, "meters"),
  43534. name: "Back",
  43535. image: {
  43536. source: "./media/characters/stellar-marbey/back.svg",
  43537. extra: 1960/1851,
  43538. bottom: 28/1988
  43539. }
  43540. },
  43541. mouth: {
  43542. height: math.unit(3.5, "meters"),
  43543. name: "Mouth",
  43544. image: {
  43545. source: "./media/characters/stellar-marbey/mouth.svg"
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Macro",
  43552. height: math.unit(53, "meters"),
  43553. default: true
  43554. },
  43555. ]
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43559. {
  43560. front: {
  43561. height: math.unit(8 + 1/12, "feet"),
  43562. weight: math.unit(233, "lb"),
  43563. name: "Front",
  43564. image: {
  43565. source: "./media/characters/matsu/front.svg",
  43566. extra: 832/772,
  43567. bottom: 40/872
  43568. }
  43569. },
  43570. back: {
  43571. height: math.unit(8 + 1/12, "feet"),
  43572. weight: math.unit(233, "lb"),
  43573. name: "Back",
  43574. image: {
  43575. source: "./media/characters/matsu/back.svg",
  43576. extra: 839/780,
  43577. bottom: 47/886
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(8 + 1/12, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43591. {
  43592. front: {
  43593. height: math.unit(4, "feet"),
  43594. weight: math.unit(148, "lb"),
  43595. name: "Front",
  43596. image: {
  43597. source: "./media/characters/thiz/front.svg",
  43598. extra: 1913/1748,
  43599. bottom: 62/1975
  43600. }
  43601. },
  43602. },
  43603. [
  43604. {
  43605. name: "Normal",
  43606. height: math.unit(4, "feet"),
  43607. default: true
  43608. },
  43609. ]
  43610. ))
  43611. characterMakers.push(() => makeCharacter(
  43612. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43613. {
  43614. front: {
  43615. height: math.unit(7 + 6/12, "feet"),
  43616. weight: math.unit(267, "lb"),
  43617. name: "Front",
  43618. image: {
  43619. source: "./media/characters/marcel/front.svg",
  43620. extra: 1221/1096,
  43621. bottom: 76/1297
  43622. }
  43623. },
  43624. },
  43625. [
  43626. {
  43627. name: "Normal",
  43628. height: math.unit(7 + 6/12, "feet"),
  43629. default: true
  43630. },
  43631. ]
  43632. ))
  43633. characterMakers.push(() => makeCharacter(
  43634. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43635. {
  43636. side: {
  43637. height: math.unit(42, "meters"),
  43638. name: "Side",
  43639. image: {
  43640. source: "./media/characters/flake/side.svg",
  43641. extra: 1525/1306,
  43642. bottom: 209/1734
  43643. }
  43644. },
  43645. },
  43646. [
  43647. {
  43648. name: "Normal",
  43649. height: math.unit(42, "meters"),
  43650. default: true
  43651. },
  43652. ]
  43653. ))
  43654. characterMakers.push(() => makeCharacter(
  43655. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43656. {
  43657. dressed: {
  43658. height: math.unit(6 + 4/12, "feet"),
  43659. weight: math.unit(520, "lb"),
  43660. name: "Dressed",
  43661. image: {
  43662. source: "./media/characters/someonne/dressed.svg",
  43663. extra: 1020/1010,
  43664. bottom: 178/1198
  43665. }
  43666. },
  43667. undressed: {
  43668. height: math.unit(6 + 4/12, "feet"),
  43669. weight: math.unit(520, "lb"),
  43670. name: "Undressed",
  43671. image: {
  43672. source: "./media/characters/someonne/undressed.svg",
  43673. extra: 1019/1014,
  43674. bottom: 169/1188
  43675. }
  43676. },
  43677. },
  43678. [
  43679. {
  43680. name: "Normal",
  43681. height: math.unit(6 + 4/12, "feet"),
  43682. default: true
  43683. },
  43684. ]
  43685. ))
  43686. characterMakers.push(() => makeCharacter(
  43687. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43688. {
  43689. front: {
  43690. height: math.unit(3, "feet"),
  43691. weight: math.unit(30, "lb"),
  43692. name: "Front",
  43693. image: {
  43694. source: "./media/characters/till/front.svg",
  43695. extra: 892/823,
  43696. bottom: 55/947
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Normal",
  43703. height: math.unit(3, "feet"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43710. {
  43711. front: {
  43712. height: math.unit(9 + 8/12, "feet"),
  43713. weight: math.unit(800, "lb"),
  43714. name: "Front",
  43715. image: {
  43716. source: "./media/characters/sydney-heki/front.svg",
  43717. extra: 1360/1300,
  43718. bottom: 22/1382
  43719. }
  43720. },
  43721. back: {
  43722. height: math.unit(9 + 8/12, "feet"),
  43723. weight: math.unit(800, "lb"),
  43724. name: "Back",
  43725. image: {
  43726. source: "./media/characters/sydney-heki/back.svg",
  43727. extra: 1356/1293,
  43728. bottom: 12/1368
  43729. }
  43730. },
  43731. frontDressed: {
  43732. height: math.unit(9 + 8/12, "feet"),
  43733. weight: math.unit(800, "lb"),
  43734. name: "Front-dressed",
  43735. image: {
  43736. source: "./media/characters/sydney-heki/front-dressed.svg",
  43737. extra: 1360/1300,
  43738. bottom: 22/1382
  43739. }
  43740. },
  43741. },
  43742. [
  43743. {
  43744. name: "Normal",
  43745. height: math.unit(9 + 8/12, "feet"),
  43746. default: true
  43747. },
  43748. {
  43749. name: "Macro",
  43750. height: math.unit(500, "feet")
  43751. },
  43752. {
  43753. name: "Megamacro",
  43754. height: math.unit(3.6, "miles")
  43755. },
  43756. ]
  43757. ))
  43758. characterMakers.push(() => makeCharacter(
  43759. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43760. {
  43761. front: {
  43762. height: math.unit(200, "cm"),
  43763. weight: math.unit(250, "lb"),
  43764. name: "Front",
  43765. image: {
  43766. source: "./media/characters/fowler-karlsson/front.svg",
  43767. extra: 897/845,
  43768. bottom: 123/1020
  43769. }
  43770. },
  43771. back: {
  43772. height: math.unit(200, "cm"),
  43773. weight: math.unit(250, "lb"),
  43774. name: "Back",
  43775. image: {
  43776. source: "./media/characters/fowler-karlsson/back.svg",
  43777. extra: 999/944,
  43778. bottom: 26/1025
  43779. }
  43780. },
  43781. dick: {
  43782. height: math.unit(1.92, "feet"),
  43783. weight: math.unit(150, "lb"),
  43784. name: "Dick",
  43785. image: {
  43786. source: "./media/characters/fowler-karlsson/dick.svg"
  43787. }
  43788. },
  43789. },
  43790. [
  43791. {
  43792. name: "Normal",
  43793. height: math.unit(200, "cm"),
  43794. default: true
  43795. },
  43796. {
  43797. name: "Smaller Macro",
  43798. height: math.unit(90, "m")
  43799. },
  43800. {
  43801. name: "Macro",
  43802. height: math.unit(150, "m")
  43803. },
  43804. {
  43805. name: "Bigger Macro",
  43806. height: math.unit(300, "m")
  43807. },
  43808. ]
  43809. ))
  43810. characterMakers.push(() => makeCharacter(
  43811. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43812. {
  43813. side: {
  43814. height: math.unit(8 + 2/12, "feet"),
  43815. weight: math.unit(1, "tonne"),
  43816. name: "Side",
  43817. image: {
  43818. source: "./media/characters/rylide/side.svg",
  43819. extra: 1318/1034,
  43820. bottom: 106/1424
  43821. }
  43822. },
  43823. sitting: {
  43824. height: math.unit(303, "cm"),
  43825. weight: math.unit(1, "tonne"),
  43826. name: "Sitting",
  43827. image: {
  43828. source: "./media/characters/rylide/sitting.svg",
  43829. extra: 1303/1103,
  43830. bottom: 36/1339
  43831. }
  43832. },
  43833. },
  43834. [
  43835. {
  43836. name: "Normal",
  43837. height: math.unit(8 + 2/12, "feet"),
  43838. default: true
  43839. },
  43840. ]
  43841. ))
  43842. characterMakers.push(() => makeCharacter(
  43843. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43844. {
  43845. front: {
  43846. height: math.unit(5 + 10/12, "feet"),
  43847. weight: math.unit(160, "lb"),
  43848. name: "Front",
  43849. image: {
  43850. source: "./media/characters/pudask/front.svg",
  43851. extra: 1616/1590,
  43852. bottom: 161/1777
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Ferret Height",
  43859. height: math.unit(2 + 5/12, "feet")
  43860. },
  43861. {
  43862. name: "Canon Height",
  43863. height: math.unit(5 + 10/12, "feet"),
  43864. default: true
  43865. },
  43866. ]
  43867. ))
  43868. characterMakers.push(() => makeCharacter(
  43869. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43870. {
  43871. front: {
  43872. height: math.unit(3 + 6/12, "feet"),
  43873. weight: math.unit(60, "lb"),
  43874. name: "Front",
  43875. image: {
  43876. source: "./media/characters/ramita/front.svg",
  43877. extra: 1402/1232,
  43878. bottom: 62/1464
  43879. }
  43880. },
  43881. dressed: {
  43882. height: math.unit(3 + 6/12, "feet"),
  43883. weight: math.unit(60, "lb"),
  43884. name: "Dressed",
  43885. image: {
  43886. source: "./media/characters/ramita/dressed.svg",
  43887. extra: 1534/1249,
  43888. bottom: 50/1584
  43889. }
  43890. },
  43891. },
  43892. [
  43893. {
  43894. name: "Normal",
  43895. height: math.unit(3 + 6/12, "feet"),
  43896. default: true
  43897. },
  43898. ]
  43899. ))
  43900. characterMakers.push(() => makeCharacter(
  43901. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43902. {
  43903. front: {
  43904. height: math.unit(8, "feet"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/ark/front.svg",
  43908. extra: 772/693,
  43909. bottom: 45/817
  43910. }
  43911. },
  43912. },
  43913. [
  43914. {
  43915. name: "Normal",
  43916. height: math.unit(8, "feet"),
  43917. default: true
  43918. },
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43923. {
  43924. front: {
  43925. height: math.unit(6, "feet"),
  43926. weight: math.unit(250, "lb"),
  43927. volume: math.unit(5/8, "gallons"),
  43928. name: "Front",
  43929. image: {
  43930. source: "./media/characters/ludwig-horn/front.svg",
  43931. extra: 1782/1635,
  43932. bottom: 96/1878
  43933. }
  43934. },
  43935. back: {
  43936. height: math.unit(6, "feet"),
  43937. weight: math.unit(250, "lb"),
  43938. volume: math.unit(5/8, "gallons"),
  43939. name: "Back",
  43940. image: {
  43941. source: "./media/characters/ludwig-horn/back.svg",
  43942. extra: 1874/1729,
  43943. bottom: 27/1901
  43944. }
  43945. },
  43946. dick: {
  43947. height: math.unit(1.05, "feet"),
  43948. weight: math.unit(15, "lb"),
  43949. volume: math.unit(5/8, "gallons"),
  43950. name: "Dick",
  43951. image: {
  43952. source: "./media/characters/ludwig-horn/dick.svg"
  43953. }
  43954. },
  43955. },
  43956. [
  43957. {
  43958. name: "Small",
  43959. height: math.unit(6, "feet")
  43960. },
  43961. {
  43962. name: "Typical",
  43963. height: math.unit(12, "feet"),
  43964. default: true
  43965. },
  43966. {
  43967. name: "Building",
  43968. height: math.unit(80, "feet")
  43969. },
  43970. {
  43971. name: "Town",
  43972. height: math.unit(800, "feet")
  43973. },
  43974. {
  43975. name: "Kingdom",
  43976. height: math.unit(80000, "feet")
  43977. },
  43978. {
  43979. name: "Planet",
  43980. height: math.unit(8000000, "feet")
  43981. },
  43982. {
  43983. name: "Universe",
  43984. height: math.unit(8000000000, "feet")
  43985. },
  43986. {
  43987. name: "Transcended",
  43988. height: math.unit(8e27, "feet")
  43989. },
  43990. ]
  43991. ))
  43992. characterMakers.push(() => makeCharacter(
  43993. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43994. {
  43995. front: {
  43996. height: math.unit(5, "feet"),
  43997. weight: math.unit(50, "kg"),
  43998. name: "Front",
  43999. image: {
  44000. source: "./media/characters/biot-avery/front.svg",
  44001. extra: 1295/1232,
  44002. bottom: 86/1381
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Normal",
  44009. height: math.unit(5, "feet"),
  44010. default: true
  44011. },
  44012. ]
  44013. ))
  44014. characterMakers.push(() => makeCharacter(
  44015. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44016. {
  44017. front: {
  44018. height: math.unit(6, "feet"),
  44019. name: "Front",
  44020. image: {
  44021. source: "./media/characters/kitsune-kiro/front.svg",
  44022. extra: 1270/1158,
  44023. bottom: 42/1312
  44024. }
  44025. },
  44026. frontAlt: {
  44027. height: math.unit(6, "feet"),
  44028. name: "Front-alt",
  44029. image: {
  44030. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44031. extra: 1130/1081,
  44032. bottom: 36/1166
  44033. }
  44034. },
  44035. },
  44036. [
  44037. {
  44038. name: "Smol",
  44039. height: math.unit(3, "feet")
  44040. },
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(6, "feet"),
  44044. default: true
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44050. {
  44051. front: {
  44052. height: math.unit(6, "feet"),
  44053. weight: math.unit(125, "lb"),
  44054. name: "Front",
  44055. image: {
  44056. source: "./media/characters/jack-thatcher/front.svg",
  44057. extra: 1474/1370,
  44058. bottom: 26/1500
  44059. }
  44060. },
  44061. back: {
  44062. height: math.unit(6, "feet"),
  44063. weight: math.unit(125, "lb"),
  44064. name: "Back",
  44065. image: {
  44066. source: "./media/characters/jack-thatcher/back.svg",
  44067. extra: 1489/1384,
  44068. bottom: 18/1507
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Normal",
  44075. height: math.unit(6, "feet"),
  44076. default: true
  44077. },
  44078. {
  44079. name: "Macro",
  44080. height: math.unit(75, "feet")
  44081. },
  44082. {
  44083. name: "Macro-er",
  44084. height: math.unit(250, "feet")
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44090. {
  44091. front: {
  44092. height: math.unit(7, "feet"),
  44093. weight: math.unit(110, "kg"),
  44094. name: "Front",
  44095. image: {
  44096. source: "./media/characters/max-hyper/front.svg",
  44097. extra: 1969/1881,
  44098. bottom: 49/2018
  44099. }
  44100. },
  44101. },
  44102. [
  44103. {
  44104. name: "Normal",
  44105. height: math.unit(7, "feet"),
  44106. default: true
  44107. },
  44108. ]
  44109. ))
  44110. characterMakers.push(() => makeCharacter(
  44111. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44112. {
  44113. front: {
  44114. height: math.unit(5 + 5/12, "feet"),
  44115. weight: math.unit(160, "lb"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/spook/front.svg",
  44119. extra: 794/791,
  44120. bottom: 54/848
  44121. }
  44122. },
  44123. back: {
  44124. height: math.unit(5 + 5/12, "feet"),
  44125. weight: math.unit(160, "lb"),
  44126. name: "Back",
  44127. image: {
  44128. source: "./media/characters/spook/back.svg",
  44129. extra: 812/798,
  44130. bottom: 32/844
  44131. }
  44132. },
  44133. },
  44134. [
  44135. {
  44136. name: "Normal",
  44137. height: math.unit(5 + 5/12, "feet"),
  44138. default: true
  44139. },
  44140. ]
  44141. ))
  44142. characterMakers.push(() => makeCharacter(
  44143. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44144. {
  44145. front: {
  44146. height: math.unit(18, "feet"),
  44147. name: "Front",
  44148. image: {
  44149. source: "./media/characters/xeaduulix/front.svg",
  44150. extra: 1380/1166,
  44151. bottom: 110/1490
  44152. }
  44153. },
  44154. back: {
  44155. height: math.unit(18, "feet"),
  44156. name: "Back",
  44157. image: {
  44158. source: "./media/characters/xeaduulix/back.svg",
  44159. extra: 1592/1170,
  44160. bottom: 128/1720
  44161. }
  44162. },
  44163. frontNsfw: {
  44164. height: math.unit(18, "feet"),
  44165. name: "Front (NSFW)",
  44166. image: {
  44167. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44168. extra: 1380/1166,
  44169. bottom: 110/1490
  44170. }
  44171. },
  44172. backNsfw: {
  44173. height: math.unit(18, "feet"),
  44174. name: "Back (NSFW)",
  44175. image: {
  44176. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44177. extra: 1592/1170,
  44178. bottom: 128/1720
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(18, "feet"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44192. {
  44193. spreadWings: {
  44194. height: math.unit(20, "feet"),
  44195. name: "Spread Wings",
  44196. image: {
  44197. source: "./media/characters/fledge/spread-wings.svg",
  44198. extra: 693/635,
  44199. bottom: 26/719
  44200. }
  44201. },
  44202. front: {
  44203. height: math.unit(20, "feet"),
  44204. name: "Front",
  44205. image: {
  44206. source: "./media/characters/fledge/front.svg",
  44207. extra: 684/637,
  44208. bottom: 18/702
  44209. }
  44210. },
  44211. frontAlt: {
  44212. height: math.unit(20, "feet"),
  44213. name: "Front (Alt)",
  44214. image: {
  44215. source: "./media/characters/fledge/front-alt.svg",
  44216. extra: 708/664,
  44217. bottom: 13/721
  44218. }
  44219. },
  44220. back: {
  44221. height: math.unit(20, "feet"),
  44222. name: "Back",
  44223. image: {
  44224. source: "./media/characters/fledge/back.svg",
  44225. extra: 718/634,
  44226. bottom: 22/740
  44227. }
  44228. },
  44229. head: {
  44230. height: math.unit(5.55, "feet"),
  44231. name: "Head",
  44232. image: {
  44233. source: "./media/characters/fledge/head.svg"
  44234. }
  44235. },
  44236. headAlt: {
  44237. height: math.unit(5.1, "feet"),
  44238. name: "Head (Alt)",
  44239. image: {
  44240. source: "./media/characters/fledge/head-alt.svg"
  44241. }
  44242. },
  44243. },
  44244. [
  44245. {
  44246. name: "Small",
  44247. height: math.unit(6 + 2/12, "feet")
  44248. },
  44249. {
  44250. name: "Big",
  44251. height: math.unit(20, "feet"),
  44252. default: true
  44253. },
  44254. {
  44255. name: "Giant",
  44256. height: math.unit(100, "feet")
  44257. },
  44258. {
  44259. name: "Macro",
  44260. height: math.unit(200, "feet")
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(1, "meter"),
  44269. name: "Front",
  44270. image: {
  44271. source: "./media/characters/atlas-morenai/front.svg",
  44272. extra: 1275/1043,
  44273. bottom: 19/1294
  44274. }
  44275. },
  44276. back: {
  44277. height: math.unit(1, "meter"),
  44278. name: "Back",
  44279. image: {
  44280. source: "./media/characters/atlas-morenai/back.svg",
  44281. extra: 1141/1001,
  44282. bottom: 25/1166
  44283. }
  44284. },
  44285. },
  44286. [
  44287. {
  44288. name: "Normal",
  44289. height: math.unit(1, "meter"),
  44290. default: true
  44291. },
  44292. {
  44293. name: "Magic-Infused",
  44294. height: math.unit(5, "meters")
  44295. },
  44296. ]
  44297. ))
  44298. characterMakers.push(() => makeCharacter(
  44299. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44300. {
  44301. front: {
  44302. height: math.unit(5, "meters"),
  44303. name: "Front",
  44304. image: {
  44305. source: "./media/characters/cintia/front.svg",
  44306. extra: 1312/1228,
  44307. bottom: 38/1350
  44308. }
  44309. },
  44310. back: {
  44311. height: math.unit(5, "meters"),
  44312. name: "Back",
  44313. image: {
  44314. source: "./media/characters/cintia/back.svg",
  44315. extra: 1260/1166,
  44316. bottom: 98/1358
  44317. }
  44318. },
  44319. frontDick: {
  44320. height: math.unit(5, "meters"),
  44321. name: "Front (Dick)",
  44322. image: {
  44323. source: "./media/characters/cintia/front-dick.svg",
  44324. extra: 1312/1228,
  44325. bottom: 38/1350
  44326. }
  44327. },
  44328. backDick: {
  44329. height: math.unit(5, "meters"),
  44330. name: "Back (Dick)",
  44331. image: {
  44332. source: "./media/characters/cintia/back-dick.svg",
  44333. extra: 1260/1166,
  44334. bottom: 98/1358
  44335. }
  44336. },
  44337. bust: {
  44338. height: math.unit(1.97, "meters"),
  44339. name: "Bust",
  44340. image: {
  44341. source: "./media/characters/cintia/bust.svg",
  44342. extra: 617/565,
  44343. bottom: 0/617
  44344. }
  44345. },
  44346. },
  44347. [
  44348. {
  44349. name: "Normal",
  44350. height: math.unit(5, "meters"),
  44351. default: true
  44352. },
  44353. ]
  44354. ))
  44355. characterMakers.push(() => makeCharacter(
  44356. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44357. {
  44358. side: {
  44359. height: math.unit(100, "feet"),
  44360. name: "Side",
  44361. image: {
  44362. source: "./media/characters/denora/side.svg",
  44363. extra: 875/803,
  44364. bottom: 9/884
  44365. }
  44366. },
  44367. },
  44368. [
  44369. {
  44370. name: "Standard",
  44371. height: math.unit(100, "feet"),
  44372. default: true
  44373. },
  44374. {
  44375. name: "Grand",
  44376. height: math.unit(1000, "feet")
  44377. },
  44378. {
  44379. name: "Conquering",
  44380. height: math.unit(10000, "feet")
  44381. },
  44382. ]
  44383. ))
  44384. characterMakers.push(() => makeCharacter(
  44385. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44386. {
  44387. dressed: {
  44388. height: math.unit(8 + 5/12, "feet"),
  44389. weight: math.unit(700, "lb"),
  44390. name: "Dressed",
  44391. image: {
  44392. source: "./media/characters/kiva/dressed.svg",
  44393. extra: 1102/1055,
  44394. bottom: 60/1162
  44395. }
  44396. },
  44397. nude: {
  44398. height: math.unit(8 + 5/12, "feet"),
  44399. weight: math.unit(700, "lb"),
  44400. name: "Nude",
  44401. image: {
  44402. source: "./media/characters/kiva/nude.svg",
  44403. extra: 1102/1055,
  44404. bottom: 60/1162
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "Base Height",
  44411. height: math.unit(8 + 5/12, "feet"),
  44412. default: true
  44413. },
  44414. {
  44415. name: "Macro",
  44416. height: math.unit(100, "feet")
  44417. },
  44418. {
  44419. name: "Max",
  44420. height: math.unit(3280, "feet")
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44426. {
  44427. front: {
  44428. height: math.unit(6 + 8/12, "feet"),
  44429. weight: math.unit(250, "lb"),
  44430. name: "Front",
  44431. image: {
  44432. source: "./media/characters/ztragon/front.svg",
  44433. extra: 1825/1684,
  44434. bottom: 98/1923
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Normal",
  44441. height: math.unit(6 + 8/12, "feet"),
  44442. default: true
  44443. },
  44444. {
  44445. name: "Macro",
  44446. height: math.unit(80, "feet")
  44447. },
  44448. ]
  44449. ))
  44450. characterMakers.push(() => makeCharacter(
  44451. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44452. {
  44453. front: {
  44454. height: math.unit(10.4, "feet"),
  44455. weight: math.unit(2, "tons"),
  44456. name: "Front",
  44457. image: {
  44458. source: "./media/characters/yesenia/front.svg",
  44459. extra: 1479/1474,
  44460. bottom: 233/1712
  44461. }
  44462. },
  44463. },
  44464. [
  44465. {
  44466. name: "Normal",
  44467. height: math.unit(10.4, "feet"),
  44468. default: true
  44469. },
  44470. ]
  44471. ))
  44472. characterMakers.push(() => makeCharacter(
  44473. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44474. {
  44475. normal: {
  44476. height: math.unit(6 + 1/12, "feet"),
  44477. weight: math.unit(180, "lb"),
  44478. name: "Normal",
  44479. image: {
  44480. source: "./media/characters/leanne-lycheborne/normal.svg",
  44481. extra: 1748/1660,
  44482. bottom: 98/1846
  44483. }
  44484. },
  44485. were: {
  44486. height: math.unit(12, "feet"),
  44487. weight: math.unit(1600, "lb"),
  44488. name: "Were",
  44489. image: {
  44490. source: "./media/characters/leanne-lycheborne/were.svg",
  44491. extra: 1485/1432,
  44492. bottom: 66/1551
  44493. }
  44494. },
  44495. },
  44496. [
  44497. {
  44498. name: "Normal",
  44499. height: math.unit(6 + 1/12, "feet"),
  44500. default: true
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44506. {
  44507. side: {
  44508. height: math.unit(13, "feet"),
  44509. name: "Side",
  44510. image: {
  44511. source: "./media/characters/kira-tyler/side.svg",
  44512. extra: 693/393,
  44513. bottom: 58/751
  44514. }
  44515. },
  44516. },
  44517. [
  44518. {
  44519. name: "Normal",
  44520. height: math.unit(13, "feet"),
  44521. default: true
  44522. },
  44523. ]
  44524. ))
  44525. characterMakers.push(() => makeCharacter(
  44526. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44527. {
  44528. front: {
  44529. height: math.unit(10.3, "feet"),
  44530. weight: math.unit(150, "lb"),
  44531. name: "Front",
  44532. image: {
  44533. source: "./media/characters/blaze/front.svg",
  44534. extra: 1378/1286,
  44535. bottom: 172/1550
  44536. }
  44537. },
  44538. },
  44539. [
  44540. {
  44541. name: "Normal",
  44542. height: math.unit(10.3, "feet"),
  44543. default: true
  44544. },
  44545. ]
  44546. ))
  44547. characterMakers.push(() => makeCharacter(
  44548. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44549. {
  44550. side: {
  44551. height: math.unit(2, "meters"),
  44552. weight: math.unit(400, "kg"),
  44553. name: "Side",
  44554. image: {
  44555. source: "./media/characters/anu/side.svg",
  44556. extra: 506/394,
  44557. bottom: 18/524
  44558. }
  44559. },
  44560. },
  44561. [
  44562. {
  44563. name: "Humanoid",
  44564. height: math.unit(2, "meters")
  44565. },
  44566. {
  44567. name: "Normal",
  44568. height: math.unit(5, "meters"),
  44569. default: true
  44570. },
  44571. ]
  44572. ))
  44573. characterMakers.push(() => makeCharacter(
  44574. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44575. {
  44576. front: {
  44577. height: math.unit(5 + 5/12, "feet"),
  44578. weight: math.unit(170, "lb"),
  44579. name: "Front",
  44580. image: {
  44581. source: "./media/characters/synx-the-lynx/front.svg",
  44582. extra: 1893/1745,
  44583. bottom: 17/1910
  44584. }
  44585. },
  44586. side: {
  44587. height: math.unit(5 + 5/12, "feet"),
  44588. weight: math.unit(170, "lb"),
  44589. name: "Side",
  44590. image: {
  44591. source: "./media/characters/synx-the-lynx/side.svg",
  44592. extra: 1884/1740,
  44593. bottom: 39/1923
  44594. }
  44595. },
  44596. back: {
  44597. height: math.unit(5 + 5/12, "feet"),
  44598. weight: math.unit(170, "lb"),
  44599. name: "Back",
  44600. image: {
  44601. source: "./media/characters/synx-the-lynx/back.svg",
  44602. extra: 1903/1755,
  44603. bottom: 14/1917
  44604. }
  44605. },
  44606. },
  44607. [
  44608. {
  44609. name: "Normal",
  44610. height: math.unit(5 + 5/12, "feet"),
  44611. default: true
  44612. },
  44613. ]
  44614. ))
  44615. characterMakers.push(() => makeCharacter(
  44616. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44617. {
  44618. back: {
  44619. height: math.unit(15, "feet"),
  44620. name: "Back",
  44621. image: {
  44622. source: "./media/characters/nadezda-fex/back.svg",
  44623. extra: 1695/1481,
  44624. bottom: 25/1720
  44625. }
  44626. },
  44627. },
  44628. [
  44629. {
  44630. name: "Normal",
  44631. height: math.unit(15, "feet"),
  44632. default: true
  44633. },
  44634. {
  44635. name: "Macro",
  44636. height: math.unit(2.5, "miles")
  44637. },
  44638. {
  44639. name: "Goddess",
  44640. height: math.unit(2, "multiverses")
  44641. },
  44642. ]
  44643. ))
  44644. characterMakers.push(() => makeCharacter(
  44645. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44646. {
  44647. front: {
  44648. height: math.unit(216, "cm"),
  44649. name: "Front",
  44650. image: {
  44651. source: "./media/characters/lev/front.svg",
  44652. extra: 1728/1670,
  44653. bottom: 82/1810
  44654. }
  44655. },
  44656. back: {
  44657. height: math.unit(216, "cm"),
  44658. name: "Back",
  44659. image: {
  44660. source: "./media/characters/lev/back.svg",
  44661. extra: 1738/1675,
  44662. bottom: 24/1762
  44663. }
  44664. },
  44665. dressed: {
  44666. height: math.unit(216, "cm"),
  44667. name: "Dressed",
  44668. image: {
  44669. source: "./media/characters/lev/dressed.svg",
  44670. extra: 1397/1351,
  44671. bottom: 73/1470
  44672. }
  44673. },
  44674. head: {
  44675. height: math.unit(0.51, "meter"),
  44676. name: "Head",
  44677. image: {
  44678. source: "./media/characters/lev/head.svg"
  44679. }
  44680. },
  44681. },
  44682. [
  44683. {
  44684. name: "Normal",
  44685. height: math.unit(216, "cm"),
  44686. default: true
  44687. },
  44688. {
  44689. name: "Relatively Macro",
  44690. height: math.unit(80, "meters")
  44691. },
  44692. {
  44693. name: "Megamacro",
  44694. height: math.unit(21600, "meters")
  44695. },
  44696. {
  44697. name: "Megamacro+",
  44698. height: math.unit(64800, "meters")
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44704. {
  44705. front: {
  44706. height: math.unit(2, "meters"),
  44707. weight: math.unit(80, "kg"),
  44708. name: "Front",
  44709. image: {
  44710. source: "./media/characters/moka/front.svg",
  44711. extra: 1337/1255,
  44712. bottom: 58/1395
  44713. }
  44714. },
  44715. },
  44716. [
  44717. {
  44718. name: "Micro",
  44719. height: math.unit(15, "cm")
  44720. },
  44721. {
  44722. name: "Normal",
  44723. height: math.unit(2, "meters"),
  44724. default: true
  44725. },
  44726. {
  44727. name: "Macro",
  44728. height: math.unit(20, "meters"),
  44729. },
  44730. ]
  44731. ))
  44732. characterMakers.push(() => makeCharacter(
  44733. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44734. {
  44735. front: {
  44736. height: math.unit(9, "feet"),
  44737. weight: math.unit(240, "lb"),
  44738. name: "Front",
  44739. image: {
  44740. source: "./media/characters/kuzco/front.svg",
  44741. extra: 1593/1487,
  44742. bottom: 32/1625
  44743. }
  44744. },
  44745. side: {
  44746. height: math.unit(9, "feet"),
  44747. weight: math.unit(240, "lb"),
  44748. name: "Side",
  44749. image: {
  44750. source: "./media/characters/kuzco/side.svg",
  44751. extra: 1575/1485,
  44752. bottom: 30/1605
  44753. }
  44754. },
  44755. back: {
  44756. height: math.unit(9, "feet"),
  44757. weight: math.unit(240, "lb"),
  44758. name: "Back",
  44759. image: {
  44760. source: "./media/characters/kuzco/back.svg",
  44761. extra: 1603/1514,
  44762. bottom: 14/1617
  44763. }
  44764. },
  44765. },
  44766. [
  44767. {
  44768. name: "Normal",
  44769. height: math.unit(9, "feet"),
  44770. default: true
  44771. },
  44772. ]
  44773. ))
  44774. characterMakers.push(() => makeCharacter(
  44775. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44776. {
  44777. side: {
  44778. height: math.unit(2, "meters"),
  44779. weight: math.unit(300, "kg"),
  44780. name: "Side",
  44781. image: {
  44782. source: "./media/characters/ceruleus/side.svg",
  44783. extra: 1068/974,
  44784. bottom: 126/1194
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Normal",
  44791. height: math.unit(16, "meters"),
  44792. default: true
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44798. {
  44799. front: {
  44800. height: math.unit(9, "feet"),
  44801. weight: math.unit(500, "kg"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/acouya/front.svg",
  44805. extra: 1660/1473,
  44806. bottom: 28/1688
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(9, "feet"),
  44814. default: true
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44820. {
  44821. front: {
  44822. height: math.unit(5 + 6/12, "feet"),
  44823. weight: math.unit(195, "lb"),
  44824. name: "Front",
  44825. image: {
  44826. source: "./media/characters/vant/front.svg",
  44827. extra: 1396/1320,
  44828. bottom: 20/1416
  44829. }
  44830. },
  44831. back: {
  44832. height: math.unit(5 + 6/12, "feet"),
  44833. weight: math.unit(195, "lb"),
  44834. name: "Back",
  44835. image: {
  44836. source: "./media/characters/vant/back.svg",
  44837. extra: 1396/1320,
  44838. bottom: 20/1416
  44839. }
  44840. },
  44841. maw: {
  44842. height: math.unit(0.75, "feet"),
  44843. name: "Maw",
  44844. image: {
  44845. source: "./media/characters/vant/maw.svg"
  44846. }
  44847. },
  44848. paw: {
  44849. height: math.unit(1.07, "feet"),
  44850. name: "Paw",
  44851. image: {
  44852. source: "./media/characters/vant/paw.svg"
  44853. }
  44854. },
  44855. },
  44856. [
  44857. {
  44858. name: "Micro",
  44859. height: math.unit(0.25, "inches")
  44860. },
  44861. {
  44862. name: "Normal",
  44863. height: math.unit(5 + 6/12, "feet"),
  44864. default: true
  44865. },
  44866. {
  44867. name: "Macro",
  44868. height: math.unit(75, "feet")
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44874. {
  44875. front: {
  44876. height: math.unit(30, "meters"),
  44877. weight: math.unit(363, "tons"),
  44878. name: "Front",
  44879. image: {
  44880. source: "./media/characters/ahra/front.svg",
  44881. extra: 1914/1814,
  44882. bottom: 46/1960
  44883. }
  44884. },
  44885. },
  44886. [
  44887. {
  44888. name: "Macro",
  44889. height: math.unit(30, "meters"),
  44890. default: true
  44891. },
  44892. ]
  44893. ))
  44894. characterMakers.push(() => makeCharacter(
  44895. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44896. {
  44897. undressed: {
  44898. height: math.unit(2, "m"),
  44899. weight: math.unit(250, "kg"),
  44900. name: "Undressed",
  44901. image: {
  44902. source: "./media/characters/coriander/undressed.svg",
  44903. extra: 1757/1606,
  44904. bottom: 107/1864
  44905. }
  44906. },
  44907. dressed: {
  44908. height: math.unit(2, "m"),
  44909. weight: math.unit(250, "kg"),
  44910. name: "Dressed",
  44911. image: {
  44912. source: "./media/characters/coriander/dressed.svg",
  44913. extra: 1757/1606,
  44914. bottom: 107/1864
  44915. }
  44916. },
  44917. },
  44918. [
  44919. {
  44920. name: "Normal",
  44921. height: math.unit(4, "meters"),
  44922. default: true
  44923. },
  44924. {
  44925. name: "XL",
  44926. height: math.unit(6, "meters")
  44927. },
  44928. {
  44929. name: "XXL",
  44930. height: math.unit(8, "meters")
  44931. },
  44932. ]
  44933. ))
  44934. characterMakers.push(() => makeCharacter(
  44935. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44936. {
  44937. front: {
  44938. height: math.unit(6, "feet"),
  44939. name: "Front",
  44940. image: {
  44941. source: "./media/characters/syrinx/front.svg",
  44942. extra: 1557/1259,
  44943. bottom: 171/1728
  44944. }
  44945. },
  44946. },
  44947. [
  44948. {
  44949. name: "Normal",
  44950. height: math.unit(6 + 3/12, "feet"),
  44951. default: true
  44952. },
  44953. ]
  44954. ))
  44955. characterMakers.push(() => makeCharacter(
  44956. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44957. {
  44958. front: {
  44959. height: math.unit(11 + 6/12, "feet"),
  44960. weight: math.unit(1.5, "tons"),
  44961. name: "Front",
  44962. image: {
  44963. source: "./media/characters/bor/front.svg",
  44964. extra: 1189/1109,
  44965. bottom: 170/1359
  44966. }
  44967. },
  44968. },
  44969. [
  44970. {
  44971. name: "Normal",
  44972. height: math.unit(11 + 6/12, "feet"),
  44973. default: true
  44974. },
  44975. {
  44976. name: "Macro",
  44977. height: math.unit(32 + 9/12, "feet")
  44978. },
  44979. ]
  44980. ))
  44981. characterMakers.push(() => makeCharacter(
  44982. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44983. {
  44984. anthro: {
  44985. height: math.unit(9, "feet"),
  44986. weight: math.unit(2076, "lb"),
  44987. name: "Anthro",
  44988. image: {
  44989. source: "./media/characters/abacus/anthro.svg",
  44990. extra: 1540/1494,
  44991. bottom: 233/1773
  44992. }
  44993. },
  44994. pigeon: {
  44995. height: math.unit(1, "feet"),
  44996. name: "Pigeon",
  44997. image: {
  44998. source: "./media/characters/abacus/pigeon.svg",
  44999. extra: 528/525,
  45000. bottom: 46/574
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Normal",
  45007. height: math.unit(9, "feet"),
  45008. default: true
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45014. {
  45015. side: {
  45016. height: math.unit(6, "feet"),
  45017. name: "Side",
  45018. image: {
  45019. source: "./media/characters/delkhan/side.svg",
  45020. extra: 1884/1786,
  45021. bottom: 308/2192
  45022. }
  45023. },
  45024. head: {
  45025. height: math.unit(3.38, "feet"),
  45026. name: "Head",
  45027. image: {
  45028. source: "./media/characters/delkhan/head.svg"
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Normal",
  45035. height: math.unit(72, "feet"),
  45036. default: true
  45037. },
  45038. {
  45039. name: "Giant",
  45040. height: math.unit(172, "feet")
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45046. {
  45047. standing: {
  45048. height: math.unit(6, "feet"),
  45049. name: "Standing",
  45050. image: {
  45051. source: "./media/characters/euchidat/standing.svg",
  45052. extra: 1612/1553,
  45053. bottom: 116/1728
  45054. }
  45055. },
  45056. leaning: {
  45057. height: math.unit(6, "feet"),
  45058. name: "Leaning",
  45059. image: {
  45060. source: "./media/characters/euchidat/leaning.svg",
  45061. extra: 1719/1674,
  45062. bottom: 27/1746
  45063. }
  45064. },
  45065. },
  45066. [
  45067. {
  45068. name: "Normal",
  45069. height: math.unit(175, "feet"),
  45070. default: true
  45071. },
  45072. {
  45073. name: "Megamacro",
  45074. height: math.unit(190, "miles")
  45075. },
  45076. {
  45077. name: "Gigamacro",
  45078. height: math.unit(190000, "miles")
  45079. },
  45080. ]
  45081. ))
  45082. characterMakers.push(() => makeCharacter(
  45083. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45084. {
  45085. front: {
  45086. height: math.unit(6, "feet"),
  45087. weight: math.unit(150, "lb"),
  45088. name: "Front",
  45089. image: {
  45090. source: "./media/characters/rebecca-stack/front.svg",
  45091. extra: 1256/1201,
  45092. bottom: 18/1274
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Normal",
  45099. height: math.unit(5 + 8/12, "feet"),
  45100. default: true
  45101. },
  45102. {
  45103. name: "Demolitionist",
  45104. height: math.unit(200, "feet")
  45105. },
  45106. {
  45107. name: "Out of Control",
  45108. height: math.unit(2, "miles")
  45109. },
  45110. {
  45111. name: "Giga",
  45112. height: math.unit(7200, "miles")
  45113. },
  45114. ]
  45115. ))
  45116. characterMakers.push(() => makeCharacter(
  45117. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45118. {
  45119. front: {
  45120. height: math.unit(6, "feet"),
  45121. weight: math.unit(150, "lb"),
  45122. name: "Front",
  45123. image: {
  45124. source: "./media/characters/jenny-cartwright/front.svg",
  45125. extra: 1384/1376,
  45126. bottom: 58/1442
  45127. }
  45128. },
  45129. },
  45130. [
  45131. {
  45132. name: "Normal",
  45133. height: math.unit(6 + 7/12, "feet"),
  45134. default: true
  45135. },
  45136. {
  45137. name: "Librarian",
  45138. height: math.unit(55, "feet")
  45139. },
  45140. {
  45141. name: "Sightseer",
  45142. height: math.unit(50, "miles")
  45143. },
  45144. {
  45145. name: "Giga",
  45146. height: math.unit(30000, "miles")
  45147. },
  45148. ]
  45149. ))
  45150. characterMakers.push(() => makeCharacter(
  45151. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45152. {
  45153. nude: {
  45154. height: math.unit(8, "feet"),
  45155. weight: math.unit(225, "lb"),
  45156. name: "Nude",
  45157. image: {
  45158. source: "./media/characters/marvy/nude.svg",
  45159. extra: 1900/1683,
  45160. bottom: 89/1989
  45161. }
  45162. },
  45163. dressed: {
  45164. height: math.unit(8, "feet"),
  45165. weight: math.unit(225, "lb"),
  45166. name: "Dressed",
  45167. image: {
  45168. source: "./media/characters/marvy/dressed.svg",
  45169. extra: 1900/1683,
  45170. bottom: 89/1989
  45171. }
  45172. },
  45173. head: {
  45174. height: math.unit(2.85, "feet"),
  45175. name: "Head",
  45176. image: {
  45177. source: "./media/characters/marvy/head.svg"
  45178. }
  45179. },
  45180. },
  45181. [
  45182. {
  45183. name: "Normal",
  45184. height: math.unit(8, "feet"),
  45185. default: true
  45186. },
  45187. ]
  45188. ))
  45189. characterMakers.push(() => makeCharacter(
  45190. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45191. {
  45192. front: {
  45193. height: math.unit(8, "feet"),
  45194. weight: math.unit(250, "lb"),
  45195. name: "Front",
  45196. image: {
  45197. source: "./media/characters/leah/front.svg",
  45198. extra: 1257/1149,
  45199. bottom: 109/1366
  45200. }
  45201. },
  45202. },
  45203. [
  45204. {
  45205. name: "Normal",
  45206. height: math.unit(8, "feet"),
  45207. default: true
  45208. },
  45209. {
  45210. name: "Minimacro",
  45211. height: math.unit(40, "feet")
  45212. },
  45213. {
  45214. name: "Macro",
  45215. height: math.unit(124, "feet")
  45216. },
  45217. {
  45218. name: "Megamacro",
  45219. height: math.unit(850, "feet")
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45225. {
  45226. side: {
  45227. height: math.unit(13 + 6/12, "feet"),
  45228. weight: math.unit(3200, "lb"),
  45229. name: "Side",
  45230. image: {
  45231. source: "./media/characters/alvir/side.svg",
  45232. extra: 896/589,
  45233. bottom: 26/922
  45234. }
  45235. },
  45236. },
  45237. [
  45238. {
  45239. name: "Normal",
  45240. height: math.unit(13 + 6/12, "feet"),
  45241. default: true
  45242. },
  45243. ]
  45244. ))
  45245. characterMakers.push(() => makeCharacter(
  45246. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45247. {
  45248. front: {
  45249. height: math.unit(5 + 4/12, "feet"),
  45250. weight: math.unit(236, "lb"),
  45251. name: "Front",
  45252. image: {
  45253. source: "./media/characters/zaina-khalil/front.svg",
  45254. extra: 1533/1485,
  45255. bottom: 94/1627
  45256. }
  45257. },
  45258. side: {
  45259. height: math.unit(5 + 4/12, "feet"),
  45260. weight: math.unit(236, "lb"),
  45261. name: "Side",
  45262. image: {
  45263. source: "./media/characters/zaina-khalil/side.svg",
  45264. extra: 1537/1498,
  45265. bottom: 66/1603
  45266. }
  45267. },
  45268. back: {
  45269. height: math.unit(5 + 4/12, "feet"),
  45270. weight: math.unit(236, "lb"),
  45271. name: "Back",
  45272. image: {
  45273. source: "./media/characters/zaina-khalil/back.svg",
  45274. extra: 1546/1494,
  45275. bottom: 89/1635
  45276. }
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(5 + 4/12, "feet"),
  45283. default: true
  45284. },
  45285. ]
  45286. ))
  45287. characterMakers.push(() => makeCharacter(
  45288. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45289. {
  45290. side: {
  45291. height: math.unit(12, "feet"),
  45292. weight: math.unit(4000, "lb"),
  45293. name: "Side",
  45294. image: {
  45295. source: "./media/characters/terry/side.svg",
  45296. extra: 1518/1439,
  45297. bottom: 149/1667
  45298. }
  45299. },
  45300. },
  45301. [
  45302. {
  45303. name: "Normal",
  45304. height: math.unit(12, "feet"),
  45305. default: true
  45306. },
  45307. ]
  45308. ))
  45309. characterMakers.push(() => makeCharacter(
  45310. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45311. {
  45312. front: {
  45313. height: math.unit(12, "feet"),
  45314. weight: math.unit(1500, "lb"),
  45315. name: "Front",
  45316. image: {
  45317. source: "./media/characters/kahea/front.svg",
  45318. extra: 1722/1617,
  45319. bottom: 179/1901
  45320. }
  45321. },
  45322. },
  45323. [
  45324. {
  45325. name: "Normal",
  45326. height: math.unit(12, "feet"),
  45327. default: true
  45328. },
  45329. ]
  45330. ))
  45331. characterMakers.push(() => makeCharacter(
  45332. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45333. {
  45334. demonFront: {
  45335. height: math.unit(36, "feet"),
  45336. name: "Front",
  45337. image: {
  45338. source: "./media/characters/alex-xuria/demon-front.svg",
  45339. extra: 1705/1673,
  45340. bottom: 198/1903
  45341. },
  45342. form: "demon",
  45343. default: true
  45344. },
  45345. demonBack: {
  45346. height: math.unit(36, "feet"),
  45347. name: "Back",
  45348. image: {
  45349. source: "./media/characters/alex-xuria/demon-back.svg",
  45350. extra: 1725/1693,
  45351. bottom: 70/1795
  45352. },
  45353. form: "demon"
  45354. },
  45355. demonHead: {
  45356. height: math.unit(2.14, "meters"),
  45357. name: "Head",
  45358. image: {
  45359. source: "./media/characters/alex-xuria/demon-head.svg"
  45360. },
  45361. form: "demon"
  45362. },
  45363. demonHand: {
  45364. height: math.unit(1.61, "meters"),
  45365. name: "Hand",
  45366. image: {
  45367. source: "./media/characters/alex-xuria/demon-hand.svg"
  45368. },
  45369. form: "demon"
  45370. },
  45371. demonPaw: {
  45372. height: math.unit(1.35, "meters"),
  45373. name: "Paw",
  45374. image: {
  45375. source: "./media/characters/alex-xuria/demon-paw.svg"
  45376. },
  45377. form: "demon"
  45378. },
  45379. demonFoot: {
  45380. height: math.unit(2.2, "meters"),
  45381. name: "Foot",
  45382. image: {
  45383. source: "./media/characters/alex-xuria/demon-foot.svg"
  45384. },
  45385. form: "demon"
  45386. },
  45387. demonCock: {
  45388. height: math.unit(1.74, "meters"),
  45389. name: "Cock",
  45390. image: {
  45391. source: "./media/characters/alex-xuria/demon-cock.svg"
  45392. },
  45393. form: "demon"
  45394. },
  45395. demonTailClosed: {
  45396. height: math.unit(1.47, "meters"),
  45397. name: "Tail (Closed)",
  45398. image: {
  45399. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45400. },
  45401. form: "demon"
  45402. },
  45403. demonTailOpen: {
  45404. height: math.unit(2.85, "meters"),
  45405. name: "Tail (Open)",
  45406. image: {
  45407. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45408. },
  45409. form: "demon"
  45410. },
  45411. incubusFront: {
  45412. height: math.unit(12, "feet"),
  45413. name: "Front",
  45414. image: {
  45415. source: "./media/characters/alex-xuria/incubus-front.svg",
  45416. extra: 1754/1677,
  45417. bottom: 125/1879
  45418. },
  45419. form: "incubus",
  45420. default: true
  45421. },
  45422. incubusBack: {
  45423. height: math.unit(12, "feet"),
  45424. name: "Back",
  45425. image: {
  45426. source: "./media/characters/alex-xuria/incubus-back.svg",
  45427. extra: 1702/1647,
  45428. bottom: 30/1732
  45429. },
  45430. form: "incubus"
  45431. },
  45432. incubusHead: {
  45433. height: math.unit(3.45, "feet"),
  45434. name: "Head",
  45435. image: {
  45436. source: "./media/characters/alex-xuria/incubus-head.svg"
  45437. },
  45438. form: "incubus"
  45439. },
  45440. rabbitFront: {
  45441. height: math.unit(6, "feet"),
  45442. name: "Front",
  45443. image: {
  45444. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45445. extra: 1369/1349,
  45446. bottom: 45/1414
  45447. },
  45448. form: "rabbit",
  45449. default: true
  45450. },
  45451. rabbitSide: {
  45452. height: math.unit(6, "feet"),
  45453. name: "Side",
  45454. image: {
  45455. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45456. extra: 1370/1356,
  45457. bottom: 37/1407
  45458. },
  45459. form: "rabbit"
  45460. },
  45461. rabbitBack: {
  45462. height: math.unit(6, "feet"),
  45463. name: "Back",
  45464. image: {
  45465. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45466. extra: 1375/1358,
  45467. bottom: 43/1418
  45468. },
  45469. form: "rabbit"
  45470. },
  45471. },
  45472. [
  45473. {
  45474. name: "Normal",
  45475. height: math.unit(6, "feet"),
  45476. default: true,
  45477. form: "rabbit"
  45478. },
  45479. {
  45480. name: "Incubus",
  45481. height: math.unit(12, "feet"),
  45482. default: true,
  45483. form: "incubus"
  45484. },
  45485. {
  45486. name: "Demon",
  45487. height: math.unit(36, "feet"),
  45488. default: true,
  45489. form: "demon"
  45490. }
  45491. ],
  45492. {
  45493. "demon": {
  45494. name: "Demon",
  45495. default: true
  45496. },
  45497. "incubus": {
  45498. name: "Incubus",
  45499. },
  45500. "rabbit": {
  45501. name: "Rabbit"
  45502. }
  45503. }
  45504. ))
  45505. characterMakers.push(() => makeCharacter(
  45506. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45507. {
  45508. front: {
  45509. height: math.unit(7 + 5/12, "feet"),
  45510. weight: math.unit(510, "lb"),
  45511. name: "Front",
  45512. image: {
  45513. source: "./media/characters/syrup/front.svg",
  45514. extra: 932/916,
  45515. bottom: 26/958
  45516. }
  45517. },
  45518. },
  45519. [
  45520. {
  45521. name: "Normal",
  45522. height: math.unit(7 + 5/12, "feet"),
  45523. default: true
  45524. },
  45525. {
  45526. name: "Big",
  45527. height: math.unit(50, "feet")
  45528. },
  45529. {
  45530. name: "Macro",
  45531. height: math.unit(300, "feet")
  45532. },
  45533. {
  45534. name: "Megamacro",
  45535. height: math.unit(1, "mile")
  45536. },
  45537. ]
  45538. ))
  45539. characterMakers.push(() => makeCharacter(
  45540. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45541. {
  45542. front: {
  45543. height: math.unit(6 + 9/12, "feet"),
  45544. name: "Front",
  45545. image: {
  45546. source: "./media/characters/zeimne/front.svg",
  45547. extra: 1969/1806,
  45548. bottom: 53/2022
  45549. }
  45550. },
  45551. },
  45552. [
  45553. {
  45554. name: "Normal",
  45555. height: math.unit(6 + 9/12, "feet"),
  45556. default: true
  45557. },
  45558. {
  45559. name: "Giant",
  45560. height: math.unit(550, "feet")
  45561. },
  45562. {
  45563. name: "Mega",
  45564. height: math.unit(3, "miles")
  45565. },
  45566. {
  45567. name: "Giga",
  45568. height: math.unit(250, "miles")
  45569. },
  45570. {
  45571. name: "Tera",
  45572. height: math.unit(1, "AU")
  45573. },
  45574. ]
  45575. ))
  45576. characterMakers.push(() => makeCharacter(
  45577. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45578. {
  45579. front: {
  45580. height: math.unit(5 + 2/12, "feet"),
  45581. name: "Front",
  45582. image: {
  45583. source: "./media/characters/grar/front.svg",
  45584. extra: 1331/1119,
  45585. bottom: 60/1391
  45586. }
  45587. },
  45588. back: {
  45589. height: math.unit(5 + 2/12, "feet"),
  45590. name: "Back",
  45591. image: {
  45592. source: "./media/characters/grar/back.svg",
  45593. extra: 1385/1169,
  45594. bottom: 23/1408
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Normal",
  45601. height: math.unit(5 + 2/12, "feet"),
  45602. default: true
  45603. },
  45604. ]
  45605. ))
  45606. characterMakers.push(() => makeCharacter(
  45607. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45608. {
  45609. front: {
  45610. height: math.unit(13 + 7/12, "feet"),
  45611. weight: math.unit(2200, "lb"),
  45612. name: "Front",
  45613. image: {
  45614. source: "./media/characters/endraya/front.svg",
  45615. extra: 1289/1215,
  45616. bottom: 50/1339
  45617. }
  45618. },
  45619. nude: {
  45620. height: math.unit(13 + 7/12, "feet"),
  45621. weight: math.unit(2200, "lb"),
  45622. name: "Nude",
  45623. image: {
  45624. source: "./media/characters/endraya/nude.svg",
  45625. extra: 1247/1171,
  45626. bottom: 40/1287
  45627. }
  45628. },
  45629. head: {
  45630. height: math.unit(2.6, "feet"),
  45631. name: "Head",
  45632. image: {
  45633. source: "./media/characters/endraya/head.svg"
  45634. }
  45635. },
  45636. slit: {
  45637. height: math.unit(3.4, "feet"),
  45638. name: "Slit",
  45639. image: {
  45640. source: "./media/characters/endraya/slit.svg"
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Normal",
  45647. height: math.unit(13 + 7/12, "feet"),
  45648. default: true
  45649. },
  45650. {
  45651. name: "Macro",
  45652. height: math.unit(200, "feet")
  45653. },
  45654. ]
  45655. ))
  45656. characterMakers.push(() => makeCharacter(
  45657. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45658. {
  45659. front: {
  45660. height: math.unit(412, "meters"),
  45661. name: "Front",
  45662. image: {
  45663. source: "./media/characters/rodryana/front.svg",
  45664. extra: 2002/1921,
  45665. bottom: 53/2055
  45666. }
  45667. },
  45668. back: {
  45669. height: math.unit(412, "meters"),
  45670. name: "Back",
  45671. image: {
  45672. source: "./media/characters/rodryana/back.svg",
  45673. extra: 1993/1926,
  45674. bottom: 48/2041
  45675. }
  45676. },
  45677. maw: {
  45678. height: math.unit(45, "meters"),
  45679. name: "Maw",
  45680. image: {
  45681. source: "./media/characters/rodryana/maw.svg"
  45682. }
  45683. },
  45684. slit: {
  45685. height: math.unit(72, "meters"),
  45686. name: "Slit",
  45687. image: {
  45688. source: "./media/characters/rodryana/slit.svg"
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Macro",
  45695. height: math.unit(412, "meters"),
  45696. default: true
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45702. {
  45703. front: {
  45704. height: math.unit(6, "feet"),
  45705. weight: math.unit(1000, "lb"),
  45706. name: "Front",
  45707. image: {
  45708. source: "./media/characters/asaya/front.svg",
  45709. extra: 1460/1200,
  45710. bottom: 71/1531
  45711. }
  45712. },
  45713. },
  45714. [
  45715. {
  45716. name: "Normal",
  45717. height: math.unit(8, "km"),
  45718. default: true
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45724. {
  45725. front: {
  45726. height: math.unit(3.5, "meters"),
  45727. name: "Front",
  45728. image: {
  45729. source: "./media/characters/sarzu-and-israz/front.svg",
  45730. extra: 1570/1558,
  45731. bottom: 150/1720
  45732. },
  45733. },
  45734. back: {
  45735. height: math.unit(3.5, "meters"),
  45736. name: "Back",
  45737. image: {
  45738. source: "./media/characters/sarzu-and-israz/back.svg",
  45739. extra: 1523/1509,
  45740. bottom: 132/1655
  45741. },
  45742. },
  45743. frontFemale: {
  45744. height: math.unit(3.5, "meters"),
  45745. name: "Front (Female)",
  45746. image: {
  45747. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45748. extra: 1570/1558,
  45749. bottom: 150/1720
  45750. },
  45751. },
  45752. frontHerm: {
  45753. height: math.unit(3.5, "meters"),
  45754. name: "Front (Herm)",
  45755. image: {
  45756. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45757. extra: 1570/1558,
  45758. bottom: 150/1720
  45759. },
  45760. },
  45761. },
  45762. [
  45763. {
  45764. name: "Normal",
  45765. height: math.unit(3.5, "meters"),
  45766. default: true,
  45767. },
  45768. {
  45769. name: "Macro",
  45770. height: math.unit(65.5, "meters"),
  45771. },
  45772. ],
  45773. ))
  45774. characterMakers.push(() => makeCharacter(
  45775. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45776. {
  45777. front: {
  45778. height: math.unit(6, "feet"),
  45779. weight: math.unit(250, "lb"),
  45780. name: "Front",
  45781. image: {
  45782. source: "./media/characters/zenimma/front.svg",
  45783. extra: 1346/1320,
  45784. bottom: 58/1404
  45785. }
  45786. },
  45787. back: {
  45788. height: math.unit(6, "feet"),
  45789. weight: math.unit(250, "lb"),
  45790. name: "Back",
  45791. image: {
  45792. source: "./media/characters/zenimma/back.svg",
  45793. extra: 1324/1308,
  45794. bottom: 44/1368
  45795. }
  45796. },
  45797. dick: {
  45798. height: math.unit(1.44, "feet"),
  45799. name: "Dick",
  45800. image: {
  45801. source: "./media/characters/zenimma/dick.svg"
  45802. }
  45803. },
  45804. },
  45805. [
  45806. {
  45807. name: "Canon Height",
  45808. height: math.unit(66, "miles"),
  45809. default: true
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45815. {
  45816. nude: {
  45817. height: math.unit(6, "feet"),
  45818. weight: math.unit(150, "lb"),
  45819. name: "Nude",
  45820. image: {
  45821. source: "./media/characters/shavon/nude.svg",
  45822. extra: 1242/1096,
  45823. bottom: 98/1340
  45824. }
  45825. },
  45826. dressed: {
  45827. height: math.unit(6, "feet"),
  45828. weight: math.unit(150, "lb"),
  45829. name: "Dressed",
  45830. image: {
  45831. source: "./media/characters/shavon/dressed.svg",
  45832. extra: 1242/1096,
  45833. bottom: 98/1340
  45834. }
  45835. },
  45836. },
  45837. [
  45838. {
  45839. name: "Macro",
  45840. height: math.unit(255, "feet"),
  45841. default: true
  45842. },
  45843. ]
  45844. ))
  45845. characterMakers.push(() => makeCharacter(
  45846. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45847. {
  45848. front: {
  45849. height: math.unit(6, "feet"),
  45850. name: "Front",
  45851. image: {
  45852. source: "./media/characters/steph/front.svg",
  45853. extra: 1430/1330,
  45854. bottom: 54/1484
  45855. }
  45856. },
  45857. },
  45858. [
  45859. {
  45860. name: "Normal",
  45861. height: math.unit(6, "feet"),
  45862. default: true
  45863. },
  45864. ]
  45865. ))
  45866. characterMakers.push(() => makeCharacter(
  45867. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45868. {
  45869. front: {
  45870. height: math.unit(9, "feet"),
  45871. weight: math.unit(400, "lb"),
  45872. name: "Front",
  45873. image: {
  45874. source: "./media/characters/kil'aman/front.svg",
  45875. extra: 1210/1159,
  45876. bottom: 109/1319
  45877. }
  45878. },
  45879. head: {
  45880. height: math.unit(2.14, "feet"),
  45881. name: "Head",
  45882. image: {
  45883. source: "./media/characters/kil'aman/head.svg"
  45884. }
  45885. },
  45886. maw: {
  45887. height: math.unit(1.21, "feet"),
  45888. name: "Maw",
  45889. image: {
  45890. source: "./media/characters/kil'aman/maw.svg"
  45891. }
  45892. },
  45893. foot: {
  45894. height: math.unit(1.7, "feet"),
  45895. name: "Foot",
  45896. image: {
  45897. source: "./media/characters/kil'aman/foot.svg"
  45898. }
  45899. },
  45900. dick: {
  45901. height: math.unit(2.1, "feet"),
  45902. name: "Dick",
  45903. image: {
  45904. source: "./media/characters/kil'aman/dick.svg"
  45905. }
  45906. },
  45907. },
  45908. [
  45909. {
  45910. name: "Normal",
  45911. height: math.unit(9, "feet")
  45912. },
  45913. {
  45914. name: "Canon Height",
  45915. height: math.unit(10, "miles"),
  45916. default: true
  45917. },
  45918. {
  45919. name: "Maximum",
  45920. height: math.unit(6e9, "miles")
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(90, "feet"),
  45929. weight: math.unit(675000, "lb"),
  45930. name: "Front",
  45931. image: {
  45932. source: "./media/characters/qadan/front.svg",
  45933. extra: 1012/1004,
  45934. bottom: 78/1090
  45935. }
  45936. },
  45937. back: {
  45938. height: math.unit(90, "feet"),
  45939. weight: math.unit(675000, "lb"),
  45940. name: "Back",
  45941. image: {
  45942. source: "./media/characters/qadan/back.svg",
  45943. extra: 1042/1031,
  45944. bottom: 55/1097
  45945. }
  45946. },
  45947. armored: {
  45948. height: math.unit(90, "feet"),
  45949. weight: math.unit(675000, "lb"),
  45950. name: "Armored",
  45951. image: {
  45952. source: "./media/characters/qadan/armored.svg",
  45953. extra: 1047/1037,
  45954. bottom: 48/1095
  45955. }
  45956. },
  45957. },
  45958. [
  45959. {
  45960. name: "Normal",
  45961. height: math.unit(90, "feet"),
  45962. default: true
  45963. },
  45964. ]
  45965. ))
  45966. characterMakers.push(() => makeCharacter(
  45967. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45968. {
  45969. front: {
  45970. height: math.unit(6, "feet"),
  45971. weight: math.unit(225, "lb"),
  45972. name: "Front",
  45973. image: {
  45974. source: "./media/characters/brooke/front.svg",
  45975. extra: 1050/1010,
  45976. bottom: 66/1116
  45977. }
  45978. },
  45979. back: {
  45980. height: math.unit(6, "feet"),
  45981. weight: math.unit(225, "lb"),
  45982. name: "Back",
  45983. image: {
  45984. source: "./media/characters/brooke/back.svg",
  45985. extra: 1053/1013,
  45986. bottom: 41/1094
  45987. }
  45988. },
  45989. dressed: {
  45990. height: math.unit(6, "feet"),
  45991. weight: math.unit(225, "lb"),
  45992. name: "Dressed",
  45993. image: {
  45994. source: "./media/characters/brooke/dressed.svg",
  45995. extra: 1050/1010,
  45996. bottom: 66/1116
  45997. }
  45998. },
  45999. },
  46000. [
  46001. {
  46002. name: "Canon Height",
  46003. height: math.unit(500, "miles"),
  46004. default: true
  46005. },
  46006. ]
  46007. ))
  46008. characterMakers.push(() => makeCharacter(
  46009. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46010. {
  46011. front: {
  46012. height: math.unit(6 + 2/12, "feet"),
  46013. weight: math.unit(210, "lb"),
  46014. name: "Front",
  46015. image: {
  46016. source: "./media/characters/wubs/front.svg",
  46017. extra: 1345/1325,
  46018. bottom: 70/1415
  46019. }
  46020. },
  46021. back: {
  46022. height: math.unit(6 + 2/12, "feet"),
  46023. weight: math.unit(210, "lb"),
  46024. name: "Back",
  46025. image: {
  46026. source: "./media/characters/wubs/back.svg",
  46027. extra: 1296/1275,
  46028. bottom: 58/1354
  46029. }
  46030. },
  46031. },
  46032. [
  46033. {
  46034. name: "Normal",
  46035. height: math.unit(6 + 2/12, "feet"),
  46036. default: true
  46037. },
  46038. {
  46039. name: "Macro",
  46040. height: math.unit(1000, "feet")
  46041. },
  46042. {
  46043. name: "Megamacro",
  46044. height: math.unit(1, "mile")
  46045. },
  46046. ]
  46047. ))
  46048. characterMakers.push(() => makeCharacter(
  46049. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46050. {
  46051. front: {
  46052. height: math.unit(4, "feet"),
  46053. weight: math.unit(120, "lb"),
  46054. name: "Front",
  46055. image: {
  46056. source: "./media/characters/blue/front.svg",
  46057. extra: 1636/1525,
  46058. bottom: 43/1679
  46059. }
  46060. },
  46061. back: {
  46062. height: math.unit(4, "feet"),
  46063. weight: math.unit(120, "lb"),
  46064. name: "Back",
  46065. image: {
  46066. source: "./media/characters/blue/back.svg",
  46067. extra: 1660/1560,
  46068. bottom: 57/1717
  46069. }
  46070. },
  46071. paws: {
  46072. height: math.unit(0.826, "feet"),
  46073. name: "Paws",
  46074. image: {
  46075. source: "./media/characters/blue/paws.svg"
  46076. }
  46077. },
  46078. },
  46079. [
  46080. {
  46081. name: "Micro",
  46082. height: math.unit(3, "inches")
  46083. },
  46084. {
  46085. name: "Normal",
  46086. height: math.unit(4, "feet"),
  46087. default: true
  46088. },
  46089. {
  46090. name: "Femenine Form",
  46091. height: math.unit(14, "feet")
  46092. },
  46093. {
  46094. name: "Werebat Form",
  46095. height: math.unit(18, "feet")
  46096. },
  46097. ]
  46098. ))
  46099. characterMakers.push(() => makeCharacter(
  46100. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46101. {
  46102. female: {
  46103. height: math.unit(7 + 4/12, "feet"),
  46104. weight: math.unit(243, "lb"),
  46105. name: "Female",
  46106. image: {
  46107. source: "./media/characters/kaya/female.svg",
  46108. extra: 975/898,
  46109. bottom: 34/1009
  46110. }
  46111. },
  46112. herm: {
  46113. height: math.unit(7 + 4/12, "feet"),
  46114. weight: math.unit(243, "lb"),
  46115. name: "Herm",
  46116. image: {
  46117. source: "./media/characters/kaya/herm.svg",
  46118. extra: 975/898,
  46119. bottom: 34/1009
  46120. }
  46121. },
  46122. },
  46123. [
  46124. {
  46125. name: "Normal",
  46126. height: math.unit(7 + 4/12, "feet"),
  46127. default: true
  46128. },
  46129. ]
  46130. ))
  46131. characterMakers.push(() => makeCharacter(
  46132. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46133. {
  46134. female: {
  46135. height: math.unit(9 + 4/12, "feet"),
  46136. weight: math.unit(398, "lb"),
  46137. name: "Female",
  46138. image: {
  46139. source: "./media/characters/kassandra/female.svg",
  46140. extra: 908/839,
  46141. bottom: 61/969
  46142. }
  46143. },
  46144. intersex: {
  46145. height: math.unit(9 + 4/12, "feet"),
  46146. weight: math.unit(398, "lb"),
  46147. name: "Intersex",
  46148. image: {
  46149. source: "./media/characters/kassandra/intersex.svg",
  46150. extra: 908/839,
  46151. bottom: 61/969
  46152. }
  46153. },
  46154. },
  46155. [
  46156. {
  46157. name: "Normal",
  46158. height: math.unit(9 + 4/12, "feet"),
  46159. default: true
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46165. {
  46166. front: {
  46167. height: math.unit(3, "meters"),
  46168. name: "Front",
  46169. image: {
  46170. source: "./media/characters/amy/front.svg",
  46171. extra: 1380/1343,
  46172. bottom: 70/1450
  46173. }
  46174. },
  46175. back: {
  46176. height: math.unit(3, "meters"),
  46177. name: "Back",
  46178. image: {
  46179. source: "./media/characters/amy/back.svg",
  46180. extra: 1380/1347,
  46181. bottom: 66/1446
  46182. }
  46183. },
  46184. },
  46185. [
  46186. {
  46187. name: "Normal",
  46188. height: math.unit(3, "meters"),
  46189. default: true
  46190. },
  46191. ]
  46192. ))
  46193. characterMakers.push(() => makeCharacter(
  46194. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46195. {
  46196. side: {
  46197. height: math.unit(47, "cm"),
  46198. weight: math.unit(10.8, "kg"),
  46199. name: "Side",
  46200. image: {
  46201. source: "./media/characters/alphaschakal/side.svg",
  46202. extra: 1058/568,
  46203. bottom: 62/1120
  46204. }
  46205. },
  46206. back: {
  46207. height: math.unit(78, "cm"),
  46208. weight: math.unit(10.8, "kg"),
  46209. name: "Back",
  46210. image: {
  46211. source: "./media/characters/alphaschakal/back.svg",
  46212. extra: 1102/942,
  46213. bottom: 185/1287
  46214. }
  46215. },
  46216. head: {
  46217. height: math.unit(28, "cm"),
  46218. name: "Head",
  46219. image: {
  46220. source: "./media/characters/alphaschakal/head.svg",
  46221. extra: 696/508,
  46222. bottom: 0/696
  46223. }
  46224. },
  46225. paw: {
  46226. height: math.unit(16, "cm"),
  46227. name: "Paw",
  46228. image: {
  46229. source: "./media/characters/alphaschakal/paw.svg"
  46230. }
  46231. },
  46232. },
  46233. [
  46234. {
  46235. name: "Normal",
  46236. height: math.unit(47, "cm"),
  46237. default: true
  46238. },
  46239. {
  46240. name: "Macro",
  46241. height: math.unit(340, "cm")
  46242. },
  46243. ]
  46244. ))
  46245. characterMakers.push(() => makeCharacter(
  46246. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46247. {
  46248. front: {
  46249. height: math.unit(36, "earths"),
  46250. name: "Front",
  46251. image: {
  46252. source: "./media/characters/ecobyss/front.svg",
  46253. extra: 1282/1215,
  46254. bottom: 11/1293
  46255. }
  46256. },
  46257. back: {
  46258. height: math.unit(36, "earths"),
  46259. name: "Back",
  46260. image: {
  46261. source: "./media/characters/ecobyss/back.svg",
  46262. extra: 1291/1222,
  46263. bottom: 8/1299
  46264. }
  46265. },
  46266. },
  46267. [
  46268. {
  46269. name: "Normal",
  46270. height: math.unit(36, "earths"),
  46271. default: true
  46272. },
  46273. ]
  46274. ))
  46275. characterMakers.push(() => makeCharacter(
  46276. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46277. {
  46278. front: {
  46279. height: math.unit(12, "feet"),
  46280. name: "Front",
  46281. image: {
  46282. source: "./media/characters/vasuk/front.svg",
  46283. extra: 1326/1207,
  46284. bottom: 64/1390
  46285. }
  46286. },
  46287. },
  46288. [
  46289. {
  46290. name: "Normal",
  46291. height: math.unit(12, "feet"),
  46292. default: true
  46293. },
  46294. ]
  46295. ))
  46296. characterMakers.push(() => makeCharacter(
  46297. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46298. {
  46299. side: {
  46300. height: math.unit(100, "feet"),
  46301. name: "Side",
  46302. image: {
  46303. source: "./media/characters/linneaus/side.svg",
  46304. extra: 987/807,
  46305. bottom: 47/1034
  46306. }
  46307. },
  46308. },
  46309. [
  46310. {
  46311. name: "Macro",
  46312. height: math.unit(100, "feet"),
  46313. default: true
  46314. },
  46315. ]
  46316. ))
  46317. characterMakers.push(() => makeCharacter(
  46318. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46319. {
  46320. front: {
  46321. height: math.unit(8, "feet"),
  46322. weight: math.unit(1200, "lb"),
  46323. name: "Front",
  46324. image: {
  46325. source: "./media/characters/nyterious-daligdig/front.svg",
  46326. extra: 1284/1094,
  46327. bottom: 84/1368
  46328. }
  46329. },
  46330. back: {
  46331. height: math.unit(8, "feet"),
  46332. weight: math.unit(1200, "lb"),
  46333. name: "Back",
  46334. image: {
  46335. source: "./media/characters/nyterious-daligdig/back.svg",
  46336. extra: 1301/1121,
  46337. bottom: 129/1430
  46338. }
  46339. },
  46340. mouth: {
  46341. height: math.unit(1.464, "feet"),
  46342. name: "Mouth",
  46343. image: {
  46344. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46345. }
  46346. },
  46347. },
  46348. [
  46349. {
  46350. name: "Small",
  46351. height: math.unit(8, "feet"),
  46352. default: true
  46353. },
  46354. {
  46355. name: "Normal",
  46356. height: math.unit(15, "feet")
  46357. },
  46358. {
  46359. name: "Macro",
  46360. height: math.unit(90, "feet")
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46366. {
  46367. front: {
  46368. height: math.unit(7 + 4/12, "feet"),
  46369. weight: math.unit(252, "lb"),
  46370. name: "Front",
  46371. image: {
  46372. source: "./media/characters/bandel/front.svg",
  46373. extra: 1946/1775,
  46374. bottom: 26/1972
  46375. }
  46376. },
  46377. back: {
  46378. height: math.unit(7 + 4/12, "feet"),
  46379. weight: math.unit(252, "lb"),
  46380. name: "Back",
  46381. image: {
  46382. source: "./media/characters/bandel/back.svg",
  46383. extra: 1940/1770,
  46384. bottom: 25/1965
  46385. }
  46386. },
  46387. maw: {
  46388. height: math.unit(2.15, "feet"),
  46389. name: "Maw",
  46390. image: {
  46391. source: "./media/characters/bandel/maw.svg"
  46392. }
  46393. },
  46394. stomach: {
  46395. height: math.unit(1.95, "feet"),
  46396. name: "Stomach",
  46397. image: {
  46398. source: "./media/characters/bandel/stomach.svg"
  46399. }
  46400. },
  46401. },
  46402. [
  46403. {
  46404. name: "Normal",
  46405. height: math.unit(7 + 4/12, "feet"),
  46406. default: true
  46407. },
  46408. ]
  46409. ))
  46410. characterMakers.push(() => makeCharacter(
  46411. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46412. {
  46413. front: {
  46414. height: math.unit(10 + 5/12, "feet"),
  46415. weight: math.unit(773.5, "kg"),
  46416. name: "Front",
  46417. image: {
  46418. source: "./media/characters/zed/front.svg",
  46419. extra: 987/941,
  46420. bottom: 52/1039
  46421. }
  46422. },
  46423. },
  46424. [
  46425. {
  46426. name: "Short",
  46427. height: math.unit(5 + 4/12, "feet")
  46428. },
  46429. {
  46430. name: "Average",
  46431. height: math.unit(10 + 5/12, "feet"),
  46432. default: true
  46433. },
  46434. {
  46435. name: "Mini-Macro",
  46436. height: math.unit(24 + 9/12, "feet")
  46437. },
  46438. {
  46439. name: "Macro",
  46440. height: math.unit(249, "feet")
  46441. },
  46442. {
  46443. name: "Mega-Macro",
  46444. height: math.unit(12490, "feet")
  46445. },
  46446. {
  46447. name: "Giga-Macro",
  46448. height: math.unit(24.9, "miles")
  46449. },
  46450. {
  46451. name: "Tera-Macro",
  46452. height: math.unit(24900, "miles")
  46453. },
  46454. {
  46455. name: "Cosmic Scale",
  46456. height: math.unit(38.9, "lightyears")
  46457. },
  46458. {
  46459. name: "Universal Scale",
  46460. height: math.unit(138e12, "lightyears")
  46461. },
  46462. ]
  46463. ))
  46464. characterMakers.push(() => makeCharacter(
  46465. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46466. {
  46467. front: {
  46468. height: math.unit(1561, "inches"),
  46469. name: "Front",
  46470. image: {
  46471. source: "./media/characters/ivan/front.svg",
  46472. extra: 1126/1071,
  46473. bottom: 26/1152
  46474. }
  46475. },
  46476. back: {
  46477. height: math.unit(1561, "inches"),
  46478. name: "Back",
  46479. image: {
  46480. source: "./media/characters/ivan/back.svg",
  46481. extra: 1134/1079,
  46482. bottom: 30/1164
  46483. }
  46484. },
  46485. },
  46486. [
  46487. {
  46488. name: "Normal",
  46489. height: math.unit(1561, "inches"),
  46490. default: true
  46491. },
  46492. ]
  46493. ))
  46494. characterMakers.push(() => makeCharacter(
  46495. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46496. {
  46497. front: {
  46498. height: math.unit(5 + 7/12, "feet"),
  46499. weight: math.unit(150, "lb"),
  46500. name: "Front",
  46501. image: {
  46502. source: "./media/characters/robin-arctic-hare/front.svg",
  46503. extra: 1148/974,
  46504. bottom: 20/1168
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(5 + 7/12, "feet"),
  46512. default: true
  46513. },
  46514. ]
  46515. ))
  46516. characterMakers.push(() => makeCharacter(
  46517. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46518. {
  46519. side: {
  46520. height: math.unit(5, "feet"),
  46521. name: "Side",
  46522. image: {
  46523. source: "./media/characters/birch/side.svg",
  46524. extra: 985/796,
  46525. bottom: 111/1096
  46526. }
  46527. },
  46528. },
  46529. [
  46530. {
  46531. name: "Normal",
  46532. height: math.unit(5, "feet"),
  46533. default: true
  46534. },
  46535. ]
  46536. ))
  46537. characterMakers.push(() => makeCharacter(
  46538. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46539. {
  46540. front: {
  46541. height: math.unit(4, "feet"),
  46542. name: "Front",
  46543. image: {
  46544. source: "./media/characters/rasp/front.svg",
  46545. extra: 561/478,
  46546. bottom: 74/635
  46547. }
  46548. },
  46549. },
  46550. [
  46551. {
  46552. name: "Normal",
  46553. height: math.unit(4, "feet"),
  46554. default: true
  46555. },
  46556. ]
  46557. ))
  46558. characterMakers.push(() => makeCharacter(
  46559. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46560. {
  46561. front: {
  46562. height: math.unit(4 + 6/12, "feet"),
  46563. name: "Front",
  46564. image: {
  46565. source: "./media/characters/agatha/front.svg",
  46566. extra: 947/933,
  46567. bottom: 42/989
  46568. }
  46569. },
  46570. back: {
  46571. height: math.unit(4 + 6/12, "feet"),
  46572. name: "Back",
  46573. image: {
  46574. source: "./media/characters/agatha/back.svg",
  46575. extra: 935/922,
  46576. bottom: 48/983
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(4 + 6 /12, "feet"),
  46584. default: true
  46585. },
  46586. {
  46587. name: "Max Size",
  46588. height: math.unit(500, "feet")
  46589. },
  46590. ]
  46591. ))
  46592. characterMakers.push(() => makeCharacter(
  46593. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46594. {
  46595. side: {
  46596. height: math.unit(30, "feet"),
  46597. name: "Side",
  46598. image: {
  46599. source: "./media/characters/roggy/side.svg",
  46600. extra: 909/643,
  46601. bottom: 63/972
  46602. }
  46603. },
  46604. lounging: {
  46605. height: math.unit(20, "feet"),
  46606. name: "Lounging",
  46607. image: {
  46608. source: "./media/characters/roggy/lounging.svg",
  46609. extra: 643/479,
  46610. bottom: 145/788
  46611. }
  46612. },
  46613. handpaw: {
  46614. height: math.unit(13.1, "feet"),
  46615. name: "Handpaw",
  46616. image: {
  46617. source: "./media/characters/roggy/handpaw.svg"
  46618. }
  46619. },
  46620. footpaw: {
  46621. height: math.unit(15.8, "feet"),
  46622. name: "Footpaw",
  46623. image: {
  46624. source: "./media/characters/roggy/footpaw.svg"
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Menacing",
  46631. height: math.unit(30, "feet"),
  46632. default: true
  46633. },
  46634. ]
  46635. ))
  46636. characterMakers.push(() => makeCharacter(
  46637. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46638. {
  46639. front: {
  46640. height: math.unit(5 + 7/12, "feet"),
  46641. weight: math.unit(135, "lb"),
  46642. name: "Front",
  46643. image: {
  46644. source: "./media/characters/naomi/front.svg",
  46645. extra: 1209/1154,
  46646. bottom: 129/1338
  46647. }
  46648. },
  46649. back: {
  46650. height: math.unit(5 + 7/12, "feet"),
  46651. weight: math.unit(135, "lb"),
  46652. name: "Back",
  46653. image: {
  46654. source: "./media/characters/naomi/back.svg",
  46655. extra: 1252/1190,
  46656. bottom: 23/1275
  46657. }
  46658. },
  46659. },
  46660. [
  46661. {
  46662. name: "Normal",
  46663. height: math.unit(5 + 7 /12, "feet"),
  46664. default: true
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46670. {
  46671. side: {
  46672. height: math.unit(35, "meters"),
  46673. name: "Side",
  46674. image: {
  46675. source: "./media/characters/kimpi/side.svg",
  46676. extra: 419/382,
  46677. bottom: 63/482
  46678. }
  46679. },
  46680. hand: {
  46681. height: math.unit(8.96, "meters"),
  46682. name: "Hand",
  46683. image: {
  46684. source: "./media/characters/kimpi/hand.svg"
  46685. }
  46686. },
  46687. },
  46688. [
  46689. {
  46690. name: "Normal",
  46691. height: math.unit(35, "meters"),
  46692. default: true
  46693. },
  46694. ]
  46695. ))
  46696. characterMakers.push(() => makeCharacter(
  46697. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46698. {
  46699. front: {
  46700. height: math.unit(4 + 4/12, "feet"),
  46701. name: "Front",
  46702. image: {
  46703. source: "./media/characters/pepper-purrloin/front.svg",
  46704. extra: 1141/1024,
  46705. bottom: 21/1162
  46706. }
  46707. },
  46708. },
  46709. [
  46710. {
  46711. name: "Normal",
  46712. height: math.unit(4 + 4/12, "feet"),
  46713. default: true
  46714. },
  46715. ]
  46716. ))
  46717. characterMakers.push(() => makeCharacter(
  46718. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46719. {
  46720. front: {
  46721. height: math.unit(6 + 2/12, "feet"),
  46722. name: "Front",
  46723. image: {
  46724. source: "./media/characters/raphael/front.svg",
  46725. extra: 1101/962,
  46726. bottom: 59/1160
  46727. }
  46728. },
  46729. },
  46730. [
  46731. {
  46732. name: "Normal",
  46733. height: math.unit(6 + 2/12, "feet"),
  46734. default: true
  46735. },
  46736. ]
  46737. ))
  46738. //characters
  46739. function makeCharacters() {
  46740. const results = [];
  46741. characterMakers.forEach(character => {
  46742. results.push(character());
  46743. });
  46744. return results;
  46745. }